* opncls.c (bfd_alloc_by_size_t): Set bfd_error_no_memory if
[deliverable/binutils-gdb.git] / bfd / som.c
CommitLineData
d9ad93bc 1/* bfd back-end for HP PA-RISC SOM objects.
0bc240c0
JL
2 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995
3 Free Software Foundation, Inc.
d9ad93bc
KR
4
5 Contributed by the Center for Software Science at the
6 University of Utah (pa-gdb-bugs@cs.utah.edu).
7
9e16fcf1 8 This file is part of BFD, the Binary File Descriptor library.
d9ad93bc 9
9e16fcf1
SG
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
d9ad93bc 14
9e16fcf1
SG
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
d9ad93bc 19
9e16fcf1
SG
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
c3246d9b 22 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
d9ad93bc
KR
23
24#include "bfd.h"
25#include "sysdep.h"
26
6941fd4d 27#if defined (HOST_HPPAHPUX) || defined (HOST_HPPABSD) || defined (HOST_HPPAOSF)
d9ad93bc
KR
28
29#include "libbfd.h"
30#include "som.h"
31
32#include <stdio.h>
33#include <sys/types.h>
34#include <sys/param.h>
d9ad93bc
KR
35#include <signal.h>
36#include <machine/reg.h>
d9ad93bc
KR
37#include <sys/file.h>
38#include <errno.h>
39
40/* Magic not defined in standard HP-UX header files until 8.0 */
41
42#ifndef CPU_PA_RISC1_0
43#define CPU_PA_RISC1_0 0x20B
44#endif /* CPU_PA_RISC1_0 */
45
46#ifndef CPU_PA_RISC1_1
47#define CPU_PA_RISC1_1 0x210
48#endif /* CPU_PA_RISC1_1 */
49
50#ifndef _PA_RISC1_0_ID
51#define _PA_RISC1_0_ID CPU_PA_RISC1_0
52#endif /* _PA_RISC1_0_ID */
53
54#ifndef _PA_RISC1_1_ID
55#define _PA_RISC1_1_ID CPU_PA_RISC1_1
56#endif /* _PA_RISC1_1_ID */
57
58#ifndef _PA_RISC_MAXID
59#define _PA_RISC_MAXID 0x2FF
60#endif /* _PA_RISC_MAXID */
61
62#ifndef _PA_RISC_ID
63#define _PA_RISC_ID(__m_num) \
64 (((__m_num) == _PA_RISC1_0_ID) || \
65 ((__m_num) >= _PA_RISC1_1_ID && (__m_num) <= _PA_RISC_MAXID))
66#endif /* _PA_RISC_ID */
67
8117e1ea
JL
68
69/* HIUX in it's infinite stupidity changed the names for several "well
70 known" constants. Work around such braindamage. Try the HPUX version
71 first, then the HIUX version, and finally provide a default. */
72#ifdef HPUX_AUX_ID
73#define EXEC_AUX_ID HPUX_AUX_ID
74#endif
75
76#if !defined (EXEC_AUX_ID) && defined (HIUX_AUX_ID)
77#define EXEC_AUX_ID HIUX_AUX_ID
78#endif
79
80#ifndef EXEC_AUX_ID
81#define EXEC_AUX_ID 0
82#endif
83
9d0dea6f
JL
84/* Size (in chars) of the temporary buffers used during fixup and string
85 table writes. */
86
87#define SOM_TMP_BUFSIZE 8192
88
6e033f86
JL
89/* Size of the hash table in archives. */
90#define SOM_LST_HASH_SIZE 31
91
92/* Max number of SOMs to be found in an archive. */
93#define SOM_LST_MODULE_LIMIT 1024
9d0dea6f 94
08b3c4f9
JL
95/* Generic alignment macro. */
96#define SOM_ALIGN(val, alignment) \
97 (((val) + (alignment) - 1) & ~((alignment) - 1))
98
4fdb66cd
JL
99/* SOM allows any one of the four previous relocations to be reused
100 with a "R_PREV_FIXUP" relocation entry. Since R_PREV_FIXUP
101 relocations are always a single byte, using a R_PREV_FIXUP instead
102 of some multi-byte relocation makes object files smaller.
103
104 Note one side effect of using a R_PREV_FIXUP is the relocation that
105 is being repeated moves to the front of the queue. */
106struct reloc_queue
107 {
108 unsigned char *reloc;
109 unsigned int size;
110 } reloc_queue[4];
111
112/* This fully describes the symbol types which may be attached to
113 an EXPORT or IMPORT directive. Only SOM uses this formation
114 (ELF has no need for it). */
115typedef enum
116{
117 SYMBOL_TYPE_UNKNOWN,
118 SYMBOL_TYPE_ABSOLUTE,
119 SYMBOL_TYPE_CODE,
120 SYMBOL_TYPE_DATA,
121 SYMBOL_TYPE_ENTRY,
122 SYMBOL_TYPE_MILLICODE,
123 SYMBOL_TYPE_PLABEL,
124 SYMBOL_TYPE_PRI_PROG,
125 SYMBOL_TYPE_SEC_PROG,
126} pa_symbol_type;
127
017a52d7
JL
128struct section_to_type
129{
130 char *section;
131 char type;
132};
133
6e033f86
JL
134/* Assorted symbol information that needs to be derived from the BFD symbol
135 and/or the BFD backend private symbol data. */
136struct som_misc_symbol_info
137{
138 unsigned int symbol_type;
139 unsigned int symbol_scope;
140 unsigned int arg_reloc;
141 unsigned int symbol_info;
142 unsigned int symbol_value;
143};
144
9e16fcf1
SG
145/* Forward declarations */
146
147static boolean som_mkobject PARAMS ((bfd *));
2f3508ad
ILT
148static const bfd_target * som_object_setup PARAMS ((bfd *,
149 struct header *,
150 struct som_exec_auxhdr *));
9e16fcf1 151static boolean setup_sections PARAMS ((bfd *, struct header *));
2f3508ad 152static const bfd_target * som_object_p PARAMS ((bfd *));
9e16fcf1
SG
153static boolean som_write_object_contents PARAMS ((bfd *));
154static boolean som_slurp_string_table PARAMS ((bfd *));
155static unsigned int som_slurp_symbol_table PARAMS ((bfd *));
326e32d7
ILT
156static long som_get_symtab_upper_bound PARAMS ((bfd *));
157static long som_canonicalize_reloc PARAMS ((bfd *, sec_ptr,
158 arelent **, asymbol **));
159static long som_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr));
36456a67
JL
160static unsigned int som_set_reloc_info PARAMS ((unsigned char *, unsigned int,
161 arelent *, asection *,
162 asymbol **, boolean));
163static boolean som_slurp_reloc_table PARAMS ((bfd *, asection *,
164 asymbol **, boolean));
326e32d7 165static long som_get_symtab PARAMS ((bfd *, asymbol **));
9e16fcf1
SG
166static asymbol * som_make_empty_symbol PARAMS ((bfd *));
167static void som_print_symbol PARAMS ((bfd *, PTR,
168 asymbol *, bfd_print_symbol_type));
169static boolean som_new_section_hook PARAMS ((bfd *, asection *));
c40439a2
JL
170static boolean som_bfd_copy_private_symbol_data PARAMS ((bfd *, asymbol *,
171 bfd *, asymbol *));
5b3577cb
JL
172static boolean som_bfd_copy_private_section_data PARAMS ((bfd *, asection *,
173 bfd *, asection *));
4359a7ef 174static boolean som_bfd_copy_private_bfd_data PARAMS ((bfd *, bfd *));
6adcecef
JL
175#define som_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data
176#define som_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
5b3577cb 177static boolean som_bfd_is_local_label PARAMS ((bfd *, asymbol *));
9e16fcf1
SG
178static boolean som_set_section_contents PARAMS ((bfd *, sec_ptr, PTR,
179 file_ptr, bfd_size_type));
f977e865
JL
180static boolean som_get_section_contents PARAMS ((bfd *, sec_ptr, PTR,
181 file_ptr, bfd_size_type));
9e16fcf1
SG
182static boolean som_set_arch_mach PARAMS ((bfd *, enum bfd_architecture,
183 unsigned long));
184static boolean som_find_nearest_line PARAMS ((bfd *, asection *,
185 asymbol **, bfd_vma,
186 CONST char **,
187 CONST char **,
188 unsigned int *));
189static void som_get_symbol_info PARAMS ((bfd *, asymbol *, symbol_info *));
c05d2d43
JL
190static asection * bfd_section_from_som_symbol PARAMS ((bfd *,
191 struct symbol_dictionary_record *));
9e16fcf1 192static int log2 PARAMS ((unsigned int));
fcb0c846
JL
193static bfd_reloc_status_type hppa_som_reloc PARAMS ((bfd *, arelent *,
194 asymbol *, PTR,
39961154
JL
195 asection *, bfd *,
196 char **));
d125665c
JL
197static void som_initialize_reloc_queue PARAMS ((struct reloc_queue *));
198static void som_reloc_queue_insert PARAMS ((unsigned char *, unsigned int,
199 struct reloc_queue *));
200static void som_reloc_queue_fix PARAMS ((struct reloc_queue *, unsigned int));
201static int som_reloc_queue_find PARAMS ((unsigned char *, unsigned int,
202 struct reloc_queue *));
54bbfd37
JL
203static unsigned char * try_prev_fixup PARAMS ((bfd *, int *, unsigned char *,
204 unsigned int,
205 struct reloc_queue *));
206
207static unsigned char * som_reloc_skip PARAMS ((bfd *, unsigned int,
208 unsigned char *, unsigned int *,
209 struct reloc_queue *));
210static unsigned char * som_reloc_addend PARAMS ((bfd *, int, unsigned char *,
211 unsigned int *,
212 struct reloc_queue *));
7057b78f
JL
213static unsigned char * som_reloc_call PARAMS ((bfd *, unsigned char *,
214 unsigned int *,
215 arelent *, int,
216 struct reloc_queue *));
5532fc5a
JL
217static unsigned long som_count_spaces PARAMS ((bfd *));
218static unsigned long som_count_subspaces PARAMS ((bfd *));
82492ca1 219static int compare_syms PARAMS ((const void *, const void *));
9ea5de84 220static int compare_subspaces PARAMS ((const void *, const void *));
5532fc5a 221static unsigned long som_compute_checksum PARAMS ((bfd *));
0ffa24b9 222static boolean som_prep_headers PARAMS ((bfd *));
2212ff92 223static int som_sizeof_headers PARAMS ((bfd *, boolean));
9ea5de84 224static boolean som_finish_writing PARAMS ((bfd *));
713de7ec 225static boolean som_build_and_write_symbol_table PARAMS ((bfd *));
aff97790 226static void som_prep_for_fixups PARAMS ((bfd *, asymbol **, unsigned long));
9d0dea6f 227static boolean som_write_fixups PARAMS ((bfd *, unsigned long, unsigned int *));
0b35f7ec
JL
228static boolean som_write_space_strings PARAMS ((bfd *, unsigned long,
229 unsigned int *));
230static boolean som_write_symbol_strings PARAMS ((bfd *, unsigned long,
231 asymbol **, unsigned int,
232 unsigned *));
6eb64408 233static boolean som_begin_writing PARAMS ((bfd *));
fede9992 234static reloc_howto_type * som_bfd_reloc_type_lookup
82492ca1 235 PARAMS ((bfd *, bfd_reloc_code_real_type));
017a52d7
JL
236static char som_section_type PARAMS ((const char *));
237static int som_decode_symclass PARAMS ((asymbol *));
3c37f9ca
JL
238static boolean som_bfd_count_ar_symbols PARAMS ((bfd *, struct lst_header *,
239 symindex *));
017a52d7 240
3c37f9ca
JL
241static boolean som_bfd_fill_in_ar_symbols PARAMS ((bfd *, struct lst_header *,
242 carsym **syms));
243static boolean som_slurp_armap PARAMS ((bfd *));
82492ca1
ILT
244static boolean som_write_armap PARAMS ((bfd *, unsigned int, struct orl *,
245 unsigned int, int));
6e033f86
JL
246static void som_bfd_derive_misc_symbol_info PARAMS ((bfd *, asymbol *,
247 struct som_misc_symbol_info *));
248static boolean som_bfd_prep_for_ar_write PARAMS ((bfd *, unsigned int *,
249 unsigned int *));
250static unsigned int som_bfd_ar_symbol_hash PARAMS ((asymbol *));
251static boolean som_bfd_ar_write_symbol_stuff PARAMS ((bfd *, unsigned int,
252 unsigned int,
253 struct lst_header));
3b499495 254static CONST char *normalize PARAMS ((CONST char *file));
15766917
JL
255static boolean som_is_space PARAMS ((asection *));
256static boolean som_is_subspace PARAMS ((asection *));
257static boolean som_is_container PARAMS ((asection *, asection *));
b2452d39 258static boolean som_bfd_free_cached_info PARAMS ((bfd *));
c40439a2 259static boolean som_bfd_link_split_section PARAMS ((bfd *, asection *));
6e033f86 260
017a52d7
JL
261/* Map SOM section names to POSIX/BSD single-character symbol types.
262
263 This table includes all the standard subspaces as defined in the
264 current "PRO ABI for PA-RISC Systems", $UNWIND$ which for
265 some reason was left out, and sections specific to embedded stabs. */
266
267static const struct section_to_type stt[] = {
268 {"$TEXT$", 't'},
269 {"$SHLIB_INFO$", 't'},
270 {"$MILLICODE$", 't'},
271 {"$LIT$", 't'},
272 {"$CODE$", 't'},
273 {"$UNWIND_START$", 't'},
274 {"$UNWIND$", 't'},
275 {"$PRIVATE$", 'd'},
276 {"$PLT$", 'd'},
277 {"$SHLIB_DATA$", 'd'},
278 {"$DATA$", 'd'},
279 {"$SHORTDATA$", 'g'},
280 {"$DLT$", 'd'},
281 {"$GLOBAL$", 'g'},
282 {"$SHORTBSS$", 's'},
283 {"$BSS$", 'b'},
284 {"$GDB_STRINGS$", 'N'},
285 {"$GDB_SYMBOLS$", 'N'},
286 {0, 0}
287};
2212ff92 288
36456a67
JL
289/* About the relocation formatting table...
290
291 There are 256 entries in the table, one for each possible
292 relocation opcode available in SOM. We index the table by
293 the relocation opcode. The names and operations are those
294 defined by a.out_800 (4).
295
296 Right now this table is only used to count and perform minimal
297 processing on relocation streams so that they can be internalized
298 into BFD and symbolically printed by utilities. To make actual use
299 of them would be much more difficult, BFD's concept of relocations
300 is far too simple to handle SOM relocations. The basic assumption
301 that a relocation can be completely processed independent of other
302 relocations before an object file is written is invalid for SOM.
303
304 The SOM relocations are meant to be processed as a stream, they
305 specify copying of data from the input section to the output section
306 while possibly modifying the data in some manner. They also can
307 specify that a variable number of zeros or uninitialized data be
308 inserted on in the output segment at the current offset. Some
309 relocations specify that some previous relocation be re-applied at
310 the current location in the input/output sections. And finally a number
311 of relocations have effects on other sections (R_ENTRY, R_EXIT,
312 R_UNWIND_AUX and a variety of others). There isn't even enough room
313 in the BFD relocation data structure to store enough information to
314 perform all the relocations.
315
316 Each entry in the table has three fields.
317
318 The first entry is an index into this "class" of relocations. This
319 index can then be used as a variable within the relocation itself.
320
321 The second field is a format string which actually controls processing
322 of the relocation. It uses a simple postfix machine to do calculations
323 based on variables/constants found in the string and the relocation
324 stream.
325
326 The third field specifys whether or not this relocation may use
327 a constant (V) from the previous R_DATA_OVERRIDE rather than a constant
328 stored in the instruction.
329
330 Variables:
331
332 L = input space byte count
333 D = index into class of relocations
334 M = output space byte count
335 N = statement number (unused?)
336 O = stack operation
337 R = parameter relocation bits
338 S = symbol index
ae880afc
JL
339 T = first 32 bits of stack unwind information
340 U = second 32 bits of stack unwind information
36456a67
JL
341 V = a literal constant (usually used in the next relocation)
342 P = a previous relocation
343
344 Lower case letters (starting with 'b') refer to following
345 bytes in the relocation stream. 'b' is the next 1 byte,
346 c is the next 2 bytes, d is the next 3 bytes, etc...
347 This is the variable part of the relocation entries that
348 makes our life a living hell.
349
350 numerical constants are also used in the format string. Note
351 the constants are represented in decimal.
352
353 '+', "*" and "=" represents the obvious postfix operators.
354 '<' represents a left shift.
355
356 Stack Operations:
357
358 Parameter Relocation Bits:
359
360 Unwind Entries:
361
362 Previous Relocations: The index field represents which in the queue
363 of 4 previous fixups should be re-applied.
364
365 Literal Constants: These are generally used to represent addend
366 parts of relocations when these constants are not stored in the
367 fields of the instructions themselves. For example the instruction
368 addil foo-$global$-0x1234 would use an override for "0x1234" rather
369 than storing it into the addil itself. */
370
371struct fixup_format
372{
373 int D;
374 char *format;
375};
376
377static const struct fixup_format som_fixup_formats[256] =
378{
379 /* R_NO_RELOCATION */
380 0, "LD1+4*=", /* 0x00 */
381 1, "LD1+4*=", /* 0x01 */
382 2, "LD1+4*=", /* 0x02 */
383 3, "LD1+4*=", /* 0x03 */
384 4, "LD1+4*=", /* 0x04 */
385 5, "LD1+4*=", /* 0x05 */
386 6, "LD1+4*=", /* 0x06 */
387 7, "LD1+4*=", /* 0x07 */
388 8, "LD1+4*=", /* 0x08 */
389 9, "LD1+4*=", /* 0x09 */
390 10, "LD1+4*=", /* 0x0a */
391 11, "LD1+4*=", /* 0x0b */
392 12, "LD1+4*=", /* 0x0c */
393 13, "LD1+4*=", /* 0x0d */
394 14, "LD1+4*=", /* 0x0e */
395 15, "LD1+4*=", /* 0x0f */
396 16, "LD1+4*=", /* 0x10 */
397 17, "LD1+4*=", /* 0x11 */
398 18, "LD1+4*=", /* 0x12 */
399 19, "LD1+4*=", /* 0x13 */
400 20, "LD1+4*=", /* 0x14 */
401 21, "LD1+4*=", /* 0x15 */
402 22, "LD1+4*=", /* 0x16 */
403 23, "LD1+4*=", /* 0x17 */
404 0, "LD8<b+1+4*=", /* 0x18 */
405 1, "LD8<b+1+4*=", /* 0x19 */
406 2, "LD8<b+1+4*=", /* 0x1a */
407 3, "LD8<b+1+4*=", /* 0x1b */
408 0, "LD16<c+1+4*=", /* 0x1c */
409 1, "LD16<c+1+4*=", /* 0x1d */
410 2, "LD16<c+1+4*=", /* 0x1e */
411 0, "Ld1+=", /* 0x1f */
412 /* R_ZEROES */
413 0, "Lb1+4*=", /* 0x20 */
414 1, "Ld1+=", /* 0x21 */
415 /* R_UNINIT */
416 0, "Lb1+4*=", /* 0x22 */
417 1, "Ld1+=", /* 0x23 */
418 /* R_RELOCATION */
419 0, "L4=", /* 0x24 */
420 /* R_DATA_ONE_SYMBOL */
421 0, "L4=Sb=", /* 0x25 */
422 1, "L4=Sd=", /* 0x26 */
423 /* R_DATA_PLEBEL */
424 0, "L4=Sb=", /* 0x27 */
425 1, "L4=Sd=", /* 0x28 */
426 /* R_SPACE_REF */
427 0, "L4=", /* 0x29 */
428 /* R_REPEATED_INIT */
429 0, "L4=Mb1+4*=", /* 0x2a */
430 1, "Lb4*=Mb1+L*=", /* 0x2b */
431 2, "Lb4*=Md1+4*=", /* 0x2c */
432 3, "Ld1+=Me1+=", /* 0x2d */
433 /* R_RESERVED */
434 0, "", /* 0x2e */
435 0, "", /* 0x2f */
436 /* R_PCREL_CALL */
437 0, "L4=RD=Sb=", /* 0x30 */
438 1, "L4=RD=Sb=", /* 0x31 */
439 2, "L4=RD=Sb=", /* 0x32 */
440 3, "L4=RD=Sb=", /* 0x33 */
441 4, "L4=RD=Sb=", /* 0x34 */
442 5, "L4=RD=Sb=", /* 0x35 */
443 6, "L4=RD=Sb=", /* 0x36 */
444 7, "L4=RD=Sb=", /* 0x37 */
445 8, "L4=RD=Sb=", /* 0x38 */
446 9, "L4=RD=Sb=", /* 0x39 */
447 0, "L4=RD8<b+=Sb=",/* 0x3a */
448 1, "L4=RD8<b+=Sb=",/* 0x3b */
449 0, "L4=RD8<b+=Sd=",/* 0x3c */
450 1, "L4=RD8<b+=Sd=",/* 0x3d */
451 /* R_RESERVED */
452 0, "", /* 0x3e */
453 0, "", /* 0x3f */
454 /* R_ABS_CALL */
455 0, "L4=RD=Sb=", /* 0x40 */
456 1, "L4=RD=Sb=", /* 0x41 */
457 2, "L4=RD=Sb=", /* 0x42 */
458 3, "L4=RD=Sb=", /* 0x43 */
459 4, "L4=RD=Sb=", /* 0x44 */
460 5, "L4=RD=Sb=", /* 0x45 */
461 6, "L4=RD=Sb=", /* 0x46 */
462 7, "L4=RD=Sb=", /* 0x47 */
463 8, "L4=RD=Sb=", /* 0x48 */
464 9, "L4=RD=Sb=", /* 0x49 */
465 0, "L4=RD8<b+=Sb=",/* 0x4a */
466 1, "L4=RD8<b+=Sb=",/* 0x4b */
467 0, "L4=RD8<b+=Sd=",/* 0x4c */
468 1, "L4=RD8<b+=Sd=",/* 0x4d */
469 /* R_RESERVED */
470 0, "", /* 0x4e */
471 0, "", /* 0x4f */
472 /* R_DP_RELATIVE */
473 0, "L4=SD=", /* 0x50 */
474 1, "L4=SD=", /* 0x51 */
475 2, "L4=SD=", /* 0x52 */
476 3, "L4=SD=", /* 0x53 */
477 4, "L4=SD=", /* 0x54 */
478 5, "L4=SD=", /* 0x55 */
479 6, "L4=SD=", /* 0x56 */
480 7, "L4=SD=", /* 0x57 */
481 8, "L4=SD=", /* 0x58 */
482 9, "L4=SD=", /* 0x59 */
483 10, "L4=SD=", /* 0x5a */
484 11, "L4=SD=", /* 0x5b */
485 12, "L4=SD=", /* 0x5c */
486 13, "L4=SD=", /* 0x5d */
487 14, "L4=SD=", /* 0x5e */
488 15, "L4=SD=", /* 0x5f */
489 16, "L4=SD=", /* 0x60 */
490 17, "L4=SD=", /* 0x61 */
491 18, "L4=SD=", /* 0x62 */
492 19, "L4=SD=", /* 0x63 */
493 20, "L4=SD=", /* 0x64 */
494 21, "L4=SD=", /* 0x65 */
495 22, "L4=SD=", /* 0x66 */
496 23, "L4=SD=", /* 0x67 */
497 24, "L4=SD=", /* 0x68 */
498 25, "L4=SD=", /* 0x69 */
499 26, "L4=SD=", /* 0x6a */
500 27, "L4=SD=", /* 0x6b */
501 28, "L4=SD=", /* 0x6c */
502 29, "L4=SD=", /* 0x6d */
503 30, "L4=SD=", /* 0x6e */
504 31, "L4=SD=", /* 0x6f */
505 32, "L4=Sb=", /* 0x70 */
506 33, "L4=Sd=", /* 0x71 */
507 /* R_RESERVED */
508 0, "", /* 0x72 */
509 0, "", /* 0x73 */
510 0, "", /* 0x74 */
511 0, "", /* 0x75 */
512 0, "", /* 0x76 */
513 0, "", /* 0x77 */
514 /* R_DLT_REL */
515 0, "L4=Sb=", /* 0x78 */
516 1, "L4=Sd=", /* 0x79 */
517 /* R_RESERVED */
518 0, "", /* 0x7a */
519 0, "", /* 0x7b */
520 0, "", /* 0x7c */
521 0, "", /* 0x7d */
522 0, "", /* 0x7e */
523 0, "", /* 0x7f */
524 /* R_CODE_ONE_SYMBOL */
525 0, "L4=SD=", /* 0x80 */
526 1, "L4=SD=", /* 0x81 */
527 2, "L4=SD=", /* 0x82 */
528 3, "L4=SD=", /* 0x83 */
529 4, "L4=SD=", /* 0x84 */
530 5, "L4=SD=", /* 0x85 */
531 6, "L4=SD=", /* 0x86 */
532 7, "L4=SD=", /* 0x87 */
533 8, "L4=SD=", /* 0x88 */
534 9, "L4=SD=", /* 0x89 */
535 10, "L4=SD=", /* 0x8q */
536 11, "L4=SD=", /* 0x8b */
537 12, "L4=SD=", /* 0x8c */
538 13, "L4=SD=", /* 0x8d */
539 14, "L4=SD=", /* 0x8e */
540 15, "L4=SD=", /* 0x8f */
541 16, "L4=SD=", /* 0x90 */
542 17, "L4=SD=", /* 0x91 */
543 18, "L4=SD=", /* 0x92 */
544 19, "L4=SD=", /* 0x93 */
545 20, "L4=SD=", /* 0x94 */
546 21, "L4=SD=", /* 0x95 */
547 22, "L4=SD=", /* 0x96 */
548 23, "L4=SD=", /* 0x97 */
549 24, "L4=SD=", /* 0x98 */
550 25, "L4=SD=", /* 0x99 */
551 26, "L4=SD=", /* 0x9a */
552 27, "L4=SD=", /* 0x9b */
553 28, "L4=SD=", /* 0x9c */
554 29, "L4=SD=", /* 0x9d */
555 30, "L4=SD=", /* 0x9e */
556 31, "L4=SD=", /* 0x9f */
557 32, "L4=Sb=", /* 0xa0 */
558 33, "L4=Sd=", /* 0xa1 */
559 /* R_RESERVED */
560 0, "", /* 0xa2 */
561 0, "", /* 0xa3 */
562 0, "", /* 0xa4 */
563 0, "", /* 0xa5 */
564 0, "", /* 0xa6 */
565 0, "", /* 0xa7 */
566 0, "", /* 0xa8 */
567 0, "", /* 0xa9 */
568 0, "", /* 0xaa */
569 0, "", /* 0xab */
570 0, "", /* 0xac */
571 0, "", /* 0xad */
572 /* R_MILLI_REL */
573 0, "L4=Sb=", /* 0xae */
574 1, "L4=Sd=", /* 0xaf */
575 /* R_CODE_PLABEL */
576 0, "L4=Sb=", /* 0xb0 */
577 1, "L4=Sd=", /* 0xb1 */
578 /* R_BREAKPOINT */
579 0, "L4=", /* 0xb2 */
580 /* R_ENTRY */
ae880afc 581 0, "Te=Ue=", /* 0xb3 */
36456a67
JL
582 1, "Uf=", /* 0xb4 */
583 /* R_ALT_ENTRY */
584 0, "", /* 0xb5 */
585 /* R_EXIT */
586 0, "", /* 0xb6 */
587 /* R_BEGIN_TRY */
588 0, "", /* 0xb7 */
589 /* R_END_TRY */
590 0, "R0=", /* 0xb8 */
591 1, "Rb4*=", /* 0xb9 */
592 2, "Rd4*=", /* 0xba */
593 /* R_BEGIN_BRTAB */
594 0, "", /* 0xbb */
595 /* R_END_BRTAB */
596 0, "", /* 0xbc */
597 /* R_STATEMENT */
598 0, "Nb=", /* 0xbd */
599 1, "Nc=", /* 0xbe */
600 2, "Nd=", /* 0xbf */
601 /* R_DATA_EXPR */
602 0, "L4=", /* 0xc0 */
603 /* R_CODE_EXPR */
604 0, "L4=", /* 0xc1 */
605 /* R_FSEL */
606 0, "", /* 0xc2 */
607 /* R_LSEL */
608 0, "", /* 0xc3 */
609 /* R_RSEL */
610 0, "", /* 0xc4 */
611 /* R_N_MODE */
612 0, "", /* 0xc5 */
613 /* R_S_MODE */
614 0, "", /* 0xc6 */
615 /* R_D_MODE */
616 0, "", /* 0xc7 */
617 /* R_R_MODE */
618 0, "", /* 0xc8 */
619 /* R_DATA_OVERRIDE */
620 0, "V0=", /* 0xc9 */
621 1, "Vb=", /* 0xca */
622 2, "Vc=", /* 0xcb */
623 3, "Vd=", /* 0xcc */
624 4, "Ve=", /* 0xcd */
625 /* R_TRANSLATED */
626 0, "", /* 0xce */
627 /* R_RESERVED */
628 0, "", /* 0xcf */
629 /* R_COMP1 */
630 0, "Ob=", /* 0xd0 */
631 /* R_COMP2 */
632 0, "Ob=Sd=", /* 0xd1 */
633 /* R_COMP3 */
634 0, "Ob=Ve=", /* 0xd2 */
635 /* R_PREV_FIXUP */
636 0, "P", /* 0xd3 */
637 1, "P", /* 0xd4 */
638 2, "P", /* 0xd5 */
639 3, "P", /* 0xd6 */
640 /* R_RESERVED */
641 0, "", /* 0xd7 */
642 0, "", /* 0xd8 */
643 0, "", /* 0xd9 */
644 0, "", /* 0xda */
645 0, "", /* 0xdb */
646 0, "", /* 0xdc */
647 0, "", /* 0xdd */
648 0, "", /* 0xde */
649 0, "", /* 0xdf */
650 0, "", /* 0xe0 */
651 0, "", /* 0xe1 */
652 0, "", /* 0xe2 */
653 0, "", /* 0xe3 */
654 0, "", /* 0xe4 */
655 0, "", /* 0xe5 */
656 0, "", /* 0xe6 */
657 0, "", /* 0xe7 */
658 0, "", /* 0xe8 */
659 0, "", /* 0xe9 */
660 0, "", /* 0xea */
661 0, "", /* 0xeb */
662 0, "", /* 0xec */
663 0, "", /* 0xed */
664 0, "", /* 0xee */
665 0, "", /* 0xef */
666 0, "", /* 0xf0 */
667 0, "", /* 0xf1 */
668 0, "", /* 0xf2 */
669 0, "", /* 0xf3 */
670 0, "", /* 0xf4 */
671 0, "", /* 0xf5 */
672 0, "", /* 0xf6 */
673 0, "", /* 0xf7 */
674 0, "", /* 0xf8 */
675 0, "", /* 0xf9 */
676 0, "", /* 0xfa */
677 0, "", /* 0xfb */
678 0, "", /* 0xfc */
679 0, "", /* 0xfd */
680 0, "", /* 0xfe */
681 0, "", /* 0xff */
682};
683
684static const int comp1_opcodes[] =
685{
686 0x00,
687 0x40,
688 0x41,
689 0x42,
690 0x43,
691 0x44,
692 0x45,
693 0x46,
694 0x47,
695 0x48,
696 0x49,
697 0x4a,
698 0x4b,
699 0x60,
700 0x80,
701 0xa0,
702 0xc0,
703 -1
704};
705
706static const int comp2_opcodes[] =
707{
708 0x00,
709 0x80,
710 0x82,
711 0xc0,
712 -1
713};
714
715static const int comp3_opcodes[] =
716{
717 0x00,
718 0x02,
719 -1
720};
721
744069b8
JL
722/* These apparently are not in older versions of hpux reloc.h. */
723#ifndef R_DLT_REL
724#define R_DLT_REL 0x78
725#endif
726
727#ifndef R_AUX_UNWIND
728#define R_AUX_UNWIND 0xcf
729#endif
730
731#ifndef R_SEC_STMT
732#define R_SEC_STMT 0xd7
733#endif
734
fcb0c846
JL
735static reloc_howto_type som_hppa_howto_table[] =
736{
737 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
738 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
739 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
740 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
741 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
742 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
743 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
744 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
745 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
746 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
747 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
748 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
749 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
750 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
751 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
752 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
753 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
754 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
755 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
756 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
757 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
758 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
759 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
760 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
761 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
762 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
763 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
764 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
765 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
766 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
767 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
768 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
769 {R_ZEROES, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ZEROES"},
770 {R_ZEROES, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ZEROES"},
771 {R_UNINIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_UNINIT"},
772 {R_UNINIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_UNINIT"},
773 {R_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RELOCATION"},
774 {R_DATA_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_ONE_SYMBOL"},
775 {R_DATA_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_ONE_SYMBOL"},
776 {R_DATA_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_PLABEL"},
777 {R_DATA_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_PLABEL"},
778 {R_SPACE_REF, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_SPACE_REF"},
779 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
780 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
781 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
782 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
783 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
784 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
785 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
786 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
787 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
788 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
789 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
790 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
791 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
792 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
793 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
794 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
795 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
796 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
797 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
798 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
799 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
800 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
801 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
802 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
803 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
804 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
805 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
806 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
807 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
808 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
809 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
810 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
811 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
812 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
813 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
814 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
815 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
816 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
817 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
818 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
819 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
820 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
821 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
822 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
823 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
824 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
825 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
826 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
827 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
828 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
829 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
830 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
831 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
832 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
833 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
834 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
835 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
836 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
837 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
838 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
839 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
840 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
841 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
842 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
843 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
844 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
845 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
846 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
847 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
848 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
849 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
850 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
851 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
852 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
853 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
854 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
855 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
856 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
744069b8
JL
857 {R_DLT_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DLT_REL"},
858 {R_DLT_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DLT_REL"},
fcb0c846
JL
859 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
860 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
861 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
862 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
863 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
864 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
865 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
866 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
867 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
868 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
869 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
870 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
871 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
872 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
873 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
874 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
875 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
876 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
877 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
878 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
879 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
880 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
881 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
882 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
883 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
884 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
885 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
886 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
887 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
888 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
889 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
890 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
891 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
892 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
893 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
894 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
895 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
896 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
897 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
898 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
899 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
900 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
901 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
902 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
903 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
904 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
905 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
906 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
907 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
908 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
909 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
910 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
911 {R_MILLI_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_MILLI_REL"},
912 {R_MILLI_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_MILLI_REL"},
913 {R_CODE_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_PLABEL"},
914 {R_CODE_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_PLABEL"},
915 {R_BREAKPOINT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_BREAKPOINT"},
916 {R_ENTRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ENTRY"},
917 {R_ENTRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ENTRY"},
918 {R_ALT_ENTRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ALT_ENTRY"},
919 {R_EXIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_EXIT"},
920 {R_BEGIN_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_BEGIN_TRY"},
921 {R_END_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_TRY"},
922 {R_END_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_TRY"},
017a52d7 923 {R_END_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_TRY"},
fcb0c846
JL
924 {R_BEGIN_BRTAB, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_BEGIN_BRTAB"},
925 {R_END_BRTAB, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_BRTAB"},
926 {R_STATEMENT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_STATEMENT"},
927 {R_STATEMENT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_STATEMENT"},
928 {R_STATEMENT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_STATEMENT"},
929 {R_DATA_EXPR, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_EXPR"},
930 {R_CODE_EXPR, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_EXPR"},
931 {R_FSEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_FSEL"},
932 {R_LSEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_LSEL"},
933 {R_RSEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RSEL"},
934 {R_N_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_N_MODE"},
935 {R_S_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_S_MODE"},
936 {R_D_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_D_MODE"},
937 {R_R_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_R_MODE"},
938 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
939 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
940 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
941 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
942 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
fcb0c846 943 {R_TRANSLATED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_TRANSLATED"},
744069b8 944 {R_AUX_UNWIND, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_AUX_UNWIND"},
fcb0c846
JL
945 {R_COMP1, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_COMP1"},
946 {R_COMP2, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_COMP2"},
947 {R_COMP3, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_COMP3"},
948 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
949 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
950 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
951 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
744069b8 952 {R_SEC_STMT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_SEC_STMT"},
fcb0c846
JL
953 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
954 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
955 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
956 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
957 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
958 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
959 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
960 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
961 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
962 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
963 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
964 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
965 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
966 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
967 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
968 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
969 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
970 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
971 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
972 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
973 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
974 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
975 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
976 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
977 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
978 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
979 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
980 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
981 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
982 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
983 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
984 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
985 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
986 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
987 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
988 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
989 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
990 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
991 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
992 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"}};
993
d125665c
JL
994/* Initialize the SOM relocation queue. By definition the queue holds
995 the last four multibyte fixups. */
996
997static void
998som_initialize_reloc_queue (queue)
999 struct reloc_queue *queue;
1000{
1001 queue[0].reloc = NULL;
1002 queue[0].size = 0;
1003 queue[1].reloc = NULL;
1004 queue[1].size = 0;
1005 queue[2].reloc = NULL;
1006 queue[2].size = 0;
1007 queue[3].reloc = NULL;
1008 queue[3].size = 0;
1009}
1010
1011/* Insert a new relocation into the relocation queue. */
1012
1013static void
1014som_reloc_queue_insert (p, size, queue)
1015 unsigned char *p;
1016 unsigned int size;
1017 struct reloc_queue *queue;
1018{
1019 queue[3].reloc = queue[2].reloc;
1020 queue[3].size = queue[2].size;
1021 queue[2].reloc = queue[1].reloc;
1022 queue[2].size = queue[1].size;
1023 queue[1].reloc = queue[0].reloc;
1024 queue[1].size = queue[0].size;
1025 queue[0].reloc = p;
1026 queue[0].size = size;
1027}
1028
1029/* When an entry in the relocation queue is reused, the entry moves
1030 to the front of the queue. */
1031
1032static void
1033som_reloc_queue_fix (queue, index)
1034 struct reloc_queue *queue;
1035 unsigned int index;
1036{
1037 if (index == 0)
1038 return;
1039
1040 if (index == 1)
1041 {
1042 unsigned char *tmp1 = queue[0].reloc;
1043 unsigned int tmp2 = queue[0].size;
1044 queue[0].reloc = queue[1].reloc;
1045 queue[0].size = queue[1].size;
1046 queue[1].reloc = tmp1;
1047 queue[1].size = tmp2;
1048 return;
1049 }
1050
1051 if (index == 2)
1052 {
1053 unsigned char *tmp1 = queue[0].reloc;
1054 unsigned int tmp2 = queue[0].size;
1055 queue[0].reloc = queue[2].reloc;
1056 queue[0].size = queue[2].size;
1057 queue[2].reloc = queue[1].reloc;
1058 queue[2].size = queue[1].size;
1059 queue[1].reloc = tmp1;
1060 queue[1].size = tmp2;
1061 return;
1062 }
1063
1064 if (index == 3)
1065 {
1066 unsigned char *tmp1 = queue[0].reloc;
1067 unsigned int tmp2 = queue[0].size;
1068 queue[0].reloc = queue[3].reloc;
1069 queue[0].size = queue[3].size;
1070 queue[3].reloc = queue[2].reloc;
1071 queue[3].size = queue[2].size;
1072 queue[2].reloc = queue[1].reloc;
1073 queue[2].size = queue[1].size;
1074 queue[1].reloc = tmp1;
1075 queue[1].size = tmp2;
1076 return;
1077 }
1078 abort();
1079}
1080
1081/* Search for a particular relocation in the relocation queue. */
1082
1083static int
1084som_reloc_queue_find (p, size, queue)
1085 unsigned char *p;
1086 unsigned int size;
1087 struct reloc_queue *queue;
1088{
82492ca1 1089 if (queue[0].reloc && !memcmp (p, queue[0].reloc, size)
d125665c
JL
1090 && size == queue[0].size)
1091 return 0;
82492ca1 1092 if (queue[1].reloc && !memcmp (p, queue[1].reloc, size)
d125665c
JL
1093 && size == queue[1].size)
1094 return 1;
82492ca1 1095 if (queue[2].reloc && !memcmp (p, queue[2].reloc, size)
d125665c
JL
1096 && size == queue[2].size)
1097 return 2;
82492ca1 1098 if (queue[3].reloc && !memcmp (p, queue[3].reloc, size)
d125665c
JL
1099 && size == queue[3].size)
1100 return 3;
1101 return -1;
1102}
54bbfd37
JL
1103
1104static unsigned char *
1105try_prev_fixup (abfd, subspace_reloc_sizep, p, size, queue)
1106 bfd *abfd;
1107 int *subspace_reloc_sizep;
1108 unsigned char *p;
1109 unsigned int size;
1110 struct reloc_queue *queue;
1111{
1112 int queue_index = som_reloc_queue_find (p, size, queue);
1113
1114 if (queue_index != -1)
1115 {
1116 /* Found this in a previous fixup. Undo the fixup we
1117 just built and use R_PREV_FIXUP instead. We saved
1118 a total of size - 1 bytes in the fixup stream. */
1119 bfd_put_8 (abfd, R_PREV_FIXUP + queue_index, p);
1120 p += 1;
1121 *subspace_reloc_sizep += 1;
1122 som_reloc_queue_fix (queue, queue_index);
1123 }
1124 else
1125 {
1126 som_reloc_queue_insert (p, size, queue);
1127 *subspace_reloc_sizep += size;
1128 p += size;
1129 }
1130 return p;
1131}
1132
1133/* Emit the proper R_NO_RELOCATION fixups to map the next SKIP
1134 bytes without any relocation. Update the size of the subspace
1135 relocation stream via SUBSPACE_RELOC_SIZE_P; also return the
1136 current pointer into the relocation stream. */
1137
1138static unsigned char *
1139som_reloc_skip (abfd, skip, p, subspace_reloc_sizep, queue)
1140 bfd *abfd;
1141 unsigned int skip;
1142 unsigned char *p;
1143 unsigned int *subspace_reloc_sizep;
1144 struct reloc_queue *queue;
1145{
1146 /* Use a 4 byte R_NO_RELOCATION entry with a maximal value
1147 then R_PREV_FIXUPs to get the difference down to a
1148 reasonable size. */
1149 if (skip >= 0x1000000)
1150 {
1151 skip -= 0x1000000;
1152 bfd_put_8 (abfd, R_NO_RELOCATION + 31, p);
1153 bfd_put_8 (abfd, 0xff, p + 1);
1154 bfd_put_16 (abfd, 0xffff, p + 2);
1155 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 4, queue);
1156 while (skip >= 0x1000000)
1157 {
1158 skip -= 0x1000000;
1159 bfd_put_8 (abfd, R_PREV_FIXUP, p);
1160 p++;
1161 *subspace_reloc_sizep += 1;
1162 /* No need to adjust queue here since we are repeating the
1163 most recent fixup. */
1164 }
1165 }
1166
1167 /* The difference must be less than 0x1000000. Use one
1168 more R_NO_RELOCATION entry to get to the right difference. */
1169 if ((skip & 3) == 0 && skip <= 0xc0000 && skip > 0)
1170 {
1171 /* Difference can be handled in a simple single-byte
1172 R_NO_RELOCATION entry. */
1173 if (skip <= 0x60)
1174 {
1175 bfd_put_8 (abfd, R_NO_RELOCATION + (skip >> 2) - 1, p);
1176 *subspace_reloc_sizep += 1;
1177 p++;
1178 }
1179 /* Handle it with a two byte R_NO_RELOCATION entry. */
1180 else if (skip <= 0x1000)
1181 {
1182 bfd_put_8 (abfd, R_NO_RELOCATION + 24 + (((skip >> 2) - 1) >> 8), p);
1183 bfd_put_8 (abfd, (skip >> 2) - 1, p + 1);
1184 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 2, queue);
1185 }
1186 /* Handle it with a three byte R_NO_RELOCATION entry. */
1187 else
1188 {
1189 bfd_put_8 (abfd, R_NO_RELOCATION + 28 + (((skip >> 2) - 1) >> 16), p);
1190 bfd_put_16 (abfd, (skip >> 2) - 1, p + 1);
1191 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 3, queue);
1192 }
1193 }
1194 /* Ugh. Punt and use a 4 byte entry. */
1195 else if (skip > 0)
1196 {
1197 bfd_put_8 (abfd, R_NO_RELOCATION + 31, p);
c7ca67cb
JL
1198 bfd_put_8 (abfd, (skip - 1) >> 16, p + 1);
1199 bfd_put_16 (abfd, skip - 1, p + 2);
54bbfd37
JL
1200 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 4, queue);
1201 }
1202 return p;
1203}
1204
1205/* Emit the proper R_DATA_OVERRIDE fixups to handle a nonzero addend
1206 from a BFD relocation. Update the size of the subspace relocation
1207 stream via SUBSPACE_RELOC_SIZE_P; also return the current pointer
1208 into the relocation stream. */
1209
1210static unsigned char *
1211som_reloc_addend (abfd, addend, p, subspace_reloc_sizep, queue)
1212 bfd *abfd;
1213 int addend;
1214 unsigned char *p;
1215 unsigned int *subspace_reloc_sizep;
1216 struct reloc_queue *queue;
1217{
1218 if ((unsigned)(addend) + 0x80 < 0x100)
1219 {
1220 bfd_put_8 (abfd, R_DATA_OVERRIDE + 1, p);
1221 bfd_put_8 (abfd, addend, p + 1);
1222 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 2, queue);
1223 }
1224 else if ((unsigned) (addend) + 0x8000 < 0x10000)
1225 {
1226 bfd_put_8 (abfd, R_DATA_OVERRIDE + 2, p);
1227 bfd_put_16 (abfd, addend, p + 1);
1228 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 3, queue);
1229 }
1230 else if ((unsigned) (addend) + 0x800000 < 0x1000000)
1231 {
1232 bfd_put_8 (abfd, R_DATA_OVERRIDE + 3, p);
1233 bfd_put_8 (abfd, addend >> 16, p + 1);
1234 bfd_put_16 (abfd, addend, p + 2);
1235 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 4, queue);
1236 }
1237 else
1238 {
1239 bfd_put_8 (abfd, R_DATA_OVERRIDE + 4, p);
1240 bfd_put_32 (abfd, addend, p + 1);
1241 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 5, queue);
1242 }
1243 return p;
1244}
1245
7057b78f
JL
1246/* Handle a single function call relocation. */
1247
1248static unsigned char *
1249som_reloc_call (abfd, p, subspace_reloc_sizep, bfd_reloc, sym_num, queue)
1250 bfd *abfd;
1251 unsigned char *p;
1252 unsigned int *subspace_reloc_sizep;
1253 arelent *bfd_reloc;
1254 int sym_num;
1255 struct reloc_queue *queue;
1256{
1257 int arg_bits = HPPA_R_ARG_RELOC (bfd_reloc->addend);
1258 int rtn_bits = arg_bits & 0x3;
1259 int type, done = 0;
1260
1261 /* You'll never believe all this is necessary to handle relocations
1262 for function calls. Having to compute and pack the argument
1263 relocation bits is the real nightmare.
1264
1265 If you're interested in how this works, just forget it. You really
1266 do not want to know about this braindamage. */
1267
1268 /* First see if this can be done with a "simple" relocation. Simple
1269 relocations have a symbol number < 0x100 and have simple encodings
1270 of argument relocations. */
1271
1272 if (sym_num < 0x100)
1273 {
1274 switch (arg_bits)
1275 {
1276 case 0:
1277 case 1:
1278 type = 0;
1279 break;
1280 case 1 << 8:
1281 case 1 << 8 | 1:
1282 type = 1;
1283 break;
1284 case 1 << 8 | 1 << 6:
1285 case 1 << 8 | 1 << 6 | 1:
1286 type = 2;
1287 break;
1288 case 1 << 8 | 1 << 6 | 1 << 4:
1289 case 1 << 8 | 1 << 6 | 1 << 4 | 1:
1290 type = 3;
1291 break;
1292 case 1 << 8 | 1 << 6 | 1 << 4 | 1 << 2:
1293 case 1 << 8 | 1 << 6 | 1 << 4 | 1 << 2 | 1:
1294 type = 4;
1295 break;
1296 default:
1297 /* Not one of the easy encodings. This will have to be
1298 handled by the more complex code below. */
1299 type = -1;
1300 break;
1301 }
1302 if (type != -1)
1303 {
1304 /* Account for the return value too. */
1305 if (rtn_bits)
1306 type += 5;
1307
1308 /* Emit a 2 byte relocation. Then see if it can be handled
1309 with a relocation which is already in the relocation queue. */
1310 bfd_put_8 (abfd, bfd_reloc->howto->type + type, p);
1311 bfd_put_8 (abfd, sym_num, p + 1);
1312 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 2, queue);
1313 done = 1;
1314 }
1315 }
1316
1317 /* If this could not be handled with a simple relocation, then do a hard
1318 one. Hard relocations occur if the symbol number was too high or if
1319 the encoding of argument relocation bits is too complex. */
1320 if (! done)
1321 {
1322 /* Don't ask about these magic sequences. I took them straight
1323 from gas-1.36 which took them from the a.out man page. */
1324 type = rtn_bits;
1325 if ((arg_bits >> 6 & 0xf) == 0xe)
1326 type += 9 * 40;
1327 else
1328 type += (3 * (arg_bits >> 8 & 3) + (arg_bits >> 6 & 3)) * 40;
1329 if ((arg_bits >> 2 & 0xf) == 0xe)
1330 type += 9 * 4;
1331 else
1332 type += (3 * (arg_bits >> 4 & 3) + (arg_bits >> 2 & 3)) * 4;
1333
1334 /* Output the first two bytes of the relocation. These describe
1335 the length of the relocation and encoding style. */
1336 bfd_put_8 (abfd, bfd_reloc->howto->type + 10
1337 + 2 * (sym_num >= 0x100) + (type >= 0x100),
1338 p);
1339 bfd_put_8 (abfd, type, p + 1);
1340
1341 /* Now output the symbol index and see if this bizarre relocation
1342 just happened to be in the relocation queue. */
1343 if (sym_num < 0x100)
1344 {
1345 bfd_put_8 (abfd, sym_num, p + 2);
1346 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 3, queue);
1347 }
1348 else
1349 {
1350 bfd_put_8 (abfd, sym_num >> 16, p + 2);
1351 bfd_put_16 (abfd, sym_num, p + 3);
1352 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 5, queue);
1353 }
1354 }
1355 return p;
1356}
1357
1358
9e16fcf1 1359/* Return the logarithm of X, base 2, considering X unsigned.
98ecc945 1360 Abort -1 if X is not a power or two or is zero. */
9e16fcf1
SG
1361
1362static int
1363log2 (x)
1364 unsigned int x;
1365{
1366 int log = 0;
1367
1368 /* Test for 0 or a power of 2. */
1369 if (x == 0 || x != (x & -x))
98ecc945 1370 return -1;
9e16fcf1
SG
1371
1372 while ((x >>= 1) != 0)
1373 log++;
1374 return log;
1375}
1376
fcb0c846 1377static bfd_reloc_status_type
39961154
JL
1378hppa_som_reloc (abfd, reloc_entry, symbol_in, data,
1379 input_section, output_bfd, error_message)
fcb0c846
JL
1380 bfd *abfd;
1381 arelent *reloc_entry;
1382 asymbol *symbol_in;
1383 PTR data;
1384 asection *input_section;
1385 bfd *output_bfd;
39961154 1386 char **error_message;
fcb0c846
JL
1387{
1388 if (output_bfd)
1389 {
1390 reloc_entry->address += input_section->output_offset;
1391 return bfd_reloc_ok;
1392 }
1393 return bfd_reloc_ok;
1394}
32619c58
JL
1395
1396/* Given a generic HPPA relocation type, the instruction format,
7430a991 1397 and a field selector, return one or more appropriate SOM relocations. */
32619c58
JL
1398
1399int **
c40439a2 1400hppa_som_gen_reloc_type (abfd, base_type, format, field, sym_diff)
32619c58
JL
1401 bfd *abfd;
1402 int base_type;
1403 int format;
44fd6622 1404 enum hppa_reloc_field_selector_type_alt field;
c40439a2 1405 int sym_diff;
32619c58
JL
1406{
1407 int *final_type, **final_types;
1408
c40439a2 1409 final_types = (int **) bfd_alloc_by_size_t (abfd, sizeof (int *) * 6);
32619c58 1410 final_type = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
9783e04a 1411 if (!final_types || !final_type)
a9713b91 1412 return NULL;
32619c58 1413
017a52d7
JL
1414 /* The field selector may require additional relocations to be
1415 generated. It's impossible to know at this moment if additional
1416 relocations will be needed, so we make them. The code to actually
1417 write the relocation/fixup stream is responsible for removing
1418 any redundant relocations. */
1419 switch (field)
1420 {
1421 case e_fsel:
1422 case e_psel:
1423 case e_lpsel:
1424 case e_rpsel:
a36b6f1d
JL
1425 final_types[0] = final_type;
1426 final_types[1] = NULL;
1427 final_types[2] = NULL;
1428 *final_type = base_type;
1429 break;
1430
017a52d7
JL
1431 case e_tsel:
1432 case e_ltsel:
1433 case e_rtsel:
a36b6f1d 1434 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
9783e04a 1435 if (!final_types[0])
a9713b91 1436 return NULL;
39961154
JL
1437 if (field == e_tsel)
1438 *final_types[0] = R_FSEL;
1439 else if (field == e_ltsel)
1440 *final_types[0] = R_LSEL;
1441 else
1442 *final_types[0] = R_RSEL;
a36b6f1d 1443 final_types[1] = final_type;
017a52d7
JL
1444 final_types[2] = NULL;
1445 *final_type = base_type;
1446 break;
1447
1448 case e_lssel:
1449 case e_rssel:
1450 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
9783e04a 1451 if (!final_types[0])
a9713b91 1452 return NULL;
017a52d7
JL
1453 *final_types[0] = R_S_MODE;
1454 final_types[1] = final_type;
1455 final_types[2] = NULL;
1456 *final_type = base_type;
1457 break;
32619c58 1458
017a52d7
JL
1459 case e_lsel:
1460 case e_rsel:
1461 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
9783e04a 1462 if (!final_types[0])
a9713b91 1463 return NULL;
017a52d7
JL
1464 *final_types[0] = R_N_MODE;
1465 final_types[1] = final_type;
1466 final_types[2] = NULL;
1467 *final_type = base_type;
1468 break;
32619c58 1469
017a52d7
JL
1470 case e_ldsel:
1471 case e_rdsel:
1472 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
9783e04a 1473 if (!final_types[0])
a9713b91 1474 return NULL;
017a52d7
JL
1475 *final_types[0] = R_D_MODE;
1476 final_types[1] = final_type;
1477 final_types[2] = NULL;
1478 *final_type = base_type;
1479 break;
32619c58 1480
017a52d7
JL
1481 case e_lrsel:
1482 case e_rrsel:
1483 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
9783e04a 1484 if (!final_types[0])
a9713b91 1485 return NULL;
017a52d7
JL
1486 *final_types[0] = R_R_MODE;
1487 final_types[1] = final_type;
1488 final_types[2] = NULL;
1489 *final_type = base_type;
1490 break;
1491 }
1492
32619c58
JL
1493 switch (base_type)
1494 {
1495 case R_HPPA:
c40439a2
JL
1496 /* The difference of two symbols needs *very* special handling. */
1497 if (sym_diff)
1498 {
1499 final_types[0] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1500 final_types[1] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1501 final_types[2] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1502 final_types[3] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1503 if (!final_types[0] || !final_types[1] || !final_types[2])
c40439a2 1504 return NULL;
515b8104
JL
1505 if (field == e_fsel)
1506 *final_types[0] = R_FSEL;
1507 else if (field == e_rsel)
1508 *final_types[0] = R_RSEL;
1509 else if (field == e_lsel)
1510 *final_types[0] = R_LSEL;
c40439a2
JL
1511 *final_types[1] = R_COMP2;
1512 *final_types[2] = R_COMP2;
1513 *final_types[3] = R_COMP1;
1514 final_types[4] = final_type;
1515 *final_types[4] = R_CODE_EXPR;
1516 final_types[5] = NULL;
1517 break;
1518 }
32619c58 1519 /* PLABELs get their own relocation type. */
c40439a2 1520 else if (field == e_psel
32619c58
JL
1521 || field == e_lpsel
1522 || field == e_rpsel)
a36b6f1d
JL
1523 {
1524 /* A PLABEL relocation that has a size of 32 bits must
1525 be a R_DATA_PLABEL. All others are R_CODE_PLABELs. */
1526 if (format == 32)
1527 *final_type = R_DATA_PLABEL;
1528 else
1529 *final_type = R_CODE_PLABEL;
1530 }
1531 /* PIC stuff. */
1532 else if (field == e_tsel
1533 || field == e_ltsel
1534 || field == e_rtsel)
1535 *final_type = R_DLT_REL;
1536 /* A relocation in the data space is always a full 32bits. */
32619c58
JL
1537 else if (format == 32)
1538 *final_type = R_DATA_ONE_SYMBOL;
1539
1540 break;
1541
1542 case R_HPPA_GOTOFF:
1543 /* More PLABEL special cases. */
1544 if (field == e_psel
1545 || field == e_lpsel
1546 || field == e_rpsel)
1547 *final_type = R_DATA_PLABEL;
1548 break;
1549
c40439a2
JL
1550 case R_HPPA_COMPLEX:
1551 /* The difference of two symbols needs *very* special handling. */
1552 if (sym_diff)
1553 {
1554 final_types[0] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1555 final_types[1] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1556 final_types[2] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1557 final_types[3] = (int *)bfd_alloc_by_size_t (abfd, sizeof (int));
1558 if (!final_types[0] || !final_types[1] || !final_types[2])
c40439a2 1559 return NULL;
515b8104
JL
1560 if (field == e_fsel)
1561 *final_types[0] = R_FSEL;
1562 else if (field == e_rsel)
1563 *final_types[0] = R_RSEL;
1564 else if (field == e_lsel)
1565 *final_types[0] = R_LSEL;
c40439a2
JL
1566 *final_types[1] = R_COMP2;
1567 *final_types[2] = R_COMP2;
1568 *final_types[3] = R_COMP1;
1569 final_types[4] = final_type;
1570 *final_types[4] = R_CODE_EXPR;
1571 final_types[5] = NULL;
1572 break;
1573 }
1574 else
1575 break;
1576
32619c58
JL
1577 case R_HPPA_NONE:
1578 case R_HPPA_ABS_CALL:
1579 case R_HPPA_PCREL_CALL:
32619c58
JL
1580 /* Right now we can default all these. */
1581 break;
1582 }
1583 return final_types;
1584}
1585
1586/* Return the address of the correct entry in the PA SOM relocation
1587 howto table. */
1588
82492ca1 1589/*ARGSUSED*/
fede9992 1590static reloc_howto_type *
82492ca1
ILT
1591som_bfd_reloc_type_lookup (abfd, code)
1592 bfd *abfd;
32619c58
JL
1593 bfd_reloc_code_real_type code;
1594{
1595 if ((int) code < (int) R_NO_RELOCATION + 255)
1596 {
1597 BFD_ASSERT ((int) som_hppa_howto_table[(int) code].type == (int) code);
1598 return &som_hppa_howto_table[(int) code];
1599 }
1600
1601 return (reloc_howto_type *) 0;
1602}
1603
9e16fcf1
SG
1604/* Perform some initialization for an object. Save results of this
1605 initialization in the BFD. */
d9ad93bc 1606
2f3508ad 1607static const bfd_target *
9e16fcf1 1608som_object_setup (abfd, file_hdrp, aux_hdrp)
d9ad93bc
KR
1609 bfd *abfd;
1610 struct header *file_hdrp;
1611 struct som_exec_auxhdr *aux_hdrp;
1612{
9ea5de84
JL
1613 asection *section;
1614 int found;
1615
9e16fcf1
SG
1616 /* som_mkobject will set bfd_error if som_mkobject fails. */
1617 if (som_mkobject (abfd) != true)
1618 return 0;
d9ad93bc 1619
9e16fcf1
SG
1620 /* Set BFD flags based on what information is available in the SOM. */
1621 abfd->flags = NO_FLAGS;
9e16fcf1
SG
1622 if (file_hdrp->symbol_total)
1623 abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS;
1624
ec743cef
JL
1625 switch (file_hdrp->a_magic)
1626 {
1627 case DEMAND_MAGIC:
1628 abfd->flags |= (D_PAGED | WP_TEXT | EXEC_P);
1629 break;
1630 case SHARE_MAGIC:
1631 abfd->flags |= (WP_TEXT | EXEC_P);
1632 break;
1633 case EXEC_MAGIC:
1634 abfd->flags |= (EXEC_P);
1635 break;
1636 case RELOC_MAGIC:
1637 abfd->flags |= HAS_RELOC;
1638 break;
65b1ef49
JL
1639#ifdef SHL_MAGIC
1640 case SHL_MAGIC:
1641#endif
1642#ifdef DL_MAGIC
1643 case DL_MAGIC:
1644#endif
1645 abfd->flags |= DYNAMIC;
1646 break;
1647
ec743cef
JL
1648 default:
1649 break;
1650 }
1651
a0b4aa62
JL
1652 /* Allocate space to hold the saved exec header information. */
1653 obj_som_exec_data (abfd) = (struct som_exec_data *)
1654 bfd_zalloc (abfd, sizeof (struct som_exec_data ));
1655 if (obj_som_exec_data (abfd) == NULL)
a9713b91 1656 return NULL;
a0b4aa62
JL
1657
1658 /* The braindamaged OSF1 linker switched exec_flags and exec_entry!
1659
fede9992
JL
1660 We used to identify OSF1 binaries based on NEW_VERSION_ID, but
1661 apparently the latest HPUX linker is using NEW_VERSION_ID now.
1662
1663 It's about time, OSF has used the new id since at least 1992;
1664 HPUX didn't start till nearly 1995!.
1665
1666 The new approach examines the entry field. If it's zero or not 4
1667 byte aligned then it's not a proper code address and we guess it's
1668 really the executable flags. */
9ea5de84
JL
1669 found = 0;
1670 for (section = abfd->sections; section; section = section->next)
1671 {
1672 if ((section->flags & SEC_CODE) == 0)
1673 continue;
1674 if (aux_hdrp->exec_entry >= section->vma
1675 && aux_hdrp->exec_entry < section->vma + section->_cooked_size)
1676 found = 1;
1677 }
1678 if (aux_hdrp->exec_entry == 0
1679 || (aux_hdrp->exec_entry & 0x3) != 0
1680 || ! found)
a0b4aa62
JL
1681 {
1682 bfd_get_start_address (abfd) = aux_hdrp->exec_flags;
1683 obj_som_exec_data (abfd)->exec_flags = aux_hdrp->exec_entry;
1684 }
1685 else
1686 {
1687 bfd_get_start_address (abfd) = aux_hdrp->exec_entry;
1688 obj_som_exec_data (abfd)->exec_flags = aux_hdrp->exec_flags;
1689 }
1690
0f4161dd 1691 bfd_default_set_arch_mach (abfd, bfd_arch_hppa, pa10);
d9ad93bc 1692 bfd_get_symcount (abfd) = file_hdrp->symbol_total;
9e16fcf1
SG
1693
1694 /* Initialize the saved symbol table and string table to NULL.
1695 Save important offsets and sizes from the SOM header into
1696 the BFD. */
1697 obj_som_stringtab (abfd) = (char *) NULL;
1698 obj_som_symtab (abfd) = (som_symbol_type *) NULL;
5faa346b 1699 obj_som_sorted_syms (abfd) = NULL;
9e16fcf1
SG
1700 obj_som_stringtab_size (abfd) = file_hdrp->symbol_strings_size;
1701 obj_som_sym_filepos (abfd) = file_hdrp->symbol_location;
1702 obj_som_str_filepos (abfd) = file_hdrp->symbol_strings_location;
1703 obj_som_reloc_filepos (abfd) = file_hdrp->fixup_request_location;
4359a7ef 1704 obj_som_exec_data (abfd)->system_id = file_hdrp->system_id;
a0b4aa62 1705
d9ad93bc
KR
1706 return abfd->xvec;
1707}
1708
d9ad93bc
KR
1709/* Convert all of the space and subspace info into BFD sections. Each space
1710 contains a number of subspaces, which in turn describe the mapping between
1711 regions of the exec file, and the address space that the program runs in.
1712 BFD sections which correspond to spaces will overlap the sections for the
1713 associated subspaces. */
1714
9e16fcf1 1715static boolean
d9ad93bc
KR
1716setup_sections (abfd, file_hdr)
1717 bfd *abfd;
1718 struct header *file_hdr;
1719{
1720 char *space_strings;
9ea5de84 1721 unsigned int space_index, i;
9e16fcf1 1722 unsigned int total_subspaces = 0;
9ea5de84 1723 asection **subspace_sections, *section;
d9ad93bc
KR
1724
1725 /* First, read in space names */
1726
80425e6c 1727 space_strings = malloc (file_hdr->space_strings_size);
8eb5d4be 1728 if (!space_strings && file_hdr->space_strings_size != 0)
80425e6c
JK
1729 {
1730 bfd_set_error (bfd_error_no_memory);
1731 goto error_return;
1732 }
d9ad93bc
KR
1733
1734 if (bfd_seek (abfd, file_hdr->space_strings_location, SEEK_SET) < 0)
80425e6c 1735 goto error_return;
d9ad93bc
KR
1736 if (bfd_read (space_strings, 1, file_hdr->space_strings_size, abfd)
1737 != file_hdr->space_strings_size)
80425e6c 1738 goto error_return;
d9ad93bc
KR
1739
1740 /* Loop over all of the space dictionaries, building up sections */
d9ad93bc
KR
1741 for (space_index = 0; space_index < file_hdr->space_total; space_index++)
1742 {
1743 struct space_dictionary_record space;
9e16fcf1
SG
1744 struct subspace_dictionary_record subspace, save_subspace;
1745 int subspace_index;
d9ad93bc 1746 asection *space_asect;
ec743cef 1747 char *newname;
d9ad93bc
KR
1748
1749 /* Read the space dictionary element */
1750 if (bfd_seek (abfd, file_hdr->space_location
1751 + space_index * sizeof space, SEEK_SET) < 0)
80425e6c 1752 goto error_return;
d9ad93bc 1753 if (bfd_read (&space, 1, sizeof space, abfd) != sizeof space)
80425e6c 1754 goto error_return;
d9ad93bc
KR
1755
1756 /* Setup the space name string */
1757 space.name.n_name = space.name.n_strx + space_strings;
1758
1759 /* Make a section out of it */
ec743cef
JL
1760 newname = bfd_alloc (abfd, strlen (space.name.n_name) + 1);
1761 if (!newname)
1762 goto error_return;
1763 strcpy (newname, space.name.n_name);
1764
1765 space_asect = bfd_make_section_anyway (abfd, newname);
d9ad93bc 1766 if (!space_asect)
80425e6c 1767 goto error_return;
d9ad93bc 1768
b486fb13
JL
1769 if (space.is_loadable == 0)
1770 space_asect->flags |= SEC_DEBUGGING;
1771
1772 /* Set up all the attributes for the space. */
15766917
JL
1773 if (bfd_som_set_section_attributes (space_asect, space.is_defined,
1774 space.is_private, space.sort_key,
1775 space.space_number) == false)
1776 goto error_return;
b486fb13 1777
97f1feda
JL
1778 /* If the space has no subspaces, then we're done. */
1779 if (space.subspace_quantity == 0)
1780 continue;
1781
d9ad93bc
KR
1782 /* Now, read in the first subspace for this space */
1783 if (bfd_seek (abfd, file_hdr->subspace_location
1784 + space.subspace_index * sizeof subspace,
1785 SEEK_SET) < 0)
80425e6c 1786 goto error_return;
d9ad93bc 1787 if (bfd_read (&subspace, 1, sizeof subspace, abfd) != sizeof subspace)
80425e6c 1788 goto error_return;
d9ad93bc
KR
1789 /* Seek back to the start of the subspaces for loop below */
1790 if (bfd_seek (abfd, file_hdr->subspace_location
1791 + space.subspace_index * sizeof subspace,
1792 SEEK_SET) < 0)
80425e6c 1793 goto error_return;
d9ad93bc
KR
1794
1795 /* Setup the start address and file loc from the first subspace record */
1796 space_asect->vma = subspace.subspace_start;
1797 space_asect->filepos = subspace.file_loc_init_value;
9e16fcf1 1798 space_asect->alignment_power = log2 (subspace.alignment);
98ecc945 1799 if (space_asect->alignment_power == -1)
80425e6c 1800 goto error_return;
9e16fcf1
SG
1801
1802 /* Initialize save_subspace so we can reliably determine if this
1803 loop placed any useful values into it. */
6e033f86 1804 memset (&save_subspace, 0, sizeof (struct subspace_dictionary_record));
d9ad93bc
KR
1805
1806 /* Loop over the rest of the subspaces, building up more sections */
1807 for (subspace_index = 0; subspace_index < space.subspace_quantity;
1808 subspace_index++)
1809 {
1810 asection *subspace_asect;
1811
1812 /* Read in the next subspace */
1813 if (bfd_read (&subspace, 1, sizeof subspace, abfd)
1814 != sizeof subspace)
80425e6c 1815 goto error_return;
d9ad93bc
KR
1816
1817 /* Setup the subspace name string */
1818 subspace.name.n_name = subspace.name.n_strx + space_strings;
1819
ec743cef
JL
1820 newname = bfd_alloc (abfd, strlen (subspace.name.n_name) + 1);
1821 if (!newname)
1822 goto error_return;
1823 strcpy (newname, subspace.name.n_name);
d9ad93bc 1824
ec743cef
JL
1825 /* Make a section out of this subspace */
1826 subspace_asect = bfd_make_section_anyway (abfd, newname);
d9ad93bc 1827 if (!subspace_asect)
80425e6c 1828 goto error_return;
9e16fcf1 1829
b486fb13 1830 /* Store private information about the section. */
15766917
JL
1831 if (bfd_som_set_subsection_attributes (subspace_asect, space_asect,
1832 subspace.access_control_bits,
1833 subspace.sort_key,
1834 subspace.quadrant) == false)
1835 goto error_return;
b486fb13 1836
9ea5de84
JL
1837 /* Keep an easy mapping between subspaces and sections.
1838 Note we do not necessarily read the subspaces in the
1839 same order in which they appear in the object file.
1840
1841 So to make the target index come out correctly, we
1842 store the location of the subspace header in target
1843 index, then sort using the location of the subspace
1844 header as the key. Then we can assign correct
1845 subspace indices. */
1846 total_subspaces++;
1847 subspace_asect->target_index = bfd_tell (abfd) - sizeof (subspace);
9e16fcf1
SG
1848
1849 /* Set SEC_READONLY and SEC_CODE/SEC_DATA as specified
1850 by the access_control_bits in the subspace header. */
1851 switch (subspace.access_control_bits >> 4)
1852 {
1853 /* Readonly data. */
1854 case 0x0:
1855 subspace_asect->flags |= SEC_DATA | SEC_READONLY;
1856 break;
1857
1858 /* Normal data. */
1859 case 0x1:
1860 subspace_asect->flags |= SEC_DATA;
1861 break;
1862
1863 /* Readonly code and the gateways.
1864 Gateways have other attributes which do not map
1865 into anything BFD knows about. */
1866 case 0x2:
1867 case 0x4:
1868 case 0x5:
1869 case 0x6:
1870 case 0x7:
1871 subspace_asect->flags |= SEC_CODE | SEC_READONLY;
1872 break;
1873
1874 /* dynamic (writable) code. */
1875 case 0x3:
1876 subspace_asect->flags |= SEC_CODE;
1877 break;
1878 }
1879
1880 if (subspace.dup_common || subspace.is_common)
1881 subspace_asect->flags |= SEC_IS_COMMON;
36456a67 1882 else if (subspace.subspace_length > 0)
9e16fcf1 1883 subspace_asect->flags |= SEC_HAS_CONTENTS;
b486fb13 1884
d9ad93bc
KR
1885 if (subspace.is_loadable)
1886 subspace_asect->flags |= SEC_ALLOC | SEC_LOAD;
b486fb13
JL
1887 else
1888 subspace_asect->flags |= SEC_DEBUGGING;
1889
d9ad93bc
KR
1890 if (subspace.code_only)
1891 subspace_asect->flags |= SEC_CODE;
1892
36456a67
JL
1893 /* Both file_loc_init_value and initialization_length will
1894 be zero for a BSS like subspace. */
1895 if (subspace.file_loc_init_value == 0
1896 && subspace.initialization_length == 0)
5faa346b 1897 subspace_asect->flags &= ~(SEC_DATA | SEC_LOAD | SEC_HAS_CONTENTS);
36456a67 1898
9e16fcf1
SG
1899 /* This subspace has relocations.
1900 The fixup_request_quantity is a byte count for the number of
1901 entries in the relocation stream; it is not the actual number
1902 of relocations in the subspace. */
1903 if (subspace.fixup_request_quantity != 0)
1904 {
1905 subspace_asect->flags |= SEC_RELOC;
1906 subspace_asect->rel_filepos = subspace.fixup_request_index;
1907 som_section_data (subspace_asect)->reloc_size
1908 = subspace.fixup_request_quantity;
1909 /* We can not determine this yet. When we read in the
1910 relocation table the correct value will be filled in. */
1911 subspace_asect->reloc_count = -1;
1912 }
1913
1914 /* Update save_subspace if appropriate. */
1915 if (subspace.file_loc_init_value > save_subspace.file_loc_init_value)
1916 save_subspace = subspace;
1917
d9ad93bc
KR
1918 subspace_asect->vma = subspace.subspace_start;
1919 subspace_asect->_cooked_size = subspace.subspace_length;
36456a67 1920 subspace_asect->_raw_size = subspace.subspace_length;
d9ad93bc 1921 subspace_asect->filepos = subspace.file_loc_init_value;
98ecc945
JL
1922 subspace_asect->alignment_power = log2 (subspace.alignment);
1923 if (subspace_asect->alignment_power == -1)
80425e6c 1924 goto error_return;
d9ad93bc 1925 }
9e16fcf1
SG
1926
1927 /* Yow! there is no subspace within the space which actually
1928 has initialized information in it; this should never happen
1929 as far as I know. */
1930 if (!save_subspace.file_loc_init_value)
80425e6c 1931 goto error_return;
9e16fcf1 1932
d9ad93bc 1933 /* Setup the sizes for the space section based upon the info in the
9e16fcf1
SG
1934 last subspace of the space. */
1935 space_asect->_cooked_size = save_subspace.subspace_start
1936 - space_asect->vma + save_subspace.subspace_length;
1937 space_asect->_raw_size = save_subspace.file_loc_init_value
1938 - space_asect->filepos + save_subspace.initialization_length;
d9ad93bc 1939 }
9ea5de84
JL
1940 /* Now that we've read in all the subspace records, we need to assign
1941 a target index to each subspace. */
1942 subspace_sections = (asection **) malloc (total_subspaces
1943 * sizeof (asection *));
1944 if (subspace_sections == NULL)
1945 goto error_return;
1946
1947 for (i = 0, section = abfd->sections; section; section = section->next)
1948 {
1949 if (!som_is_subspace (section))
1950 continue;
1951
1952 subspace_sections[i] = section;
1953 i++;
1954 }
1955 qsort (subspace_sections, total_subspaces,
1956 sizeof (asection *), compare_subspaces);
1957
1958 /* subspace_sections is now sorted in the order in which the subspaces
1959 appear in the object file. Assign an index to each one now. */
1960 for (i = 0; i < total_subspaces; i++)
1961 subspace_sections[i]->target_index = i;
1962
80425e6c
JK
1963 if (space_strings != NULL)
1964 free (space_strings);
9ea5de84
JL
1965
1966 if (subspace_sections != NULL)
1967 free (subspace_sections);
1968
9e16fcf1 1969 return true;
80425e6c
JK
1970
1971 error_return:
1972 if (space_strings != NULL)
1973 free (space_strings);
9ea5de84
JL
1974
1975 if (subspace_sections != NULL)
1976 free (subspace_sections);
80425e6c 1977 return false;
d9ad93bc
KR
1978}
1979
9e16fcf1
SG
1980/* Read in a SOM object and make it into a BFD. */
1981
2f3508ad 1982static const bfd_target *
9e16fcf1 1983som_object_p (abfd)
d9ad93bc
KR
1984 bfd *abfd;
1985{
1986 struct header file_hdr;
1987 struct som_exec_auxhdr aux_hdr;
1988
1989 if (bfd_read ((PTR) & file_hdr, 1, FILE_HDR_SIZE, abfd) != FILE_HDR_SIZE)
9e16fcf1 1990 {
25057836
JL
1991 if (bfd_get_error () != bfd_error_system_call)
1992 bfd_set_error (bfd_error_wrong_format);
9e16fcf1
SG
1993 return 0;
1994 }
d9ad93bc
KR
1995
1996 if (!_PA_RISC_ID (file_hdr.system_id))
1997 {
d1ad85a6 1998 bfd_set_error (bfd_error_wrong_format);
d9ad93bc
KR
1999 return 0;
2000 }
2001
2002 switch (file_hdr.a_magic)
2003 {
9e16fcf1 2004 case RELOC_MAGIC:
d9ad93bc
KR
2005 case EXEC_MAGIC:
2006 case SHARE_MAGIC:
2007 case DEMAND_MAGIC:
2008#ifdef DL_MAGIC
2009 case DL_MAGIC:
2010#endif
2011#ifdef SHL_MAGIC
2012 case SHL_MAGIC:
9e16fcf1
SG
2013#endif
2014#ifdef EXECLIBMAGIC
2015 case EXECLIBMAGIC:
017a52d7
JL
2016#endif
2017#ifdef SHARED_MAGIC_CNX
2018 case SHARED_MAGIC_CNX:
d9ad93bc
KR
2019#endif
2020 break;
2021 default:
d1ad85a6 2022 bfd_set_error (bfd_error_wrong_format);
d9ad93bc
KR
2023 return 0;
2024 }
2025
2026 if (file_hdr.version_id != VERSION_ID
2027 && file_hdr.version_id != NEW_VERSION_ID)
2028 {
d1ad85a6 2029 bfd_set_error (bfd_error_wrong_format);
d9ad93bc
KR
2030 return 0;
2031 }
2032
9e16fcf1
SG
2033 /* If the aux_header_size field in the file header is zero, then this
2034 object is an incomplete executable (a .o file). Do not try to read
2035 a non-existant auxiliary header. */
6e033f86 2036 memset (&aux_hdr, 0, sizeof (struct som_exec_auxhdr));
9e16fcf1
SG
2037 if (file_hdr.aux_header_size != 0)
2038 {
2039 if (bfd_read ((PTR) & aux_hdr, 1, AUX_HDR_SIZE, abfd) != AUX_HDR_SIZE)
2040 {
25057836
JL
2041 if (bfd_get_error () != bfd_error_system_call)
2042 bfd_set_error (bfd_error_wrong_format);
9e16fcf1
SG
2043 return 0;
2044 }
2045 }
d9ad93bc
KR
2046
2047 if (!setup_sections (abfd, &file_hdr))
9e16fcf1
SG
2048 {
2049 /* setup_sections does not bubble up a bfd error code. */
d1ad85a6 2050 bfd_set_error (bfd_error_bad_value);
9e16fcf1
SG
2051 return 0;
2052 }
d9ad93bc 2053
9e16fcf1
SG
2054 /* This appears to be a valid SOM object. Do some initialization. */
2055 return som_object_setup (abfd, &file_hdr, &aux_hdr);
d9ad93bc
KR
2056}
2057
9e16fcf1
SG
2058/* Create a SOM object. */
2059
d9ad93bc 2060static boolean
9e16fcf1 2061som_mkobject (abfd)
d9ad93bc
KR
2062 bfd *abfd;
2063{
9e16fcf1
SG
2064 /* Allocate memory to hold backend information. */
2065 abfd->tdata.som_data = (struct som_data_struct *)
2066 bfd_zalloc (abfd, sizeof (struct som_data_struct));
2067 if (abfd->tdata.som_data == NULL)
a9713b91 2068 return false;
9e16fcf1 2069 return true;
d9ad93bc
KR
2070}
2071
0ffa24b9
JL
2072/* Initialize some information in the file header. This routine makes
2073 not attempt at doing the right thing for a full executable; it
2074 is only meant to handle relocatable objects. */
2075
2076static boolean
2077som_prep_headers (abfd)
2078 bfd *abfd;
2079{
4359a7ef 2080 struct header *file_hdr;
0ffa24b9
JL
2081 asection *section;
2082
4359a7ef
JL
2083 /* Make and attach a file header to the BFD. */
2084 file_hdr = (struct header *) bfd_zalloc (abfd, sizeof (struct header));
2085 if (file_hdr == NULL)
a9713b91 2086 return false;
4359a7ef
JL
2087 obj_som_file_hdr (abfd) = file_hdr;
2088
65b1ef49 2089 if (abfd->flags & (EXEC_P | DYNAMIC))
ec743cef 2090 {
fde543b5
JL
2091
2092 /* Make and attach an exec header to the BFD. */
2093 obj_som_exec_hdr (abfd) = (struct som_exec_auxhdr *)
2094 bfd_zalloc (abfd, sizeof (struct som_exec_auxhdr));
2095 if (obj_som_exec_hdr (abfd) == NULL)
a9713b91 2096 return false;
fde543b5 2097
ec743cef
JL
2098 if (abfd->flags & D_PAGED)
2099 file_hdr->a_magic = DEMAND_MAGIC;
2100 else if (abfd->flags & WP_TEXT)
2101 file_hdr->a_magic = SHARE_MAGIC;
65b1ef49
JL
2102#ifdef SHL_MAGIC
2103 else if (abfd->flags & DYNAMIC)
2104 file_hdr->a_magic = SHL_MAGIC;
2105#endif
ec743cef
JL
2106 else
2107 file_hdr->a_magic = EXEC_MAGIC;
2108 }
0ffa24b9
JL
2109 else
2110 file_hdr->a_magic = RELOC_MAGIC;
2111
2112 /* Only new format SOM is supported. */
2113 file_hdr->version_id = NEW_VERSION_ID;
2114
2115 /* These fields are optional, and embedding timestamps is not always
2116 a wise thing to do, it makes comparing objects during a multi-stage
2117 bootstrap difficult. */
2118 file_hdr->file_time.secs = 0;
2119 file_hdr->file_time.nanosecs = 0;
2120
4359a7ef
JL
2121 file_hdr->entry_space = 0;
2122 file_hdr->entry_subspace = 0;
2123 file_hdr->entry_offset = 0;
0ffa24b9
JL
2124 file_hdr->presumed_dp = 0;
2125
2126 /* Now iterate over the sections translating information from
2127 BFD sections to SOM spaces/subspaces. */
2128
2129 for (section = abfd->sections; section != NULL; section = section->next)
2130 {
2131 /* Ignore anything which has not been marked as a space or
2132 subspace. */
15766917 2133 if (!som_is_space (section) && !som_is_subspace (section))
0ffa24b9 2134 continue;
15766917
JL
2135
2136 if (som_is_space (section))
0ffa24b9 2137 {
15766917
JL
2138 /* Allocate space for the space dictionary. */
2139 som_section_data (section)->space_dict
2140 = (struct space_dictionary_record *)
2141 bfd_zalloc (abfd, sizeof (struct space_dictionary_record));
2142 if (som_section_data (section)->space_dict == NULL)
a9713b91 2143 return false;
0ffa24b9
JL
2144 /* Set space attributes. Note most attributes of SOM spaces
2145 are set based on the subspaces it contains. */
15766917
JL
2146 som_section_data (section)->space_dict->loader_fix_index = -1;
2147 som_section_data (section)->space_dict->init_pointer_index = -1;
2148
2149 /* Set more attributes that were stuffed away in private data. */
2150 som_section_data (section)->space_dict->sort_key =
2151 som_section_data (section)->copy_data->sort_key;
2152 som_section_data (section)->space_dict->is_defined =
2153 som_section_data (section)->copy_data->is_defined;
2154 som_section_data (section)->space_dict->is_private =
2155 som_section_data (section)->copy_data->is_private;
2156 som_section_data (section)->space_dict->space_number =
673aceca 2157 som_section_data (section)->copy_data->space_number;
0ffa24b9
JL
2158 }
2159 else
2160 {
15766917
JL
2161 /* Allocate space for the subspace dictionary. */
2162 som_section_data (section)->subspace_dict
2163 = (struct subspace_dictionary_record *)
2164 bfd_zalloc (abfd, sizeof (struct subspace_dictionary_record));
2165 if (som_section_data (section)->subspace_dict == NULL)
a9713b91 2166 return false;
15766917 2167
0ffa24b9
JL
2168 /* Set subspace attributes. Basic stuff is done here, additional
2169 attributes are filled in later as more information becomes
2170 available. */
2171 if (section->flags & SEC_IS_COMMON)
2172 {
15766917
JL
2173 som_section_data (section)->subspace_dict->dup_common = 1;
2174 som_section_data (section)->subspace_dict->is_common = 1;
0ffa24b9
JL
2175 }
2176
2177 if (section->flags & SEC_ALLOC)
15766917 2178 som_section_data (section)->subspace_dict->is_loadable = 1;
0ffa24b9
JL
2179
2180 if (section->flags & SEC_CODE)
15766917 2181 som_section_data (section)->subspace_dict->code_only = 1;
0ffa24b9 2182
15766917 2183 som_section_data (section)->subspace_dict->subspace_start =
0ffa24b9 2184 section->vma;
15766917 2185 som_section_data (section)->subspace_dict->subspace_length =
0ffa24b9 2186 bfd_section_size (abfd, section);
15766917 2187 som_section_data (section)->subspace_dict->initialization_length =
0ffa24b9 2188 bfd_section_size (abfd, section);
15766917 2189 som_section_data (section)->subspace_dict->alignment =
0ffa24b9 2190 1 << section->alignment_power;
15766917
JL
2191
2192 /* Set more attributes that were stuffed away in private data. */
2193 som_section_data (section)->subspace_dict->sort_key =
2194 som_section_data (section)->copy_data->sort_key;
2195 som_section_data (section)->subspace_dict->access_control_bits =
2196 som_section_data (section)->copy_data->access_control_bits;
2197 som_section_data (section)->subspace_dict->quadrant =
2198 som_section_data (section)->copy_data->quadrant;
0ffa24b9
JL
2199 }
2200 }
2201 return true;
2202}
2203
15766917
JL
2204/* Return true if the given section is a SOM space, false otherwise. */
2205
2206static boolean
2207som_is_space (section)
2208 asection *section;
2209{
2210 /* If no copy data is available, then it's neither a space nor a
2211 subspace. */
2212 if (som_section_data (section)->copy_data == NULL)
2213 return false;
2214
2215 /* If the containing space isn't the same as the given section,
2216 then this isn't a space. */
9ea5de84
JL
2217 if (som_section_data (section)->copy_data->container != section
2218 && (som_section_data (section)->copy_data->container->output_section
2219 != section))
15766917
JL
2220 return false;
2221
2222 /* OK. Must be a space. */
2223 return true;
2224}
2225
2226/* Return true if the given section is a SOM subspace, false otherwise. */
2227
2228static boolean
2229som_is_subspace (section)
2230 asection *section;
2231{
2232 /* If no copy data is available, then it's neither a space nor a
2233 subspace. */
2234 if (som_section_data (section)->copy_data == NULL)
2235 return false;
2236
2237 /* If the containing space is the same as the given section,
2238 then this isn't a subspace. */
9ea5de84
JL
2239 if (som_section_data (section)->copy_data->container == section
2240 || (som_section_data (section)->copy_data->container->output_section
2241 == section))
15766917
JL
2242 return false;
2243
2244 /* OK. Must be a subspace. */
2245 return true;
2246}
2247
2248/* Return true if the given space containins the given subspace. It
2249 is safe to assume space really is a space, and subspace really
2250 is a subspace. */
2251
2252static boolean
2253som_is_container (space, subspace)
2254 asection *space, *subspace;
2255{
9ea5de84
JL
2256 return (som_section_data (subspace)->copy_data->container == space
2257 || (som_section_data (subspace)->copy_data->container->output_section
2258 == space));
15766917
JL
2259}
2260
5532fc5a
JL
2261/* Count and return the number of spaces attached to the given BFD. */
2262
2263static unsigned long
2264som_count_spaces (abfd)
2265 bfd *abfd;
2266{
2267 int count = 0;
2268 asection *section;
2269
2270 for (section = abfd->sections; section != NULL; section = section->next)
15766917 2271 count += som_is_space (section);
5532fc5a
JL
2272
2273 return count;
2274}
2275
2276/* Count the number of subspaces attached to the given BFD. */
2277
2278static unsigned long
2279som_count_subspaces (abfd)
2280 bfd *abfd;
2281{
2282 int count = 0;
2283 asection *section;
2284
2285 for (section = abfd->sections; section != NULL; section = section->next)
15766917 2286 count += som_is_subspace (section);
5532fc5a
JL
2287
2288 return count;
2289}
2290
2291/* Return -1, 0, 1 indicating the relative ordering of sym1 and sym2.
2292
2293 We desire symbols to be ordered starting with the symbol with the
2294 highest relocation count down to the symbol with the lowest relocation
2295 count. Doing so compacts the relocation stream. */
2296
2297static int
82492ca1
ILT
2298compare_syms (arg1, arg2)
2299 const PTR arg1;
2300 const PTR arg2;
5532fc5a
JL
2301
2302{
82492ca1
ILT
2303 asymbol **sym1 = (asymbol **) arg1;
2304 asymbol **sym2 = (asymbol **) arg2;
5532fc5a
JL
2305 unsigned int count1, count2;
2306
2307 /* Get relocation count for each symbol. Note that the count
2308 is stored in the udata pointer for section symbols! */
2309 if ((*sym1)->flags & BSF_SECTION_SYM)
5faa346b 2310 count1 = (*sym1)->udata.i;
5532fc5a 2311 else
50c5c4ad 2312 count1 = som_symbol_data (*sym1)->reloc_count;
5532fc5a
JL
2313
2314 if ((*sym2)->flags & BSF_SECTION_SYM)
5faa346b 2315 count2 = (*sym2)->udata.i;
5532fc5a 2316 else
50c5c4ad 2317 count2 = som_symbol_data (*sym2)->reloc_count;
5532fc5a
JL
2318
2319 /* Return the appropriate value. */
2320 if (count1 < count2)
2321 return 1;
2322 else if (count1 > count2)
2323 return -1;
2324 return 0;
2325}
2326
9ea5de84
JL
2327/* Return -1, 0, 1 indicating the relative ordering of subspace1
2328 and subspace. */
2329
2330static int
2331compare_subspaces (arg1, arg2)
2332 const PTR arg1;
2333 const PTR arg2;
2334
2335{
2336 asection **subspace1 = (asection **) arg1;
2337 asection **subspace2 = (asection **) arg2;
2338 unsigned int count1, count2;
2339
2340 if ((*subspace1)->target_index < (*subspace2)->target_index)
2341 return -1;
2342 else if ((*subspace2)->target_index < (*subspace1)->target_index)
2343 return 1;
2344 else
2345 return 0;
2346}
2347
aff97790
JL
2348/* Perform various work in preparation for emitting the fixup stream. */
2349
2350static void
2351som_prep_for_fixups (abfd, syms, num_syms)
2352 bfd *abfd;
2353 asymbol **syms;
2354 unsigned long num_syms;
2355{
2356 int i;
2357 asection *section;
5faa346b 2358 asymbol **sorted_syms;
aff97790
JL
2359
2360 /* Most SOM relocations involving a symbol have a length which is
2361 dependent on the index of the symbol. So symbols which are
2362 used often in relocations should have a small index. */
2363
2364 /* First initialize the counters for each symbol. */
2365 for (i = 0; i < num_syms; i++)
2366 {
5faa346b
JL
2367 /* Handle a section symbol; these have no pointers back to the
2368 SOM symbol info. So we just use the udata field to hold the
2369 relocation count. */
8eb5d4be
JK
2370 if (som_symbol_data (syms[i]) == NULL
2371 || syms[i]->flags & BSF_SECTION_SYM)
aff97790
JL
2372 {
2373 syms[i]->flags |= BSF_SECTION_SYM;
5faa346b 2374 syms[i]->udata.i = 0;
aff97790
JL
2375 }
2376 else
50c5c4ad 2377 som_symbol_data (syms[i])->reloc_count = 0;
aff97790
JL
2378 }
2379
2380 /* Now that the counters are initialized, make a weighted count
2381 of how often a given symbol is used in a relocation. */
2382 for (section = abfd->sections; section != NULL; section = section->next)
2383 {
2384 int i;
2385
2386 /* Does this section have any relocations? */
2387 if (section->reloc_count <= 0)
2388 continue;
2389
2390 /* Walk through each relocation for this section. */
2391 for (i = 1; i < section->reloc_count; i++)
2392 {
2393 arelent *reloc = section->orelocation[i];
2394 int scale;
2395
baef2065
JL
2396 /* A relocation against a symbol in the *ABS* section really
2397 does not have a symbol. Likewise if the symbol isn't associated
2398 with any section. */
2399 if (reloc->sym_ptr_ptr == NULL
fde543b5 2400 || bfd_is_abs_section ((*reloc->sym_ptr_ptr)->section))
aff97790
JL
2401 continue;
2402
2403 /* Scaling to encourage symbols involved in R_DP_RELATIVE
2404 and R_CODE_ONE_SYMBOL relocations to come first. These
2405 two relocations have single byte versions if the symbol
2406 index is very small. */
2407 if (reloc->howto->type == R_DP_RELATIVE
2408 || reloc->howto->type == R_CODE_ONE_SYMBOL)
2409 scale = 2;
2410 else
2411 scale = 1;
2412
5faa346b 2413 /* Handle section symbols by storing the count in the udata
aff97790
JL
2414 field. It will not be used and the count is very important
2415 for these symbols. */
2416 if ((*reloc->sym_ptr_ptr)->flags & BSF_SECTION_SYM)
2417 {
5faa346b
JL
2418 (*reloc->sym_ptr_ptr)->udata.i =
2419 (*reloc->sym_ptr_ptr)->udata.i + scale;
aff97790
JL
2420 continue;
2421 }
2422
2423 /* A normal symbol. Increment the count. */
50c5c4ad 2424 som_symbol_data (*reloc->sym_ptr_ptr)->reloc_count += scale;
aff97790
JL
2425 }
2426 }
29f1ccee 2427
5faa346b
JL
2428 /* Sort a copy of the symbol table, rather than the canonical
2429 output symbol table. */
2430 sorted_syms = (asymbol **) bfd_zalloc (abfd, num_syms * sizeof (asymbol *));
2431 memcpy (sorted_syms, syms, num_syms * sizeof (asymbol *));
2432 qsort (sorted_syms, num_syms, sizeof (asymbol *), compare_syms);
2433 obj_som_sorted_syms (abfd) = sorted_syms;
aff97790
JL
2434
2435 /* Compute the symbol indexes, they will be needed by the relocation
2436 code. */
2437 for (i = 0; i < num_syms; i++)
2438 {
2439 /* A section symbol. Again, there is no pointer to backend symbol
5faa346b
JL
2440 information, so we reuse the udata field again. */
2441 if (sorted_syms[i]->flags & BSF_SECTION_SYM)
2442 sorted_syms[i]->udata.i = i;
aff97790 2443 else
5faa346b 2444 som_symbol_data (sorted_syms[i])->index = i;
aff97790
JL
2445 }
2446}
2447
9d0dea6f
JL
2448static boolean
2449som_write_fixups (abfd, current_offset, total_reloc_sizep)
2450 bfd *abfd;
2451 unsigned long current_offset;
2452 unsigned int *total_reloc_sizep;
2453{
2454 unsigned int i, j;
80425e6c
JK
2455 /* Chunk of memory that we can use as buffer space, then throw
2456 away. */
2457 unsigned char tmp_space[SOM_TMP_BUFSIZE];
2458 unsigned char *p;
9d0dea6f
JL
2459 unsigned int total_reloc_size = 0;
2460 unsigned int subspace_reloc_size = 0;
2461 unsigned int num_spaces = obj_som_file_hdr (abfd)->space_total;
2462 asection *section = abfd->sections;
2463
6e033f86 2464 memset (tmp_space, 0, SOM_TMP_BUFSIZE);
9d0dea6f
JL
2465 p = tmp_space;
2466
2467 /* All the fixups for a particular subspace are emitted in a single
2468 stream. All the subspaces for a particular space are emitted
2469 as a single stream.
2470
2471 So, to get all the locations correct one must iterate through all the
2472 spaces, for each space iterate through its subspaces and output a
2473 fixups stream. */
2474 for (i = 0; i < num_spaces; i++)
2475 {
2476 asection *subsection;
2477
2478 /* Find a space. */
15766917 2479 while (!som_is_space (section))
9d0dea6f
JL
2480 section = section->next;
2481
2482 /* Now iterate through each of its subspaces. */
2483 for (subsection = abfd->sections;
2484 subsection != NULL;
2485 subsection = subsection->next)
2486 {
017a52d7 2487 int reloc_offset, current_rounding_mode;
9d0dea6f
JL
2488
2489 /* Find a subspace of this space. */
15766917
JL
2490 if (!som_is_subspace (subsection)
2491 || !som_is_container (section, subsection))
9d0dea6f
JL
2492 continue;
2493
41194a4a
JL
2494 /* If this subspace does not have real data, then we are
2495 finised with it. */
c3a18888 2496 if ((subsection->flags & SEC_HAS_CONTENTS) == 0)
9d0dea6f 2497 {
15766917 2498 som_section_data (subsection)->subspace_dict->fixup_request_index
9d0dea6f
JL
2499 = -1;
2500 continue;
2501 }
2502
2503 /* This subspace has some relocations. Put the relocation stream
2504 index into the subspace record. */
15766917 2505 som_section_data (subsection)->subspace_dict->fixup_request_index
9d0dea6f
JL
2506 = total_reloc_size;
2507
2508 /* To make life easier start over with a clean slate for
2509 each subspace. Seek to the start of the relocation stream
2510 for this subspace in preparation for writing out its fixup
2511 stream. */
25057836
JL
2512 if (bfd_seek (abfd, current_offset + total_reloc_size, SEEK_SET) < 0)
2513 return false;
9d0dea6f
JL
2514
2515 /* Buffer space has already been allocated. Just perform some
2516 initialization here. */
2517 p = tmp_space;
2518 subspace_reloc_size = 0;
2519 reloc_offset = 0;
2520 som_initialize_reloc_queue (reloc_queue);
017a52d7 2521 current_rounding_mode = R_N_MODE;
9d0dea6f
JL
2522
2523 /* Translate each BFD relocation into one or more SOM
2524 relocations. */
2525 for (j = 0; j < subsection->reloc_count; j++)
2526 {
2527 arelent *bfd_reloc = subsection->orelocation[j];
2528 unsigned int skip;
2529 int sym_num;
2530
2531 /* Get the symbol number. Remember it's stored in a
2532 special place for section symbols. */
2533 if ((*bfd_reloc->sym_ptr_ptr)->flags & BSF_SECTION_SYM)
5faa346b 2534 sym_num = (*bfd_reloc->sym_ptr_ptr)->udata.i;
9d0dea6f 2535 else
50c5c4ad 2536 sym_num = som_symbol_data (*bfd_reloc->sym_ptr_ptr)->index;
9d0dea6f
JL
2537
2538 /* If there is not enough room for the next couple relocations,
2539 then dump the current buffer contents now. Also reinitialize
2540 the relocation queue.
2541
7430a991
JL
2542 No single BFD relocation could ever translate into more
2543 than 100 bytes of SOM relocations (20bytes is probably the
2544 upper limit, but leave lots of space for growth). */
9d0dea6f
JL
2545 if (p - tmp_space + 100 > SOM_TMP_BUFSIZE)
2546 {
2547 if (bfd_write ((PTR) tmp_space, p - tmp_space, 1, abfd)
2548 != p - tmp_space)
25057836
JL
2549 return false;
2550
9d0dea6f
JL
2551 p = tmp_space;
2552 som_initialize_reloc_queue (reloc_queue);
2553 }
2554
2555 /* Emit R_NO_RELOCATION fixups to map any bytes which were
2556 skipped. */
2557 skip = bfd_reloc->address - reloc_offset;
2558 p = som_reloc_skip (abfd, skip, p,
2559 &subspace_reloc_size, reloc_queue);
2560
2561 /* Update reloc_offset for the next iteration.
2562
017a52d7
JL
2563 Many relocations do not consume input bytes. They
2564 are markers, or set state necessary to perform some
2565 later relocation. */
2566 switch (bfd_reloc->howto->type)
2567 {
2568 /* This only needs to handle relocations that may be
2569 made by hppa_som_gen_reloc. */
2570 case R_ENTRY:
a0b4aa62 2571 case R_ALT_ENTRY:
017a52d7
JL
2572 case R_EXIT:
2573 case R_N_MODE:
2574 case R_S_MODE:
2575 case R_D_MODE:
2576 case R_R_MODE:
a36b6f1d
JL
2577 case R_FSEL:
2578 case R_LSEL:
2579 case R_RSEL:
c40439a2
JL
2580 case R_COMP1:
2581 case R_COMP2:
a5655244
ILT
2582 case R_BEGIN_BRTAB:
2583 case R_END_BRTAB:
017a52d7
JL
2584 reloc_offset = bfd_reloc->address;
2585 break;
9d0dea6f 2586
017a52d7
JL
2587 default:
2588 reloc_offset = bfd_reloc->address + 4;
2589 break;
2590 }
9d0dea6f
JL
2591
2592 /* Now the actual relocation we care about. */
2593 switch (bfd_reloc->howto->type)
2594 {
2595 case R_PCREL_CALL:
2596 case R_ABS_CALL:
2597 p = som_reloc_call (abfd, p, &subspace_reloc_size,
2598 bfd_reloc, sym_num, reloc_queue);
2599 break;
2600
2601 case R_CODE_ONE_SYMBOL:
2602 case R_DP_RELATIVE:
2603 /* Account for any addend. */
2604 if (bfd_reloc->addend)
2605 p = som_reloc_addend (abfd, bfd_reloc->addend, p,
2606 &subspace_reloc_size, reloc_queue);
2607
2608 if (sym_num < 0x20)
2609 {
2610 bfd_put_8 (abfd, bfd_reloc->howto->type + sym_num, p);
2611 subspace_reloc_size += 1;
2612 p += 1;
2613 }
2614 else if (sym_num < 0x100)
2615 {
2616 bfd_put_8 (abfd, bfd_reloc->howto->type + 32, p);
2617 bfd_put_8 (abfd, sym_num, p + 1);
2618 p = try_prev_fixup (abfd, &subspace_reloc_size, p,
2619 2, reloc_queue);
2620 }
2621 else if (sym_num < 0x10000000)
2622 {
2623 bfd_put_8 (abfd, bfd_reloc->howto->type + 33, p);
2624 bfd_put_8 (abfd, sym_num >> 16, p + 1);
2625 bfd_put_16 (abfd, sym_num, p + 2);
2626 p = try_prev_fixup (abfd, &subspace_reloc_size,
2627 p, 4, reloc_queue);
2628 }
2629 else
2630 abort ();
2631 break;
2632
2633 case R_DATA_ONE_SYMBOL:
2634 case R_DATA_PLABEL:
2635 case R_CODE_PLABEL:
a36b6f1d 2636 case R_DLT_REL:
0f4161dd
JL
2637 /* Account for any addend using R_DATA_OVERRIDE. */
2638 if (bfd_reloc->howto->type != R_DATA_ONE_SYMBOL
2639 && bfd_reloc->addend)
9d0dea6f
JL
2640 p = som_reloc_addend (abfd, bfd_reloc->addend, p,
2641 &subspace_reloc_size, reloc_queue);
2642
2643 if (sym_num < 0x100)
2644 {
2645 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2646 bfd_put_8 (abfd, sym_num, p + 1);
2647 p = try_prev_fixup (abfd, &subspace_reloc_size, p,
2648 2, reloc_queue);
2649 }
2650 else if (sym_num < 0x10000000)
2651 {
2652 bfd_put_8 (abfd, bfd_reloc->howto->type + 1, p);
2653 bfd_put_8 (abfd, sym_num >> 16, p + 1);
2654 bfd_put_16 (abfd, sym_num, p + 2);
2655 p = try_prev_fixup (abfd, &subspace_reloc_size,
2656 p, 4, reloc_queue);
2657 }
2658 else
2659 abort ();
2660 break;
2661
2662 case R_ENTRY:
2663 {
e10639db 2664 int tmp;
5faa346b 2665 arelent *tmp_reloc = NULL;
9d0dea6f 2666 bfd_put_8 (abfd, R_ENTRY, p);
b905bde1 2667
e10639db
JL
2668 /* R_ENTRY relocations have 64 bits of associated
2669 data. Unfortunately the addend field of a bfd
2670 relocation is only 32 bits. So, we split up
2671 the 64bit unwind information and store part in
2672 the R_ENTRY relocation, and the rest in the R_EXIT
2673 relocation. */
2674 bfd_put_32 (abfd, bfd_reloc->addend, p + 1);
2675
2676 /* Find the next R_EXIT relocation. */
2677 for (tmp = j; tmp < subsection->reloc_count; tmp++)
b905bde1 2678 {
e10639db
JL
2679 tmp_reloc = subsection->orelocation[tmp];
2680 if (tmp_reloc->howto->type == R_EXIT)
2681 break;
b905bde1 2682 }
e10639db
JL
2683
2684 if (tmp == subsection->reloc_count)
2685 abort ();
2686
2687 bfd_put_32 (abfd, tmp_reloc->addend, p + 5);
9d0dea6f
JL
2688 p = try_prev_fixup (abfd, &subspace_reloc_size,
2689 p, 9, reloc_queue);
2690 break;
2691 }
2692
017a52d7
JL
2693 case R_N_MODE:
2694 case R_S_MODE:
2695 case R_D_MODE:
2696 case R_R_MODE:
2697 /* If this relocation requests the current rounding
2698 mode, then it is redundant. */
2699 if (bfd_reloc->howto->type != current_rounding_mode)
2700 {
2701 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2702 subspace_reloc_size += 1;
2703 p += 1;
2704 current_rounding_mode = bfd_reloc->howto->type;
2705 }
2706 break;
2707
a0b4aa62
JL
2708 case R_EXIT:
2709 case R_ALT_ENTRY:
a36b6f1d
JL
2710 case R_FSEL:
2711 case R_LSEL:
2712 case R_RSEL:
a5655244
ILT
2713 case R_BEGIN_BRTAB:
2714 case R_END_BRTAB:
a36b6f1d
JL
2715 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2716 subspace_reloc_size += 1;
2717 p += 1;
2718 break;
2719
c40439a2
JL
2720 case R_COMP1:
2721 /* The only time we generate R_COMP1, R_COMP2 and
2722 R_CODE_EXPR relocs is for the difference of two
2723 symbols. Hence we can cheat here. */
2724 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2725 bfd_put_8 (abfd, 0x44, p + 1);
2726 p = try_prev_fixup (abfd, &subspace_reloc_size,
2727 p, 2, reloc_queue);
2728 break;
2729
2730 case R_COMP2:
2731 /* The only time we generate R_COMP1, R_COMP2 and
2732 R_CODE_EXPR relocs is for the difference of two
2733 symbols. Hence we can cheat here. */
2734 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2735 bfd_put_8 (abfd, 0x80, p + 1);
2736 bfd_put_8 (abfd, sym_num >> 16, p + 2);
2737 bfd_put_16 (abfd, sym_num, p + 3);
2738 p = try_prev_fixup (abfd, &subspace_reloc_size,
2739 p, 5, reloc_queue);
2740 break;
2741
2742 case R_CODE_EXPR:
2743 /* The only time we generate R_COMP1, R_COMP2 and
2744 R_CODE_EXPR relocs is for the difference of two
2745 symbols. Hence we can cheat here. */
2746 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2747 subspace_reloc_size += 1;
2748 p += 1;
2749 break;
2750
9d0dea6f
JL
2751 /* Put a "R_RESERVED" relocation in the stream if
2752 we hit something we do not understand. The linker
2753 will complain loudly if this ever happens. */
2754 default:
2755 bfd_put_8 (abfd, 0xff, p);
2756 subspace_reloc_size += 1;
2757 p += 1;
017a52d7 2758 break;
9d0dea6f
JL
2759 }
2760 }
2761
2762 /* Last BFD relocation for a subspace has been processed.
2763 Map the rest of the subspace with R_NO_RELOCATION fixups. */
2764 p = som_reloc_skip (abfd, bfd_section_size (abfd, subsection)
2765 - reloc_offset,
2766 p, &subspace_reloc_size, reloc_queue);
2767
2768 /* Scribble out the relocations. */
2769 if (bfd_write ((PTR) tmp_space, p - tmp_space, 1, abfd)
2770 != p - tmp_space)
25057836 2771 return false;
9d0dea6f
JL
2772 p = tmp_space;
2773
2774 total_reloc_size += subspace_reloc_size;
15766917 2775 som_section_data (subsection)->subspace_dict->fixup_request_quantity
9d0dea6f
JL
2776 = subspace_reloc_size;
2777 }
2778 section = section->next;
2779 }
2780 *total_reloc_sizep = total_reloc_size;
2781 return true;
2782}
2783
0b35f7ec
JL
2784/* Write out the space/subspace string table. */
2785
2786static boolean
2787som_write_space_strings (abfd, current_offset, string_sizep)
2788 bfd *abfd;
2789 unsigned long current_offset;
2790 unsigned int *string_sizep;
2791{
80425e6c
JK
2792 /* Chunk of memory that we can use as buffer space, then throw
2793 away. */
2794 unsigned char tmp_space[SOM_TMP_BUFSIZE];
2795 unsigned char *p;
0b35f7ec
JL
2796 unsigned int strings_size = 0;
2797 asection *section;
2798
6e033f86 2799 memset (tmp_space, 0, SOM_TMP_BUFSIZE);
0b35f7ec
JL
2800 p = tmp_space;
2801
2802 /* Seek to the start of the space strings in preparation for writing
2803 them out. */
25057836
JL
2804 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
2805 return false;
0b35f7ec
JL
2806
2807 /* Walk through all the spaces and subspaces (order is not important)
2808 building up and writing string table entries for their names. */
2809 for (section = abfd->sections; section != NULL; section = section->next)
2810 {
2811 int length;
2812
2813 /* Only work with space/subspaces; avoid any other sections
2814 which might have been made (.text for example). */
15766917 2815 if (!som_is_space (section) && !som_is_subspace (section))
0b35f7ec
JL
2816 continue;
2817
2818 /* Get the length of the space/subspace name. */
2819 length = strlen (section->name);
2820
2821 /* If there is not enough room for the next entry, then dump the
2822 current buffer contents now. Each entry will take 4 bytes to
2823 hold the string length + the string itself + null terminator. */
2824 if (p - tmp_space + 5 + length > SOM_TMP_BUFSIZE)
2825 {
80425e6c 2826 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd)
0b35f7ec 2827 != p - tmp_space)
25057836 2828 return false;
0b35f7ec
JL
2829 /* Reset to beginning of the buffer space. */
2830 p = tmp_space;
2831 }
2832
2833 /* First element in a string table entry is the length of the
2834 string. Alignment issues are already handled. */
2835 bfd_put_32 (abfd, length, p);
2836 p += 4;
2837 strings_size += 4;
2838
2839 /* Record the index in the space/subspace records. */
15766917
JL
2840 if (som_is_space (section))
2841 som_section_data (section)->space_dict->name.n_strx = strings_size;
0b35f7ec 2842 else
15766917 2843 som_section_data (section)->subspace_dict->name.n_strx = strings_size;
0b35f7ec
JL
2844
2845 /* Next comes the string itself + a null terminator. */
2846 strcpy (p, section->name);
2847 p += length + 1;
2848 strings_size += length + 1;
2849
2850 /* Always align up to the next word boundary. */
2851 while (strings_size % 4)
2852 {
2853 bfd_put_8 (abfd, 0, p);
2854 p++;
2855 strings_size++;
2856 }
2857 }
2858
2859 /* Done with the space/subspace strings. Write out any information
2860 contained in a partial block. */
80425e6c 2861 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd) != p - tmp_space)
25057836 2862 return false;
0b35f7ec
JL
2863 *string_sizep = strings_size;
2864 return true;
2865}
2866
2867/* Write out the symbol string table. */
2868
2869static boolean
2870som_write_symbol_strings (abfd, current_offset, syms, num_syms, string_sizep)
2871 bfd *abfd;
2872 unsigned long current_offset;
2873 asymbol **syms;
2874 unsigned int num_syms;
2875 unsigned int *string_sizep;
2876{
2877 unsigned int i;
80425e6c
JK
2878
2879 /* Chunk of memory that we can use as buffer space, then throw
2880 away. */
2881 unsigned char tmp_space[SOM_TMP_BUFSIZE];
2882 unsigned char *p;
0b35f7ec
JL
2883 unsigned int strings_size = 0;
2884
6e033f86 2885 memset (tmp_space, 0, SOM_TMP_BUFSIZE);
0b35f7ec
JL
2886 p = tmp_space;
2887
2888 /* Seek to the start of the space strings in preparation for writing
2889 them out. */
25057836
JL
2890 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
2891 return false;
0b35f7ec
JL
2892
2893 for (i = 0; i < num_syms; i++)
2894 {
2895 int length = strlen (syms[i]->name);
2896
2897 /* If there is not enough room for the next entry, then dump the
2898 current buffer contents now. */
2899 if (p - tmp_space + 5 + length > SOM_TMP_BUFSIZE)
2900 {
80425e6c 2901 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd)
0b35f7ec 2902 != p - tmp_space)
25057836 2903 return false;
0b35f7ec
JL
2904 /* Reset to beginning of the buffer space. */
2905 p = tmp_space;
2906 }
2907
2908 /* First element in a string table entry is the length of the
2909 string. This must always be 4 byte aligned. This is also
2910 an appropriate time to fill in the string index field in the
2911 symbol table entry. */
2912 bfd_put_32 (abfd, length, p);
2913 strings_size += 4;
2914 p += 4;
2915
2916 /* Next comes the string itself + a null terminator. */
2917 strcpy (p, syms[i]->name);
2918
8a2cdc62 2919 som_symbol_data(syms[i])->stringtab_offset = strings_size;
0b35f7ec
JL
2920 p += length + 1;
2921 strings_size += length + 1;
2922
2923 /* Always align up to the next word boundary. */
2924 while (strings_size % 4)
2925 {
2926 bfd_put_8 (abfd, 0, p);
2927 strings_size++;
2928 p++;
2929 }
2930 }
2931
2932 /* Scribble out any partial block. */
80425e6c 2933 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd) != p - tmp_space)
25057836 2934 return false;
0b35f7ec
JL
2935
2936 *string_sizep = strings_size;
2937 return true;
2938}
2939
6eb64408
JL
2940/* Compute variable information to be placed in the SOM headers,
2941 space/subspace dictionaries, relocation streams, etc. Begin
2942 writing parts of the object file. */
2943
2944static boolean
2945som_begin_writing (abfd)
2946 bfd *abfd;
2947{
2948 unsigned long current_offset = 0;
2949 int strings_size = 0;
2950 unsigned int total_reloc_size = 0;
709af562 2951 unsigned long num_spaces, num_subspaces, i;
6eb64408 2952 asection *section;
6eb64408 2953 unsigned int total_subspaces = 0;
5faa346b 2954 struct som_exec_auxhdr *exec_header = NULL;
6eb64408
JL
2955
2956 /* The file header will always be first in an object file,
2957 everything else can be in random locations. To keep things
2958 "simple" BFD will lay out the object file in the manner suggested
2959 by the PRO ABI for PA-RISC Systems. */
2960
2961 /* Before any output can really begin offsets for all the major
2962 portions of the object file must be computed. So, starting
2963 with the initial file header compute (and sometimes write)
2964 each portion of the object file. */
2965
2966 /* Make room for the file header, it's contents are not complete
2967 yet, so it can not be written at this time. */
2968 current_offset += sizeof (struct header);
2969
2970 /* Any auxiliary headers will follow the file header. Right now
f6c2300b 2971 we support only the copyright and version headers. */
6eb64408
JL
2972 obj_som_file_hdr (abfd)->aux_header_location = current_offset;
2973 obj_som_file_hdr (abfd)->aux_header_size = 0;
65b1ef49 2974 if (abfd->flags & (EXEC_P | DYNAMIC))
8eb5d4be
JK
2975 {
2976 /* Parts of the exec header will be filled in later, so
08b3c4f9
JL
2977 delay writing the header itself. Fill in the defaults,
2978 and write it later. */
fde543b5
JL
2979 current_offset += sizeof (struct som_exec_auxhdr);
2980 obj_som_file_hdr (abfd)->aux_header_size
2981 += sizeof (struct som_exec_auxhdr);
2982 exec_header = obj_som_exec_hdr (abfd);
2983 exec_header->som_auxhdr.type = EXEC_AUX_ID;
2984 exec_header->som_auxhdr.length = 40;
8eb5d4be 2985 }
f6c2300b
JL
2986 if (obj_som_version_hdr (abfd) != NULL)
2987 {
2988 unsigned int len;
2989
25057836
JL
2990 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
2991 return false;
f6c2300b
JL
2992
2993 /* Write the aux_id structure and the string length. */
2994 len = sizeof (struct aux_id) + sizeof (unsigned int);
2995 obj_som_file_hdr (abfd)->aux_header_size += len;
2996 current_offset += len;
2997 if (bfd_write ((PTR) obj_som_version_hdr (abfd), len, 1, abfd) != len)
25057836 2998 return false;
f6c2300b
JL
2999
3000 /* Write the version string. */
39961154 3001 len = obj_som_version_hdr (abfd)->header_id.length - sizeof (int);
f6c2300b
JL
3002 obj_som_file_hdr (abfd)->aux_header_size += len;
3003 current_offset += len;
3004 if (bfd_write ((PTR) obj_som_version_hdr (abfd)->user_string,
3005 len, 1, abfd) != len)
25057836 3006 return false;
f6c2300b 3007 }
6eb64408 3008
f6c2300b
JL
3009 if (obj_som_copyright_hdr (abfd) != NULL)
3010 {
3011 unsigned int len;
3012
25057836
JL
3013 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
3014 return false;
f6c2300b
JL
3015
3016 /* Write the aux_id structure and the string length. */
3017 len = sizeof (struct aux_id) + sizeof (unsigned int);
3018 obj_som_file_hdr (abfd)->aux_header_size += len;
3019 current_offset += len;
3020 if (bfd_write ((PTR) obj_som_copyright_hdr (abfd), len, 1, abfd) != len)
25057836 3021 return false;
f6c2300b
JL
3022
3023 /* Write the copyright string. */
39961154 3024 len = obj_som_copyright_hdr (abfd)->header_id.length - sizeof (int);
f6c2300b
JL
3025 obj_som_file_hdr (abfd)->aux_header_size += len;
3026 current_offset += len;
3027 if (bfd_write ((PTR) obj_som_copyright_hdr (abfd)->copyright,
3028 len, 1, abfd) != len)
25057836 3029 return false;
f6c2300b
JL
3030 }
3031
3032 /* Next comes the initialization pointers; we have no initialization
3033 pointers, so current offset does not change. */
6eb64408
JL
3034 obj_som_file_hdr (abfd)->init_array_location = current_offset;
3035 obj_som_file_hdr (abfd)->init_array_total = 0;
3036
3037 /* Next are the space records. These are fixed length records.
3038
3039 Count the number of spaces to determine how much room is needed
3040 in the object file for the space records.
3041
3042 The names of the spaces are stored in a separate string table,
3043 and the index for each space into the string table is computed
3044 below. Therefore, it is not possible to write the space headers
3045 at this time. */
3046 num_spaces = som_count_spaces (abfd);
3047 obj_som_file_hdr (abfd)->space_location = current_offset;
3048 obj_som_file_hdr (abfd)->space_total = num_spaces;
3049 current_offset += num_spaces * sizeof (struct space_dictionary_record);
3050
3051 /* Next are the subspace records. These are fixed length records.
3052
3053 Count the number of subspaes to determine how much room is needed
3054 in the object file for the subspace records.
3055
3056 A variety if fields in the subspace record are still unknown at
3057 this time (index into string table, fixup stream location/size, etc). */
3058 num_subspaces = som_count_subspaces (abfd);
3059 obj_som_file_hdr (abfd)->subspace_location = current_offset;
3060 obj_som_file_hdr (abfd)->subspace_total = num_subspaces;
3061 current_offset += num_subspaces * sizeof (struct subspace_dictionary_record);
3062
3063 /* Next is the string table for the space/subspace names. We will
3064 build and write the string table on the fly. At the same time
3065 we will fill in the space/subspace name index fields. */
3066
3067 /* The string table needs to be aligned on a word boundary. */
3068 if (current_offset % 4)
3069 current_offset += (4 - (current_offset % 4));
3070
3071 /* Mark the offset of the space/subspace string table in the
3072 file header. */
3073 obj_som_file_hdr (abfd)->space_strings_location = current_offset;
3074
3075 /* Scribble out the space strings. */
3076 if (som_write_space_strings (abfd, current_offset, &strings_size) == false)
3077 return false;
3078
3079 /* Record total string table size in the header and update the
3080 current offset. */
3081 obj_som_file_hdr (abfd)->space_strings_size = strings_size;
3082 current_offset += strings_size;
3083
6eb64408
JL
3084 /* Next is the compiler records. We do not use these. */
3085 obj_som_file_hdr (abfd)->compiler_location = current_offset;
3086 obj_som_file_hdr (abfd)->compiler_total = 0;
3087
08b3c4f9
JL
3088 /* Now compute the file positions for the loadable subspaces, taking
3089 care to make sure everything stays properly aligned. */
6eb64408
JL
3090
3091 section = abfd->sections;
3092 for (i = 0; i < num_spaces; i++)
3093 {
3094 asection *subsection;
08b3c4f9 3095 int first_subspace;
06e6eb0e 3096 unsigned int subspace_offset = 0;
6eb64408
JL
3097
3098 /* Find a space. */
15766917 3099 while (!som_is_space (section))
6eb64408
JL
3100 section = section->next;
3101
08b3c4f9 3102 first_subspace = 1;
6eb64408
JL
3103 /* Now look for all its subspaces. */
3104 for (subsection = abfd->sections;
3105 subsection != NULL;
3106 subsection = subsection->next)
3107 {
08b3c4f9 3108
15766917
JL
3109 if (!som_is_subspace (subsection)
3110 || !som_is_container (section, subsection)
6eb64408
JL
3111 || (subsection->flags & SEC_ALLOC) == 0)
3112 continue;
3113
08b3c4f9
JL
3114 /* If this is the first subspace in the space, and we are
3115 building an executable, then take care to make sure all
3116 the alignments are correct and update the exec header. */
3117 if (first_subspace
65b1ef49 3118 && (abfd->flags & (EXEC_P | DYNAMIC)))
08b3c4f9
JL
3119 {
3120 /* Demand paged executables have each space aligned to a
3121 page boundary. Sharable executables (write-protected
3122 text) have just the private (aka data & bss) space aligned
142f59f4
JL
3123 to a page boundary. Ugh. Not true for HPUX.
3124
3125 The HPUX kernel requires the text to always be page aligned
3126 within the file regardless of the executable's type. */
65b1ef49 3127 if (abfd->flags & (D_PAGED | DYNAMIC)
142f59f4 3128 || (subsection->flags & SEC_CODE)
08b3c4f9
JL
3129 || ((abfd->flags & WP_TEXT)
3130 && (subsection->flags & SEC_DATA)))
3131 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
3132
3133 /* Update the exec header. */
fde543b5 3134 if (subsection->flags & SEC_CODE && exec_header->exec_tfile == 0)
08b3c4f9 3135 {
fde543b5
JL
3136 exec_header->exec_tmem = section->vma;
3137 exec_header->exec_tfile = current_offset;
08b3c4f9 3138 }
fde543b5 3139 if (subsection->flags & SEC_DATA && exec_header->exec_dfile == 0)
08b3c4f9 3140 {
fde543b5
JL
3141 exec_header->exec_dmem = section->vma;
3142 exec_header->exec_dfile = current_offset;
08b3c4f9
JL
3143 }
3144
06e6eb0e
JL
3145 /* Keep track of exactly where we are within a particular
3146 space. This is necessary as the braindamaged HPUX
3147 loader will create holes between subspaces *and*
3148 subspace alignments are *NOT* preserved. What a crock. */
3149 subspace_offset = subsection->vma;
3150
08b3c4f9
JL
3151 /* Only do this for the first subspace within each space. */
3152 first_subspace = 0;
3153 }
65b1ef49 3154 else if (abfd->flags & (EXEC_P | DYNAMIC))
00806436 3155 {
06e6eb0e
JL
3156 /* The braindamaged HPUX loader may have created a hole
3157 between two subspaces. It is *not* sufficient to use
3158 the alignment specifications within the subspaces to
3159 account for these holes -- I've run into at least one
3160 case where the loader left one code subspace unaligned
3161 in a final executable.
3162
3163 To combat this we keep a current offset within each space,
3164 and use the subspace vma fields to detect and preserve
3165 holes. What a crock!
3166
3167 ps. This is not necessary for unloadable space/subspaces. */
3168 current_offset += subsection->vma - subspace_offset;
00806436 3169 if (subsection->flags & SEC_CODE)
fde543b5 3170 exec_header->exec_tsize += subsection->vma - subspace_offset;
00806436 3171 else
fde543b5 3172 exec_header->exec_dsize += subsection->vma - subspace_offset;
06e6eb0e 3173 subspace_offset += subsection->vma - subspace_offset;
00806436 3174 }
08b3c4f9 3175
06e6eb0e 3176
4359a7ef 3177 subsection->target_index = total_subspaces++;
6eb64408
JL
3178 /* This is real data to be loaded from the file. */
3179 if (subsection->flags & SEC_LOAD)
3180 {
08b3c4f9 3181 /* Update the size of the code & data. */
65b1ef49 3182 if (abfd->flags & (EXEC_P | DYNAMIC)
08b3c4f9 3183 && subsection->flags & SEC_CODE)
fde543b5 3184 exec_header->exec_tsize += subsection->_cooked_size;
65b1ef49 3185 else if (abfd->flags & (EXEC_P | DYNAMIC)
08b3c4f9 3186 && subsection->flags & SEC_DATA)
fde543b5 3187 exec_header->exec_dsize += subsection->_cooked_size;
15766917 3188 som_section_data (subsection)->subspace_dict->file_loc_init_value
6eb64408 3189 = current_offset;
06e6eb0e 3190 subsection->filepos = current_offset;
6eb64408 3191 current_offset += bfd_section_size (abfd, subsection);
06e6eb0e 3192 subspace_offset += bfd_section_size (abfd, subsection);
6eb64408
JL
3193 }
3194 /* Looks like uninitialized data. */
3195 else
3196 {
08b3c4f9 3197 /* Update the size of the bss section. */
65b1ef49 3198 if (abfd->flags & (EXEC_P | DYNAMIC))
fde543b5 3199 exec_header->exec_bsize += subsection->_cooked_size;
08b3c4f9 3200
15766917 3201 som_section_data (subsection)->subspace_dict->file_loc_init_value
6eb64408 3202 = 0;
15766917 3203 som_section_data (subsection)->subspace_dict->
6eb64408
JL
3204 initialization_length = 0;
3205 }
3206 }
3207 /* Goto the next section. */
3208 section = section->next;
3209 }
3210
08b3c4f9
JL
3211 /* Finally compute the file positions for unloadable subspaces.
3212 If building an executable, start the unloadable stuff on its
3213 own page. */
3214
65b1ef49 3215 if (abfd->flags & (EXEC_P | DYNAMIC))
08b3c4f9 3216 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
6eb64408
JL
3217
3218 obj_som_file_hdr (abfd)->unloadable_sp_location = current_offset;
3219 section = abfd->sections;
3220 for (i = 0; i < num_spaces; i++)
3221 {
3222 asection *subsection;
3223
3224 /* Find a space. */
15766917 3225 while (!som_is_space (section))
6eb64408
JL
3226 section = section->next;
3227
65b1ef49 3228 if (abfd->flags & (EXEC_P | DYNAMIC))
517a6af6 3229 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
08b3c4f9 3230
6eb64408
JL
3231 /* Now look for all its subspaces. */
3232 for (subsection = abfd->sections;
3233 subsection != NULL;
3234 subsection = subsection->next)
3235 {
3236
15766917
JL
3237 if (!som_is_subspace (subsection)
3238 || !som_is_container (section, subsection)
6eb64408
JL
3239 || (subsection->flags & SEC_ALLOC) != 0)
3240 continue;
3241
1b567970 3242 subsection->target_index = total_subspaces++;
6eb64408
JL
3243 /* This is real data to be loaded from the file. */
3244 if ((subsection->flags & SEC_LOAD) == 0)
3245 {
15766917 3246 som_section_data (subsection)->subspace_dict->file_loc_init_value
6eb64408 3247 = current_offset;
06e6eb0e 3248 subsection->filepos = current_offset;
6eb64408
JL
3249 current_offset += bfd_section_size (abfd, subsection);
3250 }
3251 /* Looks like uninitialized data. */
3252 else
3253 {
15766917 3254 som_section_data (subsection)->subspace_dict->file_loc_init_value
6eb64408 3255 = 0;
15766917 3256 som_section_data (subsection)->subspace_dict->
6eb64408
JL
3257 initialization_length = bfd_section_size (abfd, subsection);
3258 }
3259 }
3260 /* Goto the next section. */
3261 section = section->next;
3262 }
3263
08b3c4f9
JL
3264 /* If building an executable, then make sure to seek to and write
3265 one byte at the end of the file to make sure any necessary
3266 zeros are filled in. Ugh. */
65b1ef49 3267 if (abfd->flags & (EXEC_P | DYNAMIC))
08b3c4f9 3268 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
9d7f682f 3269 if (bfd_seek (abfd, current_offset - 1, SEEK_SET) < 0)
25057836 3270 return false;
08b3c4f9 3271 if (bfd_write ((PTR) "", 1, 1, abfd) != 1)
25057836 3272 return false;
08b3c4f9 3273
6eb64408
JL
3274 obj_som_file_hdr (abfd)->unloadable_sp_size
3275 = current_offset - obj_som_file_hdr (abfd)->unloadable_sp_location;
3276
3277 /* Loader fixups are not supported in any way shape or form. */
3278 obj_som_file_hdr (abfd)->loader_fixup_location = 0;
3279 obj_som_file_hdr (abfd)->loader_fixup_total = 0;
3280
9ea5de84 3281 /* Done. Store the total size of the SOM so far. */
6eb64408 3282 obj_som_file_hdr (abfd)->som_length = current_offset;
08b3c4f9 3283
6eb64408
JL
3284 return true;
3285}
3286
efc0df7c
JL
3287/* Finally, scribble out the various headers to the disk. */
3288
3289static boolean
9ea5de84 3290som_finish_writing (abfd)
efc0df7c
JL
3291 bfd *abfd;
3292{
3293 int num_spaces = som_count_spaces (abfd);
709af562
JL
3294 asymbol **syms = bfd_get_outsymbols (abfd);
3295 int i, num_syms, strings_size;
efc0df7c
JL
3296 int subspace_index = 0;
3297 file_ptr location;
3298 asection *section;
9ea5de84
JL
3299 unsigned long current_offset;
3300 unsigned int total_reloc_size;
3301
709af562
JL
3302 /* Next is the symbol table. These are fixed length records.
3303
3304 Count the number of symbols to determine how much room is needed
3305 in the object file for the symbol table.
3306
3307 The names of the symbols are stored in a separate string table,
3308 and the index for each symbol name into the string table is computed
3309 below. Therefore, it is not possible to write the symbol table
3310 at this time.
3311
3312 These used to be output before the subspace contents, but they
3313 were moved here to work around a stupid bug in the hpux linker
3314 (fixed in hpux10). */
3315 current_offset = obj_som_file_hdr (abfd)->som_length;
3316
3317 /* Make sure we're on a word boundary. */
3318 if (current_offset % 4)
3319 current_offset += (4 - (current_offset % 4));
3320
3321 num_syms = bfd_get_symcount (abfd);
3322 obj_som_file_hdr (abfd)->symbol_location = current_offset;
3323 obj_som_file_hdr (abfd)->symbol_total = num_syms;
3324 current_offset += num_syms * sizeof (struct symbol_dictionary_record);
3325
3326 /* Next are the symbol strings.
3327 Align them to a word boundary. */
3328 if (current_offset % 4)
3329 current_offset += (4 - (current_offset % 4));
3330 obj_som_file_hdr (abfd)->symbol_strings_location = current_offset;
3331
3332 /* Scribble out the symbol strings. */
3333 if (som_write_symbol_strings (abfd, current_offset, syms,
3334 num_syms, &strings_size)
3335 == false)
3336 return false;
3337
3338 /* Record total string table size in header and update the
3339 current offset. */
3340 obj_som_file_hdr (abfd)->symbol_strings_size = strings_size;
3341 current_offset += strings_size;
3342
9ea5de84
JL
3343 /* Do prep work before handling fixups. */
3344 som_prep_for_fixups (abfd,
3345 bfd_get_outsymbols (abfd),
3346 bfd_get_symcount (abfd));
3347
9ea5de84
JL
3348 /* At the end of the file is the fixup stream which starts on a
3349 word boundary. */
3350 if (current_offset % 4)
3351 current_offset += (4 - (current_offset % 4));
3352 obj_som_file_hdr (abfd)->fixup_request_location = current_offset;
3353
3354 /* Write the fixups and update fields in subspace headers which
3355 relate to the fixup stream. */
3356 if (som_write_fixups (abfd, current_offset, &total_reloc_size) == false)
3357 return false;
3358
3359 /* Record the total size of the fixup stream in the file header. */
3360 obj_som_file_hdr (abfd)->fixup_request_total = total_reloc_size;
3361
709af562
JL
3362 /* Done. Store the total size of the SOM. */
3363 obj_som_file_hdr (abfd)->som_length = current_offset + total_reloc_size;
9ea5de84
JL
3364
3365 /* Now that the symbol table information is complete, build and
3366 write the symbol table. */
3367 if (som_build_and_write_symbol_table (abfd) == false)
3368 return false;
efc0df7c
JL
3369
3370 /* Subspaces are written first so that we can set up information
3371 about them in their containing spaces as the subspace is written. */
3372
3373 /* Seek to the start of the subspace dictionary records. */
3374 location = obj_som_file_hdr (abfd)->subspace_location;
25057836
JL
3375 if (bfd_seek (abfd, location, SEEK_SET) < 0)
3376 return false;
3377
efc0df7c
JL
3378 section = abfd->sections;
3379 /* Now for each loadable space write out records for its subspaces. */
3380 for (i = 0; i < num_spaces; i++)
3381 {
3382 asection *subsection;
3383
3384 /* Find a space. */
15766917 3385 while (!som_is_space (section))
efc0df7c
JL
3386 section = section->next;
3387
3388 /* Now look for all its subspaces. */
3389 for (subsection = abfd->sections;
3390 subsection != NULL;
3391 subsection = subsection->next)
3392 {
3393
3394 /* Skip any section which does not correspond to a space
3395 or subspace. Or does not have SEC_ALLOC set (and therefore
3396 has no real bits on the disk). */
15766917
JL
3397 if (!som_is_subspace (subsection)
3398 || !som_is_container (section, subsection)
efc0df7c
JL
3399 || (subsection->flags & SEC_ALLOC) == 0)
3400 continue;
3401
3402 /* If this is the first subspace for this space, then save
3403 the index of the subspace in its containing space. Also
3404 set "is_loadable" in the containing space. */
3405
15766917 3406 if (som_section_data (section)->space_dict->subspace_quantity == 0)
efc0df7c 3407 {
15766917
JL
3408 som_section_data (section)->space_dict->is_loadable = 1;
3409 som_section_data (section)->space_dict->subspace_index
efc0df7c
JL
3410 = subspace_index;
3411 }
3412
3413 /* Increment the number of subspaces seen and the number of
3414 subspaces contained within the current space. */
3415 subspace_index++;
15766917 3416 som_section_data (section)->space_dict->subspace_quantity++;
efc0df7c
JL
3417
3418 /* Mark the index of the current space within the subspace's
3419 dictionary record. */
15766917 3420 som_section_data (subsection)->subspace_dict->space_index = i;
efc0df7c
JL
3421
3422 /* Dump the current subspace header. */
15766917 3423 if (bfd_write ((PTR) som_section_data (subsection)->subspace_dict,
efc0df7c
JL
3424 sizeof (struct subspace_dictionary_record), 1, abfd)
3425 != sizeof (struct subspace_dictionary_record))
25057836 3426 return false;
efc0df7c
JL
3427 }
3428 /* Goto the next section. */
3429 section = section->next;
3430 }
3431
3432 /* Now repeat the process for unloadable subspaces. */
3433 section = abfd->sections;
3434 /* Now for each space write out records for its subspaces. */
3435 for (i = 0; i < num_spaces; i++)
3436 {
3437 asection *subsection;
3438
3439 /* Find a space. */
15766917 3440 while (!som_is_space (section))
efc0df7c
JL
3441 section = section->next;
3442
3443 /* Now look for all its subspaces. */
3444 for (subsection = abfd->sections;
3445 subsection != NULL;
3446 subsection = subsection->next)
3447 {
3448
3449 /* Skip any section which does not correspond to a space or
3450 subspace, or which SEC_ALLOC set (and therefore handled
c2e1207b 3451 in the loadable spaces/subspaces code above). */
efc0df7c 3452
15766917
JL
3453 if (!som_is_subspace (subsection)
3454 || !som_is_container (section, subsection)
efc0df7c
JL
3455 || (subsection->flags & SEC_ALLOC) != 0)
3456 continue;
3457
3458 /* If this is the first subspace for this space, then save
3459 the index of the subspace in its containing space. Clear
3460 "is_loadable". */
3461
15766917 3462 if (som_section_data (section)->space_dict->subspace_quantity == 0)
efc0df7c 3463 {
15766917
JL
3464 som_section_data (section)->space_dict->is_loadable = 0;
3465 som_section_data (section)->space_dict->subspace_index
efc0df7c
JL
3466 = subspace_index;
3467 }
3468
3469 /* Increment the number of subspaces seen and the number of
3470 subspaces contained within the current space. */
15766917 3471 som_section_data (section)->space_dict->subspace_quantity++;
efc0df7c
JL
3472 subspace_index++;
3473
3474 /* Mark the index of the current space within the subspace's
3475 dictionary record. */
15766917 3476 som_section_data (subsection)->subspace_dict->space_index = i;
efc0df7c
JL
3477
3478 /* Dump this subspace header. */
15766917 3479 if (bfd_write ((PTR) som_section_data (subsection)->subspace_dict,
efc0df7c
JL
3480 sizeof (struct subspace_dictionary_record), 1, abfd)
3481 != sizeof (struct subspace_dictionary_record))
25057836 3482 return false;
efc0df7c
JL
3483 }
3484 /* Goto the next section. */
3485 section = section->next;
3486 }
3487
3488 /* All the subspace dictiondary records are written, and all the
3489 fields are set up in the space dictionary records.
3490
3491 Seek to the right location and start writing the space
3492 dictionary records. */
3493 location = obj_som_file_hdr (abfd)->space_location;
25057836
JL
3494 if (bfd_seek (abfd, location, SEEK_SET) < 0)
3495 return false;
efc0df7c
JL
3496
3497 section = abfd->sections;
3498 for (i = 0; i < num_spaces; i++)
3499 {
3500
3501 /* Find a space. */
15766917 3502 while (!som_is_space (section))
efc0df7c
JL
3503 section = section->next;
3504
3505 /* Dump its header */
15766917 3506 if (bfd_write ((PTR) som_section_data (section)->space_dict,
efc0df7c
JL
3507 sizeof (struct space_dictionary_record), 1, abfd)
3508 != sizeof (struct space_dictionary_record))
25057836 3509 return false;
efc0df7c
JL
3510
3511 /* Goto the next section. */
3512 section = section->next;
3513 }
3514
0f4161dd 3515 /* Setting of the system_id has to happen very late now that copying of
ada45a2a
JL
3516 BFD private data happens *after* section contents are set. */
3517 if (abfd->flags & (EXEC_P | DYNAMIC))
3518 obj_som_file_hdr(abfd)->system_id = obj_som_exec_data (abfd)->system_id;
0f4161dd
JL
3519 else if (bfd_get_mach (abfd) == pa11)
3520 obj_som_file_hdr(abfd)->system_id = CPU_PA_RISC1_1;
ada45a2a
JL
3521 else
3522 obj_som_file_hdr(abfd)->system_id = CPU_PA_RISC1_0;
3523
8117e1ea
JL
3524 /* Compute the checksum for the file header just before writing
3525 the header to disk. */
3526 obj_som_file_hdr (abfd)->checksum = som_compute_checksum (abfd);
3527
efc0df7c
JL
3528 /* Only thing left to do is write out the file header. It is always
3529 at location zero. Seek there and write it. */
25057836
JL
3530 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) < 0)
3531 return false;
efc0df7c
JL
3532 if (bfd_write ((PTR) obj_som_file_hdr (abfd),
3533 sizeof (struct header), 1, abfd)
3534 != sizeof (struct header))
25057836 3535 return false;
fde543b5
JL
3536
3537 /* Now write the exec header. */
3538 if (abfd->flags & (EXEC_P | DYNAMIC))
3539 {
3540 long tmp;
3541 struct som_exec_auxhdr *exec_header;
3542
3543 exec_header = obj_som_exec_hdr (abfd);
3544 exec_header->exec_entry = bfd_get_start_address (abfd);
3545 exec_header->exec_flags = obj_som_exec_data (abfd)->exec_flags;
3546
3547 /* Oh joys. Ram some of the BSS data into the DATA section
3548 to be compatable with how the hp linker makes objects
3549 (saves memory space). */
3550 tmp = exec_header->exec_dsize;
3551 tmp = SOM_ALIGN (tmp, PA_PAGESIZE);
3552 exec_header->exec_bsize -= (tmp - exec_header->exec_dsize);
3553 if (exec_header->exec_bsize < 0)
3554 exec_header->exec_bsize = 0;
3555 exec_header->exec_dsize = tmp;
3556
3557 if (bfd_seek (abfd, obj_som_file_hdr (abfd)->aux_header_location,
3558 SEEK_SET) < 0)
3559 return false;
3560
3561 if (bfd_write ((PTR) exec_header, AUX_HDR_SIZE, 1, abfd)
3562 != AUX_HDR_SIZE)
3563 return false;
3564 }
efc0df7c
JL
3565 return true;
3566}
3567
980bac64
JL
3568/* Compute and return the checksum for a SOM file header. */
3569
5532fc5a
JL
3570static unsigned long
3571som_compute_checksum (abfd)
3572 bfd *abfd;
3573{
3574 unsigned long checksum, count, i;
3575 unsigned long *buffer = (unsigned long *) obj_som_file_hdr (abfd);
3576
3577 checksum = 0;
3578 count = sizeof (struct header) / sizeof (unsigned long);
3579 for (i = 0; i < count; i++)
3580 checksum ^= *(buffer + i);
3581
3582 return checksum;
3583}
3584
6e033f86
JL
3585static void
3586som_bfd_derive_misc_symbol_info (abfd, sym, info)
3587 bfd *abfd;
3588 asymbol *sym;
3589 struct som_misc_symbol_info *info;
3590{
3591 /* Initialize. */
3592 memset (info, 0, sizeof (struct som_misc_symbol_info));
3593
3594 /* The HP SOM linker requires detailed type information about
3595 all symbols (including undefined symbols!). Unfortunately,
3596 the type specified in an import/export statement does not
3597 always match what the linker wants. Severe braindamage. */
3598
3599 /* Section symbols will not have a SOM symbol type assigned to
3600 them yet. Assign all section symbols type ST_DATA. */
3601 if (sym->flags & BSF_SECTION_SYM)
3602 info->symbol_type = ST_DATA;
3603 else
3604 {
3605 /* Common symbols must have scope SS_UNSAT and type
3606 ST_STORAGE or the linker will choke. */
fde543b5 3607 if (bfd_is_com_section (sym->section))
6e033f86
JL
3608 {
3609 info->symbol_scope = SS_UNSAT;
3610 info->symbol_type = ST_STORAGE;
3611 }
3612
3613 /* It is possible to have a symbol without an associated
3614 type. This happens if the user imported the symbol
3615 without a type and the symbol was never defined
3616 locally. If BSF_FUNCTION is set for this symbol, then
3617 assign it type ST_CODE (the HP linker requires undefined
3618 external functions to have type ST_CODE rather than ST_ENTRY). */
95bc714e
JL
3619 else if ((som_symbol_data (sym)->som_type == SYMBOL_TYPE_UNKNOWN
3620 || som_symbol_data (sym)->som_type == SYMBOL_TYPE_CODE)
fde543b5 3621 && bfd_is_und_section (sym->section)
6e033f86
JL
3622 && sym->flags & BSF_FUNCTION)
3623 info->symbol_type = ST_CODE;
3624
3625 /* Handle function symbols which were defined in this file.
3626 They should have type ST_ENTRY. Also retrieve the argument
3627 relocation bits from the SOM backend information. */
3628 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_ENTRY
3629 || (som_symbol_data (sym)->som_type == SYMBOL_TYPE_CODE
3630 && (sym->flags & BSF_FUNCTION))
3631 || (som_symbol_data (sym)->som_type == SYMBOL_TYPE_UNKNOWN
3632 && (sym->flags & BSF_FUNCTION)))
3633 {
3634 info->symbol_type = ST_ENTRY;
3635 info->arg_reloc = som_symbol_data (sym)->tc_data.hppa_arg_reloc;
3636 }
3637
95bc714e
JL
3638 /* If the type is unknown at this point, it should be ST_DATA or
3639 ST_CODE (function/ST_ENTRY symbols were handled as special
3640 cases above). */
6e033f86 3641 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_UNKNOWN)
95bc714e
JL
3642 {
3643 if (sym->section->flags & SEC_CODE)
3644 info->symbol_type = ST_CODE;
3645 else
3646 info->symbol_type = ST_DATA;
3647 }
6e033f86
JL
3648
3649 /* From now on it's a very simple mapping. */
3650 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_ABSOLUTE)
3651 info->symbol_type = ST_ABSOLUTE;
3652 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_CODE)
3653 info->symbol_type = ST_CODE;
3654 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_DATA)
3655 info->symbol_type = ST_DATA;
3656 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_MILLICODE)
3657 info->symbol_type = ST_MILLICODE;
3658 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_PLABEL)
3659 info->symbol_type = ST_PLABEL;
3660 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_PRI_PROG)
3661 info->symbol_type = ST_PRI_PROG;
3662 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_SEC_PROG)
3663 info->symbol_type = ST_SEC_PROG;
3664 }
3665
3666 /* Now handle the symbol's scope. Exported data which is not
3667 in the common section has scope SS_UNIVERSAL. Note scope
3668 of common symbols was handled earlier! */
9ea5de84 3669 if (bfd_is_und_section (sym->section))
6e033f86 3670 info->symbol_scope = SS_UNSAT;
9ea5de84
JL
3671 else if (sym->flags & BSF_EXPORT && ! bfd_is_com_section (sym->section))
3672 info->symbol_scope = SS_UNIVERSAL;
6e033f86
JL
3673 /* Anything else which is not in the common section has scope
3674 SS_LOCAL. */
fde543b5 3675 else if (! bfd_is_com_section (sym->section))
6e033f86
JL
3676 info->symbol_scope = SS_LOCAL;
3677
3678 /* Now set the symbol_info field. It has no real meaning
3679 for undefined or common symbols, but the HP linker will
3680 choke if it's not set to some "reasonable" value. We
3681 use zero as a reasonable value. */
fde543b5
JL
3682 if (bfd_is_com_section (sym->section)
3683 || bfd_is_und_section (sym->section)
3684 || bfd_is_abs_section (sym->section))
6e033f86
JL
3685 info->symbol_info = 0;
3686 /* For all other symbols, the symbol_info field contains the
3687 subspace index of the space this symbol is contained in. */
3688 else
4359a7ef 3689 info->symbol_info = sym->section->target_index;
6e033f86
JL
3690
3691 /* Set the symbol's value. */
3692 info->symbol_value = sym->value + sym->section->vma;
3693}
3694
713de7ec
JL
3695/* Build and write, in one big chunk, the entire symbol table for
3696 this BFD. */
3697
3698static boolean
3699som_build_and_write_symbol_table (abfd)
3700 bfd *abfd;
3701{
3702 unsigned int num_syms = bfd_get_symcount (abfd);
3703 file_ptr symtab_location = obj_som_file_hdr (abfd)->symbol_location;
5faa346b 3704 asymbol **bfd_syms = obj_som_sorted_syms (abfd);
80425e6c 3705 struct symbol_dictionary_record *som_symtab = NULL;
713de7ec
JL
3706 int i, symtab_size;
3707
3708 /* Compute total symbol table size and allocate a chunk of memory
3709 to hold the symbol table as we build it. */
3710 symtab_size = num_syms * sizeof (struct symbol_dictionary_record);
80425e6c 3711 som_symtab = (struct symbol_dictionary_record *) malloc (symtab_size);
8eb5d4be 3712 if (som_symtab == NULL && symtab_size != 0)
80425e6c
JK
3713 {
3714 bfd_set_error (bfd_error_no_memory);
3715 goto error_return;
3716 }
6e033f86 3717 memset (som_symtab, 0, symtab_size);
713de7ec
JL
3718
3719 /* Walk over each symbol. */
3720 for (i = 0; i < num_syms; i++)
3721 {
6e033f86
JL
3722 struct som_misc_symbol_info info;
3723
713de7ec
JL
3724 /* This is really an index into the symbol strings table.
3725 By the time we get here, the index has already been
3726 computed and stored into the name field in the BFD symbol. */
8a2cdc62 3727 som_symtab[i].name.n_strx = som_symbol_data(bfd_syms[i])->stringtab_offset;
713de7ec 3728
6e033f86
JL
3729 /* Derive SOM information from the BFD symbol. */
3730 som_bfd_derive_misc_symbol_info (abfd, bfd_syms[i], &info);
713de7ec 3731
6e033f86
JL
3732 /* Now use it. */
3733 som_symtab[i].symbol_type = info.symbol_type;
3734 som_symtab[i].symbol_scope = info.symbol_scope;
3735 som_symtab[i].arg_reloc = info.arg_reloc;
3736 som_symtab[i].symbol_info = info.symbol_info;
3737 som_symtab[i].symbol_value = info.symbol_value;
713de7ec
JL
3738 }
3739
6e033f86 3740 /* Everything is ready, seek to the right location and
713de7ec
JL
3741 scribble out the symbol table. */
3742 if (bfd_seek (abfd, symtab_location, SEEK_SET) != 0)
25057836 3743 return false;
713de7ec
JL
3744
3745 if (bfd_write ((PTR) som_symtab, symtab_size, 1, abfd) != symtab_size)
25057836 3746 goto error_return;
80425e6c
JK
3747
3748 if (som_symtab != NULL)
3749 free (som_symtab);
3750 return true;
3751 error_return:
3752 if (som_symtab != NULL)
3753 free (som_symtab);
3754 return false;
713de7ec
JL
3755}
3756
980bac64
JL
3757/* Write an object in SOM format. */
3758
3759static boolean
9e16fcf1 3760som_write_object_contents (abfd)
d9ad93bc
KR
3761 bfd *abfd;
3762{
980bac64
JL
3763 if (abfd->output_has_begun == false)
3764 {
3765 /* Set up fixed parts of the file, space, and subspace headers.
3766 Notify the world that output has begun. */
3767 som_prep_headers (abfd);
3768 abfd->output_has_begun = true;
980bac64
JL
3769 /* Start writing the object file. This include all the string
3770 tables, fixup streams, and other portions of the object file. */
3771 som_begin_writing (abfd);
980bac64
JL
3772 }
3773
9ea5de84 3774 return (som_finish_writing (abfd));
d9ad93bc 3775}
980bac64
JL
3776
3777\f
9e16fcf1 3778/* Read and save the string table associated with the given BFD. */
d9ad93bc 3779
9e16fcf1
SG
3780static boolean
3781som_slurp_string_table (abfd)
d9ad93bc
KR
3782 bfd *abfd;
3783{
9e16fcf1
SG
3784 char *stringtab;
3785
3786 /* Use the saved version if its available. */
3787 if (obj_som_stringtab (abfd) != NULL)
3788 return true;
3789
1f46bba3
JL
3790 /* I don't think this can currently happen, and I'm not sure it should
3791 really be an error, but it's better than getting unpredictable results
3792 from the host's malloc when passed a size of zero. */
3793 if (obj_som_stringtab_size (abfd) == 0)
3794 {
3795 bfd_set_error (bfd_error_no_symbols);
3796 return false;
3797 }
3798
9e16fcf1 3799 /* Allocate and read in the string table. */
9d14250f 3800 stringtab = malloc (obj_som_stringtab_size (abfd));
9e16fcf1
SG
3801 if (stringtab == NULL)
3802 {
d1ad85a6 3803 bfd_set_error (bfd_error_no_memory);
9e16fcf1
SG
3804 return false;
3805 }
a9713b91 3806 memset (stringtab, 0, obj_som_stringtab_size (abfd));
9e16fcf1
SG
3807
3808 if (bfd_seek (abfd, obj_som_str_filepos (abfd), SEEK_SET) < 0)
25057836 3809 return false;
9e16fcf1
SG
3810
3811 if (bfd_read (stringtab, obj_som_stringtab_size (abfd), 1, abfd)
3812 != obj_som_stringtab_size (abfd))
25057836 3813 return false;
9e16fcf1
SG
3814
3815 /* Save our results and return success. */
3816 obj_som_stringtab (abfd) = stringtab;
3817 return true;
d9ad93bc
KR
3818}
3819
9e16fcf1
SG
3820/* Return the amount of data (in bytes) required to hold the symbol
3821 table for this object. */
3822
326e32d7 3823static long
9e16fcf1 3824som_get_symtab_upper_bound (abfd)
d9ad93bc 3825 bfd *abfd;
d9ad93bc 3826{
9e16fcf1 3827 if (!som_slurp_symbol_table (abfd))
326e32d7 3828 return -1;
9e16fcf1 3829
d6439785 3830 return (bfd_get_symcount (abfd) + 1) * (sizeof (asymbol *));
d9ad93bc
KR
3831}
3832
9e16fcf1
SG
3833/* Convert from a SOM subspace index to a BFD section. */
3834
3835static asection *
c05d2d43 3836bfd_section_from_som_symbol (abfd, symbol)
9e16fcf1 3837 bfd *abfd;
c05d2d43 3838 struct symbol_dictionary_record *symbol;
9e16fcf1
SG
3839{
3840 asection *section;
3841
c2e1207b
JL
3842 /* The meaning of the symbol_info field changes for functions
3843 within executables. So only use the quick symbol_info mapping for
3844 incomplete objects and non-function symbols in executables. */
65b1ef49 3845 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
c2e1207b
JL
3846 || (symbol->symbol_type != ST_ENTRY
3847 && symbol->symbol_type != ST_PRI_PROG
3848 && symbol->symbol_type != ST_SEC_PROG
3849 && symbol->symbol_type != ST_MILLICODE))
c05d2d43
JL
3850 {
3851 unsigned int index = symbol->symbol_info;
3852 for (section = abfd->sections; section != NULL; section = section->next)
eb57c776 3853 if (section->target_index == index && som_is_subspace (section))
c05d2d43 3854 return section;
9e16fcf1 3855
c7ca67cb
JL
3856 /* Could be a symbol from an external library (such as an OMOS
3857 shared library). Don't abort. */
39836432 3858 return bfd_abs_section_ptr;
c7ca67cb 3859
c05d2d43
JL
3860 }
3861 else
3862 {
3863 unsigned int value = symbol->symbol_value;
c05d2d43
JL
3864
3865 /* For executables we will have to use the symbol's address and
3866 find out what section would contain that address. Yuk. */
3867 for (section = abfd->sections; section; section = section->next)
3868 {
3869 if (value >= section->vma
eb57c776
JL
3870 && value <= section->vma + section->_cooked_size
3871 && som_is_subspace (section))
c05d2d43
JL
3872 return section;
3873 }
3874
c7ca67cb
JL
3875 /* Could be a symbol from an external library (such as an OMOS
3876 shared library). Don't abort. */
39836432 3877 return bfd_abs_section_ptr;
c7ca67cb 3878
c05d2d43 3879 }
9e16fcf1
SG
3880}
3881
3882/* Read and save the symbol table associated with the given BFD. */
3883
d9ad93bc 3884static unsigned int
9e16fcf1 3885som_slurp_symbol_table (abfd)
d9ad93bc 3886 bfd *abfd;
d9ad93bc 3887{
9e16fcf1
SG
3888 int symbol_count = bfd_get_symcount (abfd);
3889 int symsize = sizeof (struct symbol_dictionary_record);
3890 char *stringtab;
80425e6c 3891 struct symbol_dictionary_record *buf = NULL, *bufp, *endbufp;
9e16fcf1
SG
3892 som_symbol_type *sym, *symbase;
3893
3894 /* Return saved value if it exists. */
3895 if (obj_som_symtab (abfd) != NULL)
80425e6c 3896 goto successful_return;
9e16fcf1 3897
24a1f6a0 3898 /* Special case. This is *not* an error. */
9e16fcf1 3899 if (symbol_count == 0)
80425e6c 3900 goto successful_return;
9e16fcf1
SG
3901
3902 if (!som_slurp_string_table (abfd))
80425e6c 3903 goto error_return;
9e16fcf1
SG
3904
3905 stringtab = obj_som_stringtab (abfd);
3906
3907 symbase = (som_symbol_type *)
9d14250f 3908 malloc (symbol_count * sizeof (som_symbol_type));
9e16fcf1
SG
3909 if (symbase == NULL)
3910 {
d1ad85a6 3911 bfd_set_error (bfd_error_no_memory);
80425e6c 3912 goto error_return;
9e16fcf1 3913 }
a9713b91 3914 memset (symbase, 0, symbol_count * sizeof (som_symbol_type));
9e16fcf1
SG
3915
3916 /* Read in the external SOM representation. */
80425e6c 3917 buf = malloc (symbol_count * symsize);
8eb5d4be 3918 if (buf == NULL && symbol_count * symsize != 0)
9e16fcf1 3919 {
d1ad85a6 3920 bfd_set_error (bfd_error_no_memory);
80425e6c 3921 goto error_return;
9e16fcf1
SG
3922 }
3923 if (bfd_seek (abfd, obj_som_sym_filepos (abfd), SEEK_SET) < 0)
25057836 3924 goto error_return;
9e16fcf1
SG
3925 if (bfd_read (buf, symbol_count * symsize, 1, abfd)
3926 != symbol_count * symsize)
25057836 3927 goto error_return;
9e16fcf1
SG
3928
3929 /* Iterate over all the symbols and internalize them. */
3930 endbufp = buf + symbol_count;
3931 for (bufp = buf, sym = symbase; bufp < endbufp; ++bufp)
3932 {
3933
3934 /* I don't think we care about these. */
3935 if (bufp->symbol_type == ST_SYM_EXT
3936 || bufp->symbol_type == ST_ARG_EXT)
3937 continue;
3938
6e033f86
JL
3939 /* Set some private data we care about. */
3940 if (bufp->symbol_type == ST_NULL)
3941 som_symbol_data (sym)->som_type = SYMBOL_TYPE_UNKNOWN;
3942 else if (bufp->symbol_type == ST_ABSOLUTE)
3943 som_symbol_data (sym)->som_type = SYMBOL_TYPE_ABSOLUTE;
3944 else if (bufp->symbol_type == ST_DATA)
3945 som_symbol_data (sym)->som_type = SYMBOL_TYPE_DATA;
3946 else if (bufp->symbol_type == ST_CODE)
3947 som_symbol_data (sym)->som_type = SYMBOL_TYPE_CODE;
3948 else if (bufp->symbol_type == ST_PRI_PROG)
3949 som_symbol_data (sym)->som_type = SYMBOL_TYPE_PRI_PROG;
3950 else if (bufp->symbol_type == ST_SEC_PROG)
3951 som_symbol_data (sym)->som_type = SYMBOL_TYPE_SEC_PROG;
3952 else if (bufp->symbol_type == ST_ENTRY)
3953 som_symbol_data (sym)->som_type = SYMBOL_TYPE_ENTRY;
3954 else if (bufp->symbol_type == ST_MILLICODE)
3955 som_symbol_data (sym)->som_type = SYMBOL_TYPE_MILLICODE;
3956 else if (bufp->symbol_type == ST_PLABEL)
3957 som_symbol_data (sym)->som_type = SYMBOL_TYPE_PLABEL;
3958 else
3959 som_symbol_data (sym)->som_type = SYMBOL_TYPE_UNKNOWN;
3960 som_symbol_data (sym)->tc_data.hppa_arg_reloc = bufp->arg_reloc;
3961
9e16fcf1
SG
3962 /* Some reasonable defaults. */
3963 sym->symbol.the_bfd = abfd;
3964 sym->symbol.name = bufp->name.n_strx + stringtab;
3965 sym->symbol.value = bufp->symbol_value;
3966 sym->symbol.section = 0;
3967 sym->symbol.flags = 0;
3968
3969 switch (bufp->symbol_type)
3970 {
3971 case ST_ENTRY:
36456a67 3972 case ST_MILLICODE:
9e16fcf1
SG
3973 sym->symbol.flags |= BSF_FUNCTION;
3974 sym->symbol.value &= ~0x3;
3975 break;
3976
9e16fcf1 3977 case ST_STUB:
9e16fcf1 3978 case ST_CODE:
c7ca67cb
JL
3979 case ST_PRI_PROG:
3980 case ST_SEC_PROG:
9e16fcf1 3981 sym->symbol.value &= ~0x3;
95bc714e
JL
3982 /* If the symbol's scope is ST_UNSAT, then these are
3983 undefined function symbols. */
3984 if (bufp->symbol_scope == SS_UNSAT)
3985 sym->symbol.flags |= BSF_FUNCTION;
3986
9e16fcf1
SG
3987
3988 default:
3989 break;
3990 }
3991
3992 /* Handle scoping and section information. */
3993 switch (bufp->symbol_scope)
3994 {
3995 /* symbol_info field is undefined for SS_EXTERNAL and SS_UNSAT symbols,
3996 so the section associated with this symbol can't be known. */
3997 case SS_EXTERNAL:
017a52d7 3998 if (bufp->symbol_type != ST_STORAGE)
fde543b5 3999 sym->symbol.section = bfd_und_section_ptr;
017a52d7 4000 else
fde543b5 4001 sym->symbol.section = bfd_com_section_ptr;
9e16fcf1
SG
4002 sym->symbol.flags |= (BSF_EXPORT | BSF_GLOBAL);
4003 break;
4004
baef2065
JL
4005 case SS_UNSAT:
4006 if (bufp->symbol_type != ST_STORAGE)
fde543b5 4007 sym->symbol.section = bfd_und_section_ptr;
baef2065 4008 else
fde543b5 4009 sym->symbol.section = bfd_com_section_ptr;
baef2065
JL
4010 break;
4011
9e16fcf1
SG
4012 case SS_UNIVERSAL:
4013 sym->symbol.flags |= (BSF_EXPORT | BSF_GLOBAL);
c05d2d43 4014 sym->symbol.section = bfd_section_from_som_symbol (abfd, bufp);
9e16fcf1
SG
4015 sym->symbol.value -= sym->symbol.section->vma;
4016 break;
4017
4018#if 0
4019 /* SS_GLOBAL and SS_LOCAL are two names for the same thing.
4020 Sound dumb? It is. */
4021 case SS_GLOBAL:
4022#endif
4023 case SS_LOCAL:
4024 sym->symbol.flags |= BSF_LOCAL;
c05d2d43 4025 sym->symbol.section = bfd_section_from_som_symbol (abfd, bufp);
9e16fcf1
SG
4026 sym->symbol.value -= sym->symbol.section->vma;
4027 break;
4028 }
4029
c7ca67cb
JL
4030 /* Mark section symbols and symbols used by the debugger.
4031 Note $START$ is a magic code symbol, NOT a section symbol. */
8eb5d4be 4032 if (sym->symbol.name[0] == '$'
c7ca67cb 4033 && sym->symbol.name[strlen (sym->symbol.name) - 1] == '$'
6adcecef 4034 && !strcmp (sym->symbol.name, sym->symbol.section->name))
baef2065 4035 sym->symbol.flags |= BSF_SECTION_SYM;
8eb5d4be
JK
4036 else if (!strncmp (sym->symbol.name, "L$0\002", 4))
4037 {
4038 sym->symbol.flags |= BSF_SECTION_SYM;
4039 sym->symbol.name = sym->symbol.section->name;
4040 }
4041 else if (!strncmp (sym->symbol.name, "L$0\001", 4))
9e16fcf1
SG
4042 sym->symbol.flags |= BSF_DEBUGGING;
4043
4044 /* Note increment at bottom of loop, since we skip some symbols
4045 we can not include it as part of the for statement. */
4046 sym++;
4047 }
4048
9d14250f
JL
4049 /* Save our results and return success. */
4050 obj_som_symtab (abfd) = symbase;
80425e6c
JK
4051 successful_return:
4052 if (buf != NULL)
4053 free (buf);
9e16fcf1 4054 return (true);
80425e6c
JK
4055
4056 error_return:
4057 if (buf != NULL)
4058 free (buf);
4059 return false;
d9ad93bc
KR
4060}
4061
9e16fcf1
SG
4062/* Canonicalize a SOM symbol table. Return the number of entries
4063 in the symbol table. */
d9ad93bc 4064
326e32d7 4065static long
9e16fcf1 4066som_get_symtab (abfd, location)
d9ad93bc
KR
4067 bfd *abfd;
4068 asymbol **location;
4069{
9e16fcf1
SG
4070 int i;
4071 som_symbol_type *symbase;
4072
4073 if (!som_slurp_symbol_table (abfd))
326e32d7 4074 return -1;
9e16fcf1
SG
4075
4076 i = bfd_get_symcount (abfd);
4077 symbase = obj_som_symtab (abfd);
4078
4079 for (; i > 0; i--, location++, symbase++)
4080 *location = &symbase->symbol;
4081
4082 /* Final null pointer. */
4083 *location = 0;
4084 return (bfd_get_symcount (abfd));
d9ad93bc
KR
4085}
4086
9e16fcf1
SG
4087/* Make a SOM symbol. There is nothing special to do here. */
4088
d9ad93bc 4089static asymbol *
9e16fcf1 4090som_make_empty_symbol (abfd)
d9ad93bc
KR
4091 bfd *abfd;
4092{
9e16fcf1
SG
4093 som_symbol_type *new =
4094 (som_symbol_type *) bfd_zalloc (abfd, sizeof (som_symbol_type));
4095 if (new == NULL)
a9713b91 4096 return 0;
d9ad93bc
KR
4097 new->symbol.the_bfd = abfd;
4098
4099 return &new->symbol;
4100}
4101
9e16fcf1
SG
4102/* Print symbol information. */
4103
d9ad93bc 4104static void
9e16fcf1 4105som_print_symbol (ignore_abfd, afile, symbol, how)
d9ad93bc
KR
4106 bfd *ignore_abfd;
4107 PTR afile;
4108 asymbol *symbol;
4109 bfd_print_symbol_type how;
4110{
9e16fcf1
SG
4111 FILE *file = (FILE *) afile;
4112 switch (how)
4113 {
4114 case bfd_print_symbol_name:
4115 fprintf (file, "%s", symbol->name);
4116 break;
4117 case bfd_print_symbol_more:
4118 fprintf (file, "som ");
4119 fprintf_vma (file, symbol->value);
4120 fprintf (file, " %lx", (long) symbol->flags);
4121 break;
4122 case bfd_print_symbol_all:
4123 {
4124 CONST char *section_name;
4125 section_name = symbol->section ? symbol->section->name : "(*none*)";
4126 bfd_print_symbol_vandf ((PTR) file, symbol);
4127 fprintf (file, " %s\t%s", section_name, symbol->name);
4128 break;
4129 }
4130 }
4131}
4132
5b3577cb
JL
4133static boolean
4134som_bfd_is_local_label (abfd, sym)
4135 bfd *abfd;
4136 asymbol *sym;
4137{
4138 return (sym->name[0] == 'L' && sym->name[1] == '$');
4139}
4140
36456a67
JL
4141/* Count or process variable-length SOM fixup records.
4142
4143 To avoid code duplication we use this code both to compute the number
4144 of relocations requested by a stream, and to internalize the stream.
4145
4146 When computing the number of relocations requested by a stream the
4147 variables rptr, section, and symbols have no meaning.
4148
4149 Return the number of relocations requested by the fixup stream. When
4150 not just counting
4151
4152 This needs at least two or three more passes to get it cleaned up. */
4153
4154static unsigned int
4155som_set_reloc_info (fixup, end, internal_relocs, section, symbols, just_count)
4156 unsigned char *fixup;
4157 unsigned int end;
4158 arelent *internal_relocs;
4159 asection *section;
4160 asymbol **symbols;
4161 boolean just_count;
4162{
0f4161dd 4163 unsigned int op, varname, deallocate_contents = 0;
36456a67
JL
4164 unsigned char *end_fixups = &fixup[end];
4165 const struct fixup_format *fp;
4166 char *cp;
4167 unsigned char *save_fixup;
ae880afc 4168 int variables[26], stack[20], c, v, count, prev_fixup, *sp, saved_unwind_bits;
36456a67
JL
4169 const int *subop;
4170 arelent *rptr= internal_relocs;
95bc714e 4171 unsigned int offset = 0;
36456a67
JL
4172
4173#define var(c) variables[(c) - 'A']
4174#define push(v) (*sp++ = (v))
4175#define pop() (*--sp)
4176#define emptystack() (sp == stack)
4177
4178 som_initialize_reloc_queue (reloc_queue);
6e033f86
JL
4179 memset (variables, 0, sizeof (variables));
4180 memset (stack, 0, sizeof (stack));
36456a67
JL
4181 count = 0;
4182 prev_fixup = 0;
ae880afc 4183 saved_unwind_bits = 0;
36456a67
JL
4184 sp = stack;
4185
4186 while (fixup < end_fixups)
4187 {
4188
4189 /* Save pointer to the start of this fixup. We'll use
4190 it later to determine if it is necessary to put this fixup
4191 on the queue. */
4192 save_fixup = fixup;
4193
4194 /* Get the fixup code and its associated format. */
4195 op = *fixup++;
4196 fp = &som_fixup_formats[op];
4197
4198 /* Handle a request for a previous fixup. */
4199 if (*fp->format == 'P')
4200 {
4201 /* Get pointer to the beginning of the prev fixup, move
4202 the repeated fixup to the head of the queue. */
4203 fixup = reloc_queue[fp->D].reloc;
4204 som_reloc_queue_fix (reloc_queue, fp->D);
4205 prev_fixup = 1;
4206
4207 /* Get the fixup code and its associated format. */
4208 op = *fixup++;
4209 fp = &som_fixup_formats[op];
4210 }
4211
88bbe402
JL
4212 /* If this fixup will be passed to BFD, set some reasonable defaults. */
4213 if (! just_count
4214 && som_hppa_howto_table[op].type != R_NO_RELOCATION
4215 && som_hppa_howto_table[op].type != R_DATA_OVERRIDE)
36456a67
JL
4216 {
4217 rptr->address = offset;
4218 rptr->howto = &som_hppa_howto_table[op];
4219 rptr->addend = 0;
fde543b5 4220 rptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
36456a67
JL
4221 }
4222
4223 /* Set default input length to 0. Get the opcode class index
4224 into D. */
4225 var ('L') = 0;
4226 var ('D') = fp->D;
ae880afc 4227 var ('U') = saved_unwind_bits;
36456a67
JL
4228
4229 /* Get the opcode format. */
4230 cp = fp->format;
4231
4232 /* Process the format string. Parsing happens in two phases,
4233 parse RHS, then assign to LHS. Repeat until no more
4234 characters in the format string. */
4235 while (*cp)
4236 {
4237 /* The variable this pass is going to compute a value for. */
4238 varname = *cp++;
4239
4240 /* Start processing RHS. Continue until a NULL or '=' is found. */
4241 do
4242 {
4243 c = *cp++;
4244
4245 /* If this is a variable, push it on the stack. */
4246 if (isupper (c))
4247 push (var (c));
4248
4249 /* If this is a lower case letter, then it represents
4250 additional data from the fixup stream to be pushed onto
4251 the stack. */
4252 else if (islower (c))
4253 {
c40439a2 4254 int bits = (c - 'a') * 8;
36456a67
JL
4255 for (v = 0; c > 'a'; --c)
4256 v = (v << 8) | *fixup++;
c40439a2
JL
4257 if (varname == 'V')
4258 v = sign_extend (v, bits);
36456a67
JL
4259 push (v);
4260 }
4261
4262 /* A decimal constant. Push it on the stack. */
4263 else if (isdigit (c))
4264 {
4265 v = c - '0';
4266 while (isdigit (*cp))
4267 v = (v * 10) + (*cp++ - '0');
4268 push (v);
4269 }
4270 else
4271
4272 /* An operator. Pop two two values from the stack and
4273 use them as operands to the given operation. Push
4274 the result of the operation back on the stack. */
4275 switch (c)
4276 {
4277 case '+':
4278 v = pop ();
4279 v += pop ();
4280 push (v);
4281 break;
4282 case '*':
4283 v = pop ();
4284 v *= pop ();
4285 push (v);
4286 break;
4287 case '<':
4288 v = pop ();
4289 v = pop () << v;
4290 push (v);
4291 break;
4292 default:
4293 abort ();
4294 }
4295 }
4296 while (*cp && *cp != '=');
4297
4298 /* Move over the equal operator. */
4299 cp++;
4300
4301 /* Pop the RHS off the stack. */
4302 c = pop ();
4303
4304 /* Perform the assignment. */
4305 var (varname) = c;
4306
4307 /* Handle side effects. and special 'O' stack cases. */
4308 switch (varname)
4309 {
4310 /* Consume some bytes from the input space. */
4311 case 'L':
4312 offset += c;
4313 break;
4314 /* A symbol to use in the relocation. Make a note
4315 of this if we are not just counting. */
4316 case 'S':
4317 if (! just_count)
4318 rptr->sym_ptr_ptr = &symbols[c];
4319 break;
9ea5de84
JL
4320 /* Argument relocation bits for a function call. */
4321 case 'R':
4322 if (! just_count)
4323 {
4324 unsigned int tmp = var ('R');
4325 rptr->addend = 0;
4326
4327 if ((som_hppa_howto_table[op].type == R_PCREL_CALL
4328 && R_PCREL_CALL + 10 > op)
4329 || (som_hppa_howto_table[op].type == R_ABS_CALL
4330 && R_ABS_CALL + 10 > op))
4331 {
4332 /* Simple encoding. */
4333 if (tmp > 4)
4334 {
4335 tmp -= 5;
4336 rptr->addend |= 1;
4337 }
4338 if (tmp == 4)
4339 rptr->addend |= 1 << 8 | 1 << 6 | 1 << 4 | 1 << 2;
4340 else if (tmp == 3)
4341 rptr->addend |= 1 << 8 | 1 << 6 | 1 << 4;
4342 else if (tmp == 2)
4343 rptr->addend |= 1 << 8 | 1 << 6;
4344 else if (tmp == 1)
4345 rptr->addend |= 1 << 8;
4346 }
4347 else
4348 {
4349 unsigned int tmp1, tmp2;
4350
4351 /* First part is easy -- low order two bits are
4352 directly copied, then shifted away. */
4353 rptr->addend = tmp & 0x3;
4354 tmp >>= 2;
4355
4356 /* Diving the result by 10 gives us the second
4357 part. If it is 9, then the first two words
4358 are a double precision paramater, else it is
4359 3 * the first arg bits + the 2nd arg bits. */
4360 tmp1 = tmp / 10;
4361 tmp -= tmp1 * 10;
4362 if (tmp1 == 9)
4363 rptr->addend += (0xe << 6);
4364 else
4365 {
4366 /* Get the two pieces. */
4367 tmp2 = tmp1 / 3;
4368 tmp1 -= tmp2 * 3;
4369 /* Put them in the addend. */
4370 rptr->addend += (tmp2 << 8) + (tmp1 << 6);
4371 }
4372
4373 /* What's left is the third part. It's unpacked
4374 just like the second. */
4375 if (tmp == 9)
4376 rptr->addend += (0xe << 2);
4377 else
4378 {
4379 tmp2 = tmp / 3;
4380 tmp -= tmp2 * 3;
4381 rptr->addend += (tmp2 << 4) + (tmp << 2);
4382 }
4383 }
4384 rptr->addend = HPPA_R_ADDEND (rptr->addend, 0);
4385 }
4386 break;
36456a67
JL
4387 /* Handle the linker expression stack. */
4388 case 'O':
4389 switch (op)
4390 {
4391 case R_COMP1:
4392 subop = comp1_opcodes;
4393 break;
4394 case R_COMP2:
4395 subop = comp2_opcodes;
4396 break;
4397 case R_COMP3:
4398 subop = comp3_opcodes;
4399 break;
4400 default:
4401 abort ();
4402 }
4403 while (*subop <= (unsigned char) c)
4404 ++subop;
4405 --subop;
4406 break;
ae880afc
JL
4407 /* The lower 32unwind bits must be persistent. */
4408 case 'U':
4409 saved_unwind_bits = var ('U');
4410 break;
4411
36456a67
JL
4412 default:
4413 break;
4414 }
4415 }
4416
4417 /* If we used a previous fixup, clean up after it. */
4418 if (prev_fixup)
4419 {
4420 fixup = save_fixup + 1;
4421 prev_fixup = 0;
4422 }
4423 /* Queue it. */
4424 else if (fixup > save_fixup + 1)
4425 som_reloc_queue_insert (save_fixup, fixup - save_fixup, reloc_queue);
4426
4427 /* We do not pass R_DATA_OVERRIDE or R_NO_RELOCATION
4428 fixups to BFD. */
4429 if (som_hppa_howto_table[op].type != R_DATA_OVERRIDE
4430 && som_hppa_howto_table[op].type != R_NO_RELOCATION)
4431 {
4432 /* Done with a single reloction. Loop back to the top. */
4433 if (! just_count)
4434 {
ae880afc
JL
4435 if (som_hppa_howto_table[op].type == R_ENTRY)
4436 rptr->addend = var ('T');
4437 else if (som_hppa_howto_table[op].type == R_EXIT)
4438 rptr->addend = var ('U');
9ea5de84
JL
4439 else if (som_hppa_howto_table[op].type == R_PCREL_CALL
4440 || som_hppa_howto_table[op].type == R_ABS_CALL)
4441 ;
0f4161dd
JL
4442 else if (som_hppa_howto_table[op].type == R_DATA_ONE_SYMBOL)
4443 {
4444 unsigned addend = var ('V');
4445
4446 /* Try what was specified in R_DATA_OVERRIDE first
4447 (if anything). Then the hard way using the
4448 section contents. */
4449 rptr->addend = var ('V');
4450
4451 if (rptr->addend == 0 && !section->contents)
4452 {
4453 /* Got to read the damn contents first. We don't
4454 bother saving the contents (yet). Add it one
4455 day if the need arises. */
4456 section->contents = malloc (section->_raw_size);
4457 if (section->contents == NULL)
4458 return -1;
4459
4460 deallocate_contents = 1;
4461 bfd_get_section_contents (section->owner,
4462 section,
4463 section->contents,
4464 0,
4465 section->_raw_size);
4466 }
4467 else if (rptr->addend == 0)
4468 rptr->addend = bfd_get_32 (section->owner,
4469 (section->contents
4470 + offset - var ('L')));
4471
4472 }
ae880afc
JL
4473 else
4474 rptr->addend = var ('V');
36456a67
JL
4475 rptr++;
4476 }
4477 count++;
4478 /* Now that we've handled a "full" relocation, reset
4479 some state. */
6e033f86
JL
4480 memset (variables, 0, sizeof (variables));
4481 memset (stack, 0, sizeof (stack));
36456a67
JL
4482 }
4483 }
0f4161dd
JL
4484 if (deallocate_contents)
4485 free (section->contents);
4486
36456a67
JL
4487 return count;
4488
4489#undef var
4490#undef push
4491#undef pop
4492#undef emptystack
4493}
4494
4495/* Read in the relocs (aka fixups in SOM terms) for a section.
4496
4497 som_get_reloc_upper_bound calls this routine with JUST_COUNT
4498 set to true to indicate it only needs a count of the number
4499 of actual relocations. */
4500
4501static boolean
4502som_slurp_reloc_table (abfd, section, symbols, just_count)
4503 bfd *abfd;
4504 asection *section;
4505 asymbol **symbols;
4506 boolean just_count;
4507{
4508 char *external_relocs;
4509 unsigned int fixup_stream_size;
4510 arelent *internal_relocs;
4511 unsigned int num_relocs;
4512
4513 fixup_stream_size = som_section_data (section)->reloc_size;
4514 /* If there were no relocations, then there is nothing to do. */
4515 if (section->reloc_count == 0)
4516 return true;
4517
4518 /* If reloc_count is -1, then the relocation stream has not been
4519 parsed. We must do so now to know how many relocations exist. */
4520 if (section->reloc_count == -1)
4521 {
1f46bba3 4522 external_relocs = (char *) malloc (fixup_stream_size);
36456a67
JL
4523 if (external_relocs == (char *) NULL)
4524 {
d1ad85a6 4525 bfd_set_error (bfd_error_no_memory);
36456a67
JL
4526 return false;
4527 }
4528 /* Read in the external forms. */
4529 if (bfd_seek (abfd,
4530 obj_som_reloc_filepos (abfd) + section->rel_filepos,
4531 SEEK_SET)
4532 != 0)
25057836 4533 return false;
36456a67
JL
4534 if (bfd_read (external_relocs, 1, fixup_stream_size, abfd)
4535 != fixup_stream_size)
25057836
JL
4536 return false;
4537
36456a67
JL
4538 /* Let callers know how many relocations found.
4539 also save the relocation stream as we will
4540 need it again. */
4541 section->reloc_count = som_set_reloc_info (external_relocs,
4542 fixup_stream_size,
4543 NULL, NULL, NULL, true);
4544
4545 som_section_data (section)->reloc_stream = external_relocs;
4546 }
4547
4548 /* If the caller only wanted a count, then return now. */
4549 if (just_count)
4550 return true;
4551
4552 num_relocs = section->reloc_count;
4553 external_relocs = som_section_data (section)->reloc_stream;
4554 /* Return saved information about the relocations if it is available. */
4555 if (section->relocation != (arelent *) NULL)
4556 return true;
4557
9ea5de84
JL
4558 internal_relocs = (arelent *)
4559 bfd_zalloc (abfd, (num_relocs * sizeof (arelent)));
36456a67 4560 if (internal_relocs == (arelent *) NULL)
a9713b91 4561 return false;
36456a67
JL
4562
4563 /* Process and internalize the relocations. */
4564 som_set_reloc_info (external_relocs, fixup_stream_size,
4565 internal_relocs, section, symbols, false);
4566
9ea5de84
JL
4567 /* We're done with the external relocations. Free them. */
4568 free (external_relocs);
4569
36456a67
JL
4570 /* Save our results and return success. */
4571 section->relocation = internal_relocs;
4572 return (true);
4573}
4574
4575/* Return the number of bytes required to store the relocation
4576 information associated with the given section. */
4577
326e32d7 4578static long
9e16fcf1
SG
4579som_get_reloc_upper_bound (abfd, asect)
4580 bfd *abfd;
4581 sec_ptr asect;
4582{
36456a67
JL
4583 /* If section has relocations, then read in the relocation stream
4584 and parse it to determine how many relocations exist. */
4585 if (asect->flags & SEC_RELOC)
4586 {
326e32d7 4587 if (! som_slurp_reloc_table (abfd, asect, NULL, true))
515b8104
JL
4588 return -1;
4589 return (asect->reloc_count + 1) * sizeof (arelent *);
36456a67 4590 }
326e32d7 4591 /* There are no relocations. */
36456a67 4592 return 0;
d9ad93bc
KR
4593}
4594
36456a67
JL
4595/* Convert relocations from SOM (external) form into BFD internal
4596 form. Return the number of relocations. */
4597
326e32d7 4598static long
9e16fcf1
SG
4599som_canonicalize_reloc (abfd, section, relptr, symbols)
4600 bfd *abfd;
4601 sec_ptr section;
4602 arelent **relptr;
4603 asymbol **symbols;
4604{
36456a67
JL
4605 arelent *tblptr;
4606 int count;
4607
4608 if (som_slurp_reloc_table (abfd, section, symbols, false) == false)
326e32d7 4609 return -1;
36456a67
JL
4610
4611 count = section->reloc_count;
4612 tblptr = section->relocation;
36456a67
JL
4613
4614 while (count--)
4615 *relptr++ = tblptr++;
4616
4617 *relptr = (arelent *) NULL;
4618 return section->reloc_count;
9e16fcf1
SG
4619}
4620
2f3508ad 4621extern const bfd_target som_vec;
9e16fcf1
SG
4622
4623/* A hook to set up object file dependent section information. */
4624
d9ad93bc 4625static boolean
9e16fcf1 4626som_new_section_hook (abfd, newsect)
d9ad93bc
KR
4627 bfd *abfd;
4628 asection *newsect;
4629{
9783e04a
DM
4630 newsect->used_by_bfd =
4631 (PTR) bfd_zalloc (abfd, sizeof (struct som_section_data_struct));
4632 if (!newsect->used_by_bfd)
a9713b91 4633 return false;
d9ad93bc
KR
4634 newsect->alignment_power = 3;
4635
4636 /* We allow more than three sections internally */
4637 return true;
4638}
4639
c40439a2
JL
4640/* Copy any private info we understand from the input symbol
4641 to the output symbol. */
4642
4643static boolean
4644som_bfd_copy_private_symbol_data (ibfd, isymbol, obfd, osymbol)
4645 bfd *ibfd;
4646 asymbol *isymbol;
4647 bfd *obfd;
4648 asymbol *osymbol;
4649{
f918d3cc
ILT
4650 struct som_symbol *input_symbol = (struct som_symbol *) isymbol;
4651 struct som_symbol *output_symbol = (struct som_symbol *) osymbol;
c40439a2
JL
4652
4653 /* One day we may try to grok other private data. */
4654 if (ibfd->xvec->flavour != bfd_target_som_flavour
4655 || obfd->xvec->flavour != bfd_target_som_flavour)
4656 return false;
4657
4658 /* The only private information we need to copy is the argument relocation
4659 bits. */
4660 output_symbol->tc_data.hppa_arg_reloc = input_symbol->tc_data.hppa_arg_reloc;
4661
4662 return true;
4663}
4664
5b3577cb
JL
4665/* Copy any private info we understand from the input section
4666 to the output section. */
4667static boolean
4668som_bfd_copy_private_section_data (ibfd, isection, obfd, osection)
4669 bfd *ibfd;
4670 asection *isection;
4671 bfd *obfd;
4672 asection *osection;
4673{
4674 /* One day we may try to grok other private data. */
4675 if (ibfd->xvec->flavour != bfd_target_som_flavour
15766917
JL
4676 || obfd->xvec->flavour != bfd_target_som_flavour
4677 || (!som_is_space (isection) && !som_is_subspace (isection)))
6adcecef 4678 return true;
5b3577cb 4679
15766917
JL
4680 som_section_data (osection)->copy_data
4681 = (struct som_copyable_section_data_struct *)
4682 bfd_zalloc (obfd, sizeof (struct som_copyable_section_data_struct));
4683 if (som_section_data (osection)->copy_data == NULL)
a9713b91 4684 return false;
15766917
JL
4685
4686 memcpy (som_section_data (osection)->copy_data,
4687 som_section_data (isection)->copy_data,
4688 sizeof (struct som_copyable_section_data_struct));
5b3577cb
JL
4689
4690 /* Reparent if necessary. */
15766917
JL
4691 if (som_section_data (osection)->copy_data->container)
4692 som_section_data (osection)->copy_data->container =
4693 som_section_data (osection)->copy_data->container->output_section;
4359a7ef
JL
4694
4695 return true;
5b3577cb 4696}
4359a7ef
JL
4697
4698/* Copy any private info we understand from the input bfd
4699 to the output bfd. */
4700
4701static boolean
4702som_bfd_copy_private_bfd_data (ibfd, obfd)
4703 bfd *ibfd, *obfd;
4704{
4705 /* One day we may try to grok other private data. */
4706 if (ibfd->xvec->flavour != bfd_target_som_flavour
4707 || obfd->xvec->flavour != bfd_target_som_flavour)
6adcecef 4708 return true;
4359a7ef
JL
4709
4710 /* Allocate some memory to hold the data we need. */
4711 obj_som_exec_data (obfd) = (struct som_exec_data *)
4712 bfd_zalloc (obfd, sizeof (struct som_exec_data));
4713 if (obj_som_exec_data (obfd) == NULL)
a9713b91 4714 return false;
4359a7ef
JL
4715
4716 /* Now copy the data. */
4717 memcpy (obj_som_exec_data (obfd), obj_som_exec_data (ibfd),
4718 sizeof (struct som_exec_data));
4719
4720 return true;
4721}
4722
40249bfb
JL
4723/* Set backend info for sections which can not be described
4724 in the BFD data structures. */
4725
15766917 4726boolean
40249bfb
JL
4727bfd_som_set_section_attributes (section, defined, private, sort_key, spnum)
4728 asection *section;
6941fd4d
JL
4729 int defined;
4730 int private;
44fd6622 4731 unsigned int sort_key;
40249bfb
JL
4732 int spnum;
4733{
15766917
JL
4734 /* Allocate memory to hold the magic information. */
4735 if (som_section_data (section)->copy_data == NULL)
4736 {
4737 som_section_data (section)->copy_data
4738 = (struct som_copyable_section_data_struct *)
4739 bfd_zalloc (section->owner,
4740 sizeof (struct som_copyable_section_data_struct));
4741 if (som_section_data (section)->copy_data == NULL)
a9713b91 4742 return false;
15766917
JL
4743 }
4744 som_section_data (section)->copy_data->sort_key = sort_key;
4745 som_section_data (section)->copy_data->is_defined = defined;
4746 som_section_data (section)->copy_data->is_private = private;
4747 som_section_data (section)->copy_data->container = section;
673aceca 4748 som_section_data (section)->copy_data->space_number = spnum;
15766917 4749 return true;
40249bfb
JL
4750}
4751
4752/* Set backend info for subsections which can not be described
4753 in the BFD data structures. */
4754
15766917 4755boolean
40249bfb
JL
4756bfd_som_set_subsection_attributes (section, container, access,
4757 sort_key, quadrant)
4758 asection *section;
4759 asection *container;
4760 int access;
6941fd4d 4761 unsigned int sort_key;
40249bfb
JL
4762 int quadrant;
4763{
15766917
JL
4764 /* Allocate memory to hold the magic information. */
4765 if (som_section_data (section)->copy_data == NULL)
4766 {
4767 som_section_data (section)->copy_data
4768 = (struct som_copyable_section_data_struct *)
4769 bfd_zalloc (section->owner,
4770 sizeof (struct som_copyable_section_data_struct));
4771 if (som_section_data (section)->copy_data == NULL)
a9713b91 4772 return false;
15766917
JL
4773 }
4774 som_section_data (section)->copy_data->sort_key = sort_key;
4775 som_section_data (section)->copy_data->access_control_bits = access;
4776 som_section_data (section)->copy_data->quadrant = quadrant;
4777 som_section_data (section)->copy_data->container = container;
4778 return true;
40249bfb
JL
4779}
4780
4781/* Set the full SOM symbol type. SOM needs far more symbol information
4782 than any other object file format I'm aware of. It is mandatory
4783 to be able to know if a symbol is an entry point, millicode, data,
4784 code, absolute, storage request, or procedure label. If you get
4785 the symbol type wrong your program will not link. */
4786
4787void
4788bfd_som_set_symbol_type (symbol, type)
4789 asymbol *symbol;
4790 unsigned int type;
4791{
50c5c4ad 4792 som_symbol_data (symbol)->som_type = type;
40249bfb
JL
4793}
4794
f6c2300b
JL
4795/* Attach an auxiliary header to the BFD backend so that it may be
4796 written into the object file. */
44fd6622 4797boolean
f6c2300b
JL
4798bfd_som_attach_aux_hdr (abfd, type, string)
4799 bfd *abfd;
4800 int type;
4801 char *string;
4802{
4803 if (type == VERSION_AUX_ID)
4804 {
4805 int len = strlen (string);
39961154 4806 int pad = 0;
f6c2300b
JL
4807
4808 if (len % 4)
39961154 4809 pad = (4 - (len % 4));
a62dd44f
JL
4810 obj_som_version_hdr (abfd) = (struct user_string_aux_hdr *)
4811 bfd_zalloc (abfd, sizeof (struct aux_id)
9783e04a
DM
4812 + sizeof (unsigned int) + len + pad);
4813 if (!obj_som_version_hdr (abfd))
a9713b91 4814 return false;
f6c2300b 4815 obj_som_version_hdr (abfd)->header_id.type = VERSION_AUX_ID;
39961154
JL
4816 obj_som_version_hdr (abfd)->header_id.length = len + pad;
4817 obj_som_version_hdr (abfd)->header_id.length += sizeof (int);
f6c2300b 4818 obj_som_version_hdr (abfd)->string_length = len;
39961154 4819 strncpy (obj_som_version_hdr (abfd)->user_string, string, len);
f6c2300b
JL
4820 }
4821 else if (type == COPYRIGHT_AUX_ID)
4822 {
4823 int len = strlen (string);
39961154 4824 int pad = 0;
f6c2300b
JL
4825
4826 if (len % 4)
39961154 4827 pad = (4 - (len % 4));
a62dd44f
JL
4828 obj_som_copyright_hdr (abfd) = (struct copyright_aux_hdr *)
4829 bfd_zalloc (abfd, sizeof (struct aux_id)
4830 + sizeof (unsigned int) + len + pad);
9783e04a 4831 if (!obj_som_copyright_hdr (abfd))
a9713b91 4832 return false;
f6c2300b 4833 obj_som_copyright_hdr (abfd)->header_id.type = COPYRIGHT_AUX_ID;
39961154
JL
4834 obj_som_copyright_hdr (abfd)->header_id.length = len + pad;
4835 obj_som_copyright_hdr (abfd)->header_id.length += sizeof (int);
f6c2300b
JL
4836 obj_som_copyright_hdr (abfd)->string_length = len;
4837 strcpy (obj_som_copyright_hdr (abfd)->copyright, string);
4838 }
44fd6622 4839 return true;
f6c2300b
JL
4840}
4841
f977e865
JL
4842static boolean
4843som_get_section_contents (abfd, section, location, offset, count)
4844 bfd *abfd;
4845 sec_ptr section;
4846 PTR location;
4847 file_ptr offset;
4848 bfd_size_type count;
4849{
c3a18888 4850 if (count == 0 || ((section->flags & SEC_HAS_CONTENTS) == 0))
f977e865
JL
4851 return true;
4852 if ((bfd_size_type)(offset+count) > section->_raw_size
4853 || bfd_seek (abfd, (file_ptr)(section->filepos + offset), SEEK_SET) == -1
4854 || bfd_read (location, (bfd_size_type)1, count, abfd) != count)
4855 return (false); /* on error */
4856 return (true);
4857}
4858
d9ad93bc 4859static boolean
9e16fcf1 4860som_set_section_contents (abfd, section, location, offset, count)
d9ad93bc
KR
4861 bfd *abfd;
4862 sec_ptr section;
4863 PTR location;
4864 file_ptr offset;
4865 bfd_size_type count;
4866{
980bac64
JL
4867 if (abfd->output_has_begun == false)
4868 {
4869 /* Set up fixed parts of the file, space, and subspace headers.
4870 Notify the world that output has begun. */
4871 som_prep_headers (abfd);
4872 abfd->output_has_begun = true;
980bac64
JL
4873 /* Start writing the object file. This include all the string
4874 tables, fixup streams, and other portions of the object file. */
4875 som_begin_writing (abfd);
980bac64
JL
4876 }
4877
4878 /* Only write subspaces which have "real" contents (eg. the contents
4879 are not generated at run time by the OS). */
15766917 4880 if (!som_is_subspace (section)
c3a18888 4881 || ((section->flags & SEC_HAS_CONTENTS) == 0))
980bac64
JL
4882 return true;
4883
4884 /* Seek to the proper offset within the object file and write the
4885 data. */
15766917 4886 offset += som_section_data (section)->subspace_dict->file_loc_init_value;
980bac64 4887 if (bfd_seek (abfd, offset, SEEK_SET) == -1)
25057836 4888 return false;
980bac64
JL
4889
4890 if (bfd_write ((PTR) location, 1, count, abfd) != count)
25057836 4891 return false;
980bac64 4892 return true;
d9ad93bc
KR
4893}
4894
4895static boolean
9e16fcf1 4896som_set_arch_mach (abfd, arch, machine)
d9ad93bc
KR
4897 bfd *abfd;
4898 enum bfd_architecture arch;
4899 unsigned long machine;
4900{
2212ff92 4901 /* Allow any architecture to be supported by the SOM backend */
d9ad93bc
KR
4902 return bfd_default_set_arch_mach (abfd, arch, machine);
4903}
4904
4905static boolean
9e16fcf1 4906som_find_nearest_line (abfd, section, symbols, offset, filename_ptr,
d9ad93bc
KR
4907 functionname_ptr, line_ptr)
4908 bfd *abfd;
4909 asection *section;
4910 asymbol **symbols;
4911 bfd_vma offset;
4912 CONST char **filename_ptr;
4913 CONST char **functionname_ptr;
4914 unsigned int *line_ptr;
4915{
d9ad93bc
KR
4916 return (false);
4917}
4918
4919static int
9e16fcf1 4920som_sizeof_headers (abfd, reloc)
d9ad93bc
KR
4921 bfd *abfd;
4922 boolean reloc;
4923{
709af562 4924 (*_bfd_error_handler) ("som_sizeof_headers unimplemented");
d9ad93bc
KR
4925 fflush (stderr);
4926 abort ();
4927 return (0);
4928}
4929
017a52d7
JL
4930/* Return the single-character symbol type corresponding to
4931 SOM section S, or '?' for an unknown SOM section. */
4932
4933static char
4934som_section_type (s)
4935 const char *s;
4936{
4937 const struct section_to_type *t;
4938
4939 for (t = &stt[0]; t->section; t++)
4940 if (!strcmp (s, t->section))
4941 return t->type;
4942 return '?';
4943}
4944
4945static int
4946som_decode_symclass (symbol)
4947 asymbol *symbol;
4948{
4949 char c;
4950
4951 if (bfd_is_com_section (symbol->section))
4952 return 'C';
fde543b5 4953 if (bfd_is_und_section (symbol->section))
017a52d7 4954 return 'U';
fde543b5 4955 if (bfd_is_ind_section (symbol->section))
017a52d7
JL
4956 return 'I';
4957 if (!(symbol->flags & (BSF_GLOBAL|BSF_LOCAL)))
4958 return '?';
4959
515b8104
JL
4960 if (bfd_is_abs_section (symbol->section)
4961 || (som_symbol_data (symbol) != NULL
4962 && som_symbol_data (symbol)->som_type == SYMBOL_TYPE_ABSOLUTE))
017a52d7
JL
4963 c = 'a';
4964 else if (symbol->section)
4965 c = som_section_type (symbol->section->name);
4966 else
4967 return '?';
4968 if (symbol->flags & BSF_GLOBAL)
4969 c = toupper (c);
4970 return c;
4971}
4972
d9ad93bc
KR
4973/* Return information about SOM symbol SYMBOL in RET. */
4974
4975static void
9e16fcf1 4976som_get_symbol_info (ignore_abfd, symbol, ret)
017a52d7 4977 bfd *ignore_abfd;
d9ad93bc
KR
4978 asymbol *symbol;
4979 symbol_info *ret;
4980{
017a52d7
JL
4981 ret->type = som_decode_symclass (symbol);
4982 if (ret->type != 'U')
4983 ret->value = symbol->value+symbol->section->vma;
4984 else
4985 ret->value = 0;
4986 ret->name = symbol->name;
d9ad93bc
KR
4987}
4988
3c37f9ca
JL
4989/* Count the number of symbols in the archive symbol table. Necessary
4990 so that we can allocate space for all the carsyms at once. */
4991
4992static boolean
4993som_bfd_count_ar_symbols (abfd, lst_header, count)
4994 bfd *abfd;
4995 struct lst_header *lst_header;
4996 symindex *count;
4997{
4998 unsigned int i;
4c9db344 4999 unsigned int *hash_table = NULL;
3c37f9ca
JL
5000 file_ptr lst_filepos = bfd_tell (abfd) - sizeof (struct lst_header);
5001
80425e6c
JK
5002 hash_table =
5003 (unsigned int *) malloc (lst_header->hash_size * sizeof (unsigned int));
8eb5d4be 5004 if (hash_table == NULL && lst_header->hash_size != 0)
80425e6c
JK
5005 {
5006 bfd_set_error (bfd_error_no_memory);
5007 goto error_return;
5008 }
5009
3c37f9ca
JL
5010 /* Don't forget to initialize the counter! */
5011 *count = 0;
5012
5013 /* Read in the hash table. The has table is an array of 32bit file offsets
5014 which point to the hash chains. */
5015 if (bfd_read ((PTR) hash_table, lst_header->hash_size, 4, abfd)
5016 != lst_header->hash_size * 4)
25057836 5017 goto error_return;
3c37f9ca
JL
5018
5019 /* Walk each chain counting the number of symbols found on that particular
5020 chain. */
5021 for (i = 0; i < lst_header->hash_size; i++)
5022 {
5023 struct lst_symbol_record lst_symbol;
5024
5025 /* An empty chain has zero as it's file offset. */
5026 if (hash_table[i] == 0)
5027 continue;
5028
5029 /* Seek to the first symbol in this hash chain. */
5030 if (bfd_seek (abfd, lst_filepos + hash_table[i], SEEK_SET) < 0)
25057836 5031 goto error_return;
3c37f9ca
JL
5032
5033 /* Read in this symbol and update the counter. */
5034 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
5035 != sizeof (lst_symbol))
25057836
JL
5036 goto error_return;
5037
3c37f9ca
JL
5038 (*count)++;
5039
5040 /* Now iterate through the rest of the symbols on this chain. */
5041 while (lst_symbol.next_entry)
5042 {
5043
5044 /* Seek to the next symbol. */
5045 if (bfd_seek (abfd, lst_filepos + lst_symbol.next_entry, SEEK_SET)
5046 < 0)
25057836 5047 goto error_return;
3c37f9ca
JL
5048
5049 /* Read the symbol in and update the counter. */
5050 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
5051 != sizeof (lst_symbol))
25057836
JL
5052 goto error_return;
5053
3c37f9ca
JL
5054 (*count)++;
5055 }
5056 }
80425e6c
JK
5057 if (hash_table != NULL)
5058 free (hash_table);
3c37f9ca 5059 return true;
80425e6c
JK
5060
5061 error_return:
5062 if (hash_table != NULL)
5063 free (hash_table);
5064 return false;
3c37f9ca
JL
5065}
5066
5067/* Fill in the canonical archive symbols (SYMS) from the archive described
5068 by ABFD and LST_HEADER. */
5069
5070static boolean
5071som_bfd_fill_in_ar_symbols (abfd, lst_header, syms)
5072 bfd *abfd;
5073 struct lst_header *lst_header;
5074 carsym **syms;
5075{
5076 unsigned int i, len;
5077 carsym *set = syms[0];
80425e6c
JK
5078 unsigned int *hash_table = NULL;
5079 struct som_entry *som_dict = NULL;
3c37f9ca
JL
5080 file_ptr lst_filepos = bfd_tell (abfd) - sizeof (struct lst_header);
5081
80425e6c
JK
5082 hash_table =
5083 (unsigned int *) malloc (lst_header->hash_size * sizeof (unsigned int));
8eb5d4be 5084 if (hash_table == NULL && lst_header->hash_size != 0)
80425e6c
JK
5085 {
5086 bfd_set_error (bfd_error_no_memory);
5087 goto error_return;
5088 }
5089
5090 som_dict =
5091 (struct som_entry *) malloc (lst_header->module_count
5092 * sizeof (struct som_entry));
8eb5d4be 5093 if (som_dict == NULL && lst_header->module_count != 0)
80425e6c
JK
5094 {
5095 bfd_set_error (bfd_error_no_memory);
5096 goto error_return;
5097 }
5098
3c37f9ca
JL
5099 /* Read in the hash table. The has table is an array of 32bit file offsets
5100 which point to the hash chains. */
5101 if (bfd_read ((PTR) hash_table, lst_header->hash_size, 4, abfd)
5102 != lst_header->hash_size * 4)
25057836 5103 goto error_return;
3c37f9ca
JL
5104
5105 /* Seek to and read in the SOM dictionary. We will need this to fill
5106 in the carsym's filepos field. */
5107 if (bfd_seek (abfd, lst_filepos + lst_header->dir_loc, SEEK_SET) < 0)
25057836 5108 goto error_return;
3c37f9ca
JL
5109
5110 if (bfd_read ((PTR) som_dict, lst_header->module_count,
5111 sizeof (struct som_entry), abfd)
5112 != lst_header->module_count * sizeof (struct som_entry))
25057836 5113 goto error_return;
3c37f9ca
JL
5114
5115 /* Walk each chain filling in the carsyms as we go along. */
5116 for (i = 0; i < lst_header->hash_size; i++)
5117 {
5118 struct lst_symbol_record lst_symbol;
5119
5120 /* An empty chain has zero as it's file offset. */
5121 if (hash_table[i] == 0)
5122 continue;
5123
5124 /* Seek to and read the first symbol on the chain. */
5125 if (bfd_seek (abfd, lst_filepos + hash_table[i], SEEK_SET) < 0)
25057836 5126 goto error_return;
3c37f9ca
JL
5127
5128 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
5129 != sizeof (lst_symbol))
25057836 5130 goto error_return;
3c37f9ca
JL
5131
5132 /* Get the name of the symbol, first get the length which is stored
5133 as a 32bit integer just before the symbol.
5134
5135 One might ask why we don't just read in the entire string table
5136 and index into it. Well, according to the SOM ABI the string
5137 index can point *anywhere* in the archive to save space, so just
5138 using the string table would not be safe. */
5139 if (bfd_seek (abfd, lst_filepos + lst_header->string_loc
5140 + lst_symbol.name.n_strx - 4, SEEK_SET) < 0)
25057836 5141 goto error_return;
3c37f9ca
JL
5142
5143 if (bfd_read (&len, 1, 4, abfd) != 4)
25057836 5144 goto error_return;
3c37f9ca
JL
5145
5146 /* Allocate space for the name and null terminate it too. */
5147 set->name = bfd_zalloc (abfd, len + 1);
5148 if (!set->name)
a9713b91 5149 goto error_return;
3c37f9ca 5150 if (bfd_read (set->name, 1, len, abfd) != len)
25057836
JL
5151 goto error_return;
5152
3c37f9ca
JL
5153 set->name[len] = 0;
5154
5155 /* Fill in the file offset. Note that the "location" field points
5156 to the SOM itself, not the ar_hdr in front of it. */
5157 set->file_offset = som_dict[lst_symbol.som_index].location
5158 - sizeof (struct ar_hdr);
5159
5160 /* Go to the next symbol. */
5161 set++;
5162
5163 /* Iterate through the rest of the chain. */
5164 while (lst_symbol.next_entry)
5165 {
5166 /* Seek to the next symbol and read it in. */
25057836
JL
5167 if (bfd_seek (abfd, lst_filepos + lst_symbol.next_entry, SEEK_SET) <0)
5168 goto error_return;
3c37f9ca
JL
5169
5170 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
5171 != sizeof (lst_symbol))
25057836 5172 goto error_return;
3c37f9ca
JL
5173
5174 /* Seek to the name length & string and read them in. */
5175 if (bfd_seek (abfd, lst_filepos + lst_header->string_loc
5176 + lst_symbol.name.n_strx - 4, SEEK_SET) < 0)
25057836 5177 goto error_return;
3c37f9ca
JL
5178
5179 if (bfd_read (&len, 1, 4, abfd) != 4)
25057836 5180 goto error_return;
3c37f9ca
JL
5181
5182 /* Allocate space for the name and null terminate it too. */
5183 set->name = bfd_zalloc (abfd, len + 1);
5184 if (!set->name)
a9713b91 5185 goto error_return;
25057836 5186
3c37f9ca 5187 if (bfd_read (set->name, 1, len, abfd) != len)
25057836 5188 goto error_return;
3c37f9ca
JL
5189 set->name[len] = 0;
5190
5191 /* Fill in the file offset. Note that the "location" field points
5192 to the SOM itself, not the ar_hdr in front of it. */
5193 set->file_offset = som_dict[lst_symbol.som_index].location
5194 - sizeof (struct ar_hdr);
5195
5196 /* Go on to the next symbol. */
5197 set++;
5198 }
5199 }
5200 /* If we haven't died by now, then we successfully read the entire
5201 archive symbol table. */
80425e6c
JK
5202 if (hash_table != NULL)
5203 free (hash_table);
5204 if (som_dict != NULL)
5205 free (som_dict);
3c37f9ca 5206 return true;
80425e6c
JK
5207
5208 error_return:
5209 if (hash_table != NULL)
5210 free (hash_table);
5211 if (som_dict != NULL)
5212 free (som_dict);
5213 return false;
3c37f9ca
JL
5214}
5215
5216/* Read in the LST from the archive. */
5217static boolean
5218som_slurp_armap (abfd)
5219 bfd *abfd;
5220{
5221 struct lst_header lst_header;
5222 struct ar_hdr ar_header;
5223 unsigned int parsed_size;
5224 struct artdata *ardata = bfd_ardata (abfd);
5225 char nextname[17];
5226 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
5227
5228 /* Special cases. */
5229 if (i == 0)
5230 return true;
5231 if (i != 16)
5232 return false;
5233
5234 if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) < 0)
25057836 5235 return false;
3c37f9ca
JL
5236
5237 /* For archives without .o files there is no symbol table. */
5238 if (strncmp (nextname, "/ ", 16))
5239 {
5240 bfd_has_map (abfd) = false;
5241 return true;
5242 }
5243
5244 /* Read in and sanity check the archive header. */
5245 if (bfd_read ((PTR) &ar_header, 1, sizeof (struct ar_hdr), abfd)
5246 != sizeof (struct ar_hdr))
25057836 5247 return false;
3c37f9ca
JL
5248
5249 if (strncmp (ar_header.ar_fmag, ARFMAG, 2))
5250 {
d1ad85a6 5251 bfd_set_error (bfd_error_malformed_archive);
ec743cef 5252 return false;
3c37f9ca
JL
5253 }
5254
5255 /* How big is the archive symbol table entry? */
5256 errno = 0;
5257 parsed_size = strtol (ar_header.ar_size, NULL, 10);
5258 if (errno != 0)
5259 {
d1ad85a6 5260 bfd_set_error (bfd_error_malformed_archive);
ec743cef 5261 return false;
3c37f9ca
JL
5262 }
5263
5264 /* Save off the file offset of the first real user data. */
5265 ardata->first_file_filepos = bfd_tell (abfd) + parsed_size;
5266
5267 /* Read in the library symbol table. We'll make heavy use of this
5268 in just a minute. */
5269 if (bfd_read ((PTR) & lst_header, 1, sizeof (struct lst_header), abfd)
5270 != sizeof (struct lst_header))
25057836 5271 return false;
3c37f9ca
JL
5272
5273 /* Sanity check. */
5274 if (lst_header.a_magic != LIBMAGIC)
5275 {
d1ad85a6 5276 bfd_set_error (bfd_error_malformed_archive);
ec743cef 5277 return false;
3c37f9ca
JL
5278 }
5279
5280 /* Count the number of symbols in the library symbol table. */
5281 if (som_bfd_count_ar_symbols (abfd, &lst_header, &ardata->symdef_count)
5282 == false)
5283 return false;
5284
5285 /* Get back to the start of the library symbol table. */
5286 if (bfd_seek (abfd, ardata->first_file_filepos - parsed_size
5287 + sizeof (struct lst_header), SEEK_SET) < 0)
25057836 5288 return false;
3c37f9ca
JL
5289
5290 /* Initializae the cache and allocate space for the library symbols. */
5291 ardata->cache = 0;
5292 ardata->symdefs = (carsym *) bfd_alloc (abfd,
5293 (ardata->symdef_count
5294 * sizeof (carsym)));
5295 if (!ardata->symdefs)
a9713b91 5296 return false;
3c37f9ca
JL
5297
5298 /* Now fill in the canonical archive symbols. */
5299 if (som_bfd_fill_in_ar_symbols (abfd, &lst_header, &ardata->symdefs)
5300 == false)
5301 return false;
5302
3b499495
JL
5303 /* Seek back to the "first" file in the archive. Note the "first"
5304 file may be the extended name table. */
5305 if (bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET) < 0)
25057836 5306 return false;
3b499495 5307
3c37f9ca
JL
5308 /* Notify the generic archive code that we have a symbol map. */
5309 bfd_has_map (abfd) = true;
5310 return true;
5311}
5312
6e033f86
JL
5313/* Begin preparing to write a SOM library symbol table.
5314
5315 As part of the prep work we need to determine the number of symbols
5316 and the size of the associated string section. */
5317
5318static boolean
5319som_bfd_prep_for_ar_write (abfd, num_syms, stringsize)
5320 bfd *abfd;
5321 unsigned int *num_syms, *stringsize;
5322{
5323 bfd *curr_bfd = abfd->archive_head;
5324
5325 /* Some initialization. */
5326 *num_syms = 0;
5327 *stringsize = 0;
5328
5329 /* Iterate over each BFD within this archive. */
5330 while (curr_bfd != NULL)
5331 {
5332 unsigned int curr_count, i;
c6cdb69a 5333 som_symbol_type *sym;
6e033f86 5334
9d7f682f
JL
5335 /* Don't bother for non-SOM objects. */
5336 if (curr_bfd->format != bfd_object
5337 || curr_bfd->xvec->flavour != bfd_target_som_flavour)
5338 {
5339 curr_bfd = curr_bfd->next;
5340 continue;
5341 }
5342
6e033f86
JL
5343 /* Make sure the symbol table has been read, then snag a pointer
5344 to it. It's a little slimey to grab the symbols via obj_som_symtab,
5345 but doing so avoids allocating lots of extra memory. */
5346 if (som_slurp_symbol_table (curr_bfd) == false)
5347 return false;
5348
c6cdb69a 5349 sym = obj_som_symtab (curr_bfd);
6e033f86
JL
5350 curr_count = bfd_get_symcount (curr_bfd);
5351
5352 /* Examine each symbol to determine if it belongs in the
5353 library symbol table. */
5354 for (i = 0; i < curr_count; i++, sym++)
5355 {
5356 struct som_misc_symbol_info info;
5357
5358 /* Derive SOM information from the BFD symbol. */
c6cdb69a 5359 som_bfd_derive_misc_symbol_info (curr_bfd, &sym->symbol, &info);
6e033f86
JL
5360
5361 /* Should we include this symbol? */
5362 if (info.symbol_type == ST_NULL
5363 || info.symbol_type == ST_SYM_EXT
5364 || info.symbol_type == ST_ARG_EXT)
5365 continue;
5366
5367 /* Only global symbols and unsatisfied commons. */
5368 if (info.symbol_scope != SS_UNIVERSAL
5369 && info.symbol_type != ST_STORAGE)
5370 continue;
5371
5372 /* Do no include undefined symbols. */
fde543b5 5373 if (bfd_is_und_section (sym->symbol.section))
6e033f86
JL
5374 continue;
5375
5376 /* Bump the various counters, being careful to honor
5377 alignment considerations in the string table. */
5378 (*num_syms)++;
c6cdb69a 5379 *stringsize = *stringsize + strlen (sym->symbol.name) + 5;
6e033f86
JL
5380 while (*stringsize % 4)
5381 (*stringsize)++;
5382 }
5383
5384 curr_bfd = curr_bfd->next;
5385 }
5386 return true;
5387}
5388
5389/* Hash a symbol name based on the hashing algorithm presented in the
5390 SOM ABI. */
5391static unsigned int
5392som_bfd_ar_symbol_hash (symbol)
5393 asymbol *symbol;
5394{
5395 unsigned int len = strlen (symbol->name);
5396
5397 /* Names with length 1 are special. */
5398 if (len == 1)
5399 return 0x1000100 | (symbol->name[0] << 16) | symbol->name[0];
5400
5401 return ((len & 0x7f) << 24) | (symbol->name[1] << 16)
5402 | (symbol->name[len-2] << 8) | symbol->name[len-1];
5403}
5404
3b499495
JL
5405static CONST char *
5406normalize (file)
5407 CONST char *file;
5408{
5409 CONST char *filename = strrchr (file, '/');
5410
5411 if (filename != NULL)
5412 filename++;
5413 else
5414 filename = file;
5415 return filename;
5416}
5417
6e033f86
JL
5418/* Do the bulk of the work required to write the SOM library
5419 symbol table. */
5420
5421static boolean
5422som_bfd_ar_write_symbol_stuff (abfd, nsyms, string_size, lst)
5423 bfd *abfd;
5424 unsigned int nsyms, string_size;
5425 struct lst_header lst;
5426{
5427 file_ptr lst_filepos;
80425e6c
JK
5428 char *strings = NULL, *p;
5429 struct lst_symbol_record *lst_syms = NULL, *curr_lst_sym;
3b499495 5430 bfd *curr_bfd;
80425e6c
JK
5431 unsigned int *hash_table = NULL;
5432 struct som_entry *som_dict = NULL;
5433 struct lst_symbol_record **last_hash_entry = NULL;
3b499495
JL
5434 unsigned int curr_som_offset, som_index, extended_name_length = 0;
5435 unsigned int maxname = abfd->xvec->ar_max_namelen;
80425e6c
JK
5436
5437 hash_table =
5438 (unsigned int *) malloc (lst.hash_size * sizeof (unsigned int));
8eb5d4be 5439 if (hash_table == NULL && lst.hash_size != 0)
80425e6c
JK
5440 {
5441 bfd_set_error (bfd_error_no_memory);
5442 goto error_return;
5443 }
5444 som_dict =
5445 (struct som_entry *) malloc (lst.module_count
2ab0b7f3 5446 * sizeof (struct som_entry));
8eb5d4be 5447 if (som_dict == NULL && lst.module_count != 0)
80425e6c
JK
5448 {
5449 bfd_set_error (bfd_error_no_memory);
5450 goto error_return;
5451 }
5452
5453 last_hash_entry =
2ab0b7f3 5454 ((struct lst_symbol_record **)
80425e6c 5455 malloc (lst.hash_size * sizeof (struct lst_symbol_record *)));
8eb5d4be 5456 if (last_hash_entry == NULL && lst.hash_size != 0)
80425e6c
JK
5457 {
5458 bfd_set_error (bfd_error_no_memory);
5459 goto error_return;
5460 }
6e033f86
JL
5461
5462 /* Lots of fields are file positions relative to the start
5463 of the lst record. So save its location. */
5464 lst_filepos = bfd_tell (abfd) - sizeof (struct lst_header);
5465
5466 /* Some initialization. */
5467 memset (hash_table, 0, 4 * lst.hash_size);
5468 memset (som_dict, 0, lst.module_count * sizeof (struct som_entry));
5469 memset (last_hash_entry, 0,
5470 lst.hash_size * sizeof (struct lst_symbol_record *));
5471
5472 /* Symbols have som_index fields, so we have to keep track of the
5473 index of each SOM in the archive.
5474
5475 The SOM dictionary has (among other things) the absolute file
5476 position for the SOM which a particular dictionary entry
5477 describes. We have to compute that information as we iterate
5478 through the SOMs/symbols. */
5479 som_index = 0;
5480 curr_som_offset = 8 + 2 * sizeof (struct ar_hdr) + lst.file_end;
5481
3b499495
JL
5482 /* Yow! We have to know the size of the extended name table
5483 too. */
5484 for (curr_bfd = abfd->archive_head;
5485 curr_bfd != NULL;
5486 curr_bfd = curr_bfd->next)
5487 {
5488 CONST char *normal = normalize (curr_bfd->filename);
5489 unsigned int thislen;
5490
5491 if (!normal)
a9713b91 5492 return false;
3b499495
JL
5493 thislen = strlen (normal);
5494 if (thislen > maxname)
5495 extended_name_length += thislen + 1;
5496 }
5497
5498 /* Make room for the archive header and the contents of the
5499 extended string table. */
5500 if (extended_name_length)
5501 curr_som_offset += extended_name_length + sizeof (struct ar_hdr);
5502
5503 /* Make sure we're properly aligned. */
5504 curr_som_offset = (curr_som_offset + 0x1) & ~0x1;
5505
6e033f86 5506 /* FIXME should be done with buffers just like everything else... */
80425e6c 5507 lst_syms = malloc (nsyms * sizeof (struct lst_symbol_record));
8eb5d4be 5508 if (lst_syms == NULL && nsyms != 0)
80425e6c
JK
5509 {
5510 bfd_set_error (bfd_error_no_memory);
5511 goto error_return;
5512 }
5513 strings = malloc (string_size);
8eb5d4be 5514 if (strings == NULL && string_size != 0)
80425e6c
JK
5515 {
5516 bfd_set_error (bfd_error_no_memory);
5517 goto error_return;
5518 }
5519
6e033f86
JL
5520 p = strings;
5521 curr_lst_sym = lst_syms;
5522
3b499495 5523 curr_bfd = abfd->archive_head;
6e033f86
JL
5524 while (curr_bfd != NULL)
5525 {
5526 unsigned int curr_count, i;
c6cdb69a 5527 som_symbol_type *sym;
6e033f86 5528
9d7f682f
JL
5529 /* Don't bother for non-SOM objects. */
5530 if (curr_bfd->format != bfd_object
5531 || curr_bfd->xvec->flavour != bfd_target_som_flavour)
5532 {
5533 curr_bfd = curr_bfd->next;
5534 continue;
5535 }
5536
6e033f86
JL
5537 /* Make sure the symbol table has been read, then snag a pointer
5538 to it. It's a little slimey to grab the symbols via obj_som_symtab,
5539 but doing so avoids allocating lots of extra memory. */
5540 if (som_slurp_symbol_table (curr_bfd) == false)
80425e6c 5541 goto error_return;
6e033f86 5542
c6cdb69a 5543 sym = obj_som_symtab (curr_bfd);
6e033f86
JL
5544 curr_count = bfd_get_symcount (curr_bfd);
5545
5546 for (i = 0; i < curr_count; i++, sym++)
5547 {
5548 struct som_misc_symbol_info info;
5549
5550 /* Derive SOM information from the BFD symbol. */
c6cdb69a 5551 som_bfd_derive_misc_symbol_info (curr_bfd, &sym->symbol, &info);
6e033f86
JL
5552
5553 /* Should we include this symbol? */
5554 if (info.symbol_type == ST_NULL
5555 || info.symbol_type == ST_SYM_EXT
5556 || info.symbol_type == ST_ARG_EXT)
5557 continue;
5558
5559 /* Only global symbols and unsatisfied commons. */
5560 if (info.symbol_scope != SS_UNIVERSAL
5561 && info.symbol_type != ST_STORAGE)
5562 continue;
5563
5564 /* Do no include undefined symbols. */
fde543b5 5565 if (bfd_is_und_section (sym->symbol.section))
6e033f86
JL
5566 continue;
5567
5568 /* If this is the first symbol from this SOM, then update
5569 the SOM dictionary too. */
5570 if (som_dict[som_index].location == 0)
5571 {
5572 som_dict[som_index].location = curr_som_offset;
5573 som_dict[som_index].length = arelt_size (curr_bfd);
5574 }
5575
5576 /* Fill in the lst symbol record. */
5577 curr_lst_sym->hidden = 0;
5578 curr_lst_sym->secondary_def = 0;
5579 curr_lst_sym->symbol_type = info.symbol_type;
5580 curr_lst_sym->symbol_scope = info.symbol_scope;
5581 curr_lst_sym->check_level = 0;
5582 curr_lst_sym->must_qualify = 0;
5583 curr_lst_sym->initially_frozen = 0;
5584 curr_lst_sym->memory_resident = 0;
fde543b5 5585 curr_lst_sym->is_common = bfd_is_com_section (sym->symbol.section);
6e033f86
JL
5586 curr_lst_sym->dup_common = 0;
5587 curr_lst_sym->xleast = 0;
5588 curr_lst_sym->arg_reloc = info.arg_reloc;
5589 curr_lst_sym->name.n_strx = p - strings + 4;
5590 curr_lst_sym->qualifier_name.n_strx = 0;
5591 curr_lst_sym->symbol_info = info.symbol_info;
5592 curr_lst_sym->symbol_value = info.symbol_value;
5593 curr_lst_sym->symbol_descriptor = 0;
5594 curr_lst_sym->reserved = 0;
5595 curr_lst_sym->som_index = som_index;
c6cdb69a 5596 curr_lst_sym->symbol_key = som_bfd_ar_symbol_hash (&sym->symbol);
6e033f86
JL
5597 curr_lst_sym->next_entry = 0;
5598
5599 /* Insert into the hash table. */
5600 if (hash_table[curr_lst_sym->symbol_key % lst.hash_size])
5601 {
5602 struct lst_symbol_record *tmp;
5603
5604 /* There is already something at the head of this hash chain,
5605 so tack this symbol onto the end of the chain. */
5606 tmp = last_hash_entry[curr_lst_sym->symbol_key % lst.hash_size];
5607 tmp->next_entry
5608 = (curr_lst_sym - lst_syms) * sizeof (struct lst_symbol_record)
5609 + lst.hash_size * 4
5610 + lst.module_count * sizeof (struct som_entry)
5611 + sizeof (struct lst_header);
5612 }
5613 else
5614 {
5615 /* First entry in this hash chain. */
5616 hash_table[curr_lst_sym->symbol_key % lst.hash_size]
5617 = (curr_lst_sym - lst_syms) * sizeof (struct lst_symbol_record)
5618 + lst.hash_size * 4
5619 + lst.module_count * sizeof (struct som_entry)
5620 + sizeof (struct lst_header);
5621 }
5622
5623 /* Keep track of the last symbol we added to this chain so we can
5624 easily update its next_entry pointer. */
5625 last_hash_entry[curr_lst_sym->symbol_key % lst.hash_size]
5626 = curr_lst_sym;
5627
5628
5629 /* Update the string table. */
c6cdb69a 5630 bfd_put_32 (abfd, strlen (sym->symbol.name), p);
6e033f86 5631 p += 4;
c6cdb69a
JL
5632 strcpy (p, sym->symbol.name);
5633 p += strlen (sym->symbol.name) + 1;
6e033f86
JL
5634 while ((int)p % 4)
5635 {
5636 bfd_put_8 (abfd, 0, p);
5637 p++;
5638 }
5639
5640 /* Head to the next symbol. */
5641 curr_lst_sym++;
5642 }
5643
5644 /* Keep track of where each SOM will finally reside; then look
5645 at the next BFD. */
5646 curr_som_offset += arelt_size (curr_bfd) + sizeof (struct ar_hdr);
0f4161dd
JL
5647
5648 /* A particular object in the archive may have an odd length; the
5649 linker requires objects begin on an even boundary. So round
5650 up the current offset as necessary. */
5651 curr_som_offset = (curr_som_offset + 0x1) & ~0x1;
6e033f86
JL
5652 curr_bfd = curr_bfd->next;
5653 som_index++;
5654 }
5655
5656 /* Now scribble out the hash table. */
5657 if (bfd_write ((PTR) hash_table, lst.hash_size, 4, abfd)
5658 != lst.hash_size * 4)
25057836 5659 goto error_return;
6e033f86
JL
5660
5661 /* Then the SOM dictionary. */
5662 if (bfd_write ((PTR) som_dict, lst.module_count,
5663 sizeof (struct som_entry), abfd)
5664 != lst.module_count * sizeof (struct som_entry))
25057836 5665 goto error_return;
6e033f86
JL
5666
5667 /* The library symbols. */
5668 if (bfd_write ((PTR) lst_syms, nsyms, sizeof (struct lst_symbol_record), abfd)
5669 != nsyms * sizeof (struct lst_symbol_record))
25057836 5670 goto error_return;
6e033f86
JL
5671
5672 /* And finally the strings. */
5673 if (bfd_write ((PTR) strings, string_size, 1, abfd) != string_size)
25057836 5674 goto error_return;
6e033f86 5675
80425e6c
JK
5676 if (hash_table != NULL)
5677 free (hash_table);
5678 if (som_dict != NULL)
5679 free (som_dict);
5680 if (last_hash_entry != NULL)
5681 free (last_hash_entry);
5682 if (lst_syms != NULL)
5683 free (lst_syms);
5684 if (strings != NULL)
5685 free (strings);
6e033f86 5686 return true;
80425e6c
JK
5687
5688 error_return:
5689 if (hash_table != NULL)
5690 free (hash_table);
5691 if (som_dict != NULL)
5692 free (som_dict);
5693 if (last_hash_entry != NULL)
5694 free (last_hash_entry);
5695 if (lst_syms != NULL)
5696 free (lst_syms);
5697 if (strings != NULL)
5698 free (strings);
5699
5700 return false;
6e033f86
JL
5701}
5702
5faa346b
JL
5703/* SOM almost uses the SVR4 style extended name support, but not
5704 quite. */
5705
5706static boolean
5707som_construct_extended_name_table (abfd, tabloc, tablen, name)
5708 bfd *abfd;
5709 char **tabloc;
5710 bfd_size_type *tablen;
5711 const char **name;
5712{
5713 *name = "//";
5714 return _bfd_construct_extended_name_table (abfd, false, tabloc, tablen);
5715}
5716
6e033f86
JL
5717/* Write out the LST for the archive.
5718
5719 You'll never believe this is really how armaps are handled in SOM... */
5720
82492ca1 5721/*ARGSUSED*/
3c37f9ca 5722static boolean
82492ca1 5723som_write_armap (abfd, elength, map, orl_count, stridx)
3c37f9ca 5724 bfd *abfd;
82492ca1
ILT
5725 unsigned int elength;
5726 struct orl *map;
5727 unsigned int orl_count;
5728 int stridx;
3c37f9ca 5729{
6e033f86
JL
5730 bfd *curr_bfd;
5731 struct stat statbuf;
5732 unsigned int i, lst_size, nsyms, stringsize;
5733 struct ar_hdr hdr;
5734 struct lst_header lst;
5735 int *p;
5736
5737 /* We'll use this for the archive's date and mode later. */
5738 if (stat (abfd->filename, &statbuf) != 0)
5739 {
d1ad85a6 5740 bfd_set_error (bfd_error_system_call);
6e033f86
JL
5741 return false;
5742 }
5743 /* Fudge factor. */
5744 bfd_ardata (abfd)->armap_timestamp = statbuf.st_mtime + 60;
5745
5746 /* Account for the lst header first. */
5747 lst_size = sizeof (struct lst_header);
5748
5749 /* Start building the LST header. */
0f4161dd
JL
5750 /* FIXME: Do we need to examine each element to determine the
5751 largest id number? */
8117e1ea 5752 lst.system_id = CPU_PA_RISC1_0;
6e033f86
JL
5753 lst.a_magic = LIBMAGIC;
5754 lst.version_id = VERSION_ID;
5755 lst.file_time.secs = 0;
5756 lst.file_time.nanosecs = 0;
5757
5758 lst.hash_loc = lst_size;
5759 lst.hash_size = SOM_LST_HASH_SIZE;
5760
5761 /* Hash table is a SOM_LST_HASH_SIZE 32bit offsets. */
5762 lst_size += 4 * SOM_LST_HASH_SIZE;
5763
5764 /* We need to count the number of SOMs in this archive. */
5765 curr_bfd = abfd->archive_head;
5766 lst.module_count = 0;
5767 while (curr_bfd != NULL)
5768 {
9d7f682f
JL
5769 /* Only true SOM objects count. */
5770 if (curr_bfd->format == bfd_object
5771 && curr_bfd->xvec->flavour == bfd_target_som_flavour)
5772 lst.module_count++;
6e033f86
JL
5773 curr_bfd = curr_bfd->next;
5774 }
5775 lst.module_limit = lst.module_count;
5776 lst.dir_loc = lst_size;
5777 lst_size += sizeof (struct som_entry) * lst.module_count;
5778
5779 /* We don't support import/export tables, auxiliary headers,
5780 or free lists yet. Make the linker work a little harder
5781 to make our life easier. */
5782
5783 lst.export_loc = 0;
5784 lst.export_count = 0;
5785 lst.import_loc = 0;
5786 lst.aux_loc = 0;
5787 lst.aux_size = 0;
5788
5789 /* Count how many symbols we will have on the hash chains and the
5790 size of the associated string table. */
5791 if (som_bfd_prep_for_ar_write (abfd, &nsyms, &stringsize) == false)
5792 return false;
5793
5794 lst_size += sizeof (struct lst_symbol_record) * nsyms;
5795
5796 /* For the string table. One day we might actually use this info
5797 to avoid small seeks/reads when reading archives. */
5798 lst.string_loc = lst_size;
5799 lst.string_size = stringsize;
5800 lst_size += stringsize;
5801
5802 /* SOM ABI says this must be zero. */
5803 lst.free_list = 0;
6e033f86
JL
5804 lst.file_end = lst_size;
5805
5806 /* Compute the checksum. Must happen after the entire lst header
5807 has filled in. */
5808 p = (int *)&lst;
3b499495 5809 lst.checksum = 0;
6e033f86
JL
5810 for (i = 0; i < sizeof (struct lst_header)/sizeof (int) - 1; i++)
5811 lst.checksum ^= *p++;
5812
5813 sprintf (hdr.ar_name, "/ ");
5814 sprintf (hdr.ar_date, "%ld", bfd_ardata (abfd)->armap_timestamp);
82492ca1
ILT
5815 sprintf (hdr.ar_uid, "%ld", (long) getuid ());
5816 sprintf (hdr.ar_gid, "%ld", (long) getgid ());
6e033f86
JL
5817 sprintf (hdr.ar_mode, "%-8o", (unsigned int) statbuf.st_mode);
5818 sprintf (hdr.ar_size, "%-10d", (int) lst_size);
5819 hdr.ar_fmag[0] = '`';
5820 hdr.ar_fmag[1] = '\012';
5821
5822 /* Turn any nulls into spaces. */
5823 for (i = 0; i < sizeof (struct ar_hdr); i++)
5824 if (((char *) (&hdr))[i] == '\0')
5825 (((char *) (&hdr))[i]) = ' ';
5826
5827 /* Scribble out the ar header. */
5828 if (bfd_write ((PTR) &hdr, 1, sizeof (struct ar_hdr), abfd)
5829 != sizeof (struct ar_hdr))
25057836 5830 return false;
6e033f86
JL
5831
5832 /* Now scribble out the lst header. */
5833 if (bfd_write ((PTR) &lst, 1, sizeof (struct lst_header), abfd)
5834 != sizeof (struct lst_header))
25057836 5835 return false;
6e033f86
JL
5836
5837 /* Build and write the armap. */
5838 if (som_bfd_ar_write_symbol_stuff (abfd, nsyms, stringsize, lst) == false)
5839 return false;
5840
5841 /* Done. */
5842 return true;
3c37f9ca
JL
5843}
5844
1f46bba3
JL
5845/* Free all information we have cached for this BFD. We can always
5846 read it again later if we need it. */
5847
5848static boolean
5849som_bfd_free_cached_info (abfd)
5850 bfd *abfd;
5851{
5852 asection *o;
5853
b2452d39
JL
5854 if (bfd_get_format (abfd) != bfd_object)
5855 return true;
5856
1f46bba3
JL
5857#define FREE(x) if (x != NULL) { free (x); x = NULL; }
5858 /* Free the native string and symbol tables. */
5859 FREE (obj_som_symtab (abfd));
5860 FREE (obj_som_stringtab (abfd));
5861 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
5862 {
5863 /* Free the native relocations. */
5864 o->reloc_count = -1;
5865 FREE (som_section_data (o)->reloc_stream);
5866 /* Free the generic relocations. */
5867 FREE (o->relocation);
5868 }
5869#undef FREE
5870
5871 return true;
5872}
5873
d9ad93bc
KR
5874/* End of miscellaneous support functions. */
5875
c40439a2
JL
5876/* Linker support functions. */
5877static boolean
5878som_bfd_link_split_section (abfd, sec)
5879 bfd *abfd;
5880 asection *sec;
5881{
5882 return (som_is_subspace (sec) && sec->_raw_size > 240000);
5883}
5884
6812b607 5885#define som_close_and_cleanup som_bfd_free_cached_info
d9ad93bc 5886
9d14250f 5887#define som_read_ar_hdr _bfd_generic_read_ar_hdr
3c37f9ca
JL
5888#define som_openr_next_archived_file bfd_generic_openr_next_archived_file
5889#define som_generic_stat_arch_elt bfd_generic_stat_arch_elt
5890#define som_truncate_arname bfd_bsd_truncate_arname
3b499495 5891#define som_slurp_extended_name_table _bfd_slurp_extended_name_table
b905bde1 5892#define som_update_armap_timestamp bfd_true
a5655244 5893#define som_bfd_print_private_bfd_data _bfd_generic_bfd_print_private_bfd_data
d9ad93bc 5894
6812b607
ILT
5895#define som_get_lineno _bfd_nosymbols_get_lineno
5896#define som_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
c3246d9b
ILT
5897#define som_read_minisymbols _bfd_generic_read_minisymbols
5898#define som_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
a9713b91
ILT
5899#define som_get_section_contents_in_window \
5900 _bfd_generic_get_section_contents_in_window
d9ad93bc 5901
9e16fcf1 5902#define som_bfd_get_relocated_section_contents \
d9ad93bc 5903 bfd_generic_get_relocated_section_contents
9e16fcf1 5904#define som_bfd_relax_section bfd_generic_relax_section
39961154
JL
5905#define som_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
5906#define som_bfd_link_add_symbols _bfd_generic_link_add_symbols
5907#define som_bfd_final_link _bfd_generic_final_link
d9ad93bc 5908
a9713b91 5909
2f3508ad 5910const bfd_target som_vec =
d9ad93bc 5911{
9e16fcf1
SG
5912 "som", /* name */
5913 bfd_target_som_flavour,
d9ad93bc
KR
5914 true, /* target byte order */
5915 true, /* target headers byte order */
5916 (HAS_RELOC | EXEC_P | /* object flags */
5917 HAS_LINENO | HAS_DEBUG |
65b1ef49 5918 HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED | DYNAMIC),
d9ad93bc 5919 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
9e16fcf1 5920 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
d9ad93bc
KR
5921
5922/* leading_symbol_char: is the first char of a user symbol
9e16fcf1 5923 predictable, and if so what is it */
d9ad93bc 5924 0,
6e033f86 5925 '/', /* ar_pad_char */
3b499495 5926 14, /* ar_max_namelen */
9e16fcf1
SG
5927 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
5928 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
5929 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* data */
5930 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
5931 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
5932 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */
d9ad93bc 5933 {_bfd_dummy_target,
9e16fcf1 5934 som_object_p, /* bfd_check_format */
d9ad93bc
KR
5935 bfd_generic_archive_p,
5936 _bfd_dummy_target
5937 },
5938 {
5939 bfd_false,
9e16fcf1 5940 som_mkobject,
d9ad93bc
KR
5941 _bfd_generic_mkarchive,
5942 bfd_false
5943 },
5944 {
5945 bfd_false,
9e16fcf1 5946 som_write_object_contents,
d9ad93bc
KR
5947 _bfd_write_archive_contents,
5948 bfd_false,
5949 },
9e16fcf1 5950#undef som
6812b607
ILT
5951
5952 BFD_JUMP_TABLE_GENERIC (som),
5953 BFD_JUMP_TABLE_COPY (som),
5954 BFD_JUMP_TABLE_CORE (_bfd_nocore),
5955 BFD_JUMP_TABLE_ARCHIVE (som),
5956 BFD_JUMP_TABLE_SYMBOLS (som),
5957 BFD_JUMP_TABLE_RELOCS (som),
5958 BFD_JUMP_TABLE_WRITE (som),
5959 BFD_JUMP_TABLE_LINK (som),
dfc1c006 5960 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
6812b607 5961
d9ad93bc
KR
5962 (PTR) 0
5963};
5964
6941fd4d 5965#endif /* HOST_HPPAHPUX || HOST_HPPABSD || HOST_HPPAOSF */
This page took 0.414138 seconds and 4 git commands to generate.