OSDN Git Service

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