home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / gdb-4.12.tar.gz / gdb-4.12.tar / gdb-4.12 / bfd / linker.c < prev    next >
C/C++ Source or Header  |  1994-02-03  |  62KB  |  1,946 lines

  1. /* linker.c -- BFD linker routines
  2.    Copyright 1993 Free Software Foundation, Inc.
  3.    Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support
  4.  
  5. This file is part of BFD
  6.  
  7. GLD is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GLD is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GLD; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "bfd.h"
  22. #include "sysdep.h"
  23. #include "libbfd.h"
  24. #include "bfdlink.h"
  25. #include "genlink.h"
  26.  
  27. /*
  28. SECTION
  29.     Linker Functions
  30.  
  31. @cindex Linker
  32.     The linker uses three special entry points in the BFD target
  33.     vector.  It is not necessary to write special routines for
  34.     these entry points when creating a new BFD back end, since
  35.     generic versions are provided.  However, writing them can
  36.     speed up linking and make it use significantly less runtime
  37.     memory.
  38.  
  39.     The first routine creates a hash table used by the other
  40.     routines.  The second routine adds the symbols from an object
  41.     file to the hash table.  The third routine takes all the
  42.     object files and links them together to create the output
  43.     file.  These routines are designed so that the linker proper
  44.     does not need to know anything about the symbols in the object
  45.     files that it is linking.  The linker merely arranges the
  46.     sections as directed by the linker script and lets BFD handle
  47.     the details of symbols and relocs.
  48.  
  49.     The second routine and third routines are passed a pointer to
  50.     a <<struct bfd_link_info>> structure (defined in
  51.     <<bfdlink.h>>) which holds information relevant to the link,
  52.     including the linker hash table (which was created by the
  53.     first routine) and a set of callback functions to the linker
  54.     proper.
  55.  
  56.     The generic linker routines are in <<linker.c>>, and use the
  57.     header file <<genlink.h>>.  As of this writing, the only back
  58.     ends which have implemented versions of these routines are
  59.     a.out (in <<aoutx.h>>) and ECOFF (in <<ecoff.c>>).  The a.out
  60.     routines are used as examples throughout this section.
  61.  
  62. @menu    
  63. @* Creating a Linker Hash Table::
  64. @* Adding Symbols to the Hash Table::
  65. @* Performing the Final Link::
  66. @end menu
  67.  
  68. INODE
  69. Creating a Linker Hash Table, Adding Symbols to the Hash Table, Linker Functions, Linker Functions
  70. SUBSECTION
  71.     Creating a linker hash table
  72.  
  73. @cindex _bfd_link_hash_table_create in target vector
  74. @cindex target vector (_bfd_link_hash_table_create)
  75.     The linker routines must create a hash table, which must be
  76.     derived from <<struct bfd_link_hash_table>> described in
  77.     <<bfdlink.c>>.  @xref{Hash Tables} for information on how to
  78.     create a derived hash table.  This entry point is called using
  79.     the target vector of the linker output file.
  80.  
  81.     The <<_bfd_link_hash_table_create>> entry point must allocate
  82.     and initialize an instance of the desired hash table.  If the
  83.     back end does not require any additional information to be
  84.     stored with the entries in the hash table, the entry point may
  85.     simply create a <<struct bfd_link_hash_table>>.  Most likely,
  86.     however, some additional information will be needed.
  87.  
  88.     For example, with each entry in the hash table the a.out
  89.     linker keeps the index the symbol has in the final output file
  90.     (this index number is used so that when doing a relocateable
  91.     link the symbol index used in the output file can be quickly
  92.     filled in when copying over a reloc).  The a.out linker code
  93.     defines the required structures and functions for a hash table
  94.     derived from <<struct bfd_link_hash_table>>.  The a.out linker
  95.     hash table is created by the function
  96.     <<NAME(aout,link_hash_table_create)>>; it simply allocates
  97.     space for the hash table, initializes it, and returns a
  98.     pointer to it.
  99.  
  100.     When writing the linker routines for a new back end, you will
  101.     generally not know exactly which fields will be required until
  102.     you have finished.  You should simply create a new hash table
  103.     which defines no additional fields, and then simply add fields
  104.     as they become necessary.
  105.  
  106. INODE
  107. Adding Symbols to the Hash Table, Performing the Final Link, Creating a Linker Hash Table, Linker Functions
  108. SUBSECTION
  109.     Adding symbols to the hash table
  110.  
  111. @cindex _bfd_link_add_symbols in target vector
  112. @cindex target vector (_bfd_link_add_symbols)
  113.     The linker proper will call the <<_bfd_link_add_symbols>>
  114.     entry point for each object file or archive which is to be
  115.     linked (typically these are the files named on the command
  116.     line, but some may also come from the linker script).  The
  117.     entry point is responsible for examining the file.  For an
  118.     object file, BFD must add any relevant symbol information to
  119.     the hash table.  For an archive, BFD must determine which
  120.     elements of the archive should be used and adding them to the
  121.     link.
  122.  
  123.     The a.out version of this entry point is
  124.     <<NAME(aout,link_add_symbols)>>.
  125.  
  126. @menu
  127. @* Differing file formats::
  128. @* Adding symbols from an object file::
  129. @* Adding symbols from an archive::
  130. @end menu
  131.  
  132. INODE
  133. Differing file formats, Adding symbols from an object file, Adding Symbols to the Hash Table, Adding Symbols to the Hash Table
  134. SUBSUBSECTION
  135.     Differing file formats
  136.  
  137.     Normally all the files involved in a link will be of the same
  138.     format, but it is also possible to link together different
  139.     format object files, and the back end must support that.  The
  140.     <<_bfd_link_add_symbols>> entry point is called via the target
  141.     vector of the file to be added.  This has an important
  142.     consequence: the function may not assume that the hash table
  143.     is the type created by the corresponding
  144.     <<_bfd_link_hash_table_create>> vector.  All the
  145.     <<_bfd_link_add_symbols>> function can assume about the hash
  146.     table is that it is derived from <<struct
  147.     bfd_link_hash_table>>.
  148.  
  149.     Sometimes the <<_bfd_link_add_symbols>> function must store
  150.     some information in the hash table entry to be used by the
  151.     <<_bfd_final_link>> function.  In such a case the <<creator>>
  152.     field of the hash table must be checked to make sure that the
  153.     hash table was created by an object file of the same format.
  154.  
  155.     The <<_bfd_final_link>> routine must be prepared to handle a
  156.     hash entry without any extra information added by the
  157.     <<_bfd_link_add_symbols>> function.  A hash entry without
  158.     extra information will also occur when the linker script
  159.     directs the linker to create a symbol.  Note that, regardless
  160.     of how a hash table entry is added, all the fields will be
  161.     initialized to some sort of null value by the hash table entry
  162.     initialization function.
  163.  
  164.     See <<ecoff_link_add_externals>> for an example of how to
  165.     check the <<creator>> field before saving information (in this
  166.     case, the ECOFF external symbol debugging information) in a
  167.     hash table entry.
  168.  
  169. INODE
  170. Adding symbols from an object file, Adding symbols from an archive, Differing file formats, Adding Symbols to the Hash Table
  171. SUBSUBSECTION
  172.     Adding symbols from an object file
  173.  
  174.     When the <<_bfd_link_add_symbols>> routine is passed an object
  175.     file, it must add all externally visible symbols in that
  176.     object file to the hash table.  The actual work of adding the
  177.     symbol to the hash table is normally handled by the function
  178.     <<_bfd_generic_link_add_one_symbol>>.  The
  179.     <<_bfd_link_add_symbols>> routine is responsible for reading
  180.     all the symbols from the object file and passing the correct
  181.     information to <<_bfd_generic_link_add_one_symbol>>.
  182.  
  183.     The <<_bfd_link_add_symbols>> routine should not use
  184.     <<bfd_canonicalize_symtab>> to read the symbols.  The point of
  185.     providing this routine is to avoid the overhead of converting
  186.     the symbols into generic <<asymbol>> structures.
  187.  
  188. @findex _bfd_generic_link_add_one_symbol
  189.     <<_bfd_generic_link_add_one_symbol>> handles the details of
  190.     combining common symbols, warning about multiple definitions,
  191.     and so forth.  It takes arguments which describe the symbol to
  192.     add, notably symbol flags, a section, and an offset.  The
  193.     symbol flags include such things as <<BSF_WEAK>> or
  194.     <<BSF_INDIRECT>>.  The section is a section in the object
  195.     file, or something like <<bfd_und_section>> for an undefined
  196.     symbol or <<bfd_com_section>> for a common symbol.
  197.  
  198.     If the <<_bfd_final_link>> routine is also going to need to
  199.     read the symbol information, the <<_bfd_link_add_symbols>>
  200.     routine should save it somewhere attached to the object file
  201.     BFD.  However, the information should only be saved if the
  202.     <<keep_memory>> field of the <<info>> argument is true, so
  203.     that the <<-no-keep-memory>> linker switch is effective.
  204.  
  205.     The a.out function which adds symbols from an object file is
  206.     <<aout_link_add_object_symbols>>, and most of the interesting
  207.     work is in <<aout_link_add_symbols>>.  The latter saves
  208.     pointers to the hash tables entries created by
  209.     <<_bfd_generic_link_add_one_symbol>> indexed by symbol number,
  210.     so that the <<_bfd_final_link>> routine does not have to call
  211.     the hash table lookup routine to locate the entry.
  212.  
  213. INODE
  214. Adding symbols from an archive, , Adding symbols from an object file, Adding Symbols to the Hash Table
  215. SUBSUBSECTION
  216.     Adding symbols from an archive
  217.  
  218.     When the <<_bfd_link_add_symbols>> routine is passed an
  219.     archive, it must look through the symbols defined by the
  220.     archive and decide which elements of the archive should be
  221.     included in the link.  For each such element it must call the
  222.     <<add_archive_element>> linker callback, and it must add the
  223.     symbols from the object file to the linker hash table.
  224.  
  225. @findex _bfd_generic_link_add_archive_symbols
  226.     In most cases the work of looking through the symbols in the
  227.     archive should be done by the
  228.     <<_bfd_generic_link_add_archive_symbols>> function.  This
  229.     function builds a hash table from the archive symbol table and
  230.     looks through the list of undefined symbols to see which
  231.     elements should be included.
  232.     <<_bfd_generic_link_add_archive_symbols>> is passed a function
  233.     to call to make the final decision about adding an archive
  234.     element to the link and to do the actual work of adding the
  235.     symbols to the linker hash table.
  236.  
  237.     The function passed to
  238.     <<_bfd_generic_link_add_archive_symbols>> must read the
  239.     symbols of the archive element and decide whether the archive
  240.     element should be included in the link.  If the element is to
  241.     be included, the <<add_archive_element>> linker callback
  242.     routine must be called with the element as an argument, and
  243.     the elements symbols must be added to the linker hash table
  244.     just as though the element had itself been passed to the
  245.     <<_bfd_link_add_symbols>> function.
  246.  
  247.     When the a.out <<_bfd_link_add_symbols>> function receives an
  248.     archive, it calls <<_bfd_generic_link_add_archive_symbols>>
  249.     passing <<aout_link_check_archive_element>> as the function
  250.     argument. <<aout_link_check_archive_element>> calls
  251.     <<aout_link_check_ar_symbols>>.  If the latter decides to add
  252.     the element (an element is only added if it provides a real,
  253.     non-common, definition for a previously undefined or common
  254.     symbol) it calls the <<add_archive_element>> callback and then
  255.     <<aout_link_check_archive_element>> calls
  256.     <<aout_link_add_symbols>> to actually add the symbols to the
  257.     linker hash table.
  258.  
  259.     The ECOFF back end is unusual in that it does not normally
  260.     call <<_bfd_generic_link_add_archive_symbols>>, because ECOFF
  261.     archives already contain a hash table of symbols.  The ECOFF
  262.     back end searches the archive itself to avoid the overhead of
  263.     creating a new hash table.
  264.  
  265. INODE
  266. Performing the Final Link, , Adding Symbols to the Hash Table, Linker Functions
  267. SUBSECTION
  268.     Performing the final link
  269.  
  270. @cindex _bfd_link_final_link in target vector
  271. @cindex target vector (_bfd_final_link)
  272.     When all the input files have been processed, the linker calls
  273.     the <<_bfd_final_link>> entry point of the output BFD.  This
  274.     routine is responsible for producing the final output file,
  275.     which has several aspects.  It must relocate the contents of
  276.     the input sections and copy the data into the output sections.
  277.     It must build an output symbol table including any local
  278.     symbols from the input files and the global symbols from the
  279.     hash table.  When producing relocateable output, it must
  280.     modify the input relocs and write them into the output file.
  281.     There may also be object format dependent work to be done.
  282.  
  283.     The linker will also call the <<write_object_contents>> entry
  284.     point when the BFD is closed.  The two entry points must work
  285.     together in order to produce the correct output file.
  286.  
  287.     The details of how this works are inevitably dependent upon
  288.     the specific object file format.  The a.out
  289.     <<_bfd_final_link>> routine is <<NAME(aout,final_link)>>.
  290.  
  291. @menu
  292. @* Information provided by the linker::
  293. @* Relocating the section contents::
  294. @* Writing the symbol table::
  295. @end menu
  296.  
  297. INODE
  298. Information provided by the linker, Relocating the section contents, Performing the Final Link, Performing the Final Link
  299. SUBSUBSECTION
  300.     Information provided by the linker
  301.  
  302.     Before the linker calls the <<_bfd_final_link>> entry point,
  303.     it sets up some data structures for the function to use.
  304.  
  305.     The <<input_bfds>> field of the <<bfd_link_info>> structure
  306.     will point to a list of all the input files included in the
  307.     link.  These files are linked through the <<link_next>> field
  308.     of the <<bfd>> structure.
  309.  
  310.     Each section in the output file will have a list of
  311.     <<link_order>> structures attached to the <<link_order_head>>
  312.     field (the <<link_order>> structure is defined in
  313.     <<bfdlink.h>>).  These structures describe how to create the
  314.     contents of the output section in terms of the contents of
  315.     various input sections, fill constants, and, eventually, other
  316.     types of information.
  317.  
  318. INODE
  319. Relocating the section contents, Writing the symbol table, Information provided by the linker, Performing the Final Link
  320. SUBSUBSECTION
  321.     Relocating the section contents
  322.  
  323.     The <<_bfd_final_link>> function should look through the
  324.     <<link_order>> structures attached to each section of the
  325.     output file.  Each <<link_order>> structure should either be
  326.     handled specially, or it should be passed to the function
  327.     <<_bfd_default_link_order>> which will do the right thing
  328.     (<<_bfd_default_link_order>> is defined in <<linker.c>>).
  329.  
  330.     For efficiency, a <<link_order>> of type
  331.     <<bfd_indirect_link_order>> whose associated section belongs
  332.     to a BFD of the same format as the output BFD must be handled
  333.     specially.  This type of <<link_order>> describes part of an
  334.     output section in terms of a section belonging to one of the
  335.     input files.  The <<_bfd_final_link>> function should read the
  336.     contents of the section and any associated relocs, apply the
  337.     relocs to the section contents, and write out the modified
  338.     section contents.  If performing a relocateable link, the
  339.     relocs themselves must also be modified and written out.
  340.  
  341. @findex _bfd_relocate_contents
  342. @findex _bfd_final_link_relocate
  343.     The functions <<_bfd_relocate_contents>> and
  344.     <<_bfd_final_link_relocate>> provide some general support for
  345.     performing the actual relocations, notably overflow checking.
  346.     Their arguments include information about the symbol the
  347.     relocation is against and a <<reloc_howto_type>> argument
  348.     which describes the relocation to perform.  These functions
  349.     are defined in <<reloc.c>>.
  350.  
  351.     The a.out function which handles reading, relocating, and
  352.     writing section contents is <<aout_link_input_section>>.  The
  353.     actual relocation is done in <<aout_link_input_section_std>>
  354.     and <<aout_link_input_section_ext>>.
  355.  
  356. INODE
  357. Writing the symbol table, , Relocating the section contents, Performing the Final Link
  358. SUBSUBSECTION
  359.     Writing the symbol table
  360.  
  361.     The <<_bfd_final_link>> function must gather all the symbols
  362.     in the input files and write them out.  It must also write out
  363.     all the symbols in the global hash table.  This must be
  364.     controlled by the <<strip>> and <<discard>> fields of the
  365.     <<bfd_link_info>> structure.
  366.  
  367.     The local symbols of the input files will not have been
  368.     entered into the linker hash table.  The <<_bfd_final_link>>
  369.     routine must consider each input file and include the symbols
  370.     in the output file.  It may be convenient to do this when
  371.     looking through the <<link_order>> structures, or it may be
  372.     done by stepping through the <<input_bfds>> list.
  373.  
  374.     The <<_bfd_final_link>> routine must also traverse the global
  375.     hash table to gather all the externally visible symbols.  It
  376.     is possible that most of the externally visible symbols may be
  377.     written out when considering the symbols of each input file,
  378.     but it is still necessary to traverse the hash table since the
  379.     linker script may have defined some symbols that are not in
  380.     any of the input files.  The <<written>> field in the
  381.     <<bfd_link_hash_entry>> structure may be used to determine
  382.     which entries in the hash table have not already been written
  383.     out.
  384.  
  385.     The <<strip>> field of the <<bfd_link_info>> structure
  386.     controls which symbols are written out.  The possible values
  387.     are listed in <<bfdlink.h>>.  If the value is <<strip_some>>,
  388.     then the <<keep_hash>> field of the <<bfd_link_info>>
  389.     structure is a hash table of symbols to keep; each symbol
  390.     should be looked up in this hash table, and only symbols which
  391.     are present should be included in the output file.
  392.  
  393.     If the <<strip>> field of the <<bfd_link_info>> structure
  394.     permits local symbols to be written out, the <<discard>> field
  395.     is used to further controls which local symbols are included
  396.     in the output file.  If the value is <<discard_l>>, then all
  397.     local symbols which begin with a certain prefix are discarded;
  398.     this prefix is described by the <<lprefix>> and
  399.     <<lprefix_len>> fields of the <<bfd_link_info>> structure.
  400.  
  401.     The a.out backend handles symbols by calling
  402.     <<aout_link_write_symbols>> on each input BFD and then
  403.     traversing the global hash table with the function
  404.     <<aout_link_write_other_symbol>>.  It builds a string table
  405.     while writing out the symbols, which is written to the output
  406.     file at the end of <<NAME(aout,final_link)>>.
  407. */
  408.  
  409. static struct bfd_hash_entry *generic_link_hash_newfunc
  410.   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
  411.        const char *));
  412. static boolean generic_link_add_object_symbols
  413.   PARAMS ((bfd *, struct bfd_link_info *));
  414. static boolean generic_link_check_archive_element
  415.   PARAMS ((bfd *, struct bfd_link_info *, boolean *pneeded));
  416. static boolean generic_link_add_symbol_list
  417.   PARAMS ((bfd *, struct bfd_link_info *, bfd_size_type count, asymbol **));
  418. static boolean generic_add_output_symbol
  419.   PARAMS ((bfd *, size_t *psymalloc, asymbol *));
  420. static boolean default_fill_link_order
  421.   PARAMS ((bfd *, struct bfd_link_info *, asection *,
  422.        struct bfd_link_order *));
  423. static boolean default_indirect_link_order
  424.   PARAMS ((bfd *, struct bfd_link_info *, asection *,
  425.        struct bfd_link_order *));
  426.  
  427. /* The link hash table structure is defined in bfdlink.h.  It provides
  428.    a base hash table which the backend specific hash tables are built
  429.    upon.  */
  430.  
  431. /* Routine to create an entry in the link hash table.  */
  432.  
  433. struct bfd_hash_entry *
  434. _bfd_link_hash_newfunc (entry, table, string)
  435.      struct bfd_hash_entry *entry;
  436.      struct bfd_hash_table *table;
  437.      const char *string;
  438. {
  439.   struct bfd_link_hash_entry *ret = (struct bfd_link_hash_entry *) entry;
  440.  
  441.   /* Allocate the structure if it has not already been allocated by a
  442.      subclass.  */
  443.   if (ret == (struct bfd_link_hash_entry *) NULL)
  444.     ret = ((struct bfd_link_hash_entry *)
  445.        bfd_hash_allocate (table, sizeof (struct bfd_link_hash_entry)));
  446.  
  447.   /* Call the allocation method of the superclass.  */
  448.   ret = ((struct bfd_link_hash_entry *)
  449.      bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
  450.  
  451.   /* Initialize the local fields.  */
  452.   ret->type = bfd_link_hash_new;
  453.   ret->written = false;
  454.   ret->next = NULL;
  455.  
  456.   return (struct bfd_hash_entry *) ret;
  457. }
  458.  
  459. /* Initialize a link hash table.  The BFD argument is the one
  460.    responsible for creating this table.  */
  461.  
  462. boolean
  463. _bfd_link_hash_table_init (table, abfd, newfunc)
  464.      struct bfd_link_hash_table *table;
  465.      bfd *abfd;
  466.      struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
  467.                         struct bfd_hash_table *,
  468.                         const char *));
  469. {
  470.   table->creator = abfd->xvec;
  471.   table->undefs = NULL;
  472.   table->undefs_tail = NULL;
  473.   return bfd_hash_table_init (&table->table, newfunc);
  474. }
  475.  
  476. /* Look up a symbol in a link hash table.  If follow is true, we
  477.    follow bfd_link_hash_indirect and bfd_link_hash_warning links to
  478.    the real symbol.  */
  479.  
  480. struct bfd_link_hash_entry *
  481. bfd_link_hash_lookup (table, string, create, copy, follow)
  482.      struct bfd_link_hash_table *table;
  483.      const char *string;
  484.      boolean create;
  485.      boolean copy;
  486.      boolean follow;
  487. {
  488.   struct bfd_link_hash_entry *ret;
  489.  
  490.   ret = ((struct bfd_link_hash_entry *)
  491.      bfd_hash_lookup (&table->table, string, create, copy));
  492.  
  493.   if (follow && ret != (struct bfd_link_hash_entry *) NULL)
  494.     {
  495.       while (ret->type == bfd_link_hash_indirect
  496.          || ret->type == bfd_link_hash_warning)
  497.     ret = ret->u.i.link;
  498.     }
  499.  
  500.   return ret;
  501. }
  502.  
  503. /* Traverse a generic link hash table.  The only reason this is not a
  504.    macro is to do better type checking.  This code presumes that an
  505.    argument passed as a struct bfd_hash_entry * may be cause as a
  506.    struct bfd_link_hash_entry * with no explicit cast required on the
  507.    call.  */
  508.  
  509. void 
  510. bfd_link_hash_traverse (table, func, info)
  511.      struct bfd_link_hash_table *table;
  512.      boolean (*func) PARAMS ((struct bfd_link_hash_entry *, PTR));
  513.      PTR info;
  514. {
  515.   bfd_hash_traverse (&table->table,
  516.              ((boolean (*) PARAMS ((struct bfd_hash_entry *, PTR)))
  517.               func),
  518.              info);
  519. }
  520.  
  521. /* Add a symbol to the linker hash table undefs list.  */
  522.  
  523. INLINE void
  524. bfd_link_add_undef (table, h)
  525.      struct bfd_link_hash_table *table;
  526.      struct bfd_link_hash_entry *h;
  527. {
  528.   BFD_ASSERT (h->next == NULL);
  529.   if (table->undefs_tail != (struct bfd_link_hash_entry *) NULL)
  530.     table->undefs_tail->next = h;
  531.   if (table->undefs == (struct bfd_link_hash_entry *) NULL)
  532.     table->undefs = h;
  533.   table->undefs_tail = h;
  534. }
  535.  
  536. /* Routine to create an entry in an generic link hash table.  */
  537.  
  538. static struct bfd_hash_entry *
  539. generic_link_hash_newfunc (entry, table, string)
  540.      struct bfd_hash_entry *entry;
  541.      struct bfd_hash_table *table;
  542.      const char *string;
  543. {
  544.   struct generic_link_hash_entry *ret =
  545.     (struct generic_link_hash_entry *) entry;
  546.  
  547.   /* Allocate the structure if it has not already been allocated by a
  548.      subclass.  */
  549.   if (ret == (struct generic_link_hash_entry *) NULL)
  550.     ret = ((struct generic_link_hash_entry *)
  551.        bfd_hash_allocate (table, sizeof (struct generic_link_hash_entry)));
  552.  
  553.   /* Call the allocation method of the superclass.  */
  554.   ret = ((struct generic_link_hash_entry *)
  555.      _bfd_link_hash_newfunc ((struct bfd_hash_entry *) ret,
  556.                  table, string));
  557.  
  558.   /* Set local fields.  */
  559.   ret->sym = NULL;
  560.  
  561.   return (struct bfd_hash_entry *) ret;
  562. }
  563.  
  564. /* Create an generic link hash table.  */
  565.  
  566. struct bfd_link_hash_table *
  567. _bfd_generic_link_hash_table_create (abfd)
  568.      bfd *abfd;
  569. {
  570.   struct generic_link_hash_table *ret;
  571.  
  572.   ret = ((struct generic_link_hash_table *)
  573.      bfd_xmalloc (sizeof (struct generic_link_hash_table)));
  574.   if (! _bfd_link_hash_table_init (&ret->root, abfd,
  575.                    generic_link_hash_newfunc))
  576.     {
  577.       free (ret);
  578.       return (struct bfd_link_hash_table *) NULL;
  579.     }
  580.   return &ret->root;
  581. }
  582.  
  583. /* Generic function to add symbols from an object file to the global
  584.    hash table.  */
  585.  
  586. boolean
  587. _bfd_generic_link_add_symbols (abfd, info)
  588.      bfd *abfd;
  589.      struct bfd_link_info *info;
  590. {
  591.   boolean ret;
  592.  
  593.   switch (bfd_get_format (abfd))
  594.     {
  595.     case bfd_object:
  596.       ret = generic_link_add_object_symbols (abfd, info);
  597.       break;
  598.     case bfd_archive:
  599.       ret = _bfd_generic_link_add_archive_symbols
  600.     (abfd, info, generic_link_check_archive_element);
  601.       break;
  602.     default:
  603.       bfd_error = wrong_format;
  604.       ret = false;
  605.     }
  606.  
  607.   /* If we might be using the C based alloca function, make sure we
  608.      have dumped the symbol tables we just allocated.  */
  609. #ifndef __GNUC__
  610. #ifndef alloca
  611.   alloca (0);
  612. #endif
  613. #endif
  614.  
  615.   return ret;
  616. }
  617.  
  618. /* Add symbols from an object file to the global hash table.  */
  619.  
  620. static boolean
  621. generic_link_add_object_symbols (abfd, info)
  622.      bfd *abfd;
  623.      struct bfd_link_info *info;
  624. {
  625.   size_t symsize;
  626.   asymbol **symbols;
  627.   bfd_size_type symbol_count;
  628.  
  629.   symsize = get_symtab_upper_bound (abfd);
  630.   symbols = (asymbol **) alloca (symsize);
  631.   symbol_count = bfd_canonicalize_symtab (abfd, symbols);
  632.  
  633.   return generic_link_add_symbol_list (abfd, info, symbol_count, symbols);
  634. }
  635.  
  636. /* We build a hash table of all symbols defined in an archive.  */
  637.  
  638. /* An archive symbol may be defined by multiple archive elements.
  639.    This linked list is used to hold the elements.  */
  640.  
  641. struct archive_list
  642. {
  643.   struct archive_list *next;
  644.   int indx;
  645. };
  646.  
  647. /* An entry in an archive hash table.  */
  648.  
  649. struct archive_hash_entry
  650. {
  651.   struct bfd_hash_entry root;
  652.   /* Where the symbol is defined.  */
  653.   struct archive_list *defs;
  654. };
  655.  
  656. /* An archive hash table itself.  */
  657.  
  658. struct archive_hash_table
  659. {
  660.   struct bfd_hash_table table;
  661. };
  662.  
  663. static struct bfd_hash_entry *archive_hash_newfunc
  664.   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
  665. static boolean archive_hash_table_init
  666.   PARAMS ((struct archive_hash_table *,
  667.        struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
  668.                        struct bfd_hash_table *,
  669.                        const char *)));
  670.  
  671. /* Create a new entry for an archive hash table.  */
  672.  
  673. static struct bfd_hash_entry *
  674. archive_hash_newfunc (entry, table, string)
  675.      struct bfd_hash_entry *entry;
  676.      struct bfd_hash_table *table;
  677.      const char *string;
  678. {
  679.   struct archive_hash_entry *ret = (struct archive_hash_entry *) entry;
  680.  
  681.   /* Allocate the structure if it has not already been allocated by a
  682.      subclass.  */
  683.   if (ret == (struct archive_hash_entry *) NULL)
  684.     ret = ((struct archive_hash_entry *)
  685.        bfd_hash_allocate (table, sizeof (struct archive_hash_entry)));
  686.  
  687.   /* Call the allocation method of the superclass.  */
  688.   ret = ((struct archive_hash_entry *)
  689.      bfd_hash_newfunc ((struct bfd_hash_entry *) ret, table, string));
  690.  
  691.   /* Initialize the local fields.  */
  692.   ret->defs = (struct archive_list *) NULL;
  693.  
  694.   return (struct bfd_hash_entry *) ret;
  695. }
  696.  
  697. /* Initialize an archive hash table.  */
  698.  
  699. static boolean
  700. archive_hash_table_init (table, newfunc)
  701.      struct archive_hash_table *table;
  702.      struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
  703.                         struct bfd_hash_table *,
  704.                         const char *));
  705. {
  706.   return bfd_hash_table_init (&table->table, newfunc);
  707. }
  708.  
  709. /* Look up an entry in an archive hash table.  */
  710.  
  711. #define archive_hash_lookup(t, string, create, copy) \
  712.   ((struct archive_hash_entry *) \
  713.    bfd_hash_lookup (&(t)->table, (string), (create), (copy)))
  714.  
  715. /* Free an archive hash table.  */
  716.  
  717. #define archive_hash_table_free(t) bfd_hash_table_free (&(t)->table)
  718.  
  719. /* Generic function to add symbols from an archive file to the global
  720.    hash file.  This function presumes that the archive symbol table
  721.    has already been read in (this is normally done by the
  722.    bfd_check_format entry point).  It looks through the undefined and
  723.    common symbols and searches the archive symbol table for them.  If
  724.    it finds an entry, it includes the associated object file in the
  725.    link.
  726.  
  727.    The old linker looked through the archive symbol table for
  728.    undefined symbols.  We do it the other way around, looking through
  729.    undefined symbols for symbols defined in the archive.  The
  730.    advantage of the newer scheme is that we only have to look through
  731.    the list of undefined symbols once, whereas the old method had to
  732.    re-search the symbol table each time a new object file was added.
  733.  
  734.    The CHECKFN argument is used to see if an object file should be
  735.    included.  CHECKFN should set *PNEEDED to true if the object file
  736.    should be included, and must also call the bfd_link_info
  737.    add_archive_element callback function and handle adding the symbols
  738.    to the global hash table.  CHECKFN should only return false if some
  739.    sort of error occurs.
  740.  
  741.    For some formats, such as a.out, it is possible to look through an
  742.    object file but not actually include it in the link.  The
  743.    archive_pass field in a BFD is used to avoid checking the symbols
  744.    of an object files too many times.  When an object is included in
  745.    the link, archive_pass is set to -1.  If an object is scanned but
  746.    not included, archive_pass is set to the pass number.  The pass
  747.    number is incremented each time a new object file is included.  The
  748.    pass number is used because when a new object file is included it
  749.    may create new undefined symbols which cause a previously examined
  750.    object file to be included.  */
  751.  
  752. boolean
  753. _bfd_generic_link_add_archive_symbols (abfd, info, checkfn)
  754.      bfd *abfd;
  755.      struct bfd_link_info *info;
  756.      boolean (*checkfn) PARAMS ((bfd *, struct bfd_link_info *,
  757.                  boolean *pneeded));
  758. {
  759.   carsym *arsyms;
  760.   carsym *arsym_end;
  761.   register carsym *arsym;
  762.   int pass;
  763.   struct archive_hash_table arsym_hash;
  764.   int indx;
  765.   struct bfd_link_hash_entry **pundef;
  766.  
  767.   if (! bfd_has_map (abfd))
  768.     {
  769.       bfd_error = no_symbols;
  770.       return false;
  771.     }
  772.  
  773.   arsyms = bfd_ardata (abfd)->symdefs;
  774.   arsym_end = arsyms + bfd_ardata (abfd)->symdef_count;
  775.  
  776.   /* In order to quickly determine whether an symbol is defined in
  777.      this archive, we build a hash table of the symbols.  */
  778.   if (! archive_hash_table_init (&arsym_hash, archive_hash_newfunc))
  779.     return false;
  780.   for (arsym = arsyms, indx = 0; arsym < arsym_end; arsym++, indx++)
  781.     {
  782.       struct archive_hash_entry *arh;
  783.       struct archive_list *l;
  784.  
  785.       arh = archive_hash_lookup (&arsym_hash, arsym->name, true, false);
  786.       if (arh == (struct archive_hash_entry *) NULL)
  787.     return false;
  788.       l = (struct archive_list *) alloca (sizeof (struct archive_list));
  789.       l->next = arh->defs;
  790.       arh->defs = l;
  791.       l->indx = indx;
  792.     }
  793.  
  794.   pass = 1;
  795.  
  796.   /* New undefined symbols are added to the end of the list, so we
  797.      only need to look through it once.  */
  798.   pundef = &info->hash->undefs;
  799.   while (*pundef != (struct bfd_link_hash_entry *) NULL)
  800.     {
  801.       struct bfd_link_hash_entry *h;
  802.       struct archive_hash_entry *arh;
  803.       struct archive_list *l;
  804.  
  805.       h = *pundef;
  806.  
  807.       /* When a symbol is defined, it is not necessarily removed from
  808.      the list.  */
  809.       if (h->type != bfd_link_hash_undefined
  810.       && h->type != bfd_link_hash_common)
  811.     {
  812.       /* Remove this entry from the list, for general cleanliness
  813.          and because we are going to look through the list again
  814.          if we search any more libraries.  We can't remove the
  815.          entry if it is the tail, because that would lose any
  816.          entries we add to the list later on.  */
  817.       if (*pundef != info->hash->undefs_tail)
  818.         *pundef = (*pundef)->next;
  819.       else
  820.         pundef = &(*pundef)->next;
  821.       continue;
  822.     }
  823.  
  824.       /* Look for this symbol in the archive symbol map.  */
  825.       arh = archive_hash_lookup (&arsym_hash, h->root.string, false, false);
  826.       if (arh == (struct archive_hash_entry *) NULL)
  827.     {
  828.       pundef = &(*pundef)->next;
  829.       continue;
  830.     }
  831.  
  832.       /* Look at all the objects which define this symbol.  */
  833.       for (l = arh->defs; l != (struct archive_list *) NULL; l = l->next)
  834.     {
  835.       bfd *element;
  836.       boolean needed;
  837.  
  838.       /* If the symbol has gotten defined along the way, quit.  */
  839.       if (h->type != bfd_link_hash_undefined
  840.           && h->type != bfd_link_hash_common)
  841.         break;
  842.  
  843.       element = bfd_get_elt_at_index (abfd, l->indx);
  844.       if (element == (bfd *) NULL)
  845.         return false;
  846.  
  847.       /* If we've already included this element, or if we've
  848.          already checked it on this pass, continue.  */
  849.       if (element->archive_pass == -1
  850.           || element->archive_pass == pass)
  851.         continue;
  852.  
  853.       /* If we can't figure this element out, just ignore it.  */
  854.       if (! bfd_check_format (element, bfd_object))
  855.         {
  856.           element->archive_pass = -1;
  857.           continue;
  858.         }
  859.  
  860.       /* CHECKFN will see if this element should be included, and
  861.          go ahead and include it if appropriate.  */
  862.       if (! (*checkfn) (element, info, &needed))
  863.         return false;
  864.  
  865.       if (! needed)
  866.         element->archive_pass = pass;
  867.       else
  868.         {
  869.           element->archive_pass = -1;
  870.  
  871.           /* Increment the pass count to show that we may need to
  872.          recheck object files which were already checked.  */
  873.           ++pass;
  874.         }
  875.     }
  876.  
  877.       pundef = &(*pundef)->next;
  878.     }
  879.  
  880.   archive_hash_table_free (&arsym_hash);
  881.  
  882.   return true;
  883. }
  884.  
  885. /* See if we should include an archive element.  */
  886.  
  887. static boolean
  888. generic_link_check_archive_element (abfd, info, pneeded)
  889.      bfd *abfd;
  890.      struct bfd_link_info *info;
  891.      boolean *pneeded;
  892. {
  893.   size_t symsize;
  894.   asymbol **symbols;
  895.   bfd_size_type symbol_count;
  896.   asymbol **pp, **ppend;
  897.  
  898.   *pneeded = false;
  899.  
  900.   symsize = get_symtab_upper_bound (abfd);
  901.   symbols = (asymbol **) alloca (symsize);
  902.   symbol_count = bfd_canonicalize_symtab (abfd, symbols);
  903.  
  904.   pp = symbols;
  905.   ppend = symbols + symbol_count;
  906.   for (; pp < ppend; pp++)
  907.     {
  908.       asymbol *p;
  909.       struct bfd_link_hash_entry *h;
  910.  
  911.       p = *pp;
  912.  
  913.       /* We are only interested in globally visible symbols.  */
  914.       if (! bfd_is_com_section (p->section)
  915.       && (p->flags & (BSF_GLOBAL | BSF_INDIRECT | BSF_WEAK)) == 0)
  916.     continue;
  917.  
  918.       /* We are only interested if we know something about this
  919.      symbol, and it is undefined or common.  An undefined weak
  920.      symbol (type bfd_link_hash_weak) is not considered to be a
  921.      reference when pulling files out of an archive.  See the SVR4
  922.      ABI, p. 4-27.  */
  923.       h = bfd_link_hash_lookup (info->hash, bfd_asymbol_name (p), false,
  924.                 false, true);
  925.       if (h == (struct bfd_link_hash_entry *) NULL
  926.       || (h->type != bfd_link_hash_undefined
  927.           && h->type != bfd_link_hash_common))
  928.     continue;
  929.  
  930.       /* P is a symbol we are looking for.  */
  931.  
  932.       if (! bfd_is_com_section (p->section))
  933.     {
  934.       /* This object file defines this symbol, so pull it in.  */
  935.       if (! (*info->callbacks->add_archive_element) (info, abfd,
  936.                              bfd_asymbol_name (p)))
  937.         return false;
  938.       if (! generic_link_add_symbol_list (abfd, info, symbol_count,
  939.                           symbols))
  940.         return false;
  941.       *pneeded = true;
  942.       return true;
  943.     }
  944.  
  945.       /* P is a common symbol.  */
  946.  
  947.       if (h->type == bfd_link_hash_undefined)
  948.     {
  949.       bfd *symbfd;
  950.  
  951.       symbfd = h->u.undef.abfd;
  952.       if (symbfd == (bfd *) NULL)
  953.         {
  954.           /* This symbol was created as undefined from outside
  955.          BFD.  We assume that we should link in the object
  956.          file.  This is for the -u option in the linker.  */
  957.           if (! (*info->callbacks->add_archive_element)
  958.           (info, abfd, bfd_asymbol_name (p)))
  959.         return false;
  960.           *pneeded = true;
  961.           return true;
  962.         }
  963.  
  964.       /* Turn the symbol into a common symbol but do not link in
  965.          the object file.  This is how a.out works.  Object
  966.          formats that require different semantics must implement
  967.          this function differently.  This symbol is already on the
  968.          undefs list.  We add the section to a common section
  969.          attached to symbfd to ensure that it is in a BFD which
  970.          will be linked in.  */
  971.       h->type = bfd_link_hash_common;
  972.       h->u.c.size = bfd_asymbol_value (p);
  973.       if (p->section == &bfd_com_section)
  974.         h->u.c.section = bfd_make_section_old_way (symbfd, "COMMON");
  975.       else
  976.         h->u.c.section = bfd_make_section_old_way (symbfd,
  977.                                p->section->name);
  978.     }
  979.       else
  980.     {
  981.       /* Adjust the size of the common symbol if necessary.  This
  982.          is how a.out works.  Object formats that require
  983.          different semantics must implement this function
  984.          differently.  */
  985.       if (bfd_asymbol_value (p) > h->u.c.size)
  986.         h->u.c.size = bfd_asymbol_value (p);
  987.     }
  988.     }
  989.  
  990.   /* This archive element is not needed.  */
  991.   return true;
  992. }
  993.  
  994. /* Add the symbol from an object file to the global hash table.  */
  995.  
  996. static boolean
  997. generic_link_add_symbol_list (abfd, info, symbol_count, symbols)
  998.      bfd *abfd;
  999.      struct bfd_link_info *info;
  1000.      bfd_size_type symbol_count;
  1001.      asymbol **symbols;
  1002. {
  1003.   asymbol **pp, **ppend;
  1004.  
  1005.   pp = symbols;
  1006.   ppend = symbols + symbol_count;
  1007.   for (; pp < ppend; pp++)
  1008.     {
  1009.       asymbol *p;
  1010.  
  1011.       p = *pp;
  1012.  
  1013.       if ((p->flags & (BSF_INDIRECT
  1014.                | BSF_WARNING
  1015.                | BSF_GLOBAL
  1016.                | BSF_CONSTRUCTOR
  1017.                | BSF_WEAK)) != 0
  1018.       || bfd_get_section (p) == &bfd_und_section
  1019.       || bfd_is_com_section (bfd_get_section (p))
  1020.       || bfd_get_section (p) == &bfd_ind_section)
  1021.     {
  1022.       const char *name;
  1023.       const char *string;
  1024.       struct generic_link_hash_entry *h;
  1025.  
  1026.       name = bfd_asymbol_name (p);
  1027.       if ((p->flags & BSF_INDIRECT) != 0
  1028.           || p->section == &bfd_ind_section)
  1029.         string = bfd_asymbol_name ((asymbol *) p->value);
  1030.       else if ((p->flags & BSF_WARNING) != 0)
  1031.         {
  1032.           /* The name of P is actually the warning string, and the
  1033.          value is actually a pointer to the symbol to warn
  1034.          about.  */
  1035.           string = name;
  1036.           name = bfd_asymbol_name ((asymbol *) p->value);
  1037.         }
  1038.       else
  1039.         string = NULL;
  1040.  
  1041.       /* We pass the constructor argument as false, for
  1042.          compatibility.  As backends are converted they can
  1043.          arrange to pass the right value (the right value is the
  1044.          size of a function pointer if gcc uses collect2 for the
  1045.          object file format, zero if it does not).
  1046.          FIXME: We pass the bitsize as 32, which is just plain
  1047.          wrong, but actually doesn't matter very much.  */
  1048.       if (! (_bfd_generic_link_add_one_symbol
  1049.          (info, abfd, name, p->flags, bfd_get_section (p),
  1050.           p->value, string, false, 0, 32,
  1051.           (struct bfd_link_hash_entry **) &h)))
  1052.         return false;
  1053.  
  1054.       /* Save the BFD symbol so that we don't lose any backend
  1055.          specific information that may be attached to it.  We only
  1056.          want this one if it gives more information than the
  1057.          existing one; we don't want to replace a defined symbol
  1058.          with an undefined one.  This routine may be called with a
  1059.          hash table other than the generic hash table, so we only
  1060.          do this if we are certain that the hash table is a
  1061.          generic one.  */
  1062.       if (info->hash->creator == abfd->xvec)
  1063.         {
  1064.           if (h->sym == (asymbol *) NULL
  1065.           || (bfd_get_section (p) != &bfd_und_section
  1066.               && (! bfd_is_com_section (bfd_get_section (p))
  1067.               || (bfd_get_section (h->sym) == &bfd_und_section))))
  1068.         h->sym = p;
  1069.         }
  1070.     }
  1071.     }
  1072.  
  1073.   return true;
  1074. }
  1075.  
  1076. /* We use a state table to deal with adding symbols from an object
  1077.    file.  The first index into the state table describes the symbol
  1078.    from the object file.  The second index into the state table is the
  1079.    type of the symbol in the hash table.  */
  1080.  
  1081. /* The symbol from the object file is turned into one of these row
  1082.    values.  */
  1083.  
  1084. enum link_row
  1085. {
  1086.   UNDEF_ROW,        /* Undefined.  */
  1087.   UNDEFW_ROW,        /* Weak undefined.  */
  1088.   DEF_ROW,        /* Defined.  */
  1089.   DEFW_ROW,        /* Weak defined.  */
  1090.   COMMON_ROW,        /* Common.  */
  1091.   INDR_ROW,        /* Indirect.  */
  1092.   WARN_ROW,        /* Warning.  */
  1093.   SET_ROW        /* Member of set.  */
  1094. };
  1095.  
  1096. /* The actions to take in the state table.  */
  1097.  
  1098. enum link_action
  1099. {
  1100.   FAIL,        /* Abort. */
  1101.   UND,        /* Mark symbol undefined.  */
  1102.   WEAK,        /* Mark symbol weak undefined.  */
  1103.   DEF,        /* Mark symbol defined.  */
  1104.   COM,        /* Mark symbol common.  */
  1105.   CREF,        /* Possibly warn about common reference to defined symbol.  */
  1106.   CDEF,        /* Define existing common symbol.  */
  1107.   NOACT,    /* No action.  */
  1108.   BIG,        /* Mark symbol common using largest size.  */
  1109.   MDEF,        /* Multiple definition error.  */
  1110.   IND,        /* Make indirect symbol.  */
  1111.   SET,        /* Add value to set.  */
  1112.   MWARN,    /* Make warning symbol.  */
  1113.   WARN,        /* Issue warning.  */
  1114.   CYCLE,    /* Repeat with symbol pointed to.  */
  1115.   WARNC        /* Issue warning and then CYCLE.  */
  1116. };
  1117.  
  1118. /* The state table itself.  The first index is a link_row and the
  1119.    second index is a bfd_link_hash_type.  */
  1120.  
  1121. static const enum link_action link_action[8][7] =
  1122. {
  1123.   /* current\prev    new    undef  weak   def    com    indr   warn  */
  1124.   /* UNDEF_ROW     */  {UND,   NOACT, NOACT, NOACT, NOACT, CYCLE, WARNC },
  1125.   /* UNDEFW_ROW    */  {WEAK,  WEAK,  NOACT, NOACT, NOACT, CYCLE, WARNC },
  1126.   /* DEF_ROW     */  {DEF,   DEF,   DEF,   MDEF,  CDEF,  CYCLE, CYCLE },
  1127.   /* DEFW_ROW     */  {DEF,   DEF,   DEF,   NOACT, NOACT, CYCLE, CYCLE },
  1128.   /* COMMON_ROW    */  {COM,   COM,   COM,   CREF,  BIG,   CYCLE, WARNC },
  1129.   /* INDR_ROW    */  {IND,   IND,   IND,   MDEF,  MDEF,  MDEF,  WARNC },
  1130.   /* WARN_ROW   */  {MWARN, WARN,  WARN,  MWARN, MWARN, MWARN, NOACT },
  1131.   /* SET_ROW    */  {SET,   SET,   SET,   SET,   SET,   CYCLE, WARNC }
  1132. };
  1133.  
  1134. /* Add a symbol to the global hash table.
  1135.    ABFD is the BFD the symbol comes from.
  1136.    NAME is the name of the symbol.
  1137.    FLAGS is the BSF_* bits associated with the symbol.
  1138.    SECTION is the section in which the symbol is defined; this may be
  1139.      bfd_und_section or bfd_com_section.
  1140.    VALUE is the value of the symbol, relative to the section.
  1141.    STRING is used for either an indirect symbol, in which case it is
  1142.      the name of the symbol to indirect to, or a warning symbol, in
  1143.      which case it is the warning string.
  1144.    COPY is true if NAME or STRING must be copied into locally
  1145.      allocated memory if they need to be saved.
  1146.    CONSTRUCTOR is true if we should automatically collect gcc
  1147.      constructor or destructor names.
  1148.    BITSIZE is the number of bits in constructor or set entries.
  1149.    HASHP, if not NULL, is a place to store the created hash table
  1150.      entry.  */
  1151.  
  1152. boolean
  1153. _bfd_generic_link_add_one_symbol (info, abfd, name, flags, section, value,
  1154.                   string, copy, constructor, bitsize, hashp)
  1155.      struct bfd_link_info *info;
  1156.      bfd *abfd;
  1157.      const char *name;
  1158.      flagword flags;
  1159.      asection *section;
  1160.      bfd_vma value;
  1161.      const char *string;
  1162.      boolean copy;
  1163.      boolean constructor;
  1164.      unsigned int bitsize;
  1165.      struct bfd_link_hash_entry **hashp;
  1166. {
  1167.   enum link_row row;
  1168.   struct bfd_link_hash_entry *h;
  1169.   boolean cycle;
  1170.  
  1171.   if (section == &bfd_ind_section
  1172.       || (flags & BSF_INDIRECT) != 0)
  1173.     row = INDR_ROW;
  1174.   else if ((flags & BSF_WARNING) != 0)
  1175.     row = WARN_ROW;
  1176.   else if ((flags & BSF_CONSTRUCTOR) != 0)
  1177.     row = SET_ROW;
  1178.   else if (section == &bfd_und_section)
  1179.     {
  1180.       if ((flags & BSF_WEAK) != 0)
  1181.     row = UNDEFW_ROW;
  1182.       else
  1183.     row = UNDEF_ROW;
  1184.     }
  1185.   else if ((flags & BSF_WEAK) != 0)
  1186.     row = DEFW_ROW;
  1187.   else if (bfd_is_com_section (section))
  1188.     row = COMMON_ROW;
  1189.   else
  1190.     row = DEF_ROW;
  1191.  
  1192.   h = bfd_link_hash_lookup (info->hash, name, true, copy, false);
  1193.   if (h == (struct bfd_link_hash_entry *) NULL)
  1194.     {
  1195.       if (hashp != (struct bfd_link_hash_entry **) NULL)
  1196.     *hashp = NULL;
  1197.       return false;
  1198.     }
  1199.  
  1200.   if (info->notice_hash != (struct bfd_hash_table *) NULL
  1201.       && (bfd_hash_lookup (info->notice_hash, name, false, false)
  1202.       != (struct bfd_hash_entry *) NULL))
  1203.     {
  1204.       if (! (*info->callbacks->notice) (info, name, abfd, section, value))
  1205.     return false;
  1206.     }
  1207.  
  1208.   if (hashp != (struct bfd_link_hash_entry **) NULL)
  1209.     *hashp = h;
  1210.  
  1211.   do
  1212.     {
  1213.       enum link_action action;
  1214.  
  1215.       cycle = false;
  1216.       action = link_action[(int) row][(int) h->type];
  1217.       switch (action)
  1218.     {
  1219.     case FAIL:
  1220.       abort ();
  1221.     case UND:
  1222.       h->type = bfd_link_hash_undefined;
  1223.       h->u.undef.abfd = abfd;
  1224.       bfd_link_add_undef (info->hash, h);
  1225.       break;
  1226.     case WEAK:
  1227.       h->type = bfd_link_hash_weak;
  1228.       h->u.undef.abfd = abfd;
  1229.       break;
  1230.     case CDEF:
  1231.       BFD_ASSERT (h->type == bfd_link_hash_common);
  1232.       if (! ((*info->callbacks->multiple_common)
  1233.          (info, name,
  1234.           h->u.c.section->owner, bfd_link_hash_common, h->u.c.size,
  1235.           abfd, bfd_link_hash_defined, (bfd_vma) 0)))
  1236.         return false;
  1237.       /* Fall through.  */
  1238.     case DEF:
  1239.       h->type = bfd_link_hash_defined;
  1240.       h->u.def.section = section;
  1241.       h->u.def.value = value;
  1242.  
  1243.       /* If we have been asked to, we act like collect2 and
  1244.          identify all functions that might be global constructors
  1245.          and destructors and pass them up in a callback.  We only
  1246.          do this for certain object file types, since many object
  1247.          file types can handle this automatically.  */
  1248.       if (constructor && name[0] == '_')
  1249.         {
  1250.           const char *s;
  1251.  
  1252.           /* A constructor or destructor name starts like this:
  1253.            _+GLOBAL_[_.$][ID][_.$]
  1254.          where the first [_.$] and the second are the same
  1255.          character (we accept any character there, in case a
  1256.          new object file format comes along with even worse
  1257.          naming restrictions).  */
  1258.  
  1259. #define CONS_PREFIX "GLOBAL_"
  1260. #define CONS_PREFIX_LEN (sizeof CONS_PREFIX - 1)
  1261.  
  1262.           s = name + 1;
  1263.           while (*s == '_')
  1264.         ++s;
  1265.           if (s[0] == 'G'
  1266.           && strncmp (s, CONS_PREFIX, CONS_PREFIX_LEN - 1) == 0)
  1267.         {
  1268.           char c;
  1269.  
  1270.           c = s[CONS_PREFIX_LEN + 1];
  1271.           if ((c == 'I' || c == 'D')
  1272.               && s[CONS_PREFIX_LEN] == s[CONS_PREFIX_LEN + 2])
  1273.             {
  1274.               if (! ((*info->callbacks->constructor)
  1275.                  (info,
  1276.                   c == 'I' ? true : false, bitsize,
  1277.                   name, abfd, section, value)))
  1278.             return false;
  1279.             }
  1280.         }
  1281.         }
  1282.  
  1283.       break;
  1284.     case COM:
  1285.       if (h->type == bfd_link_hash_new)
  1286.         bfd_link_add_undef (info->hash, h);
  1287.       h->type = bfd_link_hash_common;
  1288.       h->u.c.size = value;
  1289.       if (section == &bfd_com_section)
  1290.         h->u.c.section = bfd_make_section_old_way (abfd, "COMMON");
  1291.       else if (section->owner != abfd)
  1292.         h->u.c.section = bfd_make_section_old_way (abfd, section->name);
  1293.       else
  1294.         h->u.c.section = section;
  1295.       break;
  1296.     case NOACT:
  1297.       break;
  1298.     case BIG:
  1299.       BFD_ASSERT (h->type == bfd_link_hash_common);
  1300.       if (! ((*info->callbacks->multiple_common)
  1301.          (info, name,
  1302.           h->u.c.section->owner, bfd_link_hash_common, h->u.c.size,
  1303.           abfd, bfd_link_hash_common, value)))
  1304.         return false;
  1305.       if (value > h->u.c.size)
  1306.         h->u.c.size = value;
  1307.       break;
  1308.     case CREF:
  1309.       BFD_ASSERT (h->type == bfd_link_hash_defined);
  1310.       if (! ((*info->callbacks->multiple_common)
  1311.          (info, name,
  1312.           h->u.def.section->owner, bfd_link_hash_defined, (bfd_vma) 0,
  1313.           abfd, bfd_link_hash_common, value)))
  1314.         return false;
  1315.       break;
  1316.     case MDEF:
  1317.       {
  1318.         asection *msec;
  1319.         bfd_vma mval;
  1320.  
  1321.         switch (h->type)
  1322.           {
  1323.           case bfd_link_hash_defined:
  1324.         msec = h->u.def.section;
  1325.         mval = h->u.def.value;
  1326.         break;
  1327.           case bfd_link_hash_common:
  1328.         msec = &bfd_com_section;
  1329.         mval = h->u.c.size;
  1330.         break;
  1331.           case bfd_link_hash_indirect:
  1332.         msec = &bfd_ind_section;
  1333.         mval = 0;
  1334.         break;
  1335.           default:
  1336.         abort ();
  1337.           }
  1338.           
  1339.         if (! ((*info->callbacks->multiple_definition)
  1340.            (info, name, msec->owner, msec, mval, abfd, section,
  1341.             value)))
  1342.           return false;
  1343.       }
  1344.       break;
  1345.     case IND:
  1346.       {
  1347.         struct bfd_link_hash_entry *inh;
  1348.  
  1349.         /* STRING is the name of the symbol we want to indirect
  1350.            to.  */
  1351.         inh = bfd_link_hash_lookup (info->hash, string, true, copy,
  1352.                     false);
  1353.         if (inh == (struct bfd_link_hash_entry *) NULL)
  1354.           return false;
  1355.         if (inh->type == bfd_link_hash_new)
  1356.           {
  1357.         inh->type = bfd_link_hash_undefined;
  1358.         inh->u.undef.abfd = abfd;
  1359.         bfd_link_add_undef (info->hash, inh);
  1360.           }
  1361.         h->type = bfd_link_hash_indirect;
  1362.         h->u.i.link = inh;
  1363.       }
  1364.       break;
  1365.     case SET:
  1366.       if (! (*info->callbacks->add_to_set) (info, h, bitsize, abfd,
  1367.                         section, value))
  1368.         return false;
  1369.       break;
  1370.     case WARN:
  1371.     case WARNC:
  1372.       if (h->u.i.warning != NULL)
  1373.         {
  1374.           if (! (*info->callbacks->warning) (info, h->u.i.warning))
  1375.         return false;
  1376.           /* Only issue a warning once.  */
  1377.           h->u.i.warning = NULL;
  1378.         }
  1379.       if (action == WARN)
  1380.         break;
  1381.       /* Fall through.  */
  1382.     case CYCLE:
  1383.       h = h->u.i.link;
  1384.       cycle = true;
  1385.       break;
  1386.     case MWARN:
  1387.       {
  1388.         struct bfd_link_hash_entry *sub;
  1389.  
  1390.         /* STRING is the warning to give.  */
  1391.         sub = ((struct bfd_link_hash_entry *)
  1392.            bfd_hash_allocate (&info->hash->table,
  1393.                       sizeof (struct bfd_link_hash_entry)));
  1394.         *sub = *h;
  1395.         h->type = bfd_link_hash_warning;
  1396.         h->u.i.link = sub;
  1397.         if (! copy)
  1398.           h->u.i.warning = string;
  1399.         else
  1400.           {
  1401.         char *w;
  1402.  
  1403.         w = bfd_hash_allocate (&info->hash->table,
  1404.                        strlen (string) + 1);
  1405.         strcpy (w, string);
  1406.         h->u.i.warning = w;
  1407.           }
  1408.       }
  1409.       break;
  1410.     }
  1411.     }
  1412.   while (cycle);
  1413.  
  1414.   return true;
  1415. }
  1416.  
  1417. /* Generic final link routine.  */
  1418.  
  1419. boolean
  1420. _bfd_generic_final_link (abfd, info)
  1421.      bfd *abfd;
  1422.      struct bfd_link_info *info;
  1423. {
  1424.   bfd *sub;
  1425.   asection *o;
  1426.   struct bfd_link_order *p;
  1427.   size_t outsymalloc;
  1428.   struct generic_write_global_symbol_info wginfo;
  1429.  
  1430.   abfd->outsymbols = (asymbol **) NULL;
  1431.   abfd->symcount = 0;
  1432.   outsymalloc = 0;
  1433.  
  1434.   /* Build the output symbol table.  This also reads in the symbols
  1435.      for all the input BFDs, keeping them in the outsymbols field.  */
  1436.   for (sub = info->input_bfds; sub != (bfd *) NULL; sub = sub->link_next)
  1437.     if (! _bfd_generic_link_output_symbols (abfd, sub, info, &outsymalloc))
  1438.       return false;
  1439.  
  1440.   /* Accumulate the global symbols.  */
  1441.   wginfo.output_bfd = abfd;
  1442.   wginfo.psymalloc = &outsymalloc;
  1443.   _bfd_generic_link_hash_traverse (_bfd_generic_hash_table (info),
  1444.                    _bfd_generic_link_write_global_symbol,
  1445.                    (PTR) &wginfo);
  1446.  
  1447.   if (info->relocateable)
  1448.     {
  1449.       /* Allocate space for the output relocs for each section.  */
  1450.       for (o = abfd->sections;
  1451.        o != (asection *) NULL;
  1452.        o = o->next)
  1453.     {
  1454.       o->reloc_count = 0;
  1455.       for (p = o->link_order_head;
  1456.            p != (struct bfd_link_order *) NULL;
  1457.            p = p->next)
  1458.         {
  1459.           if (p->type == bfd_indirect_link_order)
  1460.         {
  1461.           asection *input_section;
  1462.           bfd *input_bfd;
  1463.           bfd_size_type relsize;
  1464.           arelent **relocs;
  1465.           bfd_size_type reloc_count;
  1466.  
  1467.           input_section = p->u.indirect.section;
  1468.           input_bfd = input_section->owner;
  1469.           relsize = bfd_get_reloc_upper_bound (input_bfd,
  1470.                                input_section);
  1471.           relocs = (arelent **) bfd_xmalloc (relsize);
  1472.           reloc_count =
  1473.             bfd_canonicalize_reloc (input_bfd, input_section,
  1474.                         relocs,
  1475.                         bfd_get_outsymbols (input_bfd));
  1476.           BFD_ASSERT (reloc_count == input_section->reloc_count);
  1477.           o->reloc_count += reloc_count;
  1478.           free (relocs);
  1479.         }
  1480.         }
  1481.       if (o->reloc_count > 0)
  1482.         {
  1483.           o->orelocation = ((arelent **)
  1484.                 bfd_alloc (abfd,
  1485.                        (o->reloc_count
  1486.                         * sizeof (arelent *))));
  1487.           /* Reset the count so that it can be used as an index
  1488.          when putting in the output relocs.  */
  1489.           o->reloc_count = 0;
  1490.         }
  1491.     }
  1492.     }
  1493.  
  1494.   /* Handle all the link order information for the sections.  */
  1495.   for (o = abfd->sections;
  1496.        o != (asection *) NULL;
  1497.        o = o->next)
  1498.     {
  1499.       for (p = o->link_order_head;
  1500.        p != (struct bfd_link_order *) NULL;
  1501.        p = p->next)
  1502.     {
  1503.       if (! _bfd_default_link_order (abfd, info, o, p))
  1504.         return false;
  1505.     }
  1506.     }
  1507.  
  1508.   return true;
  1509. }
  1510.  
  1511. /* Add an output symbol to the output BFD.  */
  1512.  
  1513. static boolean
  1514. generic_add_output_symbol (output_bfd, psymalloc, sym)
  1515.      bfd *output_bfd;
  1516.      size_t *psymalloc;
  1517.      asymbol *sym;
  1518. {
  1519.   if (output_bfd->symcount >= *psymalloc)
  1520.     {
  1521.       asymbol **newsyms;
  1522.  
  1523.       if (*psymalloc == 0)
  1524.     *psymalloc = 124;
  1525.       else
  1526.     *psymalloc *= 2;
  1527.       if (output_bfd->outsymbols == (asymbol **) NULL)
  1528.     newsyms = (asymbol **) malloc (*psymalloc * sizeof (asymbol *));
  1529.       else
  1530.     newsyms = (asymbol **) realloc (output_bfd->outsymbols,
  1531.                     *psymalloc * sizeof (asymbol *));
  1532.       if (newsyms == (asymbol **) NULL)
  1533.     {
  1534.       bfd_error = no_memory;
  1535.       return false;
  1536.     }
  1537.       output_bfd->outsymbols = newsyms;
  1538.     }
  1539.  
  1540.   output_bfd->outsymbols[output_bfd->symcount] = sym;
  1541.   ++output_bfd->symcount;
  1542.  
  1543.   return true;
  1544. }
  1545.  
  1546. /* Handle the symbols for an input BFD.  */
  1547.  
  1548. boolean
  1549. _bfd_generic_link_output_symbols (output_bfd, input_bfd, info, psymalloc)
  1550.      bfd *output_bfd;
  1551.      bfd *input_bfd;
  1552.      struct bfd_link_info *info;
  1553.      size_t *psymalloc;
  1554. {
  1555.   size_t symsize;
  1556.   asymbol **sym_ptr;
  1557.   asymbol **sym_end;
  1558.  
  1559.   symsize = get_symtab_upper_bound (input_bfd);
  1560.   input_bfd->outsymbols = (asymbol **) bfd_alloc (input_bfd, symsize);
  1561.   input_bfd->symcount = bfd_canonicalize_symtab (input_bfd,
  1562.                          input_bfd->outsymbols);
  1563.  
  1564.   /* Create a filename symbol if we are supposed to.  */
  1565.   if (info->create_object_symbols_section != (asection *) NULL)
  1566.     {
  1567.       asection *sec;
  1568.  
  1569.       for (sec = input_bfd->sections;
  1570.        sec != (asection *) NULL;
  1571.        sec = sec->next)
  1572.     {
  1573.       if (sec->output_section == info->create_object_symbols_section)
  1574.         {
  1575.           asymbol *newsym;
  1576.  
  1577.           newsym = bfd_make_empty_symbol (input_bfd);
  1578.           newsym->name = input_bfd->filename;
  1579.           newsym->value = 0;
  1580.           newsym->flags = BSF_LOCAL | BSF_FILE;
  1581.           newsym->section = sec;
  1582.  
  1583.           if (! generic_add_output_symbol (output_bfd, psymalloc,
  1584.                            newsym))
  1585.         return false;
  1586.  
  1587.           break;
  1588.         }
  1589.     }
  1590.     }
  1591.  
  1592.   /* Adjust the values of the globally visible symbols, and write out
  1593.      local symbols.  */
  1594.   sym_ptr = bfd_get_outsymbols (input_bfd);
  1595.   sym_end = sym_ptr + bfd_get_symcount (input_bfd);
  1596.   for (; sym_ptr < sym_end; sym_ptr++)
  1597.     {
  1598.       asymbol *sym;
  1599.       struct generic_link_hash_entry *h;
  1600.       boolean output;
  1601.  
  1602.       h = (struct generic_link_hash_entry *) NULL;
  1603.       sym = *sym_ptr;
  1604.       if ((sym->flags & (BSF_INDIRECT
  1605.              | BSF_WARNING
  1606.              | BSF_GLOBAL
  1607.              | BSF_CONSTRUCTOR
  1608.              | BSF_WEAK)) != 0
  1609.       || bfd_get_section (sym) == &bfd_und_section
  1610.       || bfd_is_com_section (bfd_get_section (sym))
  1611.       || bfd_get_section (sym) == &bfd_ind_section)
  1612.     {
  1613.       h = _bfd_generic_link_hash_lookup (_bfd_generic_hash_table (info),
  1614.                          bfd_asymbol_name (sym),
  1615.                          false, false, true);
  1616.       if (h != (struct generic_link_hash_entry *) NULL)
  1617.         {
  1618.           /* Force all references to this symbol to point to
  1619.          the same area in memory.  It is possible that
  1620.          this routine will be called with a hash table
  1621.          other than a generic hash table, so we double
  1622.          check that.  */
  1623.           if (info->hash->creator == input_bfd->xvec)
  1624.         {
  1625.           if (h->sym != (asymbol *) NULL)
  1626.             *sym_ptr = sym = h->sym;
  1627.         }
  1628.  
  1629.           switch (h->root.type)
  1630.         {
  1631.         default:
  1632.         case bfd_link_hash_new:
  1633.           abort ();
  1634.         case bfd_link_hash_undefined:
  1635.         case bfd_link_hash_weak:
  1636.           break;
  1637.         case bfd_link_hash_defined:
  1638.           sym->value = h->root.u.def.value;
  1639.           sym->section = h->root.u.def.section;
  1640.           sym->flags |= BSF_GLOBAL;
  1641.           break;
  1642.         case bfd_link_hash_common:
  1643.           sym->value = h->root.u.c.size;
  1644.           sym->flags |= BSF_GLOBAL;
  1645.           /* We do not set the section of the symbol to
  1646.              c.section.  c.section is saved so that we know
  1647.              where to allocate the symbol if we define it.  In
  1648.              this case the type is still bfd_link_hash_common,
  1649.              so we did not define it, so we do not want to use
  1650.              that section.  */
  1651.           BFD_ASSERT (bfd_is_com_section (sym->section));
  1652.           break;
  1653.         }
  1654.         }
  1655.     }
  1656.  
  1657.       /* This switch is straight from the old code in
  1658.      write_file_locals in ldsym.c.  */
  1659.       if (info->strip == strip_some
  1660.       && (bfd_hash_lookup (info->keep_hash, bfd_asymbol_name (sym),
  1661.                    false, false)
  1662.           == (struct bfd_hash_entry *) NULL))
  1663.     output = false;
  1664.       else if ((sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0)
  1665.     {
  1666.       /* If this symbol is marked as occurring now, rather
  1667.          than at the end, output it now.  This is used for
  1668.          COFF C_EXT FCN symbols.  FIXME: There must be a
  1669.          better way.  */
  1670.       if (bfd_asymbol_bfd (sym) == input_bfd
  1671.           && (sym->flags & BSF_NOT_AT_END) != 0)
  1672.         output = true;
  1673.       else
  1674.         output = false;
  1675.     }
  1676.       else if (sym->section == &bfd_ind_section)
  1677.     output = false;
  1678.       else if ((sym->flags & BSF_DEBUGGING) != 0)
  1679.     {
  1680.       if (info->strip == strip_none)
  1681.         output = true;
  1682.       else
  1683.         output = false;
  1684.     }
  1685.       else if (sym->section == &bfd_und_section
  1686.            || bfd_is_com_section (sym->section))
  1687.     output = false;
  1688.       else if ((sym->flags & BSF_LOCAL) != 0)
  1689.     {
  1690.       if ((sym->flags & BSF_WARNING) != 0)
  1691.         output = false;
  1692.       else
  1693.         {
  1694.           switch (info->discard)
  1695.         {
  1696.         default:
  1697.         case discard_all:
  1698.           output = false;
  1699.           break;
  1700.         case discard_l:
  1701.           if (bfd_asymbol_name (sym)[0] == info->lprefix[0]
  1702.               && (info->lprefix_len == 1
  1703.               || strncmp (bfd_asymbol_name (sym), info->lprefix,
  1704.                       info->lprefix_len) == 0))
  1705.             output = false;
  1706.           else
  1707.             output = true;
  1708.           break;
  1709.         case discard_none:
  1710.           output = true;
  1711.           break;
  1712.         }
  1713.         }
  1714.     }
  1715.       else if ((sym->flags & BSF_CONSTRUCTOR))
  1716.     {
  1717.       if (info->strip != strip_all)
  1718.         output = true;
  1719.       else
  1720.         output = false;
  1721.     }
  1722.       else
  1723.     abort ();
  1724.  
  1725.       if (output)
  1726.     {
  1727.       if (! generic_add_output_symbol (output_bfd, psymalloc, sym))
  1728.         return false;
  1729.       if (h != (struct generic_link_hash_entry *) NULL)
  1730.         h->root.written = true;
  1731.     }
  1732.     }
  1733.  
  1734.   return true;
  1735. }
  1736.  
  1737. /* Write out a global symbol, if it hasn't already been written out.
  1738.    This is called for each symbol in the hash table.  */
  1739.  
  1740. boolean
  1741. _bfd_generic_link_write_global_symbol (h, data)
  1742.      struct generic_link_hash_entry *h;
  1743.      PTR data;
  1744. {
  1745.   struct generic_write_global_symbol_info *wginfo =
  1746.     (struct generic_write_global_symbol_info *) data;
  1747.   asymbol *sym;
  1748.  
  1749.   if (h->root.written)
  1750.     return true;
  1751.  
  1752.   if (h->sym != (asymbol *) NULL)
  1753.     {
  1754.       sym = h->sym;
  1755.       BFD_ASSERT (strcmp (bfd_asymbol_name (sym), h->root.root.string) == 0);
  1756.     }
  1757.   else
  1758.     {
  1759.       sym = bfd_make_empty_symbol (wginfo->output_bfd);
  1760.       sym->name = h->root.root.string;
  1761.       sym->flags = 0;
  1762.     }
  1763.  
  1764.   switch (h->root.type)
  1765.     {
  1766.     default:
  1767.     case bfd_link_hash_new:
  1768.       abort ();
  1769.     case bfd_link_hash_undefined:
  1770.       sym->section = &bfd_und_section;
  1771.       sym->value = 0;
  1772.       break;
  1773.     case bfd_link_hash_weak:
  1774.       sym->section = &bfd_und_section;
  1775.       sym->value = 0;
  1776.       sym->flags |= BSF_WEAK;
  1777.     case bfd_link_hash_defined:
  1778.       sym->section = h->root.u.def.section;
  1779.       sym->value = h->root.u.def.value;
  1780.       break;
  1781.     case bfd_link_hash_common:
  1782.       sym->value = h->root.u.c.size;
  1783.       /* Do not set the section; see _bfd_generic_link_output_symbols.  */
  1784.       BFD_ASSERT (bfd_is_com_section (sym->section));
  1785.       break;
  1786.     case bfd_link_hash_indirect:
  1787.     case bfd_link_hash_warning:
  1788.       /* FIXME: What should we do here?  */
  1789.       break;
  1790.     }
  1791.  
  1792.   sym->flags |= BSF_GLOBAL;
  1793.  
  1794.   if (! generic_add_output_symbol (wginfo->output_bfd, wginfo->psymalloc,
  1795.                    sym))
  1796.     {
  1797.       /* FIXME: No way to return failure.  */
  1798.       abort ();
  1799.     }
  1800.  
  1801.   h->root.written = true;
  1802.  
  1803.   return true;
  1804. }
  1805.  
  1806. /* Allocate a new link_order for a section.  */
  1807.  
  1808. struct bfd_link_order *
  1809. bfd_new_link_order (abfd, section)
  1810.      bfd *abfd;
  1811.      asection *section;
  1812. {
  1813.   struct bfd_link_order *new;
  1814.  
  1815.   new = ((struct bfd_link_order *)
  1816.      bfd_alloc_by_size_t (abfd, sizeof (struct bfd_link_order)));
  1817.  
  1818.   new->type = bfd_undefined_link_order;
  1819.   new->offset = 0;
  1820.   new->size = 0;
  1821.   new->next = (struct bfd_link_order *) NULL;
  1822.  
  1823.   if (section->link_order_tail != (struct bfd_link_order *) NULL)
  1824.     section->link_order_tail->next = new;
  1825.   else
  1826.     section->link_order_head = new;
  1827.   section->link_order_tail = new;
  1828.  
  1829.   return new;
  1830. }
  1831.  
  1832. /* Default link order processing routine.  */
  1833.  
  1834. boolean
  1835. _bfd_default_link_order (abfd, info, sec, link_order)
  1836.      bfd *abfd;
  1837.      struct bfd_link_info *info;
  1838.      asection *sec;
  1839.      struct bfd_link_order *link_order;
  1840. {
  1841.   switch (link_order->type)
  1842.     {
  1843.     case bfd_undefined_link_order:
  1844.     default:
  1845.       abort ();
  1846.     case bfd_indirect_link_order:
  1847.       return default_indirect_link_order (abfd, info, sec, link_order);
  1848.     case bfd_fill_link_order:
  1849.       return default_fill_link_order (abfd, info, sec, link_order);
  1850.     }
  1851. }
  1852.  
  1853. /* Default routine to handle a bfd_fill_link_order.  */
  1854.  
  1855. /*ARGSUSED*/
  1856. static boolean
  1857. default_fill_link_order (abfd, info, sec, link_order)
  1858.      bfd *abfd;
  1859.      struct bfd_link_info *info;
  1860.      asection *sec;
  1861.      struct bfd_link_order *link_order;
  1862. {
  1863.   size_t size;
  1864.   char *space;
  1865.   size_t i;
  1866.   int fill;
  1867.  
  1868.   BFD_ASSERT ((sec->flags & SEC_HAS_CONTENTS) != 0);
  1869.  
  1870.   size = (size_t) link_order->size;
  1871.   space = (char *) alloca (size);
  1872.   fill = link_order->u.fill.value;
  1873.   for (i = 0; i < size; i += 2)
  1874.     space[i] = fill >> 8;
  1875.   for (i = 1; i < size; i += 2)
  1876.     space[i] = fill;
  1877.   return bfd_set_section_contents (abfd, sec, space,
  1878.                    (file_ptr) link_order->offset,
  1879.                    link_order->size);
  1880. }
  1881.  
  1882. /* Default routine to handle a bfd_indirect_link_order.  */
  1883.  
  1884. static boolean
  1885. default_indirect_link_order (output_bfd, info, output_section, link_order)
  1886.      bfd *output_bfd;
  1887.      struct bfd_link_info *info;
  1888.      asection *output_section;
  1889.      struct bfd_link_order *link_order;
  1890. {
  1891.   asection *input_section;
  1892.   bfd *input_bfd;
  1893.   bfd_byte *contents;
  1894.  
  1895.   BFD_ASSERT ((output_section->flags & SEC_HAS_CONTENTS) != 0);
  1896.  
  1897.   if (link_order->size == 0)
  1898.     return true;
  1899.  
  1900.   input_section = link_order->u.indirect.section;
  1901.   input_bfd = input_section->owner;
  1902.  
  1903.   BFD_ASSERT (input_section->output_section == output_section);
  1904.   BFD_ASSERT (input_section->output_offset == link_order->offset);
  1905.   BFD_ASSERT (bfd_section_size (input_bfd, input_section) == link_order->size);
  1906.  
  1907.   if (info->relocateable
  1908.       && input_section->reloc_count > 0
  1909.       && output_section->orelocation == (arelent **) NULL)
  1910.     {
  1911.       /* Space has not been allocated for the output relocations.
  1912.      This can happen when we are called by a specific backend
  1913.      because somebody is attempting to link together different
  1914.      types of object files.  Handling this case correctly is
  1915.      difficult, and sometimes impossible.  */
  1916.       abort ();
  1917.     }
  1918.  
  1919.   /* Get the canonical symbols.  The generic linker will always have
  1920.      retrieved them by this point, but we may be being called by a
  1921.      specific linker when linking different types of object files
  1922.      together.  */
  1923.   if (bfd_get_outsymbols (input_bfd) == (asymbol **) NULL)
  1924.     {
  1925.       size_t symsize;
  1926.  
  1927.       symsize = get_symtab_upper_bound (input_bfd);
  1928.       input_bfd->outsymbols = (asymbol **) bfd_alloc (input_bfd, symsize);
  1929.       input_bfd->symcount = bfd_canonicalize_symtab (input_bfd,
  1930.                              input_bfd->outsymbols);
  1931.     }
  1932.  
  1933.   /* Get and relocate the section contents.  */
  1934.   contents = (bfd_byte *) alloca (bfd_section_size (input_bfd, input_section));
  1935.   contents = (bfd_get_relocated_section_contents
  1936.           (output_bfd, info, link_order, contents, info->relocateable,
  1937.            bfd_get_outsymbols (input_bfd)));
  1938.  
  1939.   /* Output the section contents.  */
  1940.   if (! bfd_set_section_contents (output_bfd, output_section, (PTR) contents,
  1941.                   link_order->offset, link_order->size))
  1942.     return false;
  1943.  
  1944.   return true;
  1945. }
  1946.