1 /* bfd back-end for HP PA-RISC SOM objects.
2 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995
3 Free Software Foundation, Inc.
5 Contributed by the Center for Software Science at the
8 This file is part of BFD, the Binary File Descriptor library.
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.
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.
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
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
27 #if defined (HOST_HPPAHPUX) || defined (HOST_HPPABSD) || defined (HOST_HPPAOSF)
33 #include <sys/types.h>
34 #include <sys/param.h>
36 #include <machine/reg.h>
40 /* Magic not defined in standard HP-UX header files until 8.0 */
42 #ifndef CPU_PA_RISC1_0
43 #define CPU_PA_RISC1_0 0x20B
44 #endif /* CPU_PA_RISC1_0 */
46 #ifndef CPU_PA_RISC1_1
47 #define CPU_PA_RISC1_1 0x210
48 #endif /* CPU_PA_RISC1_1 */
50 #ifndef _PA_RISC1_0_ID
51 #define _PA_RISC1_0_ID CPU_PA_RISC1_0
52 #endif /* _PA_RISC1_0_ID */
54 #ifndef _PA_RISC1_1_ID
55 #define _PA_RISC1_1_ID CPU_PA_RISC1_1
56 #endif /* _PA_RISC1_1_ID */
58 #ifndef _PA_RISC_MAXID
59 #define _PA_RISC_MAXID 0x2FF
60 #endif /* _PA_RISC_MAXID */
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 */
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. */
73 #define EXEC_AUX_ID HPUX_AUX_ID
76 #if !defined (EXEC_AUX_ID) && defined (HIUX_AUX_ID)
77 #define EXEC_AUX_ID HIUX_AUX_ID
84 /* Size (in chars) of the temporary buffers used during fixup and string
87 #define SOM_TMP_BUFSIZE 8192
89 /* Size of the hash table in archives. */
90 #define SOM_LST_HASH_SIZE 31
92 /* Max number of SOMs to be found in an archive. */
93 #define SOM_LST_MODULE_LIMIT 1024
95 /* Generic alignment macro. */
96 #define SOM_ALIGN(val, alignment) \
97 (((val) + (alignment) - 1) & ~((alignment) - 1))
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.
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. */
108 unsigned char *reloc;
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). */
118 SYMBOL_TYPE_ABSOLUTE,
122 SYMBOL_TYPE_MILLICODE,
124 SYMBOL_TYPE_PRI_PROG,
125 SYMBOL_TYPE_SEC_PROG,
128 struct section_to_type
134 /* Assorted symbol information that needs to be derived from the BFD symbol
135 and/or the BFD backend private symbol data. */
136 struct som_misc_symbol_info
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;
145 /* Forward declarations */
147 static boolean som_mkobject PARAMS ((bfd *));
148 static const bfd_target * som_object_setup PARAMS ((bfd *,
150 struct som_exec_auxhdr *));
151 static boolean setup_sections PARAMS ((bfd *, struct header *));
152 static const bfd_target * som_object_p PARAMS ((bfd *));
153 static boolean som_write_object_contents PARAMS ((bfd *));
154 static boolean som_slurp_string_table PARAMS ((bfd *));
155 static unsigned int som_slurp_symbol_table PARAMS ((bfd *));
156 static long som_get_symtab_upper_bound PARAMS ((bfd *));
157 static long som_canonicalize_reloc PARAMS ((bfd *, sec_ptr,
158 arelent **, asymbol **));
159 static long som_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr));
160 static unsigned int som_set_reloc_info PARAMS ((unsigned char *, unsigned int,
161 arelent *, asection *,
162 asymbol **, boolean));
163 static boolean som_slurp_reloc_table PARAMS ((bfd *, asection *,
164 asymbol **, boolean));
165 static long som_get_symtab PARAMS ((bfd *, asymbol **));
166 static asymbol * som_make_empty_symbol PARAMS ((bfd *));
167 static void som_print_symbol PARAMS ((bfd *, PTR,
168 asymbol *, bfd_print_symbol_type));
169 static boolean som_new_section_hook PARAMS ((bfd *, asection *));
170 static boolean som_bfd_copy_private_section_data PARAMS ((bfd *, asection *,
172 static boolean som_bfd_copy_private_bfd_data PARAMS ((bfd *, bfd *));
173 static boolean som_bfd_is_local_label PARAMS ((bfd *, asymbol *));
174 static boolean som_set_section_contents PARAMS ((bfd *, sec_ptr, PTR,
175 file_ptr, bfd_size_type));
176 static boolean som_get_section_contents PARAMS ((bfd *, sec_ptr, PTR,
177 file_ptr, bfd_size_type));
178 static boolean som_set_arch_mach PARAMS ((bfd *, enum bfd_architecture,
180 static boolean som_find_nearest_line PARAMS ((bfd *, asection *,
185 static void som_get_symbol_info PARAMS ((bfd *, asymbol *, symbol_info *));
186 static asection * bfd_section_from_som_symbol PARAMS ((bfd *,
187 struct symbol_dictionary_record *));
188 static int log2 PARAMS ((unsigned int));
189 static bfd_reloc_status_type hppa_som_reloc PARAMS ((bfd *, arelent *,
193 static void som_initialize_reloc_queue PARAMS ((struct reloc_queue *));
194 static void som_reloc_queue_insert PARAMS ((unsigned char *, unsigned int,
195 struct reloc_queue *));
196 static void som_reloc_queue_fix PARAMS ((struct reloc_queue *, unsigned int));
197 static int som_reloc_queue_find PARAMS ((unsigned char *, unsigned int,
198 struct reloc_queue *));
199 static unsigned char * try_prev_fixup PARAMS ((bfd *, int *, unsigned char *,
201 struct reloc_queue *));
203 static unsigned char * som_reloc_skip PARAMS ((bfd *, unsigned int,
204 unsigned char *, unsigned int *,
205 struct reloc_queue *));
206 static unsigned char * som_reloc_addend PARAMS ((bfd *, int, unsigned char *,
208 struct reloc_queue *));
209 static unsigned char * som_reloc_call PARAMS ((bfd *, unsigned char *,
212 struct reloc_queue *));
213 static unsigned long som_count_spaces PARAMS ((bfd *));
214 static unsigned long som_count_subspaces PARAMS ((bfd *));
215 static int compare_syms PARAMS ((const void *, const void *));
216 static int compare_subspaces PARAMS ((const void *, const void *));
217 static unsigned long som_compute_checksum PARAMS ((bfd *));
218 static boolean som_prep_headers PARAMS ((bfd *));
219 static int som_sizeof_headers PARAMS ((bfd *, boolean));
220 static boolean som_finish_writing PARAMS ((bfd *));
221 static boolean som_build_and_write_symbol_table PARAMS ((bfd *));
222 static void som_prep_for_fixups PARAMS ((bfd *, asymbol **, unsigned long));
223 static boolean som_write_fixups PARAMS ((bfd *, unsigned long, unsigned int *));
224 static boolean som_write_space_strings PARAMS ((bfd *, unsigned long,
226 static boolean som_write_symbol_strings PARAMS ((bfd *, unsigned long,
227 asymbol **, unsigned int,
229 static boolean som_begin_writing PARAMS ((bfd *));
230 static reloc_howto_type * som_bfd_reloc_type_lookup
231 PARAMS ((bfd *, bfd_reloc_code_real_type));
232 static char som_section_type PARAMS ((const char *));
233 static int som_decode_symclass PARAMS ((asymbol *));
234 static boolean som_bfd_count_ar_symbols PARAMS ((bfd *, struct lst_header *,
237 static boolean som_bfd_fill_in_ar_symbols PARAMS ((bfd *, struct lst_header *,
239 static boolean som_slurp_armap PARAMS ((bfd *));
240 static boolean som_write_armap PARAMS ((bfd *, unsigned int, struct orl *,
242 static void som_bfd_derive_misc_symbol_info PARAMS ((bfd *, asymbol *,
243 struct som_misc_symbol_info *));
244 static boolean som_bfd_prep_for_ar_write PARAMS ((bfd *, unsigned int *,
246 static unsigned int som_bfd_ar_symbol_hash PARAMS ((asymbol *));
247 static boolean som_bfd_ar_write_symbol_stuff PARAMS ((bfd *, unsigned int,
250 static CONST char *normalize PARAMS ((CONST char *file));
251 static boolean som_is_space PARAMS ((asection *));
252 static boolean som_is_subspace PARAMS ((asection *));
253 static boolean som_is_container PARAMS ((asection *, asection *));
254 static boolean som_bfd_free_cached_info PARAMS ((bfd *));
256 /* Map SOM section names to POSIX/BSD single-character symbol types.
258 This table includes all the standard subspaces as defined in the
259 current "PRO ABI for PA-RISC Systems", $UNWIND$ which for
260 some reason was left out, and sections specific to embedded stabs. */
262 static const struct section_to_type stt[] = {
264 {"$SHLIB_INFO$", 't'},
265 {"$MILLICODE$", 't'},
268 {"$UNWIND_START$", 't'},
272 {"$SHLIB_DATA$", 'd'},
274 {"$SHORTDATA$", 'g'},
279 {"$GDB_STRINGS$", 'N'},
280 {"$GDB_SYMBOLS$", 'N'},
284 /* About the relocation formatting table...
286 There are 256 entries in the table, one for each possible
287 relocation opcode available in SOM. We index the table by
288 the relocation opcode. The names and operations are those
289 defined by a.out_800 (4).
291 Right now this table is only used to count and perform minimal
292 processing on relocation streams so that they can be internalized
293 into BFD and symbolically printed by utilities. To make actual use
294 of them would be much more difficult, BFD's concept of relocations
295 is far too simple to handle SOM relocations. The basic assumption
296 that a relocation can be completely processed independent of other
297 relocations before an object file is written is invalid for SOM.
299 The SOM relocations are meant to be processed as a stream, they
300 specify copying of data from the input section to the output section
301 while possibly modifying the data in some manner. They also can
302 specify that a variable number of zeros or uninitialized data be
303 inserted on in the output segment at the current offset. Some
304 relocations specify that some previous relocation be re-applied at
305 the current location in the input/output sections. And finally a number
306 of relocations have effects on other sections (R_ENTRY, R_EXIT,
307 R_UNWIND_AUX and a variety of others). There isn't even enough room
308 in the BFD relocation data structure to store enough information to
309 perform all the relocations.
311 Each entry in the table has three fields.
313 The first entry is an index into this "class" of relocations. This
314 index can then be used as a variable within the relocation itself.
316 The second field is a format string which actually controls processing
317 of the relocation. It uses a simple postfix machine to do calculations
318 based on variables/constants found in the string and the relocation
321 The third field specifys whether or not this relocation may use
322 a constant (V) from the previous R_DATA_OVERRIDE rather than a constant
323 stored in the instruction.
327 L = input space byte count
328 D = index into class of relocations
329 M = output space byte count
330 N = statement number (unused?)
332 R = parameter relocation bits
334 T = first 32 bits of stack unwind information
335 U = second 32 bits of stack unwind information
336 V = a literal constant (usually used in the next relocation)
337 P = a previous relocation
339 Lower case letters (starting with 'b') refer to following
340 bytes in the relocation stream. 'b' is the next 1 byte,
341 c is the next 2 bytes, d is the next 3 bytes, etc...
342 This is the variable part of the relocation entries that
343 makes our life a living hell.
345 numerical constants are also used in the format string. Note
346 the constants are represented in decimal.
348 '+', "*" and "=" represents the obvious postfix operators.
349 '<' represents a left shift.
353 Parameter Relocation Bits:
357 Previous Relocations: The index field represents which in the queue
358 of 4 previous fixups should be re-applied.
360 Literal Constants: These are generally used to represent addend
361 parts of relocations when these constants are not stored in the
362 fields of the instructions themselves. For example the instruction
363 addil foo-$global$-0x1234 would use an override for "0x1234" rather
364 than storing it into the addil itself. */
372 static const struct fixup_format som_fixup_formats[256] =
374 /* R_NO_RELOCATION */
375 0, "LD1+4*=", /* 0x00 */
376 1, "LD1+4*=", /* 0x01 */
377 2, "LD1+4*=", /* 0x02 */
378 3, "LD1+4*=", /* 0x03 */
379 4, "LD1+4*=", /* 0x04 */
380 5, "LD1+4*=", /* 0x05 */
381 6, "LD1+4*=", /* 0x06 */
382 7, "LD1+4*=", /* 0x07 */
383 8, "LD1+4*=", /* 0x08 */
384 9, "LD1+4*=", /* 0x09 */
385 10, "LD1+4*=", /* 0x0a */
386 11, "LD1+4*=", /* 0x0b */
387 12, "LD1+4*=", /* 0x0c */
388 13, "LD1+4*=", /* 0x0d */
389 14, "LD1+4*=", /* 0x0e */
390 15, "LD1+4*=", /* 0x0f */
391 16, "LD1+4*=", /* 0x10 */
392 17, "LD1+4*=", /* 0x11 */
393 18, "LD1+4*=", /* 0x12 */
394 19, "LD1+4*=", /* 0x13 */
395 20, "LD1+4*=", /* 0x14 */
396 21, "LD1+4*=", /* 0x15 */
397 22, "LD1+4*=", /* 0x16 */
398 23, "LD1+4*=", /* 0x17 */
399 0, "LD8<b+1+4*=", /* 0x18 */
400 1, "LD8<b+1+4*=", /* 0x19 */
401 2, "LD8<b+1+4*=", /* 0x1a */
402 3, "LD8<b+1+4*=", /* 0x1b */
403 0, "LD16<c+1+4*=", /* 0x1c */
404 1, "LD16<c+1+4*=", /* 0x1d */
405 2, "LD16<c+1+4*=", /* 0x1e */
406 0, "Ld1+=", /* 0x1f */
408 0, "Lb1+4*=", /* 0x20 */
409 1, "Ld1+=", /* 0x21 */
411 0, "Lb1+4*=", /* 0x22 */
412 1, "Ld1+=", /* 0x23 */
415 /* R_DATA_ONE_SYMBOL */
416 0, "L4=Sb=", /* 0x25 */
417 1, "L4=Sd=", /* 0x26 */
419 0, "L4=Sb=", /* 0x27 */
420 1, "L4=Sd=", /* 0x28 */
423 /* R_REPEATED_INIT */
424 0, "L4=Mb1+4*=", /* 0x2a */
425 1, "Lb4*=Mb1+L*=", /* 0x2b */
426 2, "Lb4*=Md1+4*=", /* 0x2c */
427 3, "Ld1+=Me1+=", /* 0x2d */
432 0, "L4=RD=Sb=", /* 0x30 */
433 1, "L4=RD=Sb=", /* 0x31 */
434 2, "L4=RD=Sb=", /* 0x32 */
435 3, "L4=RD=Sb=", /* 0x33 */
436 4, "L4=RD=Sb=", /* 0x34 */
437 5, "L4=RD=Sb=", /* 0x35 */
438 6, "L4=RD=Sb=", /* 0x36 */
439 7, "L4=RD=Sb=", /* 0x37 */
440 8, "L4=RD=Sb=", /* 0x38 */
441 9, "L4=RD=Sb=", /* 0x39 */
442 0, "L4=RD8<b+=Sb=",/* 0x3a */
443 1, "L4=RD8<b+=Sb=",/* 0x3b */
444 0, "L4=RD8<b+=Sd=",/* 0x3c */
445 1, "L4=RD8<b+=Sd=",/* 0x3d */
450 0, "L4=RD=Sb=", /* 0x40 */
451 1, "L4=RD=Sb=", /* 0x41 */
452 2, "L4=RD=Sb=", /* 0x42 */
453 3, "L4=RD=Sb=", /* 0x43 */
454 4, "L4=RD=Sb=", /* 0x44 */
455 5, "L4=RD=Sb=", /* 0x45 */
456 6, "L4=RD=Sb=", /* 0x46 */
457 7, "L4=RD=Sb=", /* 0x47 */
458 8, "L4=RD=Sb=", /* 0x48 */
459 9, "L4=RD=Sb=", /* 0x49 */
460 0, "L4=RD8<b+=Sb=",/* 0x4a */
461 1, "L4=RD8<b+=Sb=",/* 0x4b */
462 0, "L4=RD8<b+=Sd=",/* 0x4c */
463 1, "L4=RD8<b+=Sd=",/* 0x4d */
468 0, "L4=SD=", /* 0x50 */
469 1, "L4=SD=", /* 0x51 */
470 2, "L4=SD=", /* 0x52 */
471 3, "L4=SD=", /* 0x53 */
472 4, "L4=SD=", /* 0x54 */
473 5, "L4=SD=", /* 0x55 */
474 6, "L4=SD=", /* 0x56 */
475 7, "L4=SD=", /* 0x57 */
476 8, "L4=SD=", /* 0x58 */
477 9, "L4=SD=", /* 0x59 */
478 10, "L4=SD=", /* 0x5a */
479 11, "L4=SD=", /* 0x5b */
480 12, "L4=SD=", /* 0x5c */
481 13, "L4=SD=", /* 0x5d */
482 14, "L4=SD=", /* 0x5e */
483 15, "L4=SD=", /* 0x5f */
484 16, "L4=SD=", /* 0x60 */
485 17, "L4=SD=", /* 0x61 */
486 18, "L4=SD=", /* 0x62 */
487 19, "L4=SD=", /* 0x63 */
488 20, "L4=SD=", /* 0x64 */
489 21, "L4=SD=", /* 0x65 */
490 22, "L4=SD=", /* 0x66 */
491 23, "L4=SD=", /* 0x67 */
492 24, "L4=SD=", /* 0x68 */
493 25, "L4=SD=", /* 0x69 */
494 26, "L4=SD=", /* 0x6a */
495 27, "L4=SD=", /* 0x6b */
496 28, "L4=SD=", /* 0x6c */
497 29, "L4=SD=", /* 0x6d */
498 30, "L4=SD=", /* 0x6e */
499 31, "L4=SD=", /* 0x6f */
500 32, "L4=Sb=", /* 0x70 */
501 33, "L4=Sd=", /* 0x71 */
510 0, "L4=Sb=", /* 0x78 */
511 1, "L4=Sd=", /* 0x79 */
519 /* R_CODE_ONE_SYMBOL */
520 0, "L4=SD=", /* 0x80 */
521 1, "L4=SD=", /* 0x81 */
522 2, "L4=SD=", /* 0x82 */
523 3, "L4=SD=", /* 0x83 */
524 4, "L4=SD=", /* 0x84 */
525 5, "L4=SD=", /* 0x85 */
526 6, "L4=SD=", /* 0x86 */
527 7, "L4=SD=", /* 0x87 */
528 8, "L4=SD=", /* 0x88 */
529 9, "L4=SD=", /* 0x89 */
530 10, "L4=SD=", /* 0x8q */
531 11, "L4=SD=", /* 0x8b */
532 12, "L4=SD=", /* 0x8c */
533 13, "L4=SD=", /* 0x8d */
534 14, "L4=SD=", /* 0x8e */
535 15, "L4=SD=", /* 0x8f */
536 16, "L4=SD=", /* 0x90 */
537 17, "L4=SD=", /* 0x91 */
538 18, "L4=SD=", /* 0x92 */
539 19, "L4=SD=", /* 0x93 */
540 20, "L4=SD=", /* 0x94 */
541 21, "L4=SD=", /* 0x95 */
542 22, "L4=SD=", /* 0x96 */
543 23, "L4=SD=", /* 0x97 */
544 24, "L4=SD=", /* 0x98 */
545 25, "L4=SD=", /* 0x99 */
546 26, "L4=SD=", /* 0x9a */
547 27, "L4=SD=", /* 0x9b */
548 28, "L4=SD=", /* 0x9c */
549 29, "L4=SD=", /* 0x9d */
550 30, "L4=SD=", /* 0x9e */
551 31, "L4=SD=", /* 0x9f */
552 32, "L4=Sb=", /* 0xa0 */
553 33, "L4=Sd=", /* 0xa1 */
568 0, "L4=Sb=", /* 0xae */
569 1, "L4=Sd=", /* 0xaf */
571 0, "L4=Sb=", /* 0xb0 */
572 1, "L4=Sd=", /* 0xb1 */
576 0, "Te=Ue=", /* 0xb3 */
586 1, "Rb4*=", /* 0xb9 */
587 2, "Rd4*=", /* 0xba */
614 /* R_DATA_OVERRIDE */
627 0, "Ob=Sd=", /* 0xd1 */
629 0, "Ob=Ve=", /* 0xd2 */
679 static const int comp1_opcodes[] =
701 static const int comp2_opcodes[] =
710 static const int comp3_opcodes[] =
717 /* These apparently are not in older versions of hpux reloc.h. */
719 #define R_DLT_REL 0x78
723 #define R_AUX_UNWIND 0xcf
727 #define R_SEC_STMT 0xd7
730 static reloc_howto_type som_hppa_howto_table[] =
732 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
733 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
734 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
735 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
736 {R_NO_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_NO_RELOCATION"},
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_ZEROES, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ZEROES"},
765 {R_ZEROES, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ZEROES"},
766 {R_UNINIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_UNINIT"},
767 {R_UNINIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_UNINIT"},
768 {R_RELOCATION, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RELOCATION"},
769 {R_DATA_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_ONE_SYMBOL"},
770 {R_DATA_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_ONE_SYMBOL"},
771 {R_DATA_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_PLABEL"},
772 {R_DATA_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_PLABEL"},
773 {R_SPACE_REF, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_SPACE_REF"},
774 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
775 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
776 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
777 {R_REPEATED_INIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "REPEATED_INIT"},
778 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
779 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
780 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
781 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
782 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
783 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
784 {R_PCREL_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PCREL_CALL"},
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_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
795 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
796 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
797 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
798 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
799 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
800 {R_ABS_CALL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ABS_CALL"},
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_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
811 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
812 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
813 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
814 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
815 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
816 {R_DP_RELATIVE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DP_RELATIVE"},
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_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
848 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
849 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
850 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
851 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
852 {R_DLT_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DLT_REL"},
853 {R_DLT_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DLT_REL"},
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"},
857 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
858 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
859 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
860 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
861 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
862 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
863 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
864 {R_CODE_ONE_SYMBOL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_ONE_SYMBOL"},
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_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
896 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
897 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
898 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
899 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
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_MILLI_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_MILLI_REL"},
907 {R_MILLI_REL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_MILLI_REL"},
908 {R_CODE_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_PLABEL"},
909 {R_CODE_PLABEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_PLABEL"},
910 {R_BREAKPOINT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_BREAKPOINT"},
911 {R_ENTRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ENTRY"},
912 {R_ENTRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ENTRY"},
913 {R_ALT_ENTRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_ALT_ENTRY"},
914 {R_EXIT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_EXIT"},
915 {R_BEGIN_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_BEGIN_TRY"},
916 {R_END_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_TRY"},
917 {R_END_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_TRY"},
918 {R_END_TRY, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_TRY"},
919 {R_BEGIN_BRTAB, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_BEGIN_BRTAB"},
920 {R_END_BRTAB, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_END_BRTAB"},
921 {R_STATEMENT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_STATEMENT"},
922 {R_STATEMENT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_STATEMENT"},
923 {R_STATEMENT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_STATEMENT"},
924 {R_DATA_EXPR, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_EXPR"},
925 {R_CODE_EXPR, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_CODE_EXPR"},
926 {R_FSEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_FSEL"},
927 {R_LSEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_LSEL"},
928 {R_RSEL, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RSEL"},
929 {R_N_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_N_MODE"},
930 {R_S_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_S_MODE"},
931 {R_D_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_D_MODE"},
932 {R_R_MODE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_R_MODE"},
933 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
934 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
935 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
936 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
937 {R_DATA_OVERRIDE, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_DATA_OVERRIDE"},
938 {R_TRANSLATED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_TRANSLATED"},
939 {R_AUX_UNWIND, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_AUX_UNWIND"},
940 {R_COMP1, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_COMP1"},
941 {R_COMP2, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_COMP2"},
942 {R_COMP3, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_COMP3"},
943 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
944 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
945 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
946 {R_PREV_FIXUP, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_PREV_FIXUP"},
947 {R_SEC_STMT, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_SEC_STMT"},
948 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
949 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
950 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
951 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
952 {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
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"}};
989 /* Initialize the SOM relocation queue. By definition the queue holds
990 the last four multibyte fixups. */
993 som_initialize_reloc_queue (queue)
994 struct reloc_queue *queue;
996 queue[0].reloc = NULL;
998 queue[1].reloc = NULL;
1000 queue[2].reloc = NULL;
1002 queue[3].reloc = NULL;
1006 /* Insert a new relocation into the relocation queue. */
1009 som_reloc_queue_insert (p, size, queue)
1012 struct reloc_queue *queue;
1014 queue[3].reloc = queue[2].reloc;
1015 queue[3].size = queue[2].size;
1016 queue[2].reloc = queue[1].reloc;
1017 queue[2].size = queue[1].size;
1018 queue[1].reloc = queue[0].reloc;
1019 queue[1].size = queue[0].size;
1021 queue[0].size = size;
1024 /* When an entry in the relocation queue is reused, the entry moves
1025 to the front of the queue. */
1028 som_reloc_queue_fix (queue, index)
1029 struct reloc_queue *queue;
1037 unsigned char *tmp1 = queue[0].reloc;
1038 unsigned int tmp2 = queue[0].size;
1039 queue[0].reloc = queue[1].reloc;
1040 queue[0].size = queue[1].size;
1041 queue[1].reloc = tmp1;
1042 queue[1].size = tmp2;
1048 unsigned char *tmp1 = queue[0].reloc;
1049 unsigned int tmp2 = queue[0].size;
1050 queue[0].reloc = queue[2].reloc;
1051 queue[0].size = queue[2].size;
1052 queue[2].reloc = queue[1].reloc;
1053 queue[2].size = queue[1].size;
1054 queue[1].reloc = tmp1;
1055 queue[1].size = tmp2;
1061 unsigned char *tmp1 = queue[0].reloc;
1062 unsigned int tmp2 = queue[0].size;
1063 queue[0].reloc = queue[3].reloc;
1064 queue[0].size = queue[3].size;
1065 queue[3].reloc = queue[2].reloc;
1066 queue[3].size = queue[2].size;
1067 queue[2].reloc = queue[1].reloc;
1068 queue[2].size = queue[1].size;
1069 queue[1].reloc = tmp1;
1070 queue[1].size = tmp2;
1076 /* Search for a particular relocation in the relocation queue. */
1079 som_reloc_queue_find (p, size, queue)
1082 struct reloc_queue *queue;
1084 if (queue[0].reloc && !memcmp (p, queue[0].reloc, size)
1085 && size == queue[0].size)
1087 if (queue[1].reloc && !memcmp (p, queue[1].reloc, size)
1088 && size == queue[1].size)
1090 if (queue[2].reloc && !memcmp (p, queue[2].reloc, size)
1091 && size == queue[2].size)
1093 if (queue[3].reloc && !memcmp (p, queue[3].reloc, size)
1094 && size == queue[3].size)
1099 static unsigned char *
1100 try_prev_fixup (abfd, subspace_reloc_sizep, p, size, queue)
1102 int *subspace_reloc_sizep;
1105 struct reloc_queue *queue;
1107 int queue_index = som_reloc_queue_find (p, size, queue);
1109 if (queue_index != -1)
1111 /* Found this in a previous fixup. Undo the fixup we
1112 just built and use R_PREV_FIXUP instead. We saved
1113 a total of size - 1 bytes in the fixup stream. */
1114 bfd_put_8 (abfd, R_PREV_FIXUP + queue_index, p);
1116 *subspace_reloc_sizep += 1;
1117 som_reloc_queue_fix (queue, queue_index);
1121 som_reloc_queue_insert (p, size, queue);
1122 *subspace_reloc_sizep += size;
1128 /* Emit the proper R_NO_RELOCATION fixups to map the next SKIP
1129 bytes without any relocation. Update the size of the subspace
1130 relocation stream via SUBSPACE_RELOC_SIZE_P; also return the
1131 current pointer into the relocation stream. */
1133 static unsigned char *
1134 som_reloc_skip (abfd, skip, p, subspace_reloc_sizep, queue)
1138 unsigned int *subspace_reloc_sizep;
1139 struct reloc_queue *queue;
1141 /* Use a 4 byte R_NO_RELOCATION entry with a maximal value
1142 then R_PREV_FIXUPs to get the difference down to a
1144 if (skip >= 0x1000000)
1147 bfd_put_8 (abfd, R_NO_RELOCATION + 31, p);
1148 bfd_put_8 (abfd, 0xff, p + 1);
1149 bfd_put_16 (abfd, 0xffff, p + 2);
1150 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 4, queue);
1151 while (skip >= 0x1000000)
1154 bfd_put_8 (abfd, R_PREV_FIXUP, p);
1156 *subspace_reloc_sizep += 1;
1157 /* No need to adjust queue here since we are repeating the
1158 most recent fixup. */
1162 /* The difference must be less than 0x1000000. Use one
1163 more R_NO_RELOCATION entry to get to the right difference. */
1164 if ((skip & 3) == 0 && skip <= 0xc0000 && skip > 0)
1166 /* Difference can be handled in a simple single-byte
1167 R_NO_RELOCATION entry. */
1170 bfd_put_8 (abfd, R_NO_RELOCATION + (skip >> 2) - 1, p);
1171 *subspace_reloc_sizep += 1;
1174 /* Handle it with a two byte R_NO_RELOCATION entry. */
1175 else if (skip <= 0x1000)
1177 bfd_put_8 (abfd, R_NO_RELOCATION + 24 + (((skip >> 2) - 1) >> 8), p);
1178 bfd_put_8 (abfd, (skip >> 2) - 1, p + 1);
1179 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 2, queue);
1181 /* Handle it with a three byte R_NO_RELOCATION entry. */
1184 bfd_put_8 (abfd, R_NO_RELOCATION + 28 + (((skip >> 2) - 1) >> 16), p);
1185 bfd_put_16 (abfd, (skip >> 2) - 1, p + 1);
1186 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 3, queue);
1189 /* Ugh. Punt and use a 4 byte entry. */
1192 bfd_put_8 (abfd, R_NO_RELOCATION + 31, p);
1193 bfd_put_8 (abfd, (skip - 1) >> 16, p + 1);
1194 bfd_put_16 (abfd, skip - 1, p + 2);
1195 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 4, queue);
1200 /* Emit the proper R_DATA_OVERRIDE fixups to handle a nonzero addend
1201 from a BFD relocation. Update the size of the subspace relocation
1202 stream via SUBSPACE_RELOC_SIZE_P; also return the current pointer
1203 into the relocation stream. */
1205 static unsigned char *
1206 som_reloc_addend (abfd, addend, p, subspace_reloc_sizep, queue)
1210 unsigned int *subspace_reloc_sizep;
1211 struct reloc_queue *queue;
1213 if ((unsigned)(addend) + 0x80 < 0x100)
1215 bfd_put_8 (abfd, R_DATA_OVERRIDE + 1, p);
1216 bfd_put_8 (abfd, addend, p + 1);
1217 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 2, queue);
1219 else if ((unsigned) (addend) + 0x8000 < 0x10000)
1221 bfd_put_8 (abfd, R_DATA_OVERRIDE + 2, p);
1222 bfd_put_16 (abfd, addend, p + 1);
1223 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 3, queue);
1225 else if ((unsigned) (addend) + 0x800000 < 0x1000000)
1227 bfd_put_8 (abfd, R_DATA_OVERRIDE + 3, p);
1228 bfd_put_8 (abfd, addend >> 16, p + 1);
1229 bfd_put_16 (abfd, addend, p + 2);
1230 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 4, queue);
1234 bfd_put_8 (abfd, R_DATA_OVERRIDE + 4, p);
1235 bfd_put_32 (abfd, addend, p + 1);
1236 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 5, queue);
1241 /* Handle a single function call relocation. */
1243 static unsigned char *
1244 som_reloc_call (abfd, p, subspace_reloc_sizep, bfd_reloc, sym_num, queue)
1247 unsigned int *subspace_reloc_sizep;
1250 struct reloc_queue *queue;
1252 int arg_bits = HPPA_R_ARG_RELOC (bfd_reloc->addend);
1253 int rtn_bits = arg_bits & 0x3;
1256 /* You'll never believe all this is necessary to handle relocations
1257 for function calls. Having to compute and pack the argument
1258 relocation bits is the real nightmare.
1260 If you're interested in how this works, just forget it. You really
1261 do not want to know about this braindamage. */
1263 /* First see if this can be done with a "simple" relocation. Simple
1264 relocations have a symbol number < 0x100 and have simple encodings
1265 of argument relocations. */
1267 if (sym_num < 0x100)
1279 case 1 << 8 | 1 << 6:
1280 case 1 << 8 | 1 << 6 | 1:
1283 case 1 << 8 | 1 << 6 | 1 << 4:
1284 case 1 << 8 | 1 << 6 | 1 << 4 | 1:
1287 case 1 << 8 | 1 << 6 | 1 << 4 | 1 << 2:
1288 case 1 << 8 | 1 << 6 | 1 << 4 | 1 << 2 | 1:
1292 /* Not one of the easy encodings. This will have to be
1293 handled by the more complex code below. */
1299 /* Account for the return value too. */
1303 /* Emit a 2 byte relocation. Then see if it can be handled
1304 with a relocation which is already in the relocation queue. */
1305 bfd_put_8 (abfd, bfd_reloc->howto->type + type, p);
1306 bfd_put_8 (abfd, sym_num, p + 1);
1307 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 2, queue);
1312 /* If this could not be handled with a simple relocation, then do a hard
1313 one. Hard relocations occur if the symbol number was too high or if
1314 the encoding of argument relocation bits is too complex. */
1317 /* Don't ask about these magic sequences. I took them straight
1318 from gas-1.36 which took them from the a.out man page. */
1320 if ((arg_bits >> 6 & 0xf) == 0xe)
1323 type += (3 * (arg_bits >> 8 & 3) + (arg_bits >> 6 & 3)) * 40;
1324 if ((arg_bits >> 2 & 0xf) == 0xe)
1327 type += (3 * (arg_bits >> 4 & 3) + (arg_bits >> 2 & 3)) * 4;
1329 /* Output the first two bytes of the relocation. These describe
1330 the length of the relocation and encoding style. */
1331 bfd_put_8 (abfd, bfd_reloc->howto->type + 10
1332 + 2 * (sym_num >= 0x100) + (type >= 0x100),
1334 bfd_put_8 (abfd, type, p + 1);
1336 /* Now output the symbol index and see if this bizarre relocation
1337 just happened to be in the relocation queue. */
1338 if (sym_num < 0x100)
1340 bfd_put_8 (abfd, sym_num, p + 2);
1341 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 3, queue);
1345 bfd_put_8 (abfd, sym_num >> 16, p + 2);
1346 bfd_put_16 (abfd, sym_num, p + 3);
1347 p = try_prev_fixup (abfd, subspace_reloc_sizep, p, 5, queue);
1354 /* Return the logarithm of X, base 2, considering X unsigned.
1355 Abort -1 if X is not a power or two or is zero. */
1363 /* Test for 0 or a power of 2. */
1364 if (x == 0 || x != (x & -x))
1367 while ((x >>= 1) != 0)
1372 static bfd_reloc_status_type
1373 hppa_som_reloc (abfd, reloc_entry, symbol_in, data,
1374 input_section, output_bfd, error_message)
1376 arelent *reloc_entry;
1379 asection *input_section;
1381 char **error_message;
1385 reloc_entry->address += input_section->output_offset;
1386 return bfd_reloc_ok;
1388 return bfd_reloc_ok;
1391 /* Given a generic HPPA relocation type, the instruction format,
1392 and a field selector, return one or more appropriate SOM relocations. */
1395 hppa_som_gen_reloc_type (abfd, base_type, format, field)
1399 enum hppa_reloc_field_selector_type_alt field;
1401 int *final_type, **final_types;
1403 final_types = (int **) bfd_alloc_by_size_t (abfd, sizeof (int *) * 3);
1404 final_type = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
1405 if (!final_types || !final_type)
1407 bfd_set_error (bfd_error_no_memory);
1411 /* The field selector may require additional relocations to be
1412 generated. It's impossible to know at this moment if additional
1413 relocations will be needed, so we make them. The code to actually
1414 write the relocation/fixup stream is responsible for removing
1415 any redundant relocations. */
1422 final_types[0] = final_type;
1423 final_types[1] = NULL;
1424 final_types[2] = NULL;
1425 *final_type = base_type;
1431 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
1432 if (!final_types[0])
1434 bfd_set_error (bfd_error_no_memory);
1437 if (field == e_tsel)
1438 *final_types[0] = R_FSEL;
1439 else if (field == e_ltsel)
1440 *final_types[0] = R_LSEL;
1442 *final_types[0] = R_RSEL;
1443 final_types[1] = final_type;
1444 final_types[2] = NULL;
1445 *final_type = base_type;
1450 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
1451 if (!final_types[0])
1453 bfd_set_error (bfd_error_no_memory);
1456 *final_types[0] = R_S_MODE;
1457 final_types[1] = final_type;
1458 final_types[2] = NULL;
1459 *final_type = base_type;
1464 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
1465 if (!final_types[0])
1467 bfd_set_error (bfd_error_no_memory);
1470 *final_types[0] = R_N_MODE;
1471 final_types[1] = final_type;
1472 final_types[2] = NULL;
1473 *final_type = base_type;
1478 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
1479 if (!final_types[0])
1481 bfd_set_error (bfd_error_no_memory);
1484 *final_types[0] = R_D_MODE;
1485 final_types[1] = final_type;
1486 final_types[2] = NULL;
1487 *final_type = base_type;
1492 final_types[0] = (int *) bfd_alloc_by_size_t (abfd, sizeof (int));
1493 if (!final_types[0])
1495 bfd_set_error (bfd_error_no_memory);
1498 *final_types[0] = R_R_MODE;
1499 final_types[1] = final_type;
1500 final_types[2] = NULL;
1501 *final_type = base_type;
1508 /* PLABELs get their own relocation type. */
1511 || field == e_rpsel)
1513 /* A PLABEL relocation that has a size of 32 bits must
1514 be a R_DATA_PLABEL. All others are R_CODE_PLABELs. */
1516 *final_type = R_DATA_PLABEL;
1518 *final_type = R_CODE_PLABEL;
1521 else if (field == e_tsel
1523 || field == e_rtsel)
1524 *final_type = R_DLT_REL;
1525 /* A relocation in the data space is always a full 32bits. */
1526 else if (format == 32)
1527 *final_type = R_DATA_ONE_SYMBOL;
1532 /* More PLABEL special cases. */
1535 || field == e_rpsel)
1536 *final_type = R_DATA_PLABEL;
1540 case R_HPPA_ABS_CALL:
1541 case R_HPPA_PCREL_CALL:
1542 /* Right now we can default all these. */
1548 /* Return the address of the correct entry in the PA SOM relocation
1552 static reloc_howto_type *
1553 som_bfd_reloc_type_lookup (abfd, code)
1555 bfd_reloc_code_real_type code;
1557 if ((int) code < (int) R_NO_RELOCATION + 255)
1559 BFD_ASSERT ((int) som_hppa_howto_table[(int) code].type == (int) code);
1560 return &som_hppa_howto_table[(int) code];
1563 return (reloc_howto_type *) 0;
1566 /* Perform some initialization for an object. Save results of this
1567 initialization in the BFD. */
1569 static const bfd_target *
1570 som_object_setup (abfd, file_hdrp, aux_hdrp)
1572 struct header *file_hdrp;
1573 struct som_exec_auxhdr *aux_hdrp;
1578 /* som_mkobject will set bfd_error if som_mkobject fails. */
1579 if (som_mkobject (abfd) != true)
1582 /* Set BFD flags based on what information is available in the SOM. */
1583 abfd->flags = NO_FLAGS;
1584 if (file_hdrp->symbol_total)
1585 abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS;
1587 switch (file_hdrp->a_magic)
1590 abfd->flags |= (D_PAGED | WP_TEXT | EXEC_P);
1593 abfd->flags |= (WP_TEXT | EXEC_P);
1596 abfd->flags |= (EXEC_P);
1599 abfd->flags |= HAS_RELOC;
1607 abfd->flags |= DYNAMIC;
1614 /* Allocate space to hold the saved exec header information. */
1615 obj_som_exec_data (abfd) = (struct som_exec_data *)
1616 bfd_zalloc (abfd, sizeof (struct som_exec_data ));
1617 if (obj_som_exec_data (abfd) == NULL)
1619 bfd_set_error (bfd_error_no_memory);
1623 /* The braindamaged OSF1 linker switched exec_flags and exec_entry!
1625 We used to identify OSF1 binaries based on NEW_VERSION_ID, but
1626 apparently the latest HPUX linker is using NEW_VERSION_ID now.
1628 It's about time, OSF has used the new id since at least 1992;
1629 HPUX didn't start till nearly 1995!.
1631 The new approach examines the entry field. If it's zero or not 4
1632 byte aligned then it's not a proper code address and we guess it's
1633 really the executable flags. */
1635 for (section = abfd->sections; section; section = section->next)
1637 if ((section->flags & SEC_CODE) == 0)
1639 if (aux_hdrp->exec_entry >= section->vma
1640 && aux_hdrp->exec_entry < section->vma + section->_cooked_size)
1643 if (aux_hdrp->exec_entry == 0
1644 || (aux_hdrp->exec_entry & 0x3) != 0
1647 bfd_get_start_address (abfd) = aux_hdrp->exec_flags;
1648 obj_som_exec_data (abfd)->exec_flags = aux_hdrp->exec_entry;
1652 bfd_get_start_address (abfd) = aux_hdrp->exec_entry;
1653 obj_som_exec_data (abfd)->exec_flags = aux_hdrp->exec_flags;
1656 bfd_default_set_arch_mach (abfd, bfd_arch_hppa, pa10);
1657 bfd_get_symcount (abfd) = file_hdrp->symbol_total;
1659 /* Initialize the saved symbol table and string table to NULL.
1660 Save important offsets and sizes from the SOM header into
1662 obj_som_stringtab (abfd) = (char *) NULL;
1663 obj_som_symtab (abfd) = (som_symbol_type *) NULL;
1664 obj_som_sorted_syms (abfd) = NULL;
1665 obj_som_stringtab_size (abfd) = file_hdrp->symbol_strings_size;
1666 obj_som_sym_filepos (abfd) = file_hdrp->symbol_location;
1667 obj_som_str_filepos (abfd) = file_hdrp->symbol_strings_location;
1668 obj_som_reloc_filepos (abfd) = file_hdrp->fixup_request_location;
1669 obj_som_exec_data (abfd)->system_id = file_hdrp->system_id;
1674 /* Convert all of the space and subspace info into BFD sections. Each space
1675 contains a number of subspaces, which in turn describe the mapping between
1676 regions of the exec file, and the address space that the program runs in.
1677 BFD sections which correspond to spaces will overlap the sections for the
1678 associated subspaces. */
1681 setup_sections (abfd, file_hdr)
1683 struct header *file_hdr;
1685 char *space_strings;
1686 unsigned int space_index, i;
1687 unsigned int total_subspaces = 0;
1688 asection **subspace_sections, *section;
1690 /* First, read in space names */
1692 space_strings = malloc (file_hdr->space_strings_size);
1693 if (!space_strings && file_hdr->space_strings_size != 0)
1695 bfd_set_error (bfd_error_no_memory);
1699 if (bfd_seek (abfd, file_hdr->space_strings_location, SEEK_SET) < 0)
1701 if (bfd_read (space_strings, 1, file_hdr->space_strings_size, abfd)
1702 != file_hdr->space_strings_size)
1705 /* Loop over all of the space dictionaries, building up sections */
1706 for (space_index = 0; space_index < file_hdr->space_total; space_index++)
1708 struct space_dictionary_record space;
1709 struct subspace_dictionary_record subspace, save_subspace;
1711 asection *space_asect;
1714 /* Read the space dictionary element */
1715 if (bfd_seek (abfd, file_hdr->space_location
1716 + space_index * sizeof space, SEEK_SET) < 0)
1718 if (bfd_read (&space, 1, sizeof space, abfd) != sizeof space)
1721 /* Setup the space name string */
1722 space.name.n_name = space.name.n_strx + space_strings;
1724 /* Make a section out of it */
1725 newname = bfd_alloc (abfd, strlen (space.name.n_name) + 1);
1728 strcpy (newname, space.name.n_name);
1730 space_asect = bfd_make_section_anyway (abfd, newname);
1734 if (space.is_loadable == 0)
1735 space_asect->flags |= SEC_DEBUGGING;
1737 /* Set up all the attributes for the space. */
1738 if (bfd_som_set_section_attributes (space_asect, space.is_defined,
1739 space.is_private, space.sort_key,
1740 space.space_number) == false)
1743 /* Now, read in the first subspace for this space */
1744 if (bfd_seek (abfd, file_hdr->subspace_location
1745 + space.subspace_index * sizeof subspace,
1748 if (bfd_read (&subspace, 1, sizeof subspace, abfd) != sizeof subspace)
1750 /* Seek back to the start of the subspaces for loop below */
1751 if (bfd_seek (abfd, file_hdr->subspace_location
1752 + space.subspace_index * sizeof subspace,
1756 /* Setup the start address and file loc from the first subspace record */
1757 space_asect->vma = subspace.subspace_start;
1758 space_asect->filepos = subspace.file_loc_init_value;
1759 space_asect->alignment_power = log2 (subspace.alignment);
1760 if (space_asect->alignment_power == -1)
1763 /* Initialize save_subspace so we can reliably determine if this
1764 loop placed any useful values into it. */
1765 memset (&save_subspace, 0, sizeof (struct subspace_dictionary_record));
1767 /* Loop over the rest of the subspaces, building up more sections */
1768 for (subspace_index = 0; subspace_index < space.subspace_quantity;
1771 asection *subspace_asect;
1773 /* Read in the next subspace */
1774 if (bfd_read (&subspace, 1, sizeof subspace, abfd)
1778 /* Setup the subspace name string */
1779 subspace.name.n_name = subspace.name.n_strx + space_strings;
1781 newname = bfd_alloc (abfd, strlen (subspace.name.n_name) + 1);
1784 strcpy (newname, subspace.name.n_name);
1786 /* Make a section out of this subspace */
1787 subspace_asect = bfd_make_section_anyway (abfd, newname);
1788 if (!subspace_asect)
1791 /* Store private information about the section. */
1792 if (bfd_som_set_subsection_attributes (subspace_asect, space_asect,
1793 subspace.access_control_bits,
1795 subspace.quadrant) == false)
1798 /* Keep an easy mapping between subspaces and sections.
1799 Note we do not necessarily read the subspaces in the
1800 same order in which they appear in the object file.
1802 So to make the target index come out correctly, we
1803 store the location of the subspace header in target
1804 index, then sort using the location of the subspace
1805 header as the key. Then we can assign correct
1806 subspace indices. */
1808 subspace_asect->target_index = bfd_tell (abfd) - sizeof (subspace);
1810 /* Set SEC_READONLY and SEC_CODE/SEC_DATA as specified
1811 by the access_control_bits in the subspace header. */
1812 switch (subspace.access_control_bits >> 4)
1814 /* Readonly data. */
1816 subspace_asect->flags |= SEC_DATA | SEC_READONLY;
1821 subspace_asect->flags |= SEC_DATA;
1824 /* Readonly code and the gateways.
1825 Gateways have other attributes which do not map
1826 into anything BFD knows about. */
1832 subspace_asect->flags |= SEC_CODE | SEC_READONLY;
1835 /* dynamic (writable) code. */
1837 subspace_asect->flags |= SEC_CODE;
1841 if (subspace.dup_common || subspace.is_common)
1842 subspace_asect->flags |= SEC_IS_COMMON;
1843 else if (subspace.subspace_length > 0)
1844 subspace_asect->flags |= SEC_HAS_CONTENTS;
1846 if (subspace.is_loadable)
1847 subspace_asect->flags |= SEC_ALLOC | SEC_LOAD;
1849 subspace_asect->flags |= SEC_DEBUGGING;
1851 if (subspace.code_only)
1852 subspace_asect->flags |= SEC_CODE;
1854 /* Both file_loc_init_value and initialization_length will
1855 be zero for a BSS like subspace. */
1856 if (subspace.file_loc_init_value == 0
1857 && subspace.initialization_length == 0)
1858 subspace_asect->flags &= ~(SEC_DATA | SEC_LOAD | SEC_HAS_CONTENTS);
1860 /* This subspace has relocations.
1861 The fixup_request_quantity is a byte count for the number of
1862 entries in the relocation stream; it is not the actual number
1863 of relocations in the subspace. */
1864 if (subspace.fixup_request_quantity != 0)
1866 subspace_asect->flags |= SEC_RELOC;
1867 subspace_asect->rel_filepos = subspace.fixup_request_index;
1868 som_section_data (subspace_asect)->reloc_size
1869 = subspace.fixup_request_quantity;
1870 /* We can not determine this yet. When we read in the
1871 relocation table the correct value will be filled in. */
1872 subspace_asect->reloc_count = -1;
1875 /* Update save_subspace if appropriate. */
1876 if (subspace.file_loc_init_value > save_subspace.file_loc_init_value)
1877 save_subspace = subspace;
1879 subspace_asect->vma = subspace.subspace_start;
1880 subspace_asect->_cooked_size = subspace.subspace_length;
1881 subspace_asect->_raw_size = subspace.subspace_length;
1882 subspace_asect->filepos = subspace.file_loc_init_value;
1883 subspace_asect->alignment_power = log2 (subspace.alignment);
1884 if (subspace_asect->alignment_power == -1)
1888 /* Yow! there is no subspace within the space which actually
1889 has initialized information in it; this should never happen
1890 as far as I know. */
1891 if (!save_subspace.file_loc_init_value)
1894 /* Setup the sizes for the space section based upon the info in the
1895 last subspace of the space. */
1896 space_asect->_cooked_size = save_subspace.subspace_start
1897 - space_asect->vma + save_subspace.subspace_length;
1898 space_asect->_raw_size = save_subspace.file_loc_init_value
1899 - space_asect->filepos + save_subspace.initialization_length;
1901 /* Now that we've read in all the subspace records, we need to assign
1902 a target index to each subspace. */
1903 subspace_sections = (asection **) malloc (total_subspaces
1904 * sizeof (asection *));
1905 if (subspace_sections == NULL)
1908 for (i = 0, section = abfd->sections; section; section = section->next)
1910 if (!som_is_subspace (section))
1913 subspace_sections[i] = section;
1916 qsort (subspace_sections, total_subspaces,
1917 sizeof (asection *), compare_subspaces);
1919 /* subspace_sections is now sorted in the order in which the subspaces
1920 appear in the object file. Assign an index to each one now. */
1921 for (i = 0; i < total_subspaces; i++)
1922 subspace_sections[i]->target_index = i;
1924 if (space_strings != NULL)
1925 free (space_strings);
1927 if (subspace_sections != NULL)
1928 free (subspace_sections);
1933 if (space_strings != NULL)
1934 free (space_strings);
1936 if (subspace_sections != NULL)
1937 free (subspace_sections);
1941 /* Read in a SOM object and make it into a BFD. */
1943 static const bfd_target *
1947 struct header file_hdr;
1948 struct som_exec_auxhdr aux_hdr;
1950 if (bfd_read ((PTR) & file_hdr, 1, FILE_HDR_SIZE, abfd) != FILE_HDR_SIZE)
1952 if (bfd_get_error () != bfd_error_system_call)
1953 bfd_set_error (bfd_error_wrong_format);
1957 if (!_PA_RISC_ID (file_hdr.system_id))
1959 bfd_set_error (bfd_error_wrong_format);
1963 switch (file_hdr.a_magic)
1978 #ifdef SHARED_MAGIC_CNX
1979 case SHARED_MAGIC_CNX:
1983 bfd_set_error (bfd_error_wrong_format);
1987 if (file_hdr.version_id != VERSION_ID
1988 && file_hdr.version_id != NEW_VERSION_ID)
1990 bfd_set_error (bfd_error_wrong_format);
1994 /* If the aux_header_size field in the file header is zero, then this
1995 object is an incomplete executable (a .o file). Do not try to read
1996 a non-existant auxiliary header. */
1997 memset (&aux_hdr, 0, sizeof (struct som_exec_auxhdr));
1998 if (file_hdr.aux_header_size != 0)
2000 if (bfd_read ((PTR) & aux_hdr, 1, AUX_HDR_SIZE, abfd) != AUX_HDR_SIZE)
2002 if (bfd_get_error () != bfd_error_system_call)
2003 bfd_set_error (bfd_error_wrong_format);
2008 if (!setup_sections (abfd, &file_hdr))
2010 /* setup_sections does not bubble up a bfd error code. */
2011 bfd_set_error (bfd_error_bad_value);
2015 /* This appears to be a valid SOM object. Do some initialization. */
2016 return som_object_setup (abfd, &file_hdr, &aux_hdr);
2019 /* Create a SOM object. */
2025 /* Allocate memory to hold backend information. */
2026 abfd->tdata.som_data = (struct som_data_struct *)
2027 bfd_zalloc (abfd, sizeof (struct som_data_struct));
2028 if (abfd->tdata.som_data == NULL)
2030 bfd_set_error (bfd_error_no_memory);
2036 /* Initialize some information in the file header. This routine makes
2037 not attempt at doing the right thing for a full executable; it
2038 is only meant to handle relocatable objects. */
2041 som_prep_headers (abfd)
2044 struct header *file_hdr;
2047 /* Make and attach a file header to the BFD. */
2048 file_hdr = (struct header *) bfd_zalloc (abfd, sizeof (struct header));
2049 if (file_hdr == NULL)
2052 bfd_set_error (bfd_error_no_memory);
2055 obj_som_file_hdr (abfd) = file_hdr;
2057 if (abfd->flags & (EXEC_P | DYNAMIC))
2060 /* Make and attach an exec header to the BFD. */
2061 obj_som_exec_hdr (abfd) = (struct som_exec_auxhdr *)
2062 bfd_zalloc (abfd, sizeof (struct som_exec_auxhdr));
2063 if (obj_som_exec_hdr (abfd) == NULL)
2065 bfd_set_error (bfd_error_no_memory);
2069 if (abfd->flags & D_PAGED)
2070 file_hdr->a_magic = DEMAND_MAGIC;
2071 else if (abfd->flags & WP_TEXT)
2072 file_hdr->a_magic = SHARE_MAGIC;
2074 else if (abfd->flags & DYNAMIC)
2075 file_hdr->a_magic = SHL_MAGIC;
2078 file_hdr->a_magic = EXEC_MAGIC;
2081 file_hdr->a_magic = RELOC_MAGIC;
2083 /* Only new format SOM is supported. */
2084 file_hdr->version_id = NEW_VERSION_ID;
2086 /* These fields are optional, and embedding timestamps is not always
2087 a wise thing to do, it makes comparing objects during a multi-stage
2088 bootstrap difficult. */
2089 file_hdr->file_time.secs = 0;
2090 file_hdr->file_time.nanosecs = 0;
2092 file_hdr->entry_space = 0;
2093 file_hdr->entry_subspace = 0;
2094 file_hdr->entry_offset = 0;
2095 file_hdr->presumed_dp = 0;
2097 /* Now iterate over the sections translating information from
2098 BFD sections to SOM spaces/subspaces. */
2100 for (section = abfd->sections; section != NULL; section = section->next)
2102 /* Ignore anything which has not been marked as a space or
2104 if (!som_is_space (section) && !som_is_subspace (section))
2107 if (som_is_space (section))
2109 /* Allocate space for the space dictionary. */
2110 som_section_data (section)->space_dict
2111 = (struct space_dictionary_record *)
2112 bfd_zalloc (abfd, sizeof (struct space_dictionary_record));
2113 if (som_section_data (section)->space_dict == NULL)
2115 bfd_set_error (bfd_error_no_memory);
2118 /* Set space attributes. Note most attributes of SOM spaces
2119 are set based on the subspaces it contains. */
2120 som_section_data (section)->space_dict->loader_fix_index = -1;
2121 som_section_data (section)->space_dict->init_pointer_index = -1;
2123 /* Set more attributes that were stuffed away in private data. */
2124 som_section_data (section)->space_dict->sort_key =
2125 som_section_data (section)->copy_data->sort_key;
2126 som_section_data (section)->space_dict->is_defined =
2127 som_section_data (section)->copy_data->is_defined;
2128 som_section_data (section)->space_dict->is_private =
2129 som_section_data (section)->copy_data->is_private;
2130 som_section_data (section)->space_dict->space_number =
2131 som_section_data (section)->copy_data->space_number;
2135 /* Allocate space for the subspace dictionary. */
2136 som_section_data (section)->subspace_dict
2137 = (struct subspace_dictionary_record *)
2138 bfd_zalloc (abfd, sizeof (struct subspace_dictionary_record));
2139 if (som_section_data (section)->subspace_dict == NULL)
2141 bfd_set_error (bfd_error_no_memory);
2145 /* Set subspace attributes. Basic stuff is done here, additional
2146 attributes are filled in later as more information becomes
2148 if (section->flags & SEC_IS_COMMON)
2150 som_section_data (section)->subspace_dict->dup_common = 1;
2151 som_section_data (section)->subspace_dict->is_common = 1;
2154 if (section->flags & SEC_ALLOC)
2155 som_section_data (section)->subspace_dict->is_loadable = 1;
2157 if (section->flags & SEC_CODE)
2158 som_section_data (section)->subspace_dict->code_only = 1;
2160 som_section_data (section)->subspace_dict->subspace_start =
2162 som_section_data (section)->subspace_dict->subspace_length =
2163 bfd_section_size (abfd, section);
2164 som_section_data (section)->subspace_dict->initialization_length =
2165 bfd_section_size (abfd, section);
2166 som_section_data (section)->subspace_dict->alignment =
2167 1 << section->alignment_power;
2169 /* Set more attributes that were stuffed away in private data. */
2170 som_section_data (section)->subspace_dict->sort_key =
2171 som_section_data (section)->copy_data->sort_key;
2172 som_section_data (section)->subspace_dict->access_control_bits =
2173 som_section_data (section)->copy_data->access_control_bits;
2174 som_section_data (section)->subspace_dict->quadrant =
2175 som_section_data (section)->copy_data->quadrant;
2181 /* Return true if the given section is a SOM space, false otherwise. */
2184 som_is_space (section)
2187 /* If no copy data is available, then it's neither a space nor a
2189 if (som_section_data (section)->copy_data == NULL)
2192 /* If the containing space isn't the same as the given section,
2193 then this isn't a space. */
2194 if (som_section_data (section)->copy_data->container != section
2195 && (som_section_data (section)->copy_data->container->output_section
2199 /* OK. Must be a space. */
2203 /* Return true if the given section is a SOM subspace, false otherwise. */
2206 som_is_subspace (section)
2209 /* If no copy data is available, then it's neither a space nor a
2211 if (som_section_data (section)->copy_data == NULL)
2214 /* If the containing space is the same as the given section,
2215 then this isn't a subspace. */
2216 if (som_section_data (section)->copy_data->container == section
2217 || (som_section_data (section)->copy_data->container->output_section
2221 /* OK. Must be a subspace. */
2225 /* Return true if the given space containins the given subspace. It
2226 is safe to assume space really is a space, and subspace really
2230 som_is_container (space, subspace)
2231 asection *space, *subspace;
2233 return (som_section_data (subspace)->copy_data->container == space
2234 || (som_section_data (subspace)->copy_data->container->output_section
2238 /* Count and return the number of spaces attached to the given BFD. */
2240 static unsigned long
2241 som_count_spaces (abfd)
2247 for (section = abfd->sections; section != NULL; section = section->next)
2248 count += som_is_space (section);
2253 /* Count the number of subspaces attached to the given BFD. */
2255 static unsigned long
2256 som_count_subspaces (abfd)
2262 for (section = abfd->sections; section != NULL; section = section->next)
2263 count += som_is_subspace (section);
2268 /* Return -1, 0, 1 indicating the relative ordering of sym1 and sym2.
2270 We desire symbols to be ordered starting with the symbol with the
2271 highest relocation count down to the symbol with the lowest relocation
2272 count. Doing so compacts the relocation stream. */
2275 compare_syms (arg1, arg2)
2280 asymbol **sym1 = (asymbol **) arg1;
2281 asymbol **sym2 = (asymbol **) arg2;
2282 unsigned int count1, count2;
2284 /* Get relocation count for each symbol. Note that the count
2285 is stored in the udata pointer for section symbols! */
2286 if ((*sym1)->flags & BSF_SECTION_SYM)
2287 count1 = (*sym1)->udata.i;
2289 count1 = som_symbol_data (*sym1)->reloc_count;
2291 if ((*sym2)->flags & BSF_SECTION_SYM)
2292 count2 = (*sym2)->udata.i;
2294 count2 = som_symbol_data (*sym2)->reloc_count;
2296 /* Return the appropriate value. */
2297 if (count1 < count2)
2299 else if (count1 > count2)
2304 /* Return -1, 0, 1 indicating the relative ordering of subspace1
2308 compare_subspaces (arg1, arg2)
2313 asection **subspace1 = (asection **) arg1;
2314 asection **subspace2 = (asection **) arg2;
2315 unsigned int count1, count2;
2317 if ((*subspace1)->target_index < (*subspace2)->target_index)
2319 else if ((*subspace2)->target_index < (*subspace1)->target_index)
2325 /* Perform various work in preparation for emitting the fixup stream. */
2328 som_prep_for_fixups (abfd, syms, num_syms)
2331 unsigned long num_syms;
2335 asymbol **sorted_syms;
2337 /* Most SOM relocations involving a symbol have a length which is
2338 dependent on the index of the symbol. So symbols which are
2339 used often in relocations should have a small index. */
2341 /* First initialize the counters for each symbol. */
2342 for (i = 0; i < num_syms; i++)
2344 /* Handle a section symbol; these have no pointers back to the
2345 SOM symbol info. So we just use the udata field to hold the
2346 relocation count. */
2347 if (som_symbol_data (syms[i]) == NULL
2348 || syms[i]->flags & BSF_SECTION_SYM)
2350 syms[i]->flags |= BSF_SECTION_SYM;
2351 syms[i]->udata.i = 0;
2354 som_symbol_data (syms[i])->reloc_count = 0;
2357 /* Now that the counters are initialized, make a weighted count
2358 of how often a given symbol is used in a relocation. */
2359 for (section = abfd->sections; section != NULL; section = section->next)
2363 /* Does this section have any relocations? */
2364 if (section->reloc_count <= 0)
2367 /* Walk through each relocation for this section. */
2368 for (i = 1; i < section->reloc_count; i++)
2370 arelent *reloc = section->orelocation[i];
2373 /* A relocation against a symbol in the *ABS* section really
2374 does not have a symbol. Likewise if the symbol isn't associated
2375 with any section. */
2376 if (reloc->sym_ptr_ptr == NULL
2377 || bfd_is_abs_section ((*reloc->sym_ptr_ptr)->section))
2380 /* Scaling to encourage symbols involved in R_DP_RELATIVE
2381 and R_CODE_ONE_SYMBOL relocations to come first. These
2382 two relocations have single byte versions if the symbol
2383 index is very small. */
2384 if (reloc->howto->type == R_DP_RELATIVE
2385 || reloc->howto->type == R_CODE_ONE_SYMBOL)
2390 /* Handle section symbols by storing the count in the udata
2391 field. It will not be used and the count is very important
2392 for these symbols. */
2393 if ((*reloc->sym_ptr_ptr)->flags & BSF_SECTION_SYM)
2395 (*reloc->sym_ptr_ptr)->udata.i =
2396 (*reloc->sym_ptr_ptr)->udata.i + scale;
2400 /* A normal symbol. Increment the count. */
2401 som_symbol_data (*reloc->sym_ptr_ptr)->reloc_count += scale;
2405 /* Sort a copy of the symbol table, rather than the canonical
2406 output symbol table. */
2407 sorted_syms = (asymbol **) bfd_zalloc (abfd, num_syms * sizeof (asymbol *));
2408 memcpy (sorted_syms, syms, num_syms * sizeof (asymbol *));
2409 qsort (sorted_syms, num_syms, sizeof (asymbol *), compare_syms);
2410 obj_som_sorted_syms (abfd) = sorted_syms;
2412 /* Compute the symbol indexes, they will be needed by the relocation
2414 for (i = 0; i < num_syms; i++)
2416 /* A section symbol. Again, there is no pointer to backend symbol
2417 information, so we reuse the udata field again. */
2418 if (sorted_syms[i]->flags & BSF_SECTION_SYM)
2419 sorted_syms[i]->udata.i = i;
2421 som_symbol_data (sorted_syms[i])->index = i;
2426 som_write_fixups (abfd, current_offset, total_reloc_sizep)
2428 unsigned long current_offset;
2429 unsigned int *total_reloc_sizep;
2432 /* Chunk of memory that we can use as buffer space, then throw
2434 unsigned char tmp_space[SOM_TMP_BUFSIZE];
2436 unsigned int total_reloc_size = 0;
2437 unsigned int subspace_reloc_size = 0;
2438 unsigned int num_spaces = obj_som_file_hdr (abfd)->space_total;
2439 asection *section = abfd->sections;
2441 memset (tmp_space, 0, SOM_TMP_BUFSIZE);
2444 /* All the fixups for a particular subspace are emitted in a single
2445 stream. All the subspaces for a particular space are emitted
2448 So, to get all the locations correct one must iterate through all the
2449 spaces, for each space iterate through its subspaces and output a
2451 for (i = 0; i < num_spaces; i++)
2453 asection *subsection;
2456 while (!som_is_space (section))
2457 section = section->next;
2459 /* Now iterate through each of its subspaces. */
2460 for (subsection = abfd->sections;
2462 subsection = subsection->next)
2464 int reloc_offset, current_rounding_mode;
2466 /* Find a subspace of this space. */
2467 if (!som_is_subspace (subsection)
2468 || !som_is_container (section, subsection))
2471 /* If this subspace does not have real data, then we are
2473 if ((subsection->flags & SEC_HAS_CONTENTS) == 0)
2475 som_section_data (subsection)->subspace_dict->fixup_request_index
2480 /* This subspace has some relocations. Put the relocation stream
2481 index into the subspace record. */
2482 som_section_data (subsection)->subspace_dict->fixup_request_index
2485 /* To make life easier start over with a clean slate for
2486 each subspace. Seek to the start of the relocation stream
2487 for this subspace in preparation for writing out its fixup
2489 if (bfd_seek (abfd, current_offset + total_reloc_size, SEEK_SET) < 0)
2492 /* Buffer space has already been allocated. Just perform some
2493 initialization here. */
2495 subspace_reloc_size = 0;
2497 som_initialize_reloc_queue (reloc_queue);
2498 current_rounding_mode = R_N_MODE;
2500 /* Translate each BFD relocation into one or more SOM
2502 for (j = 0; j < subsection->reloc_count; j++)
2504 arelent *bfd_reloc = subsection->orelocation[j];
2508 /* Get the symbol number. Remember it's stored in a
2509 special place for section symbols. */
2510 if ((*bfd_reloc->sym_ptr_ptr)->flags & BSF_SECTION_SYM)
2511 sym_num = (*bfd_reloc->sym_ptr_ptr)->udata.i;
2513 sym_num = som_symbol_data (*bfd_reloc->sym_ptr_ptr)->index;
2515 /* If there is not enough room for the next couple relocations,
2516 then dump the current buffer contents now. Also reinitialize
2517 the relocation queue.
2519 No single BFD relocation could ever translate into more
2520 than 100 bytes of SOM relocations (20bytes is probably the
2521 upper limit, but leave lots of space for growth). */
2522 if (p - tmp_space + 100 > SOM_TMP_BUFSIZE)
2524 if (bfd_write ((PTR) tmp_space, p - tmp_space, 1, abfd)
2529 som_initialize_reloc_queue (reloc_queue);
2532 /* Emit R_NO_RELOCATION fixups to map any bytes which were
2534 skip = bfd_reloc->address - reloc_offset;
2535 p = som_reloc_skip (abfd, skip, p,
2536 &subspace_reloc_size, reloc_queue);
2538 /* Update reloc_offset for the next iteration.
2540 Many relocations do not consume input bytes. They
2541 are markers, or set state necessary to perform some
2542 later relocation. */
2543 switch (bfd_reloc->howto->type)
2545 /* This only needs to handle relocations that may be
2546 made by hppa_som_gen_reloc. */
2557 reloc_offset = bfd_reloc->address;
2561 reloc_offset = bfd_reloc->address + 4;
2565 /* Now the actual relocation we care about. */
2566 switch (bfd_reloc->howto->type)
2570 p = som_reloc_call (abfd, p, &subspace_reloc_size,
2571 bfd_reloc, sym_num, reloc_queue);
2574 case R_CODE_ONE_SYMBOL:
2576 /* Account for any addend. */
2577 if (bfd_reloc->addend)
2578 p = som_reloc_addend (abfd, bfd_reloc->addend, p,
2579 &subspace_reloc_size, reloc_queue);
2583 bfd_put_8 (abfd, bfd_reloc->howto->type + sym_num, p);
2584 subspace_reloc_size += 1;
2587 else if (sym_num < 0x100)
2589 bfd_put_8 (abfd, bfd_reloc->howto->type + 32, p);
2590 bfd_put_8 (abfd, sym_num, p + 1);
2591 p = try_prev_fixup (abfd, &subspace_reloc_size, p,
2594 else if (sym_num < 0x10000000)
2596 bfd_put_8 (abfd, bfd_reloc->howto->type + 33, p);
2597 bfd_put_8 (abfd, sym_num >> 16, p + 1);
2598 bfd_put_16 (abfd, sym_num, p + 2);
2599 p = try_prev_fixup (abfd, &subspace_reloc_size,
2606 case R_DATA_ONE_SYMBOL:
2610 /* Account for any addend using R_DATA_OVERRIDE. */
2611 if (bfd_reloc->howto->type != R_DATA_ONE_SYMBOL
2612 && bfd_reloc->addend)
2613 p = som_reloc_addend (abfd, bfd_reloc->addend, p,
2614 &subspace_reloc_size, reloc_queue);
2616 if (sym_num < 0x100)
2618 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2619 bfd_put_8 (abfd, sym_num, p + 1);
2620 p = try_prev_fixup (abfd, &subspace_reloc_size, p,
2623 else if (sym_num < 0x10000000)
2625 bfd_put_8 (abfd, bfd_reloc->howto->type + 1, p);
2626 bfd_put_8 (abfd, sym_num >> 16, p + 1);
2627 bfd_put_16 (abfd, sym_num, p + 2);
2628 p = try_prev_fixup (abfd, &subspace_reloc_size,
2638 arelent *tmp_reloc = NULL;
2639 bfd_put_8 (abfd, R_ENTRY, p);
2641 /* R_ENTRY relocations have 64 bits of associated
2642 data. Unfortunately the addend field of a bfd
2643 relocation is only 32 bits. So, we split up
2644 the 64bit unwind information and store part in
2645 the R_ENTRY relocation, and the rest in the R_EXIT
2647 bfd_put_32 (abfd, bfd_reloc->addend, p + 1);
2649 /* Find the next R_EXIT relocation. */
2650 for (tmp = j; tmp < subsection->reloc_count; tmp++)
2652 tmp_reloc = subsection->orelocation[tmp];
2653 if (tmp_reloc->howto->type == R_EXIT)
2657 if (tmp == subsection->reloc_count)
2660 bfd_put_32 (abfd, tmp_reloc->addend, p + 5);
2661 p = try_prev_fixup (abfd, &subspace_reloc_size,
2670 /* If this relocation requests the current rounding
2671 mode, then it is redundant. */
2672 if (bfd_reloc->howto->type != current_rounding_mode)
2674 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2675 subspace_reloc_size += 1;
2677 current_rounding_mode = bfd_reloc->howto->type;
2686 bfd_put_8 (abfd, bfd_reloc->howto->type, p);
2687 subspace_reloc_size += 1;
2691 /* Put a "R_RESERVED" relocation in the stream if
2692 we hit something we do not understand. The linker
2693 will complain loudly if this ever happens. */
2695 bfd_put_8 (abfd, 0xff, p);
2696 subspace_reloc_size += 1;
2702 /* Last BFD relocation for a subspace has been processed.
2703 Map the rest of the subspace with R_NO_RELOCATION fixups. */
2704 p = som_reloc_skip (abfd, bfd_section_size (abfd, subsection)
2706 p, &subspace_reloc_size, reloc_queue);
2708 /* Scribble out the relocations. */
2709 if (bfd_write ((PTR) tmp_space, p - tmp_space, 1, abfd)
2714 total_reloc_size += subspace_reloc_size;
2715 som_section_data (subsection)->subspace_dict->fixup_request_quantity
2716 = subspace_reloc_size;
2718 section = section->next;
2720 *total_reloc_sizep = total_reloc_size;
2724 /* Write out the space/subspace string table. */
2727 som_write_space_strings (abfd, current_offset, string_sizep)
2729 unsigned long current_offset;
2730 unsigned int *string_sizep;
2732 /* Chunk of memory that we can use as buffer space, then throw
2734 unsigned char tmp_space[SOM_TMP_BUFSIZE];
2736 unsigned int strings_size = 0;
2739 memset (tmp_space, 0, SOM_TMP_BUFSIZE);
2742 /* Seek to the start of the space strings in preparation for writing
2744 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
2747 /* Walk through all the spaces and subspaces (order is not important)
2748 building up and writing string table entries for their names. */
2749 for (section = abfd->sections; section != NULL; section = section->next)
2753 /* Only work with space/subspaces; avoid any other sections
2754 which might have been made (.text for example). */
2755 if (!som_is_space (section) && !som_is_subspace (section))
2758 /* Get the length of the space/subspace name. */
2759 length = strlen (section->name);
2761 /* If there is not enough room for the next entry, then dump the
2762 current buffer contents now. Each entry will take 4 bytes to
2763 hold the string length + the string itself + null terminator. */
2764 if (p - tmp_space + 5 + length > SOM_TMP_BUFSIZE)
2766 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd)
2769 /* Reset to beginning of the buffer space. */
2773 /* First element in a string table entry is the length of the
2774 string. Alignment issues are already handled. */
2775 bfd_put_32 (abfd, length, p);
2779 /* Record the index in the space/subspace records. */
2780 if (som_is_space (section))
2781 som_section_data (section)->space_dict->name.n_strx = strings_size;
2783 som_section_data (section)->subspace_dict->name.n_strx = strings_size;
2785 /* Next comes the string itself + a null terminator. */
2786 strcpy (p, section->name);
2788 strings_size += length + 1;
2790 /* Always align up to the next word boundary. */
2791 while (strings_size % 4)
2793 bfd_put_8 (abfd, 0, p);
2799 /* Done with the space/subspace strings. Write out any information
2800 contained in a partial block. */
2801 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd) != p - tmp_space)
2803 *string_sizep = strings_size;
2807 /* Write out the symbol string table. */
2810 som_write_symbol_strings (abfd, current_offset, syms, num_syms, string_sizep)
2812 unsigned long current_offset;
2814 unsigned int num_syms;
2815 unsigned int *string_sizep;
2819 /* Chunk of memory that we can use as buffer space, then throw
2821 unsigned char tmp_space[SOM_TMP_BUFSIZE];
2823 unsigned int strings_size = 0;
2825 memset (tmp_space, 0, SOM_TMP_BUFSIZE);
2828 /* Seek to the start of the space strings in preparation for writing
2830 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
2833 for (i = 0; i < num_syms; i++)
2835 int length = strlen (syms[i]->name);
2837 /* If there is not enough room for the next entry, then dump the
2838 current buffer contents now. */
2839 if (p - tmp_space + 5 + length > SOM_TMP_BUFSIZE)
2841 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd)
2844 /* Reset to beginning of the buffer space. */
2848 /* First element in a string table entry is the length of the
2849 string. This must always be 4 byte aligned. This is also
2850 an appropriate time to fill in the string index field in the
2851 symbol table entry. */
2852 bfd_put_32 (abfd, length, p);
2856 /* Next comes the string itself + a null terminator. */
2857 strcpy (p, syms[i]->name);
2859 som_symbol_data(syms[i])->stringtab_offset = strings_size;
2861 strings_size += length + 1;
2863 /* Always align up to the next word boundary. */
2864 while (strings_size % 4)
2866 bfd_put_8 (abfd, 0, p);
2872 /* Scribble out any partial block. */
2873 if (bfd_write ((PTR) &tmp_space[0], p - tmp_space, 1, abfd) != p - tmp_space)
2876 *string_sizep = strings_size;
2880 /* Compute variable information to be placed in the SOM headers,
2881 space/subspace dictionaries, relocation streams, etc. Begin
2882 writing parts of the object file. */
2885 som_begin_writing (abfd)
2888 unsigned long current_offset = 0;
2889 int strings_size = 0;
2890 unsigned int total_reloc_size = 0;
2891 unsigned long num_spaces, num_subspaces, num_syms, i;
2893 asymbol **syms = bfd_get_outsymbols (abfd);
2894 unsigned int total_subspaces = 0;
2895 struct som_exec_auxhdr *exec_header = NULL;
2897 /* The file header will always be first in an object file,
2898 everything else can be in random locations. To keep things
2899 "simple" BFD will lay out the object file in the manner suggested
2900 by the PRO ABI for PA-RISC Systems. */
2902 /* Before any output can really begin offsets for all the major
2903 portions of the object file must be computed. So, starting
2904 with the initial file header compute (and sometimes write)
2905 each portion of the object file. */
2907 /* Make room for the file header, it's contents are not complete
2908 yet, so it can not be written at this time. */
2909 current_offset += sizeof (struct header);
2911 /* Any auxiliary headers will follow the file header. Right now
2912 we support only the copyright and version headers. */
2913 obj_som_file_hdr (abfd)->aux_header_location = current_offset;
2914 obj_som_file_hdr (abfd)->aux_header_size = 0;
2915 if (abfd->flags & (EXEC_P | DYNAMIC))
2917 /* Parts of the exec header will be filled in later, so
2918 delay writing the header itself. Fill in the defaults,
2919 and write it later. */
2920 current_offset += sizeof (struct som_exec_auxhdr);
2921 obj_som_file_hdr (abfd)->aux_header_size
2922 += sizeof (struct som_exec_auxhdr);
2923 exec_header = obj_som_exec_hdr (abfd);
2924 exec_header->som_auxhdr.type = EXEC_AUX_ID;
2925 exec_header->som_auxhdr.length = 40;
2927 if (obj_som_version_hdr (abfd) != NULL)
2931 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
2934 /* Write the aux_id structure and the string length. */
2935 len = sizeof (struct aux_id) + sizeof (unsigned int);
2936 obj_som_file_hdr (abfd)->aux_header_size += len;
2937 current_offset += len;
2938 if (bfd_write ((PTR) obj_som_version_hdr (abfd), len, 1, abfd) != len)
2941 /* Write the version string. */
2942 len = obj_som_version_hdr (abfd)->header_id.length - sizeof (int);
2943 obj_som_file_hdr (abfd)->aux_header_size += len;
2944 current_offset += len;
2945 if (bfd_write ((PTR) obj_som_version_hdr (abfd)->user_string,
2946 len, 1, abfd) != len)
2950 if (obj_som_copyright_hdr (abfd) != NULL)
2954 if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
2957 /* Write the aux_id structure and the string length. */
2958 len = sizeof (struct aux_id) + sizeof (unsigned int);
2959 obj_som_file_hdr (abfd)->aux_header_size += len;
2960 current_offset += len;
2961 if (bfd_write ((PTR) obj_som_copyright_hdr (abfd), len, 1, abfd) != len)
2964 /* Write the copyright string. */
2965 len = obj_som_copyright_hdr (abfd)->header_id.length - sizeof (int);
2966 obj_som_file_hdr (abfd)->aux_header_size += len;
2967 current_offset += len;
2968 if (bfd_write ((PTR) obj_som_copyright_hdr (abfd)->copyright,
2969 len, 1, abfd) != len)
2973 /* Next comes the initialization pointers; we have no initialization
2974 pointers, so current offset does not change. */
2975 obj_som_file_hdr (abfd)->init_array_location = current_offset;
2976 obj_som_file_hdr (abfd)->init_array_total = 0;
2978 /* Next are the space records. These are fixed length records.
2980 Count the number of spaces to determine how much room is needed
2981 in the object file for the space records.
2983 The names of the spaces are stored in a separate string table,
2984 and the index for each space into the string table is computed
2985 below. Therefore, it is not possible to write the space headers
2987 num_spaces = som_count_spaces (abfd);
2988 obj_som_file_hdr (abfd)->space_location = current_offset;
2989 obj_som_file_hdr (abfd)->space_total = num_spaces;
2990 current_offset += num_spaces * sizeof (struct space_dictionary_record);
2992 /* Next are the subspace records. These are fixed length records.
2994 Count the number of subspaes to determine how much room is needed
2995 in the object file for the subspace records.
2997 A variety if fields in the subspace record are still unknown at
2998 this time (index into string table, fixup stream location/size, etc). */
2999 num_subspaces = som_count_subspaces (abfd);
3000 obj_som_file_hdr (abfd)->subspace_location = current_offset;
3001 obj_som_file_hdr (abfd)->subspace_total = num_subspaces;
3002 current_offset += num_subspaces * sizeof (struct subspace_dictionary_record);
3004 /* Next is the string table for the space/subspace names. We will
3005 build and write the string table on the fly. At the same time
3006 we will fill in the space/subspace name index fields. */
3008 /* The string table needs to be aligned on a word boundary. */
3009 if (current_offset % 4)
3010 current_offset += (4 - (current_offset % 4));
3012 /* Mark the offset of the space/subspace string table in the
3014 obj_som_file_hdr (abfd)->space_strings_location = current_offset;
3016 /* Scribble out the space strings. */
3017 if (som_write_space_strings (abfd, current_offset, &strings_size) == false)
3020 /* Record total string table size in the header and update the
3022 obj_som_file_hdr (abfd)->space_strings_size = strings_size;
3023 current_offset += strings_size;
3025 /* Next is the symbol table. These are fixed length records.
3027 Count the number of symbols to determine how much room is needed
3028 in the object file for the symbol table.
3030 The names of the symbols are stored in a separate string table,
3031 and the index for each symbol name into the string table is computed
3032 below. Therefore, it is not possible to write the symobl table
3034 num_syms = bfd_get_symcount (abfd);
3035 obj_som_file_hdr (abfd)->symbol_location = current_offset;
3036 obj_som_file_hdr (abfd)->symbol_total = num_syms;
3037 current_offset += num_syms * sizeof (struct symbol_dictionary_record);
3039 /* Next are the symbol strings.
3040 Align them to a word boundary. */
3041 if (current_offset % 4)
3042 current_offset += (4 - (current_offset % 4));
3043 obj_som_file_hdr (abfd)->symbol_strings_location = current_offset;
3045 /* Scribble out the symbol strings. */
3046 if (som_write_symbol_strings (abfd, current_offset, syms,
3047 num_syms, &strings_size)
3051 /* Record total string table size in header and update the
3053 obj_som_file_hdr (abfd)->symbol_strings_size = strings_size;
3054 current_offset += strings_size;
3056 /* Next is the compiler records. We do not use these. */
3057 obj_som_file_hdr (abfd)->compiler_location = current_offset;
3058 obj_som_file_hdr (abfd)->compiler_total = 0;
3060 /* Now compute the file positions for the loadable subspaces, taking
3061 care to make sure everything stays properly aligned. */
3063 section = abfd->sections;
3064 for (i = 0; i < num_spaces; i++)
3066 asection *subsection;
3068 unsigned int subspace_offset = 0;
3071 while (!som_is_space (section))
3072 section = section->next;
3075 /* Now look for all its subspaces. */
3076 for (subsection = abfd->sections;
3078 subsection = subsection->next)
3081 if (!som_is_subspace (subsection)
3082 || !som_is_container (section, subsection)
3083 || (subsection->flags & SEC_ALLOC) == 0)
3086 /* If this is the first subspace in the space, and we are
3087 building an executable, then take care to make sure all
3088 the alignments are correct and update the exec header. */
3090 && (abfd->flags & (EXEC_P | DYNAMIC)))
3092 /* Demand paged executables have each space aligned to a
3093 page boundary. Sharable executables (write-protected
3094 text) have just the private (aka data & bss) space aligned
3095 to a page boundary. Ugh. Not true for HPUX.
3097 The HPUX kernel requires the text to always be page aligned
3098 within the file regardless of the executable's type. */
3099 if (abfd->flags & (D_PAGED | DYNAMIC)
3100 || (subsection->flags & SEC_CODE)
3101 || ((abfd->flags & WP_TEXT)
3102 && (subsection->flags & SEC_DATA)))
3103 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
3105 /* Update the exec header. */
3106 if (subsection->flags & SEC_CODE && exec_header->exec_tfile == 0)
3108 exec_header->exec_tmem = section->vma;
3109 exec_header->exec_tfile = current_offset;
3111 if (subsection->flags & SEC_DATA && exec_header->exec_dfile == 0)
3113 exec_header->exec_dmem = section->vma;
3114 exec_header->exec_dfile = current_offset;
3117 /* Keep track of exactly where we are within a particular
3118 space. This is necessary as the braindamaged HPUX
3119 loader will create holes between subspaces *and*
3120 subspace alignments are *NOT* preserved. What a crock. */
3121 subspace_offset = subsection->vma;
3123 /* Only do this for the first subspace within each space. */
3126 else if (abfd->flags & (EXEC_P | DYNAMIC))
3128 /* The braindamaged HPUX loader may have created a hole
3129 between two subspaces. It is *not* sufficient to use
3130 the alignment specifications within the subspaces to
3131 account for these holes -- I've run into at least one
3132 case where the loader left one code subspace unaligned
3133 in a final executable.
3135 To combat this we keep a current offset within each space,
3136 and use the subspace vma fields to detect and preserve
3137 holes. What a crock!
3139 ps. This is not necessary for unloadable space/subspaces. */
3140 current_offset += subsection->vma - subspace_offset;
3141 if (subsection->flags & SEC_CODE)
3142 exec_header->exec_tsize += subsection->vma - subspace_offset;
3144 exec_header->exec_dsize += subsection->vma - subspace_offset;
3145 subspace_offset += subsection->vma - subspace_offset;
3149 subsection->target_index = total_subspaces++;
3150 /* This is real data to be loaded from the file. */
3151 if (subsection->flags & SEC_LOAD)
3153 /* Update the size of the code & data. */
3154 if (abfd->flags & (EXEC_P | DYNAMIC)
3155 && subsection->flags & SEC_CODE)
3156 exec_header->exec_tsize += subsection->_cooked_size;
3157 else if (abfd->flags & (EXEC_P | DYNAMIC)
3158 && subsection->flags & SEC_DATA)
3159 exec_header->exec_dsize += subsection->_cooked_size;
3160 som_section_data (subsection)->subspace_dict->file_loc_init_value
3162 subsection->filepos = current_offset;
3163 current_offset += bfd_section_size (abfd, subsection);
3164 subspace_offset += bfd_section_size (abfd, subsection);
3166 /* Looks like uninitialized data. */
3169 /* Update the size of the bss section. */
3170 if (abfd->flags & (EXEC_P | DYNAMIC))
3171 exec_header->exec_bsize += subsection->_cooked_size;
3173 som_section_data (subsection)->subspace_dict->file_loc_init_value
3175 som_section_data (subsection)->subspace_dict->
3176 initialization_length = 0;
3179 /* Goto the next section. */
3180 section = section->next;
3183 /* Finally compute the file positions for unloadable subspaces.
3184 If building an executable, start the unloadable stuff on its
3187 if (abfd->flags & (EXEC_P | DYNAMIC))
3188 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
3190 obj_som_file_hdr (abfd)->unloadable_sp_location = current_offset;
3191 section = abfd->sections;
3192 for (i = 0; i < num_spaces; i++)
3194 asection *subsection;
3197 while (!som_is_space (section))
3198 section = section->next;
3200 if (abfd->flags & (EXEC_P | DYNAMIC))
3201 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
3203 /* Now look for all its subspaces. */
3204 for (subsection = abfd->sections;
3206 subsection = subsection->next)
3209 if (!som_is_subspace (subsection)
3210 || !som_is_container (section, subsection)
3211 || (subsection->flags & SEC_ALLOC) != 0)
3214 subsection->target_index = total_subspaces++;
3215 /* This is real data to be loaded from the file. */
3216 if ((subsection->flags & SEC_LOAD) == 0)
3218 som_section_data (subsection)->subspace_dict->file_loc_init_value
3220 subsection->filepos = current_offset;
3221 current_offset += bfd_section_size (abfd, subsection);
3223 /* Looks like uninitialized data. */
3226 som_section_data (subsection)->subspace_dict->file_loc_init_value
3228 som_section_data (subsection)->subspace_dict->
3229 initialization_length = bfd_section_size (abfd, subsection);
3232 /* Goto the next section. */
3233 section = section->next;
3236 /* If building an executable, then make sure to seek to and write
3237 one byte at the end of the file to make sure any necessary
3238 zeros are filled in. Ugh. */
3239 if (abfd->flags & (EXEC_P | DYNAMIC))
3240 current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
3241 if (bfd_seek (abfd, current_offset - 1, SEEK_SET) < 0)
3243 if (bfd_write ((PTR) "", 1, 1, abfd) != 1)
3246 obj_som_file_hdr (abfd)->unloadable_sp_size
3247 = current_offset - obj_som_file_hdr (abfd)->unloadable_sp_location;
3249 /* Loader fixups are not supported in any way shape or form. */
3250 obj_som_file_hdr (abfd)->loader_fixup_location = 0;
3251 obj_som_file_hdr (abfd)->loader_fixup_total = 0;
3253 /* Done. Store the total size of the SOM so far. */
3254 obj_som_file_hdr (abfd)->som_length = current_offset;
3259 /* Finally, scribble out the various headers to the disk. */
3262 som_finish_writing (abfd)
3265 int num_spaces = som_count_spaces (abfd);
3267 int subspace_index = 0;
3270 unsigned long current_offset;
3271 unsigned int total_reloc_size;
3273 /* Do prep work before handling fixups. */
3274 som_prep_for_fixups (abfd,
3275 bfd_get_outsymbols (abfd),
3276 bfd_get_symcount (abfd));
3278 current_offset = obj_som_file_hdr (abfd)->som_length;
3280 /* At the end of the file is the fixup stream which starts on a
3282 if (current_offset % 4)
3283 current_offset += (4 - (current_offset % 4));
3284 obj_som_file_hdr (abfd)->fixup_request_location = current_offset;
3286 /* Write the fixups and update fields in subspace headers which
3287 relate to the fixup stream. */
3288 if (som_write_fixups (abfd, current_offset, &total_reloc_size) == false)
3291 /* Record the total size of the fixup stream in the file header. */
3292 obj_som_file_hdr (abfd)->fixup_request_total = total_reloc_size;
3294 obj_som_file_hdr (abfd)->som_length += total_reloc_size;
3296 /* Now that the symbol table information is complete, build and
3297 write the symbol table. */
3298 if (som_build_and_write_symbol_table (abfd) == false)
3301 /* Subspaces are written first so that we can set up information
3302 about them in their containing spaces as the subspace is written. */
3304 /* Seek to the start of the subspace dictionary records. */
3305 location = obj_som_file_hdr (abfd)->subspace_location;
3306 if (bfd_seek (abfd, location, SEEK_SET) < 0)
3309 section = abfd->sections;
3310 /* Now for each loadable space write out records for its subspaces. */
3311 for (i = 0; i < num_spaces; i++)
3313 asection *subsection;
3316 while (!som_is_space (section))
3317 section = section->next;
3319 /* Now look for all its subspaces. */
3320 for (subsection = abfd->sections;
3322 subsection = subsection->next)
3325 /* Skip any section which does not correspond to a space
3326 or subspace. Or does not have SEC_ALLOC set (and therefore
3327 has no real bits on the disk). */
3328 if (!som_is_subspace (subsection)
3329 || !som_is_container (section, subsection)
3330 || (subsection->flags & SEC_ALLOC) == 0)
3333 /* If this is the first subspace for this space, then save
3334 the index of the subspace in its containing space. Also
3335 set "is_loadable" in the containing space. */
3337 if (som_section_data (section)->space_dict->subspace_quantity == 0)
3339 som_section_data (section)->space_dict->is_loadable = 1;
3340 som_section_data (section)->space_dict->subspace_index
3344 /* Increment the number of subspaces seen and the number of
3345 subspaces contained within the current space. */
3347 som_section_data (section)->space_dict->subspace_quantity++;
3349 /* Mark the index of the current space within the subspace's
3350 dictionary record. */
3351 som_section_data (subsection)->subspace_dict->space_index = i;
3353 /* Dump the current subspace header. */
3354 if (bfd_write ((PTR) som_section_data (subsection)->subspace_dict,
3355 sizeof (struct subspace_dictionary_record), 1, abfd)
3356 != sizeof (struct subspace_dictionary_record))
3359 /* Goto the next section. */
3360 section = section->next;
3363 /* Now repeat the process for unloadable subspaces. */
3364 section = abfd->sections;
3365 /* Now for each space write out records for its subspaces. */
3366 for (i = 0; i < num_spaces; i++)
3368 asection *subsection;
3371 while (!som_is_space (section))
3372 section = section->next;
3374 /* Now look for all its subspaces. */
3375 for (subsection = abfd->sections;
3377 subsection = subsection->next)
3380 /* Skip any section which does not correspond to a space or
3381 subspace, or which SEC_ALLOC set (and therefore handled
3382 in the loadable spaces/subspaces code above). */
3384 if (!som_is_subspace (subsection)
3385 || !som_is_container (section, subsection)
3386 || (subsection->flags & SEC_ALLOC) != 0)
3389 /* If this is the first subspace for this space, then save
3390 the index of the subspace in its containing space. Clear
3393 if (som_section_data (section)->space_dict->subspace_quantity == 0)
3395 som_section_data (section)->space_dict->is_loadable = 0;
3396 som_section_data (section)->space_dict->subspace_index
3400 /* Increment the number of subspaces seen and the number of
3401 subspaces contained within the current space. */
3402 som_section_data (section)->space_dict->subspace_quantity++;
3405 /* Mark the index of the current space within the subspace's
3406 dictionary record. */
3407 som_section_data (subsection)->subspace_dict->space_index = i;
3409 /* Dump this subspace header. */
3410 if (bfd_write ((PTR) som_section_data (subsection)->subspace_dict,
3411 sizeof (struct subspace_dictionary_record), 1, abfd)
3412 != sizeof (struct subspace_dictionary_record))
3415 /* Goto the next section. */
3416 section = section->next;
3419 /* All the subspace dictiondary records are written, and all the
3420 fields are set up in the space dictionary records.
3422 Seek to the right location and start writing the space
3423 dictionary records. */
3424 location = obj_som_file_hdr (abfd)->space_location;
3425 if (bfd_seek (abfd, location, SEEK_SET) < 0)
3428 section = abfd->sections;
3429 for (i = 0; i < num_spaces; i++)
3433 while (!som_is_space (section))
3434 section = section->next;
3436 /* Dump its header */
3437 if (bfd_write ((PTR) som_section_data (section)->space_dict,
3438 sizeof (struct space_dictionary_record), 1, abfd)
3439 != sizeof (struct space_dictionary_record))
3442 /* Goto the next section. */
3443 section = section->next;
3446 /* Setting of the system_id has to happen very late now that copying of
3447 BFD private data happens *after* section contents are set. */
3448 if (abfd->flags & (EXEC_P | DYNAMIC))
3449 obj_som_file_hdr(abfd)->system_id = obj_som_exec_data (abfd)->system_id;
3450 else if (bfd_get_mach (abfd) == pa11)
3451 obj_som_file_hdr(abfd)->system_id = CPU_PA_RISC1_1;
3453 obj_som_file_hdr(abfd)->system_id = CPU_PA_RISC1_0;
3455 /* Compute the checksum for the file header just before writing
3456 the header to disk. */
3457 obj_som_file_hdr (abfd)->checksum = som_compute_checksum (abfd);
3459 /* Only thing left to do is write out the file header. It is always
3460 at location zero. Seek there and write it. */
3461 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) < 0)
3463 if (bfd_write ((PTR) obj_som_file_hdr (abfd),
3464 sizeof (struct header), 1, abfd)
3465 != sizeof (struct header))
3468 /* Now write the exec header. */
3469 if (abfd->flags & (EXEC_P | DYNAMIC))
3472 struct som_exec_auxhdr *exec_header;
3474 exec_header = obj_som_exec_hdr (abfd);
3475 exec_header->exec_entry = bfd_get_start_address (abfd);
3476 exec_header->exec_flags = obj_som_exec_data (abfd)->exec_flags;
3478 /* Oh joys. Ram some of the BSS data into the DATA section
3479 to be compatable with how the hp linker makes objects
3480 (saves memory space). */
3481 tmp = exec_header->exec_dsize;
3482 tmp = SOM_ALIGN (tmp, PA_PAGESIZE);
3483 exec_header->exec_bsize -= (tmp - exec_header->exec_dsize);
3484 if (exec_header->exec_bsize < 0)
3485 exec_header->exec_bsize = 0;
3486 exec_header->exec_dsize = tmp;
3488 if (bfd_seek (abfd, obj_som_file_hdr (abfd)->aux_header_location,
3492 if (bfd_write ((PTR) exec_header, AUX_HDR_SIZE, 1, abfd)
3499 /* Compute and return the checksum for a SOM file header. */
3501 static unsigned long
3502 som_compute_checksum (abfd)
3505 unsigned long checksum, count, i;
3506 unsigned long *buffer = (unsigned long *) obj_som_file_hdr (abfd);
3509 count = sizeof (struct header) / sizeof (unsigned long);
3510 for (i = 0; i < count; i++)
3511 checksum ^= *(buffer + i);
3517 som_bfd_derive_misc_symbol_info (abfd, sym, info)
3520 struct som_misc_symbol_info *info;
3523 memset (info, 0, sizeof (struct som_misc_symbol_info));
3525 /* The HP SOM linker requires detailed type information about
3526 all symbols (including undefined symbols!). Unfortunately,
3527 the type specified in an import/export statement does not
3528 always match what the linker wants. Severe braindamage. */
3530 /* Section symbols will not have a SOM symbol type assigned to
3531 them yet. Assign all section symbols type ST_DATA. */
3532 if (sym->flags & BSF_SECTION_SYM)
3533 info->symbol_type = ST_DATA;
3536 /* Common symbols must have scope SS_UNSAT and type
3537 ST_STORAGE or the linker will choke. */
3538 if (bfd_is_com_section (sym->section))
3540 info->symbol_scope = SS_UNSAT;
3541 info->symbol_type = ST_STORAGE;
3544 /* It is possible to have a symbol without an associated
3545 type. This happens if the user imported the symbol
3546 without a type and the symbol was never defined
3547 locally. If BSF_FUNCTION is set for this symbol, then
3548 assign it type ST_CODE (the HP linker requires undefined
3549 external functions to have type ST_CODE rather than ST_ENTRY). */
3550 else if ((som_symbol_data (sym)->som_type == SYMBOL_TYPE_UNKNOWN
3551 || som_symbol_data (sym)->som_type == SYMBOL_TYPE_CODE)
3552 && bfd_is_und_section (sym->section)
3553 && sym->flags & BSF_FUNCTION)
3554 info->symbol_type = ST_CODE;
3556 /* Handle function symbols which were defined in this file.
3557 They should have type ST_ENTRY. Also retrieve the argument
3558 relocation bits from the SOM backend information. */
3559 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_ENTRY
3560 || (som_symbol_data (sym)->som_type == SYMBOL_TYPE_CODE
3561 && (sym->flags & BSF_FUNCTION))
3562 || (som_symbol_data (sym)->som_type == SYMBOL_TYPE_UNKNOWN
3563 && (sym->flags & BSF_FUNCTION)))
3565 info->symbol_type = ST_ENTRY;
3566 info->arg_reloc = som_symbol_data (sym)->tc_data.hppa_arg_reloc;
3569 /* If the type is unknown at this point, it should be ST_DATA or
3570 ST_CODE (function/ST_ENTRY symbols were handled as special
3572 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_UNKNOWN)
3574 if (sym->section->flags & SEC_CODE)
3575 info->symbol_type = ST_CODE;
3577 info->symbol_type = ST_DATA;
3580 /* From now on it's a very simple mapping. */
3581 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_ABSOLUTE)
3582 info->symbol_type = ST_ABSOLUTE;
3583 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_CODE)
3584 info->symbol_type = ST_CODE;
3585 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_DATA)
3586 info->symbol_type = ST_DATA;
3587 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_MILLICODE)
3588 info->symbol_type = ST_MILLICODE;
3589 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_PLABEL)
3590 info->symbol_type = ST_PLABEL;
3591 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_PRI_PROG)
3592 info->symbol_type = ST_PRI_PROG;
3593 else if (som_symbol_data (sym)->som_type == SYMBOL_TYPE_SEC_PROG)
3594 info->symbol_type = ST_SEC_PROG;
3597 /* Now handle the symbol's scope. Exported data which is not
3598 in the common section has scope SS_UNIVERSAL. Note scope
3599 of common symbols was handled earlier! */
3600 if (bfd_is_und_section (sym->section))
3601 info->symbol_scope = SS_UNSAT;
3602 else if (sym->flags & BSF_EXPORT && ! bfd_is_com_section (sym->section))
3603 info->symbol_scope = SS_UNIVERSAL;
3604 /* Anything else which is not in the common section has scope
3606 else if (! bfd_is_com_section (sym->section))
3607 info->symbol_scope = SS_LOCAL;
3609 /* Now set the symbol_info field. It has no real meaning
3610 for undefined or common symbols, but the HP linker will
3611 choke if it's not set to some "reasonable" value. We
3612 use zero as a reasonable value. */
3613 if (bfd_is_com_section (sym->section)
3614 || bfd_is_und_section (sym->section)
3615 || bfd_is_abs_section (sym->section))
3616 info->symbol_info = 0;
3617 /* For all other symbols, the symbol_info field contains the
3618 subspace index of the space this symbol is contained in. */
3620 info->symbol_info = sym->section->target_index;
3622 /* Set the symbol's value. */
3623 info->symbol_value = sym->value + sym->section->vma;
3626 /* Build and write, in one big chunk, the entire symbol table for
3630 som_build_and_write_symbol_table (abfd)
3633 unsigned int num_syms = bfd_get_symcount (abfd);
3634 file_ptr symtab_location = obj_som_file_hdr (abfd)->symbol_location;
3635 asymbol **bfd_syms = obj_som_sorted_syms (abfd);
3636 struct symbol_dictionary_record *som_symtab = NULL;
3639 /* Compute total symbol table size and allocate a chunk of memory
3640 to hold the symbol table as we build it. */
3641 symtab_size = num_syms * sizeof (struct symbol_dictionary_record);
3642 som_symtab = (struct symbol_dictionary_record *) malloc (symtab_size);
3643 if (som_symtab == NULL && symtab_size != 0)
3645 bfd_set_error (bfd_error_no_memory);
3648 memset (som_symtab, 0, symtab_size);
3650 /* Walk over each symbol. */
3651 for (i = 0; i < num_syms; i++)
3653 struct som_misc_symbol_info info;
3655 /* This is really an index into the symbol strings table.
3656 By the time we get here, the index has already been
3657 computed and stored into the name field in the BFD symbol. */
3658 som_symtab[i].name.n_strx = som_symbol_data(bfd_syms[i])->stringtab_offset;
3660 /* Derive SOM information from the BFD symbol. */
3661 som_bfd_derive_misc_symbol_info (abfd, bfd_syms[i], &info);
3664 som_symtab[i].symbol_type = info.symbol_type;
3665 som_symtab[i].symbol_scope = info.symbol_scope;
3666 som_symtab[i].arg_reloc = info.arg_reloc;
3667 som_symtab[i].symbol_info = info.symbol_info;
3668 som_symtab[i].symbol_value = info.symbol_value;
3671 /* Everything is ready, seek to the right location and
3672 scribble out the symbol table. */
3673 if (bfd_seek (abfd, symtab_location, SEEK_SET) != 0)
3676 if (bfd_write ((PTR) som_symtab, symtab_size, 1, abfd) != symtab_size)
3679 if (som_symtab != NULL)
3683 if (som_symtab != NULL)
3688 /* Write an object in SOM format. */
3691 som_write_object_contents (abfd)
3694 if (abfd->output_has_begun == false)
3696 /* Set up fixed parts of the file, space, and subspace headers.
3697 Notify the world that output has begun. */
3698 som_prep_headers (abfd);
3699 abfd->output_has_begun = true;
3700 /* Start writing the object file. This include all the string
3701 tables, fixup streams, and other portions of the object file. */
3702 som_begin_writing (abfd);
3705 return (som_finish_writing (abfd));
3709 /* Read and save the string table associated with the given BFD. */
3712 som_slurp_string_table (abfd)
3717 /* Use the saved version if its available. */
3718 if (obj_som_stringtab (abfd) != NULL)
3721 /* I don't think this can currently happen, and I'm not sure it should
3722 really be an error, but it's better than getting unpredictable results
3723 from the host's malloc when passed a size of zero. */
3724 if (obj_som_stringtab_size (abfd) == 0)
3726 bfd_set_error (bfd_error_no_symbols);
3730 /* Allocate and read in the string table. */
3731 stringtab = bfd_zalloc (abfd, obj_som_stringtab_size (abfd));
3732 if (stringtab == NULL)
3734 bfd_set_error (bfd_error_no_memory);
3738 if (bfd_seek (abfd, obj_som_str_filepos (abfd), SEEK_SET) < 0)
3741 if (bfd_read (stringtab, obj_som_stringtab_size (abfd), 1, abfd)
3742 != obj_som_stringtab_size (abfd))
3745 /* Save our results and return success. */
3746 obj_som_stringtab (abfd) = stringtab;
3750 /* Return the amount of data (in bytes) required to hold the symbol
3751 table for this object. */
3754 som_get_symtab_upper_bound (abfd)
3757 if (!som_slurp_symbol_table (abfd))
3760 return (bfd_get_symcount (abfd) + 1) * (sizeof (asymbol *));
3763 /* Convert from a SOM subspace index to a BFD section. */
3766 bfd_section_from_som_symbol (abfd, symbol)
3768 struct symbol_dictionary_record *symbol;
3772 /* The meaning of the symbol_info field changes for functions
3773 within executables. So only use the quick symbol_info mapping for
3774 incomplete objects and non-function symbols in executables. */
3775 if ((abfd->flags & (EXEC_P | DYNAMIC)) == 0
3776 || (symbol->symbol_type != ST_ENTRY
3777 && symbol->symbol_type != ST_PRI_PROG
3778 && symbol->symbol_type != ST_SEC_PROG
3779 && symbol->symbol_type != ST_MILLICODE))
3781 unsigned int index = symbol->symbol_info;
3782 for (section = abfd->sections; section != NULL; section = section->next)
3783 if (section->target_index == index && som_is_subspace (section))
3786 /* Could be a symbol from an external library (such as an OMOS
3787 shared library). Don't abort. */
3788 return bfd_abs_section_ptr;
3793 unsigned int value = symbol->symbol_value;
3795 /* For executables we will have to use the symbol's address and
3796 find out what section would contain that address. Yuk. */
3797 for (section = abfd->sections; section; section = section->next)
3799 if (value >= section->vma
3800 && value <= section->vma + section->_cooked_size
3801 && som_is_subspace (section))
3805 /* Could be a symbol from an external library (such as an OMOS
3806 shared library). Don't abort. */
3807 return bfd_abs_section_ptr;
3812 /* Read and save the symbol table associated with the given BFD. */
3815 som_slurp_symbol_table (abfd)
3818 int symbol_count = bfd_get_symcount (abfd);
3819 int symsize = sizeof (struct symbol_dictionary_record);
3821 struct symbol_dictionary_record *buf = NULL, *bufp, *endbufp;
3822 som_symbol_type *sym, *symbase;
3824 /* Return saved value if it exists. */
3825 if (obj_som_symtab (abfd) != NULL)
3826 goto successful_return;
3828 /* Special case. This is *not* an error. */
3829 if (symbol_count == 0)
3830 goto successful_return;
3832 if (!som_slurp_string_table (abfd))
3835 stringtab = obj_som_stringtab (abfd);
3837 symbase = (som_symbol_type *)
3838 bfd_zalloc (abfd, symbol_count * sizeof (som_symbol_type));
3839 if (symbase == NULL)
3841 bfd_set_error (bfd_error_no_memory);
3845 /* Read in the external SOM representation. */
3846 buf = malloc (symbol_count * symsize);
3847 if (buf == NULL && symbol_count * symsize != 0)
3849 bfd_set_error (bfd_error_no_memory);
3852 if (bfd_seek (abfd, obj_som_sym_filepos (abfd), SEEK_SET) < 0)
3854 if (bfd_read (buf, symbol_count * symsize, 1, abfd)
3855 != symbol_count * symsize)
3858 /* Iterate over all the symbols and internalize them. */
3859 endbufp = buf + symbol_count;
3860 for (bufp = buf, sym = symbase; bufp < endbufp; ++bufp)
3863 /* I don't think we care about these. */
3864 if (bufp->symbol_type == ST_SYM_EXT
3865 || bufp->symbol_type == ST_ARG_EXT)
3868 /* Set some private data we care about. */
3869 if (bufp->symbol_type == ST_NULL)
3870 som_symbol_data (sym)->som_type = SYMBOL_TYPE_UNKNOWN;
3871 else if (bufp->symbol_type == ST_ABSOLUTE)
3872 som_symbol_data (sym)->som_type = SYMBOL_TYPE_ABSOLUTE;
3873 else if (bufp->symbol_type == ST_DATA)
3874 som_symbol_data (sym)->som_type = SYMBOL_TYPE_DATA;
3875 else if (bufp->symbol_type == ST_CODE)
3876 som_symbol_data (sym)->som_type = SYMBOL_TYPE_CODE;
3877 else if (bufp->symbol_type == ST_PRI_PROG)
3878 som_symbol_data (sym)->som_type = SYMBOL_TYPE_PRI_PROG;
3879 else if (bufp->symbol_type == ST_SEC_PROG)
3880 som_symbol_data (sym)->som_type = SYMBOL_TYPE_SEC_PROG;
3881 else if (bufp->symbol_type == ST_ENTRY)
3882 som_symbol_data (sym)->som_type = SYMBOL_TYPE_ENTRY;
3883 else if (bufp->symbol_type == ST_MILLICODE)
3884 som_symbol_data (sym)->som_type = SYMBOL_TYPE_MILLICODE;
3885 else if (bufp->symbol_type == ST_PLABEL)
3886 som_symbol_data (sym)->som_type = SYMBOL_TYPE_PLABEL;
3888 som_symbol_data (sym)->som_type = SYMBOL_TYPE_UNKNOWN;
3889 som_symbol_data (sym)->tc_data.hppa_arg_reloc = bufp->arg_reloc;
3891 /* Some reasonable defaults. */
3892 sym->symbol.the_bfd = abfd;
3893 sym->symbol.name = bufp->name.n_strx + stringtab;
3894 sym->symbol.value = bufp->symbol_value;
3895 sym->symbol.section = 0;
3896 sym->symbol.flags = 0;
3898 switch (bufp->symbol_type)
3902 sym->symbol.flags |= BSF_FUNCTION;
3903 sym->symbol.value &= ~0x3;
3910 sym->symbol.value &= ~0x3;
3911 /* If the symbol's scope is ST_UNSAT, then these are
3912 undefined function symbols. */
3913 if (bufp->symbol_scope == SS_UNSAT)
3914 sym->symbol.flags |= BSF_FUNCTION;
3921 /* Handle scoping and section information. */
3922 switch (bufp->symbol_scope)
3924 /* symbol_info field is undefined for SS_EXTERNAL and SS_UNSAT symbols,
3925 so the section associated with this symbol can't be known. */
3927 if (bufp->symbol_type != ST_STORAGE)
3928 sym->symbol.section = bfd_und_section_ptr;
3930 sym->symbol.section = bfd_com_section_ptr;
3931 sym->symbol.flags |= (BSF_EXPORT | BSF_GLOBAL);
3935 if (bufp->symbol_type != ST_STORAGE)
3936 sym->symbol.section = bfd_und_section_ptr;
3938 sym->symbol.section = bfd_com_section_ptr;
3942 sym->symbol.flags |= (BSF_EXPORT | BSF_GLOBAL);
3943 sym->symbol.section = bfd_section_from_som_symbol (abfd, bufp);
3944 sym->symbol.value -= sym->symbol.section->vma;
3948 /* SS_GLOBAL and SS_LOCAL are two names for the same thing.
3949 Sound dumb? It is. */
3953 sym->symbol.flags |= BSF_LOCAL;
3954 sym->symbol.section = bfd_section_from_som_symbol (abfd, bufp);
3955 sym->symbol.value -= sym->symbol.section->vma;
3959 /* Mark section symbols and symbols used by the debugger.
3960 Note $START$ is a magic code symbol, NOT a section symbol. */
3961 if (sym->symbol.name[0] == '$'
3962 && sym->symbol.name[strlen (sym->symbol.name) - 1] == '$'
3963 && strcmp (sym->symbol.name, "$START$"))
3964 sym->symbol.flags |= BSF_SECTION_SYM;
3965 else if (!strncmp (sym->symbol.name, "L$0\002", 4))
3967 sym->symbol.flags |= BSF_SECTION_SYM;
3968 sym->symbol.name = sym->symbol.section->name;
3970 else if (!strncmp (sym->symbol.name, "L$0\001", 4))
3971 sym->symbol.flags |= BSF_DEBUGGING;
3973 /* Note increment at bottom of loop, since we skip some symbols
3974 we can not include it as part of the for statement. */
3978 /* Save our results and return success. */
3979 obj_som_symtab (abfd) = symbase;
3991 /* Canonicalize a SOM symbol table. Return the number of entries
3992 in the symbol table. */
3995 som_get_symtab (abfd, location)
4000 som_symbol_type *symbase;
4002 if (!som_slurp_symbol_table (abfd))
4005 i = bfd_get_symcount (abfd);
4006 symbase = obj_som_symtab (abfd);
4008 for (; i > 0; i--, location++, symbase++)
4009 *location = &symbase->symbol;
4011 /* Final null pointer. */
4013 return (bfd_get_symcount (abfd));
4016 /* Make a SOM symbol. There is nothing special to do here. */
4019 som_make_empty_symbol (abfd)
4022 som_symbol_type *new =
4023 (som_symbol_type *) bfd_zalloc (abfd, sizeof (som_symbol_type));
4026 bfd_set_error (bfd_error_no_memory);
4029 new->symbol.the_bfd = abfd;
4031 return &new->symbol;
4034 /* Print symbol information. */
4037 som_print_symbol (ignore_abfd, afile, symbol, how)
4041 bfd_print_symbol_type how;
4043 FILE *file = (FILE *) afile;
4046 case bfd_print_symbol_name:
4047 fprintf (file, "%s", symbol->name);
4049 case bfd_print_symbol_more:
4050 fprintf (file, "som ");
4051 fprintf_vma (file, symbol->value);
4052 fprintf (file, " %lx", (long) symbol->flags);
4054 case bfd_print_symbol_all:
4056 CONST char *section_name;
4057 section_name = symbol->section ? symbol->section->name : "(*none*)";
4058 bfd_print_symbol_vandf ((PTR) file, symbol);
4059 fprintf (file, " %s\t%s", section_name, symbol->name);
4066 som_bfd_is_local_label (abfd, sym)
4070 return (sym->name[0] == 'L' && sym->name[1] == '$');
4073 /* Count or process variable-length SOM fixup records.
4075 To avoid code duplication we use this code both to compute the number
4076 of relocations requested by a stream, and to internalize the stream.
4078 When computing the number of relocations requested by a stream the
4079 variables rptr, section, and symbols have no meaning.
4081 Return the number of relocations requested by the fixup stream. When
4084 This needs at least two or three more passes to get it cleaned up. */
4087 som_set_reloc_info (fixup, end, internal_relocs, section, symbols, just_count)
4088 unsigned char *fixup;
4090 arelent *internal_relocs;
4095 unsigned int op, varname, deallocate_contents = 0;
4096 unsigned char *end_fixups = &fixup[end];
4097 const struct fixup_format *fp;
4099 unsigned char *save_fixup;
4100 int variables[26], stack[20], c, v, count, prev_fixup, *sp, saved_unwind_bits;
4102 arelent *rptr= internal_relocs;
4103 unsigned int offset = 0;
4105 #define var(c) variables[(c) - 'A']
4106 #define push(v) (*sp++ = (v))
4107 #define pop() (*--sp)
4108 #define emptystack() (sp == stack)
4110 som_initialize_reloc_queue (reloc_queue);
4111 memset (variables, 0, sizeof (variables));
4112 memset (stack, 0, sizeof (stack));
4115 saved_unwind_bits = 0;
4118 while (fixup < end_fixups)
4121 /* Save pointer to the start of this fixup. We'll use
4122 it later to determine if it is necessary to put this fixup
4126 /* Get the fixup code and its associated format. */
4128 fp = &som_fixup_formats[op];
4130 /* Handle a request for a previous fixup. */
4131 if (*fp->format == 'P')
4133 /* Get pointer to the beginning of the prev fixup, move
4134 the repeated fixup to the head of the queue. */
4135 fixup = reloc_queue[fp->D].reloc;
4136 som_reloc_queue_fix (reloc_queue, fp->D);
4139 /* Get the fixup code and its associated format. */
4141 fp = &som_fixup_formats[op];
4144 /* If this fixup will be passed to BFD, set some reasonable defaults. */
4146 && som_hppa_howto_table[op].type != R_NO_RELOCATION
4147 && som_hppa_howto_table[op].type != R_DATA_OVERRIDE)
4149 rptr->address = offset;
4150 rptr->howto = &som_hppa_howto_table[op];
4152 rptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
4155 /* Set default input length to 0. Get the opcode class index
4159 var ('U') = saved_unwind_bits;
4161 /* Get the opcode format. */
4164 /* Process the format string. Parsing happens in two phases,
4165 parse RHS, then assign to LHS. Repeat until no more
4166 characters in the format string. */
4169 /* The variable this pass is going to compute a value for. */
4172 /* Start processing RHS. Continue until a NULL or '=' is found. */
4177 /* If this is a variable, push it on the stack. */
4181 /* If this is a lower case letter, then it represents
4182 additional data from the fixup stream to be pushed onto
4184 else if (islower (c))
4186 for (v = 0; c > 'a'; --c)
4187 v = (v << 8) | *fixup++;
4191 /* A decimal constant. Push it on the stack. */
4192 else if (isdigit (c))
4195 while (isdigit (*cp))
4196 v = (v * 10) + (*cp++ - '0');
4201 /* An operator. Pop two two values from the stack and
4202 use them as operands to the given operation. Push
4203 the result of the operation back on the stack. */
4225 while (*cp && *cp != '=');
4227 /* Move over the equal operator. */
4230 /* Pop the RHS off the stack. */
4233 /* Perform the assignment. */
4236 /* Handle side effects. and special 'O' stack cases. */
4239 /* Consume some bytes from the input space. */
4243 /* A symbol to use in the relocation. Make a note
4244 of this if we are not just counting. */
4247 rptr->sym_ptr_ptr = &symbols[c];
4249 /* Argument relocation bits for a function call. */
4253 unsigned int tmp = var ('R');
4256 if ((som_hppa_howto_table[op].type == R_PCREL_CALL
4257 && R_PCREL_CALL + 10 > op)
4258 || (som_hppa_howto_table[op].type == R_ABS_CALL
4259 && R_ABS_CALL + 10 > op))
4261 /* Simple encoding. */
4268 rptr->addend |= 1 << 8 | 1 << 6 | 1 << 4 | 1 << 2;
4270 rptr->addend |= 1 << 8 | 1 << 6 | 1 << 4;
4272 rptr->addend |= 1 << 8 | 1 << 6;
4274 rptr->addend |= 1 << 8;
4278 unsigned int tmp1, tmp2;
4280 /* First part is easy -- low order two bits are
4281 directly copied, then shifted away. */
4282 rptr->addend = tmp & 0x3;
4285 /* Diving the result by 10 gives us the second
4286 part. If it is 9, then the first two words
4287 are a double precision paramater, else it is
4288 3 * the first arg bits + the 2nd arg bits. */
4292 rptr->addend += (0xe << 6);
4295 /* Get the two pieces. */
4298 /* Put them in the addend. */
4299 rptr->addend += (tmp2 << 8) + (tmp1 << 6);
4302 /* What's left is the third part. It's unpacked
4303 just like the second. */
4305 rptr->addend += (0xe << 2);
4310 rptr->addend += (tmp2 << 4) + (tmp << 2);
4313 rptr->addend = HPPA_R_ADDEND (rptr->addend, 0);
4316 /* Handle the linker expression stack. */
4321 subop = comp1_opcodes;
4324 subop = comp2_opcodes;
4327 subop = comp3_opcodes;
4332 while (*subop <= (unsigned char) c)
4336 /* The lower 32unwind bits must be persistent. */
4338 saved_unwind_bits = var ('U');
4346 /* If we used a previous fixup, clean up after it. */
4349 fixup = save_fixup + 1;
4353 else if (fixup > save_fixup + 1)
4354 som_reloc_queue_insert (save_fixup, fixup - save_fixup, reloc_queue);
4356 /* We do not pass R_DATA_OVERRIDE or R_NO_RELOCATION
4358 if (som_hppa_howto_table[op].type != R_DATA_OVERRIDE
4359 && som_hppa_howto_table[op].type != R_NO_RELOCATION)
4361 /* Done with a single reloction. Loop back to the top. */
4364 if (som_hppa_howto_table[op].type == R_ENTRY)
4365 rptr->addend = var ('T');
4366 else if (som_hppa_howto_table[op].type == R_EXIT)
4367 rptr->addend = var ('U');
4368 else if (som_hppa_howto_table[op].type == R_PCREL_CALL
4369 || som_hppa_howto_table[op].type == R_ABS_CALL)
4371 else if (som_hppa_howto_table[op].type == R_DATA_ONE_SYMBOL)
4373 unsigned addend = var ('V');
4375 /* Try what was specified in R_DATA_OVERRIDE first
4376 (if anything). Then the hard way using the
4377 section contents. */
4378 rptr->addend = var ('V');
4380 if (rptr->addend == 0 && !section->contents)
4382 /* Got to read the damn contents first. We don't
4383 bother saving the contents (yet). Add it one
4384 day if the need arises. */
4385 section->contents = malloc (section->_raw_size);
4386 if (section->contents == NULL)
4389 deallocate_contents = 1;
4390 bfd_get_section_contents (section->owner,
4394 section->_raw_size);
4396 else if (rptr->addend == 0)
4397 rptr->addend = bfd_get_32 (section->owner,
4399 + offset - var ('L')));
4403 rptr->addend = var ('V');
4407 /* Now that we've handled a "full" relocation, reset
4409 memset (variables, 0, sizeof (variables));
4410 memset (stack, 0, sizeof (stack));
4413 if (deallocate_contents)
4414 free (section->contents);
4424 /* Read in the relocs (aka fixups in SOM terms) for a section.
4426 som_get_reloc_upper_bound calls this routine with JUST_COUNT
4427 set to true to indicate it only needs a count of the number
4428 of actual relocations. */
4431 som_slurp_reloc_table (abfd, section, symbols, just_count)
4437 char *external_relocs;
4438 unsigned int fixup_stream_size;
4439 arelent *internal_relocs;
4440 unsigned int num_relocs;
4442 fixup_stream_size = som_section_data (section)->reloc_size;
4443 /* If there were no relocations, then there is nothing to do. */
4444 if (section->reloc_count == 0)
4447 /* If reloc_count is -1, then the relocation stream has not been
4448 parsed. We must do so now to know how many relocations exist. */
4449 if (section->reloc_count == -1)
4451 external_relocs = (char *) malloc (fixup_stream_size);
4452 if (external_relocs == (char *) NULL)
4454 bfd_set_error (bfd_error_no_memory);
4457 /* Read in the external forms. */
4459 obj_som_reloc_filepos (abfd) + section->rel_filepos,
4463 if (bfd_read (external_relocs, 1, fixup_stream_size, abfd)
4464 != fixup_stream_size)
4467 /* Let callers know how many relocations found.
4468 also save the relocation stream as we will
4470 section->reloc_count = som_set_reloc_info (external_relocs,
4472 NULL, NULL, NULL, true);
4474 som_section_data (section)->reloc_stream = external_relocs;
4477 /* If the caller only wanted a count, then return now. */
4481 num_relocs = section->reloc_count;
4482 external_relocs = som_section_data (section)->reloc_stream;
4483 /* Return saved information about the relocations if it is available. */
4484 if (section->relocation != (arelent *) NULL)
4487 internal_relocs = (arelent *)
4488 bfd_zalloc (abfd, (num_relocs * sizeof (arelent)));
4489 if (internal_relocs == (arelent *) NULL)
4491 bfd_set_error (bfd_error_no_memory);
4495 /* Process and internalize the relocations. */
4496 som_set_reloc_info (external_relocs, fixup_stream_size,
4497 internal_relocs, section, symbols, false);
4499 /* We're done with the external relocations. Free them. */
4500 free (external_relocs);
4502 /* Save our results and return success. */
4503 section->relocation = internal_relocs;
4507 /* Return the number of bytes required to store the relocation
4508 information associated with the given section. */
4511 som_get_reloc_upper_bound (abfd, asect)
4515 /* If section has relocations, then read in the relocation stream
4516 and parse it to determine how many relocations exist. */
4517 if (asect->flags & SEC_RELOC)
4519 if (! som_slurp_reloc_table (abfd, asect, NULL, true))
4521 return (asect->reloc_count + 1) * sizeof (arelent);
4523 /* There are no relocations. */
4527 /* Convert relocations from SOM (external) form into BFD internal
4528 form. Return the number of relocations. */
4531 som_canonicalize_reloc (abfd, section, relptr, symbols)
4540 if (som_slurp_reloc_table (abfd, section, symbols, false) == false)
4543 count = section->reloc_count;
4544 tblptr = section->relocation;
4547 *relptr++ = tblptr++;
4549 *relptr = (arelent *) NULL;
4550 return section->reloc_count;
4553 extern const bfd_target som_vec;
4555 /* A hook to set up object file dependent section information. */
4558 som_new_section_hook (abfd, newsect)
4562 newsect->used_by_bfd =
4563 (PTR) bfd_zalloc (abfd, sizeof (struct som_section_data_struct));
4564 if (!newsect->used_by_bfd)
4566 bfd_set_error (bfd_error_no_memory);
4569 newsect->alignment_power = 3;
4571 /* We allow more than three sections internally */
4575 /* Copy any private info we understand from the input section
4576 to the output section. */
4578 som_bfd_copy_private_section_data (ibfd, isection, obfd, osection)
4584 /* One day we may try to grok other private data. */
4585 if (ibfd->xvec->flavour != bfd_target_som_flavour
4586 || obfd->xvec->flavour != bfd_target_som_flavour
4587 || (!som_is_space (isection) && !som_is_subspace (isection)))
4590 som_section_data (osection)->copy_data
4591 = (struct som_copyable_section_data_struct *)
4592 bfd_zalloc (obfd, sizeof (struct som_copyable_section_data_struct));
4593 if (som_section_data (osection)->copy_data == NULL)
4595 bfd_set_error (bfd_error_no_memory);
4599 memcpy (som_section_data (osection)->copy_data,
4600 som_section_data (isection)->copy_data,
4601 sizeof (struct som_copyable_section_data_struct));
4603 /* Reparent if necessary. */
4604 if (som_section_data (osection)->copy_data->container)
4605 som_section_data (osection)->copy_data->container =
4606 som_section_data (osection)->copy_data->container->output_section;
4611 /* Copy any private info we understand from the input bfd
4612 to the output bfd. */
4615 som_bfd_copy_private_bfd_data (ibfd, obfd)
4618 /* One day we may try to grok other private data. */
4619 if (ibfd->xvec->flavour != bfd_target_som_flavour
4620 || obfd->xvec->flavour != bfd_target_som_flavour)
4623 /* Allocate some memory to hold the data we need. */
4624 obj_som_exec_data (obfd) = (struct som_exec_data *)
4625 bfd_zalloc (obfd, sizeof (struct som_exec_data));
4626 if (obj_som_exec_data (obfd) == NULL)
4628 bfd_set_error (bfd_error_no_memory);
4632 /* Now copy the data. */
4633 memcpy (obj_som_exec_data (obfd), obj_som_exec_data (ibfd),
4634 sizeof (struct som_exec_data));
4639 /* Set backend info for sections which can not be described
4640 in the BFD data structures. */
4643 bfd_som_set_section_attributes (section, defined, private, sort_key, spnum)
4647 unsigned int sort_key;
4650 /* Allocate memory to hold the magic information. */
4651 if (som_section_data (section)->copy_data == NULL)
4653 som_section_data (section)->copy_data
4654 = (struct som_copyable_section_data_struct *)
4655 bfd_zalloc (section->owner,
4656 sizeof (struct som_copyable_section_data_struct));
4657 if (som_section_data (section)->copy_data == NULL)
4659 bfd_set_error (bfd_error_no_memory);
4663 som_section_data (section)->copy_data->sort_key = sort_key;
4664 som_section_data (section)->copy_data->is_defined = defined;
4665 som_section_data (section)->copy_data->is_private = private;
4666 som_section_data (section)->copy_data->container = section;
4667 som_section_data (section)->copy_data->space_number = spnum;
4671 /* Set backend info for subsections which can not be described
4672 in the BFD data structures. */
4675 bfd_som_set_subsection_attributes (section, container, access,
4678 asection *container;
4680 unsigned int sort_key;
4683 /* Allocate memory to hold the magic information. */
4684 if (som_section_data (section)->copy_data == NULL)
4686 som_section_data (section)->copy_data
4687 = (struct som_copyable_section_data_struct *)
4688 bfd_zalloc (section->owner,
4689 sizeof (struct som_copyable_section_data_struct));
4690 if (som_section_data (section)->copy_data == NULL)
4692 bfd_set_error (bfd_error_no_memory);
4696 som_section_data (section)->copy_data->sort_key = sort_key;
4697 som_section_data (section)->copy_data->access_control_bits = access;
4698 som_section_data (section)->copy_data->quadrant = quadrant;
4699 som_section_data (section)->copy_data->container = container;
4703 /* Set the full SOM symbol type. SOM needs far more symbol information
4704 than any other object file format I'm aware of. It is mandatory
4705 to be able to know if a symbol is an entry point, millicode, data,
4706 code, absolute, storage request, or procedure label. If you get
4707 the symbol type wrong your program will not link. */
4710 bfd_som_set_symbol_type (symbol, type)
4714 som_symbol_data (symbol)->som_type = type;
4717 /* Attach an auxiliary header to the BFD backend so that it may be
4718 written into the object file. */
4720 bfd_som_attach_aux_hdr (abfd, type, string)
4725 if (type == VERSION_AUX_ID)
4727 int len = strlen (string);
4731 pad = (4 - (len % 4));
4732 obj_som_version_hdr (abfd) = (struct user_string_aux_hdr *)
4733 bfd_zalloc (abfd, sizeof (struct aux_id)
4734 + sizeof (unsigned int) + len + pad);
4735 if (!obj_som_version_hdr (abfd))
4737 bfd_set_error (bfd_error_no_memory);
4740 obj_som_version_hdr (abfd)->header_id.type = VERSION_AUX_ID;
4741 obj_som_version_hdr (abfd)->header_id.length = len + pad;
4742 obj_som_version_hdr (abfd)->header_id.length += sizeof (int);
4743 obj_som_version_hdr (abfd)->string_length = len;
4744 strncpy (obj_som_version_hdr (abfd)->user_string, string, len);
4746 else if (type == COPYRIGHT_AUX_ID)
4748 int len = strlen (string);
4752 pad = (4 - (len % 4));
4753 obj_som_copyright_hdr (abfd) = (struct copyright_aux_hdr *)
4754 bfd_zalloc (abfd, sizeof (struct aux_id)
4755 + sizeof (unsigned int) + len + pad);
4756 if (!obj_som_copyright_hdr (abfd))
4758 bfd_set_error (bfd_error_no_memory);
4761 obj_som_copyright_hdr (abfd)->header_id.type = COPYRIGHT_AUX_ID;
4762 obj_som_copyright_hdr (abfd)->header_id.length = len + pad;
4763 obj_som_copyright_hdr (abfd)->header_id.length += sizeof (int);
4764 obj_som_copyright_hdr (abfd)->string_length = len;
4765 strcpy (obj_som_copyright_hdr (abfd)->copyright, string);
4771 som_get_section_contents (abfd, section, location, offset, count)
4776 bfd_size_type count;
4778 if (count == 0 || ((section->flags & SEC_HAS_CONTENTS) == 0))
4780 if ((bfd_size_type)(offset+count) > section->_raw_size
4781 || bfd_seek (abfd, (file_ptr)(section->filepos + offset), SEEK_SET) == -1
4782 || bfd_read (location, (bfd_size_type)1, count, abfd) != count)
4783 return (false); /* on error */
4788 som_set_section_contents (abfd, section, location, offset, count)
4793 bfd_size_type count;
4795 if (abfd->output_has_begun == false)
4797 /* Set up fixed parts of the file, space, and subspace headers.
4798 Notify the world that output has begun. */
4799 som_prep_headers (abfd);
4800 abfd->output_has_begun = true;
4801 /* Start writing the object file. This include all the string
4802 tables, fixup streams, and other portions of the object file. */
4803 som_begin_writing (abfd);
4806 /* Only write subspaces which have "real" contents (eg. the contents
4807 are not generated at run time by the OS). */
4808 if (!som_is_subspace (section)
4809 || ((section->flags & SEC_HAS_CONTENTS) == 0))
4812 /* Seek to the proper offset within the object file and write the
4814 offset += som_section_data (section)->subspace_dict->file_loc_init_value;
4815 if (bfd_seek (abfd, offset, SEEK_SET) == -1)
4818 if (bfd_write ((PTR) location, 1, count, abfd) != count)
4824 som_set_arch_mach (abfd, arch, machine)
4826 enum bfd_architecture arch;
4827 unsigned long machine;
4829 /* Allow any architecture to be supported by the SOM backend */
4830 return bfd_default_set_arch_mach (abfd, arch, machine);
4834 som_find_nearest_line (abfd, section, symbols, offset, filename_ptr,
4835 functionname_ptr, line_ptr)
4840 CONST char **filename_ptr;
4841 CONST char **functionname_ptr;
4842 unsigned int *line_ptr;
4848 som_sizeof_headers (abfd, reloc)
4852 fprintf (stderr, "som_sizeof_headers unimplemented\n");
4858 /* Return the single-character symbol type corresponding to
4859 SOM section S, or '?' for an unknown SOM section. */
4862 som_section_type (s)
4865 const struct section_to_type *t;
4867 for (t = &stt[0]; t->section; t++)
4868 if (!strcmp (s, t->section))
4874 som_decode_symclass (symbol)
4879 if (bfd_is_com_section (symbol->section))
4881 if (bfd_is_und_section (symbol->section))
4883 if (bfd_is_ind_section (symbol->section))
4885 if (!(symbol->flags & (BSF_GLOBAL|BSF_LOCAL)))
4888 if (bfd_is_abs_section (symbol->section))
4890 else if (symbol->section)
4891 c = som_section_type (symbol->section->name);
4894 if (symbol->flags & BSF_GLOBAL)
4899 /* Return information about SOM symbol SYMBOL in RET. */
4902 som_get_symbol_info (ignore_abfd, symbol, ret)
4907 ret->type = som_decode_symclass (symbol);
4908 if (ret->type != 'U')
4909 ret->value = symbol->value+symbol->section->vma;
4912 ret->name = symbol->name;
4915 /* Count the number of symbols in the archive symbol table. Necessary
4916 so that we can allocate space for all the carsyms at once. */
4919 som_bfd_count_ar_symbols (abfd, lst_header, count)
4921 struct lst_header *lst_header;
4925 unsigned int *hash_table = NULL;
4926 file_ptr lst_filepos = bfd_tell (abfd) - sizeof (struct lst_header);
4929 (unsigned int *) malloc (lst_header->hash_size * sizeof (unsigned int));
4930 if (hash_table == NULL && lst_header->hash_size != 0)
4932 bfd_set_error (bfd_error_no_memory);
4936 /* Don't forget to initialize the counter! */
4939 /* Read in the hash table. The has table is an array of 32bit file offsets
4940 which point to the hash chains. */
4941 if (bfd_read ((PTR) hash_table, lst_header->hash_size, 4, abfd)
4942 != lst_header->hash_size * 4)
4945 /* Walk each chain counting the number of symbols found on that particular
4947 for (i = 0; i < lst_header->hash_size; i++)
4949 struct lst_symbol_record lst_symbol;
4951 /* An empty chain has zero as it's file offset. */
4952 if (hash_table[i] == 0)
4955 /* Seek to the first symbol in this hash chain. */
4956 if (bfd_seek (abfd, lst_filepos + hash_table[i], SEEK_SET) < 0)
4959 /* Read in this symbol and update the counter. */
4960 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
4961 != sizeof (lst_symbol))
4966 /* Now iterate through the rest of the symbols on this chain. */
4967 while (lst_symbol.next_entry)
4970 /* Seek to the next symbol. */
4971 if (bfd_seek (abfd, lst_filepos + lst_symbol.next_entry, SEEK_SET)
4975 /* Read the symbol in and update the counter. */
4976 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
4977 != sizeof (lst_symbol))
4983 if (hash_table != NULL)
4988 if (hash_table != NULL)
4993 /* Fill in the canonical archive symbols (SYMS) from the archive described
4994 by ABFD and LST_HEADER. */
4997 som_bfd_fill_in_ar_symbols (abfd, lst_header, syms)
4999 struct lst_header *lst_header;
5002 unsigned int i, len;
5003 carsym *set = syms[0];
5004 unsigned int *hash_table = NULL;
5005 struct som_entry *som_dict = NULL;
5006 file_ptr lst_filepos = bfd_tell (abfd) - sizeof (struct lst_header);
5009 (unsigned int *) malloc (lst_header->hash_size * sizeof (unsigned int));
5010 if (hash_table == NULL && lst_header->hash_size != 0)
5012 bfd_set_error (bfd_error_no_memory);
5017 (struct som_entry *) malloc (lst_header->module_count
5018 * sizeof (struct som_entry));
5019 if (som_dict == NULL && lst_header->module_count != 0)
5021 bfd_set_error (bfd_error_no_memory);
5025 /* Read in the hash table. The has table is an array of 32bit file offsets
5026 which point to the hash chains. */
5027 if (bfd_read ((PTR) hash_table, lst_header->hash_size, 4, abfd)
5028 != lst_header->hash_size * 4)
5031 /* Seek to and read in the SOM dictionary. We will need this to fill
5032 in the carsym's filepos field. */
5033 if (bfd_seek (abfd, lst_filepos + lst_header->dir_loc, SEEK_SET) < 0)
5036 if (bfd_read ((PTR) som_dict, lst_header->module_count,
5037 sizeof (struct som_entry), abfd)
5038 != lst_header->module_count * sizeof (struct som_entry))
5041 /* Walk each chain filling in the carsyms as we go along. */
5042 for (i = 0; i < lst_header->hash_size; i++)
5044 struct lst_symbol_record lst_symbol;
5046 /* An empty chain has zero as it's file offset. */
5047 if (hash_table[i] == 0)
5050 /* Seek to and read the first symbol on the chain. */
5051 if (bfd_seek (abfd, lst_filepos + hash_table[i], SEEK_SET) < 0)
5054 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
5055 != sizeof (lst_symbol))
5058 /* Get the name of the symbol, first get the length which is stored
5059 as a 32bit integer just before the symbol.
5061 One might ask why we don't just read in the entire string table
5062 and index into it. Well, according to the SOM ABI the string
5063 index can point *anywhere* in the archive to save space, so just
5064 using the string table would not be safe. */
5065 if (bfd_seek (abfd, lst_filepos + lst_header->string_loc
5066 + lst_symbol.name.n_strx - 4, SEEK_SET) < 0)
5069 if (bfd_read (&len, 1, 4, abfd) != 4)
5072 /* Allocate space for the name and null terminate it too. */
5073 set->name = bfd_zalloc (abfd, len + 1);
5076 bfd_set_error (bfd_error_no_memory);
5079 if (bfd_read (set->name, 1, len, abfd) != len)
5084 /* Fill in the file offset. Note that the "location" field points
5085 to the SOM itself, not the ar_hdr in front of it. */
5086 set->file_offset = som_dict[lst_symbol.som_index].location
5087 - sizeof (struct ar_hdr);
5089 /* Go to the next symbol. */
5092 /* Iterate through the rest of the chain. */
5093 while (lst_symbol.next_entry)
5095 /* Seek to the next symbol and read it in. */
5096 if (bfd_seek (abfd, lst_filepos + lst_symbol.next_entry, SEEK_SET) <0)
5099 if (bfd_read ((PTR) & lst_symbol, 1, sizeof (lst_symbol), abfd)
5100 != sizeof (lst_symbol))
5103 /* Seek to the name length & string and read them in. */
5104 if (bfd_seek (abfd, lst_filepos + lst_header->string_loc
5105 + lst_symbol.name.n_strx - 4, SEEK_SET) < 0)
5108 if (bfd_read (&len, 1, 4, abfd) != 4)
5111 /* Allocate space for the name and null terminate it too. */
5112 set->name = bfd_zalloc (abfd, len + 1);
5115 bfd_set_error (bfd_error_no_memory);
5119 if (bfd_read (set->name, 1, len, abfd) != len)
5123 /* Fill in the file offset. Note that the "location" field points
5124 to the SOM itself, not the ar_hdr in front of it. */
5125 set->file_offset = som_dict[lst_symbol.som_index].location
5126 - sizeof (struct ar_hdr);
5128 /* Go on to the next symbol. */
5132 /* If we haven't died by now, then we successfully read the entire
5133 archive symbol table. */
5134 if (hash_table != NULL)
5136 if (som_dict != NULL)
5141 if (hash_table != NULL)
5143 if (som_dict != NULL)
5148 /* Read in the LST from the archive. */
5150 som_slurp_armap (abfd)
5153 struct lst_header lst_header;
5154 struct ar_hdr ar_header;
5155 unsigned int parsed_size;
5156 struct artdata *ardata = bfd_ardata (abfd);
5158 int i = bfd_read ((PTR) nextname, 1, 16, abfd);
5160 /* Special cases. */
5166 if (bfd_seek (abfd, (file_ptr) - 16, SEEK_CUR) < 0)
5169 /* For archives without .o files there is no symbol table. */
5170 if (strncmp (nextname, "/ ", 16))
5172 bfd_has_map (abfd) = false;
5176 /* Read in and sanity check the archive header. */
5177 if (bfd_read ((PTR) &ar_header, 1, sizeof (struct ar_hdr), abfd)
5178 != sizeof (struct ar_hdr))
5181 if (strncmp (ar_header.ar_fmag, ARFMAG, 2))
5183 bfd_set_error (bfd_error_malformed_archive);
5187 /* How big is the archive symbol table entry? */
5189 parsed_size = strtol (ar_header.ar_size, NULL, 10);
5192 bfd_set_error (bfd_error_malformed_archive);
5196 /* Save off the file offset of the first real user data. */
5197 ardata->first_file_filepos = bfd_tell (abfd) + parsed_size;
5199 /* Read in the library symbol table. We'll make heavy use of this
5200 in just a minute. */
5201 if (bfd_read ((PTR) & lst_header, 1, sizeof (struct lst_header), abfd)
5202 != sizeof (struct lst_header))
5206 if (lst_header.a_magic != LIBMAGIC)
5208 bfd_set_error (bfd_error_malformed_archive);
5212 /* Count the number of symbols in the library symbol table. */
5213 if (som_bfd_count_ar_symbols (abfd, &lst_header, &ardata->symdef_count)
5217 /* Get back to the start of the library symbol table. */
5218 if (bfd_seek (abfd, ardata->first_file_filepos - parsed_size
5219 + sizeof (struct lst_header), SEEK_SET) < 0)
5222 /* Initializae the cache and allocate space for the library symbols. */
5224 ardata->symdefs = (carsym *) bfd_alloc (abfd,
5225 (ardata->symdef_count
5226 * sizeof (carsym)));
5227 if (!ardata->symdefs)
5229 bfd_set_error (bfd_error_no_memory);
5233 /* Now fill in the canonical archive symbols. */
5234 if (som_bfd_fill_in_ar_symbols (abfd, &lst_header, &ardata->symdefs)
5238 /* Seek back to the "first" file in the archive. Note the "first"
5239 file may be the extended name table. */
5240 if (bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET) < 0)
5243 /* Notify the generic archive code that we have a symbol map. */
5244 bfd_has_map (abfd) = true;
5248 /* Begin preparing to write a SOM library symbol table.
5250 As part of the prep work we need to determine the number of symbols
5251 and the size of the associated string section. */
5254 som_bfd_prep_for_ar_write (abfd, num_syms, stringsize)
5256 unsigned int *num_syms, *stringsize;
5258 bfd *curr_bfd = abfd->archive_head;
5260 /* Some initialization. */
5264 /* Iterate over each BFD within this archive. */
5265 while (curr_bfd != NULL)
5267 unsigned int curr_count, i;
5268 som_symbol_type *sym;
5270 /* Don't bother for non-SOM objects. */
5271 if (curr_bfd->format != bfd_object
5272 || curr_bfd->xvec->flavour != bfd_target_som_flavour)
5274 curr_bfd = curr_bfd->next;
5278 /* Make sure the symbol table has been read, then snag a pointer
5279 to it. It's a little slimey to grab the symbols via obj_som_symtab,
5280 but doing so avoids allocating lots of extra memory. */
5281 if (som_slurp_symbol_table (curr_bfd) == false)
5284 sym = obj_som_symtab (curr_bfd);
5285 curr_count = bfd_get_symcount (curr_bfd);
5287 /* Examine each symbol to determine if it belongs in the
5288 library symbol table. */
5289 for (i = 0; i < curr_count; i++, sym++)
5291 struct som_misc_symbol_info info;
5293 /* Derive SOM information from the BFD symbol. */
5294 som_bfd_derive_misc_symbol_info (curr_bfd, &sym->symbol, &info);
5296 /* Should we include this symbol? */
5297 if (info.symbol_type == ST_NULL
5298 || info.symbol_type == ST_SYM_EXT
5299 || info.symbol_type == ST_ARG_EXT)
5302 /* Only global symbols and unsatisfied commons. */
5303 if (info.symbol_scope != SS_UNIVERSAL
5304 && info.symbol_type != ST_STORAGE)
5307 /* Do no include undefined symbols. */
5308 if (bfd_is_und_section (sym->symbol.section))
5311 /* Bump the various counters, being careful to honor
5312 alignment considerations in the string table. */
5314 *stringsize = *stringsize + strlen (sym->symbol.name) + 5;
5315 while (*stringsize % 4)
5319 curr_bfd = curr_bfd->next;
5324 /* Hash a symbol name based on the hashing algorithm presented in the
5327 som_bfd_ar_symbol_hash (symbol)
5330 unsigned int len = strlen (symbol->name);
5332 /* Names with length 1 are special. */
5334 return 0x1000100 | (symbol->name[0] << 16) | symbol->name[0];
5336 return ((len & 0x7f) << 24) | (symbol->name[1] << 16)
5337 | (symbol->name[len-2] << 8) | symbol->name[len-1];
5344 CONST char *filename = strrchr (file, '/');
5346 if (filename != NULL)
5353 /* Do the bulk of the work required to write the SOM library
5357 som_bfd_ar_write_symbol_stuff (abfd, nsyms, string_size, lst)
5359 unsigned int nsyms, string_size;
5360 struct lst_header lst;
5362 file_ptr lst_filepos;
5363 char *strings = NULL, *p;
5364 struct lst_symbol_record *lst_syms = NULL, *curr_lst_sym;
5366 unsigned int *hash_table = NULL;
5367 struct som_entry *som_dict = NULL;
5368 struct lst_symbol_record **last_hash_entry = NULL;
5369 unsigned int curr_som_offset, som_index, extended_name_length = 0;
5370 unsigned int maxname = abfd->xvec->ar_max_namelen;
5373 (unsigned int *) malloc (lst.hash_size * sizeof (unsigned int));
5374 if (hash_table == NULL && lst.hash_size != 0)
5376 bfd_set_error (bfd_error_no_memory);
5380 (struct som_entry *) malloc (lst.module_count
5381 * sizeof (struct som_entry));
5382 if (som_dict == NULL && lst.module_count != 0)
5384 bfd_set_error (bfd_error_no_memory);
5389 ((struct lst_symbol_record **)
5390 malloc (lst.hash_size * sizeof (struct lst_symbol_record *)));
5391 if (last_hash_entry == NULL && lst.hash_size != 0)
5393 bfd_set_error (bfd_error_no_memory);
5397 /* Lots of fields are file positions relative to the start
5398 of the lst record. So save its location. */
5399 lst_filepos = bfd_tell (abfd) - sizeof (struct lst_header);
5401 /* Some initialization. */
5402 memset (hash_table, 0, 4 * lst.hash_size);
5403 memset (som_dict, 0, lst.module_count * sizeof (struct som_entry));
5404 memset (last_hash_entry, 0,
5405 lst.hash_size * sizeof (struct lst_symbol_record *));
5407 /* Symbols have som_index fields, so we have to keep track of the
5408 index of each SOM in the archive.
5410 The SOM dictionary has (among other things) the absolute file
5411 position for the SOM which a particular dictionary entry
5412 describes. We have to compute that information as we iterate
5413 through the SOMs/symbols. */
5415 curr_som_offset = 8 + 2 * sizeof (struct ar_hdr) + lst.file_end;
5417 /* Yow! We have to know the size of the extended name table
5419 for (curr_bfd = abfd->archive_head;
5421 curr_bfd = curr_bfd->next)
5423 CONST char *normal = normalize (curr_bfd->filename);
5424 unsigned int thislen;
5428 bfd_set_error (bfd_error_no_memory);
5431 thislen = strlen (normal);
5432 if (thislen > maxname)
5433 extended_name_length += thislen + 1;
5436 /* Make room for the archive header and the contents of the
5437 extended string table. */
5438 if (extended_name_length)
5439 curr_som_offset += extended_name_length + sizeof (struct ar_hdr);
5441 /* Make sure we're properly aligned. */
5442 curr_som_offset = (curr_som_offset + 0x1) & ~0x1;
5444 /* FIXME should be done with buffers just like everything else... */
5445 lst_syms = malloc (nsyms * sizeof (struct lst_symbol_record));
5446 if (lst_syms == NULL && nsyms != 0)
5448 bfd_set_error (bfd_error_no_memory);
5451 strings = malloc (string_size);
5452 if (strings == NULL && string_size != 0)
5454 bfd_set_error (bfd_error_no_memory);
5459 curr_lst_sym = lst_syms;
5461 curr_bfd = abfd->archive_head;
5462 while (curr_bfd != NULL)
5464 unsigned int curr_count, i;
5465 som_symbol_type *sym;
5467 /* Don't bother for non-SOM objects. */
5468 if (curr_bfd->format != bfd_object
5469 || curr_bfd->xvec->flavour != bfd_target_som_flavour)
5471 curr_bfd = curr_bfd->next;
5475 /* Make sure the symbol table has been read, then snag a pointer
5476 to it. It's a little slimey to grab the symbols via obj_som_symtab,
5477 but doing so avoids allocating lots of extra memory. */
5478 if (som_slurp_symbol_table (curr_bfd) == false)
5481 sym = obj_som_symtab (curr_bfd);
5482 curr_count = bfd_get_symcount (curr_bfd);
5484 for (i = 0; i < curr_count; i++, sym++)
5486 struct som_misc_symbol_info info;
5488 /* Derive SOM information from the BFD symbol. */
5489 som_bfd_derive_misc_symbol_info (curr_bfd, &sym->symbol, &info);
5491 /* Should we include this symbol? */
5492 if (info.symbol_type == ST_NULL
5493 || info.symbol_type == ST_SYM_EXT
5494 || info.symbol_type == ST_ARG_EXT)
5497 /* Only global symbols and unsatisfied commons. */
5498 if (info.symbol_scope != SS_UNIVERSAL
5499 && info.symbol_type != ST_STORAGE)
5502 /* Do no include undefined symbols. */
5503 if (bfd_is_und_section (sym->symbol.section))
5506 /* If this is the first symbol from this SOM, then update
5507 the SOM dictionary too. */
5508 if (som_dict[som_index].location == 0)
5510 som_dict[som_index].location = curr_som_offset;
5511 som_dict[som_index].length = arelt_size (curr_bfd);
5514 /* Fill in the lst symbol record. */
5515 curr_lst_sym->hidden = 0;
5516 curr_lst_sym->secondary_def = 0;
5517 curr_lst_sym->symbol_type = info.symbol_type;
5518 curr_lst_sym->symbol_scope = info.symbol_scope;
5519 curr_lst_sym->check_level = 0;
5520 curr_lst_sym->must_qualify = 0;
5521 curr_lst_sym->initially_frozen = 0;
5522 curr_lst_sym->memory_resident = 0;
5523 curr_lst_sym->is_common = bfd_is_com_section (sym->symbol.section);
5524 curr_lst_sym->dup_common = 0;
5525 curr_lst_sym->xleast = 0;
5526 curr_lst_sym->arg_reloc = info.arg_reloc;
5527 curr_lst_sym->name.n_strx = p - strings + 4;
5528 curr_lst_sym->qualifier_name.n_strx = 0;
5529 curr_lst_sym->symbol_info = info.symbol_info;
5530 curr_lst_sym->symbol_value = info.symbol_value;
5531 curr_lst_sym->symbol_descriptor = 0;
5532 curr_lst_sym->reserved = 0;
5533 curr_lst_sym->som_index = som_index;
5534 curr_lst_sym->symbol_key = som_bfd_ar_symbol_hash (&sym->symbol);
5535 curr_lst_sym->next_entry = 0;
5537 /* Insert into the hash table. */
5538 if (hash_table[curr_lst_sym->symbol_key % lst.hash_size])
5540 struct lst_symbol_record *tmp;
5542 /* There is already something at the head of this hash chain,
5543 so tack this symbol onto the end of the chain. */
5544 tmp = last_hash_entry[curr_lst_sym->symbol_key % lst.hash_size];
5546 = (curr_lst_sym - lst_syms) * sizeof (struct lst_symbol_record)
5548 + lst.module_count * sizeof (struct som_entry)
5549 + sizeof (struct lst_header);
5553 /* First entry in this hash chain. */
5554 hash_table[curr_lst_sym->symbol_key % lst.hash_size]
5555 = (curr_lst_sym - lst_syms) * sizeof (struct lst_symbol_record)
5557 + lst.module_count * sizeof (struct som_entry)
5558 + sizeof (struct lst_header);
5561 /* Keep track of the last symbol we added to this chain so we can
5562 easily update its next_entry pointer. */
5563 last_hash_entry[curr_lst_sym->symbol_key % lst.hash_size]
5567 /* Update the string table. */
5568 bfd_put_32 (abfd, strlen (sym->symbol.name), p);
5570 strcpy (p, sym->symbol.name);
5571 p += strlen (sym->symbol.name) + 1;
5574 bfd_put_8 (abfd, 0, p);
5578 /* Head to the next symbol. */
5582 /* Keep track of where each SOM will finally reside; then look
5584 curr_som_offset += arelt_size (curr_bfd) + sizeof (struct ar_hdr);
5586 /* A particular object in the archive may have an odd length; the
5587 linker requires objects begin on an even boundary. So round
5588 up the current offset as necessary. */
5589 curr_som_offset = (curr_som_offset + 0x1) & ~0x1;
5590 curr_bfd = curr_bfd->next;
5594 /* Now scribble out the hash table. */
5595 if (bfd_write ((PTR) hash_table, lst.hash_size, 4, abfd)
5596 != lst.hash_size * 4)
5599 /* Then the SOM dictionary. */
5600 if (bfd_write ((PTR) som_dict, lst.module_count,
5601 sizeof (struct som_entry), abfd)
5602 != lst.module_count * sizeof (struct som_entry))
5605 /* The library symbols. */
5606 if (bfd_write ((PTR) lst_syms, nsyms, sizeof (struct lst_symbol_record), abfd)
5607 != nsyms * sizeof (struct lst_symbol_record))
5610 /* And finally the strings. */
5611 if (bfd_write ((PTR) strings, string_size, 1, abfd) != string_size)
5614 if (hash_table != NULL)
5616 if (som_dict != NULL)
5618 if (last_hash_entry != NULL)
5619 free (last_hash_entry);
5620 if (lst_syms != NULL)
5622 if (strings != NULL)
5627 if (hash_table != NULL)
5629 if (som_dict != NULL)
5631 if (last_hash_entry != NULL)
5632 free (last_hash_entry);
5633 if (lst_syms != NULL)
5635 if (strings != NULL)
5641 /* SOM almost uses the SVR4 style extended name support, but not
5645 som_construct_extended_name_table (abfd, tabloc, tablen, name)
5648 bfd_size_type *tablen;
5652 return _bfd_construct_extended_name_table (abfd, false, tabloc, tablen);
5655 /* Write out the LST for the archive.
5657 You'll never believe this is really how armaps are handled in SOM... */
5661 som_write_armap (abfd, elength, map, orl_count, stridx)
5663 unsigned int elength;
5665 unsigned int orl_count;
5669 struct stat statbuf;
5670 unsigned int i, lst_size, nsyms, stringsize;
5672 struct lst_header lst;
5675 /* We'll use this for the archive's date and mode later. */
5676 if (stat (abfd->filename, &statbuf) != 0)
5678 bfd_set_error (bfd_error_system_call);
5682 bfd_ardata (abfd)->armap_timestamp = statbuf.st_mtime + 60;
5684 /* Account for the lst header first. */
5685 lst_size = sizeof (struct lst_header);
5687 /* Start building the LST header. */
5688 /* FIXME: Do we need to examine each element to determine the
5689 largest id number? */
5690 lst.system_id = CPU_PA_RISC1_0;
5691 lst.a_magic = LIBMAGIC;
5692 lst.version_id = VERSION_ID;
5693 lst.file_time.secs = 0;
5694 lst.file_time.nanosecs = 0;
5696 lst.hash_loc = lst_size;
5697 lst.hash_size = SOM_LST_HASH_SIZE;
5699 /* Hash table is a SOM_LST_HASH_SIZE 32bit offsets. */
5700 lst_size += 4 * SOM_LST_HASH_SIZE;
5702 /* We need to count the number of SOMs in this archive. */
5703 curr_bfd = abfd->archive_head;
5704 lst.module_count = 0;
5705 while (curr_bfd != NULL)
5707 /* Only true SOM objects count. */
5708 if (curr_bfd->format == bfd_object
5709 && curr_bfd->xvec->flavour == bfd_target_som_flavour)
5711 curr_bfd = curr_bfd->next;
5713 lst.module_limit = lst.module_count;
5714 lst.dir_loc = lst_size;
5715 lst_size += sizeof (struct som_entry) * lst.module_count;
5717 /* We don't support import/export tables, auxiliary headers,
5718 or free lists yet. Make the linker work a little harder
5719 to make our life easier. */
5722 lst.export_count = 0;
5727 /* Count how many symbols we will have on the hash chains and the
5728 size of the associated string table. */
5729 if (som_bfd_prep_for_ar_write (abfd, &nsyms, &stringsize) == false)
5732 lst_size += sizeof (struct lst_symbol_record) * nsyms;
5734 /* For the string table. One day we might actually use this info
5735 to avoid small seeks/reads when reading archives. */
5736 lst.string_loc = lst_size;
5737 lst.string_size = stringsize;
5738 lst_size += stringsize;
5740 /* SOM ABI says this must be zero. */
5742 lst.file_end = lst_size;
5744 /* Compute the checksum. Must happen after the entire lst header
5748 for (i = 0; i < sizeof (struct lst_header)/sizeof (int) - 1; i++)
5749 lst.checksum ^= *p++;
5751 sprintf (hdr.ar_name, "/ ");
5752 sprintf (hdr.ar_date, "%ld", bfd_ardata (abfd)->armap_timestamp);
5753 sprintf (hdr.ar_uid, "%ld", (long) getuid ());
5754 sprintf (hdr.ar_gid, "%ld", (long) getgid ());
5755 sprintf (hdr.ar_mode, "%-8o", (unsigned int) statbuf.st_mode);
5756 sprintf (hdr.ar_size, "%-10d", (int) lst_size);
5757 hdr.ar_fmag[0] = '`';
5758 hdr.ar_fmag[1] = '\012';
5760 /* Turn any nulls into spaces. */
5761 for (i = 0; i < sizeof (struct ar_hdr); i++)
5762 if (((char *) (&hdr))[i] == '\0')
5763 (((char *) (&hdr))[i]) = ' ';
5765 /* Scribble out the ar header. */
5766 if (bfd_write ((PTR) &hdr, 1, sizeof (struct ar_hdr), abfd)
5767 != sizeof (struct ar_hdr))
5770 /* Now scribble out the lst header. */
5771 if (bfd_write ((PTR) &lst, 1, sizeof (struct lst_header), abfd)
5772 != sizeof (struct lst_header))
5775 /* Build and write the armap. */
5776 if (som_bfd_ar_write_symbol_stuff (abfd, nsyms, stringsize, lst) == false)
5783 /* Free all information we have cached for this BFD. We can always
5784 read it again later if we need it. */
5787 som_bfd_free_cached_info (abfd)
5792 if (bfd_get_format (abfd) != bfd_object)
5795 #define FREE(x) if (x != NULL) { free (x); x = NULL; }
5796 /* Free the native string and symbol tables. */
5797 FREE (obj_som_symtab (abfd));
5798 FREE (obj_som_stringtab (abfd));
5799 for (o = abfd->sections; o != (asection *) NULL; o = o->next)
5801 /* Free the native relocations. */
5802 o->reloc_count = -1;
5803 FREE (som_section_data (o)->reloc_stream);
5804 /* Free the generic relocations. */
5805 FREE (o->relocation);
5812 /* End of miscellaneous support functions. */
5814 #define som_close_and_cleanup som_bfd_free_cached_info
5816 #define som_openr_next_archived_file bfd_generic_openr_next_archived_file
5817 #define som_generic_stat_arch_elt bfd_generic_stat_arch_elt
5818 #define som_truncate_arname bfd_bsd_truncate_arname
5819 #define som_slurp_extended_name_table _bfd_slurp_extended_name_table
5820 #define som_update_armap_timestamp bfd_true
5822 #define som_get_lineno _bfd_nosymbols_get_lineno
5823 #define som_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
5825 #define som_bfd_get_relocated_section_contents \
5826 bfd_generic_get_relocated_section_contents
5827 #define som_bfd_relax_section bfd_generic_relax_section
5828 #define som_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
5829 #define som_bfd_link_add_symbols _bfd_generic_link_add_symbols
5830 #define som_bfd_final_link _bfd_generic_final_link
5832 const bfd_target som_vec =
5835 bfd_target_som_flavour,
5836 true, /* target byte order */
5837 true, /* target headers byte order */
5838 (HAS_RELOC | EXEC_P | /* object flags */
5839 HAS_LINENO | HAS_DEBUG |
5840 HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED | DYNAMIC),
5841 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
5842 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
5844 /* leading_symbol_char: is the first char of a user symbol
5845 predictable, and if so what is it */
5847 '/', /* ar_pad_char */
5848 14, /* ar_max_namelen */
5849 3, /* minimum alignment */
5850 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
5851 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
5852 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* data */
5853 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
5854 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
5855 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */
5857 som_object_p, /* bfd_check_format */
5858 bfd_generic_archive_p,
5864 _bfd_generic_mkarchive,
5869 som_write_object_contents,
5870 _bfd_write_archive_contents,
5875 BFD_JUMP_TABLE_GENERIC (som),
5876 BFD_JUMP_TABLE_COPY (som),
5877 BFD_JUMP_TABLE_CORE (_bfd_nocore),
5878 BFD_JUMP_TABLE_ARCHIVE (som),
5879 BFD_JUMP_TABLE_SYMBOLS (som),
5880 BFD_JUMP_TABLE_RELOCS (som),
5881 BFD_JUMP_TABLE_WRITE (som),
5882 BFD_JUMP_TABLE_LINK (som),
5883 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
5888 #endif /* HOST_HPPAHPUX || HOST_HPPABSD || HOST_HPPAOSF */