1 /* BFD back-end data structures for a.out (and similar) files. 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 3 2000, 2001, 2002, 2003 4 Free Software Foundation, Inc. 5 Written by Cygnus Support. 6 7 This file is part of BFD, the Binary File Descriptor library. 8 9 This program is free software; you can redistribute it and/or modify 10 it under the terms of the GNU General Public License as published by 11 the Free Software Foundation; either version 2 of the License, or 12 (at your option) any later version. 13 14 This program is distributed in the hope that it will be useful, 15 but WITHOUT ANY WARRANTY; without even the implied warranty of 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 GNU General Public License for more details. 18 19 You should have received a copy of the GNU General Public License 20 along with this program; if not, write to the Free Software 21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 22 23 #ifndef LIBAOUT_H 24 #define LIBAOUT_H 25 26 /* We try to encapsulate the differences in the various a.out file 27 variants in a few routines, and otherwise share large masses of code. 28 This means we only have to fix bugs in one place, most of the time. */ 29 30 #include "bfdlink.h" 31 32 /* Macros for accessing components in an aout header. */ 33 34 #define H_PUT_64 bfd_h_put_64 35 #define H_PUT_32 bfd_h_put_32 36 #define H_PUT_16 bfd_h_put_16 37 #define H_PUT_8 bfd_h_put_8 38 #define H_PUT_S64 bfd_h_put_signed_64 39 #define H_PUT_S32 bfd_h_put_signed_32 40 #define H_PUT_S16 bfd_h_put_signed_16 41 #define H_PUT_S8 bfd_h_put_signed_8 42 #define H_GET_64 bfd_h_get_64 43 #define H_GET_32 bfd_h_get_32 44 #define H_GET_16 bfd_h_get_16 45 #define H_GET_8 bfd_h_get_8 46 #define H_GET_S64 bfd_h_get_signed_64 47 #define H_GET_S32 bfd_h_get_signed_32 48 #define H_GET_S16 bfd_h_get_signed_16 49 #define H_GET_S8 bfd_h_get_signed_8 50 51 /* Parameterize the a.out code based on whether it is being built 52 for a 32-bit architecture or a 64-bit architecture. */ 53 /* Do not "beautify" the CONCAT* macro args. Traditional C will not 54 remove whitespace added here, and thus will fail to concatenate 55 the tokens. */ 56 #if ARCH_SIZE==64 57 #define GET_WORD H_GET_64 58 #define GET_SWORD H_GET_S64 59 #define GET_MAGIC H_GET_32 60 #define PUT_WORD H_PUT_64 61 #define PUT_MAGIC H_PUT_32 62 #ifndef NAME 63 #define NAME(x,y) CONCAT3 (x,_64_,y) 64 #endif 65 #define JNAME(x) CONCAT2 (x,_64) 66 #define BYTES_IN_WORD 8 67 #else 68 #if ARCH_SIZE==16 69 #define GET_WORD H_GET_16 70 #define GET_SWORD H_GET_S16 71 #define GET_MAGIC H_GET_16 72 #define PUT_WORD H_PUT_16 73 #define PUT_MAGIC H_PUT_16 74 #ifndef NAME 75 #define NAME(x,y) CONCAT3 (x,_16_,y) 76 #endif 77 #define JNAME(x) CONCAT2 (x,_16) 78 #define BYTES_IN_WORD 2 79 #else /* ARCH_SIZE == 32 */ 80 #define GET_WORD H_GET_32 81 #define GET_SWORD H_GET_S32 82 #define GET_MAGIC H_GET_32 83 #define PUT_WORD H_PUT_32 84 #define PUT_MAGIC H_PUT_32 85 #ifndef NAME 86 #define NAME(x,y) CONCAT3 (x,_32_,y) 87 #endif 88 #define JNAME(x) CONCAT2 (x,_32) 89 #define BYTES_IN_WORD 4 90 #endif /* ARCH_SIZE==32 */ 91 #endif /* ARCH_SIZE==64 */ 92 93 /* Declare at file level, since used in parameter lists, which have 94 weird scope. */ 95 struct external_exec; 96 struct external_nlist; 97 struct reloc_ext_external; 98 struct reloc_std_external; 99 100 /* a.out backend linker hash table entries. */ 101 102 struct aout_link_hash_entry 103 { 104 struct bfd_link_hash_entry root; 105 /* Whether this symbol has been written out. */ 106 bfd_boolean written; 107 /* Symbol index in output file. */ 108 int indx; 109 }; 110 111 /* a.out backend linker hash table. */ 112 113 struct aout_link_hash_table 114 { 115 struct bfd_link_hash_table root; 116 }; 117 118 /* Look up an entry in an a.out link hash table. */ 119 120 #define aout_link_hash_lookup(table, string, create, copy, follow) \ 121 ((struct aout_link_hash_entry *) \ 122 bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow))) 123 124 /* Traverse an a.out link hash table. */ 125 126 #define aout_link_hash_traverse(table, func, info) \ 127 (bfd_link_hash_traverse \ 128 (&(table)->root, \ 129 (bfd_boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func), \ 130 (info))) 131 132 /* Get the a.out link hash table from the info structure. This is 133 just a cast. */ 134 135 #define aout_hash_table(p) ((struct aout_link_hash_table *) ((p)->hash)) 136 137 /* Back-end information for various a.out targets. */ 138 struct aout_backend_data 139 { 140 /* Are ZMAGIC files mapped contiguously? If so, the text section may 141 need more padding, if the segment size (granularity for memory access 142 control) is larger than the page size. */ 143 unsigned char zmagic_mapped_contiguous; 144 /* If this flag is set, ZMAGIC/NMAGIC file headers get mapped in with the 145 text section, which starts immediately after the file header. 146 If not, the text section starts on the next page. */ 147 unsigned char text_includes_header; 148 149 /* If this flag is set, then if the entry address is not in the 150 first SEGMENT_SIZE bytes of the text section, it is taken to be 151 the address of the start of the text section. This can be useful 152 for kernels. */ 153 unsigned char entry_is_text_address; 154 155 /* The value to pass to N_SET_FLAGS. */ 156 unsigned char exec_hdr_flags; 157 158 /* If the text section VMA isn't specified, and we need an absolute 159 address, use this as the default. If we're producing a relocatable 160 file, zero is always used. */ 161 /* ?? Perhaps a callback would be a better choice? Will this do anything 162 reasonable for a format that handles multiple CPUs with different 163 load addresses for each? */ 164 bfd_vma default_text_vma; 165 166 /* Callback for setting the page and segment sizes, if they can't be 167 trivially determined from the architecture. */ 168 bfd_boolean (*set_sizes) 169 PARAMS ((bfd *)); 170 171 /* zmagic files only. For go32, the length of the exec header contributes 172 to the size of the text section in the file for alignment purposes but 173 does *not* get counted in the length of the text section. */ 174 unsigned char exec_header_not_counted; 175 176 /* Callback from the add symbols phase of the linker code to handle 177 a dynamic object. */ 178 bfd_boolean (*add_dynamic_symbols) 179 PARAMS ((bfd *, struct bfd_link_info *, struct external_nlist **, 180 bfd_size_type *, char **)); 181 182 /* Callback from the add symbols phase of the linker code to handle 183 adding a single symbol to the global linker hash table. */ 184 bfd_boolean (*add_one_symbol) 185 PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword, 186 asection *, bfd_vma, const char *, bfd_boolean, bfd_boolean, 187 struct bfd_link_hash_entry **)); 188 189 /* Called to handle linking a dynamic object. */ 190 bfd_boolean (*link_dynamic_object) 191 PARAMS ((struct bfd_link_info *, bfd *)); 192 193 /* Called for each global symbol being written out by the linker. 194 This should write out the dynamic symbol information. */ 195 bfd_boolean (*write_dynamic_symbol) 196 PARAMS ((bfd *, struct bfd_link_info *, struct aout_link_hash_entry *)); 197 198 /* If this callback is not NULL, the linker calls it for each reloc. 199 RELOC is a pointer to the unswapped reloc. If *SKIP is set to 200 TRUE, the reloc will be skipped. *RELOCATION may be changed to 201 change the effects of the relocation. */ 202 bfd_boolean (*check_dynamic_reloc) 203 PARAMS ((struct bfd_link_info *info, bfd *input_bfd, 204 asection *input_section, struct aout_link_hash_entry *h, 205 PTR reloc, bfd_byte *contents, bfd_boolean *skip, 206 bfd_vma *relocation)); 207 208 /* Called at the end of a link to finish up any dynamic linking 209 information. */ 210 bfd_boolean (*finish_dynamic_link) 211 PARAMS ((bfd *, struct bfd_link_info *)); 212 }; 213 #define aout_backend_info(abfd) \ 214 ((const struct aout_backend_data *)((abfd)->xvec->backend_data)) 215 216 /* This is the layout in memory of a "struct exec" while we process it. 217 All 'lengths' are given as a number of bytes. 218 All 'alignments' are for relinkable files only; an alignment of 219 'n' indicates the corresponding segment must begin at an 220 address that is a multiple of (2**n). */ 221 222 struct internal_exec 223 { 224 long a_info; /* Magic number and flags, packed */ 225 bfd_vma a_text; /* length of text, in bytes */ 226 bfd_vma a_data; /* length of data, in bytes */ 227 bfd_vma a_bss; /* length of uninitialized data area in mem */ 228 bfd_vma a_syms; /* length of symbol table data in file */ 229 bfd_vma a_entry; /* start address */ 230 bfd_vma a_trsize; /* length of text's relocation info, in bytes */ 231 bfd_vma a_drsize; /* length of data's relocation info, in bytes */ 232 /* Added for i960 */ 233 bfd_vma a_tload; /* Text runtime load address */ 234 bfd_vma a_dload; /* Data runtime load address */ 235 unsigned char a_talign; /* Alignment of text segment */ 236 unsigned char a_dalign; /* Alignment of data segment */ 237 unsigned char a_balign; /* Alignment of bss segment */ 238 char a_relaxable; /* Enough info for linker relax */ 239 }; 240 241 /* Magic number is written 242 < MSB > 243 3130292827262524232221201918171615141312111009080706050403020100 244 < FLAGS >< MACHINE TYPE >< MAGIC NUMBER > 245 */ 246 /* Magic number for NetBSD is 247 <MSB > 248 3130292827262524232221201918171615141312111009080706050403020100 249 < FLAGS >< MACHINE TYPE >< MAGIC NUMBER > 250 */ 251 252 enum machine_type { 253 M_UNKNOWN = 0, 254 M_68010 = 1, 255 M_68020 = 2, 256 M_SPARC = 3, 257 /* Skip a bunch so we don't run into any of SUN's numbers. */ 258 /* Make these up for the ns32k. */ 259 M_NS32032 = (64), /* ns32032 running ? */ 260 M_NS32532 = (64 + 5), /* ns32532 running mach */ 261 262 M_386 = 100, 263 M_29K = 101, /* AMD 29000 */ 264 M_386_DYNIX = 102, /* Sequent running dynix */ 265 M_ARM = 103, /* Advanced Risc Machines ARM */ 266 M_SPARCLET = 131, /* SPARClet = M_SPARC + 128 */ 267 M_386_NETBSD = 134, /* NetBSD/i386 binary */ 268 M_68K_NETBSD = 135, /* NetBSD/m68k binary */ 269 M_68K4K_NETBSD = 136, /* NetBSD/m68k4k binary */ 270 M_532_NETBSD = 137, /* NetBSD/ns32k binary */ 271 M_SPARC_NETBSD = 138, /* NetBSD/sparc binary */ 272 M_PMAX_NETBSD = 139, /* NetBSD/pmax (MIPS little-endian) binary */ 273 M_VAX_NETBSD = 140, /* NetBSD/vax binary */ 274 M_ALPHA_NETBSD = 141, /* NetBSD/alpha binary */ 275 M_ARM6_NETBSD = 143, /* NetBSD/arm32 binary */ 276 M_SPARCLET_1 = 147, /* 0x93, reserved */ 277 M_POWERPC_NETBSD = 149, /* NetBSD/powerpc (big-endian) binary */ 278 M_VAX4K_NETBSD = 150, /* NetBSD/vax 4K pages binary */ 279 M_MIPS1 = 151, /* MIPS R2000/R3000 binary */ 280 M_MIPS2 = 152, /* MIPS R4000/R6000 binary */ 281 M_88K_OPENBSD = 153, /* OpenBSD/m88k binary */ 282 M_HPPA_OPENBSD = 154, /* OpenBSD/hppa binary */ 283 M_SPARC64_NETBSD = 156, /* NetBSD/sparc64 binary */ 284 M_X86_64_NETBSD = 157, /* NetBSD/amd64 binary */ 285 M_SPARCLET_2 = 163, /* 0xa3, reserved */ 286 M_SPARCLET_3 = 179, /* 0xb3, reserved */ 287 M_SPARCLET_4 = 195, /* 0xc3, reserved */ 288 M_HP200 = 200, /* HP 200 (68010) BSD binary */ 289 M_HP300 = (300 % 256), /* HP 300 (68020+68881) BSD binary */ 290 M_HPUX = (0x20c % 256), /* HP 200/300 HPUX binary */ 291 M_SPARCLET_5 = 211, /* 0xd3, reserved */ 292 M_SPARCLET_6 = 227, /* 0xe3, reserved */ 293 /* M_SPARCLET_7 = 243 / * 0xf3, reserved */ 294 M_SPARCLITE_LE = 243, 295 M_CRIS = 255 /* Axis CRIS binary. */ 296 }; 297 298 #define N_DYNAMIC(exec) ((exec).a_info & 0x80000000) 299 300 #ifndef N_MAGIC 301 # define N_MAGIC(exec) ((exec).a_info & 0xffff) 302 #endif 303 304 #ifndef N_MACHTYPE 305 # define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) 306 #endif 307 308 #ifndef N_FLAGS 309 # define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) 310 #endif 311 312 #ifndef N_SET_INFO 313 # define N_SET_INFO(exec, magic, type, flags) \ 314 ((exec).a_info = ((magic) & 0xffff) \ 315 | (((int)(type) & 0xff) << 16) \ 316 | (((flags) & 0xff) << 24)) 317 #endif 318 319 #ifndef N_SET_DYNAMIC 320 # define N_SET_DYNAMIC(exec, dynamic) \ 321 ((exec).a_info = (dynamic) ? (long) ((exec).a_info | 0x80000000) : \ 322 ((exec).a_info & 0x7fffffff)) 323 #endif 324 325 #ifndef N_SET_MAGIC 326 # define N_SET_MAGIC(exec, magic) \ 327 ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff))) 328 #endif 329 330 #ifndef N_SET_MACHTYPE 331 # define N_SET_MACHTYPE(exec, machtype) \ 332 ((exec).a_info = \ 333 ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16)) 334 #endif 335 336 #ifndef N_SET_FLAGS 337 # define N_SET_FLAGS(exec, flags) \ 338 ((exec).a_info = \ 339 ((exec).a_info&0x00ffffff) | (((flags) & 0xff) << 24)) 340 #endif 341 342 typedef struct aout_symbol { 343 asymbol symbol; 344 short desc; 345 char other; 346 unsigned char type; 347 } aout_symbol_type; 348 349 /* The `tdata' struct for all a.out-like object file formats. 350 Various things depend on this struct being around any time an a.out 351 file is being handled. An example is dbxread.c in GDB. */ 352 353 struct aoutdata { 354 struct internal_exec *hdr; /* exec file header */ 355 aout_symbol_type *symbols; /* symtab for input bfd */ 356 357 /* For ease, we do this. */ 358 asection *textsec; 359 asection *datasec; 360 asection *bsssec; 361 362 /* We remember these offsets so that after check_file_format, we have 363 no dependencies on the particular format of the exec_hdr. */ 364 file_ptr sym_filepos; 365 file_ptr str_filepos; 366 367 /* Size of a relocation entry in external form. */ 368 unsigned reloc_entry_size; 369 370 /* Size of a symbol table entry in external form. */ 371 unsigned symbol_entry_size; 372 373 /* Page size - needed for alignment of demand paged files. */ 374 unsigned long page_size; 375 376 /* Segment size - needed for alignment of demand paged files. */ 377 unsigned long segment_size; 378 379 /* Zmagic disk block size - need to align the start of the text 380 section in ZMAGIC binaries. Normally the same as page_size. */ 381 unsigned long zmagic_disk_block_size; 382 383 unsigned exec_bytes_size; 384 unsigned vma_adjusted : 1; 385 386 /* Used when a bfd supports several highly similar formats. */ 387 enum 388 { 389 default_format = 0, 390 /* Used on HP 9000/300 running HP/UX. See hp300hpux.c. */ 391 gnu_encap_format, 392 /* Used on Linux, 386BSD, etc. See include/aout/aout64.h. */ 393 q_magic_format 394 } subformat; 395 396 enum 397 { 398 undecided_magic = 0, 399 z_magic, 400 o_magic, 401 n_magic 402 } magic; 403 404 /* A buffer for find_nearest_line. */ 405 char *line_buf; 406 407 /* The external symbol information. */ 408 struct external_nlist *external_syms; 409 bfd_size_type external_sym_count; 410 bfd_window sym_window; 411 char *external_strings; 412 bfd_size_type external_string_size; 413 bfd_window string_window; 414 struct aout_link_hash_entry **sym_hashes; 415 416 /* A pointer for shared library information. */ 417 PTR dynamic_info; 418 419 /* A mapping from local symbols to offsets into the global offset 420 table, used when linking on SunOS. This is indexed by the symbol 421 index. */ 422 bfd_vma *local_got_offsets; 423 }; 424 425 struct aout_data_struct { 426 struct aoutdata a; 427 struct internal_exec e; 428 }; 429 430 #define adata(bfd) ((bfd)->tdata.aout_data->a) 431 #define exec_hdr(bfd) (adata(bfd).hdr) 432 #define obj_aout_symbols(bfd) (adata(bfd).symbols) 433 #define obj_textsec(bfd) (adata(bfd).textsec) 434 #define obj_datasec(bfd) (adata(bfd).datasec) 435 #define obj_bsssec(bfd) (adata(bfd).bsssec) 436 #define obj_sym_filepos(bfd) (adata(bfd).sym_filepos) 437 #define obj_str_filepos(bfd) (adata(bfd).str_filepos) 438 #define obj_reloc_entry_size(bfd) (adata(bfd).reloc_entry_size) 439 #define obj_symbol_entry_size(bfd) (adata(bfd).symbol_entry_size) 440 #define obj_aout_subformat(bfd) (adata(bfd).subformat) 441 #define obj_aout_external_syms(bfd) (adata(bfd).external_syms) 442 #define obj_aout_external_sym_count(bfd) (adata(bfd).external_sym_count) 443 #define obj_aout_sym_window(bfd) (adata(bfd).sym_window) 444 #define obj_aout_external_strings(bfd) (adata(bfd).external_strings) 445 #define obj_aout_external_string_size(bfd) (adata(bfd).external_string_size) 446 #define obj_aout_string_window(bfd) (adata(bfd).string_window) 447 #define obj_aout_sym_hashes(bfd) (adata(bfd).sym_hashes) 448 #define obj_aout_dynamic_info(bfd) (adata(bfd).dynamic_info) 449 450 /* We take the address of the first element of an asymbol to ensure that the 451 macro is only ever applied to an asymbol. */ 452 #define aout_symbol(asymbol) ((aout_symbol_type *)(&(asymbol)->the_bfd)) 453 454 /* Information we keep for each a.out section. This is currently only 455 used by the a.out backend linker. */ 456 457 struct aout_section_data_struct 458 { 459 /* The unswapped relocation entries for this section. */ 460 PTR relocs; 461 }; 462 463 #define aout_section_data(s) \ 464 ((struct aout_section_data_struct *) (s)->used_by_bfd) 465 466 #define set_aout_section_data(s,v) \ 467 ((s)->used_by_bfd = (PTR)&(v)->relocs) 468 469 /* Prototype declarations for functions defined in aoutx.h. */ 470 471 extern bfd_boolean NAME(aout,squirt_out_relocs) 472 PARAMS ((bfd *, asection *)); 473 474 extern bfd_boolean NAME(aout,make_sections) 475 PARAMS ((bfd *)); 476 477 extern const bfd_target * NAME(aout,some_aout_object_p) 478 PARAMS ((bfd *, struct internal_exec *, const bfd_target *(*) (bfd *))); 479 480 extern bfd_boolean NAME(aout,mkobject) 481 PARAMS ((bfd *)); 482 483 extern enum machine_type NAME(aout,machine_type) 484 PARAMS ((enum bfd_architecture, unsigned long, bfd_boolean *)); 485 486 extern bfd_boolean NAME(aout,set_arch_mach) 487 PARAMS ((bfd *, enum bfd_architecture, unsigned long)); 488 489 extern bfd_boolean NAME(aout,new_section_hook) 490 PARAMS ((bfd *, asection *)); 491 492 extern bfd_boolean NAME(aout,set_section_contents) 493 PARAMS ((bfd *, sec_ptr, const PTR, file_ptr, bfd_size_type)); 494 495 extern asymbol * NAME(aout,make_empty_symbol) 496 PARAMS ((bfd *)); 497 498 extern bfd_boolean NAME(aout,translate_symbol_table) 499 PARAMS ((bfd *, aout_symbol_type *, struct external_nlist *, bfd_size_type, 500 char *, bfd_size_type, bfd_boolean)); 501 502 extern bfd_boolean NAME(aout,slurp_symbol_table) 503 PARAMS ((bfd *)); 504 505 extern bfd_boolean NAME(aout,write_syms) 506 PARAMS ((bfd *)); 507 508 extern void NAME(aout,reclaim_symbol_table) 509 PARAMS ((bfd *)); 510 511 extern long NAME(aout,get_symtab_upper_bound) 512 PARAMS ((bfd *)); 513 514 extern long NAME(aout,canonicalize_symtab) 515 PARAMS ((bfd *, asymbol **)); 516 517 extern void NAME(aout,swap_ext_reloc_in) 518 PARAMS ((bfd *, struct reloc_ext_external *, arelent *, asymbol **, 519 bfd_size_type)); 520 extern void NAME(aout,swap_std_reloc_in) 521 PARAMS ((bfd *, struct reloc_std_external *, arelent *, asymbol **, 522 bfd_size_type)); 523 524 extern reloc_howto_type * NAME(aout,reloc_type_lookup) 525 PARAMS ((bfd *, bfd_reloc_code_real_type)); 526 527 extern bfd_boolean NAME(aout,slurp_reloc_table) 528 PARAMS ((bfd *, sec_ptr, asymbol **)); 529 530 extern long NAME(aout,canonicalize_reloc) 531 PARAMS ((bfd *, sec_ptr, arelent **, asymbol **)); 532 533 extern long NAME(aout,get_reloc_upper_bound) 534 PARAMS ((bfd *, sec_ptr)); 535 536 extern void NAME(aout,reclaim_reloc) 537 PARAMS ((bfd *, sec_ptr)); 538 539 extern alent * NAME(aout,get_lineno) 540 PARAMS ((bfd *, asymbol *)); 541 542 extern void NAME(aout,print_symbol) 543 PARAMS ((bfd *, PTR, asymbol *, bfd_print_symbol_type)); 544 545 extern void NAME(aout,get_symbol_info) 546 PARAMS ((bfd *, asymbol *, symbol_info *)); 547 548 extern bfd_boolean NAME(aout,find_nearest_line) 549 PARAMS ((bfd *, asection *, asymbol **, bfd_vma, const char **, 550 const char **, unsigned int *)); 551 552 extern long NAME(aout,read_minisymbols) 553 PARAMS ((bfd *, bfd_boolean, PTR *, unsigned int *)); 554 555 extern asymbol * NAME(aout,minisymbol_to_symbol) 556 PARAMS ((bfd *, bfd_boolean, const PTR, asymbol *)); 557 558 extern int NAME(aout,sizeof_headers) 559 PARAMS ((bfd *, bfd_boolean)); 560 561 extern bfd_boolean NAME(aout,adjust_sizes_and_vmas) 562 PARAMS ((bfd *, bfd_size_type *, file_ptr *)); 563 564 extern void NAME(aout,swap_exec_header_in) 565 PARAMS ((bfd *, struct external_exec *, struct internal_exec *)); 566 567 extern void NAME(aout,swap_exec_header_out) 568 PARAMS ((bfd *, struct internal_exec *, struct external_exec *)); 569 570 extern struct bfd_hash_entry * NAME(aout,link_hash_newfunc) 571 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *)); 572 573 extern bfd_boolean NAME(aout,link_hash_table_init) 574 PARAMS ((struct aout_link_hash_table *, bfd *, 575 struct bfd_hash_entry *(*) (struct bfd_hash_entry *, 576 struct bfd_hash_table *, 577 const char *))); 578 579 extern struct bfd_link_hash_table * NAME(aout,link_hash_table_create) 580 PARAMS ((bfd *)); 581 582 extern bfd_boolean NAME(aout,link_add_symbols) 583 PARAMS ((bfd *, struct bfd_link_info *)); 584 585 extern bfd_boolean NAME(aout,final_link) 586 PARAMS ((bfd *, struct bfd_link_info *, 587 void (*) (bfd *, file_ptr *, file_ptr *, file_ptr *))); 588 589 extern bfd_boolean NAME(aout,bfd_free_cached_info) 590 PARAMS ((bfd *)); 591 592 /* A.out uses the generic versions of these routines... */ 593 594 #define aout_16_get_section_contents _bfd_generic_get_section_contents 595 596 #define aout_32_get_section_contents _bfd_generic_get_section_contents 597 598 #define aout_64_get_section_contents _bfd_generic_get_section_contents 599 #ifndef NO_WRITE_HEADER_KLUDGE 600 #define NO_WRITE_HEADER_KLUDGE 0 601 #endif 602 603 #ifndef aout_32_bfd_is_local_label_name 604 #define aout_32_bfd_is_local_label_name bfd_generic_is_local_label_name 605 #endif 606 607 #ifndef WRITE_HEADERS 608 #define WRITE_HEADERS(abfd, execp) \ 609 { \ 610 bfd_size_type text_size; /* dummy vars */ \ 611 file_ptr text_end; \ 612 if (adata(abfd).magic == undecided_magic) \ 613 NAME(aout,adjust_sizes_and_vmas) (abfd, &text_size, &text_end); \ 614 \ 615 execp->a_syms = bfd_get_symcount (abfd) * EXTERNAL_NLIST_SIZE; \ 616 execp->a_entry = bfd_get_start_address (abfd); \ 617 \ 618 execp->a_trsize = ((obj_textsec (abfd)->reloc_count) * \ 619 obj_reloc_entry_size (abfd)); \ 620 execp->a_drsize = ((obj_datasec (abfd)->reloc_count) * \ 621 obj_reloc_entry_size (abfd)); \ 622 NAME(aout,swap_exec_header_out) (abfd, execp, &exec_bytes); \ 623 \ 624 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0 \ 625 || bfd_bwrite ((PTR) &exec_bytes, (bfd_size_type) EXEC_BYTES_SIZE, \ 626 abfd) != EXEC_BYTES_SIZE) \ 627 return FALSE; \ 628 /* Now write out reloc info, followed by syms and strings. */ \ 629 \ 630 if (bfd_get_outsymbols (abfd) != (asymbol **) NULL \ 631 && bfd_get_symcount (abfd) != 0) \ 632 { \ 633 if (bfd_seek (abfd, (file_ptr) (N_SYMOFF(*execp)), SEEK_SET) != 0)\ 634 return FALSE; \ 635 \ 636 if (! NAME(aout,write_syms) (abfd)) \ 637 return FALSE; \ 638 } \ 639 \ 640 if (bfd_seek (abfd, (file_ptr) (N_TRELOFF(*execp)), SEEK_SET) != 0) \ 641 return FALSE; \ 642 if (!NAME(aout,squirt_out_relocs) (abfd, obj_textsec (abfd))) \ 643 return FALSE; \ 644 \ 645 if (bfd_seek (abfd, (file_ptr) (N_DRELOFF(*execp)), SEEK_SET) != 0) \ 646 return FALSE; \ 647 if (!NAME(aout,squirt_out_relocs) (abfd, obj_datasec (abfd))) \ 648 return FALSE; \ 649 } 650 #endif 651 652 /* Test if a read-only section can be merged with .text. This is 653 possible if: 654 655 1. Section has file contents and is read-only. 656 2. The VMA of the section is after the end of .text and before 657 the start of .data. 658 3. The image is demand-pageable (otherwise, a_text in the header 659 will not reflect the gap between .text and .data). */ 660 661 #define aout_section_merge_with_text_p(abfd, sec) \ 662 (((sec)->flags & (SEC_HAS_CONTENTS | SEC_READONLY)) == \ 663 (SEC_HAS_CONTENTS | SEC_READONLY) \ 664 && obj_textsec (abfd) != NULL \ 665 && obj_datasec (abfd) != NULL \ 666 && (sec)->vma >= (obj_textsec (abfd)->vma + \ 667 obj_textsec (abfd)->_cooked_size) \ 668 && ((sec)->vma + (sec)->_cooked_size) <= obj_datasec (abfd)->vma \ 669 && ((abfd)->flags & D_PAGED) != 0) 670 671 #endif /* ! defined (LIBAOUT_H) */ 672