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,
6 1999, 2000 Free Software Foundation, Inc.
7 Contributed by Michael Meissner (meissner@cygnus.com).
9 This file is part of GNU CC.
11 GNU CC is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
16 GNU CC is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with GNU CC; see the file COPYING. If not, write to
23 the Free Software Foundation, 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
27 /* Here is a brief description of the MIPS ECOFF symbol table. The
28 MIPS symbol table has the following pieces:
34 +-- Dense number table
42 +-- Relative file descriptors
54 The symbolic header points to each of the other tables, and also
55 contains the number of entries. It also contains a magic number
56 and MIPS compiler version number, such as 2.0.
58 The auxiliary table is a series of 32 bit integers, that are
59 referenced as needed from the local symbol table. Unlike standard
60 COFF, the aux. information does not follow the symbol that uses
61 it, but rather is a separate table. In theory, this would allow
62 the MIPS compilers to collapse duplicate aux. entries, but I've not
63 noticed this happening with the 1.31 compiler suite. The different
64 types of aux. entries are:
66 1) dnLow: Low bound on array dimension.
68 2) dnHigh: High bound on array dimension.
70 3) isym: Index to the local symbol which is the start of the
71 function for the end of function first aux. entry.
73 4) width: Width of structures and bitfields.
75 5) count: Count of ranges for variant part.
77 6) rndx: A relative index into the symbol table. The relative
78 index field has two parts: rfd which is a pointer into the
79 relative file index table or ST_RFDESCAPE which says the next
80 aux. entry is the file number, and index: which is the pointer
81 into the local symbol within a given file table. This is for
82 things like references to types defined in another file.
84 7) Type information: This is like the COFF type bits, except it
85 is 32 bits instead of 16; they still have room to add new
86 basic types; and they can handle more than 6 levels of array,
87 pointer, function, etc. Each type information field contains
88 the following structure members:
90 a) fBitfield: a bit that says this is a bitfield, and the
91 size in bits follows as the next aux. entry.
93 b) continued: a bit that says the next aux. entry is a
94 continuation of the current type information (in case
95 there are more than 6 levels of array/ptr/function).
97 c) bt: an integer containing the base type before adding
98 array, pointer, function, etc. qualifiers. The
99 current base types that I have documentation for are:
102 btAdr -- address - integer same size as ptr
104 btUChar -- unsigned character
106 btUShort -- unsigned short
108 btUInt -- unsigned int
110 btULong -- unsigned long
111 btFloat -- float (real)
112 btDouble -- Double (real)
113 btStruct -- Structure (Record)
114 btUnion -- Union (variant)
116 btTypedef -- defined via a typedef isymRef
117 btRange -- subrange of int
119 btComplex -- fortran complex
120 btDComplex -- fortran double complex
121 btIndirect -- forward or unnamed typedef
122 btFixedDec -- Fixed Decimal
123 btFloatDec -- Float Decimal
124 btString -- Varying Length Character String
125 btBit -- Aligned Bit String
127 btVoid -- Void (MIPS cc revision >= 2.00)
129 d) tq0 - tq5: type qualifier fields as needed. The
130 current type qualifier fields I have documentation for
133 tqNil -- no more qualifiers
137 tqFar -- 8086 far pointers
141 The dense number table is used in the front ends, and disappears by
142 the time the .o is created.
144 With the 1.31 compiler suite, the optimization symbols don't seem
145 to be used as far as I can tell.
147 The linker is the first entity that creates the relative file
148 descriptor table, and I believe it is used so that the individual
149 file table pointers don't have to be rewritten when the objects are
150 merged together into the program file.
152 Unlike COFF, the basic symbol & string tables are split into
153 external and local symbols/strings. The relocation information
154 only goes off of the external symbol table, and the debug
155 information only goes off of the internal symbol table. The
156 external symbols can have links to an appropriate file index and
157 symbol within the file to give it the appropriate type information.
158 Because of this, the external symbols are actually larger than the
159 internal symbols (to contain the link information), and contain the
160 local symbol structure as a member, though this member is not the
161 first member of the external symbol structure (!). I suspect this
162 split is to make strip easier to deal with.
164 Each file table has offsets for where the line numbers, local
165 strings, local symbols, and procedure table starts from within the
166 global tables, and the indexs are reset to 0 for each of those
169 The procedure table contains the binary equivalents of the .ent
170 (start of the function address), .frame (what register is the
171 virtual frame pointer, constant offset from the register to obtain
172 the VFP, and what register holds the return address), .mask/.fmask
173 (bitmask of saved registers, and where the first register is stored
174 relative to the VFP) assembler directives. It also contains the
175 low and high bounds of the line numbers if debugging is turned on.
177 The line number table is a compressed form of the normal COFF line
178 table. Each line number entry is either 1 or 3 bytes long, and
179 contains a signed delta from the previous line, and an unsigned
180 count of the number of instructions this statement takes.
182 The local symbol table contains the following fields:
184 1) iss: index to the local string table giving the name of the
187 2) value: value of the symbol (address, register number, etc.).
189 3) st: symbol type. The current symbol types are:
191 stNil -- Nuthin' special
192 stGlobal -- external symbol
194 stParam -- procedure argument
195 stLocal -- local variable
197 stProc -- External Procedure
198 stBlock -- beginning of block
199 stEnd -- end (of anything)
200 stMember -- member (of anything)
201 stTypedef -- type definition
203 stRegReloc -- register relocation
204 stForward -- forwarding address
205 stStaticProc -- Static procedure
208 4) sc: storage class. The current storage classes are:
210 scText -- text symbol
211 scData -- initialized data symbol
212 scBss -- un-initialized data symbol
213 scRegister -- value of symbol is register number
214 scAbs -- value of symbol is absolute
215 scUndefined -- who knows?
216 scCdbLocal -- variable's value is IN se->va.??
217 scBits -- this is a bit field
218 scCdbSystem -- value is IN debugger's address space
219 scRegImage -- register value saved on stack
220 scInfo -- symbol contains debugger information
221 scUserStruct -- addr in struct user for current process
222 scSData -- load time only small data
223 scSBss -- load time only small common
224 scRData -- load time only read only data
225 scVar -- Var parameter (fortranpascal)
226 scCommon -- common variable
227 scSCommon -- small common
228 scVarRegister -- Var parameter in a register
229 scVariant -- Variant record
230 scSUndefined -- small undefined(external) data
231 scInit -- .init section symbol
233 5) index: pointer to a local symbol or aux. entry.
237 For the following program:
242 printf("Hello World!\n");
246 Mips-tdump produces the following information:
251 timestamp 645311799, Wed Jun 13 17:16:39 1990
252 symbolic header offset 284
253 symbolic header size 96
257 Symbolic header, magic number = 0x7009, vstamp = 1.31:
259 Info Offset Number Bytes
260 ==== ====== ====== =====
262 Line numbers 380 4 4 [13]
264 Procedures Tables 384 1 52
265 Local Symbols 436 16 192
266 Optimization Symbols 0 0 0
267 Auxiliary Symbols 628 39 156
268 Local Strings 784 80 80
269 External Strings 864 144 144
270 File Tables 1008 2 144
272 External Symbols 1152 20 320
276 Name index = 1 Readin = No
277 Merge = No Endian = LITTLE
278 Debug level = G2 Language = C
281 Info Start Number Size Offset
282 ==== ===== ====== ==== ======
283 Local strings 0 15 15 784
284 Local symbols 0 6 72 436
285 Line numbers 0 13 13 380
286 Optimization symbols 0 0 0 0
287 Procedures 0 1 52 384
288 Auxiliary symbols 0 14 56 628
289 Relative Files 0 0 0 0
291 There are 6 local symbols, starting at 436
293 Symbol# 0: "hello2.c"
296 Storage class = Text Index = 6
297 Symbol type = File Value = 0
303 Storage class = Text Index = 12
304 Symbol type = Proc Value = 0
309 Storage class = Text Index = 4
310 Symbol type = Block Value = 8
315 Storage class = Text Index = 2
316 Symbol type = End Value = 28
321 Storage class = Text Index = 1
322 Symbol type = End Value = 52
324 Symbol# 5: "hello2.c"
327 Storage class = Text Index = 0
328 Symbol type = End Value = 0
330 There are 14 auxiliary table entries, starting at 628.
332 * #0 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
333 * #1 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
334 * #2 8, [ 8/ 0], [ 2 0:0 0:0:0:0:0:0]
335 * #3 16, [ 16/ 0], [ 4 0:0 0:0:0:0:0:0]
336 * #4 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
337 * #5 32, [ 32/ 0], [ 8 0:0 0:0:0:0:0:0]
338 * #6 40, [ 40/ 0], [10 0:0 0:0:0:0:0:0]
339 * #7 44, [ 44/ 0], [11 0:0 0:0:0:0:0:0]
340 * #8 12, [ 12/ 0], [ 3 0:0 0:0:0:0:0:0]
341 * #9 20, [ 20/ 0], [ 5 0:0 0:0:0:0:0:0]
342 * #10 28, [ 28/ 0], [ 7 0:0 0:0:0:0:0:0]
343 * #11 36, [ 36/ 0], [ 9 0:0 0:0:0:0:0:0]
344 #12 5, [ 5/ 0], [ 1 1:0 0:0:0:0:0:0]
345 #13 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
347 There are 1 procedure descriptor entries, starting at 0.
349 Procedure descriptor 0:
350 Name index = 10 Name = "main"
351 .mask 0x80000000,-4 .fmask 0x00000000,0
353 Opt. start = -1 Symbols start = 1
354 First line # = 3 Last line # = 6
355 Line Offset = 0 Address = 0x00000000
357 There are 4 bytes holding line numbers, starting at 380.
358 Line 3, delta 0, count 2
359 Line 4, delta 1, count 3
360 Line 5, delta 1, count 2
361 Line 6, delta 1, count 6
363 File #1, "/usr/include/stdio.h"
365 Name index = 1 Readin = No
366 Merge = Yes Endian = LITTLE
367 Debug level = G2 Language = C
370 Info Start Number Size Offset
371 ==== ===== ====== ==== ======
372 Local strings 15 65 65 799
373 Local symbols 6 10 120 508
374 Line numbers 0 0 0 380
375 Optimization symbols 0 0 0 0
377 Auxiliary symbols 14 25 100 684
378 Relative Files 0 0 0 0
380 There are 10 local symbols, starting at 442
382 Symbol# 0: "/usr/include/stdio.h"
385 Storage class = Text Index = 10
386 Symbol type = File Value = 0
391 Storage class = Info Index = 9
392 Symbol type = Block Value = 20
397 Storage class = Info Index = 4
398 Symbol type = Member Value = 0
403 Storage class = Info Index = 15
404 Symbol type = Member Value = 32
409 Storage class = Info Index = 16
410 Symbol type = Member Value = 64
415 Storage class = Info Index = 4
416 Symbol type = Member Value = 96
421 Storage class = Info Index = 3
422 Symbol type = Member Value = 128
427 Storage class = Info Index = 2
428 Symbol type = Member Value = 144
433 Storage class = Info Index = 1
434 Symbol type = End Value = 0
436 Symbol# 9: "/usr/include/stdio.h"
439 Storage class = Text Index = 0
440 Symbol type = End Value = 0
442 There are 25 auxiliary table entries, starting at 642.
444 * #14 -1, [4095/1048575], [63 1:1 f:f:f:f:f:f]
445 #15 65544, [ 8/ 16], [ 2 0:0 1:0:0:0:0:0]
446 #16 65544, [ 8/ 16], [ 2 0:0 1:0:0:0:0:0]
447 * #17 196656, [ 48/ 48], [12 0:0 3:0:0:0:0:0]
448 * #18 8191, [4095/ 1], [63 1:1 0:0:0:0:f:1]
449 * #19 1, [ 1/ 0], [ 0 1:0 0:0:0:0:0:0]
450 * #20 20479, [4095/ 4], [63 1:1 0:0:0:0:f:4]
451 * #21 1, [ 1/ 0], [ 0 1:0 0:0:0:0:0:0]
452 * #22 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
453 * #23 2, [ 2/ 0], [ 0 0:1 0:0:0:0:0:0]
454 * #24 160, [ 160/ 0], [40 0:0 0:0:0:0:0:0]
455 * #25 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
456 * #26 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
457 * #27 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
458 * #28 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
459 * #29 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
460 * #30 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
461 * #31 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
462 * #32 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
463 * #33 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
464 * #34 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
465 * #35 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
466 * #36 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
467 * #37 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
468 * #38 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
470 There are 0 procedure descriptor entries, starting at 1.
472 There are 20 external symbols, starting at 1152
475 Type = array [3 {160}] of struct _iobuf { ifd = 1, index = 1 }
476 String index = 0 Ifd = 1
477 Storage class = Nil Index = 17
478 Symbol type = Global Value = 60
481 String index = 5 Ifd = 1
482 Storage class = Nil Index = 1048575
483 Symbol type = Proc Value = 0
486 String index = 11 Ifd = 1
487 Storage class = Nil Index = 1048575
488 Symbol type = Proc Value = 0
491 String index = 18 Ifd = 1
492 Storage class = Nil Index = 1048575
493 Symbol type = Proc Value = 0
496 String index = 26 Ifd = 1
497 Storage class = Nil Index = 1048575
498 Symbol type = Proc Value = 0
501 String index = 32 Ifd = 1
502 Storage class = Nil Index = 1048575
503 Symbol type = Proc Value = 0
506 String index = 40 Ifd = 1
507 Storage class = Nil Index = 1048575
508 Symbol type = Proc Value = 0
511 String index = 46 Ifd = 1
512 Storage class = Nil Index = 1048575
513 Symbol type = Proc Value = 0
516 String index = 53 Ifd = 1
517 Storage class = Nil Index = 1048575
518 Symbol type = Proc Value = 0
520 Symbol# 9: "setbuffer"
521 String index = 60 Ifd = 1
522 Storage class = Nil Index = 1048575
523 Symbol type = Proc Value = 0
525 Symbol# 10: "setlinebuf"
526 String index = 70 Ifd = 1
527 Storage class = Nil Index = 1048575
528 Symbol type = Proc Value = 0
531 String index = 81 Ifd = 1
532 Storage class = Nil Index = 1048575
533 Symbol type = Proc Value = 0
536 String index = 87 Ifd = 1
537 Storage class = Nil Index = 1048575
538 Symbol type = Proc Value = 0
540 Symbol# 13: "ctermid"
541 String index = 92 Ifd = 1
542 Storage class = Nil Index = 1048575
543 Symbol type = Proc Value = 0
545 Symbol# 14: "cuserid"
546 String index = 100 Ifd = 1
547 Storage class = Nil Index = 1048575
548 Symbol type = Proc Value = 0
550 Symbol# 15: "tempnam"
551 String index = 108 Ifd = 1
552 Storage class = Nil Index = 1048575
553 Symbol type = Proc Value = 0
556 String index = 116 Ifd = 1
557 Storage class = Nil Index = 1048575
558 Symbol type = Proc Value = 0
560 Symbol# 17: "sprintf"
561 String index = 123 Ifd = 1
562 Storage class = Nil Index = 1048575
563 Symbol type = Proc Value = 0
567 String index = 131 Ifd = 0
568 Storage class = Text Index = 1
569 Symbol type = Proc Value = 0
572 String index = 136 Ifd = 0
573 Storage class = Undefined Index = 1048575
574 Symbol type = Proc Value = 0
576 The following auxiliary table entries were unused:
580 #3 16 0x00000010 short
582 #5 32 0x00000020 long
583 #6 40 0x00000028 float
584 #7 44 0x0000002c double
585 #8 12 0x0000000c unsigned char
586 #9 20 0x00000014 unsigned short
587 #10 28 0x0000001c unsigned int
588 #11 36 0x00000024 unsigned long
589 #14 0 0x00000000 void
590 #15 24 0x00000018 int
591 #19 32 0x00000020 long
592 #20 40 0x00000028 float
593 #21 44 0x0000002c double
594 #22 12 0x0000000c unsigned char
595 #23 20 0x00000014 unsigned short
596 #24 28 0x0000001c unsigned int
597 #25 36 0x00000024 unsigned long
598 #26 48 0x00000030 struct no name { ifd = -1, index = 1048575 }
616 #define __proto(x) PARAMS(x)
618 typedef const PTR_T CPTR_T
;
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
639 __proto((const char *)) ATTRIBUTE_NORETURN
;
640 extern void fancy_abort
__proto((void)) ATTRIBUTE_NORETURN
;
641 void botch
__proto((const char *)) ATTRIBUTE_NORETURN
;
643 extern void fatal
PARAMS ((const char *format
, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN
;
644 extern void error
PARAMS ((const char *format
, ...)) ATTRIBUTE_PRINTF_1
;
646 #ifndef MIPS_DEBUGGING_INFO
648 static int line_number
;
649 static int cur_line_start
;
651 static int had_errors
;
652 static const char *progname
;
653 static const char *input_name
;
658 fprintf (stderr
, "Mips-tfile should only be run on a MIPS computer!\n");
662 #else /* MIPS_DEBUGGING defined */
664 /* The local and global symbols have a field index, so undo any defines
665 of index -> strchr and rindex -> strrchr. */
672 #ifndef CROSS_COMPILE
675 #include "mips/a.out.h"
676 #endif /* CROSS_COMPILE */
678 #if defined (USG) || !defined (HAVE_STAB_H)
679 #include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
681 #include <stab.h> /* On BSD, use the system's stab.h. */
685 #define STAB_CODE_TYPE enum __stab_debug_code
687 #define STAB_CODE_TYPE int
696 #define IS_ASM_IDENT(ch) \
697 (ISALNUM (ch) || (ch) == '_' || (ch) == '.' || (ch) == '$')
700 /* Redefinition of storage classes as an enumeration for better
704 sc_Nil
= scNil
, /* no storage class */
705 sc_Text
= scText
, /* text symbol */
706 sc_Data
= scData
, /* initialized data symbol */
707 sc_Bss
= scBss
, /* un-initialized data symbol */
708 sc_Register
= scRegister
, /* value of symbol is register number */
709 sc_Abs
= scAbs
, /* value of symbol is absolute */
710 sc_Undefined
= scUndefined
, /* who knows? */
711 sc_CdbLocal
= scCdbLocal
, /* variable's value is IN se->va.?? */
712 sc_Bits
= scBits
, /* this is a bit field */
713 sc_CdbSystem
= scCdbSystem
, /* value is IN CDB's address space */
714 sc_RegImage
= scRegImage
, /* register value saved on stack */
715 sc_Info
= scInfo
, /* symbol contains debugger information */
716 sc_UserStruct
= scUserStruct
, /* addr in struct user for current process */
717 sc_SData
= scSData
, /* load time only small data */
718 sc_SBss
= scSBss
, /* load time only small common */
719 sc_RData
= scRData
, /* load time only read only data */
720 sc_Var
= scVar
, /* Var parameter (fortran,pascal) */
721 sc_Common
= scCommon
, /* common variable */
722 sc_SCommon
= scSCommon
, /* small common */
723 sc_VarRegister
= scVarRegister
, /* Var parameter in a register */
724 sc_Variant
= scVariant
, /* Variant record */
725 sc_SUndefined
= scSUndefined
, /* small undefined(external) data */
726 sc_Init
= scInit
, /* .init section symbol */
727 sc_Max
= scMax
/* Max storage class+1 */
730 /* Redefinition of symbol type. */
733 st_Nil
= stNil
, /* Nuthin' special */
734 st_Global
= stGlobal
, /* external symbol */
735 st_Static
= stStatic
, /* static */
736 st_Param
= stParam
, /* procedure argument */
737 st_Local
= stLocal
, /* local variable */
738 st_Label
= stLabel
, /* label */
739 st_Proc
= stProc
, /* " " Procedure */
740 st_Block
= stBlock
, /* beginning of block */
741 st_End
= stEnd
, /* end (of anything) */
742 st_Member
= stMember
, /* member (of anything - struct/union/enum */
743 st_Typedef
= stTypedef
, /* type definition */
744 st_File
= stFile
, /* file name */
745 st_RegReloc
= stRegReloc
, /* register relocation */
746 st_Forward
= stForward
, /* forwarding address */
747 st_StaticProc
= stStaticProc
, /* load time only static procs */
748 st_Constant
= stConstant
, /* const */
749 st_Str
= stStr
, /* string */
750 st_Number
= stNumber
, /* pure number (ie. 4 NOR 2+2) */
751 st_Expr
= stExpr
, /* 2+2 vs. 4 */
752 st_Type
= stType
, /* post-coercion SER */
753 st_Max
= stMax
/* max type+1 */
756 /* Redefinition of type qualifiers. */
759 tq_Nil
= tqNil
, /* bt is what you see */
760 tq_Ptr
= tqPtr
, /* pointer */
761 tq_Proc
= tqProc
, /* procedure */
762 tq_Array
= tqArray
, /* duh */
763 tq_Far
= tqFar
, /* longer addressing - 8086/8 land */
764 tq_Vol
= tqVol
, /* volatile */
765 tq_Max
= tqMax
/* Max type qualifier+1 */
768 /* Redefinition of basic types. */
771 bt_Nil
= btNil
, /* undefined */
772 bt_Adr
= btAdr
, /* address - integer same size as pointer */
773 bt_Char
= btChar
, /* character */
774 bt_UChar
= btUChar
, /* unsigned character */
775 bt_Short
= btShort
, /* short */
776 bt_UShort
= btUShort
, /* unsigned short */
777 bt_Int
= btInt
, /* int */
778 bt_UInt
= btUInt
, /* unsigned int */
779 bt_Long
= btLong
, /* long */
780 bt_ULong
= btULong
, /* unsigned long */
781 bt_Float
= btFloat
, /* float (real) */
782 bt_Double
= btDouble
, /* Double (real) */
783 bt_Struct
= btStruct
, /* Structure (Record) */
784 bt_Union
= btUnion
, /* Union (variant) */
785 bt_Enum
= btEnum
, /* Enumerated */
786 bt_Typedef
= btTypedef
, /* defined via a typedef, isymRef points */
787 bt_Range
= btRange
, /* subrange of int */
788 bt_Set
= btSet
, /* pascal sets */
789 bt_Complex
= btComplex
, /* fortran complex */
790 bt_DComplex
= btDComplex
, /* fortran double complex */
791 bt_Indirect
= btIndirect
, /* forward or unnamed typedef */
792 bt_FixedDec
= btFixedDec
, /* Fixed Decimal */
793 bt_FloatDec
= btFloatDec
, /* Float Decimal */
794 bt_String
= btString
, /* Varying Length Character String */
795 bt_Bit
= btBit
, /* Aligned Bit String */
796 bt_Picture
= btPicture
, /* Picture */
799 bt_Void
= btVoid
, /* Void */
801 #define bt_Void bt_Nil
804 bt_Max
= btMax
/* Max basic type+1 */
809 /* Basic COFF storage classes. */
841 /* Regular COFF fundamental type. */
842 typedef enum coff_type
{
862 /* Regular COFF derived types. */
863 typedef enum coff_dt
{
871 #define N_BTMASK 017 /* bitmask to isolate basic type */
872 #define N_TMASK 003 /* bitmask to isolate derived type */
873 #define N_BT_SHIFT 4 /* # bits to shift past basic type */
874 #define N_TQ_SHIFT 2 /* # bits to shift derived types */
875 #define N_TQ 6 /* # of type qualifiers */
877 /* States for whether to hash type or not. */
878 typedef enum hash_state
{
879 hash_no
= 0, /* don't hash type */
880 hash_yes
= 1, /* ok to hash type, or use previous hash */
881 hash_record
= 2 /* ok to record hash, but don't use prev. */
885 /* Types of different sized allocation requests. */
887 alloc_type_none
, /* dummy value */
888 alloc_type_scope
, /* nested scopes linked list */
889 alloc_type_vlinks
, /* glue linking pages in varray */
890 alloc_type_shash
, /* string hash element */
891 alloc_type_thash
, /* type hash element */
892 alloc_type_tag
, /* struct/union/tag element */
893 alloc_type_forward
, /* element to hold unknown tag */
894 alloc_type_thead
, /* head of type hash list */
895 alloc_type_varray
, /* general varray allocation */
896 alloc_type_last
/* last+1 element for array bounds */
900 #define WORD_ALIGN(x) (((x) + (sizeof (long) - 1)) & ~ (sizeof (long) - 1))
901 #define DWORD_ALIGN(x) (((x) + 7) & ~7)
904 /* Structures to provide n-number of virtual arrays, each of which can
905 grow linearly, and which are written in the object file as sequential
906 pages. On systems with a BSD malloc that define USE_MALLOC, the
907 MAX_CLUSTER_PAGES should be 1 less than a power of two, since malloc
908 adds its overhead, and rounds up to the next power of 2. Pages are
909 linked together via a linked list.
911 If PAGE_SIZE is > 4096, the string length in the shash_t structure
912 can't be represented (assuming there are strings > 4096 bytes). */
915 #define PAGE_SIZE 4096 /* size of varray pages */
918 #define PAGE_USIZE ((Size_t)PAGE_SIZE)
921 #ifndef MAX_CLUSTER_PAGES /* # pages to get from system */
922 #ifndef USE_MALLOC /* in one memory request */
923 #define MAX_CLUSTER_PAGES 64
925 #define MAX_CLUSTER_PAGES 63
930 /* Linked list connecting separate page allocations. */
931 typedef struct vlinks
{
932 struct vlinks
*prev
; /* previous set of pages */
933 struct vlinks
*next
; /* next set of pages */
934 union page
*datum
; /* start of page */
935 unsigned long start_index
; /* starting index # of page */
939 /* Virtual array header. */
940 typedef struct varray
{
941 vlinks_t
*first
; /* first page link */
942 vlinks_t
*last
; /* last page link */
943 unsigned long num_allocated
; /* # objects allocated */
944 unsigned short object_size
; /* size in bytes of each object */
945 unsigned short objects_per_page
; /* # objects that can fit on a page */
946 unsigned short objects_last_page
; /* # objects allocated on last page */
950 #define OBJECTS_PER_PAGE(type) (PAGE_SIZE / sizeof (type))
952 #define OBJECTS_PER_PAGE(type) ((sizeof (type) > 1) ? 1 : PAGE_SIZE)
955 #define INIT_VARRAY(type) { /* macro to initialize a varray */ \
956 (vlinks_t *) 0, /* first */ \
957 (vlinks_t *) 0, /* last */ \
958 0, /* num_allocated */ \
959 sizeof (type), /* object_size */ \
960 OBJECTS_PER_PAGE (type), /* objects_per_page */ \
961 OBJECTS_PER_PAGE (type), /* objects_last_page */ \
964 /* Master type for indexes within the symbol table. */
965 typedef unsigned long symint_t
;
968 /* Linked list support for nested scopes (file, block, structure, etc.). */
969 typedef struct scope
{
970 struct scope
*prev
; /* previous scope level */
971 struct scope
*free
; /* free list pointer */
972 SYMR
*lsym
; /* pointer to local symbol node */
973 symint_t lnumber
; /* lsym index */
974 st_t type
; /* type of the node */
978 /* Forward reference list for tags referenced, but not yet defined. */
979 typedef struct forward
{
980 struct forward
*next
; /* next forward reference */
981 struct forward
*free
; /* free list pointer */
982 AUXU
*ifd_ptr
; /* pointer to store file index */
983 AUXU
*index_ptr
; /* pointer to store symbol index */
984 AUXU
*type_ptr
; /* pointer to munge type info */
988 /* Linked list support for tags. The first tag in the list is always
989 the current tag for that block. */
991 struct tag
*free
; /* free list pointer */
992 struct shash
*hash_ptr
; /* pointer to the hash table head */
993 struct tag
*same_name
; /* tag with same name in outer scope */
994 struct tag
*same_block
; /* next tag defined in the same block. */
995 struct forward
*forward_ref
; /* list of forward references */
996 bt_t basic_type
; /* bt_Struct, bt_Union, or bt_Enum */
997 symint_t ifd
; /* file # tag defined in */
998 symint_t indx
; /* index within file's local symbols */
1002 /* Head of a block's linked list of tags. */
1003 typedef struct thead
{
1004 struct thead
*prev
; /* previous block */
1005 struct thead
*free
; /* free list pointer */
1006 struct tag
*first_tag
; /* first tag in block defined */
1010 /* Union containing pointers to each the small structures which are freed up. */
1011 typedef union small_free
{
1012 scope_t
*f_scope
; /* scope structure */
1013 thead_t
*f_thead
; /* tag head structure */
1014 tag_t
*f_tag
; /* tag element structure */
1015 forward_t
*f_forward
; /* forward tag reference */
1019 /* String hash table support. The size of the hash table must fit
1023 #define SHASH_SIZE 1009
1026 #define HASH_LEN_MAX ((1 << 12) - 1) /* Max length we can store */
1028 typedef struct shash
{
1029 struct shash
*next
; /* next hash value */
1030 char *string
; /* string we are hashing */
1031 symint_t len
; /* string length */
1032 symint_t indx
; /* index within string table */
1033 EXTR
*esym_ptr
; /* global symbol pointer */
1034 SYMR
*sym_ptr
; /* local symbol pointer */
1035 SYMR
*end_ptr
; /* symbol pointer to end block */
1036 tag_t
*tag_ptr
; /* tag pointer */
1037 PDR
*proc_ptr
; /* procedure descriptor pointer */
1041 /* Type hash table support. The size of the hash table must fit
1042 within a page with the other extended file descriptor information.
1043 Because unique types which are hashed are fewer in number than
1044 strings, we use a smaller hash value. */
1047 #define THASH_SIZE 113
1050 typedef struct thash
{
1051 struct thash
*next
; /* next hash value */
1052 AUXU type
; /* type we are hashing */
1053 symint_t indx
; /* index within string table */
1057 /* Extended file descriptor that contains all of the support necessary
1058 to add things to each file separately. */
1059 typedef struct efdr
{
1060 FDR fdr
; /* File header to be written out */
1061 FDR
*orig_fdr
; /* original file header */
1062 char *name
; /* filename */
1063 int name_len
; /* length of the filename */
1064 symint_t void_type
; /* aux. pointer to 'void' type */
1065 symint_t int_type
; /* aux. pointer to 'int' type */
1066 scope_t
*cur_scope
; /* current nested scopes */
1067 symint_t file_index
; /* current file number */
1068 int nested_scopes
; /* # nested scopes */
1069 varray_t strings
; /* local strings */
1070 varray_t symbols
; /* local symbols */
1071 varray_t procs
; /* procedures */
1072 varray_t aux_syms
; /* auxiliary symbols */
1073 struct efdr
*next_file
; /* next file descriptor */
1074 /* string/type hash tables */
1075 shash_t
**shash_head
; /* string hash table */
1076 thash_t
*thash_head
[THASH_SIZE
];
1079 /* Pre-initialized extended file structure. */
1080 static efdr_t init_file
=
1082 { /* FDR structure */
1084 0, /* adr: memory address of beginning of file */
1085 0, /* cbLineOffset: byte offset from header for this file ln's */
1086 0, /* cbLine: size of lines for this file */
1087 0, /* cbSs: number of bytes in the ss */
1088 0, /* rss: file name (of source, if known) */
1089 0, /* issBase: file's string space */
1090 0, /* isymBase: beginning of symbols */
1091 0, /* csym: count file's of symbols */
1092 0, /* ilineBase: file's line symbols */
1093 0, /* cline: count of file's line symbols */
1094 0, /* ioptBase: file's optimization entries */
1095 0, /* copt: count of file's optimization entries */
1096 0, /* ipdFirst: start of procedures for this file */
1097 0, /* cpd: count of procedures for this file */
1098 0, /* iauxBase: file's auxiliary entries */
1099 0, /* caux: count of file's auxiliary entries */
1100 0, /* rfdBase: index into the file indirect table */
1101 0, /* crfd: count file indirect entries */
1102 langC
, /* lang: language for this file */
1103 1, /* fMerge: whether this file can be merged */
1104 0, /* fReadin: true if read in (not just created) */
1105 #ifdef HOST_WORDS_BIG_ENDIAN
1106 1, /* fBigendian: if 1, compiled on big endian machine */
1108 0, /* fBigendian: if 1, compiled on big endian machine */
1110 0, /* fTrim: whether the symbol table was trimmed */
1111 GLEVEL_2
, /* glevel: level this file was compiled with */
1112 0, /* reserved: reserved for future use */
1114 0, /* adr: memory address of beginning of file */
1115 0, /* rss: file name (of source, if known) */
1116 0, /* issBase: file's string space */
1117 0, /* cbSs: number of bytes in the ss */
1118 0, /* isymBase: beginning of symbols */
1119 0, /* csym: count file's of symbols */
1120 0, /* ilineBase: file's line symbols */
1121 0, /* cline: count of file's line symbols */
1122 0, /* ioptBase: file's optimization entries */
1123 0, /* copt: count of file's optimization entries */
1124 0, /* ipdFirst: start of procedures for this file */
1125 0, /* cpd: count of procedures for this file */
1126 0, /* iauxBase: file's auxiliary entries */
1127 0, /* caux: count of file's auxiliary entries */
1128 0, /* rfdBase: index into the file indirect table */
1129 0, /* crfd: count file indirect entries */
1130 langC
, /* lang: language for this file */
1131 1, /* fMerge: whether this file can be merged */
1132 0, /* fReadin: true if read in (not just created) */
1133 #ifdef HOST_WORDS_BIG_ENDIAN
1134 1, /* fBigendian: if 1, compiled on big endian machine */
1136 0, /* fBigendian: if 1, compiled on big endian machine */
1138 GLEVEL_2
, /* glevel: level this file was compiled with */
1139 0, /* reserved: reserved for future use */
1140 0, /* cbLineOffset: byte offset from header for this file ln's */
1141 0, /* cbLine: size of lines for this file */
1145 (FDR
*) 0, /* orig_fdr: original file header pointer */
1146 (char *) 0, /* name: pointer to filename */
1147 0, /* name_len: length of filename */
1148 0, /* void_type: ptr to aux node for void type */
1149 0, /* int_type: ptr to aux node for int type */
1150 (scope_t
*) 0, /* cur_scope: current scope being processed */
1151 0, /* file_index: current file # */
1152 0, /* nested_scopes: # nested scopes */
1153 INIT_VARRAY (char), /* strings: local string varray */
1154 INIT_VARRAY (SYMR
), /* symbols: local symbols varray */
1155 INIT_VARRAY (PDR
), /* procs: procedure varray */
1156 INIT_VARRAY (AUXU
), /* aux_syms: auxiliary symbols varray */
1158 (struct efdr
*) 0, /* next_file: next file structure */
1160 (shash_t
**) 0, /* shash_head: string hash table */
1161 { 0 }, /* thash_head: type hash table */
1165 static efdr_t
*first_file
; /* first file descriptor */
1166 static efdr_t
**last_file_ptr
= &first_file
; /* file descriptor tail */
1169 /* Union of various things that are held in pages. */
1170 typedef union page
{
1171 char byte
[ PAGE_SIZE
];
1172 unsigned char ubyte
[ PAGE_SIZE
];
1173 efdr_t file
[ PAGE_SIZE
/ sizeof (efdr_t
) ];
1174 FDR ofile
[ PAGE_SIZE
/ sizeof (FDR
) ];
1175 PDR proc
[ PAGE_SIZE
/ sizeof (PDR
) ];
1176 SYMR sym
[ PAGE_SIZE
/ sizeof (SYMR
) ];
1177 EXTR esym
[ PAGE_SIZE
/ sizeof (EXTR
) ];
1178 AUXU aux
[ PAGE_SIZE
/ sizeof (AUXU
) ];
1179 DNR dense
[ PAGE_SIZE
/ sizeof (DNR
) ];
1180 scope_t scope
[ PAGE_SIZE
/ sizeof (scope_t
) ];
1181 vlinks_t vlinks
[ PAGE_SIZE
/ sizeof (vlinks_t
) ];
1182 shash_t shash
[ PAGE_SIZE
/ sizeof (shash_t
) ];
1183 thash_t thash
[ PAGE_SIZE
/ sizeof (thash_t
) ];
1184 tag_t tag
[ PAGE_SIZE
/ sizeof (tag_t
) ];
1185 forward_t forward
[ PAGE_SIZE
/ sizeof (forward_t
) ];
1186 thead_t thead
[ PAGE_SIZE
/ sizeof (thead_t
) ];
1190 /* Structure holding allocation information for small sized structures. */
1191 typedef struct alloc_info
{
1192 const char *alloc_name
; /* name of this allocation type (must be first) */
1193 page_t
*cur_page
; /* current page being allocated from */
1194 small_free_t free_list
; /* current free list if any */
1195 int unallocated
; /* number of elements unallocated on page */
1196 int total_alloc
; /* total number of allocations */
1197 int total_free
; /* total number of frees */
1198 int total_pages
; /* total number of pages allocated */
1201 /* Type information collected together. */
1202 typedef struct type_info
{
1203 bt_t basic_type
; /* basic type */
1204 coff_type_t orig_type
; /* original COFF-based type */
1205 int num_tq
; /* # type qualifiers */
1206 int num_dims
; /* # dimensions */
1207 int num_sizes
; /* # sizes */
1208 int extra_sizes
; /* # extra sizes not tied with dims */
1209 tag_t
* tag_ptr
; /* tag pointer */
1210 int bitfield
; /* symbol is a bitfield */
1211 int unknown_tag
; /* this is an unknown tag */
1212 tq_t type_qualifiers
[N_TQ
]; /* type qualifiers (ptr, func, array)*/
1213 symint_t dimensions
[N_TQ
]; /* dimensions for each array */
1214 symint_t sizes
[N_TQ
+2]; /* sizes of each array slice + size of
1215 struct/union/enum + bitfield size */
1218 /* Pre-initialized type_info struct. */
1219 static type_info_t type_info_init
= {
1220 bt_Nil
, /* basic type */
1221 T_NULL
, /* original COFF-based type */
1222 0, /* # type qualifiers */
1223 0, /* # dimensions */
1225 0, /* sizes not tied with dims */
1226 NULL
, /* ptr to tag */
1228 0, /* unknown tag */
1229 { /* type qualifiers */
1258 /* Global virtual arrays & hash table for external strings as well as
1259 for the tags table and global tables for file descriptors, and
1262 static varray_t file_desc
= INIT_VARRAY (efdr_t
);
1263 static varray_t dense_num
= INIT_VARRAY (DNR
);
1264 static varray_t tag_strings
= INIT_VARRAY (char);
1265 static varray_t ext_strings
= INIT_VARRAY (char);
1266 static varray_t ext_symbols
= INIT_VARRAY (EXTR
);
1268 static shash_t
*orig_str_hash
[SHASH_SIZE
];
1269 static shash_t
*ext_str_hash
[SHASH_SIZE
];
1270 static shash_t
*tag_hash
[SHASH_SIZE
];
1272 /* Static types for int and void. Also, remember the last function's
1273 type (which is set up when we encounter the declaration for the
1274 function, and used when the end block for the function is emitted. */
1276 static type_info_t int_type_info
;
1277 static type_info_t void_type_info
;
1278 static type_info_t last_func_type_info
;
1279 static EXTR
*last_func_eptr
;
1282 /* Convert COFF basic type to ECOFF basic type. The T_NULL type
1283 really should use bt_Void, but this causes the current ecoff GDB to
1284 issue unsupported type messages, and the Ultrix 4.00 dbx (aka MIPS
1285 2.0) doesn't understand it, even though the compiler generates it.
1286 Maybe this will be fixed in 2.10 or 2.20 of the MIPS compiler
1287 suite, but for now go with what works. */
1289 static bt_t map_coff_types
[ (int)T_MAX
] = {
1290 bt_Nil
, /* T_NULL */
1292 bt_Char
, /* T_CHAR */
1293 bt_Short
, /* T_SHORT */
1295 bt_Long
, /* T_LONG */
1296 bt_Float
, /* T_FLOAT */
1297 bt_Double
, /* T_DOUBLE */
1298 bt_Struct
, /* T_STRUCT */
1299 bt_Union
, /* T_UNION */
1300 bt_Enum
, /* T_ENUM */
1301 bt_Enum
, /* T_MOE */
1302 bt_UChar
, /* T_UCHAR */
1303 bt_UShort
, /* T_USHORT */
1304 bt_UInt
, /* T_UINT */
1305 bt_ULong
/* T_ULONG */
1308 /* Convert COFF storage class to ECOFF storage class. */
1309 static sc_t map_coff_storage
[ (int)C_MAX
] = {
1310 sc_Nil
, /* 0: C_NULL */
1311 sc_Abs
, /* 1: C_AUTO auto var */
1312 sc_Undefined
, /* 2: C_EXT external */
1313 sc_Data
, /* 3: C_STAT static */
1314 sc_Register
, /* 4: C_REG register */
1315 sc_Undefined
, /* 5: C_EXTDEF ??? */
1316 sc_Text
, /* 6: C_LABEL label */
1317 sc_Text
, /* 7: C_ULABEL user label */
1318 sc_Info
, /* 8: C_MOS member of struct */
1319 sc_Abs
, /* 9: C_ARG argument */
1320 sc_Info
, /* 10: C_STRTAG struct tag */
1321 sc_Info
, /* 11: C_MOU member of union */
1322 sc_Info
, /* 12: C_UNTAG union tag */
1323 sc_Info
, /* 13: C_TPDEF typedef */
1324 sc_Data
, /* 14: C_USTATIC ??? */
1325 sc_Info
, /* 15: C_ENTAG enum tag */
1326 sc_Info
, /* 16: C_MOE member of enum */
1327 sc_Register
, /* 17: C_REGPARM register parameter */
1328 sc_Bits
, /* 18; C_FIELD bitfield */
1410 sc_Text
, /* 100: C_BLOCK block start/end */
1411 sc_Text
, /* 101: C_FCN function start/end */
1412 sc_Info
, /* 102: C_EOS end of struct/union/enum */
1413 sc_Nil
, /* 103: C_FILE file start */
1414 sc_Nil
, /* 104: C_LINE line number */
1415 sc_Nil
, /* 105: C_ALIAS combined type info */
1416 sc_Nil
, /* 106: C_HIDDEN ??? */
1419 /* Convert COFF storage class to ECOFF symbol type. */
1420 static st_t map_coff_sym_type
[ (int)C_MAX
] = {
1421 st_Nil
, /* 0: C_NULL */
1422 st_Local
, /* 1: C_AUTO auto var */
1423 st_Global
, /* 2: C_EXT external */
1424 st_Static
, /* 3: C_STAT static */
1425 st_Local
, /* 4: C_REG register */
1426 st_Global
, /* 5: C_EXTDEF ??? */
1427 st_Label
, /* 6: C_LABEL label */
1428 st_Label
, /* 7: C_ULABEL user label */
1429 st_Member
, /* 8: C_MOS member of struct */
1430 st_Param
, /* 9: C_ARG argument */
1431 st_Block
, /* 10: C_STRTAG struct tag */
1432 st_Member
, /* 11: C_MOU member of union */
1433 st_Block
, /* 12: C_UNTAG union tag */
1434 st_Typedef
, /* 13: C_TPDEF typedef */
1435 st_Static
, /* 14: C_USTATIC ??? */
1436 st_Block
, /* 15: C_ENTAG enum tag */
1437 st_Member
, /* 16: C_MOE member of enum */
1438 st_Param
, /* 17: C_REGPARM register parameter */
1439 st_Member
, /* 18; C_FIELD bitfield */
1521 st_Block
, /* 100: C_BLOCK block start/end */
1522 st_Proc
, /* 101: C_FCN function start/end */
1523 st_End
, /* 102: C_EOS end of struct/union/enum */
1524 st_File
, /* 103: C_FILE file start */
1525 st_Nil
, /* 104: C_LINE line number */
1526 st_Nil
, /* 105: C_ALIAS combined type info */
1527 st_Nil
, /* 106: C_HIDDEN ??? */
1530 /* Map COFF derived types to ECOFF type qualifiers. */
1531 static tq_t map_coff_derived_type
[ (int)DT_MAX
] = {
1532 tq_Nil
, /* 0: DT_NON no more qualifiers */
1533 tq_Ptr
, /* 1: DT_PTR pointer */
1534 tq_Proc
, /* 2: DT_FCN function */
1535 tq_Array
, /* 3: DT_ARY array */
1539 /* Keep track of different sized allocation requests. */
1540 static alloc_info_t alloc_counts
[ (int)alloc_type_last
];
1543 /* Pointers and such to the original symbol table that is read in. */
1544 static struct filehdr orig_file_header
; /* global object file header */
1546 static HDRR orig_sym_hdr
; /* symbolic header on input */
1547 static char *orig_linenum
; /* line numbers */
1548 static DNR
*orig_dense
; /* dense numbers */
1549 static PDR
*orig_procs
; /* procedures */
1550 static SYMR
*orig_local_syms
; /* local symbols */
1551 static OPTR
*orig_opt_syms
; /* optimization symbols */
1552 static AUXU
*orig_aux_syms
; /* auxiliary symbols */
1553 static char *orig_local_strs
; /* local strings */
1554 static char *orig_ext_strs
; /* external strings */
1555 static FDR
*orig_files
; /* file descriptors */
1556 static symint_t
*orig_rfds
; /* relative file desc's */
1557 static EXTR
*orig_ext_syms
; /* external symbols */
1559 /* Macros to convert an index into a given object within the original
1561 #define CHECK(num,max,str) \
1562 (((unsigned long)num > (unsigned long)max) ? out_of_bounds (num, max, str, __LINE__) : 0)
1564 #define ORIG_LINENUM(indx) (CHECK ((indx), orig_sym_hdr.cbLine, "line#"), (indx) + orig_linenum)
1565 #define ORIG_DENSE(indx) (CHECK ((indx), orig_sym_hdr.idnMax, "dense"), (indx) + orig_dense)
1566 #define ORIG_PROCS(indx) (CHECK ((indx), orig_sym_hdr.ipdMax, "procs"), (indx) + orig_procs)
1567 #define ORIG_FILES(indx) (CHECK ((indx), orig_sym_hdr.ifdMax, "funcs"), (indx) + orig_files)
1568 #define ORIG_LSYMS(indx) (CHECK ((indx), orig_sym_hdr.isymMax, "lsyms"), (indx) + orig_local_syms)
1569 #define ORIG_LSTRS(indx) (CHECK ((indx), orig_sym_hdr.issMax, "lstrs"), (indx) + orig_local_strs)
1570 #define ORIG_ESYMS(indx) (CHECK ((indx), orig_sym_hdr.iextMax, "esyms"), (indx) + orig_ext_syms)
1571 #define ORIG_ESTRS(indx) (CHECK ((indx), orig_sym_hdr.issExtMax, "estrs"), (indx) + orig_ext_strs)
1572 #define ORIG_OPT(indx) (CHECK ((indx), orig_sym_hdr.ioptMax, "opt"), (indx) + orig_opt_syms)
1573 #define ORIG_AUX(indx) (CHECK ((indx), orig_sym_hdr.iauxMax, "aux"), (indx) + orig_aux_syms)
1574 #define ORIG_RFDS(indx) (CHECK ((indx), orig_sym_hdr.crfd, "rfds"), (indx) + orig_rfds)
1576 /* Various other statics. */
1577 static HDRR symbolic_header
; /* symbolic header */
1578 static efdr_t
*cur_file_ptr
= (efdr_t
*) 0; /* current file desc. header */
1579 static PDR
*cur_proc_ptr
= (PDR
*) 0; /* current procedure header */
1580 static SYMR
*cur_oproc_begin
= (SYMR
*) 0; /* original proc. sym begin info */
1581 static SYMR
*cur_oproc_end
= (SYMR
*) 0; /* original proc. sym end info */
1582 static PDR
*cur_oproc_ptr
= (PDR
*) 0; /* current original procedure*/
1583 static thead_t
*cur_tag_head
= (thead_t
*) 0;/* current tag head */
1584 static long file_offset
= 0; /* current file offset */
1585 static long max_file_offset
= 0; /* maximum file offset */
1586 static FILE *object_stream
= (FILE *) 0; /* file desc. to output .o */
1587 static FILE *obj_in_stream
= (FILE *) 0; /* file desc. to input .o */
1588 static char *progname
= (char *) 0; /* program name for errors */
1589 static const char *input_name
= "stdin"; /* name of input file */
1590 static char *object_name
= (char *) 0; /* tmp. name of object file */
1591 static char *obj_in_name
= (char *) 0; /* name of input object file */
1592 static char *cur_line_start
= (char *) 0; /* current line read in */
1593 static char *cur_line_ptr
= (char *) 0; /* ptr within current line */
1594 static unsigned cur_line_nbytes
= 0; /* # bytes for current line */
1595 static unsigned cur_line_alloc
= 0; /* # bytes total in buffer */
1596 static long line_number
= 0; /* current input line number */
1597 static int debug
= 0; /* trace functions */
1598 static int version
= 0; /* print version # */
1599 static int had_errors
= 0; /* != 0 if errors were found */
1600 static int rename_output
= 0; /* != 0 if rename output file*/
1601 static int delete_input
= 0; /* != 0 if delete input after done */
1602 static int stabs_seen
= 0; /* != 0 if stabs have been seen */
1605 /* Pseudo symbol to use when putting stabs into the symbol table. */
1606 #ifndef STABS_SYMBOL
1607 #define STABS_SYMBOL "@stabs"
1610 static char stabs_symbol
[] = STABS_SYMBOL
;
1613 /* Forward reference for functions. See the definition for more details. */
1616 #define STATIC static
1619 STATIC
int out_of_bounds
__proto((symint_t
, symint_t
, const char *, int));
1621 STATIC shash_t
*hash_string
__proto((const char *,
1626 STATIC symint_t add_string
__proto((varray_t
*,
1632 STATIC symint_t add_local_symbol
1633 __proto((const char *,
1640 STATIC symint_t add_ext_symbol
__proto((const char *,
1648 STATIC symint_t add_aux_sym_symint
1649 __proto((symint_t
));
1651 STATIC symint_t add_aux_sym_rndx
1652 __proto((int, symint_t
));
1654 STATIC symint_t add_aux_sym_tir
__proto((type_info_t
*,
1658 STATIC tag_t
* get_tag
__proto((const char *,
1663 STATIC
void add_unknown_tag
__proto((tag_t
*));
1665 STATIC
void add_procedure
__proto((const char *,
1668 STATIC
void add_file
__proto((const char *,
1671 STATIC
void add_bytes
__proto((varray_t
*,
1675 STATIC
void add_varray_page
__proto((varray_t
*));
1677 STATIC
void update_headers
__proto((void));
1679 STATIC
void write_varray
__proto((varray_t
*, off_t
, const char *));
1680 STATIC
void write_object
__proto((void));
1681 STATIC
const char *st_to_string
__proto((st_t
));
1682 STATIC
const char *sc_to_string
__proto((sc_t
));
1683 STATIC
char *read_line
__proto((void));
1684 STATIC
void parse_input
__proto((void));
1685 STATIC
void mark_stabs
__proto((const char *));
1686 STATIC
void parse_begin
__proto((const char *));
1687 STATIC
void parse_bend
__proto((const char *));
1688 STATIC
void parse_def
__proto((const char *));
1689 STATIC
void parse_end
__proto((const char *));
1690 STATIC
void parse_ent
__proto((const char *));
1691 STATIC
void parse_file
__proto((const char *));
1692 STATIC
void parse_stabs_common
1693 __proto((const char *, const char *, const char *));
1694 STATIC
void parse_stabs
__proto((const char *));
1695 STATIC
void parse_stabn
__proto((const char *));
1696 STATIC page_t
*read_seek
__proto((Size_t
, off_t
, const char *));
1697 STATIC
void copy_object
__proto((void));
1699 STATIC
void catch_signal
__proto((int)) ATTRIBUTE_NORETURN
;
1700 STATIC page_t
*allocate_page
__proto((void));
1702 STATIC page_t
*allocate_multiple_pages
1705 STATIC
void free_multiple_pages
1706 __proto((page_t
*, Size_t
));
1708 #ifndef MALLOC_CHECK
1709 STATIC page_t
*allocate_cluster
1713 STATIC forward_t
*allocate_forward
__proto((void));
1714 STATIC scope_t
*allocate_scope
__proto((void));
1715 STATIC shash_t
*allocate_shash
__proto((void));
1716 STATIC tag_t
*allocate_tag
__proto((void));
1717 STATIC thash_t
*allocate_thash
__proto((void));
1718 STATIC thead_t
*allocate_thead
__proto((void));
1719 STATIC vlinks_t
*allocate_vlinks
__proto((void));
1721 STATIC
void free_forward
__proto((forward_t
*));
1722 STATIC
void free_scope
__proto((scope_t
*));
1723 STATIC
void free_tag
__proto((tag_t
*));
1724 STATIC
void free_thead
__proto((thead_t
*));
1726 STATIC
char *local_index
__proto((const char *, int));
1727 STATIC
char *local_rindex
__proto((const char *, int));
1729 extern char *mktemp
__proto((char *));
1730 extern long strtol
__proto((const char *, char **, int));
1732 extern char *optarg
;
1736 /* List of assembler pseudo ops and beginning sequences that need
1737 special actions. Someday, this should be a hash table, and such,
1738 but for now a linear list of names and calls to memcmp will
1741 typedef struct _pseudo_ops
{
1742 const char *name
; /* pseudo-op in ascii */
1743 int len
; /* length of name to compare */
1744 void (*func
) __proto((const char *)); /* function to handle line */
1747 static pseudo_ops_t pseudo_ops
[] = {
1748 { "#.def", sizeof("#.def")-1, parse_def
},
1749 { "#.begin", sizeof("#.begin")-1, parse_begin
},
1750 { "#.bend", sizeof("#.bend")-1, parse_bend
},
1751 { ".end", sizeof(".end")-1, parse_end
},
1752 { ".ent", sizeof(".ent")-1, parse_ent
},
1753 { ".file", sizeof(".file")-1, parse_file
},
1754 { "#.stabs", sizeof("#.stabs")-1, parse_stabs
},
1755 { "#.stabn", sizeof("#.stabn")-1, parse_stabn
},
1756 { ".stabs", sizeof(".stabs")-1, parse_stabs
},
1757 { ".stabn", sizeof(".stabn")-1, parse_stabn
},
1758 { "#@stabs", sizeof("#@stabs")-1, mark_stabs
},
1762 /* Add a page to a varray object. */
1765 add_varray_page (vp
)
1766 varray_t
*vp
; /* varray to add page to */
1768 vlinks_t
*new_links
= allocate_vlinks ();
1771 if (vp
->object_size
> 1)
1772 new_links
->datum
= (page_t
*) xcalloc (1, vp
->object_size
);
1775 new_links
->datum
= allocate_page ();
1777 alloc_counts
[ (int)alloc_type_varray
].total_alloc
++;
1778 alloc_counts
[ (int)alloc_type_varray
].total_pages
++;
1780 new_links
->start_index
= vp
->num_allocated
;
1781 vp
->objects_last_page
= 0;
1783 if (vp
->first
== (vlinks_t
*) 0) /* first allocation? */
1784 vp
->first
= vp
->last
= new_links
;
1786 { /* 2nd or greater allocation */
1787 new_links
->prev
= vp
->last
;
1788 vp
->last
->next
= new_links
;
1789 vp
->last
= new_links
;
1794 /* Compute hash code (from tree.c) */
1799 hash_string (text
, hash_len
, hash_tbl
, ret_hash_index
)
1800 const char *text
; /* ptr to text to hash */
1801 Ptrdiff_t hash_len
; /* length of the text */
1802 shash_t
**hash_tbl
; /* hash table */
1803 symint_t
*ret_hash_index
; /* ptr to store hash index */
1805 register unsigned long hi
;
1806 register Ptrdiff_t i
;
1807 register shash_t
*ptr
;
1808 register int first_ch
= *text
;
1811 for (i
= 0; i
< hash_len
; i
++)
1812 hi
= ((hi
& 0x003fffff) * 613) + (text
[i
] & 0xff);
1814 hi
&= (1 << HASHBITS
) - 1;
1817 if (ret_hash_index
!= (symint_t
*) 0)
1818 *ret_hash_index
= hi
;
1820 for (ptr
= hash_tbl
[hi
]; ptr
!= (shash_t
*) 0; ptr
= ptr
->next
)
1821 if ((symint_t
) hash_len
== ptr
->len
1822 && first_ch
== ptr
->string
[0]
1823 && memcmp ((CPTR_T
) text
, (CPTR_T
) ptr
->string
, hash_len
) == 0)
1830 /* Add a string (and null pad) to one of the string tables. A
1831 consequence of hashing strings, is that we don't let strings
1832 cross page boundaries. The extra nulls will be ignored. */
1835 add_string (vp
, hash_tbl
, start
, end_p1
, ret_hash
)
1836 varray_t
*vp
; /* string virtual array */
1837 shash_t
**hash_tbl
; /* ptr to hash table */
1838 const char *start
; /* 1st byte in string */
1839 const char *end_p1
; /* 1st byte after string */
1840 shash_t
**ret_hash
; /* return hash pointer */
1842 register Ptrdiff_t len
= end_p1
- start
;
1843 register shash_t
*hash_ptr
;
1846 if (len
>= (Ptrdiff_t
) PAGE_USIZE
)
1847 fatal ("String too big (%ld bytes)", (long) len
);
1849 hash_ptr
= hash_string (start
, len
, hash_tbl
, &hi
);
1850 if (hash_ptr
== (shash_t
*) 0)
1854 if (vp
->objects_last_page
+ len
>= (long) PAGE_USIZE
)
1857 = ((vp
->num_allocated
+ PAGE_USIZE
- 1) / PAGE_USIZE
) * PAGE_USIZE
;
1858 add_varray_page (vp
);
1861 hash_ptr
= allocate_shash ();
1862 hash_ptr
->next
= hash_tbl
[hi
];
1863 hash_tbl
[hi
] = hash_ptr
;
1865 hash_ptr
->len
= len
;
1866 hash_ptr
->indx
= vp
->num_allocated
;
1867 hash_ptr
->string
= p
= & vp
->last
->datum
->byte
[ vp
->objects_last_page
];
1869 vp
->objects_last_page
+= len
+1;
1870 vp
->num_allocated
+= len
+1;
1878 if (ret_hash
!= (shash_t
**) 0)
1879 *ret_hash
= hash_ptr
;
1881 return hash_ptr
->indx
;
1885 /* Add a local symbol. */
1888 add_local_symbol (str_start
, str_end_p1
, type
, storage
, value
, indx
)
1889 const char *str_start
; /* first byte in string */
1890 const char *str_end_p1
; /* first byte after string */
1891 st_t type
; /* symbol type */
1892 sc_t storage
; /* storage class */
1893 symint_t value
; /* value of symbol */
1894 symint_t indx
; /* index to local/aux. syms */
1896 register symint_t ret
;
1897 register SYMR
*psym
;
1898 register scope_t
*pscope
;
1899 register thead_t
*ptag_head
;
1900 register tag_t
*ptag
;
1901 register tag_t
*ptag_next
;
1902 register varray_t
*vp
= &cur_file_ptr
->symbols
;
1903 register int scope_delta
= 0;
1904 shash_t
*hash_ptr
= (shash_t
*) 0;
1906 if (vp
->objects_last_page
== vp
->objects_per_page
)
1907 add_varray_page (vp
);
1909 psym
= &vp
->last
->datum
->sym
[ vp
->objects_last_page
++ ];
1911 psym
->value
= value
;
1912 psym
->st
= (unsigned) type
;
1913 psym
->sc
= (unsigned) storage
;
1915 psym
->iss
= (str_start
== (const char *) 0)
1917 : add_string (&cur_file_ptr
->strings
,
1918 &cur_file_ptr
->shash_head
[0],
1923 ret
= vp
->num_allocated
++;
1925 if (MIPS_IS_STAB(psym
))
1928 /* Save the symbol within the hash table if this is a static
1929 item, and it has a name. */
1930 if (hash_ptr
!= (shash_t
*) 0
1931 && (type
== st_Global
|| type
== st_Static
|| type
== st_Label
1932 || type
== st_Proc
|| type
== st_StaticProc
))
1933 hash_ptr
->sym_ptr
= psym
;
1935 /* push or pop a scope if appropriate. */
1941 case st_File
: /* beginning of file */
1942 case st_Proc
: /* procedure */
1943 case st_StaticProc
: /* static procedure */
1944 case st_Block
: /* begin scope */
1945 pscope
= allocate_scope ();
1946 pscope
->prev
= cur_file_ptr
->cur_scope
;
1947 pscope
->lsym
= psym
;
1948 pscope
->lnumber
= ret
;
1949 pscope
->type
= type
;
1950 cur_file_ptr
->cur_scope
= pscope
;
1952 if (type
!= st_File
)
1955 /* For every block type except file, struct, union, or
1956 enumeration blocks, push a level on the tag stack. We omit
1957 file types, so that tags can span file boundaries. */
1958 if (type
!= st_File
&& storage
!= sc_Info
)
1960 ptag_head
= allocate_thead ();
1961 ptag_head
->first_tag
= 0;
1962 ptag_head
->prev
= cur_tag_head
;
1963 cur_tag_head
= ptag_head
;
1968 pscope
= cur_file_ptr
->cur_scope
;
1969 if (pscope
== (scope_t
*)0)
1970 error ("internal error, too many st_End's");
1974 st_t begin_type
= (st_t
) pscope
->lsym
->st
;
1976 if (begin_type
!= st_File
)
1979 /* Except for file, structure, union, or enumeration end
1980 blocks remove all tags created within this scope. */
1981 if (begin_type
!= st_File
&& storage
!= sc_Info
)
1983 ptag_head
= cur_tag_head
;
1984 cur_tag_head
= ptag_head
->prev
;
1986 for (ptag
= ptag_head
->first_tag
;
1987 ptag
!= (tag_t
*) 0;
1990 if (ptag
->forward_ref
!= (forward_t
*) 0)
1991 add_unknown_tag (ptag
);
1993 ptag_next
= ptag
->same_block
;
1994 ptag
->hash_ptr
->tag_ptr
= ptag
->same_name
;
1998 free_thead (ptag_head
);
2001 cur_file_ptr
->cur_scope
= pscope
->prev
;
2002 psym
->index
= pscope
->lnumber
; /* blk end gets begin sym # */
2004 if (storage
!= sc_Info
)
2005 psym
->iss
= pscope
->lsym
->iss
; /* blk end gets same name */
2007 if (begin_type
== st_File
|| begin_type
== st_Block
)
2008 pscope
->lsym
->index
= ret
+1; /* block begin gets next sym # */
2010 /* Functions push two or more aux words as follows:
2011 1st word: index+1 of the end symbol
2012 2nd word: type of the function (plus any aux words needed).
2013 Also, tie the external pointer back to the function begin symbol. */
2017 pscope
->lsym
->index
= add_aux_sym_symint (ret
+1);
2018 type
= add_aux_sym_tir (&last_func_type_info
,
2020 &cur_file_ptr
->thash_head
[0]);
2023 last_func_eptr
->ifd
= cur_file_ptr
->file_index
;
2025 /* The index for an external st_Proc symbol is the index
2026 of the st_Proc symbol in the local symbol table. */
2027 last_func_eptr
->asym
.index
= psym
->index
;
2031 free_scope (pscope
);
2035 cur_file_ptr
->nested_scopes
+= scope_delta
;
2037 if (debug
&& type
!= st_File
2038 && (debug
> 2 || type
== st_Block
|| type
== st_End
2039 || type
== st_Proc
|| type
== st_StaticProc
))
2041 const char *sc_str
= sc_to_string (storage
);
2042 const char *st_str
= st_to_string (type
);
2043 int depth
= cur_file_ptr
->nested_scopes
+ (scope_delta
< 0);
2046 "\tlsym\tv= %10ld, depth= %2d, sc= %-12s",
2047 value
, depth
, sc_str
);
2049 if (str_start
&& str_end_p1
- str_start
> 0)
2050 fprintf (stderr
, " st= %-11s name= %.*s\n",
2051 st_str
, (int) (str_end_p1
- str_start
), str_start
);
2054 Size_t len
= strlen (st_str
);
2055 fprintf (stderr
, " st= %.*s\n", (int) (len
-1), st_str
);
2063 /* Add an external symbol. */
2066 add_ext_symbol (str_start
, str_end_p1
, type
, storage
, value
, indx
, ifd
)
2067 const char *str_start
; /* first byte in string */
2068 const char *str_end_p1
; /* first byte after string */
2069 st_t type
; /* symbol type */
2070 sc_t storage
; /* storage class */
2071 long value
; /* value of symbol */
2072 symint_t indx
; /* index to local/aux. syms */
2073 int ifd
; /* file index */
2075 register EXTR
*psym
;
2076 register varray_t
*vp
= &ext_symbols
;
2077 shash_t
*hash_ptr
= (shash_t
*) 0;
2081 const char *sc_str
= sc_to_string (storage
);
2082 const char *st_str
= st_to_string (type
);
2085 "\tesym\tv= %10ld, ifd= %2d, sc= %-12s",
2086 value
, ifd
, sc_str
);
2088 if (str_start
&& str_end_p1
- str_start
> 0)
2089 fprintf (stderr
, " st= %-11s name= %.*s\n",
2090 st_str
, (int) (str_end_p1
- str_start
), str_start
);
2092 fprintf (stderr
, " st= %s\n", st_str
);
2095 if (vp
->objects_last_page
== vp
->objects_per_page
)
2096 add_varray_page (vp
);
2098 psym
= &vp
->last
->datum
->esym
[ vp
->objects_last_page
++ ];
2101 psym
->asym
.value
= value
;
2102 psym
->asym
.st
= (unsigned) type
;
2103 psym
->asym
.sc
= (unsigned) storage
;
2104 psym
->asym
.index
= indx
;
2105 psym
->asym
.iss
= (str_start
== (const char *) 0)
2107 : add_string (&ext_strings
,
2113 hash_ptr
->esym_ptr
= psym
;
2114 return vp
->num_allocated
++;
2118 /* Add an auxiliary symbol (passing a symint). */
2121 add_aux_sym_symint (aux_word
)
2122 symint_t aux_word
; /* auxiliary information word */
2124 register AUXU
*aux_ptr
;
2125 register efdr_t
*file_ptr
= cur_file_ptr
;
2126 register varray_t
*vp
= &file_ptr
->aux_syms
;
2128 if (vp
->objects_last_page
== vp
->objects_per_page
)
2129 add_varray_page (vp
);
2131 aux_ptr
= &vp
->last
->datum
->aux
[ vp
->objects_last_page
++ ];
2132 aux_ptr
->isym
= aux_word
;
2134 return vp
->num_allocated
++;
2138 /* Add an auxiliary symbol (passing a file/symbol index combo). */
2141 add_aux_sym_rndx (file_index
, sym_index
)
2145 register AUXU
*aux_ptr
;
2146 register efdr_t
*file_ptr
= cur_file_ptr
;
2147 register varray_t
*vp
= &file_ptr
->aux_syms
;
2149 if (vp
->objects_last_page
== vp
->objects_per_page
)
2150 add_varray_page (vp
);
2152 aux_ptr
= &vp
->last
->datum
->aux
[ vp
->objects_last_page
++ ];
2153 aux_ptr
->rndx
.rfd
= file_index
;
2154 aux_ptr
->rndx
.index
= sym_index
;
2156 return vp
->num_allocated
++;
2160 /* Add an auxiliary symbol (passing the basic type and possibly
2161 type qualifiers). */
2164 add_aux_sym_tir (t
, state
, hash_tbl
)
2165 type_info_t
*t
; /* current type information */
2166 hash_state_t state
; /* whether to hash type or not */
2167 thash_t
**hash_tbl
; /* pointer to hash table to use */
2169 register AUXU
*aux_ptr
;
2170 register efdr_t
*file_ptr
= cur_file_ptr
;
2171 register varray_t
*vp
= &file_ptr
->aux_syms
;
2172 static AUXU init_aux
;
2178 aux
.ti
.bt
= (int) t
->basic_type
;
2179 aux
.ti
.continued
= 0;
2180 aux
.ti
.fBitfield
= t
->bitfield
;
2182 aux
.ti
.tq0
= (int) t
->type_qualifiers
[0];
2183 aux
.ti
.tq1
= (int) t
->type_qualifiers
[1];
2184 aux
.ti
.tq2
= (int) t
->type_qualifiers
[2];
2185 aux
.ti
.tq3
= (int) t
->type_qualifiers
[3];
2186 aux
.ti
.tq4
= (int) t
->type_qualifiers
[4];
2187 aux
.ti
.tq5
= (int) t
->type_qualifiers
[5];
2190 /* For anything that adds additional information, we must not hash,
2191 so check here, and reset our state. */
2193 if (state
!= hash_no
2194 && (t
->type_qualifiers
[0] == tq_Array
2195 || t
->type_qualifiers
[1] == tq_Array
2196 || t
->type_qualifiers
[2] == tq_Array
2197 || t
->type_qualifiers
[3] == tq_Array
2198 || t
->type_qualifiers
[4] == tq_Array
2199 || t
->type_qualifiers
[5] == tq_Array
2200 || t
->basic_type
== bt_Struct
2201 || t
->basic_type
== bt_Union
2202 || t
->basic_type
== bt_Enum
2204 || t
->num_dims
> 0))
2207 /* See if we can hash this type, and save some space, but some types
2208 can't be hashed (because they contain arrays or continuations),
2209 and others can be put into the hash list, but cannot use existing
2210 types because other aux entries precede this one. */
2212 if (state
!= hash_no
)
2214 register thash_t
*hash_ptr
;
2215 register symint_t hi
;
2217 hi
= aux
.isym
& ((1 << HASHBITS
) - 1);
2220 for (hash_ptr
= hash_tbl
[hi
];
2221 hash_ptr
!= (thash_t
*) 0;
2222 hash_ptr
= hash_ptr
->next
)
2224 if (aux
.isym
== hash_ptr
->type
.isym
)
2228 if (hash_ptr
!= (thash_t
*) 0 && state
== hash_yes
)
2229 return hash_ptr
->indx
;
2231 if (hash_ptr
== (thash_t
*) 0)
2233 hash_ptr
= allocate_thash ();
2234 hash_ptr
->next
= hash_tbl
[hi
];
2235 hash_ptr
->type
= aux
;
2236 hash_ptr
->indx
= vp
->num_allocated
;
2237 hash_tbl
[hi
] = hash_ptr
;
2241 /* Everything is set up, add the aux symbol. */
2242 if (vp
->objects_last_page
== vp
->objects_per_page
)
2243 add_varray_page (vp
);
2245 aux_ptr
= &vp
->last
->datum
->aux
[ vp
->objects_last_page
++ ];
2248 ret
= vp
->num_allocated
++;
2250 /* Add bitfield length if it exists.
2252 NOTE: Mips documentation claims bitfield goes at the end of the
2253 AUX record, but the DECstation compiler emits it here.
2254 (This would only make a difference for enum bitfields.)
2256 Also note: We use the last size given since gcc may emit 2
2257 for an enum bitfield. */
2260 (void) add_aux_sym_symint ((symint_t
)t
->sizes
[t
->num_sizes
-1]);
2263 /* Add tag information if needed. Structure, union, and enum
2264 references add 2 aux symbols: a [file index, symbol index]
2265 pointer to the structure type, and the current file index. */
2267 if (t
->basic_type
== bt_Struct
2268 || t
->basic_type
== bt_Union
2269 || t
->basic_type
== bt_Enum
)
2271 register symint_t file_index
= t
->tag_ptr
->ifd
;
2272 register symint_t sym_index
= t
->tag_ptr
->indx
;
2276 (void) add_aux_sym_rndx (ST_RFDESCAPE
, sym_index
);
2277 (void) add_aux_sym_symint ((symint_t
)-1);
2279 else if (sym_index
!= indexNil
)
2281 (void) add_aux_sym_rndx (ST_RFDESCAPE
, sym_index
);
2282 (void) add_aux_sym_symint (file_index
);
2286 register forward_t
*forward_ref
= allocate_forward ();
2288 forward_ref
->type_ptr
= aux_ptr
;
2289 forward_ref
->next
= t
->tag_ptr
->forward_ref
;
2290 t
->tag_ptr
->forward_ref
= forward_ref
;
2292 (void) add_aux_sym_rndx (ST_RFDESCAPE
, sym_index
);
2293 forward_ref
->index_ptr
2294 = &vp
->last
->datum
->aux
[ vp
->objects_last_page
- 1];
2296 (void) add_aux_sym_symint (file_index
);
2297 forward_ref
->ifd_ptr
2298 = &vp
->last
->datum
->aux
[ vp
->objects_last_page
- 1];
2302 /* Add information about array bounds if they exist. */
2303 for (i
= 0; i
< t
->num_dims
; i
++)
2305 (void) add_aux_sym_rndx (ST_RFDESCAPE
,
2306 cur_file_ptr
->int_type
);
2308 (void) add_aux_sym_symint (cur_file_ptr
->file_index
); /* file index*/
2309 (void) add_aux_sym_symint ((symint_t
) 0); /* low bound */
2310 (void) add_aux_sym_symint (t
->dimensions
[i
] - 1); /* high bound*/
2311 (void) add_aux_sym_symint ((t
->dimensions
[i
] == 0) /* stride */
2313 : (t
->sizes
[i
] * 8) / t
->dimensions
[i
]);
2316 /* NOTE: Mips documentation claims that the bitfield width goes here.
2317 But it needs to be emitted earlier. */
2323 /* Add a tag to the tag table (unless it already exists). */
2326 get_tag (tag_start
, tag_end_p1
, indx
, basic_type
)
2327 const char *tag_start
; /* 1st byte of tag name */
2328 const char *tag_end_p1
; /* 1st byte after tag name */
2329 symint_t indx
; /* index of tag start block */
2330 bt_t basic_type
; /* bt_Struct, bt_Union, or bt_Enum */
2334 hash_ptr
= hash_string (tag_start
,
2335 tag_end_p1
- tag_start
,
2339 if (hash_ptr
!= (shash_t
*) 0
2340 && hash_ptr
->tag_ptr
!= (tag_t
*) 0)
2342 tag_ptr
= hash_ptr
->tag_ptr
;
2343 if (indx
!= indexNil
)
2345 tag_ptr
->basic_type
= basic_type
;
2346 tag_ptr
->ifd
= cur_file_ptr
->file_index
;
2347 tag_ptr
->indx
= indx
;
2352 (void) add_string (&tag_strings
,
2358 tag_ptr
= allocate_tag ();
2359 tag_ptr
->forward_ref
= (forward_t
*) 0;
2360 tag_ptr
->hash_ptr
= hash_ptr
;
2361 tag_ptr
->same_name
= hash_ptr
->tag_ptr
;
2362 tag_ptr
->basic_type
= basic_type
;
2363 tag_ptr
->indx
= indx
;
2364 tag_ptr
->ifd
= (indx
== indexNil
2365 ? (symint_t
) -1 : cur_file_ptr
->file_index
);
2366 tag_ptr
->same_block
= cur_tag_head
->first_tag
;
2368 cur_tag_head
->first_tag
= tag_ptr
;
2369 hash_ptr
->tag_ptr
= tag_ptr
;
2375 /* Add an unknown {struct, union, enum} tag. */
2378 add_unknown_tag (ptag
)
2379 tag_t
*ptag
; /* pointer to tag information */
2381 shash_t
*hash_ptr
= ptag
->hash_ptr
;
2382 char *name_start
= hash_ptr
->string
;
2383 char *name_end_p1
= name_start
+ hash_ptr
->len
;
2384 forward_t
*f_next
= ptag
->forward_ref
;
2387 int file_index
= cur_file_ptr
->file_index
;
2391 const char *agg_type
= "{unknown aggregate type}";
2392 switch (ptag
->basic_type
)
2394 case bt_Struct
: agg_type
= "struct"; break;
2395 case bt_Union
: agg_type
= "union"; break;
2396 case bt_Enum
: agg_type
= "enum"; break;
2400 fprintf (stderr
, "unknown %s %.*s found\n",
2401 agg_type
, (int) hash_ptr
->len
, name_start
);
2404 sym_index
= add_local_symbol (name_start
,
2411 (void) add_local_symbol (name_start
,
2418 while (f_next
!= (forward_t
*) 0)
2421 f_next
= f_next
->next
;
2423 f_cur
->ifd_ptr
->isym
= file_index
;
2424 f_cur
->index_ptr
->rndx
.index
= sym_index
;
2426 free_forward (f_cur
);
2433 /* Add a procedure to the current file's list of procedures, and record
2434 this is the current procedure. If the assembler created a PDR for
2435 this procedure, use that to initialize the current PDR. */
2438 add_procedure (func_start
, func_end_p1
)
2439 const char *func_start
; /* 1st byte of func name */
2440 const char *func_end_p1
; /* 1st byte after func name */
2442 register PDR
*new_proc_ptr
;
2443 register efdr_t
*file_ptr
= cur_file_ptr
;
2444 register varray_t
*vp
= &file_ptr
->procs
;
2445 register symint_t value
= 0;
2446 register st_t proc_type
= st_Proc
;
2447 register shash_t
*shash_ptr
= hash_string (func_start
,
2448 func_end_p1
- func_start
,
2453 fputc ('\n', stderr
);
2455 if (vp
->objects_last_page
== vp
->objects_per_page
)
2456 add_varray_page (vp
);
2458 cur_proc_ptr
= new_proc_ptr
= &vp
->last
->datum
->proc
[ vp
->objects_last_page
++ ];
2460 vp
->num_allocated
++;
2463 /* Did the assembler create this procedure? If so, get the PDR information. */
2464 cur_oproc_ptr
= (PDR
*) 0;
2465 if (shash_ptr
!= (shash_t
*) 0)
2467 register PDR
*old_proc_ptr
= shash_ptr
->proc_ptr
;
2468 register SYMR
*sym_ptr
= shash_ptr
->sym_ptr
;
2470 if (old_proc_ptr
!= (PDR
*) 0
2471 && sym_ptr
!= (SYMR
*) 0
2472 && ((st_t
)sym_ptr
->st
== st_Proc
|| (st_t
)sym_ptr
->st
== st_StaticProc
))
2474 cur_oproc_begin
= sym_ptr
;
2475 cur_oproc_end
= shash_ptr
->end_ptr
;
2476 value
= sym_ptr
->value
;
2478 cur_oproc_ptr
= old_proc_ptr
;
2479 proc_type
= (st_t
)sym_ptr
->st
;
2480 *new_proc_ptr
= *old_proc_ptr
; /* initialize */
2484 if (cur_oproc_ptr
== (PDR
*) 0)
2485 error ("Did not find a PDR block for %.*s",
2486 (int) (func_end_p1
- func_start
), func_start
);
2488 /* Determine the start of symbols. */
2489 new_proc_ptr
->isym
= file_ptr
->symbols
.num_allocated
;
2491 /* Push the start of the function. */
2492 (void) add_local_symbol (func_start
, func_end_p1
,
2499 /* Add a new filename, and set up all of the file relative
2500 virtual arrays (strings, symbols, aux syms, etc.). Record
2501 where the current file structure lives. */
2504 add_file (file_start
, file_end_p1
)
2505 const char *file_start
; /* first byte in string */
2506 const char *file_end_p1
; /* first byte after string */
2508 static char zero_bytes
[2] = { '\0', '\0' };
2510 register Ptrdiff_t len
= file_end_p1
- file_start
;
2511 register int first_ch
= *file_start
;
2512 register efdr_t
*file_ptr
;
2515 fprintf (stderr
, "\tfile\t%.*s\n", (int) len
, file_start
);
2517 /* See if the file has already been created. */
2518 for (file_ptr
= first_file
;
2519 file_ptr
!= (efdr_t
*) 0;
2520 file_ptr
= file_ptr
->next_file
)
2522 if (first_ch
== file_ptr
->name
[0]
2523 && file_ptr
->name
[len
] == '\0'
2524 && memcmp ((CPTR_T
) file_start
, (CPTR_T
) file_ptr
->name
, len
) == 0)
2526 cur_file_ptr
= file_ptr
;
2531 /* If this is a new file, create it. */
2532 if (file_ptr
== (efdr_t
*) 0)
2534 if (file_desc
.objects_last_page
== file_desc
.objects_per_page
)
2535 add_varray_page (&file_desc
);
2537 file_ptr
= cur_file_ptr
2538 = &file_desc
.last
->datum
->file
[ file_desc
.objects_last_page
++ ];
2539 *file_ptr
= init_file
;
2541 file_ptr
->file_index
= file_desc
.num_allocated
++;
2543 /* Allocate the string hash table. */
2544 file_ptr
->shash_head
= (shash_t
**) allocate_page ();
2546 /* Make sure 0 byte in string table is null */
2547 add_string (&file_ptr
->strings
,
2548 &file_ptr
->shash_head
[0],
2553 if (file_end_p1
- file_start
> (long) PAGE_USIZE
-2)
2554 fatal ("Filename goes over one page boundary.");
2556 /* Push the start of the filename. We assume that the filename
2557 will be stored at string offset 1. */
2558 (void) add_local_symbol (file_start
, file_end_p1
, st_File
, sc_Text
,
2559 (symint_t
) 0, (symint_t
) 0);
2560 file_ptr
->fdr
.rss
= 1;
2561 file_ptr
->name
= &file_ptr
->strings
.last
->datum
->byte
[1];
2562 file_ptr
->name_len
= file_end_p1
- file_start
;
2564 /* Update the linked list of file descriptors. */
2565 *last_file_ptr
= file_ptr
;
2566 last_file_ptr
= &file_ptr
->next_file
;
2568 /* Add void & int types to the file (void should be first to catch
2569 errant 0's within the index fields). */
2570 file_ptr
->void_type
= add_aux_sym_tir (&void_type_info
,
2572 &cur_file_ptr
->thash_head
[0]);
2574 file_ptr
->int_type
= add_aux_sym_tir (&int_type_info
,
2576 &cur_file_ptr
->thash_head
[0]);
2581 /* Add a stream of random bytes to a varray. */
2584 add_bytes (vp
, input_ptr
, nitems
)
2585 varray_t
*vp
; /* virtual array to add too */
2586 char *input_ptr
; /* start of the bytes */
2587 Size_t nitems
; /* # items to move */
2589 register Size_t move_items
;
2590 register Size_t move_bytes
;
2595 if (vp
->objects_last_page
>= vp
->objects_per_page
)
2596 add_varray_page (vp
);
2598 ptr
= &vp
->last
->datum
->byte
[ vp
->objects_last_page
* vp
->object_size
];
2599 move_items
= vp
->objects_per_page
- vp
->objects_last_page
;
2600 if (move_items
> nitems
)
2601 move_items
= nitems
;
2603 move_bytes
= move_items
* vp
->object_size
;
2604 nitems
-= move_items
;
2606 if (move_bytes
>= 32)
2608 (void) memcpy ((PTR_T
) ptr
, (CPTR_T
) input_ptr
, move_bytes
);
2609 input_ptr
+= move_bytes
;
2613 while (move_bytes
-- > 0)
2614 *ptr
++ = *input_ptr
++;
2620 /* Convert storage class to string. */
2623 sc_to_string(storage_class
)
2626 switch(storage_class
)
2628 case sc_Nil
: return "Nil,";
2629 case sc_Text
: return "Text,";
2630 case sc_Data
: return "Data,";
2631 case sc_Bss
: return "Bss,";
2632 case sc_Register
: return "Register,";
2633 case sc_Abs
: return "Abs,";
2634 case sc_Undefined
: return "Undefined,";
2635 case sc_CdbLocal
: return "CdbLocal,";
2636 case sc_Bits
: return "Bits,";
2637 case sc_CdbSystem
: return "CdbSystem,";
2638 case sc_RegImage
: return "RegImage,";
2639 case sc_Info
: return "Info,";
2640 case sc_UserStruct
: return "UserStruct,";
2641 case sc_SData
: return "SData,";
2642 case sc_SBss
: return "SBss,";
2643 case sc_RData
: return "RData,";
2644 case sc_Var
: return "Var,";
2645 case sc_Common
: return "Common,";
2646 case sc_SCommon
: return "SCommon,";
2647 case sc_VarRegister
: return "VarRegister,";
2648 case sc_Variant
: return "Variant,";
2649 case sc_SUndefined
: return "SUndefined,";
2650 case sc_Init
: return "Init,";
2651 case sc_Max
: return "Max,";
2658 /* Convert symbol type to string. */
2661 st_to_string(symbol_type
)
2666 case st_Nil
: return "Nil,";
2667 case st_Global
: return "Global,";
2668 case st_Static
: return "Static,";
2669 case st_Param
: return "Param,";
2670 case st_Local
: return "Local,";
2671 case st_Label
: return "Label,";
2672 case st_Proc
: return "Proc,";
2673 case st_Block
: return "Block,";
2674 case st_End
: return "End,";
2675 case st_Member
: return "Member,";
2676 case st_Typedef
: return "Typedef,";
2677 case st_File
: return "File,";
2678 case st_RegReloc
: return "RegReloc,";
2679 case st_Forward
: return "Forward,";
2680 case st_StaticProc
: return "StaticProc,";
2681 case st_Constant
: return "Constant,";
2682 case st_Str
: return "String,";
2683 case st_Number
: return "Number,";
2684 case st_Expr
: return "Expr,";
2685 case st_Type
: return "Type,";
2686 case st_Max
: return "Max,";
2693 /* Read a line from standard input, and return the start of the buffer
2694 (which is grows if the line is too big). We split lines at the
2695 semi-colon, and return each logical line independently. */
2698 read_line
__proto((void))
2700 static int line_split_p
= 0;
2701 register int string_p
= 0;
2702 register int comment_p
= 0;
2706 if (cur_line_start
== (char *) 0)
2707 { /* allocate initial page */
2708 cur_line_start
= (char *) allocate_page ();
2709 cur_line_alloc
= PAGE_SIZE
;
2716 cur_line_nbytes
= 0;
2718 for (ptr
= cur_line_start
; (ch
= getchar ()) != EOF
; *ptr
++ = ch
)
2720 if (++cur_line_nbytes
>= cur_line_alloc
-1)
2722 register int num_pages
= cur_line_alloc
/ PAGE_SIZE
;
2723 register char *old_buffer
= cur_line_start
;
2725 cur_line_alloc
+= PAGE_SIZE
;
2726 cur_line_start
= (char *) allocate_multiple_pages (num_pages
+1);
2727 memcpy (cur_line_start
, old_buffer
, num_pages
* PAGE_SIZE
);
2729 ptr
= cur_line_start
+ cur_line_nbytes
- 1;
2736 cur_line_ptr
= cur_line_start
;
2737 return cur_line_ptr
;
2740 else if (ch
== '\0')
2741 error ("Null character found in input");
2743 else if (!comment_p
)
2746 string_p
= !string_p
;
2751 else if (ch
== ';' && !string_p
)
2756 cur_line_ptr
= cur_line_start
;
2757 return cur_line_ptr
;
2763 pfatal_with_name (input_name
);
2765 cur_line_ptr
= (char *) 0;
2770 /* Parse #.begin directives which have a label as the first argument
2771 which gives the location of the start of the block. */
2775 const char *start
; /* start of directive */
2777 const char *end_p1
; /* end of label */
2779 shash_t
*hash_ptr
; /* hash pointer to lookup label */
2781 if (cur_file_ptr
== (efdr_t
*) 0)
2783 error ("#.begin directive without a preceding .file directive");
2787 if (cur_proc_ptr
== (PDR
*) 0)
2789 error ("#.begin directive without a preceding .ent directive");
2793 for (end_p1
= start
; (ch
= *end_p1
) != '\0' && !ISSPACE (ch
); end_p1
++)
2796 hash_ptr
= hash_string (start
,
2801 if (hash_ptr
== (shash_t
*) 0)
2803 error ("Label %.*s not found for #.begin",
2804 (int) (end_p1
- start
), start
);
2808 if (cur_oproc_begin
== (SYMR
*) 0)
2810 error ("Procedure table %.*s not found for #.begin",
2811 (int) (end_p1
- start
), start
);
2815 (void) add_local_symbol ((const char *) 0, (const char *) 0,
2817 (symint_t
) hash_ptr
->sym_ptr
->value
- cur_oproc_begin
->value
,
2822 /* Parse #.bend directives which have a label as the first argument
2823 which gives the location of the end of the block. */
2827 const char *start
; /* start of directive */
2829 const char *end_p1
; /* end of label */
2831 shash_t
*hash_ptr
; /* hash pointer to lookup label */
2833 if (cur_file_ptr
== (efdr_t
*) 0)
2835 error ("#.begin directive without a preceding .file directive");
2839 if (cur_proc_ptr
== (PDR
*) 0)
2841 error ("#.bend directive without a preceding .ent directive");
2845 for (end_p1
= start
; (ch
= *end_p1
) != '\0' && !ISSPACE (ch
); end_p1
++)
2848 hash_ptr
= hash_string (start
,
2853 if (hash_ptr
== (shash_t
*) 0)
2855 error ("Label %.*s not found for #.bend", (int) (end_p1
- start
), start
);
2859 if (cur_oproc_begin
== (SYMR
*) 0)
2861 error ("Procedure table %.*s not found for #.bend",
2862 (int) (end_p1
- start
), start
);
2866 (void) add_local_symbol ((const char *) 0, (const char *) 0,
2868 (symint_t
)hash_ptr
->sym_ptr
->value
- cur_oproc_begin
->value
,
2873 /* Parse #.def directives, which are contain standard COFF subdirectives
2874 to describe the debugging format. These subdirectives include:
2876 .scl specify storage class
2877 .val specify a value
2878 .endef specify end of COFF directives
2879 .type specify the type
2880 .size specify the size of an array
2881 .dim specify an array dimension
2882 .tag specify a tag for a struct, union, or enum. */
2885 parse_def (name_start
)
2886 const char *name_start
; /* start of directive */
2888 const char *dir_start
; /* start of current directive*/
2889 const char *dir_end_p1
; /* end+1 of current directive*/
2890 const char *arg_start
; /* start of current argument */
2891 const char *arg_end_p1
; /* end+1 of current argument */
2892 const char *name_end_p1
; /* end+1 of label */
2893 const char *tag_start
= (const char *) 0; /* start of tag name */
2894 const char *tag_end_p1
= (const char *) 0; /* end+1 of tag name */
2895 sc_t storage_class
= sc_Nil
;
2896 st_t symbol_type
= st_Nil
;
2898 EXTR
*eptr
= (EXTR
*) 0; /* ext. sym equivalent to def*/
2899 int is_function
= 0; /* != 0 if function */
2901 symint_t indx
= cur_file_ptr
->void_type
;
2903 symint_t arg_number
;
2904 symint_t temp_array
[ N_TQ
];
2909 static int inside_enumeration
= 0; /* is this an enumeration? */
2912 /* Initialize the type information. */
2916 /* Search for the end of the name being defined. */
2917 /* Allow spaces and such in names for G++ templates, which produce stabs
2920 #.def SMANIP<long unsigned int>; .scl 10; .type 0x8; .size 8; .endef */
2922 for (name_end_p1
= name_start
; (ch
= *name_end_p1
) != ';' && ch
!= '\0'; name_end_p1
++)
2927 error_line
= __LINE__
;
2932 /* Parse the remaining subdirectives now. */
2933 dir_start
= name_end_p1
+1;
2936 while ((ch
= *dir_start
) == ' ' || ch
== '\t')
2941 error_line
= __LINE__
;
2947 if (dir_start
[1] == 'e'
2948 && memcmp (dir_start
, ".endef", sizeof (".endef")-1) == 0)
2951 /* Pick up the subdirective now */
2952 for (dir_end_p1
= dir_start
+1;
2953 (ch
= *dir_end_p1
) != ' ' && ch
!= '\t';
2956 if (ch
== '\0' || ISSPACE (ch
))
2958 error_line
= __LINE__
;
2964 /* Pick up the subdirective argument now. */
2965 arg_was_number
= arg_number
= 0;
2966 arg_end_p1
= (const char *) 0;
2967 arg_start
= dir_end_p1
+1;
2969 while (ch
== ' ' || ch
== '\t')
2972 if (ISDIGIT (ch
) || ch
== '-' || ch
== '+')
2975 arg_number
= strtol (arg_start
, (char **) &arg_end_p1
, 0);
2976 if (arg_end_p1
!= arg_start
|| (ch2
= *arg_end_p1
!= ';') || ch2
!= ',')
2980 else if (ch
== '\0' || ISSPACE (ch
))
2982 error_line
= __LINE__
;
2987 if (!arg_was_number
)
2989 /* Allow spaces and such in names for G++ templates. */
2990 for (arg_end_p1
= arg_start
+1;
2991 (ch
= *arg_end_p1
) != ';' && ch
!= '\0';
2997 error_line
= __LINE__
;
3003 /* Classify the directives now. */
3004 len
= dir_end_p1
- dir_start
;
3005 switch (dir_start
[1])
3008 error_line
= __LINE__
;
3013 if (len
== sizeof (".dim")-1
3014 && memcmp (dir_start
, ".dim", sizeof (".dim")-1) == 0
3017 symint_t
*t_ptr
= &temp_array
[ N_TQ
-1 ];
3019 *t_ptr
= arg_number
;
3020 while (*arg_end_p1
== ',' && arg_was_number
)
3022 arg_start
= arg_end_p1
+1;
3024 while (ch
== ' ' || ch
== '\t')
3028 if (ISDIGIT (ch
) || ch
== '-' || ch
== '+')
3031 arg_number
= strtol (arg_start
, (char **) &arg_end_p1
, 0);
3032 if (arg_end_p1
!= arg_start
|| (ch2
= *arg_end_p1
!= ';') || ch2
!= ',')
3035 if (t_ptr
== &temp_array
[0])
3037 error_line
= __LINE__
;
3042 *--t_ptr
= arg_number
;
3046 /* Reverse order of dimensions. */
3047 while (t_ptr
<= &temp_array
[ N_TQ
-1 ])
3049 if (t
.num_dims
>= N_TQ
-1)
3051 error_line
= __LINE__
;
3056 t
.dimensions
[ t
.num_dims
++ ] = *t_ptr
++;
3062 error_line
= __LINE__
;
3069 if (len
== sizeof (".scl")-1
3070 && memcmp (dir_start
, ".scl", sizeof (".scl")-1) == 0
3072 && arg_number
< ((symint_t
) C_MAX
))
3074 /* If the symbol is a static or external, we have
3075 already gotten the appropriate type and class, so
3076 make sure we don't override those values. This is
3077 needed because there are some type and classes that
3078 are not in COFF, such as short data, etc. */
3079 if (symbol_type
== st_Nil
)
3081 symbol_type
= map_coff_sym_type
[arg_number
];
3082 storage_class
= map_coff_storage
[arg_number
];
3087 else if (len
== sizeof (".size")-1
3088 && memcmp (dir_start
, ".size", sizeof (".size")-1) == 0
3091 symint_t
*t_ptr
= &temp_array
[ N_TQ
-1 ];
3093 *t_ptr
= arg_number
;
3094 while (*arg_end_p1
== ',' && arg_was_number
)
3096 arg_start
= arg_end_p1
+1;
3098 while (ch
== ' ' || ch
== '\t')
3102 if (ISDIGIT (ch
) || ch
== '-' || ch
== '+')
3105 arg_number
= strtol (arg_start
, (char **) &arg_end_p1
, 0);
3106 if (arg_end_p1
!= arg_start
|| (ch2
= *arg_end_p1
!= ';') || ch2
!= ',')
3109 if (t_ptr
== &temp_array
[0])
3111 error_line
= __LINE__
;
3116 *--t_ptr
= arg_number
;
3120 /* Reverse order of sizes. */
3121 while (t_ptr
<= &temp_array
[ N_TQ
-1 ])
3123 if (t
.num_sizes
>= N_TQ
-1)
3125 error_line
= __LINE__
;
3130 t
.sizes
[ t
.num_sizes
++ ] = *t_ptr
++;
3137 error_line
= __LINE__
;
3144 if (len
== sizeof (".type")-1
3145 && memcmp (dir_start
, ".type", sizeof (".type")-1) == 0
3148 tq_t
*tq_ptr
= &t
.type_qualifiers
[0];
3150 t
.orig_type
= (coff_type_t
) (arg_number
& N_BTMASK
);
3151 t
.basic_type
= map_coff_types
[(int)t
.orig_type
];
3152 for (i
= N_TQ
-1; i
>= 0; i
--)
3154 int dt
= (arg_number
>> ((i
* N_TQ_SHIFT
) + N_BT_SHIFT
)
3157 if (dt
!= (int)DT_NON
)
3158 *tq_ptr
++ = map_coff_derived_type
[dt
];
3161 /* If this is a function, ignore it, so that we don't get
3162 two entries (one from the .ent, and one for the .def
3163 that precedes it). Save the type information so that
3164 the end block can properly add it after the begin block
3165 index. For MIPS knows what reason, we must strip off
3166 the function type at this point. */
3167 if (tq_ptr
!= &t
.type_qualifiers
[0] && tq_ptr
[-1] == tq_Proc
)
3170 tq_ptr
[-1] = tq_Nil
;
3176 else if (len
== sizeof (".tag")-1
3177 && memcmp (dir_start
, ".tag", sizeof (".tag")-1) == 0)
3179 tag_start
= arg_start
;
3180 tag_end_p1
= arg_end_p1
;
3186 error_line
= __LINE__
;
3193 if (len
== sizeof (".val")-1
3194 && memcmp (dir_start
, ".val", sizeof (".val")-1) == 0)
3199 /* If the value is not an integer value, it must be the
3200 name of a static or global item. Look up the name in
3201 the original symbol table to pick up the storage
3202 class, symbol type, etc. */
3205 shash_t
*orig_hash_ptr
; /* hash within orig sym table*/
3206 shash_t
*ext_hash_ptr
; /* hash within ext. sym table*/
3208 ext_hash_ptr
= hash_string (arg_start
,
3209 arg_end_p1
- arg_start
,
3213 if (ext_hash_ptr
!= (shash_t
*) 0
3214 && ext_hash_ptr
->esym_ptr
!= (EXTR
*) 0)
3215 eptr
= ext_hash_ptr
->esym_ptr
;
3217 orig_hash_ptr
= hash_string (arg_start
,
3218 arg_end_p1
- arg_start
,
3222 if ((orig_hash_ptr
== (shash_t
*) 0
3223 || orig_hash_ptr
->sym_ptr
== (SYMR
*) 0)
3224 && eptr
== (EXTR
*) 0)
3226 fprintf (stderr
, "warning, %.*s not found in original or external symbol tables, value defaults to 0\n",
3227 (int) (arg_end_p1
- arg_start
),
3233 SYMR
*ptr
= (orig_hash_ptr
!= (shash_t
*) 0
3234 && orig_hash_ptr
->sym_ptr
!= (SYMR
*) 0)
3235 ? orig_hash_ptr
->sym_ptr
3238 symbol_type
= (st_t
) ptr
->st
;
3239 storage_class
= (sc_t
) ptr
->sc
;
3247 error_line
= __LINE__
;
3253 /* Set up to find next directive. */
3254 dir_start
= arg_end_p1
+ 1;
3258 if (storage_class
== sc_Bits
)
3268 int num_real_sizes
= t
.num_sizes
- t
.extra_sizes
;
3269 int diff
= t
.num_dims
- num_real_sizes
;
3270 int i
= t
.num_dims
- 1;
3273 if (num_real_sizes
!= 1 || diff
< 0)
3275 error_line
= __LINE__
;
3280 /* If this is an array, make sure the same number of dimensions
3281 and sizes were passed, creating extra sizes for multiply
3282 dimensioned arrays if not passed. */
3286 for (j
= ARRAY_SIZE (t
.sizes
) - 1; j
>= 0; j
--)
3287 t
.sizes
[ j
] = ((j
-diff
) >= 0) ? t
.sizes
[ j
-diff
] : 0;
3289 t
.num_sizes
= i
+ 1;
3290 for ( i
--; i
>= 0; i
-- )
3292 if (t
.dimensions
[ i
+1 ])
3293 t
.sizes
[ i
] = t
.sizes
[ i
+1 ] / t
.dimensions
[ i
+1 ];
3295 t
.sizes
[ i
] = t
.sizes
[ i
+1 ];
3300 /* Except for enumeration members & begin/ending of scopes, put the
3301 type word in the aux. symbol table. */
3303 if (symbol_type
== st_Block
|| symbol_type
== st_End
)
3306 else if (inside_enumeration
)
3307 indx
= cur_file_ptr
->void_type
;
3311 if (t
.basic_type
== bt_Struct
3312 || t
.basic_type
== bt_Union
3313 || t
.basic_type
== bt_Enum
)
3315 if (tag_start
== (char *) 0)
3317 error ("No tag specified for %.*s",
3318 (int) (name_end_p1
- name_start
),
3323 t
.tag_ptr
= get_tag (tag_start
, tag_end_p1
, (symint_t
)indexNil
,
3329 last_func_type_info
= t
;
3330 last_func_eptr
= eptr
;
3334 indx
= add_aux_sym_tir (&t
,
3336 &cur_file_ptr
->thash_head
[0]);
3340 /* If this is an external or static symbol, update the appropriate
3343 if (eptr
!= (EXTR
*) 0
3344 && (eptr
->asym
.index
== indexNil
|| cur_proc_ptr
== (PDR
*) 0))
3346 eptr
->ifd
= cur_file_ptr
->file_index
;
3347 eptr
->asym
.index
= indx
;
3351 /* Do any last minute adjustments that are necessary. */
3352 switch (symbol_type
)
3358 /* For the beginning of structs, unions, and enumerations, the
3359 size info needs to be passed in the value field. */
3362 if (t
.num_sizes
- t
.num_dims
- t
.extra_sizes
!= 1)
3364 error_line
= __LINE__
;
3372 inside_enumeration
= (t
.orig_type
== T_ENUM
);
3376 /* For the end of structs, unions, and enumerations, omit the
3377 name which is always ".eos". This needs to be done last, so
3378 that any error reporting above gives the correct name. */
3381 name_start
= name_end_p1
= (const char *) 0;
3382 value
= inside_enumeration
= 0;
3386 /* Members of structures and unions that aren't bitfields, need
3387 to adjust the value from a byte offset to a bit offset.
3388 Members of enumerations do not have the value adjusted, and
3389 can be distinguished by indx == indexNil. For enumerations,
3390 update the maximum enumeration value. */
3393 if (!t
.bitfield
&& !inside_enumeration
)
3400 /* Add the symbol, except for global symbols outside of functions,
3401 for which the external symbol table is fine enough. */
3403 if (eptr
== (EXTR
*) 0
3404 || eptr
->asym
.st
== (int)st_Nil
3405 || cur_proc_ptr
!= (PDR
*) 0)
3407 symint_t isym
= add_local_symbol (name_start
, name_end_p1
,
3408 symbol_type
, storage_class
,
3412 /* deal with struct, union, and enum tags. */
3413 if (symbol_type
== st_Block
)
3415 /* Create or update the tag information. */
3416 tag_t
*tag_ptr
= get_tag (name_start
,
3421 /* If there are any forward references, fill in the appropriate
3422 file and symbol indexes. */
3424 symint_t file_index
= cur_file_ptr
->file_index
;
3425 forward_t
*f_next
= tag_ptr
->forward_ref
;
3428 while (f_next
!= (forward_t
*) 0)
3431 f_next
= f_next
->next
;
3433 f_cur
->ifd_ptr
->isym
= file_index
;
3434 f_cur
->index_ptr
->rndx
.index
= isym
;
3436 free_forward (f_cur
);
3439 tag_ptr
->forward_ref
= (forward_t
*) 0;
3446 /* Error return, issue message. */
3449 error ("compiler error, badly formed #.def (internal line # = %d)", error_line
);
3451 error ("compiler error, badly formed #.def");
3457 /* Parse .end directives. */
3461 const char *start
; /* start of directive */
3463 register const char *start_func
, *end_func_p1
;
3465 register symint_t value
;
3466 register FDR
*orig_fdr
;
3468 if (cur_file_ptr
== (efdr_t
*) 0)
3470 error (".end directive without a preceding .file directive");
3474 if (cur_proc_ptr
== (PDR
*) 0)
3476 error (".end directive without a preceding .ent directive");
3480 /* Get the function name, skipping whitespace. */
3481 for (start_func
= start
; ISSPACE ((unsigned char)*start_func
); start_func
++)
3485 if (!IS_ASM_IDENT (ch
))
3487 error (".end directive has no name");
3491 for (end_func_p1
= start_func
; IS_ASM_IDENT (ch
); ch
= *++end_func_p1
)
3495 /* Get the value field for creating the end from the original object
3496 file (which we find by locating the procedure start, and using the
3497 pointer to the end+1 block and backing up. The index points to a
3498 two word aux. symbol, whose first word is the index of the end
3499 symbol, and the second word is the type of the function return
3502 orig_fdr
= cur_file_ptr
->orig_fdr
;
3504 if (orig_fdr
!= (FDR
*)0 && cur_oproc_end
!= (SYMR
*) 0)
3505 value
= cur_oproc_end
->value
;
3508 error ("Cannot find .end block for %.*s",
3509 (int) (end_func_p1
- start_func
), start_func
);
3511 (void) add_local_symbol (start_func
, end_func_p1
,
3516 cur_proc_ptr
= cur_oproc_ptr
= (PDR
*) 0;
3520 /* Parse .ent directives. */
3524 const char *start
; /* start of directive */
3526 register const char *start_func
, *end_func_p1
;
3529 if (cur_file_ptr
== (efdr_t
*) 0)
3531 error (".ent directive without a preceding .file directive");
3535 if (cur_proc_ptr
!= (PDR
*) 0)
3537 error ("second .ent directive found before .end directive");
3541 for (start_func
= start
; ISSPACE ((unsigned char)*start_func
); start_func
++)
3545 if (!IS_ASM_IDENT (ch
))
3547 error (".ent directive has no name");
3551 for (end_func_p1
= start_func
; IS_ASM_IDENT (ch
); ch
= *++end_func_p1
)
3554 (void) add_procedure (start_func
, end_func_p1
);
3558 /* Parse .file directives. */
3562 const char *start
; /* start of directive */
3565 register char *start_name
, *end_name_p1
;
3567 (void) strtol (start
, &p
, 0);
3569 || (start_name
= local_index (p
, '"')) == (char *) 0
3570 || (end_name_p1
= local_rindex (++start_name
, '"')) == (char *) 0)
3572 error ("Invalid .file directive");
3576 if (cur_proc_ptr
!= (PDR
*) 0)
3578 error ("No way to handle .file within .ent/.end section");
3582 add_file (start_name
, end_name_p1
);
3586 /* Make sure the @stabs symbol is emitted. */
3590 const char *start ATTRIBUTE_UNUSED
; /* Start of directive (ignored) */
3594 /* Add a dummy @stabs symbol. */
3596 (void) add_local_symbol (stabs_symbol
,
3597 stabs_symbol
+ sizeof (stabs_symbol
),
3598 stNil
, scInfo
, -1, MIPS_MARK_STAB(0));
3604 /* Parse .stabs directives.
3606 .stabs directives have five fields:
3607 "string" a string, encoding the type information.
3608 code a numeric code, defined in <stab.h>
3610 0 a zero or line number
3611 value a numeric value or an address.
3613 If the value is relocatable, we transform this into:
3614 iss points as an index into string space
3615 value value from lookup of the name
3616 st st from lookup of the name
3617 sc sc from lookup of the name
3618 index code|CODE_MASK
3620 If the value is not relocatable, we transform this into:
3621 iss points as an index into string space
3625 index code|CODE_MASK
3627 .stabn directives have four fields (string is null):
3628 code a numeric code, defined in <stab.h>
3630 0 a zero or a line number
3631 value a numeric value or an address. */
3634 parse_stabs_common (string_start
, string_end
, rest
)
3635 const char *string_start
; /* start of string or NULL */
3636 const char *string_end
; /* end+1 of string or NULL */
3637 const char *rest
; /* rest of the directive. */
3639 efdr_t
*save_file_ptr
= cur_file_ptr
;
3647 if (stabs_seen
== 0)
3650 /* Read code from stabs. */
3651 if (!ISDIGIT (*rest
))
3653 error ("Invalid .stabs/.stabn directive, code is non-numeric");
3657 code
= strtol (rest
, &p
, 0);
3659 /* Line number stabs are handled differently, since they have two values,
3660 the line number and the address of the label. We use the index field
3661 (aka code) to hold the line number, and the value field to hold the
3662 address. The symbol type is st_Label, which should be different from
3663 the other stabs, so that gdb can recognize it. */
3665 if (code
== (int)N_SLINE
)
3667 SYMR
*sym_ptr
, dummy_symr
;
3671 if (p
[0] != ',' || p
[1] != '0' || p
[2] != ',' || !ISDIGIT (p
[3]))
3673 error ("Invalid line number .stabs/.stabn directive");
3677 code
= strtol (p
+3, &p
, 0);
3679 if (p
[-1] != ',' || ISDIGIT (ch
) || !IS_ASM_IDENT (ch
))
3681 error ("Invalid line number .stabs/.stabn directive");
3685 dummy_symr
.index
= code
;
3686 if (dummy_symr
.index
!= code
)
3688 error ("Line number (%lu) for .stabs/.stabn directive cannot fit in index field (20 bits)",
3694 shash_ptr
= hash_string (p
,
3699 if (shash_ptr
== (shash_t
*) 0
3700 || (sym_ptr
= shash_ptr
->sym_ptr
) == (SYMR
*) 0)
3702 error ("Invalid .stabs/.stabn directive, value not found");
3706 if ((st_t
) sym_ptr
->st
!= st_Label
)
3708 error ("Invalid line number .stabs/.stabn directive");
3713 sc
= (sc_t
) sym_ptr
->sc
;
3714 value
= sym_ptr
->value
;
3718 /* Skip ,<num>,<num>, */
3721 for (; ISDIGIT (*p
); p
++)
3725 for (; ISDIGIT (*p
); p
++)
3730 if (!IS_ASM_IDENT (ch
) && ch
!= '-')
3733 error ("Invalid .stabs/.stabn directive, bad character");
3737 if (ISDIGIT (ch
) || ch
== '-')
3741 value
= strtol (p
, &p
, 0);
3744 error ("Invalid .stabs/.stabn directive, stuff after numeric value");
3748 else if (!IS_ASM_IDENT (ch
))
3750 error ("Invalid .stabs/.stabn directive, bad character");
3757 const char *start
, *end_p1
;
3760 if ((end_p1
= strchr (start
, '+')) == (char *) 0)
3762 if ((end_p1
= strchr (start
, '-')) == (char *) 0)
3763 end_p1
= start
+ strlen(start
) - 1;
3766 shash_ptr
= hash_string (start
,
3771 if (shash_ptr
== (shash_t
*) 0
3772 || (sym_ptr
= shash_ptr
->sym_ptr
) == (SYMR
*) 0)
3774 shash_ptr
= hash_string (start
,
3779 if (shash_ptr
== (shash_t
*) 0
3780 || shash_ptr
->esym_ptr
== (EXTR
*) 0)
3782 error ("Invalid .stabs/.stabn directive, value not found");
3786 sym_ptr
= &(shash_ptr
->esym_ptr
->asym
);
3789 /* Traditionally, N_LBRAC and N_RBRAC are *not* relocated. */
3790 if (code
== (int) N_LBRAC
|| code
== (int) N_RBRAC
)
3797 sc
= (sc_t
) sym_ptr
->sc
;
3798 st
= (st_t
) sym_ptr
->st
;
3800 value
= sym_ptr
->value
;
3805 if (((!ISDIGIT (*end_p1
)) && (*end_p1
!= '-'))
3806 || ((ch
!= '+') && (ch
!= '-')))
3808 error ("Invalid .stabs/.stabn directive, badly formed value");
3812 value
+= strtol (end_p1
, &p
, 0);
3814 value
-= strtol (end_p1
, &p
, 0);
3818 error ("Invalid .stabs/.stabn directive, stuff after numeric value");
3823 code
= MIPS_MARK_STAB(code
);
3826 (void) add_local_symbol (string_start
, string_end
, st
, sc
, value
, code
);
3827 /* Restore normal file type. */
3828 cur_file_ptr
= save_file_ptr
;
3834 const char *start
; /* start of directive */
3836 const char *end
= local_index (start
+1, '"');
3838 if (*start
!= '"' || end
== (const char *) 0 || end
[1] != ',')
3840 error ("Invalid .stabs directive, no string");
3844 parse_stabs_common (start
+1, end
, end
+2);
3850 const char *start
; /* start of directive */
3852 parse_stabs_common ((const char *) 0, (const char *) 0, start
);
3856 /* Parse the input file, and write the lines to the output file
3860 parse_input
__proto((void))
3864 register thead_t
*ptag_head
;
3865 register tag_t
*ptag
;
3866 register tag_t
*ptag_next
;
3869 fprintf (stderr
, "\tinput\n");
3871 /* Add a dummy scope block around the entire compilation unit for
3872 structures defined outside of blocks. */
3873 ptag_head
= allocate_thead ();
3874 ptag_head
->first_tag
= 0;
3875 ptag_head
->prev
= cur_tag_head
;
3876 cur_tag_head
= ptag_head
;
3878 while ((p
= read_line ()) != (char *) 0)
3880 /* Skip leading blanks */
3881 while (ISSPACE ((unsigned char)*p
))
3884 /* See if it's a directive we handle. If so, dispatch handler. */
3885 for (i
= 0; i
< ARRAY_SIZE (pseudo_ops
); i
++)
3886 if (memcmp (p
, pseudo_ops
[i
].name
, pseudo_ops
[i
].len
) == 0
3887 && ISSPACE ((unsigned char)(p
[pseudo_ops
[i
].len
])))
3889 p
+= pseudo_ops
[i
].len
; /* skip to first argument */
3890 while (ISSPACE ((unsigned char)*p
))
3893 (*pseudo_ops
[i
].func
)( p
);
3898 /* Process any tags at global level. */
3899 ptag_head
= cur_tag_head
;
3900 cur_tag_head
= ptag_head
->prev
;
3902 for (ptag
= ptag_head
->first_tag
;
3903 ptag
!= (tag_t
*) 0;
3906 if (ptag
->forward_ref
!= (forward_t
*) 0)
3907 add_unknown_tag (ptag
);
3909 ptag_next
= ptag
->same_block
;
3910 ptag
->hash_ptr
->tag_ptr
= ptag
->same_name
;
3914 free_thead (ptag_head
);
3919 /* Update the global headers with the final offsets in preparation
3920 to write out the .T file. */
3923 update_headers
__proto((void))
3925 register symint_t i
;
3926 register efdr_t
*file_ptr
;
3928 /* Set up the symbolic header. */
3929 file_offset
= sizeof (symbolic_header
) + orig_file_header
.f_symptr
;
3930 symbolic_header
.magic
= orig_sym_hdr
.magic
;
3931 symbolic_header
.vstamp
= orig_sym_hdr
.vstamp
;
3933 /* Set up global counts. */
3934 symbolic_header
.issExtMax
= ext_strings
.num_allocated
;
3935 symbolic_header
.idnMax
= dense_num
.num_allocated
;
3936 symbolic_header
.ifdMax
= file_desc
.num_allocated
;
3937 symbolic_header
.iextMax
= ext_symbols
.num_allocated
;
3938 symbolic_header
.ilineMax
= orig_sym_hdr
.ilineMax
;
3939 symbolic_header
.ioptMax
= orig_sym_hdr
.ioptMax
;
3940 symbolic_header
.cbLine
= orig_sym_hdr
.cbLine
;
3941 symbolic_header
.crfd
= orig_sym_hdr
.crfd
;
3944 /* Loop through each file, figuring out how many local syms,
3945 line numbers, etc. there are. Also, put out end symbol
3946 for the filename. */
3948 for (file_ptr
= first_file
;
3949 file_ptr
!= (efdr_t
*) 0;
3950 file_ptr
= file_ptr
->next_file
)
3952 register SYMR
*sym_start
;
3954 register SYMR
*sym_end_p1
;
3955 register FDR
*fd_ptr
= file_ptr
->orig_fdr
;
3957 cur_file_ptr
= file_ptr
;
3959 /* Copy st_Static symbols from the original local symbol table if
3960 they did not get added to the new local symbol table.
3961 This happens with stabs-in-ecoff or if the source file is
3962 compiled without debugging. */
3963 sym_start
= ORIG_LSYMS (fd_ptr
->isymBase
);
3964 sym_end_p1
= sym_start
+ fd_ptr
->csym
;
3965 for (sym
= sym_start
; sym
< sym_end_p1
; sym
++)
3967 if ((st_t
)sym
->st
== st_Static
)
3969 register char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ sym
->iss
);
3970 register Size_t len
= strlen (str
);
3971 register shash_t
*hash_ptr
;
3973 /* Ignore internal labels. */
3974 if (str
[0] == '$' && str
[1] == 'L')
3976 hash_ptr
= hash_string (str
,
3978 &file_ptr
->shash_head
[0],
3980 if (hash_ptr
== (shash_t
*) 0)
3982 (void) add_local_symbol (str
, str
+ len
,
3983 (st_t
)sym
->st
, (sc_t
)sym
->sc
,
3984 (symint_t
)sym
->value
,
3985 (symint_t
)indexNil
);
3989 (void) add_local_symbol ((const char *) 0, (const char *) 0,
3994 file_ptr
->fdr
.cpd
= file_ptr
->procs
.num_allocated
;
3995 file_ptr
->fdr
.ipdFirst
= symbolic_header
.ipdMax
;
3996 symbolic_header
.ipdMax
+= file_ptr
->fdr
.cpd
;
3998 file_ptr
->fdr
.csym
= file_ptr
->symbols
.num_allocated
;
3999 file_ptr
->fdr
.isymBase
= symbolic_header
.isymMax
;
4000 symbolic_header
.isymMax
+= file_ptr
->fdr
.csym
;
4002 file_ptr
->fdr
.caux
= file_ptr
->aux_syms
.num_allocated
;
4003 file_ptr
->fdr
.iauxBase
= symbolic_header
.iauxMax
;
4004 symbolic_header
.iauxMax
+= file_ptr
->fdr
.caux
;
4006 file_ptr
->fdr
.cbSs
= file_ptr
->strings
.num_allocated
;
4007 file_ptr
->fdr
.issBase
= symbolic_header
.issMax
;
4008 symbolic_header
.issMax
+= file_ptr
->fdr
.cbSs
;
4011 #ifndef ALIGN_SYMTABLE_OFFSET
4012 #define ALIGN_SYMTABLE_OFFSET(OFFSET) (OFFSET)
4015 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4016 i
= WORD_ALIGN (symbolic_header
.cbLine
); /* line numbers */
4019 symbolic_header
.cbLineOffset
= file_offset
;
4021 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4024 i
= symbolic_header
.ioptMax
; /* optimization symbols */
4027 symbolic_header
.cbOptOffset
= file_offset
;
4028 file_offset
+= i
* sizeof (OPTR
);
4029 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4032 i
= symbolic_header
.idnMax
; /* dense numbers */
4035 symbolic_header
.cbDnOffset
= file_offset
;
4036 file_offset
+= i
* sizeof (DNR
);
4037 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4040 i
= symbolic_header
.ipdMax
; /* procedure tables */
4043 symbolic_header
.cbPdOffset
= file_offset
;
4044 file_offset
+= i
* sizeof (PDR
);
4045 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4048 i
= symbolic_header
.isymMax
; /* local symbols */
4051 symbolic_header
.cbSymOffset
= file_offset
;
4052 file_offset
+= i
* sizeof (SYMR
);
4053 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4056 i
= symbolic_header
.iauxMax
; /* aux syms. */
4059 symbolic_header
.cbAuxOffset
= file_offset
;
4060 file_offset
+= i
* sizeof (TIR
);
4061 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4064 i
= WORD_ALIGN (symbolic_header
.issMax
); /* local strings */
4067 symbolic_header
.cbSsOffset
= file_offset
;
4069 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4072 i
= WORD_ALIGN (symbolic_header
.issExtMax
); /* external strings */
4075 symbolic_header
.cbSsExtOffset
= file_offset
;
4077 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4080 i
= symbolic_header
.ifdMax
; /* file tables */
4083 symbolic_header
.cbFdOffset
= file_offset
;
4084 file_offset
+= i
* sizeof (FDR
);
4085 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4088 i
= symbolic_header
.crfd
; /* relative file descriptors */
4091 symbolic_header
.cbRfdOffset
= file_offset
;
4092 file_offset
+= i
* sizeof (symint_t
);
4093 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4096 i
= symbolic_header
.iextMax
; /* external symbols */
4099 symbolic_header
.cbExtOffset
= file_offset
;
4100 file_offset
+= i
* sizeof (EXTR
);
4101 file_offset
= ALIGN_SYMTABLE_OFFSET (file_offset
);
4106 /* Write out a varray at a given location. */
4109 write_varray (vp
, offset
, str
)
4110 varray_t
*vp
; /* virtual array */
4111 off_t offset
; /* offset to write varray to */
4112 const char *str
; /* string to print out when tracing */
4114 int num_write
, sys_write
;
4117 if (vp
->num_allocated
== 0)
4122 fputs ("\twarray\tvp = ", stderr
);
4123 fprintf (stderr
, HOST_PTR_PRINTF
, vp
);
4124 fprintf (stderr
, ", offset = %7lu, size = %7lu, %s\n",
4125 (unsigned long) offset
, vp
->num_allocated
* vp
->object_size
, str
);
4128 if (file_offset
!= offset
4129 && fseek (object_stream
, (long)offset
, SEEK_SET
) < 0)
4130 pfatal_with_name (object_name
);
4132 for (ptr
= vp
->first
; ptr
!= (vlinks_t
*) 0; ptr
= ptr
->next
)
4134 num_write
= (ptr
->next
== (vlinks_t
*) 0)
4135 ? vp
->objects_last_page
* vp
->object_size
4136 : vp
->objects_per_page
* vp
->object_size
;
4138 sys_write
= fwrite ((PTR_T
) ptr
->datum
, 1, num_write
, object_stream
);
4140 pfatal_with_name (object_name
);
4142 else if (sys_write
!= num_write
)
4143 fatal ("Wrote %d bytes to %s, system returned %d",
4148 file_offset
+= num_write
;
4153 /* Write out the symbol table in the object file. */
4156 write_object
__proto((void))
4164 fputs ("\n\twrite\tvp = ", stderr
);
4165 fprintf (stderr
, HOST_PTR_PRINTF
, (PTR_T
*) &symbolic_header
);
4166 fprintf (stderr
, ", offset = %7u, size = %7lu, %s\n",
4167 0, (unsigned long) sizeof (symbolic_header
), "symbolic header");
4170 sys_write
= fwrite ((PTR_T
) &symbolic_header
,
4172 sizeof (symbolic_header
),
4176 pfatal_with_name (object_name
);
4178 else if (sys_write
!= sizeof (symbolic_header
))
4179 fatal ("Wrote %d bytes to %s, system returned %d",
4180 (int) sizeof (symbolic_header
),
4185 file_offset
= sizeof (symbolic_header
) + orig_file_header
.f_symptr
;
4187 if (symbolic_header
.cbLine
> 0) /* line numbers */
4191 if (file_offset
!= symbolic_header
.cbLineOffset
4192 && fseek (object_stream
, symbolic_header
.cbLineOffset
, SEEK_SET
) != 0)
4193 pfatal_with_name (object_name
);
4197 fputs ("\twrite\tvp = ", stderr
);
4198 fprintf (stderr
, HOST_PTR_PRINTF
, (PTR_T
*) &orig_linenum
);
4199 fprintf (stderr
, ", offset = %7lu, size = %7lu, %s\n",
4200 (long) symbolic_header
.cbLineOffset
,
4201 (long) symbolic_header
.cbLine
, "Line numbers");
4204 sys_write
= fwrite ((PTR_T
) orig_linenum
,
4206 symbolic_header
.cbLine
,
4210 pfatal_with_name (object_name
);
4212 else if (sys_write
!= symbolic_header
.cbLine
)
4213 fatal ("Wrote %ld bytes to %s, system returned %ld",
4214 (long) symbolic_header
.cbLine
,
4218 file_offset
= symbolic_header
.cbLineOffset
+ symbolic_header
.cbLine
;
4221 if (symbolic_header
.ioptMax
> 0) /* optimization symbols */
4224 long num_write
= symbolic_header
.ioptMax
* sizeof (OPTR
);
4226 if (file_offset
!= symbolic_header
.cbOptOffset
4227 && fseek (object_stream
, symbolic_header
.cbOptOffset
, SEEK_SET
) != 0)
4228 pfatal_with_name (object_name
);
4232 fputs ("\twrite\tvp = ", stderr
);
4233 fprintf (stderr
, HOST_PTR_PRINTF
, (PTR_T
*) &orig_opt_syms
);
4234 fprintf (stderr
, ", offset = %7lu, size = %7lu, %s\n",
4235 (long) symbolic_header
.cbOptOffset
,
4236 num_write
, "Optimizer symbols");
4239 sys_write
= fwrite ((PTR_T
) orig_opt_syms
,
4245 pfatal_with_name (object_name
);
4247 else if (sys_write
!= num_write
)
4248 fatal ("Wrote %ld bytes to %s, system returned %ld",
4253 file_offset
= symbolic_header
.cbOptOffset
+ num_write
;
4256 if (symbolic_header
.idnMax
> 0) /* dense numbers */
4257 write_varray (&dense_num
, (off_t
)symbolic_header
.cbDnOffset
, "Dense numbers");
4259 if (symbolic_header
.ipdMax
> 0) /* procedure tables */
4261 offset
= symbolic_header
.cbPdOffset
;
4262 for (file_ptr
= first_file
;
4263 file_ptr
!= (efdr_t
*) 0;
4264 file_ptr
= file_ptr
->next_file
)
4266 write_varray (&file_ptr
->procs
, offset
, "Procedure tables");
4267 offset
= file_offset
;
4271 if (symbolic_header
.isymMax
> 0) /* local symbols */
4273 offset
= symbolic_header
.cbSymOffset
;
4274 for (file_ptr
= first_file
;
4275 file_ptr
!= (efdr_t
*) 0;
4276 file_ptr
= file_ptr
->next_file
)
4278 write_varray (&file_ptr
->symbols
, offset
, "Local symbols");
4279 offset
= file_offset
;
4283 if (symbolic_header
.iauxMax
> 0) /* aux symbols */
4285 offset
= symbolic_header
.cbAuxOffset
;
4286 for (file_ptr
= first_file
;
4287 file_ptr
!= (efdr_t
*) 0;
4288 file_ptr
= file_ptr
->next_file
)
4290 write_varray (&file_ptr
->aux_syms
, offset
, "Aux. symbols");
4291 offset
= file_offset
;
4295 if (symbolic_header
.issMax
> 0) /* local strings */
4297 offset
= symbolic_header
.cbSsOffset
;
4298 for (file_ptr
= first_file
;
4299 file_ptr
!= (efdr_t
*) 0;
4300 file_ptr
= file_ptr
->next_file
)
4302 write_varray (&file_ptr
->strings
, offset
, "Local strings");
4303 offset
= file_offset
;
4307 if (symbolic_header
.issExtMax
> 0) /* external strings */
4308 write_varray (&ext_strings
, symbolic_header
.cbSsExtOffset
, "External strings");
4310 if (symbolic_header
.ifdMax
> 0) /* file tables */
4312 offset
= symbolic_header
.cbFdOffset
;
4313 if (file_offset
!= offset
4314 && fseek (object_stream
, (long)offset
, SEEK_SET
) < 0)
4315 pfatal_with_name (object_name
);
4317 file_offset
= offset
;
4318 for (file_ptr
= first_file
;
4319 file_ptr
!= (efdr_t
*) 0;
4320 file_ptr
= file_ptr
->next_file
)
4324 fputs ("\twrite\tvp = ", stderr
);
4325 fprintf (stderr
, HOST_PTR_PRINTF
, (PTR_T
*) &file_ptr
->fdr
);
4326 fprintf (stderr
, ", offset = %7lu, size = %7lu, %s\n",
4327 file_offset
, (unsigned long) sizeof (FDR
),
4331 sys_write
= fwrite (&file_ptr
->fdr
,
4337 pfatal_with_name (object_name
);
4339 else if (sys_write
!= sizeof (FDR
))
4340 fatal ("Wrote %d bytes to %s, system returned %d",
4345 file_offset
= offset
+= sizeof (FDR
);
4349 if (symbolic_header
.crfd
> 0) /* relative file descriptors */
4352 symint_t num_write
= symbolic_header
.crfd
* sizeof (symint_t
);
4354 if (file_offset
!= symbolic_header
.cbRfdOffset
4355 && fseek (object_stream
, symbolic_header
.cbRfdOffset
, SEEK_SET
) != 0)
4356 pfatal_with_name (object_name
);
4360 fputs ("\twrite\tvp = ", stderr
);
4361 fprintf (stderr
, HOST_PTR_PRINTF
, (PTR_T
*) &orig_rfds
);
4362 fprintf (stderr
, ", offset = %7lu, size = %7lu, %s\n",
4363 (long) symbolic_header
.cbRfdOffset
,
4364 num_write
, "Relative file descriptors");
4367 sys_write
= fwrite (orig_rfds
,
4373 pfatal_with_name (object_name
);
4375 else if (sys_write
!= (long)num_write
)
4376 fatal ("Wrote %lu bytes to %s, system returned %ld",
4381 file_offset
= symbolic_header
.cbRfdOffset
+ num_write
;
4384 if (symbolic_header
.issExtMax
> 0) /* external symbols */
4385 write_varray (&ext_symbols
, (off_t
)symbolic_header
.cbExtOffset
, "External symbols");
4387 if (fclose (object_stream
) != 0)
4388 pfatal_with_name (object_name
);
4392 /* Read some bytes at a specified location, and return a pointer. */
4395 read_seek (size
, offset
, str
)
4396 Size_t size
; /* # bytes to read */
4397 off_t offset
; /* offset to read at */
4398 const char *str
; /* name for tracing */
4403 if (size
== 0) /* nothing to read */
4404 return (page_t
*) 0;
4408 "\trseek\tsize = %7lu, offset = %7lu, currently at %7lu, %s\n",
4409 (unsigned long) size
, (unsigned long) offset
, file_offset
, str
);
4411 #ifndef MALLOC_CHECK
4412 ptr
= allocate_multiple_pages ((size
+ PAGE_USIZE
- 1) / PAGE_USIZE
);
4414 ptr
= (page_t
*) xcalloc (1, size
);
4417 /* If we need to seek, and the distance is nearby, just do some reads,
4418 to speed things up. */
4419 if (file_offset
!= offset
)
4421 symint_t difference
= offset
- file_offset
;
4425 char small_buffer
[8];
4427 sys_read
= fread (small_buffer
, 1, difference
, obj_in_stream
);
4429 pfatal_with_name (obj_in_name
);
4431 if ((symint_t
)sys_read
!= difference
)
4432 fatal ("Wanted to read %lu bytes from %s, system returned %ld",
4433 (unsigned long) size
,
4437 else if (fseek (obj_in_stream
, offset
, SEEK_SET
) < 0)
4438 pfatal_with_name (obj_in_name
);
4441 sys_read
= fread ((PTR_T
)ptr
, 1, size
, obj_in_stream
);
4443 pfatal_with_name (obj_in_name
);
4445 if (sys_read
!= (long) size
)
4446 fatal ("Wanted to read %lu bytes from %s, system returned %ld",
4447 (unsigned long) size
,
4451 file_offset
= offset
+ size
;
4453 if (file_offset
> max_file_offset
)
4454 max_file_offset
= file_offset
;
4460 /* Read the existing object file (and copy to the output object file
4461 if it is different from the input object file), and remove the old
4465 copy_object
__proto((void))
4467 char buffer
[ PAGE_SIZE
];
4468 register int sys_read
;
4469 register int remaining
;
4470 register int num_write
;
4471 register int sys_write
;
4472 register int fd
, es
;
4473 register int delete_ifd
= 0;
4474 register int *remap_file_number
;
4475 struct stat stat_buf
;
4478 fprintf (stderr
, "\tcopy\n");
4480 if (fstat (fileno (obj_in_stream
), &stat_buf
) != 0
4481 || fseek (obj_in_stream
, 0L, SEEK_SET
) != 0)
4482 pfatal_with_name (obj_in_name
);
4484 sys_read
= fread ((PTR_T
) &orig_file_header
,
4486 sizeof (struct filehdr
),
4490 pfatal_with_name (obj_in_name
);
4492 else if (sys_read
== 0 && feof (obj_in_stream
))
4493 return; /* create a .T file sans file header */
4495 else if (sys_read
< (int) sizeof (struct filehdr
))
4496 fatal ("Wanted to read %d bytes from %s, system returned %d",
4497 (int) sizeof (struct filehdr
),
4502 if (orig_file_header
.f_nsyms
!= sizeof (HDRR
))
4503 fatal ("%s symbolic header wrong size (%d bytes, should be %d)",
4504 input_name
, orig_file_header
.f_nsyms
, (int) sizeof (HDRR
));
4507 /* Read in the current symbolic header. */
4508 if (fseek (obj_in_stream
, (long) orig_file_header
.f_symptr
, SEEK_SET
) != 0)
4509 pfatal_with_name (input_name
);
4511 sys_read
= fread ((PTR_T
) &orig_sym_hdr
,
4513 sizeof (orig_sym_hdr
),
4517 pfatal_with_name (object_name
);
4519 else if (sys_read
< (int) sizeof (struct filehdr
))
4520 fatal ("Wanted to read %d bytes from %s, system returned %d",
4521 (int) sizeof (struct filehdr
),
4526 /* Read in each of the sections if they exist in the object file.
4527 We read things in in the order the mips assembler creates the
4528 sections, so in theory no extra seeks are done.
4530 For simplicity sake, round each read up to a page boundary,
4531 we may want to revisit this later.... */
4533 file_offset
= orig_file_header
.f_symptr
+ sizeof (struct filehdr
);
4535 if (orig_sym_hdr
.cbLine
> 0) /* line numbers */
4536 orig_linenum
= (char *) read_seek ((Size_t
)orig_sym_hdr
.cbLine
,
4537 orig_sym_hdr
.cbLineOffset
,
4540 if (orig_sym_hdr
.ipdMax
> 0) /* procedure tables */
4541 orig_procs
= (PDR
*) read_seek ((Size_t
)orig_sym_hdr
.ipdMax
* sizeof (PDR
),
4542 orig_sym_hdr
.cbPdOffset
,
4543 "Procedure tables");
4545 if (orig_sym_hdr
.isymMax
> 0) /* local symbols */
4546 orig_local_syms
= (SYMR
*) read_seek ((Size_t
)orig_sym_hdr
.isymMax
* sizeof (SYMR
),
4547 orig_sym_hdr
.cbSymOffset
,
4550 if (orig_sym_hdr
.iauxMax
> 0) /* aux symbols */
4551 orig_aux_syms
= (AUXU
*) read_seek ((Size_t
)orig_sym_hdr
.iauxMax
* sizeof (AUXU
),
4552 orig_sym_hdr
.cbAuxOffset
,
4555 if (orig_sym_hdr
.issMax
> 0) /* local strings */
4556 orig_local_strs
= (char *) read_seek ((Size_t
)orig_sym_hdr
.issMax
,
4557 orig_sym_hdr
.cbSsOffset
,
4560 if (orig_sym_hdr
.issExtMax
> 0) /* external strings */
4561 orig_ext_strs
= (char *) read_seek ((Size_t
)orig_sym_hdr
.issExtMax
,
4562 orig_sym_hdr
.cbSsExtOffset
,
4563 "External strings");
4565 if (orig_sym_hdr
.ifdMax
> 0) /* file tables */
4566 orig_files
= (FDR
*) read_seek ((Size_t
)orig_sym_hdr
.ifdMax
* sizeof (FDR
),
4567 orig_sym_hdr
.cbFdOffset
,
4570 if (orig_sym_hdr
.crfd
> 0) /* relative file descriptors */
4571 orig_rfds
= (symint_t
*) read_seek ((Size_t
)orig_sym_hdr
.crfd
* sizeof (symint_t
),
4572 orig_sym_hdr
.cbRfdOffset
,
4573 "Relative file descriptors");
4575 if (orig_sym_hdr
.issExtMax
> 0) /* external symbols */
4576 orig_ext_syms
= (EXTR
*) read_seek ((Size_t
)orig_sym_hdr
.iextMax
* sizeof (EXTR
),
4577 orig_sym_hdr
.cbExtOffset
,
4578 "External symbols");
4580 if (orig_sym_hdr
.idnMax
> 0) /* dense numbers */
4582 orig_dense
= (DNR
*) read_seek ((Size_t
)orig_sym_hdr
.idnMax
* sizeof (DNR
),
4583 orig_sym_hdr
.cbDnOffset
,
4586 add_bytes (&dense_num
, (char *) orig_dense
, (Size_t
)orig_sym_hdr
.idnMax
);
4589 if (orig_sym_hdr
.ioptMax
> 0) /* opt symbols */
4590 orig_opt_syms
= (OPTR
*) read_seek ((Size_t
)orig_sym_hdr
.ioptMax
* sizeof (OPTR
),
4591 orig_sym_hdr
.cbOptOffset
,
4592 "Optimizer symbols");
4596 /* Abort if the symbol table is not last. */
4597 if (max_file_offset
!= stat_buf
.st_size
)
4598 fatal ("Symbol table is not last (symbol table ends at %ld, .o ends at %ld",
4603 /* If the first original file descriptor is a dummy which the assembler
4604 put out, but there are no symbols in it, skip it now. */
4605 if (orig_sym_hdr
.ifdMax
> 1
4606 && orig_files
->csym
== 2
4607 && orig_files
->caux
== 0)
4609 char *filename
= orig_local_strs
+ (orig_files
->issBase
+ orig_files
->rss
);
4610 char *suffix
= local_rindex (filename
, '.');
4612 if (suffix
!= (char *) 0 && strcmp (suffix
, ".s") == 0)
4617 /* Create array to map original file numbers to the new file numbers
4618 (in case there are duplicate filenames, we collapse them into one
4619 file section, the MIPS assembler may or may not collapse them). */
4621 remap_file_number
= (int *) alloca (sizeof (int) * orig_sym_hdr
.ifdMax
);
4623 for (fd
= delete_ifd
; fd
< orig_sym_hdr
.ifdMax
; fd
++)
4625 register FDR
*fd_ptr
= ORIG_FILES (fd
);
4626 register char *filename
= ORIG_LSTRS (fd_ptr
->issBase
+ fd_ptr
->rss
);
4628 /* file support itself. */
4629 add_file (filename
, filename
+ strlen (filename
));
4630 remap_file_number
[fd
] = cur_file_ptr
->file_index
;
4633 if (delete_ifd
> 0) /* just in case */
4634 remap_file_number
[0] = remap_file_number
[1];
4637 /* Loop, adding each of the external symbols. These must be in
4638 order or otherwise we would have to change the relocation
4639 entries. We don't just call add_bytes, because we need to have
4640 the names put into the external hash table. We set the type to
4641 'void' for now, and parse_def will fill in the correct type if it
4642 is in the symbol table. We must add the external symbols before
4643 the locals, since the locals do lookups against the externals. */
4646 fprintf (stderr
, "\tehash\n");
4648 for (es
= 0; es
< orig_sym_hdr
.iextMax
; es
++)
4650 register EXTR
*eptr
= orig_ext_syms
+ es
;
4651 register char *ename
= ORIG_ESTRS (eptr
->asym
.iss
);
4652 register unsigned ifd
= eptr
->ifd
;
4654 (void) add_ext_symbol (ename
,
4655 ename
+ strlen (ename
),
4656 (st_t
) eptr
->asym
.st
,
4657 (sc_t
) eptr
->asym
.sc
,
4659 (eptr
->asym
.index
== indexNil
4660 ? (symint_t
) indexNil
: 0),
4661 ((long) ifd
< orig_sym_hdr
.ifdMax
4662 ? remap_file_number
[ifd
] : (int) ifd
));
4666 /* For each of the files in the object file, copy the symbols, and such
4667 into the varrays for the new object file. */
4669 for (fd
= delete_ifd
; fd
< orig_sym_hdr
.ifdMax
; fd
++)
4671 register FDR
*fd_ptr
= ORIG_FILES (fd
);
4672 register char *filename
= ORIG_LSTRS (fd_ptr
->issBase
+ fd_ptr
->rss
);
4673 register SYMR
*sym_start
;
4675 register SYMR
*sym_end_p1
;
4676 register PDR
*proc_start
;
4678 register PDR
*proc_end_p1
;
4680 /* file support itself. */
4681 add_file (filename
, filename
+ strlen (filename
));
4682 cur_file_ptr
->orig_fdr
= fd_ptr
;
4684 /* Copy stuff that's just passed through (such as line #'s) */
4685 cur_file_ptr
->fdr
.adr
= fd_ptr
->adr
;
4686 cur_file_ptr
->fdr
.ilineBase
= fd_ptr
->ilineBase
;
4687 cur_file_ptr
->fdr
.cline
= fd_ptr
->cline
;
4688 cur_file_ptr
->fdr
.rfdBase
= fd_ptr
->rfdBase
;
4689 cur_file_ptr
->fdr
.crfd
= fd_ptr
->crfd
;
4690 cur_file_ptr
->fdr
.cbLineOffset
= fd_ptr
->cbLineOffset
;
4691 cur_file_ptr
->fdr
.cbLine
= fd_ptr
->cbLine
;
4692 cur_file_ptr
->fdr
.fMerge
= fd_ptr
->fMerge
;
4693 cur_file_ptr
->fdr
.fReadin
= fd_ptr
->fReadin
;
4694 cur_file_ptr
->fdr
.glevel
= fd_ptr
->glevel
;
4697 fprintf (stderr
, "\thash\tstart, filename %s\n", filename
);
4699 /* For each of the static and global symbols defined, add them
4700 to the hash table of original symbols, so we can look up
4703 sym_start
= ORIG_LSYMS (fd_ptr
->isymBase
);
4704 sym_end_p1
= sym_start
+ fd_ptr
->csym
;
4705 for (sym
= sym_start
; sym
< sym_end_p1
; sym
++)
4707 switch ((st_t
) sym
->st
)
4718 auto symint_t hash_index
;
4719 register char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ sym
->iss
);
4720 register Size_t len
= strlen (str
);
4721 register shash_t
*shash_ptr
= hash_string (str
,
4726 if (shash_ptr
!= (shash_t
*) 0)
4727 error ("internal error, %s is already in original symbol table", str
);
4731 shash_ptr
= allocate_shash ();
4732 shash_ptr
->next
= orig_str_hash
[hash_index
];
4733 orig_str_hash
[hash_index
] = shash_ptr
;
4735 shash_ptr
->len
= len
;
4736 shash_ptr
->indx
= indexNil
;
4737 shash_ptr
->string
= str
;
4738 shash_ptr
->sym_ptr
= sym
;
4744 if ((sc_t
) sym
->sc
== sc_Text
)
4746 register char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ sym
->iss
);
4750 register Size_t len
= strlen (str
);
4751 register shash_t
*shash_ptr
= hash_string (str
,
4756 if (shash_ptr
!= (shash_t
*) 0)
4757 shash_ptr
->end_ptr
= sym
;
4767 fprintf (stderr
, "\thash\tdone, filename %s\n", filename
);
4768 fprintf (stderr
, "\tproc\tstart, filename %s\n", filename
);
4771 /* Go through each of the procedures in this file, and add the
4772 procedure pointer to the hash entry for the given name. */
4774 proc_start
= ORIG_PROCS (fd_ptr
->ipdFirst
);
4775 proc_end_p1
= proc_start
+ fd_ptr
->cpd
;
4776 for (proc
= proc_start
; proc
< proc_end_p1
; proc
++)
4778 register SYMR
*proc_sym
= ORIG_LSYMS (fd_ptr
->isymBase
+ proc
->isym
);
4779 register char *str
= ORIG_LSTRS (fd_ptr
->issBase
+ proc_sym
->iss
);
4780 register Size_t len
= strlen (str
);
4781 register shash_t
*shash_ptr
= hash_string (str
,
4786 if (shash_ptr
== (shash_t
*) 0)
4787 error ("internal error, function %s is not in original symbol table", str
);
4790 shash_ptr
->proc_ptr
= proc
;
4794 fprintf (stderr
, "\tproc\tdone, filename %s\n", filename
);
4797 cur_file_ptr
= first_file
;
4800 /* Copy all of the object file up to the symbol table. Originally
4801 we were going to use ftruncate, but that doesn't seem to work
4802 on Ultrix 3.1.... */
4804 if (fseek (obj_in_stream
, (long) 0, SEEK_SET
) != 0)
4805 pfatal_with_name (obj_in_name
);
4807 if (fseek (object_stream
, (long) 0, SEEK_SET
) != 0)
4808 pfatal_with_name (object_name
);
4810 for (remaining
= orig_file_header
.f_symptr
;
4812 remaining
-= num_write
)
4815 = (remaining
<= (int) sizeof (buffer
))
4816 ? remaining
: (int) sizeof (buffer
);
4817 sys_read
= fread ((PTR_T
) buffer
, 1, num_write
, obj_in_stream
);
4819 pfatal_with_name (obj_in_name
);
4821 else if (sys_read
!= num_write
)
4822 fatal ("Wanted to read %d bytes from %s, system returned %d",
4827 sys_write
= fwrite (buffer
, 1, num_write
, object_stream
);
4829 pfatal_with_name (object_name
);
4831 else if (sys_write
!= num_write
)
4832 fatal ("Wrote %d bytes to %s, system returned %d",
4840 /* Ye olde main program. */
4842 extern int main
PARAMS ((int, char **));
4850 char *p
= local_rindex (argv
[0], '/');
4855 progname
= (p
!= 0) ? p
+1 : argv
[0];
4857 (void) signal (SIGSEGV
, catch_signal
);
4858 (void) signal (SIGBUS
, catch_signal
);
4859 (void) signal (SIGABRT
, catch_signal
);
4861 #if !defined(__SABER__) && !defined(lint)
4862 if (sizeof (efdr_t
) > PAGE_USIZE
)
4863 fatal ("Efdr_t has a sizeof %d bytes, when it should be less than %d",
4864 (int) sizeof (efdr_t
),
4867 if (sizeof (page_t
) != PAGE_USIZE
)
4868 fatal ("Page_t has a sizeof %d bytes, when it should be %d",
4869 (int) sizeof (page_t
),
4874 alloc_counts
[ alloc_type_none
].alloc_name
= "none";
4875 alloc_counts
[ alloc_type_scope
].alloc_name
= "scope";
4876 alloc_counts
[ alloc_type_vlinks
].alloc_name
= "vlinks";
4877 alloc_counts
[ alloc_type_shash
].alloc_name
= "shash";
4878 alloc_counts
[ alloc_type_thash
].alloc_name
= "thash";
4879 alloc_counts
[ alloc_type_tag
].alloc_name
= "tag";
4880 alloc_counts
[ alloc_type_forward
].alloc_name
= "forward";
4881 alloc_counts
[ alloc_type_thead
].alloc_name
= "thead";
4882 alloc_counts
[ alloc_type_varray
].alloc_name
= "varray";
4884 int_type_info
= type_info_init
;
4885 int_type_info
.basic_type
= bt_Int
;
4887 void_type_info
= type_info_init
;
4888 void_type_info
.basic_type
= bt_Void
;
4890 while ((option
= getopt (argc
, argv
, "d:i:I:o:v")) != EOF
)
4898 debug
= strtol (optarg
, &num_end
, 0);
4899 if ((unsigned)debug
> 4 || num_end
== optarg
)
4905 if (rename_output
|| obj_in_name
!= (char *) 0)
4910 /* fall through to 'i' case. */
4913 if (obj_in_name
== (char *) 0)
4915 obj_in_name
= optarg
;
4923 if (object_name
== (char *) 0)
4924 object_name
= optarg
;
4934 if (obj_in_name
== (char *) 0 && optind
<= argc
- 2)
4935 obj_in_name
= argv
[--argc
];
4937 if (object_name
== (char *) 0 && optind
<= argc
- 2)
4938 object_name
= argv
[--argc
];
4940 /* If there is an output name, but no input name use
4941 the same file for both, deleting the name between
4942 opening it for input and opening it for output. */
4943 if (obj_in_name
== (char *) 0 && object_name
!= (char *)0)
4945 obj_in_name
= object_name
;
4949 if (object_name
== (char *) 0 || had_errors
|| optind
!= argc
- 1)
4951 fprintf (stderr
, _("Calling Sequence:\n"));
4952 fprintf (stderr
, _("\tmips-tfile [-d <num>] [-v] [-i <o-in-file>] -o <o-out-file> <s-file> (or)\n"));
4953 fprintf (stderr
, _("\tmips-tfile [-d <num>] [-v] [-I <o-in-file>] -o <o-out-file> <s-file> (or)\n"));
4954 fprintf (stderr
, _("\tmips-tfile [-d <num>] [-v] <s-file> <o-in-file> <o-out-file>\n"));
4955 fprintf (stderr
, "\n");
4956 fprintf (stderr
, _("Debug levels are:\n"));
4957 fprintf (stderr
, _(" 1\tGeneral debug + trace functions/blocks.\n"));
4958 fprintf (stderr
, _(" 2\tDebug level 1 + trace externals.\n"));
4959 fprintf (stderr
, _(" 3\tDebug level 2 + trace all symbols.\n"));
4960 fprintf (stderr
, _(" 4\tDebug level 3 + trace memory allocations.\n"));
4967 fprintf (stderr
, _("mips-tfile version %s"), version_string
);
4968 #ifdef TARGET_VERSION
4971 fputc ('\n', stderr
);
4974 if (obj_in_name
== (char *) 0)
4975 obj_in_name
= object_name
;
4977 if (rename_output
&& rename (object_name
, obj_in_name
) != 0)
4979 char *buffer
= (char *) allocate_multiple_pages (4);
4985 /* Rename failed, copy input file */
4986 in_fd
= open (object_name
, O_RDONLY
, 0666);
4988 pfatal_with_name (object_name
);
4990 out_fd
= open (obj_in_name
, O_WRONLY
| O_CREAT
| O_TRUNC
, 0666);
4992 pfatal_with_name (obj_in_name
);
4994 while ((len
= read (in_fd
, buffer
, 4*PAGE_SIZE
)) > 0)
4996 len2
= write (out_fd
, buffer
, len
);
4998 pfatal_with_name (object_name
);
5001 fatal ("wrote %d bytes to %s, expected to write %d", len2
, obj_in_name
, len
);
5004 free_multiple_pages ((page_t
*)buffer
, 4);
5007 pfatal_with_name (object_name
);
5009 if (close (in_fd
) < 0)
5010 pfatal_with_name (object_name
);
5012 if (close (out_fd
) < 0)
5013 pfatal_with_name (obj_in_name
);
5016 /* Must open input before output, since the output may be the same file, and
5017 we need to get the input handle before truncating it. */
5018 obj_in_stream
= fopen (obj_in_name
, "r");
5019 if (obj_in_stream
== (FILE *) 0)
5020 pfatal_with_name (obj_in_name
);
5022 if (delete_input
&& unlink (obj_in_name
) != 0)
5023 pfatal_with_name (obj_in_name
);
5025 object_stream
= fopen (object_name
, "w");
5026 if (object_stream
== (FILE *) 0)
5027 pfatal_with_name (object_name
);
5029 if (strcmp (argv
[optind
], "-") != 0)
5031 input_name
= argv
[optind
];
5032 if (freopen (argv
[optind
], "r", stdin
) != stdin
)
5033 pfatal_with_name (argv
[optind
]);
5036 copy_object (); /* scan & copy object file */
5037 parse_input (); /* scan all of input */
5039 update_headers (); /* write out tfile */
5044 fprintf (stderr
, "\n\tAllocation summary:\n\n");
5045 for (i
= (int)alloc_type_none
; i
< (int)alloc_type_last
; i
++)
5046 if (alloc_counts
[i
].total_alloc
)
5049 "\t%s\t%5d allocation(s), %5d free(s), %2d page(s)\n",
5050 alloc_counts
[i
].alloc_name
,
5051 alloc_counts
[i
].total_alloc
,
5052 alloc_counts
[i
].total_free
,
5053 alloc_counts
[i
].total_pages
);
5057 return (had_errors
) ? 1 : 0;
5061 /* Catch a signal and exit without dumping core. */
5064 catch_signal (signum
)
5067 (void) signal (signum
, SIG_DFL
); /* just in case... */
5068 fatal ("%s", strsignal(signum
));
5071 /* Print a fatal error message. NAME is the text.
5072 Also include a system error message based on `errno'. */
5075 pfatal_with_name (msg
)
5078 int save_errno
= errno
; /* just in case.... */
5079 if (line_number
> 0)
5080 fprintf (stderr
, "%s, %s:%ld ", progname
, input_name
, line_number
);
5082 fprintf (stderr
, "%s:", progname
);
5086 fprintf (stderr
, "[errno = 0] %s\n", msg
);
5094 /* Procedure to abort with an out of bounds error message. It has
5095 type int, so it can be used with an ?: expression within the
5096 ORIG_xxx macros, but the function never returns. */
5099 out_of_bounds (indx
, max
, str
, prog_line
)
5100 symint_t indx
; /* index that is out of bounds */
5101 symint_t max
; /* maximum index */
5102 const char *str
; /* string to print out */
5103 int prog_line
; /* line number within mips-tfile.c */
5105 if (indx
< max
) /* just in case */
5108 fprintf (stderr
, "%s, %s:%ld index %lu is out of bounds for %s, max is %lu, mips-tfile.c line# %d\n",
5109 progname
, input_name
, line_number
, indx
, str
, max
, prog_line
);
5112 return 0; /* turn off warning messages */
5116 /* Allocate a cluster of pages. USE_MALLOC says that malloc does not
5117 like sbrk's behind its back (or sbrk isn't available). If we use
5118 sbrk, we assume it gives us zeroed pages. */
5120 #ifndef MALLOC_CHECK
5124 allocate_cluster (npages
)
5127 register page_t
*value
= (page_t
*) xcalloc (npages
, PAGE_USIZE
);
5130 fprintf (stderr
, "\talloc\tnpages = %d, value = 0x%.8x\n", npages
, value
);
5135 #else /* USE_MALLOC */
5138 allocate_cluster (npages
)
5141 register page_t
*ptr
= (page_t
*) sbrk (0); /* current sbreak */
5142 unsigned long offset
= ((unsigned long) ptr
) & (PAGE_SIZE
- 1);
5144 if (offset
!= 0) /* align to a page boundary */
5146 if (sbrk (PAGE_USIZE
- offset
) == (char *)-1)
5147 pfatal_with_name ("allocate_cluster");
5149 ptr
= (page_t
*) (((char *)ptr
) + PAGE_SIZE
- offset
);
5152 if (sbrk (npages
* PAGE_USIZE
) == (char *)-1)
5153 pfatal_with_name ("allocate_cluster");
5157 fprintf (stderr
, "\talloc\tnpages = %lu, value = ",
5158 (unsigned long) npages
);
5159 fprintf (stderr
, HOST_PTR_PRINTF
, ptr
);
5160 fputs ("\n", stderr
);
5166 #endif /* USE_MALLOC */
5169 static page_t
*cluster_ptr
= NULL
;
5170 static unsigned pages_left
= 0;
5172 #endif /* MALLOC_CHECK */
5175 /* Allocate some pages (which is initialized to 0). */
5178 allocate_multiple_pages (npages
)
5181 #ifndef MALLOC_CHECK
5182 if (pages_left
== 0 && npages
< MAX_CLUSTER_PAGES
)
5184 pages_left
= MAX_CLUSTER_PAGES
;
5185 cluster_ptr
= allocate_cluster (MAX_CLUSTER_PAGES
);
5188 if (npages
<= pages_left
)
5190 page_t
*ptr
= cluster_ptr
;
5191 cluster_ptr
+= npages
;
5192 pages_left
-= npages
;
5196 return allocate_cluster (npages
);
5198 #else /* MALLOC_CHECK */
5199 return (page_t
*) xcalloc (npages
, PAGE_SIZE
);
5201 #endif /* MALLOC_CHECK */
5205 /* Release some pages. */
5208 free_multiple_pages (page_ptr
, npages
)
5212 #ifndef MALLOC_CHECK
5213 if (pages_left
== 0)
5215 cluster_ptr
= page_ptr
;
5216 pages_left
= npages
;
5219 else if ((page_ptr
+ npages
) == cluster_ptr
)
5221 cluster_ptr
-= npages
;
5222 pages_left
+= npages
;
5225 /* otherwise the page is not freed. If more than call is
5226 done, we probably should worry about it, but at present,
5227 the free pages is done right after an allocate. */
5229 #else /* MALLOC_CHECK */
5230 free ((char *) page_ptr
);
5232 #endif /* MALLOC_CHECK */
5236 /* Allocate one page (which is initialized to 0). */
5239 allocate_page
__proto((void))
5241 #ifndef MALLOC_CHECK
5242 if (pages_left
== 0)
5244 pages_left
= MAX_CLUSTER_PAGES
;
5245 cluster_ptr
= allocate_cluster (MAX_CLUSTER_PAGES
);
5249 return cluster_ptr
++;
5251 #else /* MALLOC_CHECK */
5252 return (page_t
*) xcalloc (1, PAGE_SIZE
);
5254 #endif /* MALLOC_CHECK */
5258 /* Allocate scoping information. */
5261 allocate_scope
__proto((void))
5263 register scope_t
*ptr
;
5264 static scope_t initial_scope
;
5266 #ifndef MALLOC_CHECK
5267 ptr
= alloc_counts
[ (int)alloc_type_scope
].free_list
.f_scope
;
5268 if (ptr
!= (scope_t
*) 0)
5269 alloc_counts
[ (int)alloc_type_scope
].free_list
.f_scope
= ptr
->free
;
5273 register int unallocated
= alloc_counts
[ (int)alloc_type_scope
].unallocated
;
5274 register page_t
*cur_page
= alloc_counts
[ (int)alloc_type_scope
].cur_page
;
5276 if (unallocated
== 0)
5278 unallocated
= PAGE_SIZE
/ sizeof (scope_t
);
5279 alloc_counts
[ (int)alloc_type_scope
].cur_page
= cur_page
= allocate_page ();
5280 alloc_counts
[ (int)alloc_type_scope
].total_pages
++;
5283 ptr
= &cur_page
->scope
[ --unallocated
];
5284 alloc_counts
[ (int)alloc_type_scope
].unallocated
= unallocated
;
5288 ptr
= (scope_t
*) xmalloc (sizeof (scope_t
));
5292 alloc_counts
[ (int)alloc_type_scope
].total_alloc
++;
5293 *ptr
= initial_scope
;
5297 /* Free scoping information. */
5303 alloc_counts
[ (int)alloc_type_scope
].total_free
++;
5305 #ifndef MALLOC_CHECK
5306 ptr
->free
= alloc_counts
[ (int)alloc_type_scope
].free_list
.f_scope
;
5307 alloc_counts
[ (int)alloc_type_scope
].free_list
.f_scope
= ptr
;
5316 /* Allocate links for pages in a virtual array. */
5319 allocate_vlinks
__proto((void))
5321 register vlinks_t
*ptr
;
5322 static vlinks_t initial_vlinks
;
5324 #ifndef MALLOC_CHECK
5325 register int unallocated
= alloc_counts
[ (int)alloc_type_vlinks
].unallocated
;
5326 register page_t
*cur_page
= alloc_counts
[ (int)alloc_type_vlinks
].cur_page
;
5328 if (unallocated
== 0)
5330 unallocated
= PAGE_SIZE
/ sizeof (vlinks_t
);
5331 alloc_counts
[ (int)alloc_type_vlinks
].cur_page
= cur_page
= allocate_page ();
5332 alloc_counts
[ (int)alloc_type_vlinks
].total_pages
++;
5335 ptr
= &cur_page
->vlinks
[ --unallocated
];
5336 alloc_counts
[ (int)alloc_type_vlinks
].unallocated
= unallocated
;
5339 ptr
= (vlinks_t
*) xmalloc (sizeof (vlinks_t
));
5343 alloc_counts
[ (int)alloc_type_vlinks
].total_alloc
++;
5344 *ptr
= initial_vlinks
;
5349 /* Allocate string hash buckets. */
5352 allocate_shash
__proto((void))
5354 register shash_t
*ptr
;
5355 static shash_t initial_shash
;
5357 #ifndef MALLOC_CHECK
5358 register int unallocated
= alloc_counts
[ (int)alloc_type_shash
].unallocated
;
5359 register page_t
*cur_page
= alloc_counts
[ (int)alloc_type_shash
].cur_page
;
5361 if (unallocated
== 0)
5363 unallocated
= PAGE_SIZE
/ sizeof (shash_t
);
5364 alloc_counts
[ (int)alloc_type_shash
].cur_page
= cur_page
= allocate_page ();
5365 alloc_counts
[ (int)alloc_type_shash
].total_pages
++;
5368 ptr
= &cur_page
->shash
[ --unallocated
];
5369 alloc_counts
[ (int)alloc_type_shash
].unallocated
= unallocated
;
5372 ptr
= (shash_t
*) xmalloc (sizeof (shash_t
));
5376 alloc_counts
[ (int)alloc_type_shash
].total_alloc
++;
5377 *ptr
= initial_shash
;
5382 /* Allocate type hash buckets. */
5385 allocate_thash
__proto((void))
5387 register thash_t
*ptr
;
5388 static thash_t initial_thash
;
5390 #ifndef MALLOC_CHECK
5391 register int unallocated
= alloc_counts
[ (int)alloc_type_thash
].unallocated
;
5392 register page_t
*cur_page
= alloc_counts
[ (int)alloc_type_thash
].cur_page
;
5394 if (unallocated
== 0)
5396 unallocated
= PAGE_SIZE
/ sizeof (thash_t
);
5397 alloc_counts
[ (int)alloc_type_thash
].cur_page
= cur_page
= allocate_page ();
5398 alloc_counts
[ (int)alloc_type_thash
].total_pages
++;
5401 ptr
= &cur_page
->thash
[ --unallocated
];
5402 alloc_counts
[ (int)alloc_type_thash
].unallocated
= unallocated
;
5405 ptr
= (thash_t
*) xmalloc (sizeof (thash_t
));
5409 alloc_counts
[ (int)alloc_type_thash
].total_alloc
++;
5410 *ptr
= initial_thash
;
5415 /* Allocate structure, union, or enum tag information. */
5418 allocate_tag
__proto((void))
5420 register tag_t
*ptr
;
5421 static tag_t initial_tag
;
5423 #ifndef MALLOC_CHECK
5424 ptr
= alloc_counts
[ (int)alloc_type_tag
].free_list
.f_tag
;
5425 if (ptr
!= (tag_t
*) 0)
5426 alloc_counts
[ (int)alloc_type_tag
].free_list
.f_tag
= ptr
->free
;
5430 register int unallocated
= alloc_counts
[ (int)alloc_type_tag
].unallocated
;
5431 register page_t
*cur_page
= alloc_counts
[ (int)alloc_type_tag
].cur_page
;
5433 if (unallocated
== 0)
5435 unallocated
= PAGE_SIZE
/ sizeof (tag_t
);
5436 alloc_counts
[ (int)alloc_type_tag
].cur_page
= cur_page
= allocate_page ();
5437 alloc_counts
[ (int)alloc_type_tag
].total_pages
++;
5440 ptr
= &cur_page
->tag
[ --unallocated
];
5441 alloc_counts
[ (int)alloc_type_tag
].unallocated
= unallocated
;
5445 ptr
= (tag_t
*) xmalloc (sizeof (tag_t
));
5449 alloc_counts
[ (int)alloc_type_tag
].total_alloc
++;
5454 /* Free scoping information. */
5460 alloc_counts
[ (int)alloc_type_tag
].total_free
++;
5462 #ifndef MALLOC_CHECK
5463 ptr
->free
= alloc_counts
[ (int)alloc_type_tag
].free_list
.f_tag
;
5464 alloc_counts
[ (int)alloc_type_tag
].free_list
.f_tag
= ptr
;
5473 /* Allocate forward reference to a yet unknown tag. */
5476 allocate_forward
__proto((void))
5478 register forward_t
*ptr
;
5479 static forward_t initial_forward
;
5481 #ifndef MALLOC_CHECK
5482 ptr
= alloc_counts
[ (int)alloc_type_forward
].free_list
.f_forward
;
5483 if (ptr
!= (forward_t
*) 0)
5484 alloc_counts
[ (int)alloc_type_forward
].free_list
.f_forward
= ptr
->free
;
5488 register int unallocated
= alloc_counts
[ (int)alloc_type_forward
].unallocated
;
5489 register page_t
*cur_page
= alloc_counts
[ (int)alloc_type_forward
].cur_page
;
5491 if (unallocated
== 0)
5493 unallocated
= PAGE_SIZE
/ sizeof (forward_t
);
5494 alloc_counts
[ (int)alloc_type_forward
].cur_page
= cur_page
= allocate_page ();
5495 alloc_counts
[ (int)alloc_type_forward
].total_pages
++;
5498 ptr
= &cur_page
->forward
[ --unallocated
];
5499 alloc_counts
[ (int)alloc_type_forward
].unallocated
= unallocated
;
5503 ptr
= (forward_t
*) xmalloc (sizeof (forward_t
));
5507 alloc_counts
[ (int)alloc_type_forward
].total_alloc
++;
5508 *ptr
= initial_forward
;
5512 /* Free scoping information. */
5518 alloc_counts
[ (int)alloc_type_forward
].total_free
++;
5520 #ifndef MALLOC_CHECK
5521 ptr
->free
= alloc_counts
[ (int)alloc_type_forward
].free_list
.f_forward
;
5522 alloc_counts
[ (int)alloc_type_forward
].free_list
.f_forward
= ptr
;
5531 /* Allocate head of type hash list. */
5534 allocate_thead
__proto((void))
5536 register thead_t
*ptr
;
5537 static thead_t initial_thead
;
5539 #ifndef MALLOC_CHECK
5540 ptr
= alloc_counts
[ (int)alloc_type_thead
].free_list
.f_thead
;
5541 if (ptr
!= (thead_t
*) 0)
5542 alloc_counts
[ (int)alloc_type_thead
].free_list
.f_thead
= ptr
->free
;
5546 register int unallocated
= alloc_counts
[ (int)alloc_type_thead
].unallocated
;
5547 register page_t
*cur_page
= alloc_counts
[ (int)alloc_type_thead
].cur_page
;
5549 if (unallocated
== 0)
5551 unallocated
= PAGE_SIZE
/ sizeof (thead_t
);
5552 alloc_counts
[ (int)alloc_type_thead
].cur_page
= cur_page
= allocate_page ();
5553 alloc_counts
[ (int)alloc_type_thead
].total_pages
++;
5556 ptr
= &cur_page
->thead
[ --unallocated
];
5557 alloc_counts
[ (int)alloc_type_thead
].unallocated
= unallocated
;
5561 ptr
= (thead_t
*) xmalloc (sizeof (thead_t
));
5565 alloc_counts
[ (int)alloc_type_thead
].total_alloc
++;
5566 *ptr
= initial_thead
;
5570 /* Free scoping information. */
5576 alloc_counts
[ (int)alloc_type_thead
].total_free
++;
5578 #ifndef MALLOC_CHECK
5579 ptr
->free
= (thead_t
*) alloc_counts
[ (int)alloc_type_thead
].free_list
.f_thead
;
5580 alloc_counts
[ (int)alloc_type_thead
].free_list
.f_thead
= ptr
;
5588 #endif /* MIPS_DEBUGGING_INFO */
5591 /* Output an error message and exit */
5595 fatal
VPARAMS ((const char *format
, ...))
5597 #ifndef ANSI_PROTOTYPES
5602 VA_START (ap
, format
);
5604 #ifndef ANSI_PROTOTYPES
5605 format
= va_arg (ap
, const char *);
5608 if (line_number
> 0)
5609 fprintf (stderr
, "%s, %s:%ld ", progname
, input_name
, line_number
);
5611 fprintf (stderr
, "%s:", progname
);
5613 vfprintf (stderr
, format
, ap
);
5615 fprintf (stderr
, "\n");
5616 if (line_number
> 0)
5617 fprintf (stderr
, "line:\t%s\n", cur_line_start
);
5625 error
VPARAMS ((const char *format
, ...))
5627 #ifndef ANSI_PROTOTYPES
5632 VA_START (ap
, format
);
5634 #ifndef ANSI_PROTOTYPES
5635 format
= va_arg (ap
, char *);
5638 if (line_number
> 0)
5639 fprintf (stderr
, "%s, %s:%ld ", progname
, input_name
, line_number
);
5641 fprintf (stderr
, "%s:", progname
);
5643 vfprintf (stderr
, format
, ap
);
5644 fprintf (stderr
, "\n");
5645 if (line_number
> 0)
5646 fprintf (stderr
, "line:\t%s\n", cur_line_start
);
5654 /* More 'friendly' abort that prints the line and file.
5655 config.h can #define abort fancy_abort if you like that sort of thing. */
5660 fatal ("Internal abort.");
5664 /* When `malloc.c' is compiled with `rcheck' defined,
5665 it calls this function to report clobberage. */
5675 /* Define our own index/rindex, since the local and global symbol
5676 structures as defined by MIPS has an 'index' field. */
5679 local_index (str
, sentinel
)
5685 for ( ; (ch
= *str
) != sentinel
; str
++)
5695 local_rindex (str
, sentinel
)
5700 const char *ret
= (const char *) 0;
5702 for ( ; (ch
= *str
) != '\0'; str
++)