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, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001,
6 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
7 Contributed by Michael Meissner (meissner@cygnus.com).
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
26 /* Here is a brief description of the MIPS ECOFF symbol table. The
27 MIPS symbol table has the following pieces:
33 +-- Dense number table
41 +-- Relative file descriptors
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.
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:
65 1) dnLow: Low bound on array dimension.
67 2) dnHigh: High bound on array dimension.
69 3) isym: Index to the local symbol which is the start of the
70 function for the end of function first aux. entry.
72 4) width: Width of structures and bitfields.
74 5) count: Count of ranges for variant part.
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.
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:
89 a) fBitfield: a bit that says this is a bitfield, and the
90 size in bits follows as the next aux. entry.
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).
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:
101 btAdr -- address - integer same size as ptr
103 btUChar -- unsigned character
105 btUShort -- unsigned short
107 btUInt -- unsigned int
109 btULong -- unsigned long
110 btFloat -- float (real)
111 btDouble -- Double (real)
112 btStruct -- Structure (Record)
113 btUnion -- Union (variant)
115 btTypedef -- defined via a typedef isymRef
116 btRange -- subrange of int
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
126 btVoid -- Void (MIPS cc revision >= 2.00)
128 d) tq0 - tq5: type qualifier fields as needed. The
129 current type qualifier fields I have documentation for
132 tqNil -- no more qualifiers
136 tqFar -- 8086 far pointers
140 The dense number table is used in the front ends, and disappears by
141 the time the .o is created.
143 With the 1.31 compiler suite, the optimization symbols don't seem
144 to be used as far as I can tell.
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.
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.
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 indices are reset to 0 for each of those
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.
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.
181 The local symbol table contains the following fields:
183 1) iss: index to the local string table giving the name of the
186 2) value: value of the symbol (address, register number, etc.).
188 3) st: symbol type. The current symbol types are:
190 stNil -- Nuthin' special
191 stGlobal -- external symbol
193 stParam -- procedure argument
194 stLocal -- local variable
196 stProc -- External Procedure
197 stBlock -- beginning of block
198 stEnd -- end (of anything)
199 stMember -- member (of anything)
200 stTypedef -- type definition
202 stRegReloc -- register relocation
203 stForward -- forwarding address
204 stStaticProc -- Static procedure
207 4) sc: storage class. The current storage classes are:
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
232 5) index: pointer to a local symbol or aux. entry.
236 For the following program:
241 printf("Hello World!\n");
245 Mips-tdump produces the following information:
250 timestamp 645311799, Wed Jun 13 17:16:39 1990
251 symbolic header offset 284
252 symbolic header size 96
256 Symbolic header, magic number = 0x7009, vstamp = 1.31:
258 Info Offset Number Bytes
259 ==== ====== ====== =====
261 Line numbers 380 4 4 [13]
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
271 External Symbols 1152 20 320
275 Name index = 1 Readin = No
276 Merge = No Endian = LITTLE
277 Debug level = G2 Language = C
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
290 There are 6 local symbols, starting at 436
292 Symbol# 0: "hello2.c"
295 Storage class = Text Index = 6
296 Symbol type = File Value = 0
302 Storage class = Text Index = 12
303 Symbol type = Proc Value = 0
308 Storage class = Text Index = 4
309 Symbol type = Block Value = 8
314 Storage class = Text Index = 2
315 Symbol type = End Value = 28
320 Storage class = Text Index = 1
321 Symbol type = End Value = 52
323 Symbol# 5: "hello2.c"
326 Storage class = Text Index = 0
327 Symbol type = End Value = 0
329 There are 14 auxiliary table entries, starting at 628.
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]
346 There are 1 procedure descriptor entries, starting at 0.
348 Procedure descriptor 0:
349 Name index = 10 Name = "main"
350 .mask 0x80000000,-4 .fmask 0x00000000,0
352 Opt. start = -1 Symbols start = 1
353 First line # = 3 Last line # = 6
354 Line Offset = 0 Address = 0x00000000
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
362 File #1, "/usr/include/stdio.h"
364 Name index = 1 Readin = No
365 Merge = Yes Endian = LITTLE
366 Debug level = G2 Language = C
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
376 Auxiliary symbols 14 25 100 684
377 Relative Files 0 0 0 0
379 There are 10 local symbols, starting at 442
381 Symbol# 0: "/usr/include/stdio.h"
384 Storage class = Text Index = 10
385 Symbol type = File Value = 0
390 Storage class = Info Index = 9
391 Symbol type = Block Value = 20
396 Storage class = Info Index = 4
397 Symbol type = Member Value = 0
402 Storage class = Info Index = 15
403 Symbol type = Member Value = 32
408 Storage class = Info Index = 16
409 Symbol type = Member Value = 64
414 Storage class = Info Index = 4
415 Symbol type = Member Value = 96
420 Storage class = Info Index = 3
421 Symbol type = Member Value = 128
426 Storage class = Info Index = 2
427 Symbol type = Member Value = 144
432 Storage class = Info Index = 1
433 Symbol type = End Value = 0
435 Symbol# 9: "/usr/include/stdio.h"
438 Storage class = Text Index = 0
439 Symbol type = End Value = 0
441 There are 25 auxiliary table entries, starting at 642.
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]
469 There are 0 procedure descriptor entries, starting at 1.
471 There are 20 external symbols, starting at 1152
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
480 String index = 5 Ifd = 1
481 Storage class = Nil Index = 1048575
482 Symbol type = Proc Value = 0
485 String index = 11 Ifd = 1
486 Storage class = Nil Index = 1048575
487 Symbol type = Proc Value = 0
490 String index = 18 Ifd = 1
491 Storage class = Nil Index = 1048575
492 Symbol type = Proc Value = 0
495 String index = 26 Ifd = 1
496 Storage class = Nil Index = 1048575
497 Symbol type = Proc Value = 0
500 String index = 32 Ifd = 1
501 Storage class = Nil Index = 1048575
502 Symbol type = Proc Value = 0
505 String index = 40 Ifd = 1
506 Storage class = Nil Index = 1048575
507 Symbol type = Proc Value = 0
510 String index = 46 Ifd = 1
511 Storage class = Nil Index = 1048575
512 Symbol type = Proc Value = 0
515 String index = 53 Ifd = 1
516 Storage class = Nil Index = 1048575
517 Symbol type = Proc Value = 0
519 Symbol# 9: "setbuffer"
520 String index = 60 Ifd = 1
521 Storage class = Nil Index = 1048575
522 Symbol type = Proc Value = 0
524 Symbol# 10: "setlinebuf"
525 String index = 70 Ifd = 1
526 Storage class = Nil Index = 1048575
527 Symbol type = Proc Value = 0
530 String index = 81 Ifd = 1
531 Storage class = Nil Index = 1048575
532 Symbol type = Proc Value = 0
535 String index = 87 Ifd = 1
536 Storage class = Nil Index = 1048575
537 Symbol type = Proc Value = 0
539 Symbol# 13: "ctermid"
540 String index = 92 Ifd = 1
541 Storage class = Nil Index = 1048575
542 Symbol type = Proc Value = 0
544 Symbol# 14: "cuserid"
545 String index = 100 Ifd = 1
546 Storage class = Nil Index = 1048575
547 Symbol type = Proc Value = 0
549 Symbol# 15: "tempnam"
550 String index = 108 Ifd = 1
551 Storage class = Nil Index = 1048575
552 Symbol type = Proc Value = 0
555 String index = 116 Ifd = 1
556 Storage class = Nil Index = 1048575
557 Symbol type = Proc Value = 0
559 Symbol# 17: "sprintf"
560 String index = 123 Ifd = 1
561 Storage class = Nil Index = 1048575
562 Symbol type = Proc Value = 0
566 String index = 131 Ifd = 0
567 Storage class = Text Index = 1
568 Symbol type = Proc Value = 0
571 String index = 136 Ifd = 0
572 Storage class = Undefined Index = 1048575
573 Symbol type = Proc Value = 0
575 The following auxiliary table entries were unused:
579 #3 16 0x00000010 short
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 }
604 #include "coretypes.h"
613 /* Include getopt.h for the sake of getopt_long. */
620 /* Due to size_t being defined in sys/types.h and different
621 in stddef.h, we have to do this by hand..... Note, these
622 types are correct for MIPS based systems, and may not be
623 correct for other systems. Ultrix 4.0 and Silicon Graphics
624 have this fixed, but since the following is correct, and
625 the fact that including stddef.h gets you GCC's version
626 instead of the standard one it's not worth it to fix it. */
628 #if defined(__OSF1__) || defined(__OSF__) || defined(__osf__)
629 #define Size_t long unsigned int
631 #define Size_t unsigned int
633 #define Ptrdiff_t long
635 /* The following might be called from obstack or malloc,
636 so they can't be static. */
638 extern void pfatal_with_name (const char *) ATTRIBUTE_NORETURN
;
639 extern void botch (const char *) ATTRIBUTE_NORETURN
;
641 extern void fatal (const char *format
, ...) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN
;
642 extern void error (const char *format
, ...) ATTRIBUTE_PRINTF_1
;
644 #ifndef MIPS_DEBUGGING_INFO
646 static int line_number
;
647 static int cur_line_start
;
649 static int had_errors
;
650 static const char *progname
;
651 static const char *input_name
;
656 fprintf (stderr
, "Mips-tfile should only be run on a MIPS computer!\n");
660 #else /* MIPS_DEBUGGING defined */
662 /* The local and global symbols have a field index, so undo any defines
663 of index -> strchr. */
669 #ifndef CROSS_DIRECTORY_STRUCTURE
672 #include "mips/a.out.h"
673 #endif /* CROSS_DIRECTORY_STRUCTURE */
677 #define STAB_CODE_TYPE enum __stab_debug_code
685 #define IS_ASM_IDENT(ch) \
686 (ISIDNUM (ch) || (ch) == '.' || (ch) == '$')
689 /* Redefinition of storage classes as an enumeration for better
693 sc_Nil
= scNil
, /* no storage class */
694 sc_Text
= scText
, /* text symbol */
695 sc_Data
= scData
, /* initialized data symbol */
696 sc_Bss
= scBss
, /* un-initialized data symbol */
697 sc_Register
= scRegister
, /* value of symbol is register number */
698 sc_Abs
= scAbs
, /* value of symbol is absolute */
699 sc_Undefined
= scUndefined
, /* who knows? */
700 sc_CdbLocal
= scCdbLocal
, /* variable's value is IN se->va.?? */
701 sc_Bits
= scBits
, /* this is a bit field */
702 sc_CdbSystem
= scCdbSystem
, /* value is IN CDB's address space */
703 sc_RegImage
= scRegImage
, /* register value saved on stack */
704 sc_Info
= scInfo
, /* symbol contains debugger information */
705 sc_UserStruct
= scUserStruct
, /* addr in struct user for current process */
706 sc_SData
= scSData
, /* load time only small data */
707 sc_SBss
= scSBss
, /* load time only small common */
708 sc_RData
= scRData
, /* load time only read only data */
709 sc_Var
= scVar
, /* Var parameter (fortran,pascal) */
710 sc_Common
= scCommon
, /* common variable */
711 sc_SCommon
= scSCommon
, /* small common */
712 sc_VarRegister
= scVarRegister
, /* Var parameter in a register */
713 sc_Variant
= scVariant
, /* Variant record */
714 sc_SUndefined
= scSUndefined
, /* small undefined(external) data */
715 sc_Init
= scInit
, /* .init section symbol */
716 sc_Max
= scMax
/* Max storage class+1 */
719 /* Redefinition of symbol type. */
722 st_Nil
= stNil
, /* Nuthin' special */
723 st_Global
= stGlobal
, /* external symbol */
724 st_Static
= stStatic
, /* static */
725 st_Param
= stParam
, /* procedure argument */
726 st_Local
= stLocal
, /* local variable */
727 st_Label
= stLabel
, /* label */
728 st_Proc
= stProc
, /* " " Procedure */
729 st_Block
= stBlock
, /* beginning of block */
730 st_End
= stEnd
, /* end (of anything) */
731 st_Member
= stMember
, /* member (of anything - struct/union/enum */
732 st_Typedef
= stTypedef
, /* type definition */
733 st_File
= stFile
, /* file name */
734 st_RegReloc
= stRegReloc
, /* register relocation */
735 st_Forward
= stForward
, /* forwarding address */
736 st_StaticProc
= stStaticProc
, /* load time only static procs */
737 st_Constant
= stConstant
, /* const */
738 st_Str
= stStr
, /* string */
739 st_Number
= stNumber
, /* pure number (i.e. 4 NOR 2+2) */
740 st_Expr
= stExpr
, /* 2+2 vs. 4 */
741 st_Type
= stType
, /* post-coercion SER */
742 st_Max
= stMax
/* max type+1 */
745 /* Redefinition of type qualifiers. */
748 tq_Nil
= tqNil
, /* bt is what you see */
749 tq_Ptr
= tqPtr
, /* pointer */
750 tq_Proc
= tqProc
, /* procedure */
751 tq_Array
= tqArray
, /* duh */
752 tq_Far
= tqFar
, /* longer addressing - 8086/8 land */
753 tq_Vol
= tqVol
, /* volatile */
754 tq_Max
= tqMax
/* Max type qualifier+1 */
757 /* Redefinition of basic types. */
760 bt_Nil
= btNil
, /* undefined */
761 bt_Adr
= btAdr
, /* address - integer same size as pointer */
762 bt_Char
= btChar
, /* character */
763 bt_UChar
= btUChar
, /* unsigned character */
764 bt_Short
= btShort
, /* short */
765 bt_UShort
= btUShort
, /* unsigned short */
766 bt_Int
= btInt
, /* int */
767 bt_UInt
= btUInt
, /* unsigned int */
768 bt_Long
= btLong
, /* long */
769 bt_ULong
= btULong
, /* unsigned long */
770 bt_Float
= btFloat
, /* float (real) */
771 bt_Double
= btDouble
, /* Double (real) */
772 bt_Struct
= btStruct
, /* Structure (Record) */
773 bt_Union
= btUnion
, /* Union (variant) */
774 bt_Enum
= btEnum
, /* Enumerated */
775 bt_Typedef
= btTypedef
, /* defined via a typedef, isymRef points */
776 bt_Range
= btRange
, /* subrange of int */
777 bt_Set
= btSet
, /* pascal sets */
778 bt_Complex
= btComplex
, /* fortran complex */
779 bt_DComplex
= btDComplex
, /* fortran double complex */
780 bt_Indirect
= btIndirect
, /* forward or unnamed typedef */
781 bt_FixedDec
= btFixedDec
, /* Fixed Decimal */
782 bt_FloatDec
= btFloatDec
, /* Float Decimal */
783 bt_String
= btString
, /* Varying Length Character String */
784 bt_Bit
= btBit
, /* Aligned Bit String */
785 bt_Picture
= btPicture
, /* Picture */
788 bt_Void
= btVoid
, /* Void */
790 #define bt_Void bt_Nil
793 bt_Max
= btMax
/* Max basic type+1 */
798 /* Basic COFF storage classes. */
830 /* Regular COFF fundamental type. */
831 typedef enum coff_type
{
851 /* Regular COFF derived types. */
852 typedef enum coff_dt
{
860 #define N_BTMASK 017 /* bitmask to isolate basic type */
861 #define N_TMASK 003 /* bitmask to isolate derived type */
862 #define N_BT_SHIFT 4 /* # bits to shift past basic type */
863 #define N_TQ_SHIFT 2 /* # bits to shift derived types */
864 #define N_TQ 6 /* # of type qualifiers */
866 /* States for whether to hash type or not. */
867 typedef enum hash_state
{
868 hash_no
= 0, /* don't hash type */
869 hash_yes
= 1, /* ok to hash type, or use previous hash */
870 hash_record
= 2 /* ok to record hash, but don't use prev. */
874 /* Types of different sized allocation requests. */
876 alloc_type_none
, /* dummy value */
877 alloc_type_scope
, /* nested scopes linked list */
878 alloc_type_vlinks
, /* glue linking pages in varray */
879 alloc_type_shash
, /* string hash element */
880 alloc_type_thash
, /* type hash element */
881 alloc_type_tag
, /* struct/union/tag element */
882 alloc_type_forward
, /* element to hold unknown tag */
883 alloc_type_thead
, /* head of type hash list */
884 alloc_type_varray
, /* general varray allocation */
885 alloc_type_last
/* last+1 element for array bounds */
889 #define WORD_ALIGN(x) (((x) + (sizeof (long) - 1)) & ~ (sizeof (long) - 1))
890 #define DWORD_ALIGN(x) (((x) + 7) & ~7)
893 /* Structures to provide n-number of virtual arrays, each of which can
894 grow linearly, and which are written in the object file as sequential
895 pages. On systems with a BSD malloc that define USE_MALLOC, the
896 MAX_CLUSTER_PAGES should be 1 less than a power of two, since malloc
897 adds its overhead, and rounds up to the next power of 2. Pages are
898 linked together via a linked list. */
901 #define PAGE_SIZE 32768 /* size of varray pages */
904 #define PAGE_USIZE ((Size_t) PAGE_SIZE)
907 #ifndef MAX_CLUSTER_PAGES /* # pages to get from system */
908 #ifndef USE_MALLOC /* in one memory request */
909 #define MAX_CLUSTER_PAGES 64
911 #define MAX_CLUSTER_PAGES 63
916 /* Linked list connecting separate page allocations. */
917 typedef struct vlinks
{
918 struct vlinks
*prev
; /* previous set of pages */
919 struct vlinks
*next
; /* next set of pages */
920 union page
*datum
; /* start of page */
921 unsigned long start_index
; /* starting index # of page */
925 /* Virtual array header. */
926 typedef struct varray
{
927 vlinks_t
*first
; /* first page link */
928 vlinks_t
*last
; /* last page link */
929 unsigned long num_allocated
; /* # objects allocated */
930 unsigned short object_size
; /* size in bytes of each object */
931 unsigned short objects_per_page
; /* # objects that can fit on a page */
932 unsigned short objects_last_page
; /* # objects allocated on last page */
936 #define OBJECTS_PER_PAGE(type) (PAGE_SIZE / sizeof (type))
938 #define OBJECTS_PER_PAGE(type) ((sizeof (type) > 1) ? 1 : PAGE_SIZE)
941 #define INIT_VARRAY(type) { /* macro to initialize a varray */ \
942 (vlinks_t *) 0, /* first */ \
943 (vlinks_t *) 0, /* last */ \
944 0, /* num_allocated */ \
945 sizeof (type), /* object_size */ \
946 OBJECTS_PER_PAGE (type), /* objects_per_page */ \
947 OBJECTS_PER_PAGE (type), /* objects_last_page */ \
950 #define INITIALIZE_VARRAY(x,type) \
952 (x)->object_size = sizeof (type); \
953 (x)->objects_per_page = OBJECTS_PER_PAGE (type); \
954 (x)->objects_last_page = OBJECTS_PER_PAGE (type); \
957 /* Master type for indexes within the symbol table. */
958 typedef unsigned long symint_t
;
961 /* Linked list support for nested scopes (file, block, structure, etc.). */
962 typedef struct scope
{
963 struct scope
*prev
; /* previous scope level */
964 struct scope
*free
; /* free list pointer */
965 SYMR
*lsym
; /* pointer to local symbol node */
966 symint_t lnumber
; /* lsym index */
967 st_t type
; /* type of the node */
971 /* Forward reference list for tags referenced, but not yet defined. */
972 typedef struct forward
{
973 struct forward
*next
; /* next forward reference */
974 struct forward
*free
; /* free list pointer */
975 AUXU
*ifd_ptr
; /* pointer to store file index */
976 AUXU
*index_ptr
; /* pointer to store symbol index */
977 AUXU
*type_ptr
; /* pointer to munge type info */
981 /* Linked list support for tags. The first tag in the list is always
982 the current tag for that block. */
984 struct tag
*free
; /* free list pointer */
985 struct shash
*hash_ptr
; /* pointer to the hash table head */
986 struct tag
*same_name
; /* tag with same name in outer scope */
987 struct tag
*same_block
; /* next tag defined in the same block. */
988 struct forward
*forward_ref
; /* list of forward references */
989 bt_t basic_type
; /* bt_Struct, bt_Union, or bt_Enum */
990 symint_t ifd
; /* file # tag defined in */
991 symint_t indx
; /* index within file's local symbols */
995 /* Head of a block's linked list of tags. */
996 typedef struct thead
{
997 struct thead
*prev
; /* previous block */
998 struct thead
*free
; /* free list pointer */
999 struct tag
*first_tag
; /* first tag in block defined */
1003 /* Union containing pointers to each the small structures which are freed up. */
1004 typedef union small_free
{
1005 scope_t
*f_scope
; /* scope structure */
1006 thead_t
*f_thead
; /* tag head structure */
1007 tag_t
*f_tag
; /* tag element structure */
1008 forward_t
*f_forward
; /* forward tag reference */
1012 /* String hash table support. The size of the hash table must fit
1016 #define SHASH_SIZE 1009
1019 #define HASH_LEN_MAX ((1 << 12) - 1) /* Max length we can store */
1021 typedef struct shash
{
1022 struct shash
*next
; /* next hash value */
1023 char *string
; /* string we are hashing */
1024 symint_t len
; /* string length */
1025 symint_t indx
; /* index within string table */
1026 EXTR
*esym_ptr
; /* global symbol pointer */
1027 SYMR
*sym_ptr
; /* local symbol pointer */
1028 SYMR
*end_ptr
; /* symbol pointer to end block */
1029 tag_t
*tag_ptr
; /* tag pointer */
1030 PDR
*proc_ptr
; /* procedure descriptor pointer */
1034 /* Type hash table support. The size of the hash table must fit
1035 within a page with the other extended file descriptor information.
1036 Because unique types which are hashed are fewer in number than
1037 strings, we use a smaller hash value. */
1040 #define THASH_SIZE 113
1043 typedef struct thash
{
1044 struct thash
*next
; /* next hash value */
1045 AUXU type
; /* type we are hashing */
1046 symint_t indx
; /* index within string table */
1050 /* Extended file descriptor that contains all of the support necessary
1051 to add things to each file separately. */
1052 typedef struct efdr
{
1053 FDR fdr
; /* File header to be written out */
1054 FDR
*orig_fdr
; /* original file header */
1055 char *name
; /* filename */
1056 int name_len
; /* length of the filename */
1057 symint_t void_type
; /* aux. pointer to 'void' type */
1058 symint_t int_type
; /* aux. pointer to 'int' type */
1059 scope_t
*cur_scope
; /* current nested scopes */
1060 symint_t file_index
; /* current file number */
1061 int nested_scopes
; /* # nested scopes */
1062 varray_t strings
; /* local strings */
1063 varray_t symbols
; /* local symbols */
1064 varray_t procs
; /* procedures */
1065 varray_t aux_syms
; /* auxiliary symbols */
1066 struct efdr
*next_file
; /* next file descriptor */
1067 /* string/type hash tables */
1068 shash_t
**shash_head
; /* string hash table */
1069 thash_t
*thash_head
[THASH_SIZE
];
1072 /* Pre-initialized extended file structure. */
1073 static int init_file_initialized
= 0;
1074 static efdr_t init_file
;
1076 static efdr_t
*first_file
; /* first file descriptor */
1077 static efdr_t
**last_file_ptr
= &first_file
; /* file descriptor tail */
1080 /* Union of various things that are held in pages. */
1081 typedef union page
{
1082 char byte
[ PAGE_SIZE
];
1083 unsigned char ubyte
[ PAGE_SIZE
];
1084 efdr_t file
[ PAGE_SIZE
/ sizeof (efdr_t
) ];
1085 FDR ofile
[ PAGE_SIZE
/ sizeof (FDR
) ];
1086 PDR proc
[ PAGE_SIZE
/ sizeof (PDR
) ];
1087 SYMR sym
[ PAGE_SIZE
/ sizeof (SYMR
) ];
1088 EXTR esym
[ PAGE_SIZE
/ sizeof (EXTR
) ];
1089 AUXU aux
[ PAGE_SIZE
/ sizeof (AUXU
) ];
1090 DNR dense
[ PAGE_SIZE
/ sizeof (DNR
) ];
1091 scope_t scope
[ PAGE_SIZE
/ sizeof (scope_t
) ];
1092 vlinks_t vlinks
[ PAGE_SIZE
/ sizeof (vlinks_t
) ];
1093 shash_t shash
[ PAGE_SIZE
/ sizeof (shash_t
) ];
1094 thash_t thash
[ PAGE_SIZE
/ sizeof (thash_t
) ];
1095 tag_t tag
[ PAGE_SIZE
/ sizeof (tag_t
) ];
1096 forward_t forward
[ PAGE_SIZE
/ sizeof (forward_t
) ];
1097 thead_t thead
[ PAGE_SIZE
/ sizeof (thead_t
) ];
1101 /* Structure holding allocation information for small sized structures. */
1102 typedef struct alloc_info
{
1103 const char *alloc_name
; /* name of this allocation type (must be first) */
1104 page_t
*cur_page
; /* current page being allocated from */
1105 small_free_t free_list
; /* current free list if any */
1106 int unallocated
; /* number of elements unallocated on page */
1107 int total_alloc
; /* total number of allocations */
1108 int total_free
; /* total number of frees */
1109 int total_pages
; /* total number of pages allocated */
1112 /* Type information collected together. */
1113 typedef struct type_info
{
1114 bt_t basic_type
; /* basic type */
1115 coff_type_t orig_type
; /* original COFF-based type */
1116 int num_tq
; /* # type qualifiers */
1117 int num_dims
; /* # dimensions */
1118 int num_sizes
; /* # sizes */
1119 int extra_sizes
; /* # extra sizes not tied with dims */
1120 tag_t
* tag_ptr
; /* tag pointer */
1121 int bitfield
; /* symbol is a bitfield */
1122 int unknown_tag
; /* this is an unknown tag */
1123 tq_t type_qualifiers
[N_TQ
]; /* type qualifiers (ptr, func, array)*/
1124 symint_t dimensions
[N_TQ
]; /* dimensions for each array */
1125 symint_t sizes
[N_TQ
+2]; /* sizes of each array slice + size of
1126 struct/union/enum + bitfield size */
1129 /* Pre-initialized type_info struct. */
1130 static type_info_t type_info_init
= {
1131 bt_Nil
, /* basic type */
1132 T_NULL
, /* original COFF-based type */
1133 0, /* # type qualifiers */
1134 0, /* # dimensions */
1136 0, /* sizes not tied with dims */
1137 NULL
, /* ptr to tag */
1139 0, /* unknown tag */
1140 { /* type qualifiers */
1169 /* Global virtual arrays & hash table for external strings as well as
1170 for the tags table and global tables for file descriptors, and
1173 static varray_t file_desc
= INIT_VARRAY (efdr_t
);
1174 static varray_t dense_num
= INIT_VARRAY (DNR
);
1175 static varray_t tag_strings
= INIT_VARRAY (char);
1176 static varray_t ext_strings
= INIT_VARRAY (char);
1177 static varray_t ext_symbols
= INIT_VARRAY (EXTR
);
1179 static shash_t
*orig_str_hash
[SHASH_SIZE
];
1180 static shash_t
*ext_str_hash
[SHASH_SIZE
];
1181 static shash_t
*tag_hash
[SHASH_SIZE
];
1183 /* Static types for int and void. Also, remember the last function's
1184 type (which is set up when we encounter the declaration for the
1185 function, and used when the end block for the function is emitted. */
1187 static type_info_t int_type_info
;
1188 static type_info_t void_type_info
;
1189 static type_info_t last_func_type_info
;
1190 static EXTR
*last_func_eptr
;
1193 /* Convert COFF basic type to ECOFF basic type. The T_NULL type
1194 really should use bt_Void, but this causes the current ecoff GDB to
1195 issue unsupported type messages, and the Ultrix 4.00 dbx (aka MIPS
1196 2.0) doesn't understand it, even though the compiler generates it.
1197 Maybe this will be fixed in 2.10 or 2.20 of the MIPS compiler
1198 suite, but for now go with what works. */
1200 static const bt_t map_coff_types
[ (int) T_MAX
] = {
1201 bt_Nil
, /* T_NULL */
1203 bt_Char
, /* T_CHAR */
1204 bt_Short
, /* T_SHORT */
1206 bt_Long
, /* T_LONG */
1207 bt_Float
, /* T_FLOAT */
1208 bt_Double
, /* T_DOUBLE */
1209 bt_Struct
, /* T_STRUCT */
1210 bt_Union
, /* T_UNION */
1211 bt_Enum
, /* T_ENUM */
1212 bt_Enum
, /* T_MOE */
1213 bt_UChar
, /* T_UCHAR */
1214 bt_UShort
, /* T_USHORT */
1215 bt_UInt
, /* T_UINT */
1216 bt_ULong
/* T_ULONG */
1219 /* Convert COFF storage class to ECOFF storage class. */
1220 static const sc_t map_coff_storage
[ (int) C_MAX
] = {
1221 sc_Nil
, /* 0: C_NULL */
1222 sc_Abs
, /* 1: C_AUTO auto var */
1223 sc_Undefined
, /* 2: C_EXT external */
1224 sc_Data
, /* 3: C_STAT static */
1225 sc_Register
, /* 4: C_REG register */
1226 sc_Undefined
, /* 5: C_EXTDEF ??? */
1227 sc_Text
, /* 6: C_LABEL label */
1228 sc_Text
, /* 7: C_ULABEL user label */
1229 sc_Info
, /* 8: C_MOS member of struct */
1230 sc_Abs
, /* 9: C_ARG argument */
1231 sc_Info
, /* 10: C_STRTAG struct tag */
1232 sc_Info
, /* 11: C_MOU member of union */
1233 sc_Info
, /* 12: C_UNTAG union tag */
1234 sc_Info
, /* 13: C_TPDEF typedef */
1235 sc_Data
, /* 14: C_USTATIC ??? */
1236 sc_Info
, /* 15: C_ENTAG enum tag */
1237 sc_Info
, /* 16: C_MOE member of enum */
1238 sc_Register
, /* 17: C_REGPARM register parameter */
1239 sc_Bits
, /* 18; C_FIELD bitfield */
1321 sc_Text
, /* 100: C_BLOCK block start/end */
1322 sc_Text
, /* 101: C_FCN function start/end */
1323 sc_Info
, /* 102: C_EOS end of struct/union/enum */
1324 sc_Nil
, /* 103: C_FILE file start */
1325 sc_Nil
, /* 104: C_LINE line number */
1326 sc_Nil
, /* 105: C_ALIAS combined type info */
1327 sc_Nil
, /* 106: C_HIDDEN ??? */
1330 /* Convert COFF storage class to ECOFF symbol type. */
1331 static const st_t map_coff_sym_type
[ (int) C_MAX
] = {
1332 st_Nil
, /* 0: C_NULL */
1333 st_Local
, /* 1: C_AUTO auto var */
1334 st_Global
, /* 2: C_EXT external */
1335 st_Static
, /* 3: C_STAT static */
1336 st_Local
, /* 4: C_REG register */
1337 st_Global
, /* 5: C_EXTDEF ??? */
1338 st_Label
, /* 6: C_LABEL label */
1339 st_Label
, /* 7: C_ULABEL user label */
1340 st_Member
, /* 8: C_MOS member of struct */
1341 st_Param
, /* 9: C_ARG argument */
1342 st_Block
, /* 10: C_STRTAG struct tag */
1343 st_Member
, /* 11: C_MOU member of union */
1344 st_Block
, /* 12: C_UNTAG union tag */
1345 st_Typedef
, /* 13: C_TPDEF typedef */
1346 st_Static
, /* 14: C_USTATIC ??? */
1347 st_Block
, /* 15: C_ENTAG enum tag */
1348 st_Member
, /* 16: C_MOE member of enum */
1349 st_Param
, /* 17: C_REGPARM register parameter */
1350 st_Member
, /* 18; C_FIELD bitfield */
1432 st_Block
, /* 100: C_BLOCK block start/end */
1433 st_Proc
, /* 101: C_FCN function start/end */
1434 st_End
, /* 102: C_EOS end of struct/union/enum */
1435 st_File
, /* 103: C_FILE file start */
1436 st_Nil
, /* 104: C_LINE line number */
1437 st_Nil
, /* 105: C_ALIAS combined type info */
1438 st_Nil
, /* 106: C_HIDDEN ??? */
1441 /* Map COFF derived types to ECOFF type qualifiers. */
1442 static const tq_t map_coff_derived_type
[ (int) DT_MAX
] = {
1443 tq_Nil
, /* 0: DT_NON no more qualifiers */
1444 tq_Ptr
, /* 1: DT_PTR pointer */
1445 tq_Proc
, /* 2: DT_FCN function */
1446 tq_Array
, /* 3: DT_ARY array */
1450 /* Keep track of different sized allocation requests. */
1451 static alloc_info_t alloc_counts
[ (int) alloc_type_last
];
1454 /* Pointers and such to the original symbol table that is read in. */
1455 static struct filehdr orig_file_header
; /* global object file header */
1457 static HDRR orig_sym_hdr
; /* symbolic header on input */
1458 static char *orig_linenum
; /* line numbers */
1459 static DNR
*orig_dense
; /* dense numbers */
1460 static PDR
*orig_procs
; /* procedures */
1461 static SYMR
*orig_local_syms
; /* local symbols */
1462 static OPTR
*orig_opt_syms
; /* optimization symbols */
1463 static AUXU
*orig_aux_syms
; /* auxiliary symbols */
1464 static char *orig_local_strs
; /* local strings */
1465 static char *orig_ext_strs
; /* external strings */
1466 static FDR
*orig_files
; /* file descriptors */
1467 static symint_t
*orig_rfds
; /* relative file desc's */
1468 static EXTR
*orig_ext_syms
; /* external symbols */
1470 /* Macros to convert an index into a given object within the original
1472 #define CHECK(num,max,str) \
1473 (((unsigned long) num > (unsigned long) max) ? out_of_bounds (num, max, str, __LINE__) : 0)
1475 #define ORIG_LINENUM(indx) (CHECK ((indx), orig_sym_hdr.cbLine, "line#"), (indx) + orig_linenum)
1476 #define ORIG_DENSE(indx) (CHECK ((indx), orig_sym_hdr.idnMax, "dense"), (indx) + orig_dense)
1477 #define ORIG_PROCS(indx) (CHECK ((indx), orig_sym_hdr.ipdMax, "procs"), (indx) + orig_procs)
1478 #define ORIG_FILES(indx) (CHECK ((indx), orig_sym_hdr.ifdMax, "funcs"), (indx) + orig_files)
1479 #define ORIG_LSYMS(indx) (CHECK ((indx), orig_sym_hdr.isymMax, "lsyms"), (indx) + orig_local_syms)
1480 #define ORIG_LSTRS(indx) (CHECK ((indx), orig_sym_hdr.issMax, "lstrs"), (indx) + orig_local_strs)
1481 #define ORIG_ESYMS(indx) (CHECK ((indx), orig_sym_hdr.iextMax, "esyms"), (indx) + orig_ext_syms)
1482 #define ORIG_ESTRS(indx) (CHECK ((indx), orig_sym_hdr.issExtMax, "estrs"), (indx) + orig_ext_strs)
1483 #define ORIG_OPT(indx) (CHECK ((indx), orig_sym_hdr.ioptMax, "opt"), (indx) + orig_opt_syms)
1484 #define ORIG_AUX(indx) (CHECK ((indx), orig_sym_hdr.iauxMax, "aux"), (indx) + orig_aux_syms)
1485 #define ORIG_RFDS(indx) (CHECK ((indx), orig_sym_hdr.crfd, "rfds"), (indx) + orig_rfds)
1487 /* Various other statics. */
1488 static HDRR symbolic_header
; /* symbolic header */
1489 static efdr_t
*cur_file_ptr
= (efdr_t
*) 0; /* current file desc. header */
1490 static PDR
*cur_proc_ptr
= (PDR
*) 0; /* current procedure header */
1491 static SYMR
*cur_oproc_begin
= (SYMR
*) 0; /* original proc. sym begin info */
1492 static SYMR
*cur_oproc_end
= (SYMR
*) 0; /* original proc. sym end info */
1493 static PDR
*cur_oproc_ptr
= (PDR
*) 0; /* current original procedure*/
1494 static thead_t
*cur_tag_head
= (thead_t
*) 0;/* current tag head */
1495 static unsigned long file_offset
= 0; /* current file offset */
1496 static unsigned long max_file_offset
= 0; /* maximum file offset */
1497 static FILE *object_stream
= (FILE *) 0; /* file desc. to output .o */
1498 static FILE *obj_in_stream
= (FILE *) 0; /* file desc. to input .o */
1499 static char *progname
= (char *) 0; /* program name for errors */
1500 static const char *input_name
= "stdin"; /* name of input file */
1501 static char *object_name
= (char *) 0; /* tmp. name of object file */
1502 static char *obj_in_name
= (char *) 0; /* name of input object file */
1503 static char *cur_line_start
= (char *) 0; /* current line read in */
1504 static char *cur_line_ptr
= (char *) 0; /* ptr within current line */
1505 static unsigned cur_line_nbytes
= 0; /* # bytes for current line */
1506 static unsigned cur_line_alloc
= 0; /* # bytes total in buffer */
1507 static long line_number
= 0; /* current input line number */
1508 static int debug
= 0; /* trace functions */
1509 static int version
= 0; /* print version # */
1510 static int verbose
= 0;
1511 static int had_errors
= 0; /* != 0 if errors were found */
1512 static int rename_output
= 0; /* != 0 if rename output file*/
1513 static int delete_input
= 0; /* != 0 if delete input after done */
1514 static int stabs_seen
= 0; /* != 0 if stabs have been seen */
1517 /* Pseudo symbol to use when putting stabs into the symbol table. */
1518 #ifndef STABS_SYMBOL
1519 #define STABS_SYMBOL "@stabs"
1522 static const char stabs_symbol
[] = STABS_SYMBOL
;
1525 /* Forward reference for functions. See the definition for more details. */
1528 #define STATIC static
1531 STATIC
int out_of_bounds (symint_t
, symint_t
, const char *, int);
1532 STATIC shash_t
*hash_string (const char *, Ptrdiff_t
, shash_t
**, symint_t
*);
1533 STATIC symint_t
add_string (varray_t
*, shash_t
**, const char *, const char *,
1535 STATIC symint_t
add_local_symbol (const char *, const char *, st_t
, sc_t
,
1536 symint_t
, symint_t
);
1537 STATIC symint_t
add_ext_symbol (EXTR
*, int);
1538 STATIC symint_t
add_aux_sym_symint (symint_t
);
1539 STATIC symint_t
add_aux_sym_rndx (int, symint_t
);
1540 STATIC symint_t
add_aux_sym_tir (type_info_t
*, hash_state_t
, thash_t
**);
1541 STATIC tag_t
* get_tag (const char *, const char *, symint_t
, bt_t
);
1542 STATIC
void add_unknown_tag (tag_t
*);
1543 STATIC
void add_procedure (const char *, const char *);
1544 STATIC
void initialize_init_file (void);
1545 STATIC
void add_file (const char *, const char *);
1546 STATIC
void add_bytes (varray_t
*, char *, Size_t
);
1547 STATIC
void add_varray_page (varray_t
*);
1548 STATIC
void update_headers (void);
1549 STATIC
void write_varray (varray_t
*, off_t
, const char *);
1550 STATIC
void write_object (void);
1551 STATIC
const char *st_to_string (st_t
);
1552 STATIC
const char *sc_to_string (sc_t
);
1553 STATIC
char *read_line (void);
1554 STATIC
void parse_input (void);
1555 STATIC
void mark_stabs (const char *);
1556 STATIC
void parse_begin (const char *);
1557 STATIC
void parse_bend (const char *);
1558 STATIC
void parse_def (const char *);
1559 STATIC
void parse_end (const char *);
1560 STATIC
void parse_ent (const char *);
1561 STATIC
void parse_file (const char *);
1562 STATIC
void parse_stabs_common (const char *, const char *, const char *);
1563 STATIC
void parse_stabs (const char *);
1564 STATIC
void parse_stabn (const char *);
1565 STATIC page_t
*read_seek (Size_t
, off_t
, const char *);
1566 STATIC
void copy_object (void);
1568 STATIC
void catch_signal (int) ATTRIBUTE_NORETURN
;
1569 STATIC page_t
*allocate_page (void);
1570 STATIC page_t
*allocate_multiple_pages (Size_t
);
1571 STATIC
void free_multiple_pages (page_t
*, Size_t
);
1573 #ifndef MALLOC_CHECK
1574 STATIC page_t
*allocate_cluster (Size_t
);
1577 STATIC forward_t
*allocate_forward (void);
1578 STATIC scope_t
*allocate_scope (void);
1579 STATIC shash_t
*allocate_shash (void);
1580 STATIC tag_t
*allocate_tag (void);
1581 STATIC thash_t
*allocate_thash (void);
1582 STATIC thead_t
*allocate_thead (void);
1583 STATIC vlinks_t
*allocate_vlinks (void);
1585 STATIC
void free_forward (forward_t
*);
1586 STATIC
void free_scope (scope_t
*);
1587 STATIC
void free_tag (tag_t
*);
1588 STATIC
void free_thead (thead_t
*);
1590 extern char *optarg
;
1594 /* List of assembler pseudo ops and beginning sequences that need
1595 special actions. Someday, this should be a hash table, and such,
1596 but for now a linear list of names and calls to memcmp will
1599 typedef struct _pseudo_ops
{
1600 const char *const name
; /* pseudo-op in ascii */
1601 const int len
; /* length of name to compare */
1602 void (*const func
) (const char *); /* function to handle line */
1605 static const pseudo_ops_t pseudo_ops
[] = {
1606 { "#.def", sizeof("#.def")-1, parse_def
},
1607 { "#.begin", sizeof("#.begin")-1, parse_begin
},
1608 { "#.bend", sizeof("#.bend")-1, parse_bend
},
1609 { ".end", sizeof(".end")-1, parse_end
},
1610 { ".ent", sizeof(".ent")-1, parse_ent
},
1611 { ".file", sizeof(".file")-1, parse_file
},
1612 { "#.stabs", sizeof("#.stabs")-1, parse_stabs
},
1613 { "#.stabn", sizeof("#.stabn")-1, parse_stabn
},
1614 { ".stabs", sizeof(".stabs")-1, parse_stabs
},
1615 { ".stabn", sizeof(".stabn")-1, parse_stabn
},
1616 { "#@stabs", sizeof("#@stabs")-1, mark_stabs
},
1620 /* Command line options for getopt_long. */
1622 static const struct option options
[] =
1624 { "version", 0, 0, 'V' },
1625 { "verbose", 0, 0, 'v' },
1629 /* Add a page to a varray object. */
1632 add_varray_page (varray_t
*vp
)
1634 vlinks_t
*new_links
= allocate_vlinks ();
1637 if (vp
->object_size
> 1)
1638 new_links
->datum
= xcalloc (1, vp
->object_size
);
1641 new_links
->datum
= allocate_page ();
1643 alloc_counts
[ (int) alloc_type_varray
].total_alloc
++;
1644 alloc_counts
[ (int) alloc_type_varray
].total_pages
++;
1646 new_links
->start_index
= vp
->num_allocated
;
1647 vp
->objects_last_page
= 0;
1649 if (vp
->first
== (vlinks_t
*) 0) /* first allocation? */
1650 vp
->first
= vp
->last
= new_links
;
1652 { /* 2nd or greater allocation */
1653 new_links
->prev
= vp
->last
;
1654 vp
->last
->next
= new_links
;
1655 vp
->last
= new_links
;
1660 /* Compute hash code (from tree.c) */
1665 hash_string (const char *text
, Ptrdiff_t hash_len
, shash_t
**hash_tbl
,
1666 symint_t
*ret_hash_index
)
1671 int first_ch
= *text
;
1674 for (i
= 0; i
< hash_len
; i
++)
1675 hi
= ((hi
& 0x003fffff) * 613) + (text
[i
] & 0xff);
1677 hi
&= (1 << HASHBITS
) - 1;
1680 if (ret_hash_index
!= (symint_t
*) 0)
1681 *ret_hash_index
= hi
;
1683 for (ptr
= hash_tbl
[hi
]; ptr
!= (shash_t
*) 0; ptr
= ptr
->next
)
1684 if ((symint_t
) hash_len
== ptr
->len
1685 && first_ch
== ptr
->string
[0]
1686 && memcmp (text
, ptr
->string
, hash_len
) == 0)
1693 /* Add a string (and null pad) to one of the string tables. A
1694 consequence of hashing strings, is that we don't let strings cross
1695 page boundaries. The extra nulls will be ignored. VP is a string
1696 virtual array, HASH_TBL a pointer to the hash table, the string
1697 starts at START and the position one byte after the string is given
1698 with END_P1, the resulting hash pointer is returned in RET_HASH. */
1701 add_string (varray_t
*vp
, shash_t
**hash_tbl
, const char *start
,
1702 const char *end_p1
, shash_t
**ret_hash
)
1704 Ptrdiff_t len
= end_p1
- start
;
1708 if (len
>= (Ptrdiff_t
) PAGE_USIZE
)
1709 fatal ("string too big (%ld bytes)", (long) len
);
1711 hash_ptr
= hash_string (start
, len
, hash_tbl
, &hi
);
1712 if (hash_ptr
== (shash_t
*) 0)
1716 if (vp
->objects_last_page
+ len
>= (long) PAGE_USIZE
)
1719 = ((vp
->num_allocated
+ PAGE_USIZE
- 1) / PAGE_USIZE
) * PAGE_USIZE
;
1720 add_varray_page (vp
);
1723 hash_ptr
= allocate_shash ();
1724 hash_ptr
->next
= hash_tbl
[hi
];
1725 hash_tbl
[hi
] = hash_ptr
;
1727 hash_ptr
->len
= len
;
1728 hash_ptr
->indx
= vp
->num_allocated
;
1729 hash_ptr
->string
= p
= & vp
->last
->datum
->byte
[ vp
->objects_last_page
];
1731 vp
->objects_last_page
+= len
+1;
1732 vp
->num_allocated
+= len
+1;
1740 if (ret_hash
!= (shash_t
**) 0)
1741 *ret_hash
= hash_ptr
;
1743 return hash_ptr
->indx
;
1747 /* Add a local symbol. The symbol string starts at STR_START and the
1748 first byte after it is marked by STR_END_P1. The symbol has type
1749 TYPE and storage class STORAGE and value VALUE. INDX is an index
1750 to local/aux. symbols. */
1753 add_local_symbol (const char *str_start
, const char *str_end_p1
, st_t type
,
1754 sc_t storage
, symint_t value
, symint_t indx
)
1762 varray_t
*vp
= &cur_file_ptr
->symbols
;
1763 int scope_delta
= 0;
1764 shash_t
*hash_ptr
= (shash_t
*) 0;
1766 if (vp
->objects_last_page
== vp
->objects_per_page
)
1767 add_varray_page (vp
);
1769 psym
= &vp
->last
->datum
->sym
[ vp
->objects_last_page
++ ];
1771 psym
->value
= value
;
1772 psym
->st
= (unsigned) type
;
1773 psym
->sc
= (unsigned) storage
;
1775 psym
->iss
= (str_start
== (const char *) 0)
1777 : add_string (&cur_file_ptr
->strings
,
1778 &cur_file_ptr
->shash_head
[0],
1783 ret
= vp
->num_allocated
++;
1785 if (MIPS_IS_STAB (psym
))
1788 /* Save the symbol within the hash table if this is a static
1789 item, and it has a name. */
1790 if (hash_ptr
!= (shash_t
*) 0
1791 && (type
== st_Global
|| type
== st_Static
|| type
== st_Label
1792 || type
== st_Proc
|| type
== st_StaticProc
))
1793 hash_ptr
->sym_ptr
= psym
;
1795 /* push or pop a scope if appropriate. */
1801 case st_File
: /* beginning of file */
1802 case st_Proc
: /* procedure */
1803 case st_StaticProc
: /* static procedure */
1804 case st_Block
: /* begin scope */
1805 pscope
= allocate_scope ();
1806 pscope
->prev
= cur_file_ptr
->cur_scope
;
1807 pscope
->lsym
= psym
;
1808 pscope
->lnumber
= ret
;
1809 pscope
->type
= type
;
1810 cur_file_ptr
->cur_scope
= pscope
;
1812 if (type
!= st_File
)
1815 /* For every block type except file, struct, union, or
1816 enumeration blocks, push a level on the tag stack. We omit
1817 file types, so that tags can span file boundaries. */
1818 if (type
!= st_File
&& storage
!= sc_Info
)
1820 ptag_head
= allocate_thead ();
1821 ptag_head
->first_tag
= 0;
1822 ptag_head
->prev
= cur_tag_head
;
1823 cur_tag_head
= ptag_head
;
1828 pscope
= cur_file_ptr
->cur_scope
;
1829 if (pscope
== (scope_t
*) 0)
1830 error ("internal error, too many st_End's");
1834 st_t begin_type
= (st_t
) pscope
->lsym
->st
;
1836 if (begin_type
!= st_File
)
1839 /* Except for file, structure, union, or enumeration end
1840 blocks remove all tags created within this scope. */
1841 if (begin_type
!= st_File
&& storage
!= sc_Info
)
1843 ptag_head
= cur_tag_head
;
1844 cur_tag_head
= ptag_head
->prev
;
1846 for (ptag
= ptag_head
->first_tag
;
1847 ptag
!= (tag_t
*) 0;
1850 if (ptag
->forward_ref
!= (forward_t
*) 0)
1851 add_unknown_tag (ptag
);
1853 ptag_next
= ptag
->same_block
;
1854 ptag
->hash_ptr
->tag_ptr
= ptag
->same_name
;
1858 free_thead (ptag_head
);
1861 cur_file_ptr
->cur_scope
= pscope
->prev
;
1862 psym
->index
= pscope
->lnumber
; /* blk end gets begin sym # */
1864 if (storage
!= sc_Info
)
1865 psym
->iss
= pscope
->lsym
->iss
; /* blk end gets same name */
1867 if (begin_type
== st_File
|| begin_type
== st_Block
)
1868 pscope
->lsym
->index
= ret
+1; /* block begin gets next sym # */
1870 /* Functions push two or more aux words as follows:
1871 1st word: index+1 of the end symbol
1872 2nd word: type of the function (plus any aux words needed).
1873 Also, tie the external pointer back to the function begin symbol. */
1877 pscope
->lsym
->index
= add_aux_sym_symint (ret
+1);
1878 type
= add_aux_sym_tir (&last_func_type_info
,
1880 &cur_file_ptr
->thash_head
[0]);
1883 last_func_eptr
->ifd
= cur_file_ptr
->file_index
;
1885 /* The index for an external st_Proc symbol is the index
1886 of the st_Proc symbol in the local symbol table. */
1887 last_func_eptr
->asym
.index
= psym
->index
;
1891 free_scope (pscope
);
1895 cur_file_ptr
->nested_scopes
+= scope_delta
;
1897 if (debug
&& type
!= st_File
1898 && (debug
> 2 || type
== st_Block
|| type
== st_End
1899 || type
== st_Proc
|| type
== st_StaticProc
))
1901 const char *sc_str
= sc_to_string (storage
);
1902 const char *st_str
= st_to_string (type
);
1903 int depth
= cur_file_ptr
->nested_scopes
+ (scope_delta
< 0);
1906 "\tlsym\tv= %10ld, depth= %2d, sc= %-12s",
1907 value
, depth
, sc_str
);
1909 if (str_start
&& str_end_p1
- str_start
> 0)
1910 fprintf (stderr
, " st= %-11s name= %.*s\n",
1911 st_str
, (int) (str_end_p1
- str_start
), str_start
);
1914 Size_t len
= strlen (st_str
);
1915 fprintf (stderr
, " st= %.*s\n", (int) (len
-1), st_str
);
1923 /* Add an external symbol with symbol pointer ESYM and file index
1927 add_ext_symbol (EXTR
*esym
, int ifd
)
1929 const char *str_start
; /* first byte in string */
1930 const char *str_end_p1
; /* first byte after string */
1932 varray_t
*vp
= &ext_symbols
;
1933 shash_t
*hash_ptr
= (shash_t
*) 0;
1935 str_start
= ORIG_ESTRS (esym
->asym
.iss
);
1936 str_end_p1
= str_start
+ strlen (str_start
);
1940 long value
= esym
->asym
.value
;
1941 const char *sc_str
= sc_to_string (esym
->asym
.sc
);
1942 const char *st_str
= st_to_string (esym
->asym
.st
);
1945 "\tesym\tv= %10ld, ifd= %2d, sc= %-12s",
1946 value
, ifd
, sc_str
);
1948 if (str_start
&& str_end_p1
- str_start
> 0)
1949 fprintf (stderr
, " st= %-11s name= %.*s\n",
1950 st_str
, (int) (str_end_p1
- str_start
), str_start
);
1952 fprintf (stderr
, " st= %s\n", st_str
);
1955 if (vp
->objects_last_page
== vp
->objects_per_page
)
1956 add_varray_page (vp
);
1958 psym
= &vp
->last
->datum
->esym
[ vp
->objects_last_page
++ ];
1962 psym
->asym
.index
= indexNil
;
1963 psym
->asym
.iss
= (str_start
== (const char *) 0)
1965 : add_string (&ext_strings
,
1971 hash_ptr
->esym_ptr
= psym
;
1972 return vp
->num_allocated
++;
1976 /* Add an auxiliary symbol (passing a symint). */
1979 add_aux_sym_symint (symint_t aux_word
)
1982 efdr_t
*file_ptr
= cur_file_ptr
;
1983 varray_t
*vp
= &file_ptr
->aux_syms
;
1985 if (vp
->objects_last_page
== vp
->objects_per_page
)
1986 add_varray_page (vp
);
1988 aux_ptr
= &vp
->last
->datum
->aux
[ vp
->objects_last_page
++ ];
1989 aux_ptr
->isym
= aux_word
;
1991 return vp
->num_allocated
++;
1995 /* Add an auxiliary symbol (passing a file/symbol index combo). */
1998 add_aux_sym_rndx (int file_index
, symint_t sym_index
)
2001 efdr_t
*file_ptr
= cur_file_ptr
;
2002 varray_t
*vp
= &file_ptr
->aux_syms
;
2004 if (vp
->objects_last_page
== vp
->objects_per_page
)
2005 add_varray_page (vp
);
2007 aux_ptr
= &vp
->last
->datum
->aux
[ vp
->objects_last_page
++ ];
2008 aux_ptr
->rndx
.rfd
= file_index
;
2009 aux_ptr
->rndx
.index
= sym_index
;
2011 return vp
->num_allocated
++;
2015 /* Add an auxiliary symbol (passing the basic type and possibly
2016 type qualifiers). */
2019 add_aux_sym_tir (type_info_t
*t
, hash_state_t state
, thash_t
**hash_tbl
)
2022 efdr_t
*file_ptr
= cur_file_ptr
;
2023 varray_t
*vp
= &file_ptr
->aux_syms
;
2024 static AUXU init_aux
;
2030 aux
.ti
.bt
= (int) t
->basic_type
;
2031 aux
.ti
.continued
= 0;
2032 aux
.ti
.fBitfield
= t
->bitfield
;
2034 aux
.ti
.tq0
= (int) t
->type_qualifiers
[0];
2035 aux
.ti
.tq1
= (int) t
->type_qualifiers
[1];
2036 aux
.ti
.tq2
= (int) t
->type_qualifiers
[2];
2037 aux
.ti
.tq3
= (int) t
->type_qualifiers
[3];
2038 aux
.ti
.tq4
= (int) t
->type_qualifiers
[4];
2039 aux
.ti
.tq5
= (int) t
->type_qualifiers
[5];
2042 /* For anything that adds additional information, we must not hash,
2043 so check here, and reset our state. */
2045 if (state
!= hash_no
2046 && (t
->type_qualifiers
[0] == tq_Array
2047 || t
->type_qualifiers
[1] == tq_Array
2048 || t
->type_qualifiers
[2] == tq_Array
2049 || t
->type_qualifiers
[3] == tq_Array
2050 || t
->type_qualifiers
[4] == tq_Array
2051 || t
->type_qualifiers
[5] == tq_Array
2052 || t
->basic_type
== bt_Struct
2053 || t
->basic_type
== bt_Union
2054 || t
->basic_type
== bt_Enum
2056 || t
->num_dims
> 0))
2059 /* See if we can hash this type, and save some space, but some types
2060 can't be hashed (because they contain arrays or continuations),
2061 and others can be put into the hash list, but cannot use existing
2062 types because other aux entries precede this one. */
2064 if (state
!= hash_no
)
2069 hi
= aux
.isym
& ((1 << HASHBITS
) - 1);
2072 for (hash_ptr
= hash_tbl
[hi
];
2073 hash_ptr
!= (thash_t
*) 0;
2074 hash_ptr
= hash_ptr
->next
)
2076 if (aux
.isym
== hash_ptr
->type
.isym
)
2080 if (hash_ptr
!= (thash_t
*) 0 && state
== hash_yes
)
2081 return hash_ptr
->indx
;
2083 if (hash_ptr
== (thash_t
*) 0)
2085 hash_ptr
= allocate_thash ();
2086 hash_ptr
->next
= hash_tbl
[hi
];
2087 hash_ptr
->type
= aux
;
2088 hash_ptr
->indx
= vp
->num_allocated
;
2089 hash_tbl
[hi
] = hash_ptr
;
2093 /* Everything is set up, add the aux symbol. */
2094 if (vp
->objects_last_page
== vp
->objects_per_page
)
2095 add_varray_page (vp
);
2097 aux_ptr
= &vp
->last
->datum
->aux
[ vp
->objects_last_page
++ ];
2100 ret
= vp
->num_allocated
++;
2102 /* Add bitfield length if it exists.
2104 NOTE: Mips documentation claims bitfield goes at the end of the
2105 AUX record, but the DECstation compiler emits it here.
2106 (This would only make a difference for enum bitfields.)
2108 Also note: We use the last size given since gcc may emit 2
2109 for an enum bitfield. */
2112 (void) add_aux_sym_symint ((symint_t
) t
->sizes
[t
->num_sizes
-1]);
2115 /* Add tag information if needed. Structure, union, and enum
2116 references add 2 aux symbols: a [file index, symbol index]
2117 pointer to the structure type, and the current file index. */
2119 if (t
->basic_type
== bt_Struct
2120 || t
->basic_type
== bt_Union
2121 || t
->basic_type
== bt_Enum
)
2123 symint_t file_index
= t
->tag_ptr
->ifd
;
2124 symint_t sym_index
= t
->tag_ptr
->indx
;
2128 (void) add_aux_sym_rndx (ST_RFDESCAPE
, sym_index
);
2129 (void) add_aux_sym_symint ((symint_t
)-1);
2131 else if (sym_index
!= indexNil
)
2133 (void) add_aux_sym_rndx (ST_RFDESCAPE
, sym_index
);
2134 (void) add_aux_sym_symint (file_index
);
2138 forward_t
*forward_ref
= allocate_forward ();
2140 forward_ref
->type_ptr
= aux_ptr
;
2141 forward_ref
->next
= t
->tag_ptr
->forward_ref
;
2142 t
->tag_ptr
->forward_ref
= forward_ref
;
2144 (void) add_aux_sym_rndx (ST_RFDESCAPE
, sym_index
);
2145 forward_ref
->index_ptr
2146 = &vp
->last
->datum
->aux
[ vp
->objects_last_page
- 1];
2148 (void) add_aux_sym_symint (file_index
);
2149 forward_ref
->ifd_ptr
2150 = &vp
->last
->datum
->aux
[ vp
->objects_last_page
- 1];
2154 /* Add information about array bounds if they exist. */
2155 for (i
= 0; i
< t
->num_dims
; i
++)
2157 (void) add_aux_sym_rndx (ST_RFDESCAPE
,
2158 cur_file_ptr
->int_type
);
2160 (void) add_aux_sym_symint (cur_file_ptr
->file_index
); /* file index*/
2161 (void) add_aux_sym_symint ((symint_t
) 0); /* low bound */
2162 (void) add_aux_sym_symint (t
->dimensions
[i
] - 1); /* high bound*/
2163 (void) add_aux_sym_symint ((t
->dimensions
[i
] == 0) /* stride */
2165 : (t
->sizes
[i
] * 8) / t
->dimensions
[i
]);
2168 /* NOTE: Mips documentation claims that the bitfield width goes here.
2169 But it needs to be emitted earlier. */
2175 /* Add a tag to the tag table (unless it already exists). */
2178 get_tag (const char *tag_start
, /* 1st byte of tag name */
2179 const char *tag_end_p1
, /* 1st byte after tag name */
2180 symint_t indx
, /* index of tag start block */
2181 bt_t basic_type
) /* bt_Struct, bt_Union, or bt_Enum */
2186 hash_ptr
= hash_string (tag_start
,
2187 tag_end_p1
- tag_start
,
2191 if (hash_ptr
!= (shash_t
*) 0
2192 && hash_ptr
->tag_ptr
!= (tag_t
*) 0)
2194 tag_ptr
= hash_ptr
->tag_ptr
;
2195 if (indx
!= indexNil
)
2197 tag_ptr
->basic_type
= basic_type
;
2198 tag_ptr
->ifd
= cur_file_ptr
->file_index
;
2199 tag_ptr
->indx
= indx
;
2204 (void) add_string (&tag_strings
,
2210 tag_ptr
= allocate_tag ();
2211 tag_ptr
->forward_ref
= (forward_t
*) 0;
2212 tag_ptr
->hash_ptr
= hash_ptr
;
2213 tag_ptr
->same_name
= hash_ptr
->tag_ptr
;
2214 tag_ptr
->basic_type
= basic_type
;
2215 tag_ptr
->indx
= indx
;
2216 tag_ptr
->ifd
= (indx
== indexNil
2217 ? (symint_t
) -1 : cur_file_ptr
->file_index
);
2218 tag_ptr
->same_block
= cur_tag_head
->first_tag
;
2220 cur_tag_head
->first_tag
= tag_ptr
;
2221 hash_ptr
->tag_ptr
= tag_ptr
;
2227 /* Add an unknown {struct, union, enum} tag. */
2230 add_unknown_tag (tag_t
*ptag
)
2232 shash_t
*hash_ptr
= ptag
->hash_ptr
;
2233 char *name_start
= hash_ptr
->string
;
2234 char *name_end_p1
= name_start
+ hash_ptr
->len
;
2235 forward_t
*f_next
= ptag
->forward_ref
;
2238 int file_index
= cur_file_ptr
->file_index
;
2242 const char *agg_type
= "{unknown aggregate type}";
2243 switch (ptag
->basic_type
)
2245 case bt_Struct
: agg_type
= "struct"; break;
2246 case bt_Union
: agg_type
= "union"; break;
2247 case bt_Enum
: agg_type
= "enum"; break;
2251 fprintf (stderr
, "unknown %s %.*s found\n",
2252 agg_type
, (int) hash_ptr
->len
, name_start
);
2255 sym_index
= add_local_symbol (name_start
,
2262 (void) add_local_symbol (name_start
,
2269 while (f_next
!= (forward_t
*) 0)
2272 f_next
= f_next
->next
;
2274 f_cur
->ifd_ptr
->isym
= file_index
;
2275 f_cur
->index_ptr
->rndx
.index
= sym_index
;
2277 free_forward (f_cur
);
2284 /* Add a procedure to the current file's list of procedures, and record
2285 this is the current procedure. If the assembler created a PDR for
2286 this procedure, use that to initialize the current PDR. */
2289 add_procedure (const char *func_start
, /* 1st byte of func name */
2290 const char *func_end_p1
) /* 1st byte after func name */
2293 efdr_t
*file_ptr
= cur_file_ptr
;
2294 varray_t
*vp
= &file_ptr
->procs
;
2296 st_t proc_type
= st_Proc
;
2297 shash_t
*shash_ptr
= hash_string (func_start
,
2298 func_end_p1
- func_start
,
2303 fputc ('\n', stderr
);
2305 if (vp
->objects_last_page
== vp
->objects_per_page
)
2306 add_varray_page (vp
);
2308 cur_proc_ptr
= new_proc_ptr
= &vp
->last
->datum
->proc
[ vp
->objects_last_page
++ ];
2310 vp
->num_allocated
++;
2313 /* Did the assembler create this procedure? If so, get the PDR information. */
2314 cur_oproc_ptr
= (PDR
*) 0;
2315 if (shash_ptr
!= (shash_t
*) 0)
2317 PDR
*old_proc_ptr
= shash_ptr
->proc_ptr
;
2318 SYMR
*sym_ptr
= shash_ptr
->sym_ptr
;
2320 if (old_proc_ptr
!= (PDR
*) 0
2321 && sym_ptr
!= (SYMR
*) 0
2322 && ((st_t
) sym_ptr
->st
== st_Proc
|| (st_t
) sym_ptr
->st
== st_StaticProc
))
2324 cur_oproc_begin
= sym_ptr
;
2325 cur_oproc_end
= shash_ptr
->end_ptr
;
2326 value
= sym_ptr
->value
;
2328 cur_oproc_ptr
= old_proc_ptr
;
2329 proc_type
= (st_t
) sym_ptr
->st
;
2330 *new_proc_ptr
= *old_proc_ptr
; /* initialize */
2334 if (cur_oproc_ptr
== (PDR
*) 0)
2335 error ("did not find a PDR block for %.*s",
2336 (int) (func_end_p1
- func_start
), func_start
);
2338 /* Determine the start of symbols. */
2339 new_proc_ptr
->isym
= file_ptr
->symbols
.num_allocated
;
2341 /* Push the start of the function. */
2342 (void) add_local_symbol (func_start
, func_end_p1
,
2349 /* Initialize the init_file structure. */
2352 initialize_init_file (void)
2359 memset (&init_file
, 0, sizeof (init_file
));
2361 init_file
.fdr
.lang
= langC
;
2362 init_file
.fdr
.fMerge
= 1;
2363 init_file
.fdr
.glevel
= GLEVEL_2
;
2365 /* mips-tfile doesn't attempt to perform byte swapping and always writes
2366 out integers in its native ordering. For cross-compilers, this need
2367 not be the same as either the host or the target. The simplest thing
2368 to do is skip the configury and perform an introspective test. */
2369 /* ??? Despite the name, mips-tfile is currently only used on alpha/Tru64
2370 and would/may require significant work to be used in cross-compiler
2371 configurations, so we could simply admit defeat and hard code this as
2372 little-endian, i.e. init_file.fdr.fBigendian = 0. */
2374 if (endian_test
.c
[3])
2375 init_file
.fdr
.fBigendian
= 1;
2377 INITIALIZE_VARRAY (&init_file
.strings
, char);
2378 INITIALIZE_VARRAY (&init_file
.symbols
, SYMR
);
2379 INITIALIZE_VARRAY (&init_file
.procs
, PDR
);
2380 INITIALIZE_VARRAY (&init_file
.aux_syms
, AUXU
);
2382 init_file_initialized
= 1;
2385 /* Add a new filename, and set up all of the file relative
2386 virtual arrays (strings, symbols, aux syms, etc.). Record
2387 where the current file structure lives. */
2390 add_file (const char *file_start
, /* first byte in string */
2391 const char *file_end_p1
) /* first byte after string */
2393 static char zero_bytes
[2] = { '\0', '\0' };
2395 Ptrdiff_t len
= file_end_p1
- file_start
;
2396 int first_ch
= *file_start
;
2400 fprintf (stderr
, "\tfile\t%.*s\n", (int) len
, file_start
);
2402 /* See if the file has already been created. */
2403 for (file_ptr
= first_file
;
2404 file_ptr
!= (efdr_t
*) 0;
2405 file_ptr
= file_ptr
->next_file
)
2407 if (first_ch
== file_ptr
->name
[0]
2408 && file_ptr
->name
[len
] == '\0'
2409 && memcmp (file_start
, file_ptr
->name
, len
) == 0)
2411 cur_file_ptr
= file_ptr
;
2416 /* If this is a new file, create it. */
2417 if (file_ptr
== (efdr_t
*) 0)
2419 if (file_desc
.objects_last_page
== file_desc
.objects_per_page
)
2420 add_varray_page (&file_desc
);
2422 if (! init_file_initialized
)
2423 initialize_init_file ();
2425 file_ptr
= cur_file_ptr
2426 = &file_desc
.last
->datum
->file
[ file_desc
.objects_last_page
++ ];
2427 *file_ptr
= init_file
;
2429 file_ptr
->file_index
= file_desc
.num_allocated
++;
2431 /* Allocate the string hash table. */
2432 file_ptr
->shash_head
= (shash_t
**) allocate_page ();
2434 /* Make sure 0 byte in string table is null */
2435 add_string (&file_ptr
->strings
,
2436 &file_ptr
->shash_head
[0],
2441 if (file_end_p1
- file_start
> (long) PAGE_USIZE
-2)
2442 fatal ("filename goes over one page boundary");
2444 /* Push the start of the filename. We assume that the filename
2445 will be stored at string offset 1. */
2446 (void) add_local_symbol (file_start
, file_end_p1
, st_File
, sc_Text
,
2447 (symint_t
) 0, (symint_t
) 0);
2448 file_ptr
->fdr
.rss
= 1;
2449 file_ptr
->name
= &file_ptr
->strings
.last
->datum
->byte
[1];
2450 file_ptr
->name_len
= file_end_p1
- file_start
;
2452 /* Update the linked list of file descriptors. */
2453 *last_file_ptr
= file_ptr
;
2454 last_file_ptr
= &file_ptr
->next_file
;
2456 /* Add void & int types to the file (void should be first to catch
2457 errant 0's within the index fields). */
2458 file_ptr
->void_type
= add_aux_sym_tir (&void_type_info
,
2460 &cur_file_ptr
->thash_head
[0]);
2462 file_ptr
->int_type
= add_aux_sym_tir (&int_type_info
,
2464 &cur_file_ptr
->thash_head
[0]);
2469 /* Add a stream of random bytes to a varray. */
2472 add_bytes (varray_t
*vp
, /* virtual array to add too */
2473 char *input_ptr
, /* start of the bytes */
2474 Size_t nitems
) /* # items to move */
2482 if (vp
->objects_last_page
>= vp
->objects_per_page
)
2483 add_varray_page (vp
);
2485 ptr
= &vp
->last
->datum
->byte
[ vp
->objects_last_page
* vp
->object_size
];
2486 move_items
= vp
->objects_per_page
- vp
->objects_last_page
;
2487 if (move_items
> nitems
)
2488 move_items
= nitems
;
2490 move_bytes
= move_items
* vp
->object_size
;
2491 nitems
-= move_items
;
2493 if (move_bytes
>= 32)
2495 (void) memcpy (ptr
, input_ptr
, move_bytes
);
2496 input_ptr
+= move_bytes
;
2500 while (move_bytes
-- > 0)
2501 *ptr
++ = *input_ptr
++;
2507 /* Convert storage class to string. */
2510 sc_to_string (sc_t storage_class
)
2512 switch (storage_class
)
2514 case sc_Nil
: return "Nil,";
2515 case sc_Text
: return "Text,";
2516 case sc_Data
: return "Data,";
2517 case sc_Bss
: return "Bss,";
2518 case sc_Register
: return "Register,";
2519 case sc_Abs
: return "Abs,";
2520 case sc_Undefined
: return "Undefined,";
2521 case sc_CdbLocal
: return "CdbLocal,";
2522 case sc_Bits
: return "Bits,";
2523 case sc_CdbSystem
: return "CdbSystem,";
2524 case sc_RegImage
: return "RegImage,";
2525 case sc_Info
: return "Info,";
2526 case sc_UserStruct
: return "UserStruct,";
2527 case sc_SData
: return "SData,";
2528 case sc_SBss
: return "SBss,";
2529 case sc_RData
: return "RData,";
2530 case sc_Var
: return "Var,";
2531 case sc_Common
: return "Common,";
2532 case sc_SCommon
: return "SCommon,";
2533 case sc_VarRegister
: return "VarRegister,";
2534 case sc_Variant
: return "Variant,";
2535 case sc_SUndefined
: return "SUndefined,";
2536 case sc_Init
: return "Init,";
2537 case sc_Max
: return "Max,";
2544 /* Convert symbol type to string. */
2547 st_to_string (st_t symbol_type
)
2549 switch (symbol_type
)
2551 case st_Nil
: return "Nil,";
2552 case st_Global
: return "Global,";
2553 case st_Static
: return "Static,";
2554 case st_Param
: return "Param,";
2555 case st_Local
: return "Local,";
2556 case st_Label
: return "Label,";
2557 case st_Proc
: return "Proc,";
2558 case st_Block
: return "Block,";
2559 case st_End
: return "End,";
2560 case st_Member
: return "Member,";
2561 case st_Typedef
: return "Typedef,";
2562 case st_File
: return "File,";
2563 case st_RegReloc
: return "RegReloc,";
2564 case st_Forward
: return "Forward,";
2565 case st_StaticProc
: return "StaticProc,";
2566 case st_Constant
: return "Constant,";
2567 case st_Str
: return "String,";
2568 case st_Number
: return "Number,";
2569 case st_Expr
: return "Expr,";
2570 case st_Type
: return "Type,";
2571 case st_Max
: return "Max,";
2578 /* Read a line from standard input, and return the start of the buffer
2579 (which is grows if the line is too big). We split lines at the
2580 semi-colon, and return each logical line independently. */
2585 static int line_split_p
= 0;
2591 if (cur_line_start
== (char *) 0)
2592 { /* allocate initial page */
2593 cur_line_start
= (char *) allocate_page ();
2594 cur_line_alloc
= PAGE_SIZE
;
2601 cur_line_nbytes
= 0;
2603 for (ptr
= cur_line_start
; (ch
= getchar ()) != EOF
; *ptr
++ = ch
)
2605 if (++cur_line_nbytes
>= cur_line_alloc
-1)
2607 int num_pages
= cur_line_alloc
/ PAGE_SIZE
;
2608 char *old_buffer
= cur_line_start
;
2610 cur_line_alloc
+= PAGE_SIZE
;
2611 cur_line_start
= (char *) allocate_multiple_pages (num_pages
+1);
2612 memcpy (cur_line_start
, old_buffer
, num_pages
* PAGE_SIZE
);
2614 ptr
= cur_line_start
+ cur_line_nbytes
- 1;
2621 cur_line_ptr
= cur_line_start
;
2622 return cur_line_ptr
;
2625 else if (ch
== '\0')
2626 error ("null character found in input");
2628 else if (!comment_p
)
2631 string_p
= !string_p
;
2636 else if (ch
== ';' && !string_p
)
2641 cur_line_ptr
= cur_line_start
;
2642 return cur_line_ptr
;
2648 pfatal_with_name (input_name
);
2650 cur_line_ptr
= (char *) 0;
2655 /* Parse #.begin directives which have a label as the first argument
2656 which gives the location of the start of the block. */
2659 parse_begin (const char *start
)
2661 const char *end_p1
; /* end of label */
2663 shash_t
*hash_ptr
; /* hash pointer to lookup label */
2665 if (cur_file_ptr
== (efdr_t
*) 0)
2667 error ("#.begin directive without a preceding .file directive");
2671 if (cur_proc_ptr
== (PDR
*) 0)
2673 error ("#.begin directive without a preceding .ent directive");
2677 for (end_p1
= start
; (ch
= *end_p1
) != '\0' && !ISSPACE (ch
); end_p1
++)
2680 hash_ptr
= hash_string (start
,
2685 if (hash_ptr
== (shash_t
*) 0)
2687 error ("label %.*s not found for #.begin",
2688 (int) (end_p1
- start
), start
);
2692 if (cur_oproc_begin
== (SYMR
*) 0)
2694 error ("procedure table %.*s not found for #.begin",
2695 (int) (end_p1
- start
), start
);
2699 (void) add_local_symbol ((const char *) 0, (const char *) 0,
2701 (symint_t
) hash_ptr
->sym_ptr
->value
- cur_oproc_begin
->value
,
2706 /* Parse #.bend directives which have a label as the first argument
2707 which gives the location of the end of the block. */
2710 parse_bend (const char *start
)
2712 const char *end_p1
; /* end of label */
2714 shash_t
*hash_ptr
; /* hash pointer to lookup label */
2716 if (cur_file_ptr
== (efdr_t
*) 0)
2718 error ("#.begin directive without a preceding .file directive");
2722 if (cur_proc_ptr
== (PDR
*) 0)
2724 error ("#.bend directive without a preceding .ent directive");
2728 for (end_p1
= start
; (ch
= *end_p1
) != '\0' && !ISSPACE (ch
); end_p1
++)
2731 hash_ptr
= hash_string (start
,
2736 if (hash_ptr
== (shash_t
*) 0)
2738 error ("label %.*s not found for #.bend", (int) (end_p1
- start
), start
);
2742 if (cur_oproc_begin
== (SYMR
*) 0)
2744 error ("procedure table %.*s not found for #.bend",
2745 (int) (end_p1
- start
), start
);
2749 (void) add_local_symbol ((const char *) 0, (const char *) 0,
2751 (symint_t
) hash_ptr
->sym_ptr
->value
- cur_oproc_begin
->value
,
2756 /* Parse #.def directives, which are contain standard COFF subdirectives
2757 to describe the debugging format. These subdirectives include:
2759 .scl specify storage class
2760 .val specify a value
2761 .endef specify end of COFF directives
2762 .type specify the type
2763 .size specify the size of an array
2764 .dim specify an array dimension
2765 .tag specify a tag for a struct, union, or enum. */
2768 parse_def (const char *name_start
)
2770 const char *dir_start
; /* start of current directive*/
2771 const char *dir_end_p1
; /* end+1 of current directive*/
2772 const char *arg_start
; /* start of current argument */
2773 const char *arg_end_p1
; /* end+1 of current argument */
2774 const char *name_end_p1
; /* end+1 of label */
2775 const char *tag_start
= 0; /* start of tag name */
2776 const char *tag_end_p1
= 0; /* end+1 of tag name */
2777 sc_t storage_class
= sc_Nil
;
2778 st_t symbol_type
= st_Nil
;
2780 EXTR
*eptr
= (EXTR
*) 0; /* ext. sym equivalent to def*/
2781 int is_function
= 0; /* != 0 if function */
2783 symint_t indx
= cur_file_ptr
->void_type
;
2785 symint_t arg_number
;
2786 symint_t temp_array
[ N_TQ
];
2791 static int inside_enumeration
= 0; /* is this an enumeration? */
2794 /* Initialize the type information. */
2798 /* Search for the end of the name being defined. */
2799 /* Allow spaces and such in names for G++ templates, which produce stabs
2802 #.def SMANIP<long unsigned int>; .scl 10; .type 0x8; .size 8; .endef */
2804 for (name_end_p1
= name_start
; (ch
= *name_end_p1
) != ';' && ch
!= '\0'; name_end_p1
++)
2809 error_line
= __LINE__
;
2814 /* Parse the remaining subdirectives now. */
2815 dir_start
= name_end_p1
+1;
2818 while ((ch
= *dir_start
) == ' ' || ch
== '\t')
2823 error_line
= __LINE__
;
2829 if (dir_start
[1] == 'e'
2830 && memcmp (dir_start
, ".endef", sizeof (".endef")-1) == 0)
2833 /* Pick up the subdirective now. */
2834 for (dir_end_p1
= dir_start
+1;
2835 (ch
= *dir_end_p1
) != ' ' && ch
!= '\t';
2838 if (ch
== '\0' || ISSPACE (ch
))
2840 error_line
= __LINE__
;
2846 /* Pick up the subdirective argument now. */
2847 arg_was_number
= arg_number
= 0;
2849 arg_start
= dir_end_p1
+1;
2851 while (ch
== ' ' || ch
== '\t')
2854 if (ISDIGIT (ch
) || ch
== '-' || ch
== '+')
2857 arg_number
= strtol (arg_start
, (char **) &arg_end_p1
, 0);
2858 if (arg_end_p1
!= arg_start
|| ((ch2
= *arg_end_p1
) != ';') || ch2
!= ',')
2862 else if (ch
== '\0' || ISSPACE (ch
))
2864 error_line
= __LINE__
;
2869 if (!arg_was_number
)
2871 /* Allow spaces and such in names for G++ templates. */
2872 for (arg_end_p1
= arg_start
+1;
2873 (ch
= *arg_end_p1
) != ';' && ch
!= '\0';
2879 error_line
= __LINE__
;
2885 /* Classify the directives now. */
2886 len
= dir_end_p1
- dir_start
;
2887 switch (dir_start
[1])
2890 error_line
= __LINE__
;
2895 if (len
== sizeof (".dim")-1
2896 && memcmp (dir_start
, ".dim", sizeof (".dim")-1) == 0
2899 symint_t
*t_ptr
= &temp_array
[ N_TQ
-1 ];
2901 *t_ptr
= arg_number
;
2902 while (*arg_end_p1
== ',' && arg_was_number
)
2904 arg_start
= arg_end_p1
+1;
2906 while (ch
== ' ' || ch
== '\t')
2910 if (ISDIGIT (ch
) || ch
== '-' || ch
== '+')
2913 arg_number
= strtol (arg_start
, (char **) &arg_end_p1
, 0);
2914 if (arg_end_p1
!= arg_start
|| ((ch2
= *arg_end_p1
) != ';') || ch2
!= ',')
2917 if (t_ptr
== &temp_array
[0])
2919 error_line
= __LINE__
;
2924 *--t_ptr
= arg_number
;
2928 /* Reverse order of dimensions. */
2929 while (t_ptr
<= &temp_array
[ N_TQ
-1 ])
2931 if (t
.num_dims
>= N_TQ
-1)
2933 error_line
= __LINE__
;
2938 t
.dimensions
[ t
.num_dims
++ ] = *t_ptr
++;
2944 error_line
= __LINE__
;
2951 if (len
== sizeof (".scl")-1
2952 && memcmp (dir_start
, ".scl", sizeof (".scl")-1) == 0
2954 && arg_number
< ((symint_t
) C_MAX
))
2956 /* If the symbol is a static or external, we have
2957 already gotten the appropriate type and class, so
2958 make sure we don't override those values. This is
2959 needed because there are some type and classes that
2960 are not in COFF, such as short data, etc. */
2961 if (symbol_type
== st_Nil
)
2963 symbol_type
= map_coff_sym_type
[arg_number
];
2964 storage_class
= map_coff_storage
[arg_number
];
2969 else if (len
== sizeof (".size")-1
2970 && memcmp (dir_start
, ".size", sizeof (".size")-1) == 0
2973 symint_t
*t_ptr
= &temp_array
[ N_TQ
-1 ];
2975 *t_ptr
= arg_number
;
2976 while (*arg_end_p1
== ',' && arg_was_number
)
2978 arg_start
= arg_end_p1
+1;
2980 while (ch
== ' ' || ch
== '\t')
2984 if (ISDIGIT (ch
) || ch
== '-' || ch
== '+')
2987 arg_number
= strtol (arg_start
, (char **) &arg_end_p1
, 0);
2988 if (arg_end_p1
!= arg_start
|| ((ch2
= *arg_end_p1
) != ';') || ch2
!= ',')
2991 if (t_ptr
== &temp_array
[0])
2993 error_line
= __LINE__
;
2998 *--t_ptr
= arg_number
;
3002 /* Reverse order of sizes. */
3003 while (t_ptr
<= &temp_array
[ N_TQ
-1 ])
3005 if (t
.num_sizes
>= N_TQ
-1)
3007 error_line
= __LINE__
;
3012 t
.sizes
[ t
.num_sizes
++ ] = *t_ptr
++;
3019 error_line
= __LINE__
;
3026 if (len
== sizeof (".type")-1
3027 && memcmp (dir_start
, ".type", sizeof (".type")-1) == 0
3030 tq_t
*tq_ptr
= &t
.type_qualifiers
[0];
3032 t
.orig_type
= (coff_type_t
) (arg_number
& N_BTMASK
);
3033 t
.basic_type
= map_coff_types
[(int) t
.orig_type
];
3034 for (i
= N_TQ
-1; i
>= 0; i
--)
3036 int dt
= (arg_number
>> ((i
* N_TQ_SHIFT
) + N_BT_SHIFT
)
3039 if (dt
!= (int) DT_NON
)
3040 *tq_ptr
++ = map_coff_derived_type
[dt
];
3043 /* If this is a function, ignore it, so that we don't get
3044 two entries (one from the .ent, and one for the .def
3045 that precedes it). Save the type information so that
3046 the end block can properly add it after the begin block
3047 index. For MIPS knows what reason, we must strip off
3048 the function type at this point. */
3049 if (tq_ptr
!= &t
.type_qualifiers
[0] && tq_ptr
[-1] == tq_Proc
)
3052 tq_ptr
[-1] = tq_Nil
;
3058 else if (len
== sizeof (".tag")-1
3059 && memcmp (dir_start
, ".tag", sizeof (".tag")-1) == 0)
3061 tag_start
= arg_start
;
3062 tag_end_p1
= arg_end_p1
;
3068 error_line
= __LINE__
;
3075 if (len
== sizeof (".val")-1
3076 && memcmp (dir_start
, ".val", sizeof (".val")-1) == 0)
3081 /* If the value is not an integer value, it must be the
3082 name of a static or global item. Look up the name in
3083 the original symbol table to pick up the storage
3084 class, symbol type, etc. */
3087 shash_t
*orig_hash_ptr
; /* hash within orig sym table*/
3088 shash_t
*ext_hash_ptr
; /* hash within ext. sym table*/
3090 ext_hash_ptr
= hash_string (arg_start
,
3091 arg_end_p1
- arg_start
,
3095 if (ext_hash_ptr
!= (shash_t
*) 0
3096 && ext_hash_ptr
->esym_ptr
!= (EXTR
*) 0)
3097 eptr
= ext_hash_ptr
->esym_ptr
;
3099 orig_hash_ptr
= hash_string (arg_start
,
3100 arg_end_p1
- arg_start
,
3104 if ((orig_hash_ptr
== (shash_t
*) 0
3105 || orig_hash_ptr
->sym_ptr
== (SYMR
*) 0)
3106 && eptr
== (EXTR
*) 0)
3108 fprintf (stderr
, "warning, %.*s not found in original or external symbol tables, value defaults to 0\n",
3109 (int) (arg_end_p1
- arg_start
),
3115 SYMR
*ptr
= (orig_hash_ptr
!= (shash_t
*) 0
3116 && orig_hash_ptr
->sym_ptr
!= (SYMR
*) 0)
3117 ? orig_hash_ptr
->sym_ptr
3120 symbol_type
= (st_t
) ptr
->st
;
3121 storage_class
= (sc_t
) ptr
->sc
;
3129 error_line
= __LINE__
;
3135 /* Set up to find next directive. */
3136 dir_start
= arg_end_p1
+ 1;
3140 if (storage_class
== sc_Bits
)
3150 int num_real_sizes
= t
.num_sizes
- t
.extra_sizes
;
3151 int diff
= t
.num_dims
- num_real_sizes
;
3152 int i
= t
.num_dims
- 1;
3155 if (num_real_sizes
!= 1 || diff
< 0)
3157 error_line
= __LINE__
;
3162 /* If this is an array, make sure the same number of dimensions
3163 and sizes were passed, creating extra sizes for multiply
3164 dimensioned arrays if not passed. */
3168 for (j
= ARRAY_SIZE (t
.sizes
) - 1; j
>= 0; j
--)
3169 t
.sizes
[ j
] = ((j
-diff
) >= 0) ? t
.sizes
[ j
-diff
] : 0;
3171 t
.num_sizes
= i
+ 1;
3172 for ( i
--; i
>= 0; i
-- )
3174 if (t
.dimensions
[ i
+1 ])
3175 t
.sizes
[ i
] = t
.sizes
[ i
+1 ] / t
.dimensions
[ i
+1 ];
3177 t
.sizes
[ i
] = t
.sizes
[ i
+1 ];
3182 /* Except for enumeration members & begin/ending of scopes, put the
3183 type word in the aux. symbol table. */
3185 if (symbol_type
== st_Block
|| symbol_type
== st_End
)
3188 else if (inside_enumeration
)
3189 indx
= cur_file_ptr
->void_type
;
3193 if (t
.basic_type
== bt_Struct
3194 || t
.basic_type
== bt_Union
3195 || t
.basic_type
== bt_Enum
)
3197 if (tag_start
== (char *) 0)
3199 error ("no tag specified for %.*s",
3200 (int) (name_end_p1
- name_start
),
3205 t
.tag_ptr
= get_tag (tag_start
, tag_end_p1
, (symint_t
) indexNil
,
3211 last_func_type_info
= t
;
3212 last_func_eptr
= eptr
;
3216 indx
= add_aux_sym_tir (&t
,
3218 &cur_file_ptr
->thash_head
[0]);
3222 /* If this is an external or static symbol, update the appropriate
3225 if (eptr
!= (EXTR
*) 0
3226 && (eptr
->asym
.index
== indexNil
|| cur_proc_ptr
== (PDR
*) 0))
3228 eptr
->ifd
= cur_file_ptr
->file_index
;
3229 eptr
->asym
.index
= indx
;
3233 /* Do any last minute adjustments that are necessary. */
3234 switch (symbol_type
)
3240 /* For the beginning of structs, unions, and enumerations, the
3241 size info needs to be passed in the value field. */
3244 if (t
.num_sizes
- t
.num_dims
- t
.extra_sizes
!= 1)
3246 error_line
= __LINE__
;
3254 inside_enumeration
= (t
.orig_type
== T_ENUM
);
3258 /* For the end of structs, unions, and enumerations, omit the
3259 name which is always ".eos". This needs to be done last, so
3260 that any error reporting above gives the correct name. */
3263 name_start
= name_end_p1
= 0;
3264 value
= inside_enumeration
= 0;
3268 /* Members of structures and unions that aren't bitfields, need
3269 to adjust the value from a byte offset to a bit offset.
3270 Members of enumerations do not have the value adjusted, and
3271 can be distinguished by indx == indexNil. For enumerations,
3272 update the maximum enumeration value. */
3275 if (!t
.bitfield
&& !inside_enumeration
)
3282 /* Add the symbol, except for global symbols outside of functions,
3283 for which the external symbol table is fine enough. */
3285 if (eptr
== (EXTR
*) 0
3286 || eptr
->asym
.st
== (int) st_Nil
3287 || cur_proc_ptr
!= (PDR
*) 0)
3289 symint_t isym
= add_local_symbol (name_start
, name_end_p1
,
3290 symbol_type
, storage_class
,
3294 /* Deal with struct, union, and enum tags. */
3295 if (symbol_type
== st_Block
)
3297 /* Create or update the tag information. */
3298 tag_t
*tag_ptr
= get_tag (name_start
,
3303 /* If there are any forward references, fill in the appropriate
3304 file and symbol indexes. */
3306 symint_t file_index
= cur_file_ptr
->file_index
;
3307 forward_t
*f_next
= tag_ptr
->forward_ref
;
3310 while (f_next
!= (forward_t
*) 0)
3313 f_next
= f_next
->next
;
3315 f_cur
->ifd_ptr
->isym
= file_index
;
3316 f_cur
->index_ptr
->rndx
.index
= isym
;
3318 free_forward (f_cur
);
3321 tag_ptr
->forward_ref
= (forward_t
*) 0;
3328 /* Error return, issue message. */
3331 error ("compiler error, badly formed #.def (internal line # = %d)", error_line
);
3333 error ("compiler error, badly formed #.def");
3339 /* Parse .end directives. */
3342 parse_end (const char *start
)
3344 const char *start_func
, *end_func_p1
;
3349 if (cur_file_ptr
== (efdr_t
*) 0)
3351 error (".end directive without a preceding .file directive");
3355 if (cur_proc_ptr
== (PDR
*) 0)
3357 error (".end directive without a preceding .ent directive");
3361 /* Get the function name, skipping whitespace. */
3362 for (start_func
= start
; ISSPACE ((unsigned char)*start_func
); start_func
++)
3366 if (!IS_ASM_IDENT (ch
))
3368 error (".end directive has no name");
3372 for (end_func_p1
= start_func
; IS_ASM_IDENT (ch
); ch
= *++end_func_p1
)
3376 /* Get the value field for creating the end from the original object
3377 file (which we find by locating the procedure start, and using the
3378 pointer to the end+1 block and backing up. The index points to a
3379 two word aux. symbol, whose first word is the index of the end
3380 symbol, and the second word is the type of the function return
3383 orig_fdr
= cur_file_ptr
->orig_fdr
;
3385 if (orig_fdr
!= (FDR
*) 0 && cur_oproc_end
!= (SYMR
*) 0)
3386 value
= cur_oproc_end
->value
;
3389 error ("cannot find .end block for %.*s",
3390 (int) (end_func_p1
- start_func
), start_func
);
3392 (void) add_local_symbol (start_func
, end_func_p1
,
3397 cur_proc_ptr
= cur_oproc_ptr
= (PDR
*) 0;
3401 /* Parse .ent directives. */
3404 parse_ent (const char *start
)
3406 const char *start_func
, *end_func_p1
;
3409 if (cur_file_ptr
== (efdr_t
*) 0)
3411 error (".ent directive without a preceding .file directive");
3415 if (cur_proc_ptr
!= (PDR
*) 0)
3417 error ("second .ent directive found before .end directive");
3421 for (start_func
= start
; ISSPACE ((unsigned char)*start_func
); start_func
++)
3425 if (!IS_ASM_IDENT (ch
))
3427 error (".ent directive has no name");
3431 for (end_func_p1
= start_func
; IS_ASM_IDENT (ch
); ch
= *++end_func_p1
)
3434 (void) add_procedure (start_func
, end_func_p1
);
3438 /* Parse .file directives. */
3441 parse_file (const char *start
)
3444 char *start_name
, *end_name_p1
;
3446 (void) strtol (start
, &p
, 0);
3448 || (start_name
= strchr (p
, '"')) == (char *) 0
3449 || (end_name_p1
= strrchr (++start_name
, '"')) == (char *) 0)
3451 error ("invalid .file directive");
3455 if (cur_proc_ptr
!= (PDR
*) 0)
3457 error ("no way to handle .file within .ent/.end section");
3461 add_file (start_name
, end_name_p1
);
3465 /* Make sure the @stabs symbol is emitted. */
3468 mark_stabs (const char *start ATTRIBUTE_UNUSED
)
3472 /* Add a dummy @stabs symbol. */
3474 (void) add_local_symbol (stabs_symbol
,
3475 stabs_symbol
+ sizeof (stabs_symbol
),
3476 stNil
, scInfo
, -1, MIPS_MARK_STAB (0));
3482 /* Parse .stabs directives.
3484 .stabs directives have five fields:
3485 "string" a string, encoding the type information.
3486 code a numeric code, defined in <stab.h>
3488 0 a zero or line number
3489 value a numeric value or an address.
3491 If the value is relocatable, we transform this into:
3492 iss points as an index into string space
3493 value value from lookup of the name
3494 st st from lookup of the name
3495 sc sc from lookup of the name
3496 index code|CODE_MASK
3498 If the value is not relocatable, we transform this into:
3499 iss points as an index into string space
3503 index code|CODE_MASK
3505 .stabn directives have four fields (string is null):
3506 code a numeric code, defined in <stab.h>
3508 0 a zero or a line number
3509 value a numeric value or an address. */
3512 parse_stabs_common (const char *string_start
, /* start of string or NULL */
3513 const char *string_end
, /* end+1 of string or NULL */
3514 const char *rest
) /* rest of the directive. */
3516 efdr_t
*save_file_ptr
= cur_file_ptr
;
3524 if (stabs_seen
== 0)
3527 /* Read code from stabs. */
3528 if (!ISDIGIT (*rest
))
3530 error ("invalid .stabs/.stabn directive, code is non-numeric");
3534 code
= strtol (rest
, &p
, 0);
3536 /* Line number stabs are handled differently, since they have two values,
3537 the line number and the address of the label. We use the index field
3538 (aka code) to hold the line number, and the value field to hold the
3539 address. The symbol type is st_Label, which should be different from
3540 the other stabs, so that gdb can recognize it. */
3542 if (code
== (int) N_SLINE
)
3544 SYMR
*sym_ptr
, dummy_symr
;
3548 if (p
[0] != ',' || p
[1] != '0' || p
[2] != ',' || !ISDIGIT (p
[3]))
3550 error ("invalid line number .stabs/.stabn directive");
3554 code
= strtol (p
+3, &p
, 0);
3556 if (p
[-1] != ',' || ISDIGIT (ch
) || !IS_ASM_IDENT (ch
))
3558 error ("invalid line number .stabs/.stabn directive");
3562 dummy_symr
.index
= code
;
3563 if (dummy_symr
.index
!= code
)
3565 error ("line number (%lu) for .stabs/.stabn directive cannot fit in index field (20 bits)",
3571 shash_ptr
= hash_string (p
,
3576 if (shash_ptr
== (shash_t
*) 0
3577 || (sym_ptr
= shash_ptr
->sym_ptr
) == (SYMR
*) 0)
3579 error ("invalid .stabs/.stabn directive, value not found");
3583 if ((st_t
) sym_ptr
->st
!= st_Label
)
3585 error ("invalid line number .stabs/.stabn directive");
3590 sc
= (sc_t
) sym_ptr
->sc
;
3591 value
= sym_ptr
->value
;
3595 /* Skip ,<num>,<num>, */
3598 for (; ISDIGIT (*p
); p
++)
3602 for (; ISDIGIT (*p
); p
++)
3607 if (!IS_ASM_IDENT (ch
) && ch
!= '-')
3610 error ("invalid .stabs/.stabn directive, bad character");
3614 if (ISDIGIT (ch
) || ch
== '-')
3618 value
= strtol (p
, &p
, 0);
3621 error ("invalid .stabs/.stabn directive, stuff after numeric value");
3625 else if (!IS_ASM_IDENT (ch
))
3627 error ("invalid .stabs/.stabn directive, bad character");
3634 const char *start
, *end_p1
;
3637 if ((end_p1
= strchr (start
, '+')) == (char *) 0)
3639 if ((end_p1
= strchr (start
, '-')) == (char *) 0)
3640 end_p1
= start
+ strlen (start
) - 1;
3643 shash_ptr
= hash_string (start
,
3648 if (shash_ptr
== (shash_t
*) 0
3649 || (sym_ptr
= shash_ptr
->sym_ptr
) == (SYMR
*) 0)
3651 shash_ptr
= hash_string (start
,
3656 if (shash_ptr
== (shash_t
*) 0
3657 || shash_ptr
->esym_ptr
== (EXTR
*) 0)
3659 error ("invalid .stabs/.stabn directive, value not found");
3663 sym_ptr
= &(shash_ptr
->esym_ptr
->asym
);
3666 /* Traditionally, N_LBRAC and N_RBRAC are *not* relocated. */
3667 if (code
== (int) N_LBRAC
|| code
== (int) N_RBRAC
)
3674 sc
= (sc_t
) sym_ptr
->sc
;
3675 st
= (st_t
) sym_ptr
->st
;
3677 value
= sym_ptr
->value
;
3682 if (((!ISDIGIT (*end_p1
)) && (*end_p1
!= '-'))
3683 || ((ch
!= '+') && (ch
!= '-')))
3685 error ("invalid .stabs/.stabn directive, badly formed value");
3689 value
+= strtol (end_p1
, &p
, 0);
3691 value
-= strtol (end_p1
, &p
, 0);
3695 error ("invalid .stabs/.stabn directive, stuff after numeric value");
3700 code
= MIPS_MARK_STAB (code
);
3703 (void) add_local_symbol (string_start
, string_end
, st
, sc
, value
, code
);
3704 /* Restore normal file type. */
3705 cur_file_ptr
= save_file_ptr
;
3710 parse_stabs (const char *start
)
3712 const char *end
= strchr (start
+1, '"');
3714 if (*start
!= '"' || end
== (const char *) 0 || end
[1] != ',')
3716 error ("invalid .stabs directive, no string");
3720 parse_stabs_common (start
+1, end
, end
+2);
3725 parse_stabn (const char *start
)
3727 parse_stabs_common ((const char *) 0, (const char *) 0, start
);
3731 /* Parse the input file, and write the lines to the output file
3744 fprintf (stderr
, "\tinput\n");
3746 /* Add a dummy scope block around the entire compilation unit for
3747 structures defined outside of blocks. */
3748 ptag_head
= allocate_thead ();
3749 ptag_head
->first_tag
= 0;
3750 ptag_head
->prev
= cur_tag_head
;
3751 cur_tag_head
= ptag_head
;
3753 while ((p
= read_line ()) != (char *) 0)
3755 /* Skip leading blanks. */
3756 while (ISSPACE ((unsigned char)*p
))
3759 /* See if it's a directive we handle. If so, dispatch handler. */
3760 for (i
= 0; i
< ARRAY_SIZE (pseudo_ops
); i
++)
3761 if (memcmp (p
, pseudo_ops
[i
].name
, pseudo_ops
[i
].len
) == 0
3762 && ISSPACE ((unsigned char)(p
[pseudo_ops
[i
].len
])))
3764 p
+= pseudo_ops
[i
].len
; /* skip to first argument */
3765 while (ISSPACE ((unsigned char)*p
))
3768 (*pseudo_ops
[i
].func
)( p
);
3773 /* Process any tags at global level. */
3774 ptag_head
= cur_tag_head
;
3775 cur_tag_head
= ptag_head
->prev
;
3777 for (ptag
= ptag_head
->first_tag
;
3778 ptag
!= (tag_t
*) 0;
3781 if (ptag
->forward_ref
!= (forward_t
*) 0)
3782 add_unknown_tag (ptag
);
3784 ptag_next
= ptag
->same_block
;
3785 ptag
->hash_ptr
->tag_ptr
= ptag
->same_name
;
3789 free_thead (ptag_head
);
3794 /* Update the global headers with the final offsets in preparation
3795 to write out the .T file. */
3798 update_headers (void)
3803 /* Set up the symbolic header. */
3804 file_offset
= sizeof (symbolic_header
) + orig_file_header
.f_symptr
;
3805 symbolic_header
.magic
= orig_sym_hdr
.magic
;
3806 symbolic_header
.vstamp
= orig_sym_hdr
.vstamp
;
3808 /* Set up global counts. */
3809 symbolic_header
.issExtMax
= ext_strings
.num_allocated
;
3810 symbolic_header
.idnMax
= dense_num
.num_allocated
;
3811 symbolic_header
.ifdMax
= file_desc
.num_allocated
;
3812 symbolic_header
.iextMax
= ext_symbols
.num_allocated
;
3813 symbolic_header
.ilineMax
= orig_sym_hdr
.ilineMax
;
3814 symbolic_header
.ioptMax
= orig_sym_hdr
.ioptMax
;
3815 symbolic_header
.cbLine
= orig_sym_hdr
.cbLine
;
3816 symbolic_header
.crfd
= orig_sym_hdr
.crfd
;
3819 /* Loop through each file, figuring out how many local syms,
3820 line numbers, etc. there are. Also, put out end symbol
3821 for the filename. */
3823 for (file_ptr
= first_file
;
3824 file_ptr
!= (efdr_t
*) 0;
3825 file_ptr
= file_ptr
->next_file
)
3830 FDR
*fd_ptr
= file_ptr
->orig_fdr
;
3832 cur_file_ptr
= file_ptr
;
3834 /* Copy st_Static symbols from the original local symbol table if
3835 they did not get added to the new local symbol table.
3836 This happens with stabs-in-ecoff or if the source file is
3837 compiled without debugging. */
3838 sym_start
= ORIG_LSYMS (fd_ptr
->isymBase
);
3839 sym_end_p1
= sym_start
+ fd_ptr
->csym
;
3840 for (sym
= sym_start
; sym
< sym_end_p1
; sym
++)
3842 if ((st_t
) sym
->st
== st_Static
)
3844 char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ sym
->iss
);
3845 Size_t len
= strlen (str
);
3848 /* Ignore internal labels. */
3849 if (str
[0] == '$' && str
[1] == 'L')
3851 hash_ptr
= hash_string (str
,
3853 &file_ptr
->shash_head
[0],
3855 if (hash_ptr
== (shash_t
*) 0)
3857 (void) add_local_symbol (str
, str
+ len
,
3858 (st_t
) sym
->st
, (sc_t
) sym
->sc
,
3859 (symint_t
) sym
->value
,
3860 (symint_t
) indexNil
);
3864 (void) add_local_symbol ((const char *) 0, (const char *) 0,
3869 file_ptr
->fdr
.cpd
= file_ptr
->procs
.num_allocated
;
3870 file_ptr
->fdr
.ipdFirst
= symbolic_header
.ipdMax
;
3871 symbolic_header
.ipdMax
+= file_ptr
->fdr
.cpd
;
3873 file_ptr
->fdr
.csym
= file_ptr
->symbols
.num_allocated
;
3874 file_ptr
->fdr
.isymBase
= symbolic_header
.isymMax
;
3875 symbolic_header
.isymMax
+= file_ptr
->fdr
.csym
;
3877 file_ptr
->fdr
.caux
= file_ptr
->aux_syms
.num_allocated
;
3878 file_ptr
->fdr
.iauxBase
= symbolic_header
.iauxMax
;
3879 symbolic_header
.iauxMax
+= file_ptr
->fdr
.caux
;
3881 file_ptr
->fdr
.cbSs
= file_ptr
->strings
.num_allocated
;
3882 file_ptr
->fdr
.issBase
= symbolic_header
.issMax
;
3883 symbolic_header
.issMax
+= file_ptr
->fdr
.cbSs
;
3886 #ifndef ALIGN_SYMTABLE_OFFSET
3887 #define ALIGN_SYMTABLE_OFFSET(OFFSET) (OFFSET)
3890 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3891 i
= WORD_ALIGN (symbolic_header
.cbLine
); /* line numbers */
3894 symbolic_header
.cbLineOffset
= file_offset
;
3896 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3899 i
= symbolic_header
.ioptMax
; /* optimization symbols */
3902 symbolic_header
.cbOptOffset
= file_offset
;
3903 file_offset
+= i
* sizeof (OPTR
);
3904 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3907 i
= symbolic_header
.idnMax
; /* dense numbers */
3910 symbolic_header
.cbDnOffset
= file_offset
;
3911 file_offset
+= i
* sizeof (DNR
);
3912 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3915 i
= symbolic_header
.ipdMax
; /* procedure tables */
3918 symbolic_header
.cbPdOffset
= file_offset
;
3919 file_offset
+= i
* sizeof (PDR
);
3920 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3923 i
= symbolic_header
.isymMax
; /* local symbols */
3926 symbolic_header
.cbSymOffset
= file_offset
;
3927 file_offset
+= i
* sizeof (SYMR
);
3928 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3931 i
= symbolic_header
.iauxMax
; /* aux syms. */
3934 symbolic_header
.cbAuxOffset
= file_offset
;
3935 file_offset
+= i
* sizeof (TIR
);
3936 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3939 i
= WORD_ALIGN (symbolic_header
.issMax
); /* local strings */
3942 symbolic_header
.cbSsOffset
= file_offset
;
3944 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3947 i
= WORD_ALIGN (symbolic_header
.issExtMax
); /* external strings */
3950 symbolic_header
.cbSsExtOffset
= file_offset
;
3952 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3955 i
= symbolic_header
.ifdMax
; /* file tables */
3958 symbolic_header
.cbFdOffset
= file_offset
;
3959 file_offset
+= i
* sizeof (FDR
);
3960 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3963 i
= symbolic_header
.crfd
; /* relative file descriptors */
3966 symbolic_header
.cbRfdOffset
= file_offset
;
3967 file_offset
+= i
* sizeof (symint_t
);
3968 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3971 i
= symbolic_header
.iextMax
; /* external symbols */
3974 symbolic_header
.cbExtOffset
= file_offset
;
3975 file_offset
+= i
* sizeof (EXTR
);
3976 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
3981 /* Write out a varray at a given location. */
3984 write_varray (varray_t
*vp
, /* virtual array */
3985 off_t offset
, /* offset to write varray to */
3986 const char *str
) /* string to print out when tracing */
3988 int num_write
, sys_write
;
3991 if (vp
->num_allocated
== 0)
3995 fprintf (stderr
, "\twarray\tvp = %p, offset = %7lu, size = %7lu, %s\n",
3996 (void *) vp
, (unsigned long) offset
,
3997 vp
->num_allocated
* vp
->object_size
, str
);
3999 if (file_offset
!= (unsigned long) offset
4000 && fseek (object_stream
, (long) offset
, SEEK_SET
) < 0)
4001 pfatal_with_name (object_name
);
4003 for (ptr
= vp
->first
; ptr
!= (vlinks_t
*) 0; ptr
= ptr
->next
)
4005 num_write
= (ptr
->next
== (vlinks_t
*) 0)
4006 ? vp
->objects_last_page
* vp
->object_size
4007 : vp
->objects_per_page
* vp
->object_size
;
4009 sys_write
= fwrite (ptr
->datum
, 1, num_write
, object_stream
);
4011 pfatal_with_name (object_name
);
4013 else if (sys_write
!= num_write
)
4014 fatal ("wrote %d bytes to %s, system returned %d",
4019 file_offset
+= num_write
;
4024 /* Write out the symbol table in the object file. */
4034 fprintf (stderr
, "\n\twrite\tvp = %p, offset = %7u, size = %7lu, %s\n",
4035 (void *) &symbolic_header
, 0,
4036 (unsigned long) sizeof (symbolic_header
), "symbolic header");
4038 sys_write
= fwrite (&symbolic_header
,
4040 sizeof (symbolic_header
),
4044 pfatal_with_name (object_name
);
4046 else if (sys_write
!= sizeof (symbolic_header
))
4047 fatal ("wrote %d bytes to %s, system returned %d",
4048 (int) sizeof (symbolic_header
),
4053 file_offset
= sizeof (symbolic_header
) + orig_file_header
.f_symptr
;
4055 if (symbolic_header
.cbLine
> 0) /* line numbers */
4059 if (file_offset
!= (unsigned long) symbolic_header
.cbLineOffset
4060 && fseek (object_stream
, symbolic_header
.cbLineOffset
, SEEK_SET
) != 0)
4061 pfatal_with_name (object_name
);
4064 fprintf (stderr
, "\twrite\tvp = %p, offset = %7lu, size = %7lu, %s\n",
4065 (void *) &orig_linenum
, (long) symbolic_header
.cbLineOffset
,
4066 (long) symbolic_header
.cbLine
, "Line numbers");
4068 sys_write
= fwrite (orig_linenum
,
4070 symbolic_header
.cbLine
,
4074 pfatal_with_name (object_name
);
4076 else if (sys_write
!= symbolic_header
.cbLine
)
4077 fatal ("wrote %ld bytes to %s, system returned %ld",
4078 (long) symbolic_header
.cbLine
,
4082 file_offset
= symbolic_header
.cbLineOffset
+ symbolic_header
.cbLine
;
4085 if (symbolic_header
.ioptMax
> 0) /* optimization symbols */
4088 long num_write
= symbolic_header
.ioptMax
* sizeof (OPTR
);
4090 if (file_offset
!= (unsigned long) symbolic_header
.cbOptOffset
4091 && fseek (object_stream
, symbolic_header
.cbOptOffset
, SEEK_SET
) != 0)
4092 pfatal_with_name (object_name
);
4095 fprintf (stderr
, "\twrite\tvp = %p, offset = %7lu, size = %7lu, %s\n",
4096 (void *) &orig_opt_syms
, (long) symbolic_header
.cbOptOffset
,
4097 num_write
, "Optimizer symbols");
4099 sys_write
= fwrite (orig_opt_syms
,
4105 pfatal_with_name (object_name
);
4107 else if (sys_write
!= num_write
)
4108 fatal ("wrote %ld bytes to %s, system returned %ld",
4113 file_offset
= symbolic_header
.cbOptOffset
+ num_write
;
4116 if (symbolic_header
.idnMax
> 0) /* dense numbers */
4117 write_varray (&dense_num
, (off_t
) symbolic_header
.cbDnOffset
, "Dense numbers");
4119 if (symbolic_header
.ipdMax
> 0) /* procedure tables */
4121 offset
= symbolic_header
.cbPdOffset
;
4122 for (file_ptr
= first_file
;
4123 file_ptr
!= (efdr_t
*) 0;
4124 file_ptr
= file_ptr
->next_file
)
4126 write_varray (&file_ptr
->procs
, offset
, "Procedure tables");
4127 offset
= file_offset
;
4131 if (symbolic_header
.isymMax
> 0) /* local symbols */
4133 offset
= symbolic_header
.cbSymOffset
;
4134 for (file_ptr
= first_file
;
4135 file_ptr
!= (efdr_t
*) 0;
4136 file_ptr
= file_ptr
->next_file
)
4138 write_varray (&file_ptr
->symbols
, offset
, "Local symbols");
4139 offset
= file_offset
;
4143 if (symbolic_header
.iauxMax
> 0) /* aux symbols */
4145 offset
= symbolic_header
.cbAuxOffset
;
4146 for (file_ptr
= first_file
;
4147 file_ptr
!= (efdr_t
*) 0;
4148 file_ptr
= file_ptr
->next_file
)
4150 write_varray (&file_ptr
->aux_syms
, offset
, "Aux. symbols");
4151 offset
= file_offset
;
4155 if (symbolic_header
.issMax
> 0) /* local strings */
4157 offset
= symbolic_header
.cbSsOffset
;
4158 for (file_ptr
= first_file
;
4159 file_ptr
!= (efdr_t
*) 0;
4160 file_ptr
= file_ptr
->next_file
)
4162 write_varray (&file_ptr
->strings
, offset
, "Local strings");
4163 offset
= file_offset
;
4167 if (symbolic_header
.issExtMax
> 0) /* external strings */
4168 write_varray (&ext_strings
, symbolic_header
.cbSsExtOffset
, "External strings");
4170 if (symbolic_header
.ifdMax
> 0) /* file tables */
4172 offset
= symbolic_header
.cbFdOffset
;
4173 if (file_offset
!= (unsigned long) offset
4174 && fseek (object_stream
, (long) offset
, SEEK_SET
) < 0)
4175 pfatal_with_name (object_name
);
4177 file_offset
= offset
;
4178 for (file_ptr
= first_file
;
4179 file_ptr
!= (efdr_t
*) 0;
4180 file_ptr
= file_ptr
->next_file
)
4183 fprintf (stderr
, "\twrite\tvp = %p, offset = %7lu, size = %7lu, %s\n",
4184 (void *) &file_ptr
->fdr
, file_offset
,
4185 (unsigned long) sizeof (FDR
), "File header");
4187 sys_write
= fwrite (&file_ptr
->fdr
,
4193 pfatal_with_name (object_name
);
4195 else if (sys_write
!= sizeof (FDR
))
4196 fatal ("wrote %d bytes to %s, system returned %d",
4201 file_offset
= offset
+= sizeof (FDR
);
4205 if (symbolic_header
.crfd
> 0) /* relative file descriptors */
4208 symint_t num_write
= symbolic_header
.crfd
* sizeof (symint_t
);
4210 if (file_offset
!= (unsigned long) symbolic_header
.cbRfdOffset
4211 && fseek (object_stream
, symbolic_header
.cbRfdOffset
, SEEK_SET
) != 0)
4212 pfatal_with_name (object_name
);
4215 fprintf (stderr
, "\twrite\tvp = %p, offset = %7lu, size = %7lu, %s\n",
4216 (void *) &orig_rfds
, (long) symbolic_header
.cbRfdOffset
,
4217 num_write
, "Relative file descriptors");
4219 sys_write
= fwrite (orig_rfds
,
4225 pfatal_with_name (object_name
);
4227 else if (sys_write
!= (long) num_write
)
4228 fatal ("wrote %lu bytes to %s, system returned %ld",
4233 file_offset
= symbolic_header
.cbRfdOffset
+ num_write
;
4236 if (symbolic_header
.issExtMax
> 0) /* external symbols */
4237 write_varray (&ext_symbols
, (off_t
) symbolic_header
.cbExtOffset
, "External symbols");
4239 if (fclose (object_stream
) != 0)
4240 pfatal_with_name (object_name
);
4244 /* Read some bytes at a specified location, and return a pointer. */
4247 read_seek (Size_t size
, /* # bytes to read */
4248 off_t offset
, /* offset to read at */
4249 const char *str
) /* name for tracing */
4254 if (size
== 0) /* nothing to read */
4255 return (page_t
*) 0;
4259 "\trseek\tsize = %7lu, offset = %7lu, currently at %7lu, %s\n",
4260 (unsigned long) size
, (unsigned long) offset
, file_offset
, str
);
4262 #ifndef MALLOC_CHECK
4263 ptr
= allocate_multiple_pages ((size
+ PAGE_USIZE
- 1) / PAGE_USIZE
);
4265 ptr
= xcalloc (1, size
);
4268 /* If we need to seek, and the distance is nearby, just do some reads,
4269 to speed things up. */
4270 if (file_offset
!= (unsigned long) offset
)
4272 symint_t difference
= offset
- file_offset
;
4276 char small_buffer
[8];
4278 sys_read
= fread (small_buffer
, 1, difference
, obj_in_stream
);
4280 pfatal_with_name (obj_in_name
);
4282 if ((symint_t
) sys_read
!= difference
)
4283 fatal ("wanted to read %lu bytes from %s, system returned %ld",
4284 (unsigned long) size
,
4288 else if (fseek (obj_in_stream
, offset
, SEEK_SET
) < 0)
4289 pfatal_with_name (obj_in_name
);
4292 sys_read
= fread (ptr
, 1, size
, obj_in_stream
);
4294 pfatal_with_name (obj_in_name
);
4296 if (sys_read
!= (long) size
)
4297 fatal ("wanted to read %lu bytes from %s, system returned %ld",
4298 (unsigned long) size
,
4302 file_offset
= offset
+ size
;
4304 if (file_offset
> max_file_offset
)
4305 max_file_offset
= file_offset
;
4311 /* Read the existing object file (and copy to the output object file
4312 if it is different from the input object file), and remove the old
4318 char buffer
[ PAGE_SIZE
];
4325 int *remap_file_number
;
4326 struct stat stat_buf
;
4329 fprintf (stderr
, "\tcopy\n");
4331 if (fstat (fileno (obj_in_stream
), &stat_buf
) != 0
4332 || fseek (obj_in_stream
, 0L, SEEK_SET
) != 0)
4333 pfatal_with_name (obj_in_name
);
4335 sys_read
= fread (&orig_file_header
,
4337 sizeof (struct filehdr
),
4341 pfatal_with_name (obj_in_name
);
4343 else if (sys_read
== 0 && feof (obj_in_stream
))
4344 return; /* create a .T file sans file header */
4346 else if (sys_read
< (int) sizeof (struct filehdr
))
4347 fatal ("wanted to read %d bytes from %s, system returned %d",
4348 (int) sizeof (struct filehdr
),
4353 if (orig_file_header
.f_nsyms
!= sizeof (HDRR
))
4354 fatal ("%s symbolic header wrong size (%ld bytes, should be %ld)",
4355 input_name
, (long) orig_file_header
.f_nsyms
, (long) sizeof (HDRR
));
4358 /* Read in the current symbolic header. */
4359 if (fseek (obj_in_stream
, (long) orig_file_header
.f_symptr
, SEEK_SET
) != 0)
4360 pfatal_with_name (input_name
);
4362 sys_read
= fread (&orig_sym_hdr
,
4364 sizeof (orig_sym_hdr
),
4368 pfatal_with_name (object_name
);
4370 else if (sys_read
< (int) sizeof (struct filehdr
))
4371 fatal ("wanted to read %d bytes from %s, system returned %d",
4372 (int) sizeof (struct filehdr
),
4377 /* Read in each of the sections if they exist in the object file.
4378 We read things in the order the mips assembler creates the
4379 sections, so in theory no extra seeks are done.
4381 For simplicity sake, round each read up to a page boundary,
4382 we may want to revisit this later.... */
4384 file_offset
= orig_file_header
.f_symptr
+ sizeof (struct filehdr
);
4386 if (orig_sym_hdr
.cbLine
> 0) /* line numbers */
4387 orig_linenum
= (char *) read_seek (orig_sym_hdr
.cbLine
,
4388 orig_sym_hdr
.cbLineOffset
,
4391 if (orig_sym_hdr
.ipdMax
> 0) /* procedure tables */
4392 orig_procs
= (PDR
*) read_seek (orig_sym_hdr
.ipdMax
* sizeof (PDR
),
4393 orig_sym_hdr
.cbPdOffset
,
4394 "Procedure tables");
4396 if (orig_sym_hdr
.isymMax
> 0) /* local symbols */
4397 orig_local_syms
= (SYMR
*) read_seek (orig_sym_hdr
.isymMax
* sizeof (SYMR
),
4398 orig_sym_hdr
.cbSymOffset
,
4401 if (orig_sym_hdr
.iauxMax
> 0) /* aux symbols */
4402 orig_aux_syms
= (AUXU
*) read_seek (orig_sym_hdr
.iauxMax
* sizeof (AUXU
),
4403 orig_sym_hdr
.cbAuxOffset
,
4406 if (orig_sym_hdr
.issMax
> 0) /* local strings */
4407 orig_local_strs
= (char *) read_seek (orig_sym_hdr
.issMax
,
4408 orig_sym_hdr
.cbSsOffset
,
4411 if (orig_sym_hdr
.issExtMax
> 0) /* external strings */
4412 orig_ext_strs
= (char *) read_seek (orig_sym_hdr
.issExtMax
,
4413 orig_sym_hdr
.cbSsExtOffset
,
4414 "External strings");
4416 if (orig_sym_hdr
.ifdMax
> 0) /* file tables */
4417 orig_files
= (FDR
*) read_seek (orig_sym_hdr
.ifdMax
* sizeof (FDR
),
4418 orig_sym_hdr
.cbFdOffset
,
4421 if (orig_sym_hdr
.crfd
> 0) /* relative file descriptors */
4422 orig_rfds
= (symint_t
*) read_seek (orig_sym_hdr
.crfd
* sizeof (symint_t
),
4423 orig_sym_hdr
.cbRfdOffset
,
4424 "Relative file descriptors");
4426 if (orig_sym_hdr
.issExtMax
> 0) /* external symbols */
4427 orig_ext_syms
= (EXTR
*) read_seek (orig_sym_hdr
.iextMax
* sizeof (EXTR
),
4428 orig_sym_hdr
.cbExtOffset
,
4429 "External symbols");
4431 if (orig_sym_hdr
.idnMax
> 0) /* dense numbers */
4433 orig_dense
= (DNR
*) read_seek (orig_sym_hdr
.idnMax
* sizeof (DNR
),
4434 orig_sym_hdr
.cbDnOffset
,
4437 add_bytes (&dense_num
, (char *) orig_dense
, orig_sym_hdr
.idnMax
);
4440 if (orig_sym_hdr
.ioptMax
> 0) /* opt symbols */
4441 orig_opt_syms
= (OPTR
*) read_seek (orig_sym_hdr
.ioptMax
* sizeof (OPTR
),
4442 orig_sym_hdr
.cbOptOffset
,
4443 "Optimizer symbols");
4447 /* The symbol table should be last. */
4448 if (max_file_offset
!= (unsigned long) stat_buf
.st_size
)
4449 fatal ("symbol table is not last (symbol table ends at %ld, .o ends at %ld",
4451 (long) stat_buf
.st_size
);
4454 /* If the first original file descriptor is a dummy which the assembler
4455 put out, but there are no symbols in it, skip it now. */
4456 if (orig_sym_hdr
.ifdMax
> 1
4457 && orig_files
->csym
== 2
4458 && orig_files
->caux
== 0)
4460 char *filename
= orig_local_strs
+ (orig_files
->issBase
+ orig_files
->rss
);
4461 char *suffix
= strrchr (filename
, '.');
4463 if (suffix
!= (char *) 0 && strcmp (suffix
, ".s") == 0)
4468 /* Create array to map original file numbers to the new file numbers
4469 (in case there are duplicate filenames, we collapse them into one
4470 file section, the MIPS assembler may or may not collapse them). */
4472 remap_file_number
= alloca (sizeof (int) * orig_sym_hdr
.ifdMax
);
4474 for (fd
= delete_ifd
; fd
< orig_sym_hdr
.ifdMax
; fd
++)
4476 FDR
*fd_ptr
= ORIG_FILES (fd
);
4477 char *filename
= ORIG_LSTRS (fd_ptr
->issBase
+ fd_ptr
->rss
);
4479 /* file support itself. */
4480 add_file (filename
, filename
+ strlen (filename
));
4481 remap_file_number
[fd
] = cur_file_ptr
->file_index
;
4484 if (delete_ifd
> 0) /* just in case */
4485 remap_file_number
[0] = remap_file_number
[1];
4488 /* Loop, adding each of the external symbols. These must be in
4489 order or otherwise we would have to change the relocation
4490 entries. We don't just call add_bytes, because we need to have
4491 the names put into the external hash table. We set the type to
4492 'void' for now, and parse_def will fill in the correct type if it
4493 is in the symbol table. We must add the external symbols before
4494 the locals, since the locals do lookups against the externals. */
4497 fprintf (stderr
, "\tehash\n");
4499 for (es
= 0; es
< orig_sym_hdr
.iextMax
; es
++)
4501 EXTR
*eptr
= orig_ext_syms
+ es
;
4502 int ifd
= eptr
->ifd
;
4504 (void) add_ext_symbol (eptr
, ((long) ifd
< orig_sym_hdr
.ifdMax
)
4505 ? remap_file_number
[ ifd
] : ifd
);
4509 /* For each of the files in the object file, copy the symbols, and such
4510 into the varrays for the new object file. */
4512 for (fd
= delete_ifd
; fd
< orig_sym_hdr
.ifdMax
; fd
++)
4514 FDR
*fd_ptr
= ORIG_FILES (fd
);
4515 char *filename
= ORIG_LSTRS (fd_ptr
->issBase
+ fd_ptr
->rss
);
4523 /* file support itself. */
4524 add_file (filename
, filename
+ strlen (filename
));
4525 cur_file_ptr
->orig_fdr
= fd_ptr
;
4527 /* Copy stuff that's just passed through (such as line #'s) */
4528 cur_file_ptr
->fdr
.adr
= fd_ptr
->adr
;
4529 cur_file_ptr
->fdr
.ilineBase
= fd_ptr
->ilineBase
;
4530 cur_file_ptr
->fdr
.cline
= fd_ptr
->cline
;
4531 cur_file_ptr
->fdr
.rfdBase
= fd_ptr
->rfdBase
;
4532 cur_file_ptr
->fdr
.crfd
= fd_ptr
->crfd
;
4533 cur_file_ptr
->fdr
.cbLineOffset
= fd_ptr
->cbLineOffset
;
4534 cur_file_ptr
->fdr
.cbLine
= fd_ptr
->cbLine
;
4535 cur_file_ptr
->fdr
.fMerge
= fd_ptr
->fMerge
;
4536 cur_file_ptr
->fdr
.fReadin
= fd_ptr
->fReadin
;
4537 cur_file_ptr
->fdr
.glevel
= fd_ptr
->glevel
;
4540 fprintf (stderr
, "\thash\tstart, filename %s\n", filename
);
4542 /* For each of the static and global symbols defined, add them
4543 to the hash table of original symbols, so we can look up
4546 sym_start
= ORIG_LSYMS (fd_ptr
->isymBase
);
4547 sym_end_p1
= sym_start
+ fd_ptr
->csym
;
4548 for (sym
= sym_start
; sym
< sym_end_p1
; sym
++)
4550 switch ((st_t
) sym
->st
)
4561 auto symint_t hash_index
;
4562 char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ sym
->iss
);
4563 Size_t len
= strlen (str
);
4564 shash_t
*shash_ptr
= hash_string (str
,
4569 if (shash_ptr
!= (shash_t
*) 0)
4570 error ("internal error, %s is already in original symbol table", str
);
4574 shash_ptr
= allocate_shash ();
4575 shash_ptr
->next
= orig_str_hash
[hash_index
];
4576 orig_str_hash
[hash_index
] = shash_ptr
;
4578 shash_ptr
->len
= len
;
4579 shash_ptr
->indx
= indexNil
;
4580 shash_ptr
->string
= str
;
4581 shash_ptr
->sym_ptr
= sym
;
4587 if ((sc_t
) sym
->sc
== sc_Text
)
4589 char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ sym
->iss
);
4593 Size_t len
= strlen (str
);
4594 shash_t
*shash_ptr
= hash_string (str
,
4599 if (shash_ptr
!= (shash_t
*) 0)
4600 shash_ptr
->end_ptr
= sym
;
4610 fprintf (stderr
, "\thash\tdone, filename %s\n", filename
);
4611 fprintf (stderr
, "\tproc\tstart, filename %s\n", filename
);
4614 /* Go through each of the procedures in this file, and add the
4615 procedure pointer to the hash entry for the given name. */
4617 proc_start
= ORIG_PROCS (fd_ptr
->ipdFirst
);
4618 proc_end_p1
= proc_start
+ fd_ptr
->cpd
;
4619 for (proc
= proc_start
; proc
< proc_end_p1
; proc
++)
4621 SYMR
*proc_sym
= ORIG_LSYMS (fd_ptr
->isymBase
+ proc
->isym
);
4622 char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ proc_sym
->iss
);
4623 Size_t len
= strlen (str
);
4624 shash_t
*shash_ptr
= hash_string (str
,
4629 if (shash_ptr
== (shash_t
*) 0)
4630 error ("internal error, function %s is not in original symbol table", str
);
4633 shash_ptr
->proc_ptr
= proc
;
4637 fprintf (stderr
, "\tproc\tdone, filename %s\n", filename
);
4640 cur_file_ptr
= first_file
;
4643 /* Copy all of the object file up to the symbol table. Originally
4644 we were going to use ftruncate, but that doesn't seem to work
4645 on Ultrix 3.1.... */
4647 if (fseek (obj_in_stream
, (long) 0, SEEK_SET
) != 0)
4648 pfatal_with_name (obj_in_name
);
4650 if (fseek (object_stream
, (long) 0, SEEK_SET
) != 0)
4651 pfatal_with_name (object_name
);
4653 for (remaining
= orig_file_header
.f_symptr
;
4655 remaining
-= num_write
)
4658 = (remaining
<= (int) sizeof (buffer
))
4659 ? remaining
: (int) sizeof (buffer
);
4660 sys_read
= fread (buffer
, 1, num_write
, obj_in_stream
);
4662 pfatal_with_name (obj_in_name
);
4664 else if (sys_read
!= num_write
)
4665 fatal ("wanted to read %d bytes from %s, system returned %d",
4670 sys_write
= fwrite (buffer
, 1, num_write
, object_stream
);
4672 pfatal_with_name (object_name
);
4674 else if (sys_write
!= num_write
)
4675 fatal ("wrote %d bytes to %s, system returned %d",
4683 /* Ye olde main program. */
4685 extern int main (int, char **);
4688 main (int argc
, char **argv
)
4691 char *p
= strrchr (argv
[0], '/');
4696 progname
= (p
!= 0) ? p
+1 : argv
[0];
4698 (void) signal (SIGSEGV
, catch_signal
);
4699 (void) signal (SIGBUS
, catch_signal
);
4700 (void) signal (SIGABRT
, catch_signal
);
4702 #if !defined(__SABER__) && !defined(lint)
4703 if (sizeof (efdr_t
) > PAGE_USIZE
)
4704 fatal ("efdr_t has a sizeof %d bytes, when it should be less than %d",
4705 (int) sizeof (efdr_t
),
4708 if (sizeof (page_t
) != PAGE_USIZE
)
4709 fatal ("page_t has a sizeof %d bytes, when it should be %d",
4710 (int) sizeof (page_t
),
4715 alloc_counts
[ alloc_type_none
].alloc_name
= "none";
4716 alloc_counts
[ alloc_type_scope
].alloc_name
= "scope";
4717 alloc_counts
[ alloc_type_vlinks
].alloc_name
= "vlinks";
4718 alloc_counts
[ alloc_type_shash
].alloc_name
= "shash";
4719 alloc_counts
[ alloc_type_thash
].alloc_name
= "thash";
4720 alloc_counts
[ alloc_type_tag
].alloc_name
= "tag";
4721 alloc_counts
[ alloc_type_forward
].alloc_name
= "forward";
4722 alloc_counts
[ alloc_type_thead
].alloc_name
= "thead";
4723 alloc_counts
[ alloc_type_varray
].alloc_name
= "varray";
4725 int_type_info
= type_info_init
;
4726 int_type_info
.basic_type
= bt_Int
;
4728 void_type_info
= type_info_init
;
4729 void_type_info
.basic_type
= bt_Void
;
4731 while ((option
= getopt_long (argc
, argv
, "d:i:I:o:v", options
, NULL
)) != -1)
4739 debug
= strtol (optarg
, &num_end
, 0);
4740 if ((unsigned) debug
> 4 || num_end
== optarg
)
4746 if (rename_output
|| obj_in_name
!= (char *) 0)
4751 /* Fall through to 'i' case. */
4754 if (obj_in_name
== (char *) 0)
4756 obj_in_name
= optarg
;
4764 if (object_name
== (char *) 0)
4765 object_name
= optarg
;
4781 printf (_("mips-tfile %s%s\n"), pkgversion_string
, version_string
);
4782 fputs ("Copyright (C) 2008 Free Software Foundation, Inc.\n", stdout
);
4783 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
4784 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
4789 if (obj_in_name
== (char *) 0 && optind
<= argc
- 2)
4790 obj_in_name
= argv
[--argc
];
4792 if (object_name
== (char *) 0 && optind
<= argc
- 2)
4793 object_name
= argv
[--argc
];
4795 /* If there is an output name, but no input name use
4796 the same file for both, deleting the name between
4797 opening it for input and opening it for output. */
4798 if (obj_in_name
== (char *) 0 && object_name
!= (char *) 0)
4800 obj_in_name
= object_name
;
4804 if (optind
!= argc
- 1)
4807 if (verbose
|| had_errors
)
4809 fprintf (stderr
, _("mips-tfile (GCC) %s"), version_string
);
4810 #ifdef TARGET_VERSION
4813 fputc ('\n', stderr
);
4816 if (object_name
== (char *) 0 || had_errors
)
4818 fprintf (stderr
, _("Calling Sequence:\n"));
4819 fprintf (stderr
, _("\tmips-tfile [-d <num>] [-v] [-i <o-in-file>] -o <o-out-file> <s-file> (or)\n"));
4820 fprintf (stderr
, _("\tmips-tfile [-d <num>] [-v] [-I <o-in-file>] -o <o-out-file> <s-file> (or)\n"));
4821 fprintf (stderr
, _("\tmips-tfile [-d <num>] [-v] <s-file> <o-in-file> <o-out-file>\n"));
4822 fprintf (stderr
, "\n");
4823 fprintf (stderr
, _("Debug levels are:\n"));
4824 fprintf (stderr
, _(" 1\tGeneral debug + trace functions/blocks.\n"));
4825 fprintf (stderr
, _(" 2\tDebug level 1 + trace externals.\n"));
4826 fprintf (stderr
, _(" 3\tDebug level 2 + trace all symbols.\n"));
4827 fprintf (stderr
, _(" 4\tDebug level 3 + trace memory allocations.\n"));
4831 if (obj_in_name
== (char *) 0)
4832 obj_in_name
= object_name
;
4834 if (rename_output
&& rename (object_name
, obj_in_name
) != 0)
4836 char *buffer
= (char *) allocate_multiple_pages (4);
4842 /* Rename failed, copy input file */
4843 in_fd
= open (object_name
, O_RDONLY
, 0666);
4845 pfatal_with_name (object_name
);
4847 out_fd
= open (obj_in_name
, O_WRONLY
| O_CREAT
| O_TRUNC
, 0666);
4849 pfatal_with_name (obj_in_name
);
4851 while ((len
= read (in_fd
, buffer
, 4*PAGE_SIZE
)) > 0)
4853 len2
= write (out_fd
, buffer
, len
);
4855 pfatal_with_name (object_name
);
4858 fatal ("wrote %d bytes to %s, expected to write %d", len2
, obj_in_name
, len
);
4861 free_multiple_pages ((page_t
*) buffer
, 4);
4864 pfatal_with_name (object_name
);
4866 if (close (in_fd
) < 0)
4867 pfatal_with_name (object_name
);
4869 if (close (out_fd
) < 0)
4870 pfatal_with_name (obj_in_name
);
4873 /* Must open input before output, since the output may be the same file, and
4874 we need to get the input handle before truncating it. */
4875 obj_in_stream
= fopen (obj_in_name
, "r");
4876 if (obj_in_stream
== (FILE *) 0)
4877 pfatal_with_name (obj_in_name
);
4879 if (delete_input
&& unlink (obj_in_name
) != 0)
4880 pfatal_with_name (obj_in_name
);
4882 object_stream
= fopen (object_name
, "w");
4883 if (object_stream
== (FILE *) 0)
4884 pfatal_with_name (object_name
);
4886 if (strcmp (argv
[optind
], "-") != 0)
4888 input_name
= argv
[optind
];
4889 if (freopen (argv
[optind
], "r", stdin
) != stdin
)
4890 pfatal_with_name (argv
[optind
]);
4893 copy_object (); /* scan & copy object file */
4894 parse_input (); /* scan all of input */
4896 update_headers (); /* write out tfile */
4901 fprintf (stderr
, "\n\tAllocation summary:\n\n");
4902 for (i
= (int) alloc_type_none
; i
< (int) alloc_type_last
; i
++)
4903 if (alloc_counts
[i
].total_alloc
)
4906 "\t%s\t%5d allocation(s), %5d free(s), %2d page(s)\n",
4907 alloc_counts
[i
].alloc_name
,
4908 alloc_counts
[i
].total_alloc
,
4909 alloc_counts
[i
].total_free
,
4910 alloc_counts
[i
].total_pages
);
4914 return (had_errors
) ? 1 : 0;
4918 /* Catch a signal and exit without dumping core. */
4921 catch_signal (int signum
)
4923 (void) signal (signum
, SIG_DFL
); /* just in case... */
4924 fatal ("%s", strsignal (signum
));
4927 /* Print a fatal error message. NAME is the text.
4928 Also include a system error message based on `errno'. */
4931 pfatal_with_name (const char *msg
)
4933 int save_errno
= errno
; /* just in case.... */
4934 if (line_number
> 0)
4935 fprintf (stderr
, "%s, %s:%ld ", progname
, input_name
, line_number
);
4937 fprintf (stderr
, "%s:", progname
);
4941 fprintf (stderr
, "[errno = 0] %s\n", msg
);
4949 /* Procedure to die with an out of bounds error message. It has
4950 type int, so it can be used with an ?: expression within the
4951 ORIG_xxx macros, but the function never returns. */
4954 out_of_bounds (symint_t indx
, /* index that is out of bounds */
4955 symint_t max
, /* maximum index */
4956 const char *str
, /* string to print out */
4957 int prog_line
) /* line number within mips-tfile.c */
4959 if (indx
< max
) /* just in case */
4962 fprintf (stderr
, "%s, %s:%ld index %lu is out of bounds for %s, max is %lu, mips-tfile.c line# %d\n",
4963 progname
, input_name
, line_number
, indx
, str
, max
, prog_line
);
4966 return 0; /* turn off warning messages */
4970 /* Allocate a cluster of pages. USE_MALLOC says that malloc does not
4971 like sbrk's behind its back (or sbrk isn't available). If we use
4972 sbrk, we assume it gives us zeroed pages. */
4974 #ifndef MALLOC_CHECK
4978 allocate_cluster (Size_t npages
)
4980 page_t
*value
= xcalloc (npages
, PAGE_USIZE
);
4983 fprintf (stderr
, "\talloc\tnpages = %d, value = 0x%.8x\n", npages
, value
);
4988 #else /* USE_MALLOC */
4991 allocate_cluster (Size_t npages
)
4993 page_t
*ptr
= (page_t
*) sbrk (0); /* current sbreak */
4994 unsigned long offset
= ((unsigned long) ptr
) & (PAGE_SIZE
- 1);
4996 if (offset
!= 0) /* align to a page boundary */
4998 if (sbrk (PAGE_USIZE
- offset
) == (char *)-1)
4999 pfatal_with_name ("allocate_cluster");
5001 ptr
= (page_t
*) (((char *) ptr
) + PAGE_SIZE
- offset
);
5004 if (sbrk (npages
* PAGE_USIZE
) == (char *) -1)
5005 pfatal_with_name ("allocate_cluster");
5008 fprintf (stderr
, "\talloc\tnpages = %lu, value = %p\n",
5009 (unsigned long) npages
, (void *) ptr
);
5014 #endif /* USE_MALLOC */
5017 static page_t
*cluster_ptr
= NULL
;
5018 static unsigned pages_left
= 0;
5020 #endif /* MALLOC_CHECK */
5023 /* Allocate some pages (which is initialized to 0). */
5026 allocate_multiple_pages (Size_t npages
)
5028 #ifndef MALLOC_CHECK
5029 if (pages_left
== 0 && npages
< MAX_CLUSTER_PAGES
)
5031 pages_left
= MAX_CLUSTER_PAGES
;
5032 cluster_ptr
= allocate_cluster (MAX_CLUSTER_PAGES
);
5035 if (npages
<= pages_left
)
5037 page_t
*ptr
= cluster_ptr
;
5038 cluster_ptr
+= npages
;
5039 pages_left
-= npages
;
5043 return allocate_cluster (npages
);
5045 #else /* MALLOC_CHECK */
5046 return xcalloc (npages
, PAGE_SIZE
);
5048 #endif /* MALLOC_CHECK */
5052 /* Release some pages. */
5055 free_multiple_pages (page_t
*page_ptr
, Size_t npages
)
5057 #ifndef MALLOC_CHECK
5058 if (pages_left
== 0)
5060 cluster_ptr
= page_ptr
;
5061 pages_left
= npages
;
5064 else if ((page_ptr
+ npages
) == cluster_ptr
)
5066 cluster_ptr
-= npages
;
5067 pages_left
+= npages
;
5070 /* otherwise the page is not freed. If more than call is
5071 done, we probably should worry about it, but at present,
5072 the free pages is done right after an allocate. */
5074 #else /* MALLOC_CHECK */
5077 #endif /* MALLOC_CHECK */
5081 /* Allocate one page (which is initialized to 0). */
5084 allocate_page (void)
5086 #ifndef MALLOC_CHECK
5087 if (pages_left
== 0)
5089 pages_left
= MAX_CLUSTER_PAGES
;
5090 cluster_ptr
= allocate_cluster (MAX_CLUSTER_PAGES
);
5094 return cluster_ptr
++;
5096 #else /* MALLOC_CHECK */
5097 return xcalloc (1, PAGE_SIZE
);
5099 #endif /* MALLOC_CHECK */
5103 /* Allocate scoping information. */
5106 allocate_scope (void)
5109 static scope_t initial_scope
;
5111 #ifndef MALLOC_CHECK
5112 ptr
= alloc_counts
[ (int) alloc_type_scope
].free_list
.f_scope
;
5113 if (ptr
!= (scope_t
*) 0)
5114 alloc_counts
[ (int) alloc_type_scope
].free_list
.f_scope
= ptr
->free
;
5118 int unallocated
= alloc_counts
[ (int) alloc_type_scope
].unallocated
;
5119 page_t
*cur_page
= alloc_counts
[ (int) alloc_type_scope
].cur_page
;
5121 if (unallocated
== 0)
5123 unallocated
= PAGE_SIZE
/ sizeof (scope_t
);
5124 alloc_counts
[ (int) alloc_type_scope
].cur_page
= cur_page
= allocate_page ();
5125 alloc_counts
[ (int) alloc_type_scope
].total_pages
++;
5128 ptr
= &cur_page
->scope
[ --unallocated
];
5129 alloc_counts
[ (int) alloc_type_scope
].unallocated
= unallocated
;
5133 ptr
= xmalloc (sizeof (scope_t
));
5137 alloc_counts
[ (int) alloc_type_scope
].total_alloc
++;
5138 *ptr
= initial_scope
;
5142 /* Free scoping information. */
5145 free_scope (scope_t
*ptr
)
5147 alloc_counts
[ (int) alloc_type_scope
].total_free
++;
5149 #ifndef MALLOC_CHECK
5150 ptr
->free
= alloc_counts
[ (int) alloc_type_scope
].free_list
.f_scope
;
5151 alloc_counts
[ (int) alloc_type_scope
].free_list
.f_scope
= ptr
;
5160 /* Allocate links for pages in a virtual array. */
5163 allocate_vlinks (void)
5166 static vlinks_t initial_vlinks
;
5168 #ifndef MALLOC_CHECK
5169 int unallocated
= alloc_counts
[ (int) alloc_type_vlinks
].unallocated
;
5170 page_t
*cur_page
= alloc_counts
[ (int) alloc_type_vlinks
].cur_page
;
5172 if (unallocated
== 0)
5174 unallocated
= PAGE_SIZE
/ sizeof (vlinks_t
);
5175 alloc_counts
[ (int) alloc_type_vlinks
].cur_page
= cur_page
= allocate_page ();
5176 alloc_counts
[ (int) alloc_type_vlinks
].total_pages
++;
5179 ptr
= &cur_page
->vlinks
[ --unallocated
];
5180 alloc_counts
[ (int) alloc_type_vlinks
].unallocated
= unallocated
;
5183 ptr
= xmalloc (sizeof (vlinks_t
));
5187 alloc_counts
[ (int) alloc_type_vlinks
].total_alloc
++;
5188 *ptr
= initial_vlinks
;
5193 /* Allocate string hash buckets. */
5196 allocate_shash (void)
5199 static shash_t initial_shash
;
5201 #ifndef MALLOC_CHECK
5202 int unallocated
= alloc_counts
[ (int) alloc_type_shash
].unallocated
;
5203 page_t
*cur_page
= alloc_counts
[ (int) alloc_type_shash
].cur_page
;
5205 if (unallocated
== 0)
5207 unallocated
= PAGE_SIZE
/ sizeof (shash_t
);
5208 alloc_counts
[ (int) alloc_type_shash
].cur_page
= cur_page
= allocate_page ();
5209 alloc_counts
[ (int) alloc_type_shash
].total_pages
++;
5212 ptr
= &cur_page
->shash
[ --unallocated
];
5213 alloc_counts
[ (int) alloc_type_shash
].unallocated
= unallocated
;
5216 ptr
= xmalloc (sizeof (shash_t
));
5220 alloc_counts
[ (int) alloc_type_shash
].total_alloc
++;
5221 *ptr
= initial_shash
;
5226 /* Allocate type hash buckets. */
5229 allocate_thash (void)
5232 static thash_t initial_thash
;
5234 #ifndef MALLOC_CHECK
5235 int unallocated
= alloc_counts
[ (int) alloc_type_thash
].unallocated
;
5236 page_t
*cur_page
= alloc_counts
[ (int) alloc_type_thash
].cur_page
;
5238 if (unallocated
== 0)
5240 unallocated
= PAGE_SIZE
/ sizeof (thash_t
);
5241 alloc_counts
[ (int) alloc_type_thash
].cur_page
= cur_page
= allocate_page ();
5242 alloc_counts
[ (int) alloc_type_thash
].total_pages
++;
5245 ptr
= &cur_page
->thash
[ --unallocated
];
5246 alloc_counts
[ (int) alloc_type_thash
].unallocated
= unallocated
;
5249 ptr
= xmalloc (sizeof (thash_t
));
5253 alloc_counts
[ (int) alloc_type_thash
].total_alloc
++;
5254 *ptr
= initial_thash
;
5259 /* Allocate structure, union, or enum tag information. */
5265 static tag_t initial_tag
;
5267 #ifndef MALLOC_CHECK
5268 ptr
= alloc_counts
[ (int) alloc_type_tag
].free_list
.f_tag
;
5269 if (ptr
!= (tag_t
*) 0)
5270 alloc_counts
[ (int) alloc_type_tag
].free_list
.f_tag
= ptr
->free
;
5274 int unallocated
= alloc_counts
[ (int) alloc_type_tag
].unallocated
;
5275 page_t
*cur_page
= alloc_counts
[ (int) alloc_type_tag
].cur_page
;
5277 if (unallocated
== 0)
5279 unallocated
= PAGE_SIZE
/ sizeof (tag_t
);
5280 alloc_counts
[ (int) alloc_type_tag
].cur_page
= cur_page
= allocate_page ();
5281 alloc_counts
[ (int) alloc_type_tag
].total_pages
++;
5284 ptr
= &cur_page
->tag
[ --unallocated
];
5285 alloc_counts
[ (int) alloc_type_tag
].unallocated
= unallocated
;
5289 ptr
= xmalloc (sizeof (tag_t
));
5293 alloc_counts
[ (int) alloc_type_tag
].total_alloc
++;
5298 /* Free scoping information. */
5301 free_tag (tag_t
*ptr
)
5303 alloc_counts
[ (int) alloc_type_tag
].total_free
++;
5305 #ifndef MALLOC_CHECK
5306 ptr
->free
= alloc_counts
[ (int) alloc_type_tag
].free_list
.f_tag
;
5307 alloc_counts
[ (int) alloc_type_tag
].free_list
.f_tag
= ptr
;
5316 /* Allocate forward reference to a yet unknown tag. */
5319 allocate_forward (void)
5322 static forward_t initial_forward
;
5324 #ifndef MALLOC_CHECK
5325 ptr
= alloc_counts
[ (int) alloc_type_forward
].free_list
.f_forward
;
5326 if (ptr
!= (forward_t
*) 0)
5327 alloc_counts
[ (int) alloc_type_forward
].free_list
.f_forward
= ptr
->free
;
5331 int unallocated
= alloc_counts
[ (int) alloc_type_forward
].unallocated
;
5332 page_t
*cur_page
= alloc_counts
[ (int) alloc_type_forward
].cur_page
;
5334 if (unallocated
== 0)
5336 unallocated
= PAGE_SIZE
/ sizeof (forward_t
);
5337 alloc_counts
[ (int) alloc_type_forward
].cur_page
= cur_page
= allocate_page ();
5338 alloc_counts
[ (int) alloc_type_forward
].total_pages
++;
5341 ptr
= &cur_page
->forward
[ --unallocated
];
5342 alloc_counts
[ (int) alloc_type_forward
].unallocated
= unallocated
;
5346 ptr
= xmalloc (sizeof (forward_t
));
5350 alloc_counts
[ (int) alloc_type_forward
].total_alloc
++;
5351 *ptr
= initial_forward
;
5355 /* Free scoping information. */
5358 free_forward (forward_t
*ptr
)
5360 alloc_counts
[ (int) alloc_type_forward
].total_free
++;
5362 #ifndef MALLOC_CHECK
5363 ptr
->free
= alloc_counts
[ (int) alloc_type_forward
].free_list
.f_forward
;
5364 alloc_counts
[ (int) alloc_type_forward
].free_list
.f_forward
= ptr
;
5373 /* Allocate head of type hash list. */
5376 allocate_thead (void)
5379 static thead_t initial_thead
;
5381 #ifndef MALLOC_CHECK
5382 ptr
= alloc_counts
[ (int) alloc_type_thead
].free_list
.f_thead
;
5383 if (ptr
!= (thead_t
*) 0)
5384 alloc_counts
[ (int) alloc_type_thead
].free_list
.f_thead
= ptr
->free
;
5388 int unallocated
= alloc_counts
[ (int) alloc_type_thead
].unallocated
;
5389 page_t
*cur_page
= alloc_counts
[ (int) alloc_type_thead
].cur_page
;
5391 if (unallocated
== 0)
5393 unallocated
= PAGE_SIZE
/ sizeof (thead_t
);
5394 alloc_counts
[ (int) alloc_type_thead
].cur_page
= cur_page
= allocate_page ();
5395 alloc_counts
[ (int) alloc_type_thead
].total_pages
++;
5398 ptr
= &cur_page
->thead
[ --unallocated
];
5399 alloc_counts
[ (int) alloc_type_thead
].unallocated
= unallocated
;
5403 ptr
= xmalloc (sizeof (thead_t
));
5407 alloc_counts
[ (int) alloc_type_thead
].total_alloc
++;
5408 *ptr
= initial_thead
;
5412 /* Free scoping information. */
5415 free_thead (thead_t
*ptr
)
5417 alloc_counts
[ (int) alloc_type_thead
].total_free
++;
5419 #ifndef MALLOC_CHECK
5420 ptr
->free
= (thead_t
*) alloc_counts
[ (int) alloc_type_thead
].free_list
.f_thead
;
5421 alloc_counts
[ (int) alloc_type_thead
].free_list
.f_thead
= ptr
;
5429 #endif /* MIPS_DEBUGGING_INFO */
5432 /* Output an error message and exit. */
5435 fatal (const char *format
, ...)
5439 va_start (ap
, format
);
5441 if (line_number
> 0)
5442 fprintf (stderr
, "%s, %s:%ld ", progname
, input_name
, line_number
);
5444 fprintf (stderr
, "%s:", progname
);
5446 vfprintf (stderr
, format
, ap
);
5448 fprintf (stderr
, "\n");
5449 if (line_number
> 0)
5450 fprintf (stderr
, "line:\t%s\n", cur_line_start
);
5457 error (const char *format
, ...)
5461 va_start (ap
, format
);
5463 if (line_number
> 0)
5464 fprintf (stderr
, "%s, %s:%ld ", progname
, input_name
, line_number
);
5466 fprintf (stderr
, "%s:", progname
);
5468 vfprintf (stderr
, format
, ap
);
5469 fprintf (stderr
, "\n");
5470 if (line_number
> 0)
5471 fprintf (stderr
, "line:\t%s\n", cur_line_start
);
5479 /* More 'friendly' abort that prints the line and file. */
5482 fancy_abort (const char *file
, int line
, const char *func
)
5484 fatal ("abort in %s, at %s:%d", func
, file
, line
);
5488 /* When `malloc.c' is compiled with `rcheck' defined,
5489 it calls this function to report clobberage. */
5492 botch (const char *s
)