OSDN Git Service

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