Subversion Repositories Kolibri OS

Rev

Rev 5222 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* ECOFF debugging support.
  2.    Copyright (C) 1993-2015 Free Software Foundation, Inc.
  3.    Contributed by Cygnus Support.
  4.    This file was put together by Ian Lance Taylor <ian@cygnus.com>.  A
  5.    good deal of it comes directly from mips-tfile.c, by Michael
  6.    Meissner <meissner@osf.org>.
  7.  
  8.    This file is part of GAS.
  9.  
  10.    GAS is free software; you can redistribute it and/or modify
  11.    it under the terms of the GNU General Public License as published by
  12.    the Free Software Foundation; either version 3, or (at your option)
  13.    any later version.
  14.  
  15.    GAS is distributed in the hope that it will be useful,
  16.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.    GNU General Public License for more details.
  19.  
  20.    You should have received a copy of the GNU General Public License
  21.    along with GAS; see the file COPYING.  If not, write to the Free
  22.    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
  23.    02110-1301, USA.  */
  24.  
  25. #include "as.h"
  26.  
  27. /* This file is compiled conditionally for those targets which use
  28.    ECOFF debugging information (e.g., MIPS ELF, Alpha ECOFF).  */
  29.  
  30. #include "ecoff.h"
  31.  
  32. #ifdef ECOFF_DEBUGGING
  33.  
  34. #include "coff/internal.h"
  35. #include "coff/symconst.h"
  36. #include "aout/stab_gnu.h"
  37. #include "filenames.h"
  38. #include "safe-ctype.h"
  39.  
  40. /* Why isn't this in coff/sym.h?  */
  41. #define ST_RFDESCAPE 0xfff
  42.  
  43. /* This file constructs the information used by the ECOFF debugging
  44.    format.  It just builds a large block of data.
  45.  
  46.    We support both ECOFF style debugging and stabs debugging (the
  47.    stabs symbols are encapsulated in ECOFF symbols).  This should let
  48.    us handle anything the compiler might throw at us.  */
  49.  
  50. /* Here is a brief description of the MIPS ECOFF symbol table, by
  51.    Michael Meissner.  The MIPS symbol table has the following pieces:
  52.  
  53.         Symbolic Header
  54.             |
  55.             +-- Auxiliary Symbols
  56.             |
  57.             +-- Dense number table
  58.             |
  59.             +-- Optimizer Symbols
  60.             |
  61.             +-- External Strings
  62.             |
  63.             +-- External Symbols
  64.             |
  65.             +-- Relative file descriptors
  66.             |
  67.             +-- File table
  68.                     |
  69.                     +-- Procedure table
  70.                     |
  71.                     +-- Line number table
  72.                     |
  73.                     +-- Local Strings
  74.                     |
  75.                     +-- Local Symbols
  76.  
  77.    The symbolic header points to each of the other tables, and also
  78.    contains the number of entries.  It also contains a magic number
  79.    and MIPS compiler version number, such as 2.0.
  80.  
  81.    The auxiliary table is a series of 32 bit integers, that are
  82.    referenced as needed from the local symbol table.  Unlike standard
  83.    COFF, the aux.  information does not follow the symbol that uses
  84.    it, but rather is a separate table.  In theory, this would allow
  85.    the MIPS compilers to collapse duplicate aux. entries, but I've not
  86.    noticed this happening with the 1.31 compiler suite.  The different
  87.    types of aux. entries are:
  88.  
  89.     1)  dnLow: Low bound on array dimension.
  90.  
  91.     2)  dnHigh: High bound on array dimension.
  92.  
  93.     3)  isym: Index to the local symbol which is the start of the
  94.         function for the end of function first aux. entry.
  95.  
  96.     4)  width: Width of structures and bitfields.
  97.  
  98.     5)  count: Count of ranges for variant part.
  99.  
  100.     6)  rndx: A relative index into the symbol table.  The relative
  101.         index field has two parts: rfd which is a pointer into the
  102.         relative file index table or ST_RFDESCAPE which says the next
  103.         aux. entry is the file number, and index: which is the pointer
  104.         into the local symbol within a given file table.  This is for
  105.         things like references to types defined in another file.
  106.  
  107.     7)  Type information: This is like the COFF type bits, except it
  108.         is 32 bits instead of 16; they still have room to add new
  109.         basic types; and they can handle more than 6 levels of array,
  110.         pointer, function, etc.  Each type information field contains
  111.         the following structure members:
  112.  
  113.             a)  fBitfield: a bit that says this is a bitfield, and the
  114.                 size in bits follows as the next aux. entry.
  115.  
  116.             b)  continued: a bit that says the next aux. entry is a
  117.                 continuation of the current type information (in case
  118.                 there are more than 6 levels of array/ptr/function).
  119.  
  120.             c)  bt: an integer containing the base type before adding
  121.                 array, pointer, function, etc. qualifiers.  The
  122.                 current base types that I have documentation for are:
  123.  
  124.                         btNil           -- undefined
  125.                         btAdr           -- address - integer same size as ptr
  126.                         btChar          -- character
  127.                         btUChar         -- unsigned character
  128.                         btShort         -- short
  129.                         btUShort        -- unsigned short
  130.                         btInt           -- int
  131.                         btUInt          -- unsigned int
  132.                         btLong          -- long
  133.                         btULong         -- unsigned long
  134.                         btFloat         -- float (real)
  135.                         btDouble        -- Double (real)
  136.                         btStruct        -- Structure (Record)
  137.                         btUnion         -- Union (variant)
  138.                         btEnum          -- Enumerated
  139.                         btTypedef       -- defined via a typedef isymRef
  140.                         btRange         -- subrange of int
  141.                         btSet           -- pascal sets
  142.                         btComplex       -- fortran complex
  143.                         btDComplex      -- fortran double complex
  144.                         btIndirect      -- forward or unnamed typedef
  145.                         btFixedDec      -- Fixed Decimal
  146.                         btFloatDec      -- Float Decimal
  147.                         btString        -- Varying Length Character String
  148.                         btBit           -- Aligned Bit String
  149.                         btPicture       -- Picture
  150.                         btVoid          -- Void (MIPS cc revision >= 2.00)
  151.  
  152.             d)  tq0 - tq5: type qualifier fields as needed.  The
  153.                 current type qualifier fields I have documentation for
  154.                 are:
  155.  
  156.                         tqNil           -- no more qualifiers
  157.                         tqPtr           -- pointer
  158.                         tqProc          -- procedure
  159.                         tqArray         -- array
  160.                         tqFar           -- 8086 far pointers
  161.                         tqVol           -- volatile
  162.  
  163.    The dense number table is used in the front ends, and disappears by
  164.    the time the .o is created.
  165.  
  166.    With the 1.31 compiler suite, the optimization symbols don't seem
  167.    to be used as far as I can tell.
  168.  
  169.    The linker is the first entity that creates the relative file
  170.    descriptor table, and I believe it is used so that the individual
  171.    file table pointers don't have to be rewritten when the objects are
  172.    merged together into the program file.
  173.  
  174.    Unlike COFF, the basic symbol & string tables are split into
  175.    external and local symbols/strings.  The relocation information
  176.    only goes off of the external symbol table, and the debug
  177.    information only goes off of the internal symbol table.  The
  178.    external symbols can have links to an appropriate file index and
  179.    symbol within the file to give it the appropriate type information.
  180.    Because of this, the external symbols are actually larger than the
  181.    internal symbols (to contain the link information), and contain the
  182.    local symbol structure as a member, though this member is not the
  183.    first member of the external symbol structure (!).  I suspect this
  184.    split is to make strip easier to deal with.
  185.  
  186.    Each file table has offsets for where the line numbers, local
  187.    strings, local symbols, and procedure table starts from within the
  188.    global tables, and the indexs are reset to 0 for each of those
  189.    tables for the file.
  190.  
  191.    The procedure table contains the binary equivalents of the .ent
  192.    (start of the function address), .frame (what register is the
  193.    virtual frame pointer, constant offset from the register to obtain
  194.    the VFP, and what register holds the return address), .mask/.fmask
  195.    (bitmask of saved registers, and where the first register is stored
  196.    relative to the VFP) assembler directives.  It also contains the
  197.    low and high bounds of the line numbers if debugging is turned on.
  198.  
  199.    The line number table is a compressed form of the normal COFF line
  200.    table.  Each line number entry is either 1 or 3 bytes long, and
  201.    contains a signed delta from the previous line, and an unsigned
  202.    count of the number of instructions this statement takes.
  203.  
  204.    The local symbol table contains the following fields:
  205.  
  206.     1)  iss: index to the local string table giving the name of the
  207.         symbol.
  208.  
  209.     2)  value: value of the symbol (address, register number, etc.).
  210.  
  211.     3)  st: symbol type.  The current symbol types are:
  212.  
  213.             stNil         -- Nuthin' special
  214.             stGlobal      -- external symbol
  215.             stStatic      -- static
  216.             stParam       -- procedure argument
  217.             stLocal       -- local variable
  218.             stLabel       -- label
  219.             stProc        -- External Procedure
  220.             stBlock       -- beginning of block
  221.             stEnd         -- end (of anything)
  222.             stMember      -- member (of anything)
  223.             stTypedef     -- type definition
  224.             stFile        -- file name
  225.             stRegReloc    -- register relocation
  226.             stForward     -- forwarding address
  227.             stStaticProc  -- Static procedure
  228.             stConstant    -- const
  229.  
  230.     4)  sc: storage class.  The current storage classes are:
  231.  
  232.             scText        -- text symbol
  233.             scData        -- initialized data symbol
  234.             scBss         -- un-initialized data symbol
  235.             scRegister    -- value of symbol is register number
  236.             scAbs         -- value of symbol is absolute
  237.             scUndefined   -- who knows?
  238.             scCdbLocal    -- variable's value is IN se->va.??
  239.             scBits        -- this is a bit field
  240.             scCdbSystem   -- value is IN debugger's address space
  241.             scRegImage    -- register value saved on stack
  242.             scInfo        -- symbol contains debugger information
  243.             scUserStruct  -- addr in struct user for current process
  244.             scSData       -- load time only small data
  245.             scSBss        -- load time only small common
  246.             scRData       -- load time only read only data
  247.             scVar         -- Var parameter (fortranpascal)
  248.             scCommon      -- common variable
  249.             scSCommon     -- small common
  250.             scVarRegister -- Var parameter in a register
  251.             scVariant     -- Variant record
  252.             scSUndefined  -- small undefined(external) data
  253.             scInit        -- .init section symbol
  254.  
  255.     5)  index: pointer to a local symbol or aux. entry.
  256.  
  257.    For the following program:
  258.  
  259.         #include <stdio.h>
  260.  
  261.         main(){
  262.                 printf("Hello World!\n");
  263.                 return 0;
  264.         }
  265.  
  266.    Mips-tdump produces the following information:
  267.  
  268.    Global file header:
  269.        magic number             0x162
  270.        # sections               2
  271.        timestamp                645311799, Wed Jun 13 17:16:39 1990
  272.        symbolic header offset   284
  273.        symbolic header size     96
  274.        optional header          56
  275.        flags                    0x0
  276.  
  277.    Symbolic header, magic number = 0x7009, vstamp = 1.31:
  278.  
  279.        Info                      Offset      Number       Bytes
  280.        ====                      ======      ======      =====
  281.  
  282.        Line numbers                 380           4           4 [13]
  283.        Dense numbers                  0           0           0
  284.        Procedures Tables            384           1          52
  285.        Local Symbols                436          16         192
  286.        Optimization Symbols           0           0           0
  287.        Auxiliary Symbols            628          39         156
  288.        Local Strings                784          80          80
  289.        External Strings             864         144         144
  290.        File Tables                 1008           2         144
  291.        Relative Files                 0           0           0
  292.        External Symbols            1152          20         320
  293.  
  294.    File #0, "hello2.c"
  295.  
  296.        Name index  = 1          Readin      = No
  297.        Merge       = No         Endian      = LITTLE
  298.        Debug level = G2         Language    = C
  299.        Adr         = 0x00000000
  300.  
  301.        Info                       Start      Number        Size      Offset
  302.        ====                       =====      ======        ====      ======
  303.        Local strings                  0          15          15         784
  304.        Local symbols                  0           6          72         436
  305.        Line numbers                   0          13          13         380
  306.        Optimization symbols           0           0           0           0
  307.        Procedures                     0           1          52         384
  308.        Auxiliary symbols              0          14          56         628
  309.        Relative Files                 0           0           0           0
  310.  
  311.     There are 6 local symbols, starting at 436
  312.  
  313.         Symbol# 0: "hello2.c"
  314.             End+1 symbol  = 6
  315.             String index  = 1
  316.             Storage class = Text        Index  = 6
  317.             Symbol type   = File        Value  = 0
  318.  
  319.         Symbol# 1: "main"
  320.             End+1 symbol  = 5
  321.             Type          = int
  322.             String index  = 10
  323.             Storage class = Text        Index  = 12
  324.             Symbol type   = Proc        Value  = 0
  325.  
  326.         Symbol# 2: ""
  327.             End+1 symbol  = 4
  328.             String index  = 0
  329.             Storage class = Text        Index  = 4
  330.             Symbol type   = Block       Value  = 8
  331.  
  332.         Symbol# 3: ""
  333.             First symbol  = 2
  334.             String index  = 0
  335.             Storage class = Text        Index  = 2
  336.             Symbol type   = End         Value  = 28
  337.  
  338.         Symbol# 4: "main"
  339.             First symbol  = 1
  340.             String index  = 10
  341.             Storage class = Text        Index  = 1
  342.             Symbol type   = End         Value  = 52
  343.  
  344.         Symbol# 5: "hello2.c"
  345.             First symbol  = 0
  346.             String index  = 1
  347.             Storage class = Text        Index  = 0
  348.             Symbol type   = End         Value  = 0
  349.  
  350.     There are 14 auxiliary table entries, starting at 628.
  351.  
  352.         * #0               0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  353.         * #1              24, [  24/      0], [ 6 0:0 0:0:0:0:0:0]
  354.         * #2               8, [   8/      0], [ 2 0:0 0:0:0:0:0:0]
  355.         * #3              16, [  16/      0], [ 4 0:0 0:0:0:0:0:0]
  356.         * #4              24, [  24/      0], [ 6 0:0 0:0:0:0:0:0]
  357.         * #5              32, [  32/      0], [ 8 0:0 0:0:0:0:0:0]
  358.         * #6              40, [  40/      0], [10 0:0 0:0:0:0:0:0]
  359.         * #7              44, [  44/      0], [11 0:0 0:0:0:0:0:0]
  360.         * #8              12, [  12/      0], [ 3 0:0 0:0:0:0:0:0]
  361.         * #9              20, [  20/      0], [ 5 0:0 0:0:0:0:0:0]
  362.         * #10             28, [  28/      0], [ 7 0:0 0:0:0:0:0:0]
  363.         * #11             36, [  36/      0], [ 9 0:0 0:0:0:0:0:0]
  364.           #12              5, [   5/      0], [ 1 1:0 0:0:0:0:0:0]
  365.           #13             24, [  24/      0], [ 6 0:0 0:0:0:0:0:0]
  366.  
  367.     There are 1 procedure descriptor entries, starting at 0.
  368.  
  369.         Procedure descriptor 0:
  370.             Name index   = 10          Name          = "main"
  371.             .mask 0x80000000,-4        .fmask 0x00000000,0
  372.             .frame $29,24,$31
  373.             Opt. start   = -1          Symbols start = 1
  374.             First line # = 3           Last line #   = 6
  375.             Line Offset  = 0           Address       = 0x00000000
  376.  
  377.         There are 4 bytes holding line numbers, starting at 380.
  378.             Line           3,   delta     0,   count  2
  379.             Line           4,   delta     1,   count  3
  380.             Line           5,   delta     1,   count  2
  381.             Line           6,   delta     1,   count  6
  382.  
  383.    File #1, "/usr/include/stdio.h"
  384.  
  385.     Name index  = 1          Readin      = No
  386.     Merge       = Yes        Endian      = LITTLE
  387.     Debug level = G2         Language    = C
  388.     Adr         = 0x00000000
  389.  
  390.     Info                       Start      Number        Size      Offset
  391.     ====                       =====      ======        ====      ======
  392.     Local strings                 15          65          65         799
  393.     Local symbols                  6          10         120         508
  394.     Line numbers                   0           0           0         380
  395.     Optimization symbols           0           0           0           0
  396.     Procedures                     1           0           0         436
  397.     Auxiliary symbols             14          25         100         684
  398.     Relative Files                 0           0           0           0
  399.  
  400.     There are 10 local symbols, starting at 442
  401.  
  402.         Symbol# 0: "/usr/include/stdio.h"
  403.             End+1 symbol  = 10
  404.             String index  = 1
  405.             Storage class = Text        Index  = 10
  406.             Symbol type   = File        Value  = 0
  407.  
  408.         Symbol# 1: "_iobuf"
  409.             End+1 symbol  = 9
  410.             String index  = 22
  411.             Storage class = Info        Index  = 9
  412.             Symbol type   = Block       Value  = 20
  413.  
  414.         Symbol# 2: "_cnt"
  415.             Type          = int
  416.             String index  = 29
  417.             Storage class = Info        Index  = 4
  418.             Symbol type   = Member      Value  = 0
  419.  
  420.         Symbol# 3: "_ptr"
  421.             Type          = ptr to char
  422.             String index  = 34
  423.             Storage class = Info        Index  = 15
  424.             Symbol type   = Member      Value  = 32
  425.  
  426.         Symbol# 4: "_base"
  427.             Type          = ptr to char
  428.             String index  = 39
  429.             Storage class = Info        Index  = 16
  430.             Symbol type   = Member      Value  = 64
  431.  
  432.         Symbol# 5: "_bufsiz"
  433.             Type          = int
  434.             String index  = 45
  435.             Storage class = Info        Index  = 4
  436.             Symbol type   = Member      Value  = 96
  437.  
  438.         Symbol# 6: "_flag"
  439.             Type          = short
  440.             String index  = 53
  441.             Storage class = Info        Index  = 3
  442.             Symbol type   = Member      Value  = 128
  443.  
  444.         Symbol# 7: "_file"
  445.             Type          = char
  446.             String index  = 59
  447.             Storage class = Info        Index  = 2
  448.             Symbol type   = Member      Value  = 144
  449.  
  450.         Symbol# 8: ""
  451.             First symbol  = 1
  452.             String index  = 0
  453.             Storage class = Info        Index  = 1
  454.             Symbol type   = End         Value  = 0
  455.  
  456.         Symbol# 9: "/usr/include/stdio.h"
  457.             First symbol  = 0
  458.             String index  = 1
  459.             Storage class = Text        Index  = 0
  460.             Symbol type   = End         Value  = 0
  461.  
  462.     There are 25 auxiliary table entries, starting at 642.
  463.  
  464.         * #14             -1, [4095/1048575], [63 1:1 f:f:f:f:f:f]
  465.           #15          65544, [   8/     16], [ 2 0:0 1:0:0:0:0:0]
  466.           #16          65544, [   8/     16], [ 2 0:0 1:0:0:0:0:0]
  467.         * #17         196656, [  48/     48], [12 0:0 3:0:0:0:0:0]
  468.         * #18           8191, [4095/      1], [63 1:1 0:0:0:0:f:1]
  469.         * #19              1, [   1/      0], [ 0 1:0 0:0:0:0:0:0]
  470.         * #20          20479, [4095/      4], [63 1:1 0:0:0:0:f:4]
  471.         * #21              1, [   1/      0], [ 0 1:0 0:0:0:0:0:0]
  472.         * #22              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  473.         * #23              2, [   2/      0], [ 0 0:1 0:0:0:0:0:0]
  474.         * #24            160, [ 160/      0], [40 0:0 0:0:0:0:0:0]
  475.         * #25              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  476.         * #26              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  477.         * #27              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  478.         * #28              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  479.         * #29              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  480.         * #30              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  481.         * #31              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  482.         * #32              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  483.         * #33              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  484.         * #34              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  485.         * #35              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  486.         * #36              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  487.         * #37              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  488.         * #38              0, [   0/      0], [ 0 0:0 0:0:0:0:0:0]
  489.  
  490.     There are 0 procedure descriptor entries, starting at 1.
  491.  
  492.    There are 20 external symbols, starting at 1152
  493.  
  494.         Symbol# 0: "_iob"
  495.             Type          = array [3 {160}] of struct _iobuf { ifd = 1, index = 1 }
  496.             String index  = 0           Ifd    = 1
  497.             Storage class = Nil         Index  = 17
  498.             Symbol type   = Global      Value  = 60
  499.  
  500.         Symbol# 1: "fopen"
  501.             String index  = 5           Ifd    = 1
  502.             Storage class = Nil         Index  = 1048575
  503.             Symbol type   = Proc        Value  = 0
  504.  
  505.         Symbol# 2: "fdopen"
  506.             String index  = 11          Ifd    = 1
  507.             Storage class = Nil         Index  = 1048575
  508.             Symbol type   = Proc        Value  = 0
  509.  
  510.         Symbol# 3: "freopen"
  511.             String index  = 18          Ifd    = 1
  512.             Storage class = Nil         Index  = 1048575
  513.             Symbol type   = Proc        Value  = 0
  514.  
  515.         Symbol# 4: "popen"
  516.             String index  = 26          Ifd    = 1
  517.             Storage class = Nil         Index  = 1048575
  518.             Symbol type   = Proc        Value  = 0
  519.  
  520.         Symbol# 5: "tmpfile"
  521.             String index  = 32          Ifd    = 1
  522.             Storage class = Nil         Index  = 1048575
  523.             Symbol type   = Proc        Value  = 0
  524.  
  525.         Symbol# 6: "ftell"
  526.             String index  = 40          Ifd    = 1
  527.             Storage class = Nil         Index  = 1048575
  528.             Symbol type   = Proc        Value  = 0
  529.  
  530.         Symbol# 7: "rewind"
  531.             String index  = 46          Ifd    = 1
  532.             Storage class = Nil         Index  = 1048575
  533.             Symbol type   = Proc        Value  = 0
  534.  
  535.         Symbol# 8: "setbuf"
  536.             String index  = 53          Ifd    = 1
  537.             Storage class = Nil         Index  = 1048575
  538.             Symbol type   = Proc        Value  = 0
  539.  
  540.         Symbol# 9: "setbuffer"
  541.             String index  = 60          Ifd    = 1
  542.             Storage class = Nil         Index  = 1048575
  543.             Symbol type   = Proc        Value  = 0
  544.  
  545.         Symbol# 10: "setlinebuf"
  546.             String index  = 70          Ifd    = 1
  547.             Storage class = Nil         Index  = 1048575
  548.             Symbol type   = Proc        Value  = 0
  549.  
  550.         Symbol# 11: "fgets"
  551.             String index  = 81          Ifd    = 1
  552.             Storage class = Nil         Index  = 1048575
  553.             Symbol type   = Proc        Value  = 0
  554.  
  555.         Symbol# 12: "gets"
  556.             String index  = 87          Ifd    = 1
  557.             Storage class = Nil         Index  = 1048575
  558.             Symbol type   = Proc        Value  = 0
  559.  
  560.         Symbol# 13: "ctermid"
  561.             String index  = 92          Ifd    = 1
  562.             Storage class = Nil         Index  = 1048575
  563.             Symbol type   = Proc        Value  = 0
  564.  
  565.         Symbol# 14: "cuserid"
  566.             String index  = 100         Ifd    = 1
  567.             Storage class = Nil         Index  = 1048575
  568.             Symbol type   = Proc        Value  = 0
  569.  
  570.         Symbol# 15: "tempnam"
  571.             String index  = 108         Ifd    = 1
  572.             Storage class = Nil         Index  = 1048575
  573.             Symbol type   = Proc        Value  = 0
  574.  
  575.         Symbol# 16: "tmpnam"
  576.             String index  = 116         Ifd    = 1
  577.             Storage class = Nil         Index  = 1048575
  578.             Symbol type   = Proc        Value  = 0
  579.  
  580.         Symbol# 17: "sprintf"
  581.             String index  = 123         Ifd    = 1
  582.             Storage class = Nil         Index  = 1048575
  583.             Symbol type   = Proc        Value  = 0
  584.  
  585.         Symbol# 18: "main"
  586.             Type          = int
  587.             String index  = 131         Ifd    = 0
  588.             Storage class = Text        Index  = 1
  589.             Symbol type   = Proc        Value  = 0
  590.  
  591.         Symbol# 19: "printf"
  592.             String index  = 136         Ifd    = 0
  593.             Storage class = Undefined   Index  = 1048575
  594.             Symbol type   = Proc        Value  = 0
  595.  
  596.    The following auxiliary table entries were unused:
  597.  
  598.     #0               0  0x00000000  void
  599.     #2               8  0x00000008  char
  600.     #3              16  0x00000010  short
  601.     #4              24  0x00000018  int
  602.     #5              32  0x00000020  long
  603.     #6              40  0x00000028  float
  604.     #7              44  0x0000002c  double
  605.     #8              12  0x0000000c  unsigned char
  606.     #9              20  0x00000014  unsigned short
  607.     #10             28  0x0000001c  unsigned int
  608.     #11             36  0x00000024  unsigned long
  609.     #14              0  0x00000000  void
  610.     #15             24  0x00000018  int
  611.     #19             32  0x00000020  long
  612.     #20             40  0x00000028  float
  613.     #21             44  0x0000002c  double
  614.     #22             12  0x0000000c  unsigned char
  615.     #23             20  0x00000014  unsigned short
  616.     #24             28  0x0000001c  unsigned int
  617.     #25             36  0x00000024  unsigned long
  618.     #26             48  0x00000030  struct no name { ifd = -1, index = 1048575 }
  619. */
  620. /* Redefinition of of storage classes as an enumeration for better
  621.    debugging.  */
  622.  
  623. typedef enum sc {
  624.   sc_Nil         = scNil,         /* no storage class */
  625.   sc_Text        = scText,        /* text symbol */
  626.   sc_Data        = scData,        /* initialized data symbol */
  627.   sc_Bss         = scBss,         /* un-initialized data symbol */
  628.   sc_Register    = scRegister,    /* value of symbol is register number */
  629.   sc_Abs         = scAbs,         /* value of symbol is absolute */
  630.   sc_Undefined   = scUndefined,   /* who knows? */
  631.   sc_CdbLocal    = scCdbLocal,    /* variable's value is IN se->va.?? */
  632.   sc_Bits        = scBits,        /* this is a bit field */
  633.   sc_CdbSystem   = scCdbSystem,   /* value is IN CDB's address space */
  634.   sc_RegImage    = scRegImage,    /* register value saved on stack */
  635.   sc_Info        = scInfo,        /* symbol contains debugger information */
  636.   sc_UserStruct  = scUserStruct,  /* addr in struct user for current process */
  637.   sc_SData       = scSData,       /* load time only small data */
  638.   sc_SBss        = scSBss,        /* load time only small common */
  639.   sc_RData       = scRData,       /* load time only read only data */
  640.   sc_Var         = scVar,         /* Var parameter (fortran,pascal) */
  641.   sc_Common      = scCommon,      /* common variable */
  642.   sc_SCommon     = scSCommon,     /* small common */
  643.   sc_VarRegister = scVarRegister, /* Var parameter in a register */
  644.   sc_Variant     = scVariant,     /* Variant record */
  645.   sc_SUndefined  = scSUndefined,  /* small undefined(external) data */
  646.   sc_Init        = scInit,        /* .init section symbol */
  647.   sc_Max         = scMax          /* Max storage class+1 */
  648. } sc_t;
  649.  
  650. /* Redefinition of symbol type.  */
  651.  
  652. typedef enum st {
  653.   st_Nil        = stNil,        /* Nuthin' special */
  654.   st_Global     = stGlobal,     /* external symbol */
  655.   st_Static     = stStatic,     /* static */
  656.   st_Param      = stParam,      /* procedure argument */
  657.   st_Local      = stLocal,      /* local variable */
  658.   st_Label      = stLabel,      /* label */
  659.   st_Proc       = stProc,       /*     "      "  Procedure */
  660.   st_Block      = stBlock,      /* beginning of block */
  661.   st_End        = stEnd,        /* end (of anything) */
  662.   st_Member     = stMember,     /* member (of anything  - struct/union/enum */
  663.   st_Typedef    = stTypedef,    /* type definition */
  664.   st_File       = stFile,       /* file name */
  665.   st_RegReloc   = stRegReloc,   /* register relocation */
  666.   st_Forward    = stForward,    /* forwarding address */
  667.   st_StaticProc = stStaticProc, /* load time only static procs */
  668.   st_Constant   = stConstant,   /* const */
  669.   st_Str        = stStr,        /* string */
  670.   st_Number     = stNumber,     /* pure number (ie. 4 NOR 2+2) */
  671.   st_Expr       = stExpr,       /* 2+2 vs. 4 */
  672.   st_Type       = stType,       /* post-coercion SER */
  673.   st_Max        = stMax         /* max type+1 */
  674. } st_t;
  675.  
  676. /* Redefinition of type qualifiers.  */
  677.  
  678. typedef enum tq {
  679.   tq_Nil        = tqNil,        /* bt is what you see */
  680.   tq_Ptr        = tqPtr,        /* pointer */
  681.   tq_Proc       = tqProc,       /* procedure */
  682.   tq_Array      = tqArray,      /* duh */
  683.   tq_Far        = tqFar,        /* longer addressing - 8086/8 land */
  684.   tq_Vol        = tqVol,        /* volatile */
  685.   tq_Max        = tqMax         /* Max type qualifier+1 */
  686. } tq_t;
  687.  
  688. /* Redefinition of basic types.  */
  689.  
  690. typedef enum bt {
  691.   bt_Nil        = btNil,        /* undefined */
  692.   bt_Adr        = btAdr,        /* address - integer same size as pointer */
  693.   bt_Char       = btChar,       /* character */
  694.   bt_UChar      = btUChar,      /* unsigned character */
  695.   bt_Short      = btShort,      /* short */
  696.   bt_UShort     = btUShort,     /* unsigned short */
  697.   bt_Int        = btInt,        /* int */
  698.   bt_UInt       = btUInt,       /* unsigned int */
  699.   bt_Long       = btLong,       /* long */
  700.   bt_ULong      = btULong,      /* unsigned long */
  701.   bt_Float      = btFloat,      /* float (real) */
  702.   bt_Double     = btDouble,     /* Double (real) */
  703.   bt_Struct     = btStruct,     /* Structure (Record) */
  704.   bt_Union      = btUnion,      /* Union (variant) */
  705.   bt_Enum       = btEnum,       /* Enumerated */
  706.   bt_Typedef    = btTypedef,    /* defined via a typedef, isymRef points */
  707.   bt_Range      = btRange,      /* subrange of int */
  708.   bt_Set        = btSet,        /* pascal sets */
  709.   bt_Complex    = btComplex,    /* fortran complex */
  710.   bt_DComplex   = btDComplex,   /* fortran double complex */
  711.   bt_Indirect   = btIndirect,   /* forward or unnamed typedef */
  712.   bt_FixedDec   = btFixedDec,   /* Fixed Decimal */
  713.   bt_FloatDec   = btFloatDec,   /* Float Decimal */
  714.   bt_String     = btString,     /* Varying Length Character String */
  715.   bt_Bit        = btBit,        /* Aligned Bit String */
  716.   bt_Picture    = btPicture,    /* Picture */
  717.   bt_Void       = btVoid,       /* Void */
  718.   bt_Max        = btMax         /* Max basic type+1 */
  719. } bt_t;
  720.  
  721. #define N_TQ itqMax
  722.  
  723. /* States for whether to hash type or not.  */
  724. typedef enum hash_state {
  725.   hash_no       = 0,            /* Don't hash type */
  726.   hash_yes      = 1,            /* OK to hash type, or use previous hash */
  727.   hash_record   = 2             /* OK to record hash, but don't use prev.  */
  728. } hash_state_t;
  729.  
  730. /* Types of different sized allocation requests.  */
  731. enum alloc_type {
  732.   alloc_type_none,              /* dummy value */
  733.   alloc_type_scope,             /* nested scopes linked list */
  734.   alloc_type_vlinks,            /* glue linking pages in varray */
  735.   alloc_type_shash,             /* string hash element */
  736.   alloc_type_thash,             /* type hash element */
  737.   alloc_type_tag,               /* struct/union/tag element */
  738.   alloc_type_forward,           /* element to hold unknown tag */
  739.   alloc_type_thead,             /* head of type hash list */
  740.   alloc_type_varray,            /* general varray allocation */
  741.   alloc_type_lineno,            /* line number list */
  742.   alloc_type_last               /* last+1 element for array bounds */
  743. };
  744.  
  745. /* Types of auxiliary type information.  */
  746. enum aux_type {
  747.   aux_tir,                      /* TIR type information */
  748.   aux_rndx,                     /* relative index into symbol table */
  749.   aux_dnLow,                    /* low dimension */
  750.   aux_dnHigh,                   /* high dimension */
  751.   aux_isym,                     /* symbol table index (end of proc) */
  752.   aux_iss,                      /* index into string space (not used) */
  753.   aux_width,                    /* width for non-default sized struc fields */
  754.   aux_count                     /* count of ranges for variant arm */
  755. };
  756. /* Structures to provide n-number of virtual arrays, each of which can
  757.    grow linearly, and which are written in the object file as
  758.    sequential pages.  On systems with a BSD malloc, the
  759.    MAX_CLUSTER_PAGES should be 1 less than a power of two, since
  760.    malloc adds it's overhead, and rounds up to the next power of 2.
  761.    Pages are linked together via a linked list.
  762.  
  763.    If PAGE_SIZE is > 4096, the string length in the shash_t structure
  764.    can't be represented (assuming there are strings > 4096 bytes).  */
  765.  
  766. /* FIXME: Yes, there can be such strings while emitting C++ class debug
  767.    info.  Templates are the offender here, the test case in question
  768.    having a mangled class name of
  769.  
  770.      t7rb_tree4Z4xkeyZt4pair2ZC4xkeyZt7xsocket1Z4UserZt9select1st2Zt4pair\
  771.      2ZC4xkeyZt7xsocket1Z4UserZ4xkeyZt4less1Z4xkey
  772.  
  773.    Repeat that a couple dozen times while listing the class members and
  774.    you've got strings over 4k.  Hack around this for now by increasing
  775.    the page size.  A proper solution would abandon this structure scheme
  776.    certainly for very large strings, and possibly entirely.  */
  777.  
  778. #ifndef PAGE_SIZE
  779. #define PAGE_SIZE (8*1024)      /* size of varray pages */
  780. #endif
  781.  
  782. #define PAGE_USIZE ((unsigned long) PAGE_SIZE)
  783.  
  784. #ifndef MAX_CLUSTER_PAGES       /* # pages to get from system */
  785. #define MAX_CLUSTER_PAGES 63
  786. #endif
  787.  
  788. /* Linked list connecting separate page allocations.  */
  789. typedef struct vlinks {
  790.   struct vlinks *prev;          /* previous set of pages */
  791.   struct vlinks *next;          /* next set of pages */
  792.   union  page   *datum;         /* start of page */
  793.   unsigned long  start_index;   /* starting index # of page */
  794. } vlinks_t;
  795.  
  796. /* Virtual array header.  */
  797. typedef struct varray {
  798.   vlinks_t      *first;                 /* first page link */
  799.   vlinks_t      *last;                  /* last page link */
  800.   unsigned long  num_allocated;         /* # objects allocated */
  801.   unsigned short object_size;           /* size in bytes of each object */
  802.   unsigned short objects_per_page;      /* # objects that can fit on a page */
  803.   unsigned short objects_last_page;     /* # objects allocated on last page */
  804. } varray_t;
  805.  
  806. #ifndef MALLOC_CHECK
  807. #define OBJECTS_PER_PAGE(type) (PAGE_SIZE / sizeof (type))
  808. #else
  809. #define OBJECTS_PER_PAGE(type) ((sizeof (type) > 1) ? 1 : PAGE_SIZE)
  810. #endif
  811.  
  812. #define INIT_VARRAY(type) {     /* macro to initialize a varray */      \
  813.   (vlinks_t *)0,                /* first */                             \
  814.   (vlinks_t *)0,                /* last */                              \
  815.   0,                            /* num_allocated */                     \
  816.   sizeof (type),                /* object_size */                       \
  817.   OBJECTS_PER_PAGE (type),      /* objects_per_page */                  \
  818.   OBJECTS_PER_PAGE (type),      /* objects_last_page */                 \
  819. }
  820.  
  821. /* Master type for indexes within the symbol table.  */
  822. typedef unsigned long symint_t;
  823.  
  824. /* Linked list support for nested scopes (file, block, structure, etc.).  */
  825. typedef struct scope {
  826.   struct scope  *prev;          /* previous scope level */
  827.   struct scope  *free;          /* free list pointer */
  828.   struct localsym *lsym;        /* pointer to local symbol node */
  829.   st_t           type;          /* type of the node */
  830. } scope_t;
  831.  
  832. /* For a local symbol we store a gas symbol as well as the debugging
  833.    information we generate.  The gas symbol will be NULL if this is
  834.    only a debugging symbol.  */
  835. typedef struct localsym {
  836.   const char *name;             /* symbol name */
  837.   symbolS *as_sym;              /* symbol as seen by gas */
  838.   bfd_vma addend;               /* addend to as_sym value */
  839.   struct efdr *file_ptr;        /* file pointer */
  840.   struct ecoff_proc *proc_ptr;  /* proc pointer */
  841.   struct localsym *begin_ptr;   /* symbol at start of block */
  842.   struct ecoff_aux *index_ptr;  /* index value to be filled in */
  843.   struct forward *forward_ref;  /* forward references to this symbol */
  844.   long sym_index;               /* final symbol index */
  845.   EXTR ecoff_sym;               /* ECOFF debugging symbol */
  846. } localsym_t;
  847.  
  848. /* For aux information we keep the type and the data.  */
  849. typedef struct ecoff_aux {
  850.   enum aux_type type;           /* aux type */
  851.   AUXU data;                    /* aux data */
  852. } aux_t;
  853.  
  854. /* For a procedure we store the gas symbol as well as the PDR
  855.    debugging information.  */
  856. typedef struct ecoff_proc {
  857.   localsym_t *sym;              /* associated symbol */
  858.   PDR pdr;                      /* ECOFF debugging info */
  859. } proc_t;
  860.  
  861. /* Number of proc_t structures allocated.  */
  862. static unsigned long proc_cnt;
  863.  
  864. /* Forward reference list for tags referenced, but not yet defined.  */
  865. typedef struct forward {
  866.   struct forward *next;         /* next forward reference */
  867.   struct forward *free;         /* free list pointer */
  868.   aux_t          *ifd_ptr;      /* pointer to store file index */
  869.   aux_t          *index_ptr;    /* pointer to store symbol index */
  870. } forward_t;
  871.  
  872. /* Linked list support for tags.  The first tag in the list is always
  873.    the current tag for that block.  */
  874. typedef struct tag {
  875.   struct tag     *free;         /* free list pointer */
  876.   struct shash   *hash_ptr;     /* pointer to the hash table head */
  877.   struct tag     *same_name;    /* tag with same name in outer scope */
  878.   struct tag     *same_block;   /* next tag defined in the same block.  */
  879.   struct forward *forward_ref;  /* list of forward references */
  880.   bt_t            basic_type;   /* bt_Struct, bt_Union, or bt_Enum */
  881.   symint_t        ifd;          /* file # tag defined in */
  882.   localsym_t     *sym;          /* file's local symbols */
  883. } tag_t;
  884.  
  885. /* Head of a block's linked list of tags.  */
  886. typedef struct thead {
  887.   struct thead  *prev;          /* previous block */
  888.   struct thead  *free;          /* free list pointer */
  889.   struct tag    *first_tag;     /* first tag in block defined */
  890. } thead_t;
  891.  
  892. /* Union containing pointers to each the small structures which are freed up.  */
  893. typedef union small_free {
  894.   scope_t       *f_scope;       /* scope structure */
  895.   thead_t       *f_thead;       /* tag head structure */
  896.   tag_t         *f_tag;         /* tag element structure */
  897.   forward_t     *f_forward;     /* forward tag reference */
  898. } small_free_t;
  899.  
  900. /* String hash table entry.  */
  901.  
  902. typedef struct shash {
  903.   char          *string;        /* string we are hashing */
  904.   symint_t       indx;          /* index within string table */
  905.   EXTR          *esym_ptr;      /* global symbol pointer */
  906.   localsym_t    *sym_ptr;       /* local symbol pointer */
  907.   localsym_t    *end_ptr;       /* symbol pointer to end block */
  908.   tag_t         *tag_ptr;       /* tag pointer */
  909.   proc_t        *proc_ptr;      /* procedure descriptor pointer */
  910. } shash_t;
  911.  
  912. /* Type hash table support.  The size of the hash table must fit
  913.    within a page with the other extended file descriptor information.
  914.    Because unique types which are hashed are fewer in number than
  915.    strings, we use a smaller hash value.  */
  916.  
  917. #define HASHBITS 30
  918.  
  919. #ifndef THASH_SIZE
  920. #define THASH_SIZE 113
  921. #endif
  922.  
  923. typedef struct thash {
  924.   struct thash  *next;          /* next hash value */
  925.   AUXU           type;          /* type we are hashing */
  926.   symint_t       indx;          /* index within string table */
  927. } thash_t;
  928.  
  929. /* Extended file descriptor that contains all of the support necessary
  930.    to add things to each file separately.  */
  931. typedef struct efdr {
  932.   FDR            fdr;           /* File header to be written out */
  933.   FDR           *orig_fdr;      /* original file header */
  934.   char          *name;          /* filename */
  935.   int            fake;          /* whether this is faked .file */
  936.   symint_t       void_type;     /* aux. pointer to 'void' type */
  937.   symint_t       int_type;      /* aux. pointer to 'int' type */
  938.   scope_t       *cur_scope;     /* current nested scopes */
  939.   symint_t       file_index;    /* current file number */
  940.   int            nested_scopes; /* # nested scopes */
  941.   varray_t       strings;       /* local strings */
  942.   varray_t       symbols;       /* local symbols */
  943.   varray_t       procs;         /* procedures */
  944.   varray_t       aux_syms;      /* auxiliary symbols */
  945.   struct efdr   *next_file;     /* next file descriptor */
  946.                                 /* string/type hash tables */
  947.   struct hash_control *str_hash;        /* string hash table */
  948.   thash_t       *thash_head[THASH_SIZE];
  949. } efdr_t;
  950.  
  951. /* Pre-initialized extended file structure.  */
  952. static const efdr_t init_file = {
  953.   {                     /* FDR structure */
  954.     0,                  /* adr:         memory address of beginning of file */
  955.     0,                  /* rss:         file name (of source, if known) */
  956.     0,                  /* issBase:     file's string space */
  957.     0,                  /* cbSs:        number of bytes in the ss */
  958.     0,                  /* isymBase:    beginning of symbols */
  959.     0,                  /* csym:        count file's of symbols */
  960.     0,                  /* ilineBase:   file's line symbols */
  961.     0,                  /* cline:       count of file's line symbols */
  962.     0,                  /* ioptBase:    file's optimization entries */
  963.     0,                  /* copt:        count of file's optimization entries */
  964.     0,                  /* ipdFirst:    start of procedures for this file */
  965.     0,                  /* cpd:         count of procedures for this file */
  966.     0,                  /* iauxBase:    file's auxiliary entries */
  967.     0,                  /* caux:        count of file's auxiliary entries */
  968.     0,                  /* rfdBase:     index into the file indirect table */
  969.     0,                  /* crfd:        count file indirect entries */
  970.     langC,              /* lang:        language for this file */
  971.     1,                  /* fMerge:      whether this file can be merged */
  972.     0,                  /* fReadin:     true if read in (not just created) */
  973.     TARGET_BYTES_BIG_ENDIAN,  /* fBigendian:    if 1, compiled on big endian machine */
  974.     GLEVEL_2,           /* glevel:      level this file was compiled with */
  975.     0,                  /* reserved:    reserved for future use */
  976.     0,                  /* cbLineOffset: byte offset from header for this file ln's */
  977.     0,                  /* cbLine:      size of lines for this file */
  978.   },
  979.  
  980.   (FDR *)0,             /* orig_fdr:    original file header pointer */
  981.   (char *)0,            /* name:        pointer to filename */
  982.   0,                    /* fake:        whether this is a faked .file */
  983.   0,                    /* void_type:   ptr to aux node for void type */
  984.   0,                    /* int_type:    ptr to aux node for int type */
  985.   (scope_t *)0,         /* cur_scope:   current scope being processed */
  986.   0,                    /* file_index:  current file # */
  987.   0,                    /* nested_scopes: # nested scopes */
  988.   INIT_VARRAY (char),   /* strings:     local string varray */
  989.   INIT_VARRAY (localsym_t),     /* symbols:     local symbols varray */
  990.   INIT_VARRAY (proc_t), /* procs:       procedure varray */
  991.   INIT_VARRAY (aux_t),  /* aux_syms:    auxiliary symbols varray */
  992.  
  993.   (struct efdr *)0,     /* next_file:   next file structure */
  994.  
  995.   (struct hash_control *)0,     /* str_hash:    string hash table */
  996.   { 0 },                /* thash_head:  type hash table */
  997. };
  998.  
  999. static efdr_t *first_file;                      /* first file descriptor */
  1000. static efdr_t **last_file_ptr = &first_file;    /* file descriptor tail */
  1001.  
  1002. /* Line number information is kept in a list until the assembly is
  1003.    finished.  */
  1004. typedef struct lineno_list {
  1005.   struct lineno_list *next;     /* next element in list */
  1006.   efdr_t *file;                 /* file this line is in */
  1007.   proc_t *proc;                 /* procedure this line is in */
  1008.   fragS *frag;                  /* fragment this line number is in */
  1009.   unsigned long paddr;          /* offset within fragment */
  1010.   long lineno;                  /* actual line number */
  1011. } lineno_list_t;
  1012.  
  1013. static lineno_list_t *first_lineno;
  1014. static lineno_list_t *last_lineno;
  1015. static lineno_list_t **last_lineno_ptr = &first_lineno;
  1016.  
  1017. /* Sometimes there will be some .loc statements before a .ent.  We
  1018.    keep them in this list so that we can fill in the procedure pointer
  1019.    after we see the .ent.  */
  1020. static lineno_list_t *noproc_lineno;
  1021.  
  1022. /* Union of various things that are held in pages.  */
  1023. typedef union page {
  1024.   char          byte    [ PAGE_SIZE ];
  1025.   unsigned char ubyte   [ PAGE_SIZE ];
  1026.   efdr_t        file    [ PAGE_SIZE / sizeof (efdr_t)        ];
  1027.   FDR           ofile   [ PAGE_SIZE / sizeof (FDR)           ];
  1028.   proc_t        proc    [ PAGE_SIZE / sizeof (proc_t)        ];
  1029.   localsym_t    sym     [ PAGE_SIZE / sizeof (localsym_t)    ];
  1030.   aux_t         aux     [ PAGE_SIZE / sizeof (aux_t)         ];
  1031.   DNR           dense   [ PAGE_SIZE / sizeof (DNR)           ];
  1032.   scope_t       scope   [ PAGE_SIZE / sizeof (scope_t)       ];
  1033.   vlinks_t      vlinks  [ PAGE_SIZE / sizeof (vlinks_t)      ];
  1034.   shash_t       shash   [ PAGE_SIZE / sizeof (shash_t)       ];
  1035.   thash_t       thash   [ PAGE_SIZE / sizeof (thash_t)       ];
  1036.   tag_t         tag     [ PAGE_SIZE / sizeof (tag_t)         ];
  1037.   forward_t     forward [ PAGE_SIZE / sizeof (forward_t)     ];
  1038.   thead_t       thead   [ PAGE_SIZE / sizeof (thead_t)       ];
  1039.   lineno_list_t lineno  [ PAGE_SIZE / sizeof (lineno_list_t) ];
  1040. } page_type;
  1041.  
  1042. /* Structure holding allocation information for small sized structures.  */
  1043. typedef struct alloc_info {
  1044.   char          *alloc_name;    /* name of this allocation type (must be first) */
  1045.   page_type     *cur_page;      /* current page being allocated from */
  1046.   small_free_t   free_list;     /* current free list if any */
  1047.   int            unallocated;   /* number of elements unallocated on page */
  1048.   int            total_alloc;   /* total number of allocations */
  1049.   int            total_free;    /* total number of frees */
  1050.   int            total_pages;   /* total number of pages allocated */
  1051. } alloc_info_t;
  1052.  
  1053. /* Type information collected together.  */
  1054. typedef struct type_info {
  1055.   bt_t        basic_type;               /* basic type */
  1056.   int         orig_type;                /* original COFF-based type */
  1057.   int         num_tq;                   /* # type qualifiers */
  1058.   int         num_dims;                 /* # dimensions */
  1059.   int         num_sizes;                /* # sizes */
  1060.   int         extra_sizes;              /* # extra sizes not tied with dims */
  1061.   tag_t *     tag_ptr;                  /* tag pointer */
  1062.   int         bitfield;                 /* symbol is a bitfield */
  1063.   tq_t        type_qualifiers[N_TQ];    /* type qualifiers (ptr, func, array)*/
  1064.   symint_t    dimensions     [N_TQ];    /* dimensions for each array */
  1065.   symint_t    sizes          [N_TQ+2];  /* sizes of each array slice + size of
  1066.                                            struct/union/enum + bitfield size */
  1067. } type_info_t;
  1068.  
  1069. /* Pre-initialized type_info struct.  */
  1070. static const type_info_t type_info_init = {
  1071.   bt_Nil,                               /* basic type */
  1072.   T_NULL,                               /* original COFF-based type */
  1073.   0,                                    /* # type qualifiers */
  1074.   0,                                    /* # dimensions */
  1075.   0,                                    /* # sizes */
  1076.   0,                                    /* sizes not tied with dims */
  1077.   NULL,                                 /* ptr to tag */
  1078.   0,                                    /* bitfield */
  1079.   {                                     /* type qualifiers */
  1080.     tq_Nil,
  1081.     tq_Nil,
  1082.     tq_Nil,
  1083.     tq_Nil,
  1084.     tq_Nil,
  1085.     tq_Nil,
  1086.   },
  1087.   {                                     /* dimensions */
  1088.     0,
  1089.     0,
  1090.     0,
  1091.     0,
  1092.     0,
  1093.     0
  1094.   },
  1095.   {                                     /* sizes */
  1096.     0,
  1097.     0,
  1098.     0,
  1099.     0,
  1100.     0,
  1101.     0,
  1102.     0,
  1103.     0,
  1104.   },
  1105. };
  1106.  
  1107. /* Global hash table for the tags table and global table for file
  1108.    descriptors.  */
  1109.  
  1110. static varray_t file_desc = INIT_VARRAY (efdr_t);
  1111.  
  1112. static struct hash_control *tag_hash;
  1113.  
  1114. /* Static types for int and void.  Also, remember the last function's
  1115.    type (which is set up when we encounter the declaration for the
  1116.    function, and used when the end block for the function is emitted.  */
  1117.  
  1118. static type_info_t int_type_info;
  1119. static type_info_t void_type_info;
  1120. static type_info_t last_func_type_info;
  1121. static symbolS *last_func_sym_value;
  1122.  
  1123. /* Convert COFF basic type to ECOFF basic type.  The T_NULL type
  1124.    really should use bt_Void, but this causes the current ecoff GDB to
  1125.    issue unsupported type messages, and the Ultrix 4.00 dbx (aka MIPS
  1126.    2.0) doesn't understand it, even though the compiler generates it.
  1127.    Maybe this will be fixed in 2.10 or 2.20 of the MIPS compiler
  1128.    suite, but for now go with what works.
  1129.  
  1130.    It would make sense for the .type and .scl directives to use the
  1131.    ECOFF numbers directly, rather than using the COFF numbers and
  1132.    mapping them.  Unfortunately, this is historically what mips-tfile
  1133.    expects, and changing gcc now would be a considerable pain (the
  1134.    native compiler generates debugging information internally, rather
  1135.    than via the assembler, so it will never use .type or .scl).  */
  1136.  
  1137. static const bt_t map_coff_types[] = {
  1138.   bt_Nil,                       /* T_NULL */
  1139.   bt_Nil,                       /* T_ARG */
  1140.   bt_Char,                      /* T_CHAR */
  1141.   bt_Short,                     /* T_SHORT */
  1142.   bt_Int,                       /* T_INT */
  1143.   bt_Long,                      /* T_LONG */
  1144.   bt_Float,                     /* T_FLOAT */
  1145.   bt_Double,                    /* T_DOUBLE */
  1146.   bt_Struct,                    /* T_STRUCT */
  1147.   bt_Union,                     /* T_UNION */
  1148.   bt_Enum,                      /* T_ENUM */
  1149.   bt_Enum,                      /* T_MOE */
  1150.   bt_UChar,                     /* T_UCHAR */
  1151.   bt_UShort,                    /* T_USHORT */
  1152.   bt_UInt,                      /* T_UINT */
  1153.   bt_ULong                      /* T_ULONG */
  1154. };
  1155.  
  1156. /* Convert COFF storage class to ECOFF storage class.  */
  1157. static const sc_t map_coff_storage[] = {
  1158.   sc_Nil,                       /*   0: C_NULL */
  1159.   sc_Abs,                       /*   1: C_AUTO    auto var */
  1160.   sc_Undefined,                 /*   2: C_EXT     external */
  1161.   sc_Data,                      /*   3: C_STAT    static */
  1162.   sc_Register,                  /*   4: C_REG     register */
  1163.   sc_Undefined,                 /*   5: C_EXTDEF  ??? */
  1164.   sc_Text,                      /*   6: C_LABEL   label */
  1165.   sc_Text,                      /*   7: C_ULABEL  user label */
  1166.   sc_Info,                      /*   8: C_MOS     member of struct */
  1167.   sc_Abs,                       /*   9: C_ARG     argument */
  1168.   sc_Info,                      /*  10: C_STRTAG  struct tag */
  1169.   sc_Info,                      /*  11: C_MOU     member of union */
  1170.   sc_Info,                      /*  12: C_UNTAG   union tag */
  1171.   sc_Info,                      /*  13: C_TPDEF   typedef */
  1172.   sc_Data,                      /*  14: C_USTATIC ??? */
  1173.   sc_Info,                      /*  15: C_ENTAG   enum tag */
  1174.   sc_Info,                      /*  16: C_MOE     member of enum */
  1175.   sc_Register,                  /*  17: C_REGPARM register parameter */
  1176.   sc_Bits,                      /*  18; C_FIELD   bitfield */
  1177.   sc_Nil,                       /*  19 */
  1178.   sc_Nil,                       /*  20 */
  1179.   sc_Nil,                       /*  21 */
  1180.   sc_Nil,                       /*  22 */
  1181.   sc_Nil,                       /*  23 */
  1182.   sc_Nil,                       /*  24 */
  1183.   sc_Nil,                       /*  25 */
  1184.   sc_Nil,                       /*  26 */
  1185.   sc_Nil,                       /*  27 */
  1186.   sc_Nil,                       /*  28 */
  1187.   sc_Nil,                       /*  29 */
  1188.   sc_Nil,                       /*  30 */
  1189.   sc_Nil,                       /*  31 */
  1190.   sc_Nil,                       /*  32 */
  1191.   sc_Nil,                       /*  33 */
  1192.   sc_Nil,                       /*  34 */
  1193.   sc_Nil,                       /*  35 */
  1194.   sc_Nil,                       /*  36 */
  1195.   sc_Nil,                       /*  37 */
  1196.   sc_Nil,                       /*  38 */
  1197.   sc_Nil,                       /*  39 */
  1198.   sc_Nil,                       /*  40 */
  1199.   sc_Nil,                       /*  41 */
  1200.   sc_Nil,                       /*  42 */
  1201.   sc_Nil,                       /*  43 */
  1202.   sc_Nil,                       /*  44 */
  1203.   sc_Nil,                       /*  45 */
  1204.   sc_Nil,                       /*  46 */
  1205.   sc_Nil,                       /*  47 */
  1206.   sc_Nil,                       /*  48 */
  1207.   sc_Nil,                       /*  49 */
  1208.   sc_Nil,                       /*  50 */
  1209.   sc_Nil,                       /*  51 */
  1210.   sc_Nil,                       /*  52 */
  1211.   sc_Nil,                       /*  53 */
  1212.   sc_Nil,                       /*  54 */
  1213.   sc_Nil,                       /*  55 */
  1214.   sc_Nil,                       /*  56 */
  1215.   sc_Nil,                       /*  57 */
  1216.   sc_Nil,                       /*  58 */
  1217.   sc_Nil,                       /*  59 */
  1218.   sc_Nil,                       /*  60 */
  1219.   sc_Nil,                       /*  61 */
  1220.   sc_Nil,                       /*  62 */
  1221.   sc_Nil,                       /*  63 */
  1222.   sc_Nil,                       /*  64 */
  1223.   sc_Nil,                       /*  65 */
  1224.   sc_Nil,                       /*  66 */
  1225.   sc_Nil,                       /*  67 */
  1226.   sc_Nil,                       /*  68 */
  1227.   sc_Nil,                       /*  69 */
  1228.   sc_Nil,                       /*  70 */
  1229.   sc_Nil,                       /*  71 */
  1230.   sc_Nil,                       /*  72 */
  1231.   sc_Nil,                       /*  73 */
  1232.   sc_Nil,                       /*  74 */
  1233.   sc_Nil,                       /*  75 */
  1234.   sc_Nil,                       /*  76 */
  1235.   sc_Nil,                       /*  77 */
  1236.   sc_Nil,                       /*  78 */
  1237.   sc_Nil,                       /*  79 */
  1238.   sc_Nil,                       /*  80 */
  1239.   sc_Nil,                       /*  81 */
  1240.   sc_Nil,                       /*  82 */
  1241.   sc_Nil,                       /*  83 */
  1242.   sc_Nil,                       /*  84 */
  1243.   sc_Nil,                       /*  85 */
  1244.   sc_Nil,                       /*  86 */
  1245.   sc_Nil,                       /*  87 */
  1246.   sc_Nil,                       /*  88 */
  1247.   sc_Nil,                       /*  89 */
  1248.   sc_Nil,                       /*  90 */
  1249.   sc_Nil,                       /*  91 */
  1250.   sc_Nil,                       /*  92 */
  1251.   sc_Nil,                       /*  93 */
  1252.   sc_Nil,                       /*  94 */
  1253.   sc_Nil,                       /*  95 */
  1254.   sc_Nil,                       /*  96 */
  1255.   sc_Nil,                       /*  97 */
  1256.   sc_Nil,                       /*  98 */
  1257.   sc_Nil,                       /*  99 */
  1258.   sc_Text,                      /* 100: C_BLOCK  block start/end */
  1259.   sc_Text,                      /* 101: C_FCN    function start/end */
  1260.   sc_Info,                      /* 102: C_EOS    end of struct/union/enum */
  1261.   sc_Nil,                       /* 103: C_FILE   file start */
  1262.   sc_Nil,                       /* 104: C_LINE   line number */
  1263.   sc_Nil,                       /* 105: C_ALIAS  combined type info */
  1264.   sc_Nil,                       /* 106: C_HIDDEN ??? */
  1265. };
  1266.  
  1267. /* Convert COFF storage class to ECOFF symbol type.  */
  1268. static const st_t map_coff_sym_type[] = {
  1269.   st_Nil,                       /*   0: C_NULL */
  1270.   st_Local,                     /*   1: C_AUTO    auto var */
  1271.   st_Global,                    /*   2: C_EXT     external */
  1272.   st_Static,                    /*   3: C_STAT    static */
  1273.   st_Local,                     /*   4: C_REG     register */
  1274.   st_Global,                    /*   5: C_EXTDEF  ??? */
  1275.   st_Label,                     /*   6: C_LABEL   label */
  1276.   st_Label,                     /*   7: C_ULABEL  user label */
  1277.   st_Member,                    /*   8: C_MOS     member of struct */
  1278.   st_Param,                     /*   9: C_ARG     argument */
  1279.   st_Block,                     /*  10: C_STRTAG  struct tag */
  1280.   st_Member,                    /*  11: C_MOU     member of union */
  1281.   st_Block,                     /*  12: C_UNTAG   union tag */
  1282.   st_Typedef,                   /*  13: C_TPDEF   typedef */
  1283.   st_Static,                    /*  14: C_USTATIC ??? */
  1284.   st_Block,                     /*  15: C_ENTAG   enum tag */
  1285.   st_Member,                    /*  16: C_MOE     member of enum */
  1286.   st_Param,                     /*  17: C_REGPARM register parameter */
  1287.   st_Member,                    /*  18; C_FIELD   bitfield */
  1288.   st_Nil,                       /*  19 */
  1289.   st_Nil,                       /*  20 */
  1290.   st_Nil,                       /*  21 */
  1291.   st_Nil,                       /*  22 */
  1292.   st_Nil,                       /*  23 */
  1293.   st_Nil,                       /*  24 */
  1294.   st_Nil,                       /*  25 */
  1295.   st_Nil,                       /*  26 */
  1296.   st_Nil,                       /*  27 */
  1297.   st_Nil,                       /*  28 */
  1298.   st_Nil,                       /*  29 */
  1299.   st_Nil,                       /*  30 */
  1300.   st_Nil,                       /*  31 */
  1301.   st_Nil,                       /*  32 */
  1302.   st_Nil,                       /*  33 */
  1303.   st_Nil,                       /*  34 */
  1304.   st_Nil,                       /*  35 */
  1305.   st_Nil,                       /*  36 */
  1306.   st_Nil,                       /*  37 */
  1307.   st_Nil,                       /*  38 */
  1308.   st_Nil,                       /*  39 */
  1309.   st_Nil,                       /*  40 */
  1310.   st_Nil,                       /*  41 */
  1311.   st_Nil,                       /*  42 */
  1312.   st_Nil,                       /*  43 */
  1313.   st_Nil,                       /*  44 */
  1314.   st_Nil,                       /*  45 */
  1315.   st_Nil,                       /*  46 */
  1316.   st_Nil,                       /*  47 */
  1317.   st_Nil,                       /*  48 */
  1318.   st_Nil,                       /*  49 */
  1319.   st_Nil,                       /*  50 */
  1320.   st_Nil,                       /*  51 */
  1321.   st_Nil,                       /*  52 */
  1322.   st_Nil,                       /*  53 */
  1323.   st_Nil,                       /*  54 */
  1324.   st_Nil,                       /*  55 */
  1325.   st_Nil,                       /*  56 */
  1326.   st_Nil,                       /*  57 */
  1327.   st_Nil,                       /*  58 */
  1328.   st_Nil,                       /*  59 */
  1329.   st_Nil,                       /*  60 */
  1330.   st_Nil,                       /*  61 */
  1331.   st_Nil,                       /*  62 */
  1332.   st_Nil,                       /*  63 */
  1333.   st_Nil,                       /*  64 */
  1334.   st_Nil,                       /*  65 */
  1335.   st_Nil,                       /*  66 */
  1336.   st_Nil,                       /*  67 */
  1337.   st_Nil,                       /*  68 */
  1338.   st_Nil,                       /*  69 */
  1339.   st_Nil,                       /*  70 */
  1340.   st_Nil,                       /*  71 */
  1341.   st_Nil,                       /*  72 */
  1342.   st_Nil,                       /*  73 */
  1343.   st_Nil,                       /*  74 */
  1344.   st_Nil,                       /*  75 */
  1345.   st_Nil,                       /*  76 */
  1346.   st_Nil,                       /*  77 */
  1347.   st_Nil,                       /*  78 */
  1348.   st_Nil,                       /*  79 */
  1349.   st_Nil,                       /*  80 */
  1350.   st_Nil,                       /*  81 */
  1351.   st_Nil,                       /*  82 */
  1352.   st_Nil,                       /*  83 */
  1353.   st_Nil,                       /*  84 */
  1354.   st_Nil,                       /*  85 */
  1355.   st_Nil,                       /*  86 */
  1356.   st_Nil,                       /*  87 */
  1357.   st_Nil,                       /*  88 */
  1358.   st_Nil,                       /*  89 */
  1359.   st_Nil,                       /*  90 */
  1360.   st_Nil,                       /*  91 */
  1361.   st_Nil,                       /*  92 */
  1362.   st_Nil,                       /*  93 */
  1363.   st_Nil,                       /*  94 */
  1364.   st_Nil,                       /*  95 */
  1365.   st_Nil,                       /*  96 */
  1366.   st_Nil,                       /*  97 */
  1367.   st_Nil,                       /*  98 */
  1368.   st_Nil,                       /*  99 */
  1369.   st_Block,                     /* 100: C_BLOCK  block start/end */
  1370.   st_Proc,                      /* 101: C_FCN    function start/end */
  1371.   st_End,                       /* 102: C_EOS    end of struct/union/enum */
  1372.   st_File,                      /* 103: C_FILE   file start */
  1373.   st_Nil,                       /* 104: C_LINE   line number */
  1374.   st_Nil,                       /* 105: C_ALIAS  combined type info */
  1375.   st_Nil,                       /* 106: C_HIDDEN ??? */
  1376. };
  1377.  
  1378. /* Keep track of different sized allocation requests.  */
  1379. static alloc_info_t alloc_counts[(int) alloc_type_last];
  1380. /* Record whether we have seen any debugging information.  */
  1381. int ecoff_debugging_seen = 0;
  1382.  
  1383. /* Various statics.  */
  1384. static efdr_t  *cur_file_ptr    = (efdr_t *) 0; /* current file desc. header */
  1385. static proc_t  *cur_proc_ptr    = (proc_t *) 0; /* current procedure header */
  1386. static proc_t  *first_proc_ptr  = (proc_t *) 0; /* first procedure header */
  1387. static thead_t *top_tag_head    = (thead_t *) 0; /* top level tag head */
  1388. static thead_t *cur_tag_head    = (thead_t *) 0; /* current tag head */
  1389. #ifdef ECOFF_DEBUG
  1390. static int      debug           = 0;            /* trace functions */
  1391. #endif
  1392. static int      stabs_seen      = 0;            /* != 0 if stabs have been seen */
  1393.  
  1394. static int current_file_idx;
  1395. static const char *current_stabs_filename;
  1396.  
  1397. /* Pseudo symbol to use when putting stabs into the symbol table.  */
  1398. #ifndef STABS_SYMBOL
  1399. #define STABS_SYMBOL "@stabs"
  1400. #endif
  1401.  
  1402. static char stabs_symbol[] = STABS_SYMBOL;
  1403. /* Prototypes for functions defined in this file.  */
  1404.  
  1405. static void add_varray_page (varray_t *vp);
  1406. static symint_t add_string (varray_t *vp,
  1407.                             struct hash_control *hash_tbl,
  1408.                             const char *str,
  1409.                             shash_t **ret_hash);
  1410. static localsym_t *add_ecoff_symbol (const char *str, st_t type,
  1411.                                      sc_t storage, symbolS *sym,
  1412.                                      bfd_vma addend, symint_t value,
  1413.                                      symint_t indx);
  1414. static symint_t add_aux_sym_symint (symint_t aux_word);
  1415. static symint_t add_aux_sym_rndx (int file_index, symint_t sym_index);
  1416. static symint_t add_aux_sym_tir (type_info_t *t,
  1417.                                  hash_state_t state,
  1418.                                  thash_t **hash_tbl);
  1419. static tag_t *get_tag (const char *tag, localsym_t *sym, bt_t basic_type);
  1420. static void add_unknown_tag (tag_t *ptag);
  1421. static void add_procedure (char *func);
  1422. static void add_file (const char *file_name, int indx, int fake);
  1423. #ifdef ECOFF_DEBUG
  1424. static char *sc_to_string (sc_t storage_class);
  1425. static char *st_to_string (st_t symbol_type);
  1426. #endif
  1427. static void mark_stabs (int);
  1428. static char *ecoff_add_bytes (char **buf, char **bufend,
  1429.                               char *bufptr, unsigned long need);
  1430. static unsigned long ecoff_padding_adjust
  1431.   (const struct ecoff_debug_swap *backend, char **buf, char **bufend,
  1432.    unsigned long offset, char **bufptrptr);
  1433. static unsigned long ecoff_build_lineno
  1434.   (const struct ecoff_debug_swap *backend, char **buf, char **bufend,
  1435.    unsigned long offset, long *linecntptr);
  1436. static unsigned long ecoff_build_symbols
  1437.   (const struct ecoff_debug_swap *backend, char **buf, char **bufend,
  1438.    unsigned long offset);
  1439. static unsigned long ecoff_build_procs
  1440.   (const struct ecoff_debug_swap *backend, char **buf, char **bufend,
  1441.    unsigned long offset);
  1442. static unsigned long ecoff_build_aux
  1443.   (const struct ecoff_debug_swap *backend, char **buf, char **bufend,
  1444.    unsigned long offset);
  1445. static unsigned long ecoff_build_strings (char **buf, char **bufend,
  1446.                                           unsigned long offset,
  1447.                                           varray_t *vp);
  1448. static unsigned long ecoff_build_ss
  1449.   (const struct ecoff_debug_swap *backend, char **buf, char **bufend,
  1450.    unsigned long offset);
  1451. static unsigned long ecoff_build_fdr
  1452.   (const struct ecoff_debug_swap *backend, char **buf, char **bufend,
  1453.    unsigned long offset);
  1454. static void ecoff_setup_ext (void);
  1455. static page_type *allocate_cluster (unsigned long npages);
  1456. static page_type *allocate_page (void);
  1457. static scope_t *allocate_scope (void);
  1458. static void free_scope (scope_t *ptr);
  1459. static vlinks_t *allocate_vlinks (void);
  1460. static shash_t *allocate_shash (void);
  1461. static thash_t *allocate_thash (void);
  1462. static tag_t *allocate_tag (void);
  1463. static void free_tag (tag_t *ptr);
  1464. static forward_t *allocate_forward (void);
  1465. static thead_t *allocate_thead (void);
  1466. static void free_thead (thead_t *ptr);
  1467. static lineno_list_t *allocate_lineno_list (void);
  1468. /* This function should be called when the assembler starts up.  */
  1469.  
  1470. void
  1471. ecoff_read_begin_hook (void)
  1472. {
  1473.   tag_hash = hash_new ();
  1474.   top_tag_head = allocate_thead ();
  1475.   top_tag_head->first_tag = (tag_t *) NULL;
  1476.   top_tag_head->free = (thead_t *) NULL;
  1477.   top_tag_head->prev = cur_tag_head;
  1478.   cur_tag_head = top_tag_head;
  1479. }
  1480.  
  1481. /* This function should be called when a symbol is created.  */
  1482.  
  1483. void
  1484. ecoff_symbol_new_hook (symbolS *symbolP)
  1485. {
  1486.   OBJ_SYMFIELD_TYPE *obj;
  1487.  
  1488.   /* Make sure that we have a file pointer, but only if we have seen a
  1489.      file.  If we haven't seen a file, then this is a probably special
  1490.      symbol created by md_begin which may required special handling at
  1491.      some point.  Creating a dummy file with a dummy name is certainly
  1492.      wrong.  */
  1493.   if (cur_file_ptr == (efdr_t *) NULL
  1494.       && seen_at_least_1_file ())
  1495.     add_file ((const char *) NULL, 0, 1);
  1496.   obj = symbol_get_obj (symbolP);
  1497.   obj->ecoff_file = cur_file_ptr;
  1498.   obj->ecoff_symbol = NULL;
  1499.   obj->ecoff_extern_size = 0;
  1500. }
  1501.  
  1502. void
  1503. ecoff_symbol_clone_hook (symbolS *newsymP, symbolS *orgsymP)
  1504. {
  1505.   OBJ_SYMFIELD_TYPE *n, *o;
  1506.  
  1507.   n = symbol_get_obj (newsymP);
  1508.   o = symbol_get_obj (orgsymP);
  1509.   memcpy (n, o, sizeof *n);
  1510. }
  1511. /* Add a page to a varray object.  */
  1512.  
  1513. static void
  1514. add_varray_page (varray_t *vp /* varray to add page to */)
  1515. {
  1516.   vlinks_t *new_links = allocate_vlinks ();
  1517.  
  1518. #ifdef MALLOC_CHECK
  1519.   if (vp->object_size > 1)
  1520.     new_links->datum = (page_type *) xcalloc (1, vp->object_size);
  1521.   else
  1522. #endif
  1523.     new_links->datum = allocate_page ();
  1524.  
  1525.   alloc_counts[(int) alloc_type_varray].total_alloc++;
  1526.   alloc_counts[(int) alloc_type_varray].total_pages++;
  1527.  
  1528.   new_links->start_index = vp->num_allocated;
  1529.   vp->objects_last_page = 0;
  1530.  
  1531.   if (vp->first == (vlinks_t *) NULL)           /* first allocation? */
  1532.     vp->first = vp->last = new_links;
  1533.   else
  1534.     {                                           /* 2nd or greater allocation */
  1535.       new_links->prev = vp->last;
  1536.       vp->last->next = new_links;
  1537.       vp->last = new_links;
  1538.     }
  1539. }
  1540. /* Add a string (and null pad) to one of the string tables.  */
  1541.  
  1542. static symint_t
  1543. add_string (varray_t *vp,                       /* string obstack */
  1544.             struct hash_control *hash_tbl,      /* ptr to hash table */
  1545.             const char *str,                    /* string */
  1546.             shash_t **ret_hash                  /* return hash pointer */)
  1547. {
  1548.   unsigned long len = strlen (str);
  1549.   shash_t *hash_ptr;
  1550.  
  1551.   if (len >= PAGE_USIZE)
  1552.     as_fatal (_("string too big (%lu bytes)"), len);
  1553.  
  1554.   hash_ptr = (shash_t *) hash_find (hash_tbl, str);
  1555.   if (hash_ptr == (shash_t *) NULL)
  1556.     {
  1557.       const char *err;
  1558.  
  1559.       if (vp->objects_last_page + len >= PAGE_USIZE)
  1560.         {
  1561.           vp->num_allocated =
  1562.             ((vp->num_allocated + PAGE_USIZE - 1) / PAGE_USIZE) * PAGE_USIZE;
  1563.           add_varray_page (vp);
  1564.         }
  1565.  
  1566.       hash_ptr = allocate_shash ();
  1567.       hash_ptr->indx = vp->num_allocated;
  1568.  
  1569.       hash_ptr->string = &vp->last->datum->byte[vp->objects_last_page];
  1570.  
  1571.       vp->objects_last_page += len + 1;
  1572.       vp->num_allocated += len + 1;
  1573.  
  1574.       strcpy (hash_ptr->string, str);
  1575.  
  1576.       err = hash_insert (hash_tbl, str, (char *) hash_ptr);
  1577.       if (err)
  1578.         as_fatal (_("inserting \"%s\" into string hash table: %s"),
  1579.                   str, err);
  1580.     }
  1581.  
  1582.   if (ret_hash != (shash_t **) NULL)
  1583.     *ret_hash = hash_ptr;
  1584.  
  1585.   return hash_ptr->indx;
  1586. }
  1587. /* Add debugging information for a symbol.  */
  1588.  
  1589. static localsym_t *
  1590. add_ecoff_symbol (const char *str,      /* symbol name */
  1591.                   st_t type,            /* symbol type */
  1592.                   sc_t storage,         /* storage class */
  1593.                   symbolS *sym_value,   /* associated symbol.  */
  1594.                   bfd_vma addend,       /* addend to sym_value.  */
  1595.                   symint_t value,       /* value of symbol */
  1596.                   symint_t indx         /* index to local/aux. syms */)
  1597. {
  1598.   localsym_t *psym;
  1599.   scope_t *pscope;
  1600.   thead_t *ptag_head;
  1601.   tag_t *ptag;
  1602.   tag_t *ptag_next;
  1603.   varray_t *vp;
  1604.   int scope_delta = 0;
  1605.   shash_t *hash_ptr = (shash_t *) NULL;
  1606.  
  1607.   if (cur_file_ptr == (efdr_t *) NULL)
  1608.     as_fatal (_("no current file pointer"));
  1609.  
  1610.   vp = &cur_file_ptr->symbols;
  1611.  
  1612.   if (vp->objects_last_page == vp->objects_per_page)
  1613.     add_varray_page (vp);
  1614.  
  1615.   psym = &vp->last->datum->sym[vp->objects_last_page++];
  1616.  
  1617.   if (str == (const char *) NULL && sym_value != (symbolS *) NULL)
  1618.     psym->name = S_GET_NAME (sym_value);
  1619.   else
  1620.     psym->name = str;
  1621.   psym->as_sym = sym_value;
  1622.   if (sym_value != (symbolS *) NULL)
  1623.     symbol_get_obj (sym_value)->ecoff_symbol = psym;
  1624.   psym->addend = addend;
  1625.   psym->file_ptr = cur_file_ptr;
  1626.   psym->proc_ptr = cur_proc_ptr;
  1627.   psym->begin_ptr = (localsym_t *) NULL;
  1628.   psym->index_ptr = (aux_t *) NULL;
  1629.   psym->forward_ref = (forward_t *) NULL;
  1630.   psym->sym_index = -1;
  1631.   memset (&psym->ecoff_sym, 0, sizeof (EXTR));
  1632.   psym->ecoff_sym.asym.value = value;
  1633.   psym->ecoff_sym.asym.st = (unsigned) type;
  1634.   psym->ecoff_sym.asym.sc = (unsigned) storage;
  1635.   psym->ecoff_sym.asym.index = indx;
  1636.  
  1637.   /* If there is an associated symbol, we wait until the end of the
  1638.      assembly before deciding where to put the name (it may be just an
  1639.      external symbol).  Otherwise, this is just a debugging symbol and
  1640.      the name should go with the current file.  */
  1641.   if (sym_value == (symbolS *) NULL)
  1642.     psym->ecoff_sym.asym.iss = ((str == (const char *) NULL)
  1643.                                 ? 0
  1644.                                 : add_string (&cur_file_ptr->strings,
  1645.                                               cur_file_ptr->str_hash,
  1646.                                               str,
  1647.                                               &hash_ptr));
  1648.  
  1649.   ++vp->num_allocated;
  1650.  
  1651.   if (ECOFF_IS_STAB (&psym->ecoff_sym.asym))
  1652.     return psym;
  1653.  
  1654.   /* Save the symbol within the hash table if this is a static
  1655.      item, and it has a name.  */
  1656.   if (hash_ptr != (shash_t *) NULL
  1657.       && (type == st_Global || type == st_Static || type == st_Label
  1658.           || type == st_Proc || type == st_StaticProc))
  1659.     hash_ptr->sym_ptr = psym;
  1660.  
  1661.   /* push or pop a scope if appropriate.  */
  1662.   switch (type)
  1663.     {
  1664.     default:
  1665.       break;
  1666.  
  1667.     case st_File:                       /* beginning of file */
  1668.     case st_Proc:                       /* procedure */
  1669.     case st_StaticProc:                 /* static procedure */
  1670.     case st_Block:                      /* begin scope */
  1671.       pscope = allocate_scope ();
  1672.       pscope->prev = cur_file_ptr->cur_scope;
  1673.       pscope->lsym = psym;
  1674.       pscope->type = type;
  1675.       cur_file_ptr->cur_scope = pscope;
  1676.  
  1677.       if (type != st_File)
  1678.         scope_delta = 1;
  1679.  
  1680.       /* For every block type except file, struct, union, or
  1681.          enumeration blocks, push a level on the tag stack.  We omit
  1682.          file types, so that tags can span file boundaries.  */
  1683.       if (type != st_File && storage != sc_Info)
  1684.         {
  1685.           ptag_head = allocate_thead ();
  1686.           ptag_head->first_tag = 0;
  1687.           ptag_head->prev = cur_tag_head;
  1688.           cur_tag_head = ptag_head;
  1689.         }
  1690.       break;
  1691.  
  1692.     case st_End:
  1693.       pscope = cur_file_ptr->cur_scope;
  1694.       if (pscope == (scope_t *) NULL)
  1695.         as_fatal (_("too many st_End's"));
  1696.       else
  1697.         {
  1698.           st_t begin_type = (st_t) pscope->lsym->ecoff_sym.asym.st;
  1699.  
  1700.           psym->begin_ptr = pscope->lsym;
  1701.  
  1702.           if (begin_type != st_File)
  1703.             scope_delta = -1;
  1704.  
  1705.           /* Except for file, structure, union, or enumeration end
  1706.              blocks remove all tags created within this scope.  */
  1707.           if (begin_type != st_File && storage != sc_Info)
  1708.             {
  1709.               ptag_head = cur_tag_head;
  1710.               cur_tag_head = ptag_head->prev;
  1711.  
  1712.               for (ptag = ptag_head->first_tag;
  1713.                    ptag != (tag_t *) NULL;
  1714.                    ptag = ptag_next)
  1715.                 {
  1716.                   if (ptag->forward_ref != (forward_t *) NULL)
  1717.                     add_unknown_tag (ptag);
  1718.  
  1719.                   ptag_next = ptag->same_block;
  1720.                   ptag->hash_ptr->tag_ptr = ptag->same_name;
  1721.                   free_tag (ptag);
  1722.                 }
  1723.  
  1724.               free_thead (ptag_head);
  1725.             }
  1726.  
  1727.           cur_file_ptr->cur_scope = pscope->prev;
  1728.  
  1729.           /* block begin gets next sym #.  This is set when we know
  1730.              the symbol index value.  */
  1731.  
  1732.           /* Functions push two or more aux words as follows:
  1733.              1st word: index+1 of the end symbol (filled in later).
  1734.              2nd word: type of the function (plus any aux words needed).
  1735.              Also, tie the external pointer back to the function begin symbol.  */
  1736.           if (begin_type != st_File && begin_type != st_Block)
  1737.             {
  1738.               symint_t ty;
  1739.               varray_t *svp = &cur_file_ptr->aux_syms;
  1740.  
  1741.               pscope->lsym->ecoff_sym.asym.index = add_aux_sym_symint (0);
  1742.               pscope->lsym->index_ptr =
  1743.                 &svp->last->datum->aux[svp->objects_last_page - 1];
  1744.               ty = add_aux_sym_tir (&last_func_type_info,
  1745.                                     hash_no,
  1746.                                     &cur_file_ptr->thash_head[0]);
  1747.               (void) ty;
  1748. /* This seems to be unnecessary.  I'm not even sure what it is
  1749.  * intended to do.  It's from mips-tfile.
  1750.  *            if (last_func_sym_value != (symbolS *) NULL)
  1751.  *              {
  1752.  *                last_func_sym_value->ifd = cur_file_ptr->file_index;
  1753.  *                last_func_sym_value->index = ty;
  1754.  *              }
  1755.  */
  1756.             }
  1757.  
  1758.           free_scope (pscope);
  1759.         }
  1760.     }
  1761.  
  1762.   cur_file_ptr->nested_scopes += scope_delta;
  1763.  
  1764. #ifdef ECOFF_DEBUG
  1765.   if (debug && type != st_File
  1766.       && (debug > 2 || type == st_Block || type == st_End
  1767.           || type == st_Proc || type == st_StaticProc))
  1768.     {
  1769.       char *sc_str = sc_to_string (storage);
  1770.       char *st_str = st_to_string (type);
  1771.       int depth = cur_file_ptr->nested_scopes + (scope_delta < 0);
  1772.  
  1773.       fprintf (stderr,
  1774.                "\tlsym\tv= %10ld, depth= %2d, sc= %-12s",
  1775.                value, depth, sc_str);
  1776.  
  1777.       if (str_start && str_end_p1 - str_start > 0)
  1778.         fprintf (stderr, " st= %-11s name= %.*s\n",
  1779.                  st_str, str_end_p1 - str_start, str_start);
  1780.       else
  1781.         {
  1782.           unsigned long len = strlen (st_str);
  1783.           fprintf (stderr, " st= %.*s\n", len - 1, st_str);
  1784.         }
  1785.     }
  1786. #endif
  1787.  
  1788.   return psym;
  1789. }
  1790. /* Add an auxiliary symbol (passing a symint).  This is actually used
  1791.    for integral aux types, not just symints.  */
  1792.  
  1793. static symint_t
  1794. add_aux_sym_symint (symint_t aux_word /* auxiliary information word */)
  1795. {
  1796.   varray_t *vp;
  1797.   aux_t *aux_ptr;
  1798.  
  1799.   if (cur_file_ptr == (efdr_t *) NULL)
  1800.     as_fatal (_("no current file pointer"));
  1801.  
  1802.   vp = &cur_file_ptr->aux_syms;
  1803.  
  1804.   if (vp->objects_last_page == vp->objects_per_page)
  1805.     add_varray_page (vp);
  1806.  
  1807.   aux_ptr = &vp->last->datum->aux[vp->objects_last_page++];
  1808.   aux_ptr->type = aux_isym;
  1809.   aux_ptr->data.isym = aux_word;
  1810.  
  1811.   return vp->num_allocated++;
  1812. }
  1813.  
  1814. /* Add an auxiliary symbol (passing a file/symbol index combo).  */
  1815.  
  1816. static symint_t
  1817. add_aux_sym_rndx (int file_index, symint_t sym_index)
  1818. {
  1819.   varray_t *vp;
  1820.   aux_t *aux_ptr;
  1821.  
  1822.   if (cur_file_ptr == (efdr_t *) NULL)
  1823.     as_fatal (_("no current file pointer"));
  1824.  
  1825.   vp = &cur_file_ptr->aux_syms;
  1826.  
  1827.   if (vp->objects_last_page == vp->objects_per_page)
  1828.     add_varray_page (vp);
  1829.  
  1830.   aux_ptr = &vp->last->datum->aux[vp->objects_last_page++];
  1831.   aux_ptr->type = aux_rndx;
  1832.   aux_ptr->data.rndx.rfd   = file_index;
  1833.   aux_ptr->data.rndx.index = sym_index;
  1834.  
  1835.   return vp->num_allocated++;
  1836. }
  1837. /* Add an auxiliary symbol (passing the basic type and possibly
  1838.    type qualifiers).  */
  1839.  
  1840. static symint_t
  1841. add_aux_sym_tir (type_info_t *t,        /* current type information */
  1842.                  hash_state_t state,    /* whether to hash type or not */
  1843.                  thash_t **hash_tbl     /* pointer to hash table to use */)
  1844. {
  1845.   varray_t *vp;
  1846.   aux_t *aux_ptr;
  1847.   static AUXU init_aux;
  1848.   symint_t ret;
  1849.   int i;
  1850.   AUXU aux;
  1851.  
  1852.   if (cur_file_ptr == (efdr_t *) NULL)
  1853.     as_fatal (_("no current file pointer"));
  1854.  
  1855.   vp = &cur_file_ptr->aux_syms;
  1856.  
  1857.   aux = init_aux;
  1858.   aux.ti.bt = (int) t->basic_type;
  1859.   aux.ti.continued = 0;
  1860.   aux.ti.fBitfield = t->bitfield;
  1861.  
  1862.   aux.ti.tq0 = (int) t->type_qualifiers[0];
  1863.   aux.ti.tq1 = (int) t->type_qualifiers[1];
  1864.   aux.ti.tq2 = (int) t->type_qualifiers[2];
  1865.   aux.ti.tq3 = (int) t->type_qualifiers[3];
  1866.   aux.ti.tq4 = (int) t->type_qualifiers[4];
  1867.   aux.ti.tq5 = (int) t->type_qualifiers[5];
  1868.  
  1869.   /* For anything that adds additional information, we must not hash,
  1870.      so check here, and reset our state.  */
  1871.  
  1872.   if (state != hash_no
  1873.       && (t->type_qualifiers[0] == tq_Array
  1874.           || t->type_qualifiers[1] == tq_Array
  1875.           || t->type_qualifiers[2] == tq_Array
  1876.           || t->type_qualifiers[3] == tq_Array
  1877.           || t->type_qualifiers[4] == tq_Array
  1878.           || t->type_qualifiers[5] == tq_Array
  1879.           || t->basic_type == bt_Struct
  1880.           || t->basic_type == bt_Union
  1881.           || t->basic_type == bt_Enum
  1882.           || t->bitfield
  1883.           || t->num_dims > 0))
  1884.     state = hash_no;
  1885.  
  1886.   /* See if we can hash this type, and save some space, but some types
  1887.      can't be hashed (because they contain arrays or continuations),
  1888.      and others can be put into the hash list, but cannot use existing
  1889.      types because other aux entries precede this one.  */
  1890.  
  1891.   if (state != hash_no)
  1892.     {
  1893.       thash_t *hash_ptr;
  1894.       symint_t hi;
  1895.  
  1896.       hi = aux.isym & ((1 << HASHBITS) - 1);
  1897.       hi %= THASH_SIZE;
  1898.  
  1899.       for (hash_ptr = hash_tbl[hi];
  1900.            hash_ptr != (thash_t *)0;
  1901.            hash_ptr = hash_ptr->next)
  1902.         {
  1903.           if (aux.isym == hash_ptr->type.isym)
  1904.             break;
  1905.         }
  1906.  
  1907.       if (hash_ptr != (thash_t *) NULL && state == hash_yes)
  1908.         return hash_ptr->indx;
  1909.  
  1910.       if (hash_ptr == (thash_t *) NULL)
  1911.         {
  1912.           hash_ptr = allocate_thash ();
  1913.           hash_ptr->next = hash_tbl[hi];
  1914.           hash_ptr->type = aux;
  1915.           hash_ptr->indx = vp->num_allocated;
  1916.           hash_tbl[hi] = hash_ptr;
  1917.         }
  1918.     }
  1919.  
  1920.   /* Everything is set up, add the aux symbol.  */
  1921.   if (vp->objects_last_page == vp->objects_per_page)
  1922.     add_varray_page (vp);
  1923.  
  1924.   aux_ptr = &vp->last->datum->aux[vp->objects_last_page++];
  1925.   aux_ptr->type = aux_tir;
  1926.   aux_ptr->data = aux;
  1927.  
  1928.   ret = vp->num_allocated++;
  1929.  
  1930.   /* Add bitfield length if it exists.
  1931.  
  1932.      NOTE:  Mips documentation claims bitfield goes at the end of the
  1933.      AUX record, but the DECstation compiler emits it here.
  1934.      (This would only make a difference for enum bitfields.)
  1935.  
  1936.      Also note:  We use the last size given since gcc may emit 2
  1937.      for an enum bitfield.  */
  1938.  
  1939.   if (t->bitfield)
  1940.     (void) add_aux_sym_symint ((symint_t) t->sizes[t->num_sizes - 1]);
  1941.  
  1942.   /* Add tag information if needed.  Structure, union, and enum
  1943.      references add 2 aux symbols: a [file index, symbol index]
  1944.      pointer to the structure type, and the current file index.  */
  1945.  
  1946.   if (t->basic_type == bt_Struct
  1947.       || t->basic_type == bt_Union
  1948.       || t->basic_type == bt_Enum)
  1949.     {
  1950.       symint_t file_index = t->tag_ptr->ifd;
  1951.       localsym_t *sym = t->tag_ptr->sym;
  1952.       forward_t *forward_ref = allocate_forward ();
  1953.  
  1954.       if (sym != (localsym_t *) NULL)
  1955.         {
  1956.           forward_ref->next = sym->forward_ref;
  1957.           sym->forward_ref = forward_ref;
  1958.         }
  1959.       else
  1960.         {
  1961.           forward_ref->next = t->tag_ptr->forward_ref;
  1962.           t->tag_ptr->forward_ref = forward_ref;
  1963.         }
  1964.  
  1965.       (void) add_aux_sym_rndx (ST_RFDESCAPE, indexNil);
  1966.       forward_ref->index_ptr
  1967.         = &vp->last->datum->aux[vp->objects_last_page - 1];
  1968.  
  1969.       (void) add_aux_sym_symint (file_index);
  1970.       forward_ref->ifd_ptr
  1971.         = &vp->last->datum->aux[vp->objects_last_page - 1];
  1972.     }
  1973.  
  1974.   /* Add information about array bounds if they exist.  */
  1975.   for (i = 0; i < t->num_dims; i++)
  1976.     {
  1977.       (void) add_aux_sym_rndx (ST_RFDESCAPE,
  1978.                                cur_file_ptr->int_type);
  1979.  
  1980.       (void) add_aux_sym_symint (cur_file_ptr->file_index);     /* file index*/
  1981.       (void) add_aux_sym_symint ((symint_t) 0);                 /* low bound */
  1982.       (void) add_aux_sym_symint (t->dimensions[i] - 1);         /* high bound*/
  1983.       (void) add_aux_sym_symint ((t->dimensions[i] == 0)        /* stride */
  1984.                                  ? 0
  1985.                                  : (t->sizes[i] * 8) / t->dimensions[i]);
  1986.     };
  1987.  
  1988.   /* NOTE:  Mips documentation claims that the bitfield width goes here.
  1989.      But it needs to be emitted earlier.  */
  1990.  
  1991.   return ret;
  1992. }
  1993. /* Add a tag to the tag table (unless it already exists).  */
  1994.  
  1995. static tag_t *
  1996. get_tag (const char *tag,       /* tag name */
  1997.          localsym_t *sym,       /* tag start block */
  1998.          bt_t basic_type        /* bt_Struct, bt_Union, or bt_Enum */)
  1999. {
  2000.   shash_t *hash_ptr;
  2001.   const char *err;
  2002.   tag_t *tag_ptr;
  2003.  
  2004.   if (cur_file_ptr == (efdr_t *) NULL)
  2005.     as_fatal (_("no current file pointer"));
  2006.  
  2007.   hash_ptr = (shash_t *) hash_find (tag_hash, tag);
  2008.  
  2009.   if (hash_ptr != (shash_t *) NULL
  2010.       && hash_ptr->tag_ptr != (tag_t *) NULL)
  2011.     {
  2012.       tag_ptr = hash_ptr->tag_ptr;
  2013.       if (sym != (localsym_t *) NULL)
  2014.         {
  2015.           tag_ptr->basic_type = basic_type;
  2016.           tag_ptr->ifd        = cur_file_ptr->file_index;
  2017.           tag_ptr->sym        = sym;
  2018.         }
  2019.       return tag_ptr;
  2020.     }
  2021.  
  2022.   if (hash_ptr == (shash_t *) NULL)
  2023.     {
  2024.       char *perm;
  2025.  
  2026.       perm = xstrdup (tag);
  2027.       hash_ptr = allocate_shash ();
  2028.       err = hash_insert (tag_hash, perm, (char *) hash_ptr);
  2029.       if (err)
  2030.         as_fatal (_("inserting \"%s\" into tag hash table: %s"),
  2031.                   tag, err);
  2032.       hash_ptr->string = perm;
  2033.     }
  2034.  
  2035.   tag_ptr = allocate_tag ();
  2036.   tag_ptr->forward_ref  = (forward_t *) NULL;
  2037.   tag_ptr->hash_ptr     = hash_ptr;
  2038.   tag_ptr->same_name    = hash_ptr->tag_ptr;
  2039.   tag_ptr->basic_type   = basic_type;
  2040.   tag_ptr->sym          = sym;
  2041.   tag_ptr->ifd          = ((sym == (localsym_t *) NULL)
  2042.                            ? (symint_t) -1
  2043.                            : cur_file_ptr->file_index);
  2044.   tag_ptr->same_block   = cur_tag_head->first_tag;
  2045.  
  2046.   cur_tag_head->first_tag = tag_ptr;
  2047.   hash_ptr->tag_ptr       = tag_ptr;
  2048.  
  2049.   return tag_ptr;
  2050. }
  2051. /* Add an unknown {struct, union, enum} tag.  */
  2052.  
  2053. static void
  2054. add_unknown_tag (tag_t *ptag /* pointer to tag information */)
  2055. {
  2056.   shash_t *hash_ptr     = ptag->hash_ptr;
  2057.   char *name            = hash_ptr->string;
  2058.   localsym_t *sym;
  2059.   forward_t **pf;
  2060.  
  2061. #ifdef ECOFF_DEBUG
  2062.   if (debug > 1)
  2063.     {
  2064.       char *agg_type = "{unknown aggregate type}";
  2065.       switch (ptag->basic_type)
  2066.         {
  2067.         case bt_Struct: agg_type = "struct";    break;
  2068.         case bt_Union:  agg_type = "union";     break;
  2069.         case bt_Enum:   agg_type = "enum";      break;
  2070.         default:                                break;
  2071.         }
  2072.  
  2073.       fprintf (stderr, "unknown %s %.*s found\n", agg_type,
  2074.                hash_ptr->len, name_start);
  2075.     }
  2076. #endif
  2077.  
  2078.   sym = add_ecoff_symbol (name,
  2079.                           st_Block,
  2080.                           sc_Info,
  2081.                           (symbolS *) NULL,
  2082.                           (bfd_vma) 0,
  2083.                           (symint_t) 0,
  2084.                           (symint_t) 0);
  2085.  
  2086.   (void) add_ecoff_symbol (name,
  2087.                            st_End,
  2088.                            sc_Info,
  2089.                            (symbolS *) NULL,
  2090.                            (bfd_vma) 0,
  2091.                            (symint_t) 0,
  2092.                            (symint_t) 0);
  2093.  
  2094.   for (pf = &sym->forward_ref; *pf != (forward_t *) NULL; pf = &(*pf)->next)
  2095.     ;
  2096.   *pf = ptag->forward_ref;
  2097. }
  2098. /* Add a procedure to the current file's list of procedures, and record
  2099.    this is the current procedure.  */
  2100.  
  2101. static void
  2102. add_procedure (char *func /* func name */)
  2103. {
  2104.   varray_t *vp;
  2105.   proc_t *new_proc_ptr;
  2106.   symbolS *sym;
  2107.  
  2108. #ifdef ECOFF_DEBUG
  2109.   if (debug)
  2110.     fputc ('\n', stderr);
  2111. #endif
  2112.  
  2113.   if (cur_file_ptr == (efdr_t *) NULL)
  2114.     as_fatal (_("no current file pointer"));
  2115.  
  2116.   vp = &cur_file_ptr->procs;
  2117.  
  2118.   if (vp->objects_last_page == vp->objects_per_page)
  2119.     add_varray_page (vp);
  2120.  
  2121.   cur_proc_ptr = new_proc_ptr = &vp->last->datum->proc[vp->objects_last_page++];
  2122.  
  2123.   if (first_proc_ptr == (proc_t *) NULL)
  2124.     first_proc_ptr = new_proc_ptr;
  2125.  
  2126.   vp->num_allocated++;
  2127.  
  2128.   new_proc_ptr->pdr.isym = -1;
  2129.   new_proc_ptr->pdr.iline = -1;
  2130.   new_proc_ptr->pdr.lnLow = -1;
  2131.   new_proc_ptr->pdr.lnHigh = -1;
  2132.  
  2133.   /* Set the BSF_FUNCTION flag for the symbol.  */
  2134.   sym = symbol_find_or_make (func);
  2135.   symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION;
  2136.  
  2137.   /* Push the start of the function.  */
  2138.   new_proc_ptr->sym = add_ecoff_symbol ((const char *) NULL, st_Proc, sc_Text,
  2139.                                         sym, (bfd_vma) 0, (symint_t) 0,
  2140.                                         (symint_t) 0);
  2141.  
  2142.   ++proc_cnt;
  2143.  
  2144.   /* Fill in the linenos preceding the .ent, if any.  */
  2145.   if (noproc_lineno != (lineno_list_t *) NULL)
  2146.     {
  2147.       lineno_list_t *l;
  2148.  
  2149.       for (l = noproc_lineno; l != (lineno_list_t *) NULL; l = l->next)
  2150.         l->proc = new_proc_ptr;
  2151.       *last_lineno_ptr = noproc_lineno;
  2152.       while (*last_lineno_ptr != NULL)
  2153.         {
  2154.           last_lineno = *last_lineno_ptr;
  2155.           last_lineno_ptr = &last_lineno->next;
  2156.         }
  2157.       noproc_lineno = (lineno_list_t *) NULL;
  2158.     }
  2159. }
  2160.  
  2161. symbolS *
  2162. ecoff_get_cur_proc_sym (void)
  2163. {
  2164.   return (cur_proc_ptr ? cur_proc_ptr->sym->as_sym : NULL);
  2165. }
  2166. /* Add a new filename, and set up all of the file relative
  2167.    virtual arrays (strings, symbols, aux syms, etc.).  Record
  2168.    where the current file structure lives.  */
  2169.  
  2170. static void
  2171. add_file (const char *file_name, int indx ATTRIBUTE_UNUSED, int fake)
  2172. {
  2173.   int first_ch;
  2174.   efdr_t *fil_ptr;
  2175.  
  2176. #ifdef ECOFF_DEBUG
  2177.   if (debug)
  2178.     fprintf (stderr, "\tfile\t%.*s\n", len, file_start);
  2179. #endif
  2180.  
  2181.   /* If the file name is NULL, then no .file symbol appeared, and we
  2182.      want to use the actual file name.  */
  2183.   if (file_name == (const char *) NULL)
  2184.     {
  2185.       char *file;
  2186.  
  2187.       if (first_file != (efdr_t *) NULL)
  2188.         as_fatal (_("fake .file after real one"));
  2189.       as_where (&file, (unsigned int *) NULL);
  2190.       file_name = (const char *) file;
  2191.  
  2192.       /* Automatically generate ECOFF debugging information, since I
  2193.          think that's what other ECOFF assemblers do.  We don't do
  2194.          this if we see a .file directive with a string, since that
  2195.          implies that some sort of debugging information is being
  2196.          provided.  */
  2197.       if (! symbol_table_frozen && debug_type == DEBUG_UNSPECIFIED)
  2198.         debug_type = DEBUG_ECOFF;
  2199.     }
  2200.   else if (debug_type == DEBUG_UNSPECIFIED)
  2201.     debug_type = DEBUG_NONE;
  2202.  
  2203. #ifndef NO_LISTING
  2204.   if (listing)
  2205.     listing_source_file (file_name);
  2206. #endif
  2207.  
  2208.   current_stabs_filename = file_name;
  2209.  
  2210.   /* If we're creating stabs, then we don't actually make a new FDR.
  2211.      Instead, we just create a stabs symbol.  */
  2212.   if (stabs_seen)
  2213.     {
  2214.       (void) add_ecoff_symbol (file_name, st_Nil, sc_Nil,
  2215.                                symbol_new ("L0\001", now_seg,
  2216.                                            (valueT) frag_now_fix (),
  2217.                                            frag_now),
  2218.                                (bfd_vma) 0, 0, ECOFF_MARK_STAB (N_SOL));
  2219.       return;
  2220.     }
  2221.  
  2222.   first_ch = *file_name;
  2223.  
  2224.   /* FIXME: We can't safely merge files which have line number
  2225.      information (fMerge will be zero in this case).  Otherwise, we
  2226.      get incorrect line number debugging info.  See for instance
  2227.      ecoff_build_lineno, which will end up setting all file->fdr.*
  2228.      fields multiple times, resulting in incorrect debug info.  In
  2229.      order to make this work right, all line number and symbol info
  2230.      for the same source file has to be adjacent in the object file,
  2231.      so that a single file descriptor can be used to point to them.
  2232.      This would require maintaining file specific lists of line
  2233.      numbers and symbols for each file, so that they can be merged
  2234.      together (or output together) when two .file pseudo-ops are
  2235.      merged into one file descriptor.  */
  2236.  
  2237.   /* See if the file has already been created.  */
  2238.   for (fil_ptr = first_file;
  2239.        fil_ptr != (efdr_t *) NULL;
  2240.        fil_ptr = fil_ptr->next_file)
  2241.     {
  2242.       if (first_ch == fil_ptr->name[0]
  2243.           && filename_cmp (file_name, fil_ptr->name) == 0
  2244.           && fil_ptr->fdr.fMerge)
  2245.         {
  2246.           cur_file_ptr = fil_ptr;
  2247.           if (! fake)
  2248.             cur_file_ptr->fake = 0;
  2249.           break;
  2250.         }
  2251.     }
  2252.  
  2253.   /* If this is a new file, create it.  */
  2254.   if (fil_ptr == (efdr_t *) NULL)
  2255.     {
  2256.       if (file_desc.objects_last_page == file_desc.objects_per_page)
  2257.         add_varray_page (&file_desc);
  2258.  
  2259.       fil_ptr = cur_file_ptr =
  2260.         &file_desc.last->datum->file[file_desc.objects_last_page++];
  2261.       *fil_ptr = init_file;
  2262.  
  2263.       fil_ptr->file_index = current_file_idx++;
  2264.       ++file_desc.num_allocated;
  2265.  
  2266.       fil_ptr->fake = fake;
  2267.  
  2268.       /* Allocate the string hash table.  */
  2269.       fil_ptr->str_hash = hash_new ();
  2270.  
  2271.       /* Make sure 0 byte in string table is null  */
  2272.       add_string (&fil_ptr->strings,
  2273.                   fil_ptr->str_hash,
  2274.                   "",
  2275.                   (shash_t **)0);
  2276.  
  2277.       if (strlen (file_name) > PAGE_USIZE - 2)
  2278.         as_fatal (_("filename goes over one page boundary"));
  2279.  
  2280.       /* Push the start of the filename. We assume that the filename
  2281.          will be stored at string offset 1.  */
  2282.       (void) add_ecoff_symbol (file_name, st_File, sc_Text,
  2283.                                (symbolS *) NULL, (bfd_vma) 0,
  2284.                                (symint_t) 0, (symint_t) 0);
  2285.       fil_ptr->fdr.rss = 1;
  2286.       fil_ptr->name = &fil_ptr->strings.last->datum->byte[1];
  2287.  
  2288.       /* Update the linked list of file descriptors.  */
  2289.       *last_file_ptr = fil_ptr;
  2290.       last_file_ptr = &fil_ptr->next_file;
  2291.  
  2292.       /* Add void & int types to the file (void should be first to catch
  2293.          errant 0's within the index fields).  */
  2294.       fil_ptr->void_type = add_aux_sym_tir (&void_type_info,
  2295.                                             hash_yes,
  2296.                                             &cur_file_ptr->thash_head[0]);
  2297.  
  2298.       fil_ptr->int_type = add_aux_sym_tir (&int_type_info,
  2299.                                            hash_yes,
  2300.                                            &cur_file_ptr->thash_head[0]);
  2301.     }
  2302. }
  2303.  
  2304. /* This function is called when the assembler notices a preprocessor
  2305.    directive switching to a new file.  This will not happen in
  2306.    compiler output, only in hand coded assembler.  */
  2307.  
  2308. void
  2309. ecoff_new_file (const char *name, int appfile ATTRIBUTE_UNUSED)
  2310. {
  2311.   if (cur_file_ptr != NULL && filename_cmp (cur_file_ptr->name, name) == 0)
  2312.     return;
  2313.   add_file (name, 0, 0);
  2314.  
  2315.   /* This is a hand coded assembler file, so automatically turn on
  2316.      debugging information.  */
  2317.   if (debug_type == DEBUG_UNSPECIFIED)
  2318.     debug_type = DEBUG_ECOFF;
  2319. }
  2320. #ifdef ECOFF_DEBUG
  2321.  
  2322. /* Convert storage class to string.  */
  2323.  
  2324. static char *
  2325. sc_to_string (storage_class)
  2326.      sc_t storage_class;
  2327. {
  2328.   switch (storage_class)
  2329.     {
  2330.     case sc_Nil:         return "Nil,";
  2331.     case sc_Text:        return "Text,";
  2332.     case sc_Data:        return "Data,";
  2333.     case sc_Bss:         return "Bss,";
  2334.     case sc_Register:    return "Register,";
  2335.     case sc_Abs:         return "Abs,";
  2336.     case sc_Undefined:   return "Undefined,";
  2337.     case sc_CdbLocal:    return "CdbLocal,";
  2338.     case sc_Bits:        return "Bits,";
  2339.     case sc_CdbSystem:   return "CdbSystem,";
  2340.     case sc_RegImage:    return "RegImage,";
  2341.     case sc_Info:        return "Info,";
  2342.     case sc_UserStruct:  return "UserStruct,";
  2343.     case sc_SData:       return "SData,";
  2344.     case sc_SBss:        return "SBss,";
  2345.     case sc_RData:       return "RData,";
  2346.     case sc_Var:         return "Var,";
  2347.     case sc_Common:      return "Common,";
  2348.     case sc_SCommon:     return "SCommon,";
  2349.     case sc_VarRegister: return "VarRegister,";
  2350.     case sc_Variant:     return "Variant,";
  2351.     case sc_SUndefined:  return "SUndefined,";
  2352.     case sc_Init:        return "Init,";
  2353.     case sc_Max:         return "Max,";
  2354.     }
  2355.  
  2356.   return "???,";
  2357. }
  2358.  
  2359. #endif /* DEBUG */
  2360. #ifdef ECOFF_DEBUG
  2361.  
  2362. /* Convert symbol type to string.  */
  2363.  
  2364. static char *
  2365. st_to_string (symbol_type)
  2366.      st_t symbol_type;
  2367. {
  2368.   switch (symbol_type)
  2369.     {
  2370.     case st_Nil:        return "Nil,";
  2371.     case st_Global:     return "Global,";
  2372.     case st_Static:     return "Static,";
  2373.     case st_Param:      return "Param,";
  2374.     case st_Local:      return "Local,";
  2375.     case st_Label:      return "Label,";
  2376.     case st_Proc:       return "Proc,";
  2377.     case st_Block:      return "Block,";
  2378.     case st_End:        return "End,";
  2379.     case st_Member:     return "Member,";
  2380.     case st_Typedef:    return "Typedef,";
  2381.     case st_File:       return "File,";
  2382.     case st_RegReloc:   return "RegReloc,";
  2383.     case st_Forward:    return "Forward,";
  2384.     case st_StaticProc: return "StaticProc,";
  2385.     case st_Constant:   return "Constant,";
  2386.     case st_Str:        return "String,";
  2387.     case st_Number:     return "Number,";
  2388.     case st_Expr:       return "Expr,";
  2389.     case st_Type:       return "Type,";
  2390.     case st_Max:        return "Max,";
  2391.     }
  2392.  
  2393.   return "???,";
  2394. }
  2395.  
  2396. #endif /* DEBUG */
  2397. /* Parse .begin directives which have a label as the first argument
  2398.    which gives the location of the start of the block.  */
  2399.  
  2400. void
  2401. ecoff_directive_begin (int ignore ATTRIBUTE_UNUSED)
  2402. {
  2403.   char *name;
  2404.   char name_end;
  2405.  
  2406.   if (cur_file_ptr == (efdr_t *) NULL)
  2407.     {
  2408.       as_warn (_(".begin directive without a preceding .file directive"));
  2409.       demand_empty_rest_of_line ();
  2410.       return;
  2411.     }
  2412.  
  2413.   if (cur_proc_ptr == (proc_t *) NULL)
  2414.     {
  2415.       as_warn (_(".begin directive without a preceding .ent directive"));
  2416.       demand_empty_rest_of_line ();
  2417.       return;
  2418.     }
  2419.  
  2420.   name_end = get_symbol_name (&name);
  2421.  
  2422.   (void) add_ecoff_symbol ((const char *) NULL, st_Block, sc_Text,
  2423.                            symbol_find_or_make (name),
  2424.                            (bfd_vma) 0, (symint_t) 0, (symint_t) 0);
  2425.  
  2426.   (void) restore_line_pointer (name_end);
  2427.  
  2428.   /* The line number follows, but we don't use it.  */
  2429.   (void) get_absolute_expression ();
  2430.   demand_empty_rest_of_line ();
  2431. }
  2432. /* Parse .bend directives which have a label as the first argument
  2433.    which gives the location of the end of the block.  */
  2434.  
  2435. void
  2436. ecoff_directive_bend (int ignore ATTRIBUTE_UNUSED)
  2437. {
  2438.   char *name;
  2439.   char name_end;
  2440.   symbolS *endsym;
  2441.  
  2442.   if (cur_file_ptr == (efdr_t *) NULL)
  2443.     {
  2444.       as_warn (_(".bend directive without a preceding .file directive"));
  2445.       demand_empty_rest_of_line ();
  2446.       return;
  2447.     }
  2448.  
  2449.   if (cur_proc_ptr == (proc_t *) NULL)
  2450.     {
  2451.       as_warn (_(".bend directive without a preceding .ent directive"));
  2452.       demand_empty_rest_of_line ();
  2453.       return;
  2454.     }
  2455.  
  2456.   name_end = get_symbol_name (&name);
  2457.  
  2458.   /* The value is the distance between the .bend directive and the
  2459.      corresponding symbol.  We fill in the offset when we write out
  2460.      the symbol.  */
  2461.   endsym = symbol_find (name);
  2462.   if (endsym == (symbolS *) NULL)
  2463.     as_warn (_(".bend directive names unknown symbol"));
  2464.   else
  2465.     (void) add_ecoff_symbol ((const char *) NULL, st_End, sc_Text, endsym,
  2466.                              (bfd_vma) 0, (symint_t) 0, (symint_t) 0);
  2467.  
  2468.   restore_line_pointer (name_end);
  2469.  
  2470.   /* The line number follows, but we don't use it.  */
  2471.   (void) get_absolute_expression ();
  2472.   demand_empty_rest_of_line ();
  2473. }
  2474. /* COFF debugging information is provided as a series of directives
  2475.    (.def, .scl, etc.).  We build up information as we read the
  2476.    directives in the following static variables, and file it away when
  2477.    we reach the .endef directive.  */
  2478. static char *coff_sym_name;
  2479. static type_info_t coff_type;
  2480. static sc_t coff_storage_class;
  2481. static st_t coff_symbol_typ;
  2482. static int coff_is_function;
  2483. static char *coff_tag;
  2484. static valueT coff_value;
  2485. static symbolS *coff_sym_value;
  2486. static bfd_vma coff_sym_addend;
  2487. static int coff_inside_enumeration;
  2488.  
  2489. /* Handle a .def directive: start defining a symbol.  */
  2490.  
  2491. void
  2492. ecoff_directive_def (int ignore ATTRIBUTE_UNUSED)
  2493. {
  2494.   char *name;
  2495.   char name_end;
  2496.  
  2497.   ecoff_debugging_seen = 1;
  2498.  
  2499.   SKIP_WHITESPACE ();
  2500.  
  2501.   name_end = get_symbol_name (&name);
  2502.  
  2503.   if (coff_sym_name != (char *) NULL)
  2504.     as_warn (_(".def pseudo-op used inside of .def/.endef; ignored"));
  2505.   else if (*name == '\0')
  2506.     as_warn (_("empty symbol name in .def; ignored"));
  2507.   else
  2508.     {
  2509.       if (coff_sym_name != (char *) NULL)
  2510.         free (coff_sym_name);
  2511.       if (coff_tag != (char *) NULL)
  2512.         free (coff_tag);
  2513.  
  2514.       coff_sym_name = xstrdup (name);
  2515.       coff_type = type_info_init;
  2516.       coff_storage_class = sc_Nil;
  2517.       coff_symbol_typ = st_Nil;
  2518.       coff_is_function = 0;
  2519.       coff_tag = (char *) NULL;
  2520.       coff_value = 0;
  2521.       coff_sym_value = (symbolS *) NULL;
  2522.       coff_sym_addend = 0;
  2523.     }
  2524.  
  2525.   restore_line_pointer (name_end);
  2526.  
  2527.   demand_empty_rest_of_line ();
  2528. }
  2529.  
  2530. /* Handle a .dim directive, used to give dimensions for an array.  The
  2531.    arguments are comma separated numbers.  mips-tfile assumes that
  2532.    there will not be more than 6 dimensions, and gdb won't read any
  2533.    more than that anyhow, so I will also make that assumption.  */
  2534.  
  2535. void
  2536. ecoff_directive_dim (int ignore ATTRIBUTE_UNUSED)
  2537. {
  2538.   int dimens[N_TQ];
  2539.   int i;
  2540.  
  2541.   if (coff_sym_name == (char *) NULL)
  2542.     {
  2543.       as_warn (_(".dim pseudo-op used outside of .def/.endef; ignored"));
  2544.       demand_empty_rest_of_line ();
  2545.       return;
  2546.     }
  2547.  
  2548.   for (i = 0; i < N_TQ; i++)
  2549.     {
  2550.       SKIP_WHITESPACE ();
  2551.       dimens[i] = get_absolute_expression ();
  2552.       if (*input_line_pointer == ',')
  2553.         ++input_line_pointer;
  2554.       else
  2555.         {
  2556.           if (*input_line_pointer != '\n'
  2557.               && *input_line_pointer != ';')
  2558.             as_warn (_("badly formed .dim directive"));
  2559.           break;
  2560.         }
  2561.     }
  2562.  
  2563.   if (i == N_TQ)
  2564.     --i;
  2565.  
  2566.   /* The dimensions are stored away in reverse order.  */
  2567.   for (; i >= 0; i--)
  2568.     {
  2569.       if (coff_type.num_dims >= N_TQ)
  2570.         {
  2571.           as_warn (_("too many .dim entries"));
  2572.           break;
  2573.         }
  2574.       coff_type.dimensions[coff_type.num_dims] = dimens[i];
  2575.       ++coff_type.num_dims;
  2576.     }
  2577.  
  2578.   demand_empty_rest_of_line ();
  2579. }
  2580.  
  2581. /* Handle a .scl directive, which sets the COFF storage class of the
  2582.    symbol.  */
  2583.  
  2584. void
  2585. ecoff_directive_scl (int ignore ATTRIBUTE_UNUSED)
  2586. {
  2587.   long val;
  2588.  
  2589.   if (coff_sym_name == (char *) NULL)
  2590.     {
  2591.       as_warn (_(".scl pseudo-op used outside of .def/.endef; ignored"));
  2592.       demand_empty_rest_of_line ();
  2593.       return;
  2594.     }
  2595.  
  2596.   val = get_absolute_expression ();
  2597.  
  2598.   coff_symbol_typ = map_coff_sym_type[val];
  2599.   coff_storage_class = map_coff_storage[val];
  2600.  
  2601.   demand_empty_rest_of_line ();
  2602. }
  2603.  
  2604. /* Handle a .size directive.  For some reason mips-tfile.c thinks that
  2605.    .size can have multiple arguments.  We humor it, although gcc will
  2606.    never generate more than one argument.  */
  2607.  
  2608. void
  2609. ecoff_directive_size (int ignore ATTRIBUTE_UNUSED)
  2610. {
  2611.   int sizes[N_TQ];
  2612.   int i;
  2613.  
  2614.   if (coff_sym_name == (char *) NULL)
  2615.     {
  2616.       as_warn (_(".size pseudo-op used outside of .def/.endef; ignored"));
  2617.       demand_empty_rest_of_line ();
  2618.       return;
  2619.     }
  2620.  
  2621.   for (i = 0; i < N_TQ; i++)
  2622.     {
  2623.       SKIP_WHITESPACE ();
  2624.       sizes[i] = get_absolute_expression ();
  2625.       if (*input_line_pointer == ',')
  2626.         ++input_line_pointer;
  2627.       else
  2628.         {
  2629.           if (*input_line_pointer != '\n'
  2630.               && *input_line_pointer != ';')
  2631.             as_warn (_("badly formed .size directive"));
  2632.           break;
  2633.         }
  2634.     }
  2635.  
  2636.   if (i == N_TQ)
  2637.     --i;
  2638.  
  2639.   /* The sizes are stored away in reverse order.  */
  2640.   for (; i >= 0; i--)
  2641.     {
  2642.       if (coff_type.num_sizes >= N_TQ)
  2643.         {
  2644.           as_warn (_("too many .size entries"));
  2645.           break;
  2646.         }
  2647.       coff_type.sizes[coff_type.num_sizes] = sizes[i];
  2648.       ++coff_type.num_sizes;
  2649.     }
  2650.  
  2651.   demand_empty_rest_of_line ();
  2652. }
  2653.  
  2654. /* Handle the .type directive, which gives the COFF type of the
  2655.    symbol.  */
  2656.  
  2657. void
  2658. ecoff_directive_type (int ignore ATTRIBUTE_UNUSED)
  2659. {
  2660.   long val;
  2661.   tq_t *tq_ptr;
  2662.   tq_t *tq_shft;
  2663.  
  2664.   if (coff_sym_name == (char *) NULL)
  2665.     {
  2666.       as_warn (_(".type pseudo-op used outside of .def/.endef; ignored"));
  2667.       demand_empty_rest_of_line ();
  2668.       return;
  2669.     }
  2670.  
  2671.   val = get_absolute_expression ();
  2672.  
  2673.   coff_type.orig_type = BTYPE (val);
  2674.   coff_type.basic_type = map_coff_types[coff_type.orig_type];
  2675.  
  2676.   tq_ptr = &coff_type.type_qualifiers[N_TQ];
  2677.   while (val & ~N_BTMASK)
  2678.     {
  2679.       if (tq_ptr == &coff_type.type_qualifiers[0])
  2680.         {
  2681.           /* FIXME: We could handle this by setting the continued bit.
  2682.              There would still be a limit: the .type argument can not
  2683.              be infinite.  */
  2684.           as_warn (_("the type of %s is too complex; it will be simplified"),
  2685.                    coff_sym_name);
  2686.           break;
  2687.         }
  2688.       if (ISPTR (val))
  2689.         *--tq_ptr = tq_Ptr;
  2690.       else if (ISFCN (val))
  2691.         *--tq_ptr = tq_Proc;
  2692.       else if (ISARY (val))
  2693.         *--tq_ptr = tq_Array;
  2694.       else
  2695.         as_fatal (_("Unrecognized .type argument"));
  2696.  
  2697.       val = DECREF (val);
  2698.     }
  2699.  
  2700.   tq_shft = &coff_type.type_qualifiers[0];
  2701.   while (tq_ptr != &coff_type.type_qualifiers[N_TQ])
  2702.     *tq_shft++ = *tq_ptr++;
  2703.  
  2704.   if (tq_shft != &coff_type.type_qualifiers[0] && tq_shft[-1] == tq_Proc)
  2705.     {
  2706.       /* If this is a function, ignore it, so that we don't get two
  2707.          entries (one from the .ent, and one for the .def that
  2708.          precedes it).  Save the type information so that the end
  2709.          block can properly add it after the begin block index.  For
  2710.          MIPS knows what reason, we must strip off the function type
  2711.          at this point.  */
  2712.       coff_is_function = 1;
  2713.       tq_shft[-1] = tq_Nil;
  2714.     }
  2715.  
  2716.   while (tq_shft != &coff_type.type_qualifiers[N_TQ])
  2717.     *tq_shft++ = tq_Nil;
  2718.  
  2719.   demand_empty_rest_of_line ();
  2720. }
  2721.  
  2722. /* Handle the .tag directive, which gives the name of a structure,
  2723.    union or enum.  */
  2724.  
  2725. void
  2726. ecoff_directive_tag (int ignore ATTRIBUTE_UNUSED)
  2727. {
  2728.   char *name;
  2729.   char name_end;
  2730.  
  2731.   if (coff_sym_name == (char *) NULL)
  2732.     {
  2733.       as_warn (_(".tag pseudo-op used outside of .def/.endef; ignored"));
  2734.       demand_empty_rest_of_line ();
  2735.       return;
  2736.     }
  2737.  
  2738.   name_end = get_symbol_name (&name);
  2739.  
  2740.   coff_tag = xstrdup (name);
  2741.  
  2742.   (void) restore_line_pointer (name_end);
  2743.  
  2744.   demand_empty_rest_of_line ();
  2745. }
  2746.  
  2747. /* Handle the .val directive, which gives the value of the symbol.  It
  2748.    may be the name of a static or global symbol.  */
  2749.  
  2750. void
  2751. ecoff_directive_val (int ignore ATTRIBUTE_UNUSED)
  2752. {
  2753.   expressionS exp;
  2754.  
  2755.   if (coff_sym_name == (char *) NULL)
  2756.     {
  2757.       as_warn (_(".val pseudo-op used outside of .def/.endef; ignored"));
  2758.       demand_empty_rest_of_line ();
  2759.       return;
  2760.     }
  2761.  
  2762.   expression (&exp);
  2763.   if (exp.X_op != O_constant && exp.X_op != O_symbol)
  2764.     {
  2765.       as_bad (_(".val expression is too complex"));
  2766.       demand_empty_rest_of_line ();
  2767.       return;
  2768.     }
  2769.  
  2770.   if (exp.X_op == O_constant)
  2771.     coff_value = exp.X_add_number;
  2772.   else
  2773.     {
  2774.       coff_sym_value = exp.X_add_symbol;
  2775.       coff_sym_addend = exp.X_add_number;
  2776.     }
  2777.  
  2778.   demand_empty_rest_of_line ();
  2779. }
  2780.  
  2781. /* Handle the .endef directive, which terminates processing of COFF
  2782.    debugging information for a symbol.  */
  2783.  
  2784. void
  2785. ecoff_directive_endef (int ignore ATTRIBUTE_UNUSED)
  2786. {
  2787.   char *name;
  2788.   symint_t indx;
  2789.   localsym_t *sym;
  2790.  
  2791.   demand_empty_rest_of_line ();
  2792.  
  2793.   if (coff_sym_name == (char *) NULL)
  2794.     {
  2795.       as_warn (_(".endef pseudo-op used before .def; ignored"));
  2796.       return;
  2797.     }
  2798.  
  2799.   name = coff_sym_name;
  2800.   coff_sym_name = (char *) NULL;
  2801.  
  2802.   /* If the symbol is a static or external, we have already gotten the
  2803.      appropriate type and class, so make sure we don't override those
  2804.      values.  This is needed because there are some type and classes
  2805.      that are not in COFF, such as short data, etc.  */
  2806.   if (coff_sym_value != (symbolS *) NULL)
  2807.     {
  2808.       coff_symbol_typ = st_Nil;
  2809.       coff_storage_class = sc_Nil;
  2810.     }
  2811.  
  2812.   coff_type.extra_sizes = coff_tag != (char *) NULL;
  2813.   if (coff_type.num_dims > 0)
  2814.     {
  2815.       int diff = coff_type.num_dims - coff_type.num_sizes;
  2816.       int i = coff_type.num_dims - 1;
  2817.       int j;
  2818.  
  2819.       if (coff_type.num_sizes != 1 || diff < 0)
  2820.         {
  2821.           as_warn (_("bad COFF debugging information"));
  2822.           return;
  2823.         }
  2824.  
  2825.       /* If this is an array, make sure the same number of dimensions
  2826.          and sizes were passed, creating extra sizes for multiply
  2827.          dimensioned arrays if not passed.  */
  2828.       coff_type.extra_sizes = 0;
  2829.       if (diff)
  2830.         {
  2831.           j = (sizeof (coff_type.sizes) / sizeof (coff_type.sizes[0])) - 1;
  2832.           while (j >= 0)
  2833.             {
  2834.               coff_type.sizes[j] = (((j - diff) >= 0)
  2835.                                     ? coff_type.sizes[j - diff]
  2836.                                     : 0);
  2837.               j--;
  2838.             }
  2839.  
  2840.           coff_type.num_sizes = i + 1;
  2841.           for (i--; i >= 0; i--)
  2842.             coff_type.sizes[i] = (coff_type.dimensions[i + 1] == 0
  2843.                                   ? 0
  2844.                                   : (coff_type.sizes[i + 1]
  2845.                                      / coff_type.dimensions[i + 1]));
  2846.         }
  2847.     }
  2848.   else if (coff_symbol_typ == st_Member
  2849.            && coff_type.num_sizes - coff_type.extra_sizes == 1)
  2850.     {
  2851.       /* Is this a bitfield?  This is indicated by a structure member
  2852.          having a size field that isn't an array.  */
  2853.       coff_type.bitfield = 1;
  2854.     }
  2855.  
  2856.   /* Except for enumeration members & begin/ending of scopes, put the
  2857.      type word in the aux. symbol table.  */
  2858.   if (coff_symbol_typ == st_Block || coff_symbol_typ == st_End)
  2859.     indx = 0;
  2860.   else if (coff_inside_enumeration)
  2861.     indx = cur_file_ptr->void_type;
  2862.   else
  2863.     {
  2864.       if (coff_type.basic_type == bt_Struct
  2865.           || coff_type.basic_type == bt_Union
  2866.           || coff_type.basic_type == bt_Enum)
  2867.         {
  2868.           if (coff_tag == (char *) NULL)
  2869.             {
  2870.               as_warn (_("no tag specified for %s"), name);
  2871.               return;
  2872.             }
  2873.  
  2874.           coff_type.tag_ptr = get_tag (coff_tag, (localsym_t *) NULL,
  2875.                                        coff_type.basic_type);
  2876.         }
  2877.  
  2878.       if (coff_is_function)
  2879.         {
  2880.           last_func_type_info = coff_type;
  2881.           last_func_sym_value = coff_sym_value;
  2882.           return;
  2883.         }
  2884.  
  2885.       indx = add_aux_sym_tir (&coff_type,
  2886.                               hash_yes,
  2887.                               &cur_file_ptr->thash_head[0]);
  2888.     }
  2889.  
  2890.   /* Do any last minute adjustments that are necessary.  */
  2891.   switch (coff_symbol_typ)
  2892.     {
  2893.     default:
  2894.       break;
  2895.  
  2896.       /* For the beginning of structs, unions, and enumerations, the
  2897.          size info needs to be passed in the value field.  */
  2898.     case st_Block:
  2899.       if (coff_type.num_sizes - coff_type.num_dims - coff_type.extra_sizes
  2900.           != 1)
  2901.         {
  2902.           as_warn (_("bad COFF debugging information"));
  2903.           return;
  2904.         }
  2905.       else
  2906.         coff_value = coff_type.sizes[0];
  2907.  
  2908.       coff_inside_enumeration = (coff_type.orig_type == T_ENUM);
  2909.       break;
  2910.  
  2911.       /* For the end of structs, unions, and enumerations, omit the
  2912.          name which is always ".eos".  This needs to be done last, so
  2913.          that any error reporting above gives the correct name.  */
  2914.     case st_End:
  2915.       free (name);
  2916.       name = (char *) NULL;
  2917.       coff_value = 0;
  2918.       coff_inside_enumeration = 0;
  2919.       break;
  2920.  
  2921.       /* Members of structures and unions that aren't bitfields, need
  2922.          to adjust the value from a byte offset to a bit offset.
  2923.          Members of enumerations do not have the value adjusted, and
  2924.          can be distinguished by indx == indexNil.  For enumerations,
  2925.          update the maximum enumeration value.  */
  2926.     case st_Member:
  2927.       if (! coff_type.bitfield && ! coff_inside_enumeration)
  2928.         coff_value *= 8;
  2929.  
  2930.       break;
  2931.     }
  2932.  
  2933.   /* Add the symbol.  */
  2934.   sym = add_ecoff_symbol (name,
  2935.                           coff_symbol_typ,
  2936.                           coff_storage_class,
  2937.                           coff_sym_value,
  2938.                           coff_sym_addend,
  2939.                           (symint_t) coff_value,
  2940.                           indx);
  2941.  
  2942.   /* deal with struct, union, and enum tags.  */
  2943.   if (coff_symbol_typ == st_Block)
  2944.     {
  2945.       /* Create or update the tag information.  */
  2946.       tag_t *tag_ptr = get_tag (name,
  2947.                                 sym,
  2948.                                 coff_type.basic_type);
  2949.       forward_t **pf;
  2950.  
  2951.       /* Remember any forward references.  */
  2952.       for (pf = &sym->forward_ref;
  2953.            *pf != (forward_t *) NULL;
  2954.            pf = &(*pf)->next)
  2955.         ;
  2956.       *pf = tag_ptr->forward_ref;
  2957.       tag_ptr->forward_ref = (forward_t *) NULL;
  2958.     }
  2959. }
  2960. /* Parse .end directives.  */
  2961.  
  2962. void
  2963. ecoff_directive_end (int ignore ATTRIBUTE_UNUSED)
  2964. {
  2965.   char *name;
  2966.   char name_end;
  2967.   symbolS *ent;
  2968.  
  2969.   if (cur_file_ptr == (efdr_t *) NULL)
  2970.     {
  2971.       as_warn (_(".end directive without a preceding .file directive"));
  2972.       demand_empty_rest_of_line ();
  2973.       return;
  2974.     }
  2975.  
  2976.   if (cur_proc_ptr == (proc_t *) NULL)
  2977.     {
  2978.       as_warn (_(".end directive without a preceding .ent directive"));
  2979.       demand_empty_rest_of_line ();
  2980.       return;
  2981.     }
  2982.  
  2983.   name_end = get_symbol_name (&name);
  2984.  
  2985.   if (name == input_line_pointer)
  2986.     {
  2987.       as_warn (_(".end directive has no name"));
  2988.       (void) restore_line_pointer (name_end);
  2989.       demand_empty_rest_of_line ();
  2990.       return;
  2991.     }
  2992.  
  2993.   /* The value is the distance between the .end directive and the
  2994.      corresponding symbol.  We create a fake symbol to hold the
  2995.      current location, and put in the offset when we write out the
  2996.      symbol.  */
  2997.   ent = symbol_find (name);
  2998.   if (ent == (symbolS *) NULL)
  2999.     as_warn (_(".end directive names unknown symbol"));
  3000.   else
  3001.     (void) add_ecoff_symbol ((const char *) NULL, st_End, sc_Text,
  3002.                              symbol_new ("L0\001", now_seg,
  3003.                                          (valueT) frag_now_fix (),
  3004.                                          frag_now),
  3005.                              (bfd_vma) 0, (symint_t) 0, (symint_t) 0);
  3006.  
  3007.   cur_proc_ptr = (proc_t *) NULL;
  3008.  
  3009.   (void) restore_line_pointer (name_end);
  3010.   demand_empty_rest_of_line ();
  3011. }
  3012. /* Parse .ent directives.  */
  3013.  
  3014. void
  3015. ecoff_directive_ent (int ignore ATTRIBUTE_UNUSED)
  3016. {
  3017.   char *name;
  3018.   char name_end;
  3019.  
  3020.   if (cur_file_ptr == (efdr_t *) NULL)
  3021.     add_file ((const char *) NULL, 0, 1);
  3022.  
  3023.   if (cur_proc_ptr != (proc_t *) NULL)
  3024.     {
  3025.       as_warn (_("second .ent directive found before .end directive"));
  3026.       demand_empty_rest_of_line ();
  3027.       return;
  3028.     }
  3029.  
  3030.   name_end = get_symbol_name (&name);
  3031.  
  3032.   if (name == input_line_pointer)
  3033.     {
  3034.       as_warn (_(".ent directive has no name"));
  3035.       (void) restore_line_pointer (name_end);
  3036.       demand_empty_rest_of_line ();
  3037.       return;
  3038.     }
  3039.  
  3040.   add_procedure (name);
  3041.  
  3042.   (void) restore_line_pointer (name_end);
  3043.  
  3044.   /* The .ent directive is sometimes followed by a number.  I'm not
  3045.      really sure what the number means.  I don't see any way to store
  3046.      the information in the PDR.  The Irix 4 assembler seems to ignore
  3047.      the information.  */
  3048.   SKIP_WHITESPACE ();
  3049.   if (*input_line_pointer == ',')
  3050.     {
  3051.       ++input_line_pointer;
  3052.       SKIP_WHITESPACE ();
  3053.     }
  3054.   if (ISDIGIT (*input_line_pointer)
  3055.       || *input_line_pointer == '-')
  3056.     (void) get_absolute_expression ();
  3057.  
  3058.   demand_empty_rest_of_line ();
  3059. }
  3060. /* Parse .extern directives.  */
  3061.  
  3062. void
  3063. ecoff_directive_extern (int ignore ATTRIBUTE_UNUSED)
  3064. {
  3065.   char *name;
  3066.   int c;
  3067.   symbolS *symbolp;
  3068.   valueT size;
  3069.  
  3070.   c = get_symbol_name (&name);
  3071.   symbolp = symbol_find_or_make (name);
  3072.   (void) restore_line_pointer (c);
  3073.  
  3074.   S_SET_EXTERNAL (symbolp);
  3075.  
  3076.   if (*input_line_pointer == ',')
  3077.     ++input_line_pointer;
  3078.   size = get_absolute_expression ();
  3079.  
  3080.   symbol_get_obj (symbolp)->ecoff_extern_size = size;
  3081. }
  3082. /* Parse .file directives.  */
  3083.  
  3084. void
  3085. ecoff_directive_file (int ignore ATTRIBUTE_UNUSED)
  3086. {
  3087.   int indx;
  3088.   char *name;
  3089.   int len;
  3090.  
  3091.   if (cur_proc_ptr != (proc_t *) NULL)
  3092.     {
  3093.       as_warn (_("no way to handle .file within .ent/.end section"));
  3094.       demand_empty_rest_of_line ();
  3095.       return;
  3096.     }
  3097.  
  3098.   indx = (int) get_absolute_expression ();
  3099.  
  3100.   /* FIXME: we don't have to save the name here.  */
  3101.   name = demand_copy_C_string (&len);
  3102.  
  3103.   add_file (name, indx - 1, 0);
  3104.  
  3105.   demand_empty_rest_of_line ();
  3106. }
  3107. /* Parse .fmask directives.  */
  3108.  
  3109. void
  3110. ecoff_directive_fmask (int ignore ATTRIBUTE_UNUSED)
  3111. {
  3112.   long val;
  3113.  
  3114.   if (cur_proc_ptr == (proc_t *) NULL)
  3115.     {
  3116.       as_warn (_(".fmask outside of .ent"));
  3117.       demand_empty_rest_of_line ();
  3118.       return;
  3119.     }
  3120.  
  3121.   if (get_absolute_expression_and_terminator (&val) != ',')
  3122.     {
  3123.       as_warn (_("bad .fmask directive"));
  3124.       --input_line_pointer;
  3125.       demand_empty_rest_of_line ();
  3126.       return;
  3127.     }
  3128.  
  3129.   cur_proc_ptr->pdr.fregmask = val;
  3130.   cur_proc_ptr->pdr.fregoffset = get_absolute_expression ();
  3131.  
  3132.   demand_empty_rest_of_line ();
  3133. }
  3134. /* Parse .frame directives.  */
  3135.  
  3136. void
  3137. ecoff_directive_frame (int ignore ATTRIBUTE_UNUSED)
  3138. {
  3139.   long val;
  3140.  
  3141.   if (cur_proc_ptr == (proc_t *) NULL)
  3142.     {
  3143.       as_warn (_(".frame outside of .ent"));
  3144.       demand_empty_rest_of_line ();
  3145.       return;
  3146.     }
  3147.  
  3148.   cur_proc_ptr->pdr.framereg = tc_get_register (1);
  3149.  
  3150.   SKIP_WHITESPACE ();
  3151.   if (*input_line_pointer++ != ','
  3152.       || get_absolute_expression_and_terminator (&val) != ',')
  3153.     {
  3154.       as_warn (_("bad .frame directive"));
  3155.       --input_line_pointer;
  3156.       demand_empty_rest_of_line ();
  3157.       return;
  3158.     }
  3159.  
  3160.   cur_proc_ptr->pdr.frameoffset = val;
  3161.  
  3162.   cur_proc_ptr->pdr.pcreg = tc_get_register (0);
  3163.  
  3164.   /* Alpha-OSF1 adds "the offset of saved $a0 from $sp", according to
  3165.      Sandro.  I don't yet know where this value should be stored, if
  3166.      anywhere.  Don't call demand_empty_rest_of_line ().  */
  3167.   s_ignore (42);
  3168. }
  3169. /* Parse .mask directives.  */
  3170.  
  3171. void
  3172. ecoff_directive_mask (int ignore ATTRIBUTE_UNUSED)
  3173. {
  3174.   long val;
  3175.  
  3176.   if (cur_proc_ptr == (proc_t *) NULL)
  3177.     {
  3178.       as_warn (_(".mask outside of .ent"));
  3179.       demand_empty_rest_of_line ();
  3180.       return;
  3181.     }
  3182.  
  3183.   if (get_absolute_expression_and_terminator (&val) != ',')
  3184.     {
  3185.       as_warn (_("bad .mask directive"));
  3186.       --input_line_pointer;
  3187.       demand_empty_rest_of_line ();
  3188.       return;
  3189.     }
  3190.  
  3191.   cur_proc_ptr->pdr.regmask = val;
  3192.   cur_proc_ptr->pdr.regoffset = get_absolute_expression ();
  3193.  
  3194.   demand_empty_rest_of_line ();
  3195. }
  3196. /* Parse .loc directives.  */
  3197.  
  3198. void
  3199. ecoff_directive_loc (int ignore ATTRIBUTE_UNUSED)
  3200. {
  3201.   lineno_list_t *list;
  3202.   symint_t lineno;
  3203.  
  3204.   if (cur_file_ptr == (efdr_t *) NULL)
  3205.     {
  3206.       as_warn (_(".loc before .file"));
  3207.       demand_empty_rest_of_line ();
  3208.       return;
  3209.     }
  3210.  
  3211.   if (now_seg != text_section)
  3212.     {
  3213.       as_warn (_(".loc outside of .text"));
  3214.       demand_empty_rest_of_line ();
  3215.       return;
  3216.     }
  3217.  
  3218.   /* Skip the file number.  */
  3219.   SKIP_WHITESPACE ();
  3220.   get_absolute_expression ();
  3221.   SKIP_WHITESPACE ();
  3222.  
  3223.   lineno = get_absolute_expression ();
  3224.  
  3225. #ifndef NO_LISTING
  3226.   if (listing)
  3227.     listing_source_line (lineno);
  3228. #endif
  3229.  
  3230.   /* If we're building stabs, then output a special label rather than
  3231.      ECOFF line number info.  */
  3232.   if (stabs_seen)
  3233.     {
  3234.       (void) add_ecoff_symbol ((char *) NULL, st_Label, sc_Text,
  3235.                                symbol_new ("L0\001", now_seg,
  3236.                                            (valueT) frag_now_fix (),
  3237.                                            frag_now),
  3238.                                (bfd_vma) 0, 0, lineno);
  3239.       return;
  3240.     }
  3241.  
  3242.   list = allocate_lineno_list ();
  3243.  
  3244.   list->next = (lineno_list_t *) NULL;
  3245.   list->file = cur_file_ptr;
  3246.   list->proc = cur_proc_ptr;
  3247.   list->frag = frag_now;
  3248.   list->paddr = frag_now_fix ();
  3249.   list->lineno = lineno;
  3250.  
  3251.   /* We don't want to merge files which have line numbers.  */
  3252.   cur_file_ptr->fdr.fMerge = 0;
  3253.  
  3254.   /* A .loc directive will sometimes appear before a .ent directive,
  3255.      which means that cur_proc_ptr will be NULL here.  Arrange to
  3256.      patch this up.  */
  3257.   if (cur_proc_ptr == (proc_t *) NULL)
  3258.     {
  3259.       lineno_list_t **pl;
  3260.  
  3261.       pl = &noproc_lineno;
  3262.       while (*pl != (lineno_list_t *) NULL)
  3263.         pl = &(*pl)->next;
  3264.       *pl = list;
  3265.     }
  3266.   else
  3267.     {
  3268.       last_lineno = list;
  3269.       *last_lineno_ptr = list;
  3270.       last_lineno_ptr = &list->next;
  3271.     }
  3272. }
  3273.  
  3274. /* The MIPS assembler sometimes inserts nop instructions in the
  3275.    instruction stream.  When this happens, we must patch up the .loc
  3276.    information so that it points to the instruction after the nop.  */
  3277.  
  3278. void
  3279. ecoff_fix_loc (fragS *old_frag, unsigned long old_frag_offset)
  3280. {
  3281.   if (last_lineno != NULL
  3282.       && last_lineno->frag == old_frag
  3283.       && last_lineno->paddr == old_frag_offset)
  3284.     {
  3285.       last_lineno->frag = frag_now;
  3286.       last_lineno->paddr = frag_now_fix ();
  3287.     }
  3288. }
  3289. /* Make sure the @stabs symbol is emitted.  */
  3290.  
  3291. static void
  3292. mark_stabs (int ignore ATTRIBUTE_UNUSED)
  3293. {
  3294.   if (! stabs_seen)
  3295.     {
  3296.       /* Add a dummy @stabs dymbol.  */
  3297.       stabs_seen = 1;
  3298.       (void) add_ecoff_symbol (stabs_symbol, st_Nil, sc_Info,
  3299.                                (symbolS *) NULL,
  3300.                                (bfd_vma) 0, (symint_t) -1,
  3301.                                ECOFF_MARK_STAB (0));
  3302.     }
  3303. }
  3304. /* Parse .weakext directives.  */
  3305. #ifndef TC_MIPS
  3306. /* For TC_MIPS use the version in tc-mips.c.  */
  3307. void
  3308. ecoff_directive_weakext (int ignore ATTRIBUTE_UNUSED)
  3309. {
  3310.   char *name;
  3311.   int c;
  3312.   symbolS *symbolP;
  3313.   expressionS exp;
  3314.  
  3315.   c = get_symbol_name (&name);
  3316.   symbolP = symbol_find_or_make (name);
  3317.   (void) restore_line_pointer (c);
  3318.  
  3319.   SKIP_WHITESPACE ();
  3320.  
  3321.   if (*input_line_pointer == ',')
  3322.     {
  3323.       if (S_IS_DEFINED (symbolP))
  3324.         {
  3325.           as_bad (_("symbol `%s' is already defined"),
  3326.                   S_GET_NAME (symbolP));
  3327.           ignore_rest_of_line ();
  3328.           return;
  3329.         }
  3330.  
  3331.       ++input_line_pointer;
  3332.       SKIP_WHITESPACE ();
  3333.       if (! is_end_of_line[(unsigned char) *input_line_pointer])
  3334.         {
  3335.           expression (&exp);
  3336.           if (exp.X_op != O_symbol)
  3337.             {
  3338.               as_bad (_("bad .weakext directive"));
  3339.               ignore_rest_of_line ();
  3340.               return;
  3341.             }
  3342.           symbol_set_value_expression (symbolP, &exp);
  3343.         }
  3344.     }
  3345.  
  3346.   S_SET_WEAK (symbolP);
  3347.  
  3348.   demand_empty_rest_of_line ();
  3349. }
  3350. #endif /* not TC_MIPS */
  3351. /* Handle .stabs directives.  The actual parsing routine is done by a
  3352.    generic routine.  This routine is called via OBJ_PROCESS_STAB.
  3353.    When this is called, input_line_pointer will be pointing at the
  3354.    value field of the stab.
  3355.  
  3356.    .stabs directives have five fields:
  3357.         "string"        a string, encoding the type information.
  3358.         code            a numeric code, defined in <stab.h>
  3359.         0               a zero
  3360.         desc            a zero or line number
  3361.         value           a numeric value or an address.
  3362.  
  3363.     If the value is relocatable, we transform this into:
  3364.         iss             points as an index into string space
  3365.         value           value from lookup of the name
  3366.         st              st from lookup of the name
  3367.         sc              sc from lookup of the name
  3368.         index           code|CODE_MASK
  3369.  
  3370.     If the value is not relocatable, we transform this into:
  3371.         iss             points as an index into string space
  3372.         value           value
  3373.         st              st_Nil
  3374.         sc              sc_Nil
  3375.         index           code|CODE_MASK
  3376.  
  3377.     .stabn directives have four fields (string is null):
  3378.         code            a numeric code, defined in <stab.h>
  3379.         0               a zero
  3380.         desc            a zero or a line number
  3381.         value           a numeric value or an address.  */
  3382.  
  3383. void
  3384. ecoff_stab (segT sec ATTRIBUTE_UNUSED,
  3385.             int what,
  3386.             const char *string,
  3387.             int type,
  3388.             int other,
  3389.             int desc)
  3390. {
  3391.   efdr_t *save_file_ptr = cur_file_ptr;
  3392.   symbolS *sym;
  3393.   symint_t value;
  3394.   bfd_vma addend;
  3395.   st_t st;
  3396.   sc_t sc;
  3397.   symint_t indx;
  3398.   localsym_t *hold = NULL;
  3399.  
  3400.   ecoff_debugging_seen = 1;
  3401.  
  3402.   /* We don't handle .stabd.  */
  3403.   if (what != 's' && what != 'n')
  3404.     {
  3405.       as_bad (_(".stab%c is not supported"), what);
  3406.       return;
  3407.     }
  3408.  
  3409.   /* A .stabn uses a null name, not an empty string.  */
  3410.   if (what == 'n')
  3411.     string = NULL;
  3412.  
  3413.   /* We ignore the other field.  */
  3414.   if (other != 0)
  3415.     as_warn (_(".stab%c: ignoring non-zero other field"), what);
  3416.  
  3417.   /* Make sure we have a current file.  */
  3418.   if (cur_file_ptr == (efdr_t *) NULL)
  3419.     {
  3420.       add_file ((const char *) NULL, 0, 1);
  3421.       save_file_ptr = cur_file_ptr;
  3422.     }
  3423.  
  3424.   /* For stabs in ECOFF, the first symbol must be @stabs.  This is a
  3425.      signal to gdb.  */
  3426.   if (stabs_seen == 0)
  3427.     mark_stabs (0);
  3428.  
  3429.   /* Line number stabs are handled differently, since they have two
  3430.      values, the line number and the address of the label.  We use the
  3431.      index field (aka desc) to hold the line number, and the value
  3432.      field to hold the address.  The symbol type is st_Label, which
  3433.      should be different from the other stabs, so that gdb can
  3434.      recognize it.  */
  3435.   if (type == N_SLINE)
  3436.     {
  3437.       SYMR dummy_symr;
  3438.       char *name;
  3439.       char name_end;
  3440.  
  3441. #ifndef NO_LISTING
  3442.       if (listing)
  3443.         listing_source_line ((unsigned int) desc);
  3444. #endif
  3445.  
  3446.       dummy_symr.index = desc;
  3447.       if (dummy_symr.index != desc)
  3448.         {
  3449.           as_warn (_("line number (%d) for .stab%c directive cannot fit in index field (20 bits)"),
  3450.                    desc, what);
  3451.           return;
  3452.         }
  3453.  
  3454.       name_end = get_symbol_name (&name);
  3455.       sym = symbol_find_or_make (name);
  3456.       (void) restore_line_pointer (name_end);
  3457.  
  3458.       value = 0;
  3459.       addend = 0;
  3460.       st = st_Label;
  3461.       sc = sc_Text;
  3462.       indx = desc;
  3463.     }
  3464.   else
  3465.     {
  3466. #ifndef NO_LISTING
  3467.       if (listing && (type == N_SO || type == N_SOL))
  3468.         listing_source_file (string);
  3469. #endif
  3470.  
  3471.       if (ISDIGIT (*input_line_pointer)
  3472.           || *input_line_pointer == '-'
  3473.           || *input_line_pointer == '+')
  3474.         {
  3475.           st = st_Nil;
  3476.           sc = sc_Nil;
  3477.           sym = (symbolS *) NULL;
  3478.           value = get_absolute_expression ();
  3479.           addend = 0;
  3480.         }
  3481.       else if (! is_name_beginner ((unsigned char) *input_line_pointer))
  3482.         {
  3483.           as_warn (_("illegal .stab%c directive, bad character"), what);
  3484.           return;
  3485.         }
  3486.       else
  3487.         {
  3488.           expressionS exp;
  3489.  
  3490.           sc = sc_Nil;
  3491.           st = st_Nil;
  3492.  
  3493.           expression (&exp);
  3494.           if (exp.X_op == O_constant)
  3495.             {
  3496.               sym = NULL;
  3497.               value = exp.X_add_number;
  3498.               addend = 0;
  3499.             }
  3500.           else if (exp.X_op == O_symbol)
  3501.             {
  3502.               sym = exp.X_add_symbol;
  3503.               value = 0;
  3504.               addend = exp.X_add_number;
  3505.             }
  3506.           else
  3507.             {
  3508.               sym = make_expr_symbol (&exp);
  3509.               value = 0;
  3510.               addend = 0;
  3511.             }
  3512.         }
  3513.  
  3514.       indx = ECOFF_MARK_STAB (type);
  3515.     }
  3516.  
  3517.   /* Don't store the stabs symbol we are creating as the type of the
  3518.      ECOFF symbol.  We want to compute the type of the ECOFF symbol
  3519.      independently.  */
  3520.   if (sym != (symbolS *) NULL)
  3521.     hold = symbol_get_obj (sym)->ecoff_symbol;
  3522.  
  3523.   (void) add_ecoff_symbol (string, st, sc, sym, addend, value, indx);
  3524.  
  3525.   if (sym != (symbolS *) NULL)
  3526.     symbol_get_obj (sym)->ecoff_symbol = hold;
  3527.  
  3528.   /* Restore normal file type.  */
  3529.   cur_file_ptr = save_file_ptr;
  3530. }
  3531. /* Frob an ECOFF symbol.  Small common symbols go into a special
  3532.    .scommon section rather than bfd_com_section.  */
  3533.  
  3534. void
  3535. ecoff_frob_symbol (symbolS *sym)
  3536. {
  3537.   if (S_IS_COMMON (sym)
  3538.       && S_GET_VALUE (sym) > 0
  3539.       && S_GET_VALUE (sym) <= bfd_get_gp_size (stdoutput))
  3540.     {
  3541.       static asection scom_section;
  3542.       static asymbol scom_symbol;
  3543.  
  3544.       /* We must construct a fake section similar to bfd_com_section
  3545.          but with the name .scommon.  */
  3546.       if (scom_section.name == NULL)
  3547.         {
  3548.           scom_section = *bfd_com_section_ptr;
  3549.           scom_section.name = ".scommon";
  3550.           scom_section.output_section = &scom_section;
  3551.           scom_section.symbol = &scom_symbol;
  3552.           scom_section.symbol_ptr_ptr = &scom_section.symbol;
  3553.           scom_symbol = *bfd_com_section_ptr->symbol;
  3554.           scom_symbol.name = ".scommon";
  3555.           scom_symbol.section = &scom_section;
  3556.         }
  3557.       S_SET_SEGMENT (sym, &scom_section);
  3558.     }
  3559.  
  3560.   /* Double check weak symbols.  */
  3561.   if (S_IS_WEAK (sym))
  3562.     {
  3563.       if (S_IS_COMMON (sym))
  3564.         as_bad (_("symbol `%s' can not be both weak and common"),
  3565.                 S_GET_NAME (sym));
  3566.     }
  3567. }
  3568. /* Add bytes to the symbolic information buffer.  */
  3569.  
  3570. static char *
  3571. ecoff_add_bytes (char **buf,
  3572.                  char **bufend,
  3573.                  char *bufptr,
  3574.                  unsigned long need)
  3575. {
  3576.   unsigned long at;
  3577.   unsigned long want;
  3578.  
  3579.   at = bufptr - *buf;
  3580.   need -= *bufend - bufptr;
  3581.   if (need < PAGE_SIZE)
  3582.     need = PAGE_SIZE;
  3583.   want = (*bufend - *buf) + need;
  3584.   *buf = (char *) xrealloc (*buf, want);
  3585.   *bufend = *buf + want;
  3586.   return *buf + at;
  3587. }
  3588.  
  3589. /* Adjust the symbolic information buffer to the alignment required
  3590.    for the ECOFF target debugging information.  */
  3591.  
  3592. static unsigned long
  3593. ecoff_padding_adjust (const struct ecoff_debug_swap *backend,
  3594.                       char **buf,
  3595.                       char **bufend,
  3596.                       unsigned long offset,
  3597.                       char **bufptrptr)
  3598. {
  3599.   bfd_size_type align;
  3600.  
  3601.   align = backend->debug_align;
  3602.   if ((offset & (align - 1)) != 0)
  3603.     {
  3604.       unsigned long add;
  3605.  
  3606.       add = align - (offset & (align - 1));
  3607.       if ((unsigned long) (*bufend - (*buf + offset)) < add)
  3608.         (void) ecoff_add_bytes (buf, bufend, *buf + offset, add);
  3609.       memset (*buf + offset, 0, add);
  3610.       offset += add;
  3611.       if (bufptrptr != (char **) NULL)
  3612.         *bufptrptr = *buf + offset;
  3613.     }
  3614.  
  3615.   return offset;
  3616. }
  3617.  
  3618. /* Build the line number information.  */
  3619.  
  3620. static unsigned long
  3621. ecoff_build_lineno (const struct ecoff_debug_swap *backend,
  3622.                     char **buf,
  3623.                     char **bufend,
  3624.                     unsigned long offset,
  3625.                     long *linecntptr)
  3626. {
  3627.   char *bufptr;
  3628.   lineno_list_t *l;
  3629.   lineno_list_t *last;
  3630.   efdr_t *file;
  3631.   proc_t *proc;
  3632.   unsigned long c;
  3633.   long iline;
  3634.   long totcount;
  3635.   lineno_list_t first;
  3636.   lineno_list_t *local_first_lineno = first_lineno;
  3637.  
  3638.   if (linecntptr != (long *) NULL)
  3639.     *linecntptr = 0;
  3640.  
  3641.   bufptr = *buf + offset;
  3642.  
  3643.   file = (efdr_t *) NULL;
  3644.   proc = (proc_t *) NULL;
  3645.   last = (lineno_list_t *) NULL;
  3646.   c = offset;
  3647.   iline = 0;
  3648.   totcount = 0;
  3649.  
  3650.   /* FIXME?  Now that MIPS embedded-PIC is gone, it may be safe to
  3651.      remove this code.  */
  3652.   /* For some reason the address of the first procedure is ignored
  3653.      when reading line numbers.  This doesn't matter if the address of
  3654.      the first procedure is 0, but when gcc is generating MIPS
  3655.      embedded PIC code, it will put strings in the .text section
  3656.      before the first procedure.  We cope by inserting a dummy line if
  3657.      the address of the first procedure is not 0.  Hopefully this
  3658.      won't screw things up too badly.
  3659.  
  3660.      Don't do this for ECOFF assembly source line numbers.  They work
  3661.      without this extra attention.  */
  3662.   if (debug_type != DEBUG_ECOFF
  3663.       && first_proc_ptr != (proc_t *) NULL
  3664.       && local_first_lineno != (lineno_list_t *) NULL
  3665.       && ((S_GET_VALUE (first_proc_ptr->sym->as_sym)
  3666.            + bfd_get_section_vma (stdoutput,
  3667.                                   S_GET_SEGMENT (first_proc_ptr->sym->as_sym)))
  3668.           != 0))
  3669.     {
  3670.       first.file = local_first_lineno->file;
  3671.       first.proc = local_first_lineno->proc;
  3672.       first.frag = &zero_address_frag;
  3673.       first.paddr = 0;
  3674.       first.lineno = 0;
  3675.  
  3676.       first.next = local_first_lineno;
  3677.       local_first_lineno = &first;
  3678.     }
  3679.  
  3680.   for (l = local_first_lineno; l != (lineno_list_t *) NULL; l = l->next)
  3681.     {
  3682.       long count;
  3683.       long delta;
  3684.  
  3685.       /* Get the offset to the memory address of the next line number
  3686.          (in words).  Do this first, so that we can skip ahead to the
  3687.          next useful line number entry.  */
  3688.       if (l->next == (lineno_list_t *) NULL)
  3689.         {
  3690.           /* We want a count of zero, but it will be decremented
  3691.              before it is used.  */
  3692.           count = 1;
  3693.         }
  3694.       else if (l->next->frag->fr_address + l->next->paddr
  3695.                > l->frag->fr_address + l->paddr)
  3696.         {
  3697.           count = ((l->next->frag->fr_address + l->next->paddr
  3698.                     - (l->frag->fr_address + l->paddr))
  3699.                    >> 2);
  3700.         }
  3701.       else
  3702.         {
  3703.           /* Don't change last, so we still get the right delta.  */
  3704.           continue;
  3705.         }
  3706.  
  3707.       if (l->file != file || l->proc != proc)
  3708.         {
  3709.           if (l->proc != proc && proc != (proc_t *) NULL)
  3710.             proc->pdr.lnHigh = last->lineno;
  3711.           if (l->file != file && file != (efdr_t *) NULL)
  3712.             {
  3713.               file->fdr.cbLine = c - file->fdr.cbLineOffset;
  3714.               file->fdr.cline = totcount + count;
  3715.               if (linecntptr != (long *) NULL)
  3716.                 *linecntptr += totcount + count;
  3717.               totcount = 0;
  3718.             }
  3719.  
  3720.           if (l->file != file)
  3721.             {
  3722.               efdr_t *last_file = file;
  3723.  
  3724.               file = l->file;
  3725.               if (last_file != (efdr_t *) NULL)
  3726.                 file->fdr.ilineBase
  3727.                   = last_file->fdr.ilineBase + last_file->fdr.cline;
  3728.               else
  3729.                 file->fdr.ilineBase = 0;
  3730.               file->fdr.cbLineOffset = c;
  3731.             }
  3732.           if (l->proc != proc)
  3733.             {
  3734.               proc = l->proc;
  3735.               if (proc != (proc_t *) NULL)
  3736.                 {
  3737.                   proc->pdr.lnLow = l->lineno;
  3738.                   proc->pdr.cbLineOffset = c - file->fdr.cbLineOffset;
  3739.                   proc->pdr.iline = totcount;
  3740.                 }
  3741.             }
  3742.  
  3743.           last = (lineno_list_t *) NULL;
  3744.         }
  3745.  
  3746.       totcount += count;
  3747.  
  3748.       /* Get the offset to this line number.  */
  3749.       if (last == (lineno_list_t *) NULL)
  3750.         delta = 0;
  3751.       else
  3752.         delta = l->lineno - last->lineno;
  3753.  
  3754.       /* Put in the offset to this line number.  */
  3755.       while (delta != 0)
  3756.         {
  3757.           int setcount;
  3758.  
  3759.           /* 1 is added to each count read.  */
  3760.           --count;
  3761.           /* We can only adjust the word count by up to 15 words at a
  3762.              time.  */
  3763.           if (count <= 0x0f)
  3764.             {
  3765.               setcount = count;
  3766.               count = 0;
  3767.             }
  3768.           else
  3769.             {
  3770.               setcount = 0x0f;
  3771.               count -= 0x0f;
  3772.             }
  3773.           if (delta >= -7 && delta <= 7)
  3774.             {
  3775.               if (bufptr >= *bufend)
  3776.                 bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 1);
  3777.               *bufptr++ = setcount + (delta << 4);
  3778.               delta = 0;
  3779.               ++c;
  3780.             }
  3781.           else
  3782.             {
  3783.               int set;
  3784.  
  3785.               if (*bufend - bufptr < 3)
  3786.                 bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 3);
  3787.               *bufptr++ = setcount + (8 << 4);
  3788.               if (delta < -0x8000)
  3789.                 {
  3790.                   set = -0x8000;
  3791.                   delta += 0x8000;
  3792.                 }
  3793.               else if (delta > 0x7fff)
  3794.                 {
  3795.                   set = 0x7fff;
  3796.                   delta -= 0x7fff;
  3797.                 }
  3798.               else
  3799.                 {
  3800.                   set = delta;
  3801.                   delta = 0;
  3802.                 }
  3803.               *bufptr++ = set >> 8;
  3804.               *bufptr++ = set & 0xffff;
  3805.               c += 3;
  3806.             }
  3807.         }
  3808.  
  3809.       /* Finish adjusting the count.  */
  3810.       while (count > 0)
  3811.         {
  3812.           if (bufptr >= *bufend)
  3813.             bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 1);
  3814.           /* 1 is added to each count read.  */
  3815.           --count;
  3816.           if (count > 0x0f)
  3817.             {
  3818.               *bufptr++ = 0x0f;
  3819.               count -= 0x0f;
  3820.             }
  3821.           else
  3822.             {
  3823.               *bufptr++ = count;
  3824.               count = 0;
  3825.             }
  3826.           ++c;
  3827.         }
  3828.  
  3829.       ++iline;
  3830.       last = l;
  3831.     }
  3832.  
  3833.   if (proc != (proc_t *) NULL)
  3834.     proc->pdr.lnHigh = last->lineno;
  3835.   if (file != (efdr_t *) NULL)
  3836.     {
  3837.       file->fdr.cbLine = c - file->fdr.cbLineOffset;
  3838.       file->fdr.cline = totcount;
  3839.     }
  3840.  
  3841.   if (linecntptr != (long *) NULL)
  3842.     *linecntptr += totcount;
  3843.  
  3844.   c = ecoff_padding_adjust (backend, buf, bufend, c, &bufptr);
  3845.  
  3846.   return c;
  3847. }
  3848.  
  3849. /* Build and swap out the symbols.  */
  3850.  
  3851. static unsigned long
  3852. ecoff_build_symbols (const struct ecoff_debug_swap *backend,
  3853.                      char **buf,
  3854.                      char **bufend,
  3855.                      unsigned long offset)
  3856. {
  3857.   const bfd_size_type external_sym_size = backend->external_sym_size;
  3858.   void (* const swap_sym_out) (bfd *, const SYMR *, void *)
  3859.     = backend->swap_sym_out;
  3860.   char *sym_out;
  3861.   long isym;
  3862.   vlinks_t *file_link;
  3863.  
  3864.   sym_out = *buf + offset;
  3865.  
  3866.   isym = 0;
  3867.  
  3868.   /* The symbols are stored by file.  */
  3869.   for (file_link = file_desc.first;
  3870.        file_link != (vlinks_t *) NULL;
  3871.        file_link = file_link->next)
  3872.     {
  3873.       int ifilesym;
  3874.       int fil_cnt;
  3875.       efdr_t *fil_ptr;
  3876.       efdr_t *fil_end;
  3877.  
  3878.       if (file_link->next == (vlinks_t *) NULL)
  3879.         fil_cnt = file_desc.objects_last_page;
  3880.       else
  3881.         fil_cnt = file_desc.objects_per_page;
  3882.       fil_ptr = file_link->datum->file;
  3883.       fil_end = fil_ptr + fil_cnt;
  3884.       for (; fil_ptr < fil_end; fil_ptr++)
  3885.         {
  3886.           vlinks_t *sym_link;
  3887.  
  3888.           fil_ptr->fdr.isymBase = isym;
  3889.           ifilesym = isym;
  3890.           for (sym_link = fil_ptr->symbols.first;
  3891.                sym_link != (vlinks_t *) NULL;
  3892.                sym_link = sym_link->next)
  3893.             {
  3894.               int sym_cnt;
  3895.               localsym_t *sym_ptr;
  3896.               localsym_t *sym_end;
  3897.  
  3898.               if (sym_link->next == (vlinks_t *) NULL)
  3899.                 sym_cnt = fil_ptr->symbols.objects_last_page;
  3900.               else
  3901.                 sym_cnt = fil_ptr->symbols.objects_per_page;
  3902.               sym_ptr = sym_link->datum->sym;
  3903.               sym_end = sym_ptr + sym_cnt;
  3904.               for (; sym_ptr < sym_end; sym_ptr++)
  3905.                 {
  3906.                   int local;
  3907.                   symbolS *as_sym;
  3908.                   forward_t *f;
  3909.  
  3910.                   know (sym_ptr->file_ptr == fil_ptr);
  3911.  
  3912.                   /* If there is no associated gas symbol, then this
  3913.                      is a pure debugging symbol.  We have already
  3914.                      added the name (if any) to fil_ptr->strings.
  3915.                      Otherwise we must decide whether this is an
  3916.                      external or a local symbol (actually, it may be
  3917.                      both if the local provides additional debugging
  3918.                      information for the external).  */
  3919.                   local = 1;
  3920.                   as_sym = sym_ptr->as_sym;
  3921.                   if (as_sym != (symbolS *) NULL)
  3922.                     {
  3923.                       symint_t indx;
  3924.  
  3925.                       /* The value of a block start symbol is the
  3926.                          offset from the start of the procedure.  For
  3927.                          other symbols we just use the gas value (but
  3928.                          we must offset it by the vma of the section,
  3929.                          just as BFD does, because BFD will not see
  3930.                          this value).  */
  3931.                       if (sym_ptr->ecoff_sym.asym.st == (int) st_Block
  3932.                           && sym_ptr->ecoff_sym.asym.sc == (int) sc_Text)
  3933.                         {
  3934.                           symbolS *begin_sym;
  3935.  
  3936.                           know (sym_ptr->proc_ptr != (proc_t *) NULL);
  3937.                           begin_sym = sym_ptr->proc_ptr->sym->as_sym;
  3938.                           if (S_GET_SEGMENT (as_sym)
  3939.                               != S_GET_SEGMENT (begin_sym))
  3940.                             as_warn (_(".begin/.bend in different segments"));
  3941.                           sym_ptr->ecoff_sym.asym.value =
  3942.                             S_GET_VALUE (as_sym) - S_GET_VALUE (begin_sym);
  3943.                         }
  3944.                       else
  3945.                         sym_ptr->ecoff_sym.asym.value =
  3946.                           (S_GET_VALUE (as_sym)
  3947.                            + bfd_get_section_vma (stdoutput,
  3948.                                                   S_GET_SEGMENT (as_sym))
  3949.                            + sym_ptr->addend);
  3950.  
  3951.                       sym_ptr->ecoff_sym.weakext = S_IS_WEAK (as_sym);
  3952.  
  3953.                       /* Set st_Proc to st_StaticProc for local
  3954.                          functions.  */
  3955.                       if (sym_ptr->ecoff_sym.asym.st == st_Proc
  3956.                           && S_IS_DEFINED (as_sym)
  3957.                           && ! S_IS_EXTERNAL (as_sym)
  3958.                           && ! S_IS_WEAK (as_sym))
  3959.                         sym_ptr->ecoff_sym.asym.st = st_StaticProc;
  3960.  
  3961.                       /* Get the type and storage class based on where
  3962.                          the symbol actually wound up.  Traditionally,
  3963.                          N_LBRAC and N_RBRAC are *not* relocated.  */
  3964.                       indx = sym_ptr->ecoff_sym.asym.index;
  3965.                       if (sym_ptr->ecoff_sym.asym.st == st_Nil
  3966.                           && sym_ptr->ecoff_sym.asym.sc == sc_Nil
  3967.                           && (! ECOFF_IS_STAB (&sym_ptr->ecoff_sym.asym)
  3968.                               || ((ECOFF_UNMARK_STAB (indx) != N_LBRAC)
  3969.                                   && (ECOFF_UNMARK_STAB (indx) != N_RBRAC))))
  3970.                         {
  3971.                           segT seg;
  3972.                           const char *segname;
  3973.                           st_t st;
  3974.                           sc_t sc;
  3975.  
  3976.                           seg = S_GET_SEGMENT (as_sym);
  3977.                           segname = segment_name (seg);
  3978.  
  3979.                           if (! ECOFF_IS_STAB (&sym_ptr->ecoff_sym.asym)
  3980.                               && (S_IS_EXTERNAL (as_sym)
  3981.                                   || S_IS_WEAK (as_sym)
  3982.                                   || ! S_IS_DEFINED (as_sym)))
  3983.                             {
  3984.                               if ((symbol_get_bfdsym (as_sym)->flags
  3985.                                    & BSF_FUNCTION) != 0)
  3986.                                 st = st_Proc;
  3987.                               else
  3988.                                 st = st_Global;
  3989.                             }
  3990.                           else if (seg == text_section)
  3991.                             st = st_Label;
  3992.                           else
  3993.                             st = st_Static;
  3994.  
  3995.                           if (! S_IS_DEFINED (as_sym))
  3996.                             {
  3997.                               valueT s;
  3998.  
  3999.                               s = symbol_get_obj (as_sym)->ecoff_extern_size;
  4000.                               if (s == 0
  4001.                                   || s > bfd_get_gp_size (stdoutput))
  4002.                                 sc = sc_Undefined;
  4003.                               else
  4004.                                 {
  4005.                                   sc = sc_SUndefined;
  4006.                                   sym_ptr->ecoff_sym.asym.value = s;
  4007.                                 }
  4008. #ifdef S_SET_SIZE
  4009.                               S_SET_SIZE (as_sym, s);
  4010. #endif
  4011.                             }
  4012.                           else if (S_IS_COMMON (as_sym))
  4013.                             {
  4014.                               if (S_GET_VALUE (as_sym) > 0
  4015.                                   && (S_GET_VALUE (as_sym)
  4016.                                       <= bfd_get_gp_size (stdoutput)))
  4017.                                 sc = sc_SCommon;
  4018.                               else
  4019.                                 sc = sc_Common;
  4020.                             }
  4021.                           else if (seg == text_section)
  4022.                             sc = sc_Text;
  4023.                           else if (seg == data_section)
  4024.                             sc = sc_Data;
  4025.                           else if (strcmp (segname, ".rdata") == 0
  4026.                                    || strcmp (segname, ".rodata") == 0)
  4027.                             sc = sc_RData;
  4028.                           else if (strcmp (segname, ".sdata") == 0)
  4029.                             sc = sc_SData;
  4030.                           else if (seg == bss_section)
  4031.                             sc = sc_Bss;
  4032.                           else if (strcmp (segname, ".sbss") == 0)
  4033.                             sc = sc_SBss;
  4034.                           else if (seg == bfd_abs_section_ptr)
  4035.                             sc = sc_Abs;
  4036.                           else
  4037.                             {
  4038.                               /* This must be a user named section.
  4039.                                  This is not possible in ECOFF, but it
  4040.                                  is in ELF.  */
  4041.                               sc = sc_Data;
  4042.                             }
  4043.  
  4044.                           sym_ptr->ecoff_sym.asym.st = (int) st;
  4045.                           sym_ptr->ecoff_sym.asym.sc = (int) sc;
  4046.                         }
  4047.  
  4048.                       /* This is just an external symbol if it is
  4049.                          outside a procedure and it has a type.
  4050.                          FIXME: g++ will generate symbols which have
  4051.                          different names in the debugging information
  4052.                          than the actual symbol.  Should we handle
  4053.                          them here?  */
  4054.                       if ((S_IS_EXTERNAL (as_sym)
  4055.                            || S_IS_WEAK (as_sym)
  4056.                            || ! S_IS_DEFINED (as_sym))
  4057.                           && sym_ptr->proc_ptr == (proc_t *) NULL
  4058.                           && sym_ptr->ecoff_sym.asym.st != (int) st_Nil
  4059.                           && ! ECOFF_IS_STAB (&sym_ptr->ecoff_sym.asym))
  4060.                         local = 0;
  4061.  
  4062.                       /* This is just an external symbol if it is a
  4063.                          common symbol.  */
  4064.                       if (S_IS_COMMON (as_sym))
  4065.                         local = 0;
  4066.  
  4067.                       /* If an st_end symbol has an associated gas
  4068.                          symbol, then it is a local label created for
  4069.                          a .bend or .end directive.  Stabs line
  4070.                          numbers will have \001 in the names.  */
  4071.                       if (local
  4072.                           && sym_ptr->ecoff_sym.asym.st != st_End
  4073.                           && strchr (sym_ptr->name, '\001') == 0)
  4074.                         sym_ptr->ecoff_sym.asym.iss =
  4075.                           add_string (&fil_ptr->strings,
  4076.                                       fil_ptr->str_hash,
  4077.                                       sym_ptr->name,
  4078.                                       (shash_t **) NULL);
  4079.                     }
  4080.  
  4081.                   /* We now know the index of this symbol; fill in
  4082.                      locations that have been waiting for that
  4083.                      information.  */
  4084.                   if (sym_ptr->begin_ptr != (localsym_t *) NULL)
  4085.                     {
  4086.                       localsym_t *begin_ptr;
  4087.                       st_t begin_type;
  4088.  
  4089.                       know (local);
  4090.                       begin_ptr = sym_ptr->begin_ptr;
  4091.                       know (begin_ptr->sym_index != -1);
  4092.                       sym_ptr->ecoff_sym.asym.index = begin_ptr->sym_index;
  4093.                       if (sym_ptr->ecoff_sym.asym.sc != (int) sc_Info)
  4094.                         sym_ptr->ecoff_sym.asym.iss =
  4095.                           begin_ptr->ecoff_sym.asym.iss;
  4096.  
  4097.                       begin_type = (st_t) begin_ptr->ecoff_sym.asym.st;
  4098.                       if (begin_type == st_File
  4099.                           || begin_type == st_Block)
  4100.                         {
  4101.                           begin_ptr->ecoff_sym.asym.index =
  4102.                             isym - ifilesym + 1;
  4103.                           (*swap_sym_out) (stdoutput,
  4104.                                            &begin_ptr->ecoff_sym.asym,
  4105.                                            (*buf
  4106.                                             + offset
  4107.                                             + (begin_ptr->sym_index
  4108.                                                * external_sym_size)));
  4109.                         }
  4110.                       else
  4111.                         {
  4112.                           know (begin_ptr->index_ptr != (aux_t *) NULL);
  4113.                           begin_ptr->index_ptr->data.isym =
  4114.                             isym - ifilesym + 1;
  4115.                         }
  4116.  
  4117.                       /* The value of the symbol marking the end of a
  4118.                          procedure is the size of the procedure.  The
  4119.                          value of the symbol marking the end of a
  4120.                          block is the offset from the start of the
  4121.                          procedure to the block.  */
  4122.                       if (begin_type == st_Proc
  4123.                           || begin_type == st_StaticProc)
  4124.                         {
  4125.                           know (as_sym != (symbolS *) NULL);
  4126.                           know (begin_ptr->as_sym != (symbolS *) NULL);
  4127.                           if (S_GET_SEGMENT (as_sym)
  4128.                               != S_GET_SEGMENT (begin_ptr->as_sym))
  4129.                             as_warn (_(".begin/.bend in different segments"));
  4130.                           sym_ptr->ecoff_sym.asym.value =
  4131.                             (S_GET_VALUE (as_sym)
  4132.                              - S_GET_VALUE (begin_ptr->as_sym));
  4133.  
  4134.                           /* If the size is odd, this is probably a
  4135.                              mips16 function; force it to be even.  */
  4136.                           if ((sym_ptr->ecoff_sym.asym.value & 1) != 0)
  4137.                             ++sym_ptr->ecoff_sym.asym.value;
  4138.  
  4139. #ifdef S_SET_SIZE
  4140.                           S_SET_SIZE (begin_ptr->as_sym,
  4141.                                       sym_ptr->ecoff_sym.asym.value);
  4142. #endif
  4143.                         }
  4144.                       else if (begin_type == st_Block
  4145.                                && sym_ptr->ecoff_sym.asym.sc != (int) sc_Info)
  4146.                         {
  4147.                           symbolS *begin_sym;
  4148.  
  4149.                           know (as_sym != (symbolS *) NULL);
  4150.                           know (sym_ptr->proc_ptr != (proc_t *) NULL);
  4151.                           begin_sym = sym_ptr->proc_ptr->sym->as_sym;
  4152.                           if (S_GET_SEGMENT (as_sym)
  4153.                               != S_GET_SEGMENT (begin_sym))
  4154.                             as_warn (_(".begin/.bend in different segments"));
  4155.                           sym_ptr->ecoff_sym.asym.value =
  4156.                             S_GET_VALUE (as_sym) - S_GET_VALUE (begin_sym);
  4157.                         }
  4158.                     }
  4159.  
  4160.                   for (f = sym_ptr->forward_ref;
  4161.                        f != (forward_t *) NULL;
  4162.                        f = f->next)
  4163.                     {
  4164.                       know (local);
  4165.                       f->ifd_ptr->data.isym = fil_ptr->file_index;
  4166.                       f->index_ptr->data.rndx.index = isym - ifilesym;
  4167.                     }
  4168.  
  4169.                   if (local)
  4170.                     {
  4171.                       if ((bfd_size_type)(*bufend - sym_out) < external_sym_size)
  4172.                         sym_out = ecoff_add_bytes (buf, bufend,
  4173.                                                    sym_out,
  4174.                                                    external_sym_size);
  4175.                       (*swap_sym_out) (stdoutput, &sym_ptr->ecoff_sym.asym,
  4176.                                        sym_out);
  4177.                       sym_out += external_sym_size;
  4178.  
  4179.                       sym_ptr->sym_index = isym;
  4180.  
  4181.                       if (sym_ptr->proc_ptr != (proc_t *) NULL
  4182.                           && sym_ptr->proc_ptr->sym == sym_ptr)
  4183.                         sym_ptr->proc_ptr->pdr.isym = isym - ifilesym;
  4184.  
  4185.                       ++isym;
  4186.                     }
  4187.  
  4188.                   /* Record the local symbol index and file number in
  4189.                      case this is an external symbol.  Note that this
  4190.                      destroys the asym.index field.  */
  4191.                   if (as_sym != (symbolS *) NULL
  4192.                       && symbol_get_obj (as_sym)->ecoff_symbol == sym_ptr)
  4193.                     {
  4194.                       if ((sym_ptr->ecoff_sym.asym.st == st_Proc
  4195.                            || sym_ptr->ecoff_sym.asym.st == st_StaticProc)
  4196.                           && local)
  4197.                         sym_ptr->ecoff_sym.asym.index = isym - ifilesym - 1;
  4198.                       sym_ptr->ecoff_sym.ifd = fil_ptr->file_index;
  4199.  
  4200.                       /* Don't try to merge an FDR which has an
  4201.                          external symbol attached to it.  */
  4202.                       if (S_IS_EXTERNAL (as_sym) || S_IS_WEAK (as_sym))
  4203.                         fil_ptr->fdr.fMerge = 0;
  4204.                     }
  4205.                 }
  4206.             }
  4207.           fil_ptr->fdr.csym = isym - fil_ptr->fdr.isymBase;
  4208.         }
  4209.     }
  4210.  
  4211.   return offset + isym * external_sym_size;
  4212. }
  4213.  
  4214. /* Swap out the procedure information.  */
  4215.  
  4216. static unsigned long
  4217. ecoff_build_procs (const struct ecoff_debug_swap *backend,
  4218.                    char **buf,
  4219.                    char **bufend,
  4220.                    unsigned long offset)
  4221. {
  4222.   const bfd_size_type external_pdr_size = backend->external_pdr_size;
  4223.   void (* const swap_pdr_out) (bfd *, const PDR *, void *)
  4224.     = backend->swap_pdr_out;
  4225.   char *pdr_out;
  4226.   long iproc;
  4227.   vlinks_t *file_link;
  4228.  
  4229.   pdr_out = *buf + offset;
  4230.  
  4231.   iproc = 0;
  4232.  
  4233.   /* The procedures are stored by file.  */
  4234.   for (file_link = file_desc.first;
  4235.        file_link != (vlinks_t *) NULL;
  4236.        file_link = file_link->next)
  4237.     {
  4238.       int fil_cnt;
  4239.       efdr_t *fil_ptr;
  4240.       efdr_t *fil_end;
  4241.  
  4242.       if (file_link->next == (vlinks_t *) NULL)
  4243.         fil_cnt = file_desc.objects_last_page;
  4244.       else
  4245.         fil_cnt = file_desc.objects_per_page;
  4246.       fil_ptr = file_link->datum->file;
  4247.       fil_end = fil_ptr + fil_cnt;
  4248.       for (; fil_ptr < fil_end; fil_ptr++)
  4249.         {
  4250.           vlinks_t *proc_link;
  4251.           int first;
  4252.  
  4253.           fil_ptr->fdr.ipdFirst = iproc;
  4254.           first = 1;
  4255.           for (proc_link = fil_ptr->procs.first;
  4256.                proc_link != (vlinks_t *) NULL;
  4257.                proc_link = proc_link->next)
  4258.             {
  4259.               int prc_cnt;
  4260.               proc_t *proc_ptr;
  4261.               proc_t *proc_end;
  4262.  
  4263.               if (proc_link->next == (vlinks_t *) NULL)
  4264.                 prc_cnt = fil_ptr->procs.objects_last_page;
  4265.               else
  4266.                 prc_cnt = fil_ptr->procs.objects_per_page;
  4267.               proc_ptr = proc_link->datum->proc;
  4268.               proc_end = proc_ptr + prc_cnt;
  4269.               for (; proc_ptr < proc_end; proc_ptr++)
  4270.                 {
  4271.                   symbolS *adr_sym;
  4272.                   unsigned long adr;
  4273.  
  4274.                   adr_sym = proc_ptr->sym->as_sym;
  4275.                   adr = (S_GET_VALUE (adr_sym)
  4276.                          + bfd_get_section_vma (stdoutput,
  4277.                                                 S_GET_SEGMENT (adr_sym)));
  4278.                   if (first)
  4279.                     {
  4280.                       /* This code used to force the adr of the very
  4281.                          first fdr to be 0.  However, the native tools
  4282.                          don't do that, and I can't remember why it
  4283.                          used to work that way, so I took it out.  */
  4284.                       fil_ptr->fdr.adr = adr;
  4285.                       first = 0;
  4286.                     }
  4287.                   proc_ptr->pdr.adr = adr - fil_ptr->fdr.adr;
  4288.                   if ((bfd_size_type)(*bufend - pdr_out) < external_pdr_size)
  4289.                     pdr_out = ecoff_add_bytes (buf, bufend,
  4290.                                                pdr_out,
  4291.                                                external_pdr_size);
  4292.                   (*swap_pdr_out) (stdoutput, &proc_ptr->pdr, pdr_out);
  4293.                   pdr_out += external_pdr_size;
  4294.                   ++iproc;
  4295.                 }
  4296.             }
  4297.           fil_ptr->fdr.cpd = iproc - fil_ptr->fdr.ipdFirst;
  4298.         }
  4299.     }
  4300.  
  4301.   return offset + iproc * external_pdr_size;
  4302. }
  4303.  
  4304. /* Swap out the aux information.  */
  4305.  
  4306. static unsigned long
  4307. ecoff_build_aux (const struct ecoff_debug_swap *backend,
  4308.                  char **buf,
  4309.                  char **bufend,
  4310.                  unsigned long offset)
  4311. {
  4312.   int bigendian;
  4313.   union aux_ext *aux_out;
  4314.   long iaux;
  4315.   vlinks_t *file_link;
  4316.  
  4317.   bigendian = bfd_big_endian (stdoutput);
  4318.  
  4319.   aux_out = (union aux_ext *) (*buf + offset);
  4320.  
  4321.   iaux = 0;
  4322.  
  4323.   /* The aux entries are stored by file.  */
  4324.   for (file_link = file_desc.first;
  4325.        file_link != (vlinks_t *) NULL;
  4326.        file_link = file_link->next)
  4327.     {
  4328.       int fil_cnt;
  4329.       efdr_t *fil_ptr;
  4330.       efdr_t *fil_end;
  4331.  
  4332.       if (file_link->next == (vlinks_t *) NULL)
  4333.         fil_cnt = file_desc.objects_last_page;
  4334.       else
  4335.         fil_cnt = file_desc.objects_per_page;
  4336.       fil_ptr = file_link->datum->file;
  4337.       fil_end = fil_ptr + fil_cnt;
  4338.       for (; fil_ptr < fil_end; fil_ptr++)
  4339.         {
  4340.           vlinks_t *aux_link;
  4341.  
  4342.           fil_ptr->fdr.fBigendian = bigendian;
  4343.           fil_ptr->fdr.iauxBase = iaux;
  4344.           for (aux_link = fil_ptr->aux_syms.first;
  4345.                aux_link != (vlinks_t *) NULL;
  4346.                aux_link = aux_link->next)
  4347.             {
  4348.               int aux_cnt;
  4349.               aux_t *aux_ptr;
  4350.               aux_t *aux_end;
  4351.  
  4352.               if (aux_link->next == (vlinks_t *) NULL)
  4353.                 aux_cnt = fil_ptr->aux_syms.objects_last_page;
  4354.               else
  4355.                 aux_cnt = fil_ptr->aux_syms.objects_per_page;
  4356.               aux_ptr = aux_link->datum->aux;
  4357.               aux_end = aux_ptr + aux_cnt;
  4358.               for (; aux_ptr < aux_end; aux_ptr++)
  4359.                 {
  4360.                   if ((unsigned long) (*bufend - (char *) aux_out)
  4361.                       < sizeof (union aux_ext))
  4362.                     aux_out = ((union aux_ext *)
  4363.                                ecoff_add_bytes (buf, bufend,
  4364.                                                 (char *) aux_out,
  4365.                                                 sizeof (union aux_ext)));
  4366.                   switch (aux_ptr->type)
  4367.                     {
  4368.                     case aux_tir:
  4369.                       (*backend->swap_tir_out) (bigendian,
  4370.                                                 &aux_ptr->data.ti,
  4371.                                                 &aux_out->a_ti);
  4372.                       break;
  4373.                     case aux_rndx:
  4374.                       (*backend->swap_rndx_out) (bigendian,
  4375.                                                  &aux_ptr->data.rndx,
  4376.                                                  &aux_out->a_rndx);
  4377.                       break;
  4378.                     case aux_dnLow:
  4379.                       AUX_PUT_DNLOW (bigendian, aux_ptr->data.dnLow,
  4380.                                      aux_out);
  4381.                       break;
  4382.                     case aux_dnHigh:
  4383.                       AUX_PUT_DNHIGH (bigendian, aux_ptr->data.dnHigh,
  4384.                                       aux_out);
  4385.                       break;
  4386.                     case aux_isym:
  4387.                       AUX_PUT_ISYM (bigendian, aux_ptr->data.isym,
  4388.                                     aux_out);
  4389.                       break;
  4390.                     case aux_iss:
  4391.                       AUX_PUT_ISS (bigendian, aux_ptr->data.iss,
  4392.                                    aux_out);
  4393.                       break;
  4394.                     case aux_width:
  4395.                       AUX_PUT_WIDTH (bigendian, aux_ptr->data.width,
  4396.                                      aux_out);
  4397.                       break;
  4398.                     case aux_count:
  4399.                       AUX_PUT_COUNT (bigendian, aux_ptr->data.count,
  4400.                                      aux_out);
  4401.                       break;
  4402.                     }
  4403.  
  4404.                   ++aux_out;
  4405.                   ++iaux;
  4406.                 }
  4407.             }
  4408.           fil_ptr->fdr.caux = iaux - fil_ptr->fdr.iauxBase;
  4409.         }
  4410.     }
  4411.  
  4412.   return ecoff_padding_adjust (backend, buf, bufend,
  4413.                                offset + iaux * sizeof (union aux_ext),
  4414.                                (char **) NULL);
  4415. }
  4416.  
  4417. /* Copy out the strings from a varray_t.  This returns the number of
  4418.    bytes copied, rather than the new offset.  */
  4419.  
  4420. static unsigned long
  4421. ecoff_build_strings (char **buf,
  4422.                      char **bufend,
  4423.                      unsigned long offset,
  4424.                      varray_t *vp)
  4425. {
  4426.   unsigned long istr;
  4427.   char *str_out;
  4428.   vlinks_t *str_link;
  4429.  
  4430.   str_out = *buf + offset;
  4431.  
  4432.   istr = 0;
  4433.  
  4434.   for (str_link = vp->first;
  4435.        str_link != (vlinks_t *) NULL;
  4436.        str_link = str_link->next)
  4437.     {
  4438.       unsigned long str_cnt;
  4439.  
  4440.       if (str_link->next == (vlinks_t *) NULL)
  4441.         str_cnt = vp->objects_last_page;
  4442.       else
  4443.         str_cnt = vp->objects_per_page;
  4444.  
  4445.       if ((unsigned long)(*bufend - str_out) < str_cnt)
  4446.         str_out = ecoff_add_bytes (buf, bufend, str_out, str_cnt);
  4447.  
  4448.       memcpy (str_out, str_link->datum->byte, str_cnt);
  4449.       str_out += str_cnt;
  4450.       istr += str_cnt;
  4451.     }
  4452.  
  4453.   return istr;
  4454. }
  4455.  
  4456. /* Dump out the local strings.  */
  4457.  
  4458. static unsigned long
  4459. ecoff_build_ss (const struct ecoff_debug_swap *backend,
  4460.                 char **buf,
  4461.                 char **bufend,
  4462.                 unsigned long offset)
  4463. {
  4464.   long iss;
  4465.   vlinks_t *file_link;
  4466.  
  4467.   iss = 0;
  4468.  
  4469.   for (file_link = file_desc.first;
  4470.        file_link != (vlinks_t *) NULL;
  4471.        file_link = file_link->next)
  4472.     {
  4473.       int fil_cnt;
  4474.       efdr_t *fil_ptr;
  4475.       efdr_t *fil_end;
  4476.  
  4477.       if (file_link->next == (vlinks_t *) NULL)
  4478.         fil_cnt = file_desc.objects_last_page;
  4479.       else
  4480.         fil_cnt = file_desc.objects_per_page;
  4481.       fil_ptr = file_link->datum->file;
  4482.       fil_end = fil_ptr + fil_cnt;
  4483.       for (; fil_ptr < fil_end; fil_ptr++)
  4484.         {
  4485.           long ss_cnt;
  4486.  
  4487.           fil_ptr->fdr.issBase = iss;
  4488.           ss_cnt = ecoff_build_strings (buf, bufend, offset + iss,
  4489.                                         &fil_ptr->strings);
  4490.           fil_ptr->fdr.cbSs = ss_cnt;
  4491.           iss += ss_cnt;
  4492.         }
  4493.     }
  4494.  
  4495.   return ecoff_padding_adjust (backend, buf, bufend, offset + iss,
  4496.                                (char **) NULL);
  4497. }
  4498.  
  4499. /* Swap out the file descriptors.  */
  4500.  
  4501. static unsigned long
  4502. ecoff_build_fdr (const struct ecoff_debug_swap *backend,
  4503.                  char **buf,
  4504.                  char **bufend,
  4505.                  unsigned long offset)
  4506. {
  4507.   const bfd_size_type external_fdr_size = backend->external_fdr_size;
  4508.   void (* const swap_fdr_out) (bfd *, const FDR *, void *)
  4509.     = backend->swap_fdr_out;
  4510.   long ifile;
  4511.   char *fdr_out;
  4512.   vlinks_t *file_link;
  4513.  
  4514.   ifile = 0;
  4515.  
  4516.   fdr_out = *buf + offset;
  4517.  
  4518.   for (file_link = file_desc.first;
  4519.        file_link != (vlinks_t *) NULL;
  4520.        file_link = file_link->next)
  4521.     {
  4522.       int fil_cnt;
  4523.       efdr_t *fil_ptr;
  4524.       efdr_t *fil_end;
  4525.  
  4526.       if (file_link->next == (vlinks_t *) NULL)
  4527.         fil_cnt = file_desc.objects_last_page;
  4528.       else
  4529.         fil_cnt = file_desc.objects_per_page;
  4530.       fil_ptr = file_link->datum->file;
  4531.       fil_end = fil_ptr + fil_cnt;
  4532.       for (; fil_ptr < fil_end; fil_ptr++)
  4533.         {
  4534.           if ((bfd_size_type)(*bufend - fdr_out) < external_fdr_size)
  4535.             fdr_out = ecoff_add_bytes (buf, bufend, fdr_out,
  4536.                                        external_fdr_size);
  4537.           (*swap_fdr_out) (stdoutput, &fil_ptr->fdr, fdr_out);
  4538.           fdr_out += external_fdr_size;
  4539.           ++ifile;
  4540.         }
  4541.     }
  4542.  
  4543.   return offset + ifile * external_fdr_size;
  4544. }
  4545.  
  4546. /* Set up the external symbols.  These are supposed to be handled by
  4547.    the backend.  This routine just gets the right information and
  4548.    calls a backend function to deal with it.  */
  4549.  
  4550. static void
  4551. ecoff_setup_ext (void)
  4552. {
  4553.   symbolS *sym;
  4554.  
  4555.   for (sym = symbol_rootP; sym != (symbolS *) NULL; sym = symbol_next (sym))
  4556.     {
  4557.       if (symbol_get_obj (sym)->ecoff_symbol == NULL)
  4558.         continue;
  4559.  
  4560.       /* If this is a local symbol, then force the fields to zero.  */
  4561.       if (! S_IS_EXTERNAL (sym)
  4562.           && ! S_IS_WEAK (sym)
  4563.           && S_IS_DEFINED (sym))
  4564.         {
  4565.           struct localsym *lsym;
  4566.  
  4567.           lsym = symbol_get_obj (sym)->ecoff_symbol;
  4568.           lsym->ecoff_sym.asym.value = 0;
  4569.           lsym->ecoff_sym.asym.st = (int) st_Nil;
  4570.           lsym->ecoff_sym.asym.sc = (int) sc_Nil;
  4571.           lsym->ecoff_sym.asym.index = indexNil;
  4572.         }
  4573.  
  4574.       obj_ecoff_set_ext (sym, &symbol_get_obj (sym)->ecoff_symbol->ecoff_sym);
  4575.     }
  4576. }
  4577.  
  4578. /* Build the ECOFF debugging information.  */
  4579.  
  4580. unsigned long
  4581. ecoff_build_debug (HDRR *hdr,
  4582.                    char **bufp,
  4583.                    const struct ecoff_debug_swap *backend)
  4584. {
  4585.   const bfd_size_type external_pdr_size = backend->external_pdr_size;
  4586.   tag_t *ptag;
  4587.   tag_t *ptag_next;
  4588.   efdr_t *fil_ptr;
  4589.   int end_warning;
  4590.   efdr_t *hold_file_ptr;
  4591.   proc_t *hold_proc_ptr;
  4592.   symbolS *sym;
  4593.   char *buf;
  4594.   char *bufend;
  4595.   unsigned long offset;
  4596.  
  4597.   /* Make sure we have a file.  */
  4598.   if (first_file == (efdr_t *) NULL)
  4599.     add_file ((const char *) NULL, 0, 1);
  4600.  
  4601.   /* Handle any top level tags.  */
  4602.   for (ptag = top_tag_head->first_tag;
  4603.        ptag != (tag_t *) NULL;
  4604.        ptag = ptag_next)
  4605.     {
  4606.       if (ptag->forward_ref != (forward_t *) NULL)
  4607.         add_unknown_tag (ptag);
  4608.  
  4609.       ptag_next = ptag->same_block;
  4610.       ptag->hash_ptr->tag_ptr = ptag->same_name;
  4611.       free_tag (ptag);
  4612.     }
  4613.  
  4614.   free_thead (top_tag_head);
  4615.  
  4616.   /* Look through the symbols.  Add debugging information for each
  4617.      symbol that has not already received it.  */
  4618.   hold_file_ptr = cur_file_ptr;
  4619.   hold_proc_ptr = cur_proc_ptr;
  4620.   cur_proc_ptr = (proc_t *) NULL;
  4621.   for (sym = symbol_rootP; sym != (symbolS *) NULL; sym = symbol_next (sym))
  4622.     {
  4623.       if (symbol_get_obj (sym)->ecoff_symbol != NULL
  4624.           || symbol_get_obj (sym)->ecoff_file == (efdr_t *) NULL
  4625.           || (symbol_get_bfdsym (sym)->flags & BSF_SECTION_SYM) != 0)
  4626.         continue;
  4627.  
  4628.       cur_file_ptr = symbol_get_obj (sym)->ecoff_file;
  4629.       add_ecoff_symbol ((const char *) NULL, st_Nil, sc_Nil, sym,
  4630.                         (bfd_vma) 0, S_GET_VALUE (sym), indexNil);
  4631.     }
  4632.   cur_proc_ptr = hold_proc_ptr;
  4633.   cur_file_ptr = hold_file_ptr;
  4634.  
  4635.   /* Output an ending symbol for all the files.  We have to do this
  4636.      here for the last file, so we may as well do it for all of the
  4637.      files.  */
  4638.   end_warning = 0;
  4639.   for (fil_ptr = first_file;
  4640.        fil_ptr != (efdr_t *) NULL;
  4641.        fil_ptr = fil_ptr->next_file)
  4642.     {
  4643.       cur_file_ptr = fil_ptr;
  4644.       while (cur_file_ptr->cur_scope != (scope_t *) NULL
  4645.              && cur_file_ptr->cur_scope->prev != (scope_t *) NULL)
  4646.         {
  4647.           cur_file_ptr->cur_scope = cur_file_ptr->cur_scope->prev;
  4648.           if (! end_warning && ! cur_file_ptr->fake)
  4649.             {
  4650.               as_warn (_("missing .end or .bend at end of file"));
  4651.               end_warning = 1;
  4652.             }
  4653.         }
  4654.       if (cur_file_ptr->cur_scope != (scope_t *) NULL)
  4655.         (void) add_ecoff_symbol ((const char *) NULL,
  4656.                                  st_End, sc_Text,
  4657.                                  (symbolS *) NULL,
  4658.                                  (bfd_vma) 0,
  4659.                                  (symint_t) 0,
  4660.                                  (symint_t) 0);
  4661.     }
  4662.  
  4663.   /* Build the symbolic information.  */
  4664.   offset = 0;
  4665.   buf = (char *) xmalloc (PAGE_SIZE);
  4666.   bufend = buf + PAGE_SIZE;
  4667.  
  4668.   /* Build the line number information.  */
  4669.   hdr->cbLineOffset = offset;
  4670.   offset = ecoff_build_lineno (backend, &buf, &bufend, offset,
  4671.                                &hdr->ilineMax);
  4672.   hdr->cbLine = offset - hdr->cbLineOffset;
  4673.  
  4674.   /* We don't use dense numbers at all.  */
  4675.   hdr->idnMax = 0;
  4676.   hdr->cbDnOffset = 0;
  4677.  
  4678.   /* We can't build the PDR table until we have built the symbols,
  4679.      because a PDR contains a symbol index.  However, we set aside
  4680.      space at this point.  */
  4681.   hdr->ipdMax = proc_cnt;
  4682.   hdr->cbPdOffset = offset;
  4683.   if ((bfd_size_type)(bufend - (buf + offset)) < proc_cnt * external_pdr_size)
  4684.     (void) ecoff_add_bytes (&buf, &bufend, buf + offset,
  4685.                             proc_cnt * external_pdr_size);
  4686.   offset += proc_cnt * external_pdr_size;
  4687.  
  4688.   /* Build the local symbols.  */
  4689.   hdr->cbSymOffset = offset;
  4690.   offset = ecoff_build_symbols (backend, &buf, &bufend, offset);
  4691.   hdr->isymMax = (offset - hdr->cbSymOffset) / backend->external_sym_size;
  4692.  
  4693.   /* Building the symbols initializes the symbol index in the PDR's.
  4694.      Now we can swap out the PDR's.  */
  4695.   (void) ecoff_build_procs (backend, &buf, &bufend, hdr->cbPdOffset);
  4696.  
  4697.   /* We don't use optimization symbols.  */
  4698.   hdr->ioptMax = 0;
  4699.   hdr->cbOptOffset = 0;
  4700.  
  4701.   /* Swap out the auxiliary type information.  */
  4702.   hdr->cbAuxOffset = offset;
  4703.   offset = ecoff_build_aux (backend, &buf, &bufend, offset);
  4704.   hdr->iauxMax = (offset - hdr->cbAuxOffset) / sizeof (union aux_ext);
  4705.  
  4706.   /* Copy out the local strings.  */
  4707.   hdr->cbSsOffset = offset;
  4708.   offset = ecoff_build_ss (backend, &buf, &bufend, offset);
  4709.   hdr->issMax = offset - hdr->cbSsOffset;
  4710.  
  4711.   /* We don't use relative file descriptors.  */
  4712.   hdr->crfd = 0;
  4713.   hdr->cbRfdOffset = 0;
  4714.  
  4715.   /* Swap out the file descriptors.  */
  4716.   hdr->cbFdOffset = offset;
  4717.   offset = ecoff_build_fdr (backend, &buf, &bufend, offset);
  4718.   hdr->ifdMax = (offset - hdr->cbFdOffset) / backend->external_fdr_size;
  4719.  
  4720.   /* Set up the external symbols, which are handled by the BFD back
  4721.      end.  */
  4722.   hdr->issExtMax = 0;
  4723.   hdr->cbSsExtOffset = 0;
  4724.   hdr->iextMax = 0;
  4725.   hdr->cbExtOffset = 0;
  4726.   ecoff_setup_ext ();
  4727.  
  4728.   know ((offset & (backend->debug_align - 1)) == 0);
  4729.  
  4730.   /* FIXME: This value should be determined from the .verstamp directive,
  4731.      with reasonable defaults in config files.  */
  4732. #ifdef TC_ALPHA
  4733.   hdr->vstamp = 0x030b;
  4734. #else
  4735.   hdr->vstamp = 0x020b;
  4736. #endif
  4737.  
  4738.   *bufp = buf;
  4739.   return offset;
  4740. }
  4741. /* Allocate a cluster of pages.  */
  4742.  
  4743. #ifndef MALLOC_CHECK
  4744.  
  4745. static page_type *
  4746. allocate_cluster (unsigned long npages)
  4747. {
  4748.   page_type *value = (page_type *) xmalloc (npages * PAGE_USIZE);
  4749.  
  4750. #ifdef ECOFF_DEBUG
  4751.   if (debug > 3)
  4752.     fprintf (stderr, "\talloc\tnpages = %d, value = 0x%.8x\n", npages, value);
  4753. #endif
  4754.  
  4755.   memset (value, 0, npages * PAGE_USIZE);
  4756.  
  4757.   return value;
  4758. }
  4759.  
  4760. static page_type *cluster_ptr = NULL;
  4761. static unsigned long pages_left = 0;
  4762.  
  4763. #endif /* MALLOC_CHECK */
  4764.  
  4765. /* Allocate one page (which is initialized to 0).  */
  4766.  
  4767. static page_type *
  4768. allocate_page (void)
  4769. {
  4770. #ifndef MALLOC_CHECK
  4771.  
  4772.   if (pages_left == 0)
  4773.     {
  4774.       pages_left = MAX_CLUSTER_PAGES;
  4775.       cluster_ptr = allocate_cluster (pages_left);
  4776.     }
  4777.  
  4778.   pages_left--;
  4779.   return cluster_ptr++;
  4780.  
  4781. #else /* MALLOC_CHECK */
  4782.  
  4783.   page_type *ptr;
  4784.  
  4785.   ptr = xmalloc (PAGE_USIZE);
  4786.   memset (ptr, 0, PAGE_USIZE);
  4787.   return ptr;
  4788.  
  4789. #endif /* MALLOC_CHECK */
  4790. }
  4791. /* Allocate scoping information.  */
  4792.  
  4793. static scope_t *
  4794. allocate_scope (void)
  4795. {
  4796.   scope_t *ptr;
  4797.   static scope_t initial_scope;
  4798.  
  4799. #ifndef MALLOC_CHECK
  4800.  
  4801.   ptr = alloc_counts[(int) alloc_type_scope].free_list.f_scope;
  4802.   if (ptr != (scope_t *) NULL)
  4803.     alloc_counts[(int) alloc_type_scope].free_list.f_scope = ptr->free;
  4804.   else
  4805.     {
  4806.       int unallocated   = alloc_counts[(int) alloc_type_scope].unallocated;
  4807.       page_type *cur_page       = alloc_counts[(int) alloc_type_scope].cur_page;
  4808.  
  4809.       if (unallocated == 0)
  4810.         {
  4811.           unallocated = PAGE_SIZE / sizeof (scope_t);
  4812.           alloc_counts[(int) alloc_type_scope].cur_page = cur_page = allocate_page ();
  4813.           alloc_counts[(int) alloc_type_scope].total_pages++;
  4814.         }
  4815.  
  4816.       ptr = &cur_page->scope[--unallocated];
  4817.       alloc_counts[(int) alloc_type_scope].unallocated = unallocated;
  4818.     }
  4819.  
  4820. #else
  4821.  
  4822.   ptr = (scope_t *) xmalloc (sizeof (scope_t));
  4823.  
  4824. #endif
  4825.  
  4826.   alloc_counts[(int) alloc_type_scope].total_alloc++;
  4827.   *ptr = initial_scope;
  4828.   return ptr;
  4829. }
  4830.  
  4831. /* Free scoping information.  */
  4832.  
  4833. static void
  4834. free_scope (scope_t *ptr)
  4835. {
  4836.   alloc_counts[(int) alloc_type_scope].total_free++;
  4837.  
  4838. #ifndef MALLOC_CHECK
  4839.   ptr->free = alloc_counts[(int) alloc_type_scope].free_list.f_scope;
  4840.   alloc_counts[(int) alloc_type_scope].free_list.f_scope = ptr;
  4841. #else
  4842.   free ((void *) ptr);
  4843. #endif
  4844. }
  4845. /* Allocate links for pages in a virtual array.  */
  4846.  
  4847. static vlinks_t *
  4848. allocate_vlinks (void)
  4849. {
  4850.   vlinks_t *ptr;
  4851.   static vlinks_t initial_vlinks;
  4852.  
  4853. #ifndef MALLOC_CHECK
  4854.  
  4855.   int unallocated = alloc_counts[(int) alloc_type_vlinks].unallocated;
  4856.   page_type *cur_page = alloc_counts[(int) alloc_type_vlinks].cur_page;
  4857.  
  4858.   if (unallocated == 0)
  4859.     {
  4860.       unallocated = PAGE_SIZE / sizeof (vlinks_t);
  4861.       alloc_counts[(int) alloc_type_vlinks].cur_page = cur_page = allocate_page ();
  4862.       alloc_counts[(int) alloc_type_vlinks].total_pages++;
  4863.     }
  4864.  
  4865.   ptr = &cur_page->vlinks[--unallocated];
  4866.   alloc_counts[(int) alloc_type_vlinks].unallocated = unallocated;
  4867.  
  4868. #else
  4869.  
  4870.   ptr = (vlinks_t *) xmalloc (sizeof (vlinks_t));
  4871.  
  4872. #endif
  4873.  
  4874.   alloc_counts[(int) alloc_type_vlinks].total_alloc++;
  4875.   *ptr = initial_vlinks;
  4876.   return ptr;
  4877. }
  4878. /* Allocate string hash buckets.  */
  4879.  
  4880. static shash_t *
  4881. allocate_shash (void)
  4882. {
  4883.   shash_t *ptr;
  4884.   static shash_t initial_shash;
  4885.  
  4886. #ifndef MALLOC_CHECK
  4887.  
  4888.   int unallocated = alloc_counts[(int) alloc_type_shash].unallocated;
  4889.   page_type *cur_page = alloc_counts[(int) alloc_type_shash].cur_page;
  4890.  
  4891.   if (unallocated == 0)
  4892.     {
  4893.       unallocated = PAGE_SIZE / sizeof (shash_t);
  4894.       alloc_counts[(int) alloc_type_shash].cur_page = cur_page = allocate_page ();
  4895.       alloc_counts[(int) alloc_type_shash].total_pages++;
  4896.     }
  4897.  
  4898.   ptr = &cur_page->shash[--unallocated];
  4899.   alloc_counts[(int) alloc_type_shash].unallocated = unallocated;
  4900.  
  4901. #else
  4902.  
  4903.   ptr = (shash_t *) xmalloc (sizeof (shash_t));
  4904.  
  4905. #endif
  4906.  
  4907.   alloc_counts[(int) alloc_type_shash].total_alloc++;
  4908.   *ptr = initial_shash;
  4909.   return ptr;
  4910. }
  4911. /* Allocate type hash buckets.  */
  4912.  
  4913. static thash_t *
  4914. allocate_thash (void)
  4915. {
  4916.   thash_t *ptr;
  4917.   static thash_t initial_thash;
  4918.  
  4919. #ifndef MALLOC_CHECK
  4920.  
  4921.   int unallocated = alloc_counts[(int) alloc_type_thash].unallocated;
  4922.   page_type *cur_page = alloc_counts[(int) alloc_type_thash].cur_page;
  4923.  
  4924.   if (unallocated == 0)
  4925.     {
  4926.       unallocated = PAGE_SIZE / sizeof (thash_t);
  4927.       alloc_counts[(int) alloc_type_thash].cur_page = cur_page = allocate_page ();
  4928.       alloc_counts[(int) alloc_type_thash].total_pages++;
  4929.     }
  4930.  
  4931.   ptr = &cur_page->thash[--unallocated];
  4932.   alloc_counts[(int) alloc_type_thash].unallocated = unallocated;
  4933.  
  4934. #else
  4935.  
  4936.   ptr = (thash_t *) xmalloc (sizeof (thash_t));
  4937.  
  4938. #endif
  4939.  
  4940.   alloc_counts[(int) alloc_type_thash].total_alloc++;
  4941.   *ptr = initial_thash;
  4942.   return ptr;
  4943. }
  4944. /* Allocate structure, union, or enum tag information.  */
  4945.  
  4946. static tag_t *
  4947. allocate_tag (void)
  4948. {
  4949.   tag_t *ptr;
  4950.   static tag_t initial_tag;
  4951.  
  4952. #ifndef MALLOC_CHECK
  4953.  
  4954.   ptr = alloc_counts[(int) alloc_type_tag].free_list.f_tag;
  4955.   if (ptr != (tag_t *) NULL)
  4956.     alloc_counts[(int) alloc_type_tag].free_list.f_tag = ptr->free;
  4957.   else
  4958.     {
  4959.       int unallocated = alloc_counts[(int) alloc_type_tag].unallocated;
  4960.       page_type *cur_page = alloc_counts[(int) alloc_type_tag].cur_page;
  4961.  
  4962.       if (unallocated == 0)
  4963.         {
  4964.           unallocated = PAGE_SIZE / sizeof (tag_t);
  4965.           alloc_counts[(int) alloc_type_tag].cur_page = cur_page = allocate_page ();
  4966.           alloc_counts[(int) alloc_type_tag].total_pages++;
  4967.         }
  4968.  
  4969.       ptr = &cur_page->tag[--unallocated];
  4970.       alloc_counts[(int) alloc_type_tag].unallocated = unallocated;
  4971.     }
  4972.  
  4973. #else
  4974.  
  4975.   ptr = (tag_t *) xmalloc (sizeof (tag_t));
  4976.  
  4977. #endif
  4978.  
  4979.   alloc_counts[(int) alloc_type_tag].total_alloc++;
  4980.   *ptr = initial_tag;
  4981.   return ptr;
  4982. }
  4983.  
  4984. /* Free scoping information.  */
  4985.  
  4986. static void
  4987. free_tag (tag_t *ptr)
  4988. {
  4989.   alloc_counts[(int) alloc_type_tag].total_free++;
  4990.  
  4991. #ifndef MALLOC_CHECK
  4992.   ptr->free = alloc_counts[(int) alloc_type_tag].free_list.f_tag;
  4993.   alloc_counts[(int) alloc_type_tag].free_list.f_tag = ptr;
  4994. #else
  4995.   free ((PTR_T) ptr);
  4996. #endif
  4997. }
  4998. /* Allocate forward reference to a yet unknown tag.  */
  4999.  
  5000. static forward_t *
  5001. allocate_forward (void)
  5002. {
  5003.   forward_t *ptr;
  5004.   static forward_t initial_forward;
  5005.  
  5006. #ifndef MALLOC_CHECK
  5007.  
  5008.   int unallocated = alloc_counts[(int) alloc_type_forward].unallocated;
  5009.   page_type *cur_page = alloc_counts[(int) alloc_type_forward].cur_page;
  5010.  
  5011.   if (unallocated == 0)
  5012.     {
  5013.       unallocated = PAGE_SIZE / sizeof (forward_t);
  5014.       alloc_counts[(int) alloc_type_forward].cur_page = cur_page = allocate_page ();
  5015.       alloc_counts[(int) alloc_type_forward].total_pages++;
  5016.     }
  5017.  
  5018.   ptr = &cur_page->forward[--unallocated];
  5019.   alloc_counts[(int) alloc_type_forward].unallocated = unallocated;
  5020.  
  5021. #else
  5022.  
  5023.   ptr = (forward_t *) xmalloc (sizeof (forward_t));
  5024.  
  5025. #endif
  5026.  
  5027.   alloc_counts[(int) alloc_type_forward].total_alloc++;
  5028.   *ptr = initial_forward;
  5029.   return ptr;
  5030. }
  5031. /* Allocate head of type hash list.  */
  5032.  
  5033. static thead_t *
  5034. allocate_thead (void)
  5035. {
  5036.   thead_t *ptr;
  5037.   static thead_t initial_thead;
  5038.  
  5039. #ifndef MALLOC_CHECK
  5040.  
  5041.   ptr = alloc_counts[(int) alloc_type_thead].free_list.f_thead;
  5042.   if (ptr != (thead_t *) NULL)
  5043.     alloc_counts[(int) alloc_type_thead].free_list.f_thead = ptr->free;
  5044.   else
  5045.     {
  5046.       int unallocated = alloc_counts[(int) alloc_type_thead].unallocated;
  5047.       page_type *cur_page = alloc_counts[(int) alloc_type_thead].cur_page;
  5048.  
  5049.       if (unallocated == 0)
  5050.         {
  5051.           unallocated = PAGE_SIZE / sizeof (thead_t);
  5052.           alloc_counts[(int) alloc_type_thead].cur_page = cur_page = allocate_page ();
  5053.           alloc_counts[(int) alloc_type_thead].total_pages++;
  5054.         }
  5055.  
  5056.       ptr = &cur_page->thead[--unallocated];
  5057.       alloc_counts[(int) alloc_type_thead].unallocated = unallocated;
  5058.     }
  5059.  
  5060. #else
  5061.  
  5062.   ptr = (thead_t *) xmalloc (sizeof (thead_t));
  5063.  
  5064. #endif
  5065.  
  5066.   alloc_counts[(int) alloc_type_thead].total_alloc++;
  5067.   *ptr = initial_thead;
  5068.   return ptr;
  5069. }
  5070.  
  5071. /* Free scoping information.  */
  5072.  
  5073. static void
  5074. free_thead (thead_t *ptr)
  5075. {
  5076.   alloc_counts[(int) alloc_type_thead].total_free++;
  5077.  
  5078. #ifndef MALLOC_CHECK
  5079.   ptr->free = (thead_t *) alloc_counts[(int) alloc_type_thead].free_list.f_thead;
  5080.   alloc_counts[(int) alloc_type_thead].free_list.f_thead = ptr;
  5081. #else
  5082.   free ((PTR_T) ptr);
  5083. #endif
  5084. }
  5085. static lineno_list_t *
  5086. allocate_lineno_list (void)
  5087. {
  5088.   lineno_list_t *ptr;
  5089.   static lineno_list_t initial_lineno_list;
  5090.  
  5091. #ifndef MALLOC_CHECK
  5092.  
  5093.   int unallocated = alloc_counts[(int) alloc_type_lineno].unallocated;
  5094.   page_type *cur_page = alloc_counts[(int) alloc_type_lineno].cur_page;
  5095.  
  5096.   if (unallocated == 0)
  5097.     {
  5098.       unallocated = PAGE_SIZE / sizeof (lineno_list_t);
  5099.       alloc_counts[(int) alloc_type_lineno].cur_page = cur_page = allocate_page ();
  5100.       alloc_counts[(int) alloc_type_lineno].total_pages++;
  5101.     }
  5102.  
  5103.   ptr = &cur_page->lineno[--unallocated];
  5104.   alloc_counts[(int) alloc_type_lineno].unallocated = unallocated;
  5105.  
  5106. #else
  5107.  
  5108.   ptr = (lineno_list_t *) xmalloc (sizeof (lineno_list_t));
  5109.  
  5110. #endif
  5111.  
  5112.   alloc_counts[(int) alloc_type_lineno].total_alloc++;
  5113.   *ptr = initial_lineno_list;
  5114.   return ptr;
  5115. }
  5116.  
  5117. void
  5118. ecoff_set_gp_prolog_size (int sz)
  5119. {
  5120.   if (cur_proc_ptr == 0)
  5121.     return;
  5122.  
  5123.   cur_proc_ptr->pdr.gp_prologue = sz;
  5124.   if (cur_proc_ptr->pdr.gp_prologue != sz)
  5125.     {
  5126.       as_warn (_("GP prologue size exceeds field size, using 0 instead"));
  5127.       cur_proc_ptr->pdr.gp_prologue = 0;
  5128.     }
  5129.  
  5130.   cur_proc_ptr->pdr.gp_used = 1;
  5131. }
  5132.  
  5133. int
  5134. ecoff_no_current_file (void)
  5135. {
  5136.   return cur_file_ptr == (efdr_t *) NULL;
  5137. }
  5138.  
  5139. void
  5140. ecoff_generate_asm_lineno (void)
  5141. {
  5142.   unsigned int lineno;
  5143.   char *filename;
  5144.   lineno_list_t *list;
  5145.  
  5146.   as_where (&filename, &lineno);
  5147.  
  5148.   if (current_stabs_filename == (char *) NULL
  5149.       || filename_cmp (current_stabs_filename, filename))
  5150.     add_file (filename, 0, 1);
  5151.  
  5152.   list = allocate_lineno_list ();
  5153.  
  5154.   list->next = (lineno_list_t *) NULL;
  5155.   list->file = cur_file_ptr;
  5156.   list->proc = cur_proc_ptr;
  5157.   list->frag = frag_now;
  5158.   list->paddr = frag_now_fix ();
  5159.   list->lineno = lineno;
  5160.  
  5161.   /* We don't want to merge files which have line numbers.  */
  5162.   cur_file_ptr->fdr.fMerge = 0;
  5163.  
  5164.   /* A .loc directive will sometimes appear before a .ent directive,
  5165.      which means that cur_proc_ptr will be NULL here.  Arrange to
  5166.      patch this up.  */
  5167.   if (cur_proc_ptr == (proc_t *) NULL)
  5168.     {
  5169.       lineno_list_t **pl;
  5170.  
  5171.       pl = &noproc_lineno;
  5172.       while (*pl != (lineno_list_t *) NULL)
  5173.         pl = &(*pl)->next;
  5174.       *pl = list;
  5175.     }
  5176.   else
  5177.     {
  5178.       last_lineno = list;
  5179.       *last_lineno_ptr = list;
  5180.       last_lineno_ptr = &list->next;
  5181.     }
  5182. }
  5183.  
  5184. #else
  5185.  
  5186. void
  5187. ecoff_generate_asm_lineno (void)
  5188. {
  5189. }
  5190.  
  5191. #endif /* ECOFF_DEBUGGING */
  5192.