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