1 /* This file is is generated by a shell script. DO NOT EDIT! */
3 /* 32 bit ELF emulation code for elf32ebmip
4 Copyright (C) 1991, 93, 94, 95, 96, 98, 2000
5 Free Software Foundation, Inc.
6 Written by Steve Chamberlain <sac@cygnus.com>
7 ELF support by Ian Lance Taylor <ian@cygnus.com>
9 This file is part of GLD, the Gnu Linker.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 #define TARGET_IS_elf32ebmip
43 static void gldelf32ebmip_before_parse
PARAMS ((void));
44 static boolean gldelf32ebmip_open_dynamic_archive
45 PARAMS ((const char *, search_dirs_type
*, lang_input_statement_type
*));
46 static void gldelf32ebmip_after_open
PARAMS ((void));
47 static void gldelf32ebmip_check_needed
48 PARAMS ((lang_input_statement_type
*));
49 static void gldelf32ebmip_stat_needed
50 PARAMS ((lang_input_statement_type
*));
51 static boolean gldelf32ebmip_search_needed
52 PARAMS ((const char *, const char *));
53 static boolean gldelf32ebmip_try_needed
PARAMS ((const char *));
54 static void gldelf32ebmip_before_allocation
PARAMS ((void));
55 static void gldelf32ebmip_find_statement_assignment
56 PARAMS ((lang_statement_union_type
*));
57 static void gldelf32ebmip_find_exp_assignment
PARAMS ((etree_type
*));
58 static boolean gldelf32ebmip_place_orphan
59 PARAMS ((lang_input_statement_type
*, asection
*));
60 static void gldelf32ebmip_place_section
61 PARAMS ((lang_statement_union_type
*));
62 static char *gldelf32ebmip_get_script
PARAMS ((int *isfile
));
65 gldelf32ebmip_before_parse()
67 ldfile_output_architecture
= bfd_arch_mips
;
68 config
.dynamic_link
= true;
71 /* Try to open a dynamic archive. This is where we know that ELF
72 dynamic libraries have an extension of .so. */
75 gldelf32ebmip_open_dynamic_archive (arch
, search
, entry
)
77 search_dirs_type
*search
;
78 lang_input_statement_type
*entry
;
83 if (! entry
->is_archive
)
86 filename
= entry
->filename
;
88 string
= (char *) xmalloc (strlen (search
->name
)
93 sprintf (string
, "%s/lib%s%s.so", search
->name
, filename
, arch
);
95 if (! ldfile_try_open_bfd (string
, entry
))
101 entry
->filename
= string
;
103 /* We have found a dynamic object to include in the link. The ELF
104 backend linker will create a DT_NEEDED entry in the .dynamic
105 section naming this file. If this file includes a DT_SONAME
106 entry, it will be used. Otherwise, the ELF linker will just use
107 the name of the file. For an archive found by searching, like
108 this one, the DT_NEEDED entry should consist of just the name of
109 the file, without the path information used to find it. Note
110 that we only need to do this if we have a dynamic object; an
111 archive will never be referenced by a DT_NEEDED entry.
113 FIXME: This approach--using bfd_elf_set_dt_needed_name--is not
114 very pretty. I haven't been able to think of anything that is
116 if (bfd_check_format (entry
->the_bfd
, bfd_object
)
117 && (entry
->the_bfd
->flags
& DYNAMIC
) != 0)
121 ASSERT (entry
->is_archive
&& entry
->search_dirs_flag
);
122 needed_name
= (char *) xmalloc (strlen (filename
)
125 sprintf (needed_name
, "lib%s%s.so", filename
, arch
);
126 bfd_elf_set_dt_needed_name (entry
->the_bfd
, needed_name
);
133 /* These variables are required to pass information back and forth
134 between after_open and check_needed and stat_needed. */
136 static struct bfd_link_needed_list
*global_needed
;
137 static struct stat global_stat
;
138 static boolean global_found
;
140 /* This is called after all the input files have been opened. */
143 gldelf32ebmip_after_open ()
145 struct bfd_link_needed_list
*needed
, *l
;
147 /* We only need to worry about this when doing a final link. */
148 if (link_info
.relocateable
|| link_info
.shared
)
151 /* Get the list of files which appear in DT_NEEDED entries in
152 dynamic objects included in the link (often there will be none).
153 For each such file, we want to track down the corresponding
154 library, and include the symbol table in the link. This is what
155 the runtime dynamic linker will do. Tracking the files down here
156 permits one dynamic object to include another without requiring
157 special action by the person doing the link. Note that the
158 needed list can actually grow while we are stepping through this
160 needed
= bfd_elf_get_needed_list (output_bfd
, &link_info
);
161 for (l
= needed
; l
!= NULL
; l
= l
->next
)
163 struct bfd_link_needed_list
*ll
;
164 const char *lib_path
;
166 search_dirs_type
*search
;
168 /* If we've already seen this file, skip it. */
169 for (ll
= needed
; ll
!= l
; ll
= ll
->next
)
170 if (strcmp (ll
->name
, l
->name
) == 0)
175 /* See if this file was included in the link explicitly. */
177 global_found
= false;
178 lang_for_each_input_file (gldelf32ebmip_check_needed
);
182 /* We need to find this file and include the symbol table. We
183 want to search for the file in the same way that the dynamic
184 linker will search. That means that we want to use
185 rpath_link, rpath, then the environment variable
186 LD_LIBRARY_PATH (native only), then the linker script
187 LIB_SEARCH_DIRS. We do not search using the -L arguments. */
188 if (gldelf32ebmip_search_needed (command_line
.rpath_link
,
191 if (gldelf32ebmip_search_needed (command_line
.rpath
, l
->name
))
193 if (command_line
.rpath_link
== NULL
194 && command_line
.rpath
== NULL
)
196 lib_path
= (const char *) getenv ("LD_RUN_PATH");
197 if (gldelf32ebmip_search_needed (lib_path
, l
->name
))
200 len
= strlen (l
->name
);
201 for (search
= search_head
; search
!= NULL
; search
= search
->next
)
207 filename
= (char *) xmalloc (strlen (search
->name
) + len
+ 2);
208 sprintf (filename
, "%s/%s", search
->name
, l
->name
);
209 if (gldelf32ebmip_try_needed (filename
))
216 einfo (_("%P: warning: %s, needed by %B, not found\n"),
221 /* Search for a needed file in a path. */
224 gldelf32ebmip_search_needed (path
, name
)
231 if (path
== NULL
|| *path
== '\0')
236 char *filename
, *sset
;
238 s
= strchr (path
, ':');
240 s
= path
+ strlen (path
);
242 filename
= (char *) xmalloc (s
- path
+ len
+ 2);
247 memcpy (filename
, path
, s
- path
);
248 filename
[s
- path
] = '/';
249 sset
= filename
+ (s
- path
) + 1;
253 if (gldelf32ebmip_try_needed (filename
))
266 /* This function is called for each possible name for a dynamic object
267 named by a DT_NEEDED entry. */
270 gldelf32ebmip_try_needed (name
)
275 abfd
= bfd_openr (name
, bfd_get_target (output_bfd
));
278 if (! bfd_check_format (abfd
, bfd_object
))
280 (void) bfd_close (abfd
);
283 if ((bfd_get_file_flags (abfd
) & DYNAMIC
) == 0)
285 (void) bfd_close (abfd
);
289 /* We've found a dynamic object matching the DT_NEEDED entry. */
291 /* We have already checked that there is no other input file of the
292 same name. We must now check again that we are not including the
293 same file twice. We need to do this because on many systems
294 libc.so is a symlink to, e.g., libc.so.1. The SONAME entry will
295 reference libc.so.1. If we have already included libc.so, we
296 don't want to include libc.so.1 if they are the same file, and we
297 can only check that using stat. */
299 if (bfd_stat (abfd
, &global_stat
) != 0)
300 einfo (_("%F%P:%B: bfd_stat failed: %E\n"), abfd
);
301 global_found
= false;
302 lang_for_each_input_file (gldelf32ebmip_stat_needed
);
305 /* Return true to indicate that we found the file, even though
306 we aren't going to do anything with it. */
310 /* Tell the ELF backend that don't want the output file to have a
311 DT_NEEDED entry for this file. */
312 bfd_elf_set_dt_needed_name (abfd
, "");
314 /* Add this file into the symbol table. */
315 if (! bfd_link_add_symbols (abfd
, &link_info
))
316 einfo (_("%F%B: could not read symbols: %E\n"), abfd
);
321 /* See if an input file matches a DT_NEEDED entry by name. */
324 gldelf32ebmip_check_needed (s
)
325 lang_input_statement_type
*s
;
330 if (s
->filename
!= NULL
331 && strcmp (s
->filename
, global_needed
->name
) == 0)
337 if (s
->the_bfd
!= NULL
)
341 soname
= bfd_elf_get_dt_soname (s
->the_bfd
);
343 && strcmp (soname
, global_needed
->name
) == 0)
350 if (s
->search_dirs_flag
351 && s
->filename
!= NULL
352 && strchr (global_needed
->name
, '/') == NULL
)
356 f
= strrchr (s
->filename
, '/');
358 && strcmp (f
+ 1, global_needed
->name
) == 0)
366 /* See if an input file matches a DT_NEEDED entry by running stat on
370 gldelf32ebmip_stat_needed (s
)
371 lang_input_statement_type
*s
;
380 if (s
->the_bfd
== NULL
)
383 if (bfd_stat (s
->the_bfd
, &st
) != 0)
385 einfo (_("%P:%B: bfd_stat failed: %E\n"), s
->the_bfd
);
389 if (st
.st_dev
== global_stat
.st_dev
390 && st
.st_ino
== global_stat
.st_ino
)
396 /* We issue a warning if it looks like we are including two
397 different versions of the same shared library. For example,
398 there may be a problem if -lc picks up libc.so.6 but some other
399 shared library has a DT_NEEDED entry of libc.so.5. This is a
400 hueristic test, and it will only work if the name looks like
401 NAME.so.VERSION. FIXME: Depending on file names is error-prone.
402 If we really want to issue warnings about mixing version numbers
403 of shared libraries, we need to find a better way. */
405 if (strchr (global_needed
->name
, '/') != NULL
)
407 suffix
= strstr (global_needed
->name
, ".so.");
410 suffix
+= sizeof ".so." - 1;
412 soname
= bfd_elf_get_dt_soname (s
->the_bfd
);
414 soname
= s
->filename
;
416 f
= strrchr (soname
, '/');
422 if (strncmp (f
, global_needed
->name
, suffix
- global_needed
->name
) == 0)
423 einfo (_("%P: warning: %s, needed by %B, may conflict with %s\n"),
424 global_needed
->name
, global_needed
->by
, f
);
427 /* This is called after the sections have been attached to output
428 sections, but before any sizes or addresses have been set. */
431 gldelf32ebmip_before_allocation ()
436 /* If we are going to make any variable assignments, we need to let
437 the ELF backend know about them in case the variables are
438 referred to by dynamic objects. */
439 lang_for_each_statement (gldelf32ebmip_find_statement_assignment
);
441 /* Let the ELF backend work out the sizes of any sections required
442 by dynamic linking. */
443 rpath
= command_line
.rpath
;
445 rpath
= (const char *) getenv ("LD_RUN_PATH");
446 if (! (bfd_elf32_size_dynamic_sections
447 (output_bfd
, command_line
.soname
, rpath
,
448 command_line
.export_dynamic
, command_line
.filter_shlib
,
449 (const char * const *) command_line
.auxiliary_filters
,
450 &link_info
, &sinterp
, lang_elf_version_info
)))
451 einfo (_("%P%F: failed to set dynamic section sizes: %E\n"));
453 /* Let the user override the dynamic linker we are using. */
454 if (command_line
.interpreter
!= NULL
457 sinterp
->contents
= (bfd_byte
*) command_line
.interpreter
;
458 sinterp
->_raw_size
= strlen (command_line
.interpreter
) + 1;
461 /* Look for any sections named .gnu.warning. As a GNU extensions,
462 we treat such sections as containing warning messages. We print
463 out the warning message, and then zero out the section size so
464 that it does not get copied into the output file. */
467 LANG_FOR_EACH_INPUT_STATEMENT (is
)
474 if (is
->just_syms_flag
)
477 s
= bfd_get_section_by_name (is
->the_bfd
, ".gnu.warning");
481 sz
= bfd_section_size (is
->the_bfd
, s
);
482 msg
= xmalloc ((size_t) sz
+ 1);
483 if (! bfd_get_section_contents (is
->the_bfd
, s
, msg
, (file_ptr
) 0, sz
))
484 einfo (_("%F%B: Can't read contents of section .gnu.warning: %E\n"),
487 ret
= link_info
.callbacks
->warning (&link_info
, msg
,
489 is
->the_bfd
, (asection
*) NULL
,
494 /* Clobber the section size, so that we don't waste copying the
495 warning into the output file. */
501 /* This is called by the before_allocation routine via
502 lang_for_each_statement. It locates any assignment statements, and
503 tells the ELF backend about them, in case they are assignments to
504 symbols which are referred to by dynamic objects. */
507 gldelf32ebmip_find_statement_assignment (s
)
508 lang_statement_union_type
*s
;
510 if (s
->header
.type
== lang_assignment_statement_enum
)
511 gldelf32ebmip_find_exp_assignment (s
->assignment_statement
.exp
);
514 /* Look through an expression for an assignment statement. */
517 gldelf32ebmip_find_exp_assignment (exp
)
520 struct bfd_link_hash_entry
*h
;
522 switch (exp
->type
.node_class
)
525 h
= bfd_link_hash_lookup (link_info
.hash
, exp
->assign
.dst
,
526 false, false, false);
530 /* We call record_link_assignment even if the symbol is defined.
531 This is because if it is defined by a dynamic object, we
532 actually want to use the value defined by the linker script,
533 not the value from the dynamic object (because we are setting
534 symbols like etext). If the symbol is defined by a regular
535 object, then, as it happens, calling record_link_assignment
540 if (strcmp (exp
->assign
.dst
, ".") != 0)
542 if (! (bfd_elf32_record_link_assignment
543 (output_bfd
, &link_info
, exp
->assign
.dst
,
544 exp
->type
.node_class
== etree_provide
? true : false)))
545 einfo (_("%P%F: failed to record assignment to %s: %E\n"),
548 gldelf32ebmip_find_exp_assignment (exp
->assign
.src
);
552 gldelf32ebmip_find_exp_assignment (exp
->binary
.lhs
);
553 gldelf32ebmip_find_exp_assignment (exp
->binary
.rhs
);
557 gldelf32ebmip_find_exp_assignment (exp
->trinary
.cond
);
558 gldelf32ebmip_find_exp_assignment (exp
->trinary
.lhs
);
559 gldelf32ebmip_find_exp_assignment (exp
->trinary
.rhs
);
563 gldelf32ebmip_find_exp_assignment (exp
->unary
.child
);
571 /* Place an orphan section. We use this to put random SHF_ALLOC
572 sections in the right segment. */
574 static asection
*hold_section
;
575 static lang_output_section_statement_type
*hold_use
;
576 static lang_output_section_statement_type
*hold_text
;
577 static lang_output_section_statement_type
*hold_rodata
;
578 static lang_output_section_statement_type
*hold_data
;
579 static lang_output_section_statement_type
*hold_bss
;
580 static lang_output_section_statement_type
*hold_rel
;
584 gldelf32ebmip_place_orphan (file
, s
)
585 lang_input_statement_type
*file
;
588 lang_output_section_statement_type
*place
;
589 asection
*snew
, **pps
;
590 lang_statement_list_type
*old
;
591 lang_statement_list_type add
;
593 const char *secname
, *ps
;
594 lang_output_section_statement_type
*os
;
596 if ((s
->flags
& SEC_ALLOC
) == 0)
599 /* Look through the script to see where to place this section. */
602 lang_for_each_statement (gldelf32ebmip_place_section
);
604 if (hold_use
!= NULL
)
606 /* We have already placed a section with this name. */
607 wild_doit (&hold_use
->children
, s
, hold_use
, file
);
611 secname
= bfd_get_section_name (s
->owner
, s
);
613 /* If this is a final link, then always put .gnu.warning.SYMBOL
614 sections into the .text section to get them out of the way. */
615 if (! link_info
.shared
616 && ! link_info
.relocateable
617 && strncmp (secname
, ".gnu.warning.", sizeof ".gnu.warning." - 1) == 0
618 && hold_text
!= NULL
)
620 wild_doit (&hold_text
->children
, s
, hold_text
, file
);
624 /* Decide which segment the section should go in based on the
625 section name and section flags. */
627 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0
630 else if ((s
->flags
& SEC_READONLY
) == 0
631 && hold_data
!= NULL
)
633 else if (strncmp (secname
, ".rel", 4) == 0
636 else if ((s
->flags
& SEC_CODE
) == 0
637 && (s
->flags
& SEC_READONLY
) != 0
638 && hold_rodata
!= NULL
)
640 else if ((s
->flags
& SEC_READONLY
) != 0
641 && hold_text
!= NULL
)
646 /* Create the section in the output file, and put it in the right
647 place. This shuffling is to make the output file look neater. */
648 snew
= bfd_make_section (output_bfd
, secname
);
650 einfo (_("%P%F: output format %s cannot represent section called %s\n"),
651 output_bfd
->xvec
->name
, secname
);
652 if (place
->bfd_section
!= NULL
)
654 for (pps
= &output_bfd
->sections
; *pps
!= snew
; pps
= &(*pps
)->next
)
657 snew
->next
= place
->bfd_section
->next
;
658 place
->bfd_section
->next
= snew
;
661 /* Start building a list of statements for this section. */
664 lang_list_init (stat_ptr
);
666 /* If the name of the section is representable in C, then create
667 symbols to mark the start and the end of the section. */
668 for (ps
= secname
; *ps
!= '\0'; ps
++)
669 if (! isalnum (*ps
) && *ps
!= '_')
671 if (*ps
== '\0' && config
.build_constructors
)
675 symname
= (char *) xmalloc (ps
- secname
+ sizeof "__start_");
676 sprintf (symname
, "__start_%s", secname
);
677 lang_add_assignment (exp_assop ('=', symname
,
679 exp_intop ((bfd_vma
) 1
680 << s
->alignment_power
))));
683 if (! link_info
.relocateable
)
686 address
= exp_intop ((bfd_vma
) 0);
688 lang_enter_output_section_statement (secname
, address
, 0,
692 (etree_type
*) NULL
);
694 os
= lang_output_section_statement_lookup (secname
);
695 wild_doit (&os
->children
, s
, os
, file
);
697 lang_leave_output_section_statement
698 ((bfd_vma
) 0, "*default*",
699 (struct lang_output_section_phdr_list
*) NULL
, "*default*");
702 if (*ps
== '\0' && config
.build_constructors
)
706 symname
= (char *) xmalloc (ps
- secname
+ sizeof "__stop_");
707 sprintf (symname
, "__stop_%s", secname
);
708 lang_add_assignment (exp_assop ('=', symname
,
709 exp_nameop (NAME
, ".")));
712 /* Now stick the new statement list right after PLACE. */
713 *add
.tail
= place
->header
.next
;
714 place
->header
.next
= add
.head
;
722 gldelf32ebmip_place_section (s
)
723 lang_statement_union_type
*s
;
725 lang_output_section_statement_type
*os
;
727 if (s
->header
.type
!= lang_output_section_statement_enum
)
730 os
= &s
->output_section_statement
;
732 if (strcmp (os
->name
, hold_section
->name
) == 0)
735 if (strcmp (os
->name
, ".text") == 0)
737 else if (strcmp (os
->name
, ".rodata") == 0)
739 else if (strcmp (os
->name
, ".data") == 0)
741 else if (strcmp (os
->name
, ".bss") == 0)
743 else if (hold_rel
== NULL
744 && os
->bfd_section
!= NULL
745 && strncmp (os
->name
, ".rel", 4) == 0)
750 gldelf32ebmip_get_script(isfile
)
755 if (link_info
.relocateable
== true && config
.build_constructors
== true)
756 return "OUTPUT_FORMAT(\"elf32-bigmips\", \"elf32-bigmips\",\n\
757 \"elf32-littlemips\")\n\
760 /* For some reason, the Solaris linker makes bad executables\n\
761 if gld -r is used and the intermediate file has sections starting\n\
762 at non-zero addresses. Could be a Solaris ld bug, could be a GNU ld\n\
763 bug. But for now assigning the zero vmas works. */\n\
766 /* Read-only sections, merged into text segment: */\n\
767 .interp 0 : { *(.interp) }\n\
768 .reginfo 0 : { *(.reginfo) }\n\
769 .dynamic 0 : { *(.dynamic) }\n\
770 .dynstr 0 : { *(.dynstr) }\n\
771 .dynsym 0 : { *(.dynsym) }\n\
772 .hash 0 : { *(.hash) }\n\
773 .rel.text 0 : { *(.rel.text) }\n\
774 .rela.text 0 : { *(.rela.text) }\n\
775 .rel.data 0 : { *(.rel.data) }\n\
776 .rela.data 0 : { *(.rela.data) }\n\
777 .rel.rodata 0 : { *(.rel.rodata) }\n\
778 .rela.rodata 0 : { *(.rela.rodata) }\n\
779 .rel.got 0 : { *(.rel.got) }\n\
780 .rela.got 0 : { *(.rela.got) }\n\
781 .rel.ctors 0 : { *(.rel.ctors) }\n\
782 .rela.ctors 0 : { *(.rela.ctors) }\n\
783 .rel.dtors 0 : { *(.rel.dtors) }\n\
784 .rela.dtors 0 : { *(.rela.dtors) }\n\
785 .rel.init 0 : { *(.rel.init) }\n\
786 .rela.init 0 : { *(.rela.init) }\n\
787 .rel.fini 0 : { *(.rel.fini) }\n\
788 .rela.fini 0 : { *(.rela.fini) }\n\
789 .rel.bss 0 : { *(.rel.bss) }\n\
790 .rela.bss 0 : { *(.rela.bss) }\n\
791 .rel.plt 0 : { *(.rel.plt) }\n\
792 .rela.plt 0 : { *(.rela.plt) }\n\
793 .rodata 0 : { *(.rodata) }\n\
794 .rodata1 0 : { *(.rodata1) }\n\
795 .init 0 : { *(.init) } =0\n\
800 /* .gnu.warning sections are handled specially by elf32.em. */\n\
803 .fini 0 : { *(.fini) } =0\n\
804 /* Adjust the address for the data segment. We want to adjust up to\n\
805 the same address within the page on the next page up. It would\n\
806 be more correct to do this:\n\
807 The current expression does not correctly handle the case of a\n\
808 text segment ending precisely at the end of a page; it causes the\n\
809 data segment to skip a page. The above expression does not have\n\
810 this problem, but it will currently (2/95) cause BFD to allocate\n\
811 a single segment, combining both text and data, for this case.\n\
812 This will prevent the text segment from being shared among\n\
813 multiple executions of the program; I think that is more\n\
814 important than losing a page of the virtual address space (note\n\
815 that no actual memory is lost; the page which is skipped can not\n\
816 be referenced). */\n\
822 .data1 0 : { *(.data1) }\n\
823 .ctors 0 : { *(.ctors) }\n\
824 .dtors 0 : { *(.dtors) }\n\
827 *(.got.plt) *(.got)\n\
829 /* We want the small data sections together, so single-instruction offsets\n\
830 can access them all, and initialized data all before uninitialized, so\n\
831 we can shorten the on-disk segment size. */\n\
832 .sdata 0 : { *(.sdata) }\n\
833 .sbss 0 : { *(.sbss) *(.scommon) }\n\
840 /* These are needed for ELF backends which have not yet been\n\
841 converted to the new style linker. */\n\
842 .stab 0 : { *(.stab) }\n\
843 .stabstr 0 : { *(.stabstr) }\n\
844 /* DWARF debug sections.\n\
845 Symbols in the .debug DWARF section are relative to the beginning of the\n\
846 section so we begin .debug at 0. It's not clear yet what needs to happen\n\
847 for the others. */\n\
848 .debug 0 : { *(.debug) }\n\
849 .debug_srcinfo 0 : { *(.debug_srcinfo) }\n\
850 .debug_aranges 0 : { *(.debug_aranges) }\n\
851 .debug_pubnames 0 : { *(.debug_pubnames) }\n\
852 .debug_sfnames 0 : { *(.debug_sfnames) }\n\
853 .line 0 : { *(.line) }\n\
854 /* These must appear regardless of . */\n\
855 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }\n\
856 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }\n\
858 else if (link_info
.relocateable
== true)
859 return "OUTPUT_FORMAT(\"elf32-bigmips\", \"elf32-bigmips\",\n\
860 \"elf32-littlemips\")\n\
863 /* For some reason, the Solaris linker makes bad executables\n\
864 if gld -r is used and the intermediate file has sections starting\n\
865 at non-zero addresses. Could be a Solaris ld bug, could be a GNU ld\n\
866 bug. But for now assigning the zero vmas works. */\n\
869 /* Read-only sections, merged into text segment: */\n\
870 .interp 0 : { *(.interp) }\n\
871 .reginfo 0 : { *(.reginfo) }\n\
872 .dynamic 0 : { *(.dynamic) }\n\
873 .dynstr 0 : { *(.dynstr) }\n\
874 .dynsym 0 : { *(.dynsym) }\n\
875 .hash 0 : { *(.hash) }\n\
876 .rel.text 0 : { *(.rel.text) }\n\
877 .rela.text 0 : { *(.rela.text) }\n\
878 .rel.data 0 : { *(.rel.data) }\n\
879 .rela.data 0 : { *(.rela.data) }\n\
880 .rel.rodata 0 : { *(.rel.rodata) }\n\
881 .rela.rodata 0 : { *(.rela.rodata) }\n\
882 .rel.got 0 : { *(.rel.got) }\n\
883 .rela.got 0 : { *(.rela.got) }\n\
884 .rel.ctors 0 : { *(.rel.ctors) }\n\
885 .rela.ctors 0 : { *(.rela.ctors) }\n\
886 .rel.dtors 0 : { *(.rel.dtors) }\n\
887 .rela.dtors 0 : { *(.rela.dtors) }\n\
888 .rel.init 0 : { *(.rel.init) }\n\
889 .rela.init 0 : { *(.rela.init) }\n\
890 .rel.fini 0 : { *(.rel.fini) }\n\
891 .rela.fini 0 : { *(.rela.fini) }\n\
892 .rel.bss 0 : { *(.rel.bss) }\n\
893 .rela.bss 0 : { *(.rela.bss) }\n\
894 .rel.plt 0 : { *(.rel.plt) }\n\
895 .rela.plt 0 : { *(.rela.plt) }\n\
896 .rodata 0 : { *(.rodata) }\n\
897 .rodata1 0 : { *(.rodata1) }\n\
898 .init 0 : { *(.init) } =0\n\
903 /* .gnu.warning sections are handled specially by elf32.em. */\n\
906 .fini 0 : { *(.fini) } =0\n\
907 /* Adjust the address for the data segment. We want to adjust up to\n\
908 the same address within the page on the next page up. It would\n\
909 be more correct to do this:\n\
910 The current expression does not correctly handle the case of a\n\
911 text segment ending precisely at the end of a page; it causes the\n\
912 data segment to skip a page. The above expression does not have\n\
913 this problem, but it will currently (2/95) cause BFD to allocate\n\
914 a single segment, combining both text and data, for this case.\n\
915 This will prevent the text segment from being shared among\n\
916 multiple executions of the program; I think that is more\n\
917 important than losing a page of the virtual address space (note\n\
918 that no actual memory is lost; the page which is skipped can not\n\
919 be referenced). */\n\
924 .data1 0 : { *(.data1) }\n\
925 .ctors 0 : { *(.ctors) }\n\
926 .dtors 0 : { *(.dtors) }\n\
929 *(.got.plt) *(.got)\n\
931 /* We want the small data sections together, so single-instruction offsets\n\
932 can access them all, and initialized data all before uninitialized, so\n\
933 we can shorten the on-disk segment size. */\n\
934 .sdata 0 : { *(.sdata) }\n\
935 .sbss 0 : { *(.sbss) *(.scommon) }\n\
942 /* These are needed for ELF backends which have not yet been\n\
943 converted to the new style linker. */\n\
944 .stab 0 : { *(.stab) }\n\
945 .stabstr 0 : { *(.stabstr) }\n\
946 /* DWARF debug sections.\n\
947 Symbols in the .debug DWARF section are relative to the beginning of the\n\
948 section so we begin .debug at 0. It's not clear yet what needs to happen\n\
949 for the others. */\n\
950 .debug 0 : { *(.debug) }\n\
951 .debug_srcinfo 0 : { *(.debug_srcinfo) }\n\
952 .debug_aranges 0 : { *(.debug_aranges) }\n\
953 .debug_pubnames 0 : { *(.debug_pubnames) }\n\
954 .debug_sfnames 0 : { *(.debug_sfnames) }\n\
955 .line 0 : { *(.line) }\n\
956 /* These must appear regardless of . */\n\
957 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }\n\
958 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }\n\
960 else if (!config
.text_read_only
)
961 return "OUTPUT_FORMAT(\"elf32-bigmips\", \"elf32-bigmips\",\n\
962 \"elf32-littlemips\")\n\
965 SEARCH_DIR(/usr/local/mips-elf/lib);\n\
966 /* Do we need any of these for elf?\n\
970 /* Read-only sections, merged into text segment: */\n\
972 .interp : { *(.interp) }\n\
973 .reginfo : { *(.reginfo) }\n\
974 .dynamic : { *(.dynamic) }\n\
975 .dynstr : { *(.dynstr) }\n\
976 .dynsym : { *(.dynsym) }\n\
977 .hash : { *(.hash) }\n\
978 .rel.text : { *(.rel.text) }\n\
979 .rela.text : { *(.rela.text) }\n\
980 .rel.data : { *(.rel.data) }\n\
981 .rela.data : { *(.rela.data) }\n\
982 .rel.rodata : { *(.rel.rodata) }\n\
983 .rela.rodata : { *(.rela.rodata) }\n\
984 .rel.got : { *(.rel.got) }\n\
985 .rela.got : { *(.rela.got) }\n\
986 .rel.ctors : { *(.rel.ctors) }\n\
987 .rela.ctors : { *(.rela.ctors) }\n\
988 .rel.dtors : { *(.rel.dtors) }\n\
989 .rela.dtors : { *(.rela.dtors) }\n\
990 .rel.init : { *(.rel.init) }\n\
991 .rela.init : { *(.rela.init) }\n\
992 .rel.fini : { *(.rel.fini) }\n\
993 .rela.fini : { *(.rela.fini) }\n\
994 .rel.bss : { *(.rel.bss) }\n\
995 .rela.bss : { *(.rela.bss) }\n\
996 .rel.plt : { *(.rel.plt) }\n\
997 .rela.plt : { *(.rela.plt) }\n\
998 .rodata : { *(.rodata) }\n\
999 .rodata1 : { *(.rodata1) }\n\
1000 .init : { *(.init) } =0\n\
1006 /* .gnu.warning sections are handled specially by elf32.em. */\n\
1010 PROVIDE (etext = .);\n\
1011 .fini : { *(.fini) } =0\n\
1012 /* Adjust the address for the data segment. We want to adjust up to\n\
1013 the same address within the page on the next page up. It would\n\
1014 be more correct to do this:\n\
1016 The current expression does not correctly handle the case of a\n\
1017 text segment ending precisely at the end of a page; it causes the\n\
1018 data segment to skip a page. The above expression does not have\n\
1019 this problem, but it will currently (2/95) cause BFD to allocate\n\
1020 a single segment, combining both text and data, for this case.\n\
1021 This will prevent the text segment from being shared among\n\
1022 multiple executions of the program; I think that is more\n\
1023 important than losing a page of the virtual address space (note\n\
1024 that no actual memory is lost; the page which is skipped can not\n\
1025 be referenced). */\n\
1026 . += . - 0x0400000;\n\
1033 .data1 : { *(.data1) }\n\
1034 .ctors : { *(.ctors) }\n\
1035 .dtors : { *(.dtors) }\n\
1036 _gp = ALIGN(16) + 0x7ff0;\n\
1039 *(.got.plt) *(.got)\n\
1041 /* We want the small data sections together, so single-instruction offsets\n\
1042 can access them all, and initialized data all before uninitialized, so\n\
1043 we can shorten the on-disk segment size. */\n\
1044 .sdata : { *(.sdata) }\n\
1045 .lit8 : { *(.lit8) }\n\
1046 .lit4 : { *(.lit4) }\n\
1048 PROVIDE (edata = .);\n\
1051 .sbss : { *(.sbss) *(.scommon) }\n\
1059 PROVIDE (end = .);\n\
1060 /* These are needed for ELF backends which have not yet been\n\
1061 converted to the new style linker. */\n\
1062 .stab 0 : { *(.stab) }\n\
1063 .stabstr 0 : { *(.stabstr) }\n\
1064 /* DWARF debug sections.\n\
1065 Symbols in the .debug DWARF section are relative to the beginning of the\n\
1066 section so we begin .debug at 0. It's not clear yet what needs to happen\n\
1067 for the others. */\n\
1068 .debug 0 : { *(.debug) }\n\
1069 .debug_srcinfo 0 : { *(.debug_srcinfo) }\n\
1070 .debug_aranges 0 : { *(.debug_aranges) }\n\
1071 .debug_pubnames 0 : { *(.debug_pubnames) }\n\
1072 .debug_sfnames 0 : { *(.debug_sfnames) }\n\
1073 .line 0 : { *(.line) }\n\
1074 /* These must appear regardless of . */\n\
1075 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }\n\
1076 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }\n\
1078 else if (!config
.magic_demand_paged
)
1079 return "OUTPUT_FORMAT(\"elf32-bigmips\", \"elf32-bigmips\",\n\
1080 \"elf32-littlemips\")\n\
1081 OUTPUT_ARCH(mips)\n\
1083 SEARCH_DIR(/usr/local/mips-elf/lib);\n\
1084 /* Do we need any of these for elf?\n\
1085 __DYNAMIC = 0; */\n\
1088 /* Read-only sections, merged into text segment: */\n\
1090 .interp : { *(.interp) }\n\
1091 .reginfo : { *(.reginfo) }\n\
1092 .dynamic : { *(.dynamic) }\n\
1093 .dynstr : { *(.dynstr) }\n\
1094 .dynsym : { *(.dynsym) }\n\
1095 .hash : { *(.hash) }\n\
1096 .rel.text : { *(.rel.text) }\n\
1097 .rela.text : { *(.rela.text) }\n\
1098 .rel.data : { *(.rel.data) }\n\
1099 .rela.data : { *(.rela.data) }\n\
1100 .rel.rodata : { *(.rel.rodata) }\n\
1101 .rela.rodata : { *(.rela.rodata) }\n\
1102 .rel.got : { *(.rel.got) }\n\
1103 .rela.got : { *(.rela.got) }\n\
1104 .rel.ctors : { *(.rel.ctors) }\n\
1105 .rela.ctors : { *(.rela.ctors) }\n\
1106 .rel.dtors : { *(.rel.dtors) }\n\
1107 .rela.dtors : { *(.rela.dtors) }\n\
1108 .rel.init : { *(.rel.init) }\n\
1109 .rela.init : { *(.rela.init) }\n\
1110 .rel.fini : { *(.rel.fini) }\n\
1111 .rela.fini : { *(.rela.fini) }\n\
1112 .rel.bss : { *(.rel.bss) }\n\
1113 .rela.bss : { *(.rela.bss) }\n\
1114 .rel.plt : { *(.rel.plt) }\n\
1115 .rela.plt : { *(.rela.plt) }\n\
1116 .rodata : { *(.rodata) }\n\
1117 .rodata1 : { *(.rodata1) }\n\
1118 .init : { *(.init) } =0\n\
1124 /* .gnu.warning sections are handled specially by elf32.em. */\n\
1128 PROVIDE (etext = .);\n\
1129 .fini : { *(.fini) } =0\n\
1130 /* Adjust the address for the data segment. We want to adjust up to\n\
1131 the same address within the page on the next page up. It would\n\
1132 be more correct to do this:\n\
1134 The current expression does not correctly handle the case of a\n\
1135 text segment ending precisely at the end of a page; it causes the\n\
1136 data segment to skip a page. The above expression does not have\n\
1137 this problem, but it will currently (2/95) cause BFD to allocate\n\
1138 a single segment, combining both text and data, for this case.\n\
1139 This will prevent the text segment from being shared among\n\
1140 multiple executions of the program; I think that is more\n\
1141 important than losing a page of the virtual address space (note\n\
1142 that no actual memory is lost; the page which is skipped can not\n\
1143 be referenced). */\n\
1144 . += 0x10000000 - 0x0400000;\n\
1151 .data1 : { *(.data1) }\n\
1152 .ctors : { *(.ctors) }\n\
1153 .dtors : { *(.dtors) }\n\
1154 _gp = ALIGN(16) + 0x7ff0;\n\
1157 *(.got.plt) *(.got)\n\
1159 /* We want the small data sections together, so single-instruction offsets\n\
1160 can access them all, and initialized data all before uninitialized, so\n\
1161 we can shorten the on-disk segment size. */\n\
1162 .sdata : { *(.sdata) }\n\
1163 .lit8 : { *(.lit8) }\n\
1164 .lit4 : { *(.lit4) }\n\
1166 PROVIDE (edata = .);\n\
1169 .sbss : { *(.sbss) *(.scommon) }\n\
1177 PROVIDE (end = .);\n\
1178 /* These are needed for ELF backends which have not yet been\n\
1179 converted to the new style linker. */\n\
1180 .stab 0 : { *(.stab) }\n\
1181 .stabstr 0 : { *(.stabstr) }\n\
1182 /* DWARF debug sections.\n\
1183 Symbols in the .debug DWARF section are relative to the beginning of the\n\
1184 section so we begin .debug at 0. It's not clear yet what needs to happen\n\
1185 for the others. */\n\
1186 .debug 0 : { *(.debug) }\n\
1187 .debug_srcinfo 0 : { *(.debug_srcinfo) }\n\
1188 .debug_aranges 0 : { *(.debug_aranges) }\n\
1189 .debug_pubnames 0 : { *(.debug_pubnames) }\n\
1190 .debug_sfnames 0 : { *(.debug_sfnames) }\n\
1191 .line 0 : { *(.line) }\n\
1192 /* These must appear regardless of . */\n\
1193 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }\n\
1194 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }\n\
1196 else if (link_info
.shared
)
1197 return "OUTPUT_FORMAT(\"elf32-bigmips\", \"elf32-bigmips\",\n\
1198 \"elf32-littlemips\")\n\
1199 OUTPUT_ARCH(mips)\n\
1201 SEARCH_DIR(/usr/local/mips-elf/lib);\n\
1202 /* Do we need any of these for elf?\n\
1203 __DYNAMIC = 0; */\n\
1206 /* Read-only sections, merged into text segment: */\n\
1207 . = 0x5ffe0000 + SIZEOF_HEADERS;\n\
1208 .reginfo : { *(.reginfo) }\n\
1209 .dynamic : { *(.dynamic) }\n\
1210 .dynstr : { *(.dynstr) }\n\
1211 .dynsym : { *(.dynsym) }\n\
1212 .hash : { *(.hash) }\n\
1213 .rel.text : { *(.rel.text) }\n\
1214 .rela.text : { *(.rela.text) }\n\
1215 .rel.data : { *(.rel.data) }\n\
1216 .rela.data : { *(.rela.data) }\n\
1217 .rel.rodata : { *(.rel.rodata) }\n\
1218 .rela.rodata : { *(.rela.rodata) }\n\
1219 .rel.got : { *(.rel.got) }\n\
1220 .rela.got : { *(.rela.got) }\n\
1221 .rel.ctors : { *(.rel.ctors) }\n\
1222 .rela.ctors : { *(.rela.ctors) }\n\
1223 .rel.dtors : { *(.rel.dtors) }\n\
1224 .rela.dtors : { *(.rela.dtors) }\n\
1225 .rel.init : { *(.rel.init) }\n\
1226 .rela.init : { *(.rela.init) }\n\
1227 .rel.fini : { *(.rel.fini) }\n\
1228 .rela.fini : { *(.rela.fini) }\n\
1229 .rel.bss : { *(.rel.bss) }\n\
1230 .rela.bss : { *(.rela.bss) }\n\
1231 .rel.plt : { *(.rel.plt) }\n\
1232 .rela.plt : { *(.rela.plt) }\n\
1233 .rodata : { *(.rodata) }\n\
1234 .rodata1 : { *(.rodata1) }\n\
1235 .init : { *(.init) } =0\n\
1240 /* .gnu.warning sections are handled specially by elf32.em. */\n\
1243 .fini : { *(.fini) } =0\n\
1244 /* Adjust the address for the data segment. We want to adjust up to\n\
1245 the same address within the page on the next page up. It would\n\
1246 be more correct to do this:\n\
1248 The current expression does not correctly handle the case of a\n\
1249 text segment ending precisely at the end of a page; it causes the\n\
1250 data segment to skip a page. The above expression does not have\n\
1251 this problem, but it will currently (2/95) cause BFD to allocate\n\
1252 a single segment, combining both text and data, for this case.\n\
1253 This will prevent the text segment from being shared among\n\
1254 multiple executions of the program; I think that is more\n\
1255 important than losing a page of the virtual address space (note\n\
1256 that no actual memory is lost; the page which is skipped can not\n\
1257 be referenced). */\n\
1264 .data1 : { *(.data1) }\n\
1265 .ctors : { *(.ctors) }\n\
1266 .dtors : { *(.dtors) }\n\
1267 _gp = ALIGN(16) + 0x7ff0;\n\
1270 *(.got.plt) *(.got)\n\
1272 /* We want the small data sections together, so single-instruction offsets\n\
1273 can access them all, and initialized data all before uninitialized, so\n\
1274 we can shorten the on-disk segment size. */\n\
1275 .sdata : { *(.sdata) }\n\
1276 .lit8 : { *(.lit8) }\n\
1277 .lit4 : { *(.lit4) }\n\
1278 .sbss : { *(.sbss) *(.scommon) }\n\
1285 /* These are needed for ELF backends which have not yet been\n\
1286 converted to the new style linker. */\n\
1287 .stab 0 : { *(.stab) }\n\
1288 .stabstr 0 : { *(.stabstr) }\n\
1289 /* DWARF debug sections.\n\
1290 Symbols in the .debug DWARF section are relative to the beginning of the\n\
1291 section so we begin .debug at 0. It's not clear yet what needs to happen\n\
1292 for the others. */\n\
1293 .debug 0 : { *(.debug) }\n\
1294 .debug_srcinfo 0 : { *(.debug_srcinfo) }\n\
1295 .debug_aranges 0 : { *(.debug_aranges) }\n\
1296 .debug_pubnames 0 : { *(.debug_pubnames) }\n\
1297 .debug_sfnames 0 : { *(.debug_sfnames) }\n\
1298 .line 0 : { *(.line) }\n\
1299 /* These must appear regardless of . */\n\
1300 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }\n\
1301 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }\n\
1304 return "OUTPUT_FORMAT(\"elf32-bigmips\", \"elf32-bigmips\",\n\
1305 \"elf32-littlemips\")\n\
1306 OUTPUT_ARCH(mips)\n\
1308 SEARCH_DIR(/usr/local/mips-elf/lib);\n\
1309 /* Do we need any of these for elf?\n\
1310 __DYNAMIC = 0; */\n\
1313 /* Read-only sections, merged into text segment: */\n\
1315 .interp : { *(.interp) }\n\
1316 .reginfo : { *(.reginfo) }\n\
1317 .dynamic : { *(.dynamic) }\n\
1318 .dynstr : { *(.dynstr) }\n\
1319 .dynsym : { *(.dynsym) }\n\
1320 .hash : { *(.hash) }\n\
1321 .rel.text : { *(.rel.text) }\n\
1322 .rela.text : { *(.rela.text) }\n\
1323 .rel.data : { *(.rel.data) }\n\
1324 .rela.data : { *(.rela.data) }\n\
1325 .rel.rodata : { *(.rel.rodata) }\n\
1326 .rela.rodata : { *(.rela.rodata) }\n\
1327 .rel.got : { *(.rel.got) }\n\
1328 .rela.got : { *(.rela.got) }\n\
1329 .rel.ctors : { *(.rel.ctors) }\n\
1330 .rela.ctors : { *(.rela.ctors) }\n\
1331 .rel.dtors : { *(.rel.dtors) }\n\
1332 .rela.dtors : { *(.rela.dtors) }\n\
1333 .rel.init : { *(.rel.init) }\n\
1334 .rela.init : { *(.rela.init) }\n\
1335 .rel.fini : { *(.rel.fini) }\n\
1336 .rela.fini : { *(.rela.fini) }\n\
1337 .rel.bss : { *(.rel.bss) }\n\
1338 .rela.bss : { *(.rela.bss) }\n\
1339 .rel.plt : { *(.rel.plt) }\n\
1340 .rela.plt : { *(.rela.plt) }\n\
1341 .rodata : { *(.rodata) }\n\
1342 .rodata1 : { *(.rodata1) }\n\
1343 .init : { *(.init) } =0\n\
1349 /* .gnu.warning sections are handled specially by elf32.em. */\n\
1353 PROVIDE (etext = .);\n\
1354 .fini : { *(.fini) } =0\n\
1355 /* Adjust the address for the data segment. We want to adjust up to\n\
1356 the same address within the page on the next page up. It would\n\
1357 be more correct to do this:\n\
1359 The current expression does not correctly handle the case of a\n\
1360 text segment ending precisely at the end of a page; it causes the\n\
1361 data segment to skip a page. The above expression does not have\n\
1362 this problem, but it will currently (2/95) cause BFD to allocate\n\
1363 a single segment, combining both text and data, for this case.\n\
1364 This will prevent the text segment from being shared among\n\
1365 multiple executions of the program; I think that is more\n\
1366 important than losing a page of the virtual address space (note\n\
1367 that no actual memory is lost; the page which is skipped can not\n\
1368 be referenced). */\n\
1369 . += 0x10000000 - 0x0400000;\n\
1376 .data1 : { *(.data1) }\n\
1377 .ctors : { *(.ctors) }\n\
1378 .dtors : { *(.dtors) }\n\
1379 _gp = ALIGN(16) + 0x7ff0;\n\
1382 *(.got.plt) *(.got)\n\
1384 /* We want the small data sections together, so single-instruction offsets\n\
1385 can access them all, and initialized data all before uninitialized, so\n\
1386 we can shorten the on-disk segment size. */\n\
1387 .sdata : { *(.sdata) }\n\
1388 .lit8 : { *(.lit8) }\n\
1389 .lit4 : { *(.lit4) }\n\
1391 PROVIDE (edata = .);\n\
1394 .sbss : { *(.sbss) *(.scommon) }\n\
1402 PROVIDE (end = .);\n\
1403 /* These are needed for ELF backends which have not yet been\n\
1404 converted to the new style linker. */\n\
1405 .stab 0 : { *(.stab) }\n\
1406 .stabstr 0 : { *(.stabstr) }\n\
1407 /* DWARF debug sections.\n\
1408 Symbols in the .debug DWARF section are relative to the beginning of the\n\
1409 section so we begin .debug at 0. It's not clear yet what needs to happen\n\
1410 for the others. */\n\
1411 .debug 0 : { *(.debug) }\n\
1412 .debug_srcinfo 0 : { *(.debug_srcinfo) }\n\
1413 .debug_aranges 0 : { *(.debug_aranges) }\n\
1414 .debug_pubnames 0 : { *(.debug_pubnames) }\n\
1415 .debug_sfnames 0 : { *(.debug_sfnames) }\n\
1416 .line 0 : { *(.line) }\n\
1417 /* These must appear regardless of . */\n\
1418 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }\n\
1419 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }\n\
1423 struct ld_emulation_xfer_struct ld_elf32ebmip_emulation
=
1425 gldelf32ebmip_before_parse
,
1428 after_parse_default
,
1429 gldelf32ebmip_after_open
,
1430 after_allocation_default
,
1431 set_output_arch_default
,
1432 ldemul_default_target
,
1433 gldelf32ebmip_before_allocation
,
1434 gldelf32ebmip_get_script
,
1439 gldelf32ebmip_open_dynamic_archive
,
1440 gldelf32ebmip_place_orphan