1 /* ECOFF debugging support.
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
5 Contributed by Cygnus Support.
6 This file was put together by Ian Lance Taylor <ian@cygnus.com>. A
7 good deal of it comes directly from mips-tfile.c, by Michael
8 Meissner <meissner@osf.org>.
10 This file is part of GAS.
12 GAS is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3, or (at your option)
17 GAS is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with GAS; see the file COPYING. If not, write to the Free
24 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
29 /* This file is compiled conditionally for those targets which use
30 ECOFF debugging information (e.g., MIPS ECOFF, MIPS ELF, Alpha
35 #ifdef ECOFF_DEBUGGING
37 #include "coff/internal.h"
38 #include "coff/symconst.h"
39 #include "aout/stab_gnu.h"
41 #include "safe-ctype.h"
43 /* Why isn't this in coff/sym.h? */
44 #define ST_RFDESCAPE 0xfff
46 /* This file constructs the information used by the ECOFF debugging
47 format. It just builds a large block of data.
49 We support both ECOFF style debugging and stabs debugging (the
50 stabs symbols are encapsulated in ECOFF symbols). This should let
51 us handle anything the compiler might throw at us. */
53 /* Here is a brief description of the MIPS ECOFF symbol table, by
54 Michael Meissner. The MIPS symbol table has the following pieces:
60 +-- Dense number table
68 +-- Relative file descriptors
80 The symbolic header points to each of the other tables, and also
81 contains the number of entries. It also contains a magic number
82 and MIPS compiler version number, such as 2.0.
84 The auxiliary table is a series of 32 bit integers, that are
85 referenced as needed from the local symbol table. Unlike standard
86 COFF, the aux. information does not follow the symbol that uses
87 it, but rather is a separate table. In theory, this would allow
88 the MIPS compilers to collapse duplicate aux. entries, but I've not
89 noticed this happening with the 1.31 compiler suite. The different
90 types of aux. entries are:
92 1) dnLow: Low bound on array dimension.
94 2) dnHigh: High bound on array dimension.
96 3) isym: Index to the local symbol which is the start of the
97 function for the end of function first aux. entry.
99 4) width: Width of structures and bitfields.
101 5) count: Count of ranges for variant part.
103 6) rndx: A relative index into the symbol table. The relative
104 index field has two parts: rfd which is a pointer into the
105 relative file index table or ST_RFDESCAPE which says the next
106 aux. entry is the file number, and index: which is the pointer
107 into the local symbol within a given file table. This is for
108 things like references to types defined in another file.
110 7) Type information: This is like the COFF type bits, except it
111 is 32 bits instead of 16; they still have room to add new
112 basic types; and they can handle more than 6 levels of array,
113 pointer, function, etc. Each type information field contains
114 the following structure members:
116 a) fBitfield: a bit that says this is a bitfield, and the
117 size in bits follows as the next aux. entry.
119 b) continued: a bit that says the next aux. entry is a
120 continuation of the current type information (in case
121 there are more than 6 levels of array/ptr/function).
123 c) bt: an integer containing the base type before adding
124 array, pointer, function, etc. qualifiers. The
125 current base types that I have documentation for are:
128 btAdr -- address - integer same size as ptr
130 btUChar -- unsigned character
132 btUShort -- unsigned short
134 btUInt -- unsigned int
136 btULong -- unsigned long
137 btFloat -- float (real)
138 btDouble -- Double (real)
139 btStruct -- Structure (Record)
140 btUnion -- Union (variant)
142 btTypedef -- defined via a typedef isymRef
143 btRange -- subrange of int
145 btComplex -- fortran complex
146 btDComplex -- fortran double complex
147 btIndirect -- forward or unnamed typedef
148 btFixedDec -- Fixed Decimal
149 btFloatDec -- Float Decimal
150 btString -- Varying Length Character String
151 btBit -- Aligned Bit String
153 btVoid -- Void (MIPS cc revision >= 2.00)
155 d) tq0 - tq5: type qualifier fields as needed. The
156 current type qualifier fields I have documentation for
159 tqNil -- no more qualifiers
163 tqFar -- 8086 far pointers
166 The dense number table is used in the front ends, and disappears by
167 the time the .o is created.
169 With the 1.31 compiler suite, the optimization symbols don't seem
170 to be used as far as I can tell.
172 The linker is the first entity that creates the relative file
173 descriptor table, and I believe it is used so that the individual
174 file table pointers don't have to be rewritten when the objects are
175 merged together into the program file.
177 Unlike COFF, the basic symbol & string tables are split into
178 external and local symbols/strings. The relocation information
179 only goes off of the external symbol table, and the debug
180 information only goes off of the internal symbol table. The
181 external symbols can have links to an appropriate file index and
182 symbol within the file to give it the appropriate type information.
183 Because of this, the external symbols are actually larger than the
184 internal symbols (to contain the link information), and contain the
185 local symbol structure as a member, though this member is not the
186 first member of the external symbol structure (!). I suspect this
187 split is to make strip easier to deal with.
189 Each file table has offsets for where the line numbers, local
190 strings, local symbols, and procedure table starts from within the
191 global tables, and the indexs are reset to 0 for each of those
194 The procedure table contains the binary equivalents of the .ent
195 (start of the function address), .frame (what register is the
196 virtual frame pointer, constant offset from the register to obtain
197 the VFP, and what register holds the return address), .mask/.fmask
198 (bitmask of saved registers, and where the first register is stored
199 relative to the VFP) assembler directives. It also contains the
200 low and high bounds of the line numbers if debugging is turned on.
202 The line number table is a compressed form of the normal COFF line
203 table. Each line number entry is either 1 or 3 bytes long, and
204 contains a signed delta from the previous line, and an unsigned
205 count of the number of instructions this statement takes.
207 The local symbol table contains the following fields:
209 1) iss: index to the local string table giving the name of the
212 2) value: value of the symbol (address, register number, etc.).
214 3) st: symbol type. The current symbol types are:
216 stNil -- Nuthin' special
217 stGlobal -- external symbol
219 stParam -- procedure argument
220 stLocal -- local variable
222 stProc -- External Procedure
223 stBlock -- beginning of block
224 stEnd -- end (of anything)
225 stMember -- member (of anything)
226 stTypedef -- type definition
228 stRegReloc -- register relocation
229 stForward -- forwarding address
230 stStaticProc -- Static procedure
233 4) sc: storage class. The current storage classes are:
235 scText -- text symbol
236 scData -- initialized data symbol
237 scBss -- un-initialized data symbol
238 scRegister -- value of symbol is register number
239 scAbs -- value of symbol is absolute
240 scUndefined -- who knows?
241 scCdbLocal -- variable's value is IN se->va.??
242 scBits -- this is a bit field
243 scCdbSystem -- value is IN debugger's address space
244 scRegImage -- register value saved on stack
245 scInfo -- symbol contains debugger information
246 scUserStruct -- addr in struct user for current process
247 scSData -- load time only small data
248 scSBss -- load time only small common
249 scRData -- load time only read only data
250 scVar -- Var parameter (fortranpascal)
251 scCommon -- common variable
252 scSCommon -- small common
253 scVarRegister -- Var parameter in a register
254 scVariant -- Variant record
255 scSUndefined -- small undefined(external) data
256 scInit -- .init section symbol
258 5) index: pointer to a local symbol or aux. entry.
260 For the following program:
265 printf("Hello World!\n");
269 Mips-tdump produces the following information:
274 timestamp 645311799, Wed Jun 13 17:16:39 1990
275 symbolic header offset 284
276 symbolic header size 96
280 Symbolic header, magic number = 0x7009, vstamp = 1.31:
282 Info Offset Number Bytes
283 ==== ====== ====== =====
285 Line numbers 380 4 4 [13]
287 Procedures Tables 384 1 52
288 Local Symbols 436 16 192
289 Optimization Symbols 0 0 0
290 Auxiliary Symbols 628 39 156
291 Local Strings 784 80 80
292 External Strings 864 144 144
293 File Tables 1008 2 144
295 External Symbols 1152 20 320
299 Name index = 1 Readin = No
300 Merge = No Endian = LITTLE
301 Debug level = G2 Language = C
304 Info Start Number Size Offset
305 ==== ===== ====== ==== ======
306 Local strings 0 15 15 784
307 Local symbols 0 6 72 436
308 Line numbers 0 13 13 380
309 Optimization symbols 0 0 0 0
310 Procedures 0 1 52 384
311 Auxiliary symbols 0 14 56 628
312 Relative Files 0 0 0 0
314 There are 6 local symbols, starting at 436
316 Symbol# 0: "hello2.c"
319 Storage class = Text Index = 6
320 Symbol type = File Value = 0
326 Storage class = Text Index = 12
327 Symbol type = Proc Value = 0
332 Storage class = Text Index = 4
333 Symbol type = Block Value = 8
338 Storage class = Text Index = 2
339 Symbol type = End Value = 28
344 Storage class = Text Index = 1
345 Symbol type = End Value = 52
347 Symbol# 5: "hello2.c"
350 Storage class = Text Index = 0
351 Symbol type = End Value = 0
353 There are 14 auxiliary table entries, starting at 628.
355 * #0 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
356 * #1 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
357 * #2 8, [ 8/ 0], [ 2 0:0 0:0:0:0:0:0]
358 * #3 16, [ 16/ 0], [ 4 0:0 0:0:0:0:0:0]
359 * #4 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
360 * #5 32, [ 32/ 0], [ 8 0:0 0:0:0:0:0:0]
361 * #6 40, [ 40/ 0], [10 0:0 0:0:0:0:0:0]
362 * #7 44, [ 44/ 0], [11 0:0 0:0:0:0:0:0]
363 * #8 12, [ 12/ 0], [ 3 0:0 0:0:0:0:0:0]
364 * #9 20, [ 20/ 0], [ 5 0:0 0:0:0:0:0:0]
365 * #10 28, [ 28/ 0], [ 7 0:0 0:0:0:0:0:0]
366 * #11 36, [ 36/ 0], [ 9 0:0 0:0:0:0:0:0]
367 #12 5, [ 5/ 0], [ 1 1:0 0:0:0:0:0:0]
368 #13 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
370 There are 1 procedure descriptor entries, starting at 0.
372 Procedure descriptor 0:
373 Name index = 10 Name = "main"
374 .mask 0x80000000,-4 .fmask 0x00000000,0
376 Opt. start = -1 Symbols start = 1
377 First line # = 3 Last line # = 6
378 Line Offset = 0 Address = 0x00000000
380 There are 4 bytes holding line numbers, starting at 380.
381 Line 3, delta 0, count 2
382 Line 4, delta 1, count 3
383 Line 5, delta 1, count 2
384 Line 6, delta 1, count 6
386 File #1, "/usr/include/stdio.h"
388 Name index = 1 Readin = No
389 Merge = Yes Endian = LITTLE
390 Debug level = G2 Language = C
393 Info Start Number Size Offset
394 ==== ===== ====== ==== ======
395 Local strings 15 65 65 799
396 Local symbols 6 10 120 508
397 Line numbers 0 0 0 380
398 Optimization symbols 0 0 0 0
400 Auxiliary symbols 14 25 100 684
401 Relative Files 0 0 0 0
403 There are 10 local symbols, starting at 442
405 Symbol# 0: "/usr/include/stdio.h"
408 Storage class = Text Index = 10
409 Symbol type = File Value = 0
414 Storage class = Info Index = 9
415 Symbol type = Block Value = 20
420 Storage class = Info Index = 4
421 Symbol type = Member Value = 0
426 Storage class = Info Index = 15
427 Symbol type = Member Value = 32
432 Storage class = Info Index = 16
433 Symbol type = Member Value = 64
438 Storage class = Info Index = 4
439 Symbol type = Member Value = 96
444 Storage class = Info Index = 3
445 Symbol type = Member Value = 128
450 Storage class = Info Index = 2
451 Symbol type = Member Value = 144
456 Storage class = Info Index = 1
457 Symbol type = End Value = 0
459 Symbol# 9: "/usr/include/stdio.h"
462 Storage class = Text Index = 0
463 Symbol type = End Value = 0
465 There are 25 auxiliary table entries, starting at 642.
467 * #14 -1, [4095/1048575], [63 1:1 f:f:f:f:f:f]
468 #15 65544, [ 8/ 16], [ 2 0:0 1:0:0:0:0:0]
469 #16 65544, [ 8/ 16], [ 2 0:0 1:0:0:0:0:0]
470 * #17 196656, [ 48/ 48], [12 0:0 3:0:0:0:0:0]
471 * #18 8191, [4095/ 1], [63 1:1 0:0:0:0:f:1]
472 * #19 1, [ 1/ 0], [ 0 1:0 0:0:0:0:0:0]
473 * #20 20479, [4095/ 4], [63 1:1 0:0:0:0:f:4]
474 * #21 1, [ 1/ 0], [ 0 1:0 0:0:0:0:0:0]
475 * #22 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
476 * #23 2, [ 2/ 0], [ 0 0:1 0:0:0:0:0:0]
477 * #24 160, [ 160/ 0], [40 0:0 0:0:0:0:0:0]
478 * #25 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
479 * #26 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
480 * #27 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
481 * #28 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
482 * #29 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
483 * #30 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
484 * #31 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
485 * #32 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
486 * #33 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
487 * #34 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
488 * #35 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
489 * #36 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
490 * #37 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
491 * #38 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
493 There are 0 procedure descriptor entries, starting at 1.
495 There are 20 external symbols, starting at 1152
498 Type = array [3 {160}] of struct _iobuf { ifd = 1, index = 1 }
499 String index = 0 Ifd = 1
500 Storage class = Nil Index = 17
501 Symbol type = Global Value = 60
504 String index = 5 Ifd = 1
505 Storage class = Nil Index = 1048575
506 Symbol type = Proc Value = 0
509 String index = 11 Ifd = 1
510 Storage class = Nil Index = 1048575
511 Symbol type = Proc Value = 0
514 String index = 18 Ifd = 1
515 Storage class = Nil Index = 1048575
516 Symbol type = Proc Value = 0
519 String index = 26 Ifd = 1
520 Storage class = Nil Index = 1048575
521 Symbol type = Proc Value = 0
524 String index = 32 Ifd = 1
525 Storage class = Nil Index = 1048575
526 Symbol type = Proc Value = 0
529 String index = 40 Ifd = 1
530 Storage class = Nil Index = 1048575
531 Symbol type = Proc Value = 0
534 String index = 46 Ifd = 1
535 Storage class = Nil Index = 1048575
536 Symbol type = Proc Value = 0
539 String index = 53 Ifd = 1
540 Storage class = Nil Index = 1048575
541 Symbol type = Proc Value = 0
543 Symbol# 9: "setbuffer"
544 String index = 60 Ifd = 1
545 Storage class = Nil Index = 1048575
546 Symbol type = Proc Value = 0
548 Symbol# 10: "setlinebuf"
549 String index = 70 Ifd = 1
550 Storage class = Nil Index = 1048575
551 Symbol type = Proc Value = 0
554 String index = 81 Ifd = 1
555 Storage class = Nil Index = 1048575
556 Symbol type = Proc Value = 0
559 String index = 87 Ifd = 1
560 Storage class = Nil Index = 1048575
561 Symbol type = Proc Value = 0
563 Symbol# 13: "ctermid"
564 String index = 92 Ifd = 1
565 Storage class = Nil Index = 1048575
566 Symbol type = Proc Value = 0
568 Symbol# 14: "cuserid"
569 String index = 100 Ifd = 1
570 Storage class = Nil Index = 1048575
571 Symbol type = Proc Value = 0
573 Symbol# 15: "tempnam"
574 String index = 108 Ifd = 1
575 Storage class = Nil Index = 1048575
576 Symbol type = Proc Value = 0
579 String index = 116 Ifd = 1
580 Storage class = Nil Index = 1048575
581 Symbol type = Proc Value = 0
583 Symbol# 17: "sprintf"
584 String index = 123 Ifd = 1
585 Storage class = Nil Index = 1048575
586 Symbol type = Proc Value = 0
590 String index = 131 Ifd = 0
591 Storage class = Text Index = 1
592 Symbol type = Proc Value = 0
595 String index = 136 Ifd = 0
596 Storage class = Undefined Index = 1048575
597 Symbol type = Proc Value = 0
599 The following auxiliary table entries were unused:
603 #3 16 0x00000010 short
605 #5 32 0x00000020 long
606 #6 40 0x00000028 float
607 #7 44 0x0000002c double
608 #8 12 0x0000000c unsigned char
609 #9 20 0x00000014 unsigned short
610 #10 28 0x0000001c unsigned int
611 #11 36 0x00000024 unsigned long
612 #14 0 0x00000000 void
613 #15 24 0x00000018 int
614 #19 32 0x00000020 long
615 #20 40 0x00000028 float
616 #21 44 0x0000002c double
617 #22 12 0x0000000c unsigned char
618 #23 20 0x00000014 unsigned short
619 #24 28 0x0000001c unsigned int
620 #25 36 0x00000024 unsigned long
621 #26 48 0x00000030 struct no name { ifd = -1, index = 1048575 }
624 /* Redefinition of of storage classes as an enumeration for better
628 sc_Nil
= scNil
, /* no storage class */
629 sc_Text
= scText
, /* text symbol */
630 sc_Data
= scData
, /* initialized data symbol */
631 sc_Bss
= scBss
, /* un-initialized data symbol */
632 sc_Register
= scRegister
, /* value of symbol is register number */
633 sc_Abs
= scAbs
, /* value of symbol is absolute */
634 sc_Undefined
= scUndefined
, /* who knows? */
635 sc_CdbLocal
= scCdbLocal
, /* variable's value is IN se->va.?? */
636 sc_Bits
= scBits
, /* this is a bit field */
637 sc_CdbSystem
= scCdbSystem
, /* value is IN CDB's address space */
638 sc_RegImage
= scRegImage
, /* register value saved on stack */
639 sc_Info
= scInfo
, /* symbol contains debugger information */
640 sc_UserStruct
= scUserStruct
, /* addr in struct user for current process */
641 sc_SData
= scSData
, /* load time only small data */
642 sc_SBss
= scSBss
, /* load time only small common */
643 sc_RData
= scRData
, /* load time only read only data */
644 sc_Var
= scVar
, /* Var parameter (fortran,pascal) */
645 sc_Common
= scCommon
, /* common variable */
646 sc_SCommon
= scSCommon
, /* small common */
647 sc_VarRegister
= scVarRegister
, /* Var parameter in a register */
648 sc_Variant
= scVariant
, /* Variant record */
649 sc_SUndefined
= scSUndefined
, /* small undefined(external) data */
650 sc_Init
= scInit
, /* .init section symbol */
651 sc_Max
= scMax
/* Max storage class+1 */
654 /* Redefinition of symbol type. */
657 st_Nil
= stNil
, /* Nuthin' special */
658 st_Global
= stGlobal
, /* external symbol */
659 st_Static
= stStatic
, /* static */
660 st_Param
= stParam
, /* procedure argument */
661 st_Local
= stLocal
, /* local variable */
662 st_Label
= stLabel
, /* label */
663 st_Proc
= stProc
, /* " " Procedure */
664 st_Block
= stBlock
, /* beginning of block */
665 st_End
= stEnd
, /* end (of anything) */
666 st_Member
= stMember
, /* member (of anything - struct/union/enum */
667 st_Typedef
= stTypedef
, /* type definition */
668 st_File
= stFile
, /* file name */
669 st_RegReloc
= stRegReloc
, /* register relocation */
670 st_Forward
= stForward
, /* forwarding address */
671 st_StaticProc
= stStaticProc
, /* load time only static procs */
672 st_Constant
= stConstant
, /* const */
673 st_Str
= stStr
, /* string */
674 st_Number
= stNumber
, /* pure number (ie. 4 NOR 2+2) */
675 st_Expr
= stExpr
, /* 2+2 vs. 4 */
676 st_Type
= stType
, /* post-coercion SER */
677 st_Max
= stMax
/* max type+1 */
680 /* Redefinition of type qualifiers. */
683 tq_Nil
= tqNil
, /* bt is what you see */
684 tq_Ptr
= tqPtr
, /* pointer */
685 tq_Proc
= tqProc
, /* procedure */
686 tq_Array
= tqArray
, /* duh */
687 tq_Far
= tqFar
, /* longer addressing - 8086/8 land */
688 tq_Vol
= tqVol
, /* volatile */
689 tq_Max
= tqMax
/* Max type qualifier+1 */
692 /* Redefinition of basic types. */
695 bt_Nil
= btNil
, /* undefined */
696 bt_Adr
= btAdr
, /* address - integer same size as pointer */
697 bt_Char
= btChar
, /* character */
698 bt_UChar
= btUChar
, /* unsigned character */
699 bt_Short
= btShort
, /* short */
700 bt_UShort
= btUShort
, /* unsigned short */
701 bt_Int
= btInt
, /* int */
702 bt_UInt
= btUInt
, /* unsigned int */
703 bt_Long
= btLong
, /* long */
704 bt_ULong
= btULong
, /* unsigned long */
705 bt_Float
= btFloat
, /* float (real) */
706 bt_Double
= btDouble
, /* Double (real) */
707 bt_Struct
= btStruct
, /* Structure (Record) */
708 bt_Union
= btUnion
, /* Union (variant) */
709 bt_Enum
= btEnum
, /* Enumerated */
710 bt_Typedef
= btTypedef
, /* defined via a typedef, isymRef points */
711 bt_Range
= btRange
, /* subrange of int */
712 bt_Set
= btSet
, /* pascal sets */
713 bt_Complex
= btComplex
, /* fortran complex */
714 bt_DComplex
= btDComplex
, /* fortran double complex */
715 bt_Indirect
= btIndirect
, /* forward or unnamed typedef */
716 bt_FixedDec
= btFixedDec
, /* Fixed Decimal */
717 bt_FloatDec
= btFloatDec
, /* Float Decimal */
718 bt_String
= btString
, /* Varying Length Character String */
719 bt_Bit
= btBit
, /* Aligned Bit String */
720 bt_Picture
= btPicture
, /* Picture */
721 bt_Void
= btVoid
, /* Void */
722 bt_Max
= btMax
/* Max basic type+1 */
727 /* States for whether to hash type or not. */
728 typedef enum hash_state
{
729 hash_no
= 0, /* Don't hash type */
730 hash_yes
= 1, /* OK to hash type, or use previous hash */
731 hash_record
= 2 /* OK to record hash, but don't use prev. */
734 /* Types of different sized allocation requests. */
736 alloc_type_none
, /* dummy value */
737 alloc_type_scope
, /* nested scopes linked list */
738 alloc_type_vlinks
, /* glue linking pages in varray */
739 alloc_type_shash
, /* string hash element */
740 alloc_type_thash
, /* type hash element */
741 alloc_type_tag
, /* struct/union/tag element */
742 alloc_type_forward
, /* element to hold unknown tag */
743 alloc_type_thead
, /* head of type hash list */
744 alloc_type_varray
, /* general varray allocation */
745 alloc_type_lineno
, /* line number list */
746 alloc_type_last
/* last+1 element for array bounds */
749 /* Types of auxiliary type information. */
751 aux_tir
, /* TIR type information */
752 aux_rndx
, /* relative index into symbol table */
753 aux_dnLow
, /* low dimension */
754 aux_dnHigh
, /* high dimension */
755 aux_isym
, /* symbol table index (end of proc) */
756 aux_iss
, /* index into string space (not used) */
757 aux_width
, /* width for non-default sized struc fields */
758 aux_count
/* count of ranges for variant arm */
761 /* Structures to provide n-number of virtual arrays, each of which can
762 grow linearly, and which are written in the object file as
763 sequential pages. On systems with a BSD malloc, the
764 MAX_CLUSTER_PAGES should be 1 less than a power of two, since
765 malloc adds it's overhead, and rounds up to the next power of 2.
766 Pages are linked together via a linked list.
768 If PAGE_SIZE is > 4096, the string length in the shash_t structure
769 can't be represented (assuming there are strings > 4096 bytes). */
771 /* FIXME: Yes, there can be such strings while emitting C++ class debug
772 info. Templates are the offender here, the test case in question
773 having a mangled class name of
775 t7rb_tree4Z4xkeyZt4pair2ZC4xkeyZt7xsocket1Z4UserZt9select1st2Zt4pair\
776 2ZC4xkeyZt7xsocket1Z4UserZ4xkeyZt4less1Z4xkey
778 Repeat that a couple dozen times while listing the class members and
779 you've got strings over 4k. Hack around this for now by increasing
780 the page size. A proper solution would abandon this structure scheme
781 certainly for very large strings, and possibly entirely. */
784 #define PAGE_SIZE (8*1024) /* size of varray pages */
787 #define PAGE_USIZE ((unsigned long) PAGE_SIZE)
789 #ifndef MAX_CLUSTER_PAGES /* # pages to get from system */
790 #define MAX_CLUSTER_PAGES 63
793 /* Linked list connecting separate page allocations. */
794 typedef struct vlinks
{
795 struct vlinks
*prev
; /* previous set of pages */
796 struct vlinks
*next
; /* next set of pages */
797 union page
*datum
; /* start of page */
798 unsigned long start_index
; /* starting index # of page */
801 /* Virtual array header. */
802 typedef struct varray
{
803 vlinks_t
*first
; /* first page link */
804 vlinks_t
*last
; /* last page link */
805 unsigned long num_allocated
; /* # objects allocated */
806 unsigned short object_size
; /* size in bytes of each object */
807 unsigned short objects_per_page
; /* # objects that can fit on a page */
808 unsigned short objects_last_page
; /* # objects allocated on last page */
812 #define OBJECTS_PER_PAGE(type) (PAGE_SIZE / sizeof (type))
814 #define OBJECTS_PER_PAGE(type) ((sizeof (type) > 1) ? 1 : PAGE_SIZE)
817 #define INIT_VARRAY(type) { /* macro to initialize a varray */ \
818 (vlinks_t *)0, /* first */ \
819 (vlinks_t *)0, /* last */ \
820 0, /* num_allocated */ \
821 sizeof (type), /* object_size */ \
822 OBJECTS_PER_PAGE (type), /* objects_per_page */ \
823 OBJECTS_PER_PAGE (type), /* objects_last_page */ \
826 /* Master type for indexes within the symbol table. */
827 typedef unsigned long symint_t
;
829 /* Linked list support for nested scopes (file, block, structure, etc.). */
830 typedef struct scope
{
831 struct scope
*prev
; /* previous scope level */
832 struct scope
*free
; /* free list pointer */
833 struct localsym
*lsym
; /* pointer to local symbol node */
834 st_t type
; /* type of the node */
837 /* For a local symbol we store a gas symbol as well as the debugging
838 information we generate. The gas symbol will be NULL if this is
839 only a debugging symbol. */
840 typedef struct localsym
{
841 const char *name
; /* symbol name */
842 symbolS
*as_sym
; /* symbol as seen by gas */
843 bfd_vma addend
; /* addend to as_sym value */
844 struct efdr
*file_ptr
; /* file pointer */
845 struct ecoff_proc
*proc_ptr
; /* proc pointer */
846 struct localsym
*begin_ptr
; /* symbol at start of block */
847 struct ecoff_aux
*index_ptr
; /* index value to be filled in */
848 struct forward
*forward_ref
; /* forward references to this symbol */
849 long sym_index
; /* final symbol index */
850 EXTR ecoff_sym
; /* ECOFF debugging symbol */
853 /* For aux information we keep the type and the data. */
854 typedef struct ecoff_aux
{
855 enum aux_type type
; /* aux type */
856 AUXU data
; /* aux data */
859 /* For a procedure we store the gas symbol as well as the PDR
860 debugging information. */
861 typedef struct ecoff_proc
{
862 localsym_t
*sym
; /* associated symbol */
863 PDR pdr
; /* ECOFF debugging info */
866 /* Number of proc_t structures allocated. */
867 static unsigned long proc_cnt
;
869 /* Forward reference list for tags referenced, but not yet defined. */
870 typedef struct forward
{
871 struct forward
*next
; /* next forward reference */
872 struct forward
*free
; /* free list pointer */
873 aux_t
*ifd_ptr
; /* pointer to store file index */
874 aux_t
*index_ptr
; /* pointer to store symbol index */
877 /* Linked list support for tags. The first tag in the list is always
878 the current tag for that block. */
880 struct tag
*free
; /* free list pointer */
881 struct shash
*hash_ptr
; /* pointer to the hash table head */
882 struct tag
*same_name
; /* tag with same name in outer scope */
883 struct tag
*same_block
; /* next tag defined in the same block. */
884 struct forward
*forward_ref
; /* list of forward references */
885 bt_t basic_type
; /* bt_Struct, bt_Union, or bt_Enum */
886 symint_t ifd
; /* file # tag defined in */
887 localsym_t
*sym
; /* file's local symbols */
890 /* Head of a block's linked list of tags. */
891 typedef struct thead
{
892 struct thead
*prev
; /* previous block */
893 struct thead
*free
; /* free list pointer */
894 struct tag
*first_tag
; /* first tag in block defined */
897 /* Union containing pointers to each the small structures which are freed up. */
898 typedef union small_free
{
899 scope_t
*f_scope
; /* scope structure */
900 thead_t
*f_thead
; /* tag head structure */
901 tag_t
*f_tag
; /* tag element structure */
902 forward_t
*f_forward
; /* forward tag reference */
905 /* String hash table entry. */
907 typedef struct shash
{
908 char *string
; /* string we are hashing */
909 symint_t indx
; /* index within string table */
910 EXTR
*esym_ptr
; /* global symbol pointer */
911 localsym_t
*sym_ptr
; /* local symbol pointer */
912 localsym_t
*end_ptr
; /* symbol pointer to end block */
913 tag_t
*tag_ptr
; /* tag pointer */
914 proc_t
*proc_ptr
; /* procedure descriptor pointer */
917 /* Type hash table support. The size of the hash table must fit
918 within a page with the other extended file descriptor information.
919 Because unique types which are hashed are fewer in number than
920 strings, we use a smaller hash value. */
925 #define THASH_SIZE 113
928 typedef struct thash
{
929 struct thash
*next
; /* next hash value */
930 AUXU type
; /* type we are hashing */
931 symint_t indx
; /* index within string table */
934 /* Extended file descriptor that contains all of the support necessary
935 to add things to each file separately. */
936 typedef struct efdr
{
937 FDR fdr
; /* File header to be written out */
938 FDR
*orig_fdr
; /* original file header */
939 char *name
; /* filename */
940 int fake
; /* whether this is faked .file */
941 symint_t void_type
; /* aux. pointer to 'void' type */
942 symint_t int_type
; /* aux. pointer to 'int' type */
943 scope_t
*cur_scope
; /* current nested scopes */
944 symint_t file_index
; /* current file number */
945 int nested_scopes
; /* # nested scopes */
946 varray_t strings
; /* local strings */
947 varray_t symbols
; /* local symbols */
948 varray_t procs
; /* procedures */
949 varray_t aux_syms
; /* auxiliary symbols */
950 struct efdr
*next_file
; /* next file descriptor */
951 /* string/type hash tables */
952 struct hash_control
*str_hash
; /* string hash table */
953 thash_t
*thash_head
[THASH_SIZE
];
956 /* Pre-initialized extended file structure. */
957 static const efdr_t init_file
= {
958 { /* FDR structure */
959 0, /* adr: memory address of beginning of file */
960 0, /* rss: file name (of source, if known) */
961 0, /* issBase: file's string space */
962 0, /* cbSs: number of bytes in the ss */
963 0, /* isymBase: beginning of symbols */
964 0, /* csym: count file's of symbols */
965 0, /* ilineBase: file's line symbols */
966 0, /* cline: count of file's line symbols */
967 0, /* ioptBase: file's optimization entries */
968 0, /* copt: count of file's optimization entries */
969 0, /* ipdFirst: start of procedures for this file */
970 0, /* cpd: count of procedures for this file */
971 0, /* iauxBase: file's auxiliary entries */
972 0, /* caux: count of file's auxiliary entries */
973 0, /* rfdBase: index into the file indirect table */
974 0, /* crfd: count file indirect entries */
975 langC
, /* lang: language for this file */
976 1, /* fMerge: whether this file can be merged */
977 0, /* fReadin: true if read in (not just created) */
978 TARGET_BYTES_BIG_ENDIAN
, /* fBigendian: if 1, compiled on big endian machine */
979 GLEVEL_2
, /* glevel: level this file was compiled with */
980 0, /* reserved: reserved for future use */
981 0, /* cbLineOffset: byte offset from header for this file ln's */
982 0, /* cbLine: size of lines for this file */
985 (FDR
*)0, /* orig_fdr: original file header pointer */
986 (char *)0, /* name: pointer to filename */
987 0, /* fake: whether this is a faked .file */
988 0, /* void_type: ptr to aux node for void type */
989 0, /* int_type: ptr to aux node for int type */
990 (scope_t
*)0, /* cur_scope: current scope being processed */
991 0, /* file_index: current file # */
992 0, /* nested_scopes: # nested scopes */
993 INIT_VARRAY (char), /* strings: local string varray */
994 INIT_VARRAY (localsym_t
), /* symbols: local symbols varray */
995 INIT_VARRAY (proc_t
), /* procs: procedure varray */
996 INIT_VARRAY (aux_t
), /* aux_syms: auxiliary symbols varray */
998 (struct efdr
*)0, /* next_file: next file structure */
1000 (struct hash_control
*)0, /* str_hash: string hash table */
1001 { 0 }, /* thash_head: type hash table */
1004 static efdr_t
*first_file
; /* first file descriptor */
1005 static efdr_t
**last_file_ptr
= &first_file
; /* file descriptor tail */
1007 /* Line number information is kept in a list until the assembly is
1009 typedef struct lineno_list
{
1010 struct lineno_list
*next
; /* next element in list */
1011 efdr_t
*file
; /* file this line is in */
1012 proc_t
*proc
; /* procedure this line is in */
1013 fragS
*frag
; /* fragment this line number is in */
1014 unsigned long paddr
; /* offset within fragment */
1015 long lineno
; /* actual line number */
1018 static lineno_list_t
*first_lineno
;
1019 static lineno_list_t
*last_lineno
;
1020 static lineno_list_t
**last_lineno_ptr
= &first_lineno
;
1022 /* Sometimes there will be some .loc statements before a .ent. We
1023 keep them in this list so that we can fill in the procedure pointer
1024 after we see the .ent. */
1025 static lineno_list_t
*noproc_lineno
;
1027 /* Union of various things that are held in pages. */
1028 typedef union page
{
1029 char byte
[ PAGE_SIZE
];
1030 unsigned char ubyte
[ PAGE_SIZE
];
1031 efdr_t file
[ PAGE_SIZE
/ sizeof (efdr_t
) ];
1032 FDR ofile
[ PAGE_SIZE
/ sizeof (FDR
) ];
1033 proc_t proc
[ PAGE_SIZE
/ sizeof (proc_t
) ];
1034 localsym_t sym
[ PAGE_SIZE
/ sizeof (localsym_t
) ];
1035 aux_t aux
[ PAGE_SIZE
/ sizeof (aux_t
) ];
1036 DNR dense
[ PAGE_SIZE
/ sizeof (DNR
) ];
1037 scope_t scope
[ PAGE_SIZE
/ sizeof (scope_t
) ];
1038 vlinks_t vlinks
[ PAGE_SIZE
/ sizeof (vlinks_t
) ];
1039 shash_t shash
[ PAGE_SIZE
/ sizeof (shash_t
) ];
1040 thash_t thash
[ PAGE_SIZE
/ sizeof (thash_t
) ];
1041 tag_t tag
[ PAGE_SIZE
/ sizeof (tag_t
) ];
1042 forward_t forward
[ PAGE_SIZE
/ sizeof (forward_t
) ];
1043 thead_t thead
[ PAGE_SIZE
/ sizeof (thead_t
) ];
1044 lineno_list_t lineno
[ PAGE_SIZE
/ sizeof (lineno_list_t
) ];
1047 /* Structure holding allocation information for small sized structures. */
1048 typedef struct alloc_info
{
1049 char *alloc_name
; /* name of this allocation type (must be first) */
1050 page_type
*cur_page
; /* current page being allocated from */
1051 small_free_t free_list
; /* current free list if any */
1052 int unallocated
; /* number of elements unallocated on page */
1053 int total_alloc
; /* total number of allocations */
1054 int total_free
; /* total number of frees */
1055 int total_pages
; /* total number of pages allocated */
1058 /* Type information collected together. */
1059 typedef struct type_info
{
1060 bt_t basic_type
; /* basic type */
1061 int orig_type
; /* original COFF-based type */
1062 int num_tq
; /* # type qualifiers */
1063 int num_dims
; /* # dimensions */
1064 int num_sizes
; /* # sizes */
1065 int extra_sizes
; /* # extra sizes not tied with dims */
1066 tag_t
* tag_ptr
; /* tag pointer */
1067 int bitfield
; /* symbol is a bitfield */
1068 tq_t type_qualifiers
[N_TQ
]; /* type qualifiers (ptr, func, array)*/
1069 symint_t dimensions
[N_TQ
]; /* dimensions for each array */
1070 symint_t sizes
[N_TQ
+2]; /* sizes of each array slice + size of
1071 struct/union/enum + bitfield size */
1074 /* Pre-initialized type_info struct. */
1075 static const type_info_t type_info_init
= {
1076 bt_Nil
, /* basic type */
1077 T_NULL
, /* original COFF-based type */
1078 0, /* # type qualifiers */
1079 0, /* # dimensions */
1081 0, /* sizes not tied with dims */
1082 NULL
, /* ptr to tag */
1084 { /* type qualifiers */
1112 /* Global hash table for the tags table and global table for file
1115 static varray_t file_desc
= INIT_VARRAY (efdr_t
);
1117 static struct hash_control
*tag_hash
;
1119 /* Static types for int and void. Also, remember the last function's
1120 type (which is set up when we encounter the declaration for the
1121 function, and used when the end block for the function is emitted. */
1123 static type_info_t int_type_info
;
1124 static type_info_t void_type_info
;
1125 static type_info_t last_func_type_info
;
1126 static symbolS
*last_func_sym_value
;
1128 /* Convert COFF basic type to ECOFF basic type. The T_NULL type
1129 really should use bt_Void, but this causes the current ecoff GDB to
1130 issue unsupported type messages, and the Ultrix 4.00 dbx (aka MIPS
1131 2.0) doesn't understand it, even though the compiler generates it.
1132 Maybe this will be fixed in 2.10 or 2.20 of the MIPS compiler
1133 suite, but for now go with what works.
1135 It would make sense for the .type and .scl directives to use the
1136 ECOFF numbers directly, rather than using the COFF numbers and
1137 mapping them. Unfortunately, this is historically what mips-tfile
1138 expects, and changing gcc now would be a considerable pain (the
1139 native compiler generates debugging information internally, rather
1140 than via the assembler, so it will never use .type or .scl). */
1142 static const bt_t map_coff_types
[] = {
1143 bt_Nil
, /* T_NULL */
1145 bt_Char
, /* T_CHAR */
1146 bt_Short
, /* T_SHORT */
1148 bt_Long
, /* T_LONG */
1149 bt_Float
, /* T_FLOAT */
1150 bt_Double
, /* T_DOUBLE */
1151 bt_Struct
, /* T_STRUCT */
1152 bt_Union
, /* T_UNION */
1153 bt_Enum
, /* T_ENUM */
1154 bt_Enum
, /* T_MOE */
1155 bt_UChar
, /* T_UCHAR */
1156 bt_UShort
, /* T_USHORT */
1157 bt_UInt
, /* T_UINT */
1158 bt_ULong
/* T_ULONG */
1161 /* Convert COFF storage class to ECOFF storage class. */
1162 static const sc_t map_coff_storage
[] = {
1163 sc_Nil
, /* 0: C_NULL */
1164 sc_Abs
, /* 1: C_AUTO auto var */
1165 sc_Undefined
, /* 2: C_EXT external */
1166 sc_Data
, /* 3: C_STAT static */
1167 sc_Register
, /* 4: C_REG register */
1168 sc_Undefined
, /* 5: C_EXTDEF ??? */
1169 sc_Text
, /* 6: C_LABEL label */
1170 sc_Text
, /* 7: C_ULABEL user label */
1171 sc_Info
, /* 8: C_MOS member of struct */
1172 sc_Abs
, /* 9: C_ARG argument */
1173 sc_Info
, /* 10: C_STRTAG struct tag */
1174 sc_Info
, /* 11: C_MOU member of union */
1175 sc_Info
, /* 12: C_UNTAG union tag */
1176 sc_Info
, /* 13: C_TPDEF typedef */
1177 sc_Data
, /* 14: C_USTATIC ??? */
1178 sc_Info
, /* 15: C_ENTAG enum tag */
1179 sc_Info
, /* 16: C_MOE member of enum */
1180 sc_Register
, /* 17: C_REGPARM register parameter */
1181 sc_Bits
, /* 18; C_FIELD bitfield */
1263 sc_Text
, /* 100: C_BLOCK block start/end */
1264 sc_Text
, /* 101: C_FCN function start/end */
1265 sc_Info
, /* 102: C_EOS end of struct/union/enum */
1266 sc_Nil
, /* 103: C_FILE file start */
1267 sc_Nil
, /* 104: C_LINE line number */
1268 sc_Nil
, /* 105: C_ALIAS combined type info */
1269 sc_Nil
, /* 106: C_HIDDEN ??? */
1272 /* Convert COFF storage class to ECOFF symbol type. */
1273 static const st_t map_coff_sym_type
[] = {
1274 st_Nil
, /* 0: C_NULL */
1275 st_Local
, /* 1: C_AUTO auto var */
1276 st_Global
, /* 2: C_EXT external */
1277 st_Static
, /* 3: C_STAT static */
1278 st_Local
, /* 4: C_REG register */
1279 st_Global
, /* 5: C_EXTDEF ??? */
1280 st_Label
, /* 6: C_LABEL label */
1281 st_Label
, /* 7: C_ULABEL user label */
1282 st_Member
, /* 8: C_MOS member of struct */
1283 st_Param
, /* 9: C_ARG argument */
1284 st_Block
, /* 10: C_STRTAG struct tag */
1285 st_Member
, /* 11: C_MOU member of union */
1286 st_Block
, /* 12: C_UNTAG union tag */
1287 st_Typedef
, /* 13: C_TPDEF typedef */
1288 st_Static
, /* 14: C_USTATIC ??? */
1289 st_Block
, /* 15: C_ENTAG enum tag */
1290 st_Member
, /* 16: C_MOE member of enum */
1291 st_Param
, /* 17: C_REGPARM register parameter */
1292 st_Member
, /* 18; C_FIELD bitfield */
1374 st_Block
, /* 100: C_BLOCK block start/end */
1375 st_Proc
, /* 101: C_FCN function start/end */
1376 st_End
, /* 102: C_EOS end of struct/union/enum */
1377 st_File
, /* 103: C_FILE file start */
1378 st_Nil
, /* 104: C_LINE line number */
1379 st_Nil
, /* 105: C_ALIAS combined type info */
1380 st_Nil
, /* 106: C_HIDDEN ??? */
1383 /* Keep track of different sized allocation requests. */
1384 static alloc_info_t alloc_counts
[(int) alloc_type_last
];
1386 /* Record whether we have seen any debugging information. */
1387 int ecoff_debugging_seen
= 0;
1389 /* Various statics. */
1390 static efdr_t
*cur_file_ptr
= (efdr_t
*) 0; /* current file desc. header */
1391 static proc_t
*cur_proc_ptr
= (proc_t
*) 0; /* current procedure header */
1392 static proc_t
*first_proc_ptr
= (proc_t
*) 0; /* first procedure header */
1393 static thead_t
*top_tag_head
= (thead_t
*) 0; /* top level tag head */
1394 static thead_t
*cur_tag_head
= (thead_t
*) 0; /* current tag head */
1396 static int debug
= 0; /* trace functions */
1398 static int stabs_seen
= 0; /* != 0 if stabs have been seen */
1400 static int current_file_idx
;
1401 static const char *current_stabs_filename
;
1403 /* Pseudo symbol to use when putting stabs into the symbol table. */
1404 #ifndef STABS_SYMBOL
1405 #define STABS_SYMBOL "@stabs"
1408 static char stabs_symbol
[] = STABS_SYMBOL
;
1410 /* Prototypes for functions defined in this file. */
1412 static void add_varray_page (varray_t
*vp
);
1413 static symint_t
add_string (varray_t
*vp
,
1414 struct hash_control
*hash_tbl
,
1416 shash_t
**ret_hash
);
1417 static localsym_t
*add_ecoff_symbol (const char *str
, st_t type
,
1418 sc_t storage
, symbolS
*sym
,
1419 bfd_vma addend
, symint_t value
,
1421 static symint_t
add_aux_sym_symint (symint_t aux_word
);
1422 static symint_t
add_aux_sym_rndx (int file_index
, symint_t sym_index
);
1423 static symint_t
add_aux_sym_tir (type_info_t
*t
,
1425 thash_t
**hash_tbl
);
1426 static tag_t
*get_tag (const char *tag
, localsym_t
*sym
, bt_t basic_type
);
1427 static void add_unknown_tag (tag_t
*ptag
);
1428 static void add_procedure (char *func
);
1429 static void add_file (const char *file_name
, int indx
, int fake
);
1431 static char *sc_to_string (sc_t storage_class
);
1432 static char *st_to_string (st_t symbol_type
);
1434 static void mark_stabs (int);
1435 static char *ecoff_add_bytes (char **buf
, char **bufend
,
1436 char *bufptr
, unsigned long need
);
1437 static unsigned long ecoff_padding_adjust
1438 (const struct ecoff_debug_swap
*backend
, char **buf
, char **bufend
,
1439 unsigned long offset
, char **bufptrptr
);
1440 static unsigned long ecoff_build_lineno
1441 (const struct ecoff_debug_swap
*backend
, char **buf
, char **bufend
,
1442 unsigned long offset
, long *linecntptr
);
1443 static unsigned long ecoff_build_symbols
1444 (const struct ecoff_debug_swap
*backend
, char **buf
, char **bufend
,
1445 unsigned long offset
);
1446 static unsigned long ecoff_build_procs
1447 (const struct ecoff_debug_swap
*backend
, char **buf
, char **bufend
,
1448 unsigned long offset
);
1449 static unsigned long ecoff_build_aux
1450 (const struct ecoff_debug_swap
*backend
, char **buf
, char **bufend
,
1451 unsigned long offset
);
1452 static unsigned long ecoff_build_strings (char **buf
, char **bufend
,
1453 unsigned long offset
,
1455 static unsigned long ecoff_build_ss
1456 (const struct ecoff_debug_swap
*backend
, char **buf
, char **bufend
,
1457 unsigned long offset
);
1458 static unsigned long ecoff_build_fdr
1459 (const struct ecoff_debug_swap
*backend
, char **buf
, char **bufend
,
1460 unsigned long offset
);
1461 static void ecoff_setup_ext (void);
1462 static page_type
*allocate_cluster (unsigned long npages
);
1463 static page_type
*allocate_page (void);
1464 static scope_t
*allocate_scope (void);
1465 static void free_scope (scope_t
*ptr
);
1466 static vlinks_t
*allocate_vlinks (void);
1467 static shash_t
*allocate_shash (void);
1468 static thash_t
*allocate_thash (void);
1469 static tag_t
*allocate_tag (void);
1470 static void free_tag (tag_t
*ptr
);
1471 static forward_t
*allocate_forward (void);
1472 static thead_t
*allocate_thead (void);
1473 static void free_thead (thead_t
*ptr
);
1474 static lineno_list_t
*allocate_lineno_list (void);
1476 /* This function should be called when the assembler starts up. */
1479 ecoff_read_begin_hook (void)
1481 tag_hash
= hash_new ();
1482 top_tag_head
= allocate_thead ();
1483 top_tag_head
->first_tag
= (tag_t
*) NULL
;
1484 top_tag_head
->free
= (thead_t
*) NULL
;
1485 top_tag_head
->prev
= cur_tag_head
;
1486 cur_tag_head
= top_tag_head
;
1489 /* This function should be called when a symbol is created. */
1492 ecoff_symbol_new_hook (symbolS
*symbolP
)
1494 OBJ_SYMFIELD_TYPE
*obj
;
1496 /* Make sure that we have a file pointer, but only if we have seen a
1497 file. If we haven't seen a file, then this is a probably special
1498 symbol created by md_begin which may required special handling at
1499 some point. Creating a dummy file with a dummy name is certainly
1501 if (cur_file_ptr
== (efdr_t
*) NULL
1502 && seen_at_least_1_file ())
1503 add_file ((const char *) NULL
, 0, 1);
1504 obj
= symbol_get_obj (symbolP
);
1505 obj
->ecoff_file
= cur_file_ptr
;
1506 obj
->ecoff_symbol
= NULL
;
1507 obj
->ecoff_extern_size
= 0;
1510 /* Add a page to a varray object. */
1513 add_varray_page (varray_t
*vp
/* varray to add page to */)
1515 vlinks_t
*new_links
= allocate_vlinks ();
1518 if (vp
->object_size
> 1)
1519 new_links
->datum
= (page_type
*) xcalloc (1, vp
->object_size
);
1522 new_links
->datum
= allocate_page ();
1524 alloc_counts
[(int) alloc_type_varray
].total_alloc
++;
1525 alloc_counts
[(int) alloc_type_varray
].total_pages
++;
1527 new_links
->start_index
= vp
->num_allocated
;
1528 vp
->objects_last_page
= 0;
1530 if (vp
->first
== (vlinks_t
*) NULL
) /* first allocation? */
1531 vp
->first
= vp
->last
= new_links
;
1533 { /* 2nd or greater allocation */
1534 new_links
->prev
= vp
->last
;
1535 vp
->last
->next
= new_links
;
1536 vp
->last
= new_links
;
1540 /* Add a string (and null pad) to one of the string tables. */
1543 add_string (varray_t
*vp
, /* string obstack */
1544 struct hash_control
*hash_tbl
, /* ptr to hash table */
1545 const char *str
, /* string */
1546 shash_t
**ret_hash
/* return hash pointer */)
1548 register unsigned long len
= strlen (str
);
1549 register shash_t
*hash_ptr
;
1551 if (len
>= PAGE_USIZE
)
1552 as_fatal (_("string too big (%lu bytes)"), len
);
1554 hash_ptr
= (shash_t
*) hash_find (hash_tbl
, str
);
1555 if (hash_ptr
== (shash_t
*) NULL
)
1557 register const char *err
;
1559 if (vp
->objects_last_page
+ len
>= PAGE_USIZE
)
1562 ((vp
->num_allocated
+ PAGE_USIZE
- 1) / PAGE_USIZE
) * PAGE_USIZE
;
1563 add_varray_page (vp
);
1566 hash_ptr
= allocate_shash ();
1567 hash_ptr
->indx
= vp
->num_allocated
;
1569 hash_ptr
->string
= &vp
->last
->datum
->byte
[vp
->objects_last_page
];
1571 vp
->objects_last_page
+= len
+ 1;
1572 vp
->num_allocated
+= len
+ 1;
1574 strcpy (hash_ptr
->string
, str
);
1576 err
= hash_insert (hash_tbl
, str
, (char *) hash_ptr
);
1578 as_fatal (_("inserting \"%s\" into string hash table: %s"),
1582 if (ret_hash
!= (shash_t
**) NULL
)
1583 *ret_hash
= hash_ptr
;
1585 return hash_ptr
->indx
;
1588 /* Add debugging information for a symbol. */
1591 add_ecoff_symbol (const char *str
, /* symbol name */
1592 st_t type
, /* symbol type */
1593 sc_t storage
, /* storage class */
1594 symbolS
*sym_value
, /* associated symbol. */
1595 bfd_vma addend
, /* addend to sym_value. */
1596 symint_t value
, /* value of symbol */
1597 symint_t indx
/* index to local/aux. syms */)
1600 register scope_t
*pscope
;
1601 register thead_t
*ptag_head
;
1602 register tag_t
*ptag
;
1603 register tag_t
*ptag_next
;
1604 register varray_t
*vp
;
1605 register int scope_delta
= 0;
1606 shash_t
*hash_ptr
= (shash_t
*) NULL
;
1608 if (cur_file_ptr
== (efdr_t
*) NULL
)
1609 as_fatal (_("no current file pointer"));
1611 vp
= &cur_file_ptr
->symbols
;
1613 if (vp
->objects_last_page
== vp
->objects_per_page
)
1614 add_varray_page (vp
);
1616 psym
= &vp
->last
->datum
->sym
[vp
->objects_last_page
++];
1618 if (str
== (const char *) NULL
&& sym_value
!= (symbolS
*) NULL
)
1619 psym
->name
= S_GET_NAME (sym_value
);
1622 psym
->as_sym
= sym_value
;
1623 if (sym_value
!= (symbolS
*) NULL
)
1624 symbol_get_obj (sym_value
)->ecoff_symbol
= psym
;
1625 psym
->addend
= addend
;
1626 psym
->file_ptr
= cur_file_ptr
;
1627 psym
->proc_ptr
= cur_proc_ptr
;
1628 psym
->begin_ptr
= (localsym_t
*) NULL
;
1629 psym
->index_ptr
= (aux_t
*) NULL
;
1630 psym
->forward_ref
= (forward_t
*) NULL
;
1631 psym
->sym_index
= -1;
1632 memset (&psym
->ecoff_sym
, 0, sizeof (EXTR
));
1633 psym
->ecoff_sym
.asym
.value
= value
;
1634 psym
->ecoff_sym
.asym
.st
= (unsigned) type
;
1635 psym
->ecoff_sym
.asym
.sc
= (unsigned) storage
;
1636 psym
->ecoff_sym
.asym
.index
= indx
;
1638 /* If there is an associated symbol, we wait until the end of the
1639 assembly before deciding where to put the name (it may be just an
1640 external symbol). Otherwise, this is just a debugging symbol and
1641 the name should go with the current file. */
1642 if (sym_value
== (symbolS
*) NULL
)
1643 psym
->ecoff_sym
.asym
.iss
= ((str
== (const char *) NULL
)
1645 : add_string (&cur_file_ptr
->strings
,
1646 cur_file_ptr
->str_hash
,
1650 ++vp
->num_allocated
;
1652 if (ECOFF_IS_STAB (&psym
->ecoff_sym
.asym
))
1655 /* Save the symbol within the hash table if this is a static
1656 item, and it has a name. */
1657 if (hash_ptr
!= (shash_t
*) NULL
1658 && (type
== st_Global
|| type
== st_Static
|| type
== st_Label
1659 || type
== st_Proc
|| type
== st_StaticProc
))
1660 hash_ptr
->sym_ptr
= psym
;
1662 /* push or pop a scope if appropriate. */
1668 case st_File
: /* beginning of file */
1669 case st_Proc
: /* procedure */
1670 case st_StaticProc
: /* static procedure */
1671 case st_Block
: /* begin scope */
1672 pscope
= allocate_scope ();
1673 pscope
->prev
= cur_file_ptr
->cur_scope
;
1674 pscope
->lsym
= psym
;
1675 pscope
->type
= type
;
1676 cur_file_ptr
->cur_scope
= pscope
;
1678 if (type
!= st_File
)
1681 /* For every block type except file, struct, union, or
1682 enumeration blocks, push a level on the tag stack. We omit
1683 file types, so that tags can span file boundaries. */
1684 if (type
!= st_File
&& storage
!= sc_Info
)
1686 ptag_head
= allocate_thead ();
1687 ptag_head
->first_tag
= 0;
1688 ptag_head
->prev
= cur_tag_head
;
1689 cur_tag_head
= ptag_head
;
1694 pscope
= cur_file_ptr
->cur_scope
;
1695 if (pscope
== (scope_t
*) NULL
)
1696 as_fatal (_("too many st_End's"));
1699 st_t begin_type
= (st_t
) pscope
->lsym
->ecoff_sym
.asym
.st
;
1701 psym
->begin_ptr
= pscope
->lsym
;
1703 if (begin_type
!= st_File
)
1706 /* Except for file, structure, union, or enumeration end
1707 blocks remove all tags created within this scope. */
1708 if (begin_type
!= st_File
&& storage
!= sc_Info
)
1710 ptag_head
= cur_tag_head
;
1711 cur_tag_head
= ptag_head
->prev
;
1713 for (ptag
= ptag_head
->first_tag
;
1714 ptag
!= (tag_t
*) NULL
;
1717 if (ptag
->forward_ref
!= (forward_t
*) NULL
)
1718 add_unknown_tag (ptag
);
1720 ptag_next
= ptag
->same_block
;
1721 ptag
->hash_ptr
->tag_ptr
= ptag
->same_name
;
1725 free_thead (ptag_head
);
1728 cur_file_ptr
->cur_scope
= pscope
->prev
;
1730 /* block begin gets next sym #. This is set when we know
1731 the symbol index value. */
1733 /* Functions push two or more aux words as follows:
1734 1st word: index+1 of the end symbol (filled in later).
1735 2nd word: type of the function (plus any aux words needed).
1736 Also, tie the external pointer back to the function begin symbol. */
1737 if (begin_type
!= st_File
&& begin_type
!= st_Block
)
1740 varray_t
*svp
= &cur_file_ptr
->aux_syms
;
1742 pscope
->lsym
->ecoff_sym
.asym
.index
= add_aux_sym_symint (0);
1743 pscope
->lsym
->index_ptr
=
1744 &svp
->last
->datum
->aux
[svp
->objects_last_page
- 1];
1745 ty
= add_aux_sym_tir (&last_func_type_info
,
1747 &cur_file_ptr
->thash_head
[0]);
1749 /* This seems to be unnecessary. I'm not even sure what it is
1750 * intended to do. It's from mips-tfile.
1751 * if (last_func_sym_value != (symbolS *) NULL)
1753 * last_func_sym_value->ifd = cur_file_ptr->file_index;
1754 * last_func_sym_value->index = ty;
1759 free_scope (pscope
);
1763 cur_file_ptr
->nested_scopes
+= scope_delta
;
1766 if (debug
&& type
!= st_File
1767 && (debug
> 2 || type
== st_Block
|| type
== st_End
1768 || type
== st_Proc
|| type
== st_StaticProc
))
1770 char *sc_str
= sc_to_string (storage
);
1771 char *st_str
= st_to_string (type
);
1772 int depth
= cur_file_ptr
->nested_scopes
+ (scope_delta
< 0);
1775 "\tlsym\tv= %10ld, depth= %2d, sc= %-12s",
1776 value
, depth
, sc_str
);
1778 if (str_start
&& str_end_p1
- str_start
> 0)
1779 fprintf (stderr
, " st= %-11s name= %.*s\n",
1780 st_str
, str_end_p1
- str_start
, str_start
);
1783 unsigned long len
= strlen (st_str
);
1784 fprintf (stderr
, " st= %.*s\n", len
- 1, st_str
);
1792 /* Add an auxiliary symbol (passing a symint). This is actually used
1793 for integral aux types, not just symints. */
1796 add_aux_sym_symint (symint_t aux_word
/* auxiliary information word */)
1798 register varray_t
*vp
;
1799 register aux_t
*aux_ptr
;
1801 if (cur_file_ptr
== (efdr_t
*) NULL
)
1802 as_fatal (_("no current file pointer"));
1804 vp
= &cur_file_ptr
->aux_syms
;
1806 if (vp
->objects_last_page
== vp
->objects_per_page
)
1807 add_varray_page (vp
);
1809 aux_ptr
= &vp
->last
->datum
->aux
[vp
->objects_last_page
++];
1810 aux_ptr
->type
= aux_isym
;
1811 aux_ptr
->data
.isym
= aux_word
;
1813 return vp
->num_allocated
++;
1816 /* Add an auxiliary symbol (passing a file/symbol index combo). */
1819 add_aux_sym_rndx (int file_index
, symint_t sym_index
)
1821 register varray_t
*vp
;
1822 register aux_t
*aux_ptr
;
1824 if (cur_file_ptr
== (efdr_t
*) NULL
)
1825 as_fatal (_("no current file pointer"));
1827 vp
= &cur_file_ptr
->aux_syms
;
1829 if (vp
->objects_last_page
== vp
->objects_per_page
)
1830 add_varray_page (vp
);
1832 aux_ptr
= &vp
->last
->datum
->aux
[vp
->objects_last_page
++];
1833 aux_ptr
->type
= aux_rndx
;
1834 aux_ptr
->data
.rndx
.rfd
= file_index
;
1835 aux_ptr
->data
.rndx
.index
= sym_index
;
1837 return vp
->num_allocated
++;
1840 /* Add an auxiliary symbol (passing the basic type and possibly
1841 type qualifiers). */
1844 add_aux_sym_tir (type_info_t
*t
, /* current type information */
1845 hash_state_t state
, /* whether to hash type or not */
1846 thash_t
**hash_tbl
/* pointer to hash table to use */)
1848 register varray_t
*vp
;
1849 register aux_t
*aux_ptr
;
1850 static AUXU init_aux
;
1855 if (cur_file_ptr
== (efdr_t
*) NULL
)
1856 as_fatal (_("no current file pointer"));
1858 vp
= &cur_file_ptr
->aux_syms
;
1861 aux
.ti
.bt
= (int) t
->basic_type
;
1862 aux
.ti
.continued
= 0;
1863 aux
.ti
.fBitfield
= t
->bitfield
;
1865 aux
.ti
.tq0
= (int) t
->type_qualifiers
[0];
1866 aux
.ti
.tq1
= (int) t
->type_qualifiers
[1];
1867 aux
.ti
.tq2
= (int) t
->type_qualifiers
[2];
1868 aux
.ti
.tq3
= (int) t
->type_qualifiers
[3];
1869 aux
.ti
.tq4
= (int) t
->type_qualifiers
[4];
1870 aux
.ti
.tq5
= (int) t
->type_qualifiers
[5];
1872 /* For anything that adds additional information, we must not hash,
1873 so check here, and reset our state. */
1875 if (state
!= hash_no
1876 && (t
->type_qualifiers
[0] == tq_Array
1877 || t
->type_qualifiers
[1] == tq_Array
1878 || t
->type_qualifiers
[2] == tq_Array
1879 || t
->type_qualifiers
[3] == tq_Array
1880 || t
->type_qualifiers
[4] == tq_Array
1881 || t
->type_qualifiers
[5] == tq_Array
1882 || t
->basic_type
== bt_Struct
1883 || t
->basic_type
== bt_Union
1884 || t
->basic_type
== bt_Enum
1886 || t
->num_dims
> 0))
1889 /* See if we can hash this type, and save some space, but some types
1890 can't be hashed (because they contain arrays or continuations),
1891 and others can be put into the hash list, but cannot use existing
1892 types because other aux entries precede this one. */
1894 if (state
!= hash_no
)
1896 register thash_t
*hash_ptr
;
1897 register symint_t hi
;
1899 hi
= aux
.isym
& ((1 << HASHBITS
) - 1);
1902 for (hash_ptr
= hash_tbl
[hi
];
1903 hash_ptr
!= (thash_t
*)0;
1904 hash_ptr
= hash_ptr
->next
)
1906 if (aux
.isym
== hash_ptr
->type
.isym
)
1910 if (hash_ptr
!= (thash_t
*) NULL
&& state
== hash_yes
)
1911 return hash_ptr
->indx
;
1913 if (hash_ptr
== (thash_t
*) NULL
)
1915 hash_ptr
= allocate_thash ();
1916 hash_ptr
->next
= hash_tbl
[hi
];
1917 hash_ptr
->type
= aux
;
1918 hash_ptr
->indx
= vp
->num_allocated
;
1919 hash_tbl
[hi
] = hash_ptr
;
1923 /* Everything is set up, add the aux symbol. */
1924 if (vp
->objects_last_page
== vp
->objects_per_page
)
1925 add_varray_page (vp
);
1927 aux_ptr
= &vp
->last
->datum
->aux
[vp
->objects_last_page
++];
1928 aux_ptr
->type
= aux_tir
;
1929 aux_ptr
->data
= aux
;
1931 ret
= vp
->num_allocated
++;
1933 /* Add bitfield length if it exists.
1935 NOTE: Mips documentation claims bitfield goes at the end of the
1936 AUX record, but the DECstation compiler emits it here.
1937 (This would only make a difference for enum bitfields.)
1939 Also note: We use the last size given since gcc may emit 2
1940 for an enum bitfield. */
1943 (void) add_aux_sym_symint ((symint_t
) t
->sizes
[t
->num_sizes
- 1]);
1945 /* Add tag information if needed. Structure, union, and enum
1946 references add 2 aux symbols: a [file index, symbol index]
1947 pointer to the structure type, and the current file index. */
1949 if (t
->basic_type
== bt_Struct
1950 || t
->basic_type
== bt_Union
1951 || t
->basic_type
== bt_Enum
)
1953 register symint_t file_index
= t
->tag_ptr
->ifd
;
1954 register localsym_t
*sym
= t
->tag_ptr
->sym
;
1955 register forward_t
*forward_ref
= allocate_forward ();
1957 if (sym
!= (localsym_t
*) NULL
)
1959 forward_ref
->next
= sym
->forward_ref
;
1960 sym
->forward_ref
= forward_ref
;
1964 forward_ref
->next
= t
->tag_ptr
->forward_ref
;
1965 t
->tag_ptr
->forward_ref
= forward_ref
;
1968 (void) add_aux_sym_rndx (ST_RFDESCAPE
, indexNil
);
1969 forward_ref
->index_ptr
1970 = &vp
->last
->datum
->aux
[vp
->objects_last_page
- 1];
1972 (void) add_aux_sym_symint (file_index
);
1973 forward_ref
->ifd_ptr
1974 = &vp
->last
->datum
->aux
[vp
->objects_last_page
- 1];
1977 /* Add information about array bounds if they exist. */
1978 for (i
= 0; i
< t
->num_dims
; i
++)
1980 (void) add_aux_sym_rndx (ST_RFDESCAPE
,
1981 cur_file_ptr
->int_type
);
1983 (void) add_aux_sym_symint (cur_file_ptr
->file_index
); /* file index*/
1984 (void) add_aux_sym_symint ((symint_t
) 0); /* low bound */
1985 (void) add_aux_sym_symint (t
->dimensions
[i
] - 1); /* high bound*/
1986 (void) add_aux_sym_symint ((t
->dimensions
[i
] == 0) /* stride */
1988 : (t
->sizes
[i
] * 8) / t
->dimensions
[i
]);
1991 /* NOTE: Mips documentation claims that the bitfield width goes here.
1992 But it needs to be emitted earlier. */
1997 /* Add a tag to the tag table (unless it already exists). */
2000 get_tag (const char *tag
, /* tag name */
2001 localsym_t
*sym
, /* tag start block */
2002 bt_t basic_type
/* bt_Struct, bt_Union, or bt_Enum */)
2008 if (cur_file_ptr
== (efdr_t
*) NULL
)
2009 as_fatal (_("no current file pointer"));
2011 hash_ptr
= (shash_t
*) hash_find (tag_hash
, tag
);
2013 if (hash_ptr
!= (shash_t
*) NULL
2014 && hash_ptr
->tag_ptr
!= (tag_t
*) NULL
)
2016 tag_ptr
= hash_ptr
->tag_ptr
;
2017 if (sym
!= (localsym_t
*) NULL
)
2019 tag_ptr
->basic_type
= basic_type
;
2020 tag_ptr
->ifd
= cur_file_ptr
->file_index
;
2026 if (hash_ptr
== (shash_t
*) NULL
)
2030 perm
= xstrdup (tag
);
2031 hash_ptr
= allocate_shash ();
2032 err
= hash_insert (tag_hash
, perm
, (char *) hash_ptr
);
2034 as_fatal (_("inserting \"%s\" into tag hash table: %s"),
2036 hash_ptr
->string
= perm
;
2039 tag_ptr
= allocate_tag ();
2040 tag_ptr
->forward_ref
= (forward_t
*) NULL
;
2041 tag_ptr
->hash_ptr
= hash_ptr
;
2042 tag_ptr
->same_name
= hash_ptr
->tag_ptr
;
2043 tag_ptr
->basic_type
= basic_type
;
2045 tag_ptr
->ifd
= ((sym
== (localsym_t
*) NULL
)
2047 : cur_file_ptr
->file_index
);
2048 tag_ptr
->same_block
= cur_tag_head
->first_tag
;
2050 cur_tag_head
->first_tag
= tag_ptr
;
2051 hash_ptr
->tag_ptr
= tag_ptr
;
2056 /* Add an unknown {struct, union, enum} tag. */
2059 add_unknown_tag (tag_t
*ptag
/* pointer to tag information */)
2061 shash_t
*hash_ptr
= ptag
->hash_ptr
;
2062 char *name
= hash_ptr
->string
;
2069 char *agg_type
= "{unknown aggregate type}";
2070 switch (ptag
->basic_type
)
2072 case bt_Struct
: agg_type
= "struct"; break;
2073 case bt_Union
: agg_type
= "union"; break;
2074 case bt_Enum
: agg_type
= "enum"; break;
2078 fprintf (stderr
, "unknown %s %.*s found\n", agg_type
,
2079 hash_ptr
->len
, name_start
);
2083 sym
= add_ecoff_symbol (name
,
2091 (void) add_ecoff_symbol (name
,
2099 for (pf
= &sym
->forward_ref
; *pf
!= (forward_t
*) NULL
; pf
= &(*pf
)->next
)
2101 *pf
= ptag
->forward_ref
;
2104 /* Add a procedure to the current file's list of procedures, and record
2105 this is the current procedure. */
2108 add_procedure (char *func
/* func name */)
2110 register varray_t
*vp
;
2111 register proc_t
*new_proc_ptr
;
2116 fputc ('\n', stderr
);
2119 if (cur_file_ptr
== (efdr_t
*) NULL
)
2120 as_fatal (_("no current file pointer"));
2122 vp
= &cur_file_ptr
->procs
;
2124 if (vp
->objects_last_page
== vp
->objects_per_page
)
2125 add_varray_page (vp
);
2127 cur_proc_ptr
= new_proc_ptr
= &vp
->last
->datum
->proc
[vp
->objects_last_page
++];
2129 if (first_proc_ptr
== (proc_t
*) NULL
)
2130 first_proc_ptr
= new_proc_ptr
;
2132 vp
->num_allocated
++;
2134 new_proc_ptr
->pdr
.isym
= -1;
2135 new_proc_ptr
->pdr
.iline
= -1;
2136 new_proc_ptr
->pdr
.lnLow
= -1;
2137 new_proc_ptr
->pdr
.lnHigh
= -1;
2139 /* Set the BSF_FUNCTION flag for the symbol. */
2140 sym
= symbol_find_or_make (func
);
2141 symbol_get_bfdsym (sym
)->flags
|= BSF_FUNCTION
;
2143 /* Push the start of the function. */
2144 new_proc_ptr
->sym
= add_ecoff_symbol ((const char *) NULL
, st_Proc
, sc_Text
,
2145 sym
, (bfd_vma
) 0, (symint_t
) 0,
2150 /* Fill in the linenos preceding the .ent, if any. */
2151 if (noproc_lineno
!= (lineno_list_t
*) NULL
)
2155 for (l
= noproc_lineno
; l
!= (lineno_list_t
*) NULL
; l
= l
->next
)
2156 l
->proc
= new_proc_ptr
;
2157 *last_lineno_ptr
= noproc_lineno
;
2158 while (*last_lineno_ptr
!= NULL
)
2160 last_lineno
= *last_lineno_ptr
;
2161 last_lineno_ptr
= &last_lineno
->next
;
2163 noproc_lineno
= (lineno_list_t
*) NULL
;
2168 ecoff_get_cur_proc_sym (void)
2170 return (cur_proc_ptr
? cur_proc_ptr
->sym
->as_sym
: NULL
);
2173 /* Add a new filename, and set up all of the file relative
2174 virtual arrays (strings, symbols, aux syms, etc.). Record
2175 where the current file structure lives. */
2178 add_file (const char *file_name
, int indx ATTRIBUTE_UNUSED
, int fake
)
2180 register int first_ch
;
2181 register efdr_t
*fil_ptr
;
2185 fprintf (stderr
, "\tfile\t%.*s\n", len
, file_start
);
2188 /* If the file name is NULL, then no .file symbol appeared, and we
2189 want to use the actual file name. */
2190 if (file_name
== (const char *) NULL
)
2194 if (first_file
!= (efdr_t
*) NULL
)
2195 as_fatal (_("fake .file after real one"));
2196 as_where (&file
, (unsigned int *) NULL
);
2197 file_name
= (const char *) file
;
2199 /* Automatically generate ECOFF debugging information, since I
2200 think that's what other ECOFF assemblers do. We don't do
2201 this if we see a .file directive with a string, since that
2202 implies that some sort of debugging information is being
2204 if (! symbol_table_frozen
&& debug_type
== DEBUG_UNSPECIFIED
)
2205 debug_type
= DEBUG_ECOFF
;
2207 else if (debug_type
== DEBUG_UNSPECIFIED
)
2208 debug_type
= DEBUG_NONE
;
2212 listing_source_file (file_name
);
2215 current_stabs_filename
= file_name
;
2217 /* If we're creating stabs, then we don't actually make a new FDR.
2218 Instead, we just create a stabs symbol. */
2221 (void) add_ecoff_symbol (file_name
, st_Nil
, sc_Nil
,
2222 symbol_new ("L0\001", now_seg
,
2223 (valueT
) frag_now_fix (),
2225 (bfd_vma
) 0, 0, ECOFF_MARK_STAB (N_SOL
));
2229 first_ch
= *file_name
;
2231 /* FIXME: We can't safely merge files which have line number
2232 information (fMerge will be zero in this case). Otherwise, we
2233 get incorrect line number debugging info. See for instance
2234 ecoff_build_lineno, which will end up setting all file->fdr.*
2235 fields multiple times, resulting in incorrect debug info. In
2236 order to make this work right, all line number and symbol info
2237 for the same source file has to be adjacent in the object file,
2238 so that a single file descriptor can be used to point to them.
2239 This would require maintaining file specific lists of line
2240 numbers and symbols for each file, so that they can be merged
2241 together (or output together) when two .file pseudo-ops are
2242 merged into one file descriptor. */
2244 /* See if the file has already been created. */
2245 for (fil_ptr
= first_file
;
2246 fil_ptr
!= (efdr_t
*) NULL
;
2247 fil_ptr
= fil_ptr
->next_file
)
2249 if (first_ch
== fil_ptr
->name
[0]
2250 && strcmp (file_name
, fil_ptr
->name
) == 0
2251 && fil_ptr
->fdr
.fMerge
)
2253 cur_file_ptr
= fil_ptr
;
2255 cur_file_ptr
->fake
= 0;
2260 /* If this is a new file, create it. */
2261 if (fil_ptr
== (efdr_t
*) NULL
)
2263 if (file_desc
.objects_last_page
== file_desc
.objects_per_page
)
2264 add_varray_page (&file_desc
);
2266 fil_ptr
= cur_file_ptr
=
2267 &file_desc
.last
->datum
->file
[file_desc
.objects_last_page
++];
2268 *fil_ptr
= init_file
;
2270 fil_ptr
->file_index
= current_file_idx
++;
2271 ++file_desc
.num_allocated
;
2273 fil_ptr
->fake
= fake
;
2275 /* Allocate the string hash table. */
2276 fil_ptr
->str_hash
= hash_new ();
2278 /* Make sure 0 byte in string table is null */
2279 add_string (&fil_ptr
->strings
,
2284 if (strlen (file_name
) > PAGE_USIZE
- 2)
2285 as_fatal (_("filename goes over one page boundary"));
2287 /* Push the start of the filename. We assume that the filename
2288 will be stored at string offset 1. */
2289 (void) add_ecoff_symbol (file_name
, st_File
, sc_Text
,
2290 (symbolS
*) NULL
, (bfd_vma
) 0,
2291 (symint_t
) 0, (symint_t
) 0);
2292 fil_ptr
->fdr
.rss
= 1;
2293 fil_ptr
->name
= &fil_ptr
->strings
.last
->datum
->byte
[1];
2295 /* Update the linked list of file descriptors. */
2296 *last_file_ptr
= fil_ptr
;
2297 last_file_ptr
= &fil_ptr
->next_file
;
2299 /* Add void & int types to the file (void should be first to catch
2300 errant 0's within the index fields). */
2301 fil_ptr
->void_type
= add_aux_sym_tir (&void_type_info
,
2303 &cur_file_ptr
->thash_head
[0]);
2305 fil_ptr
->int_type
= add_aux_sym_tir (&int_type_info
,
2307 &cur_file_ptr
->thash_head
[0]);
2311 /* This function is called when the assembler notices a preprocessor
2312 directive switching to a new file. This will not happen in
2313 compiler output, only in hand coded assembler. */
2316 ecoff_new_file (const char *name
, int appfile ATTRIBUTE_UNUSED
)
2318 if (cur_file_ptr
!= NULL
&& strcmp (cur_file_ptr
->name
, name
) == 0)
2320 add_file (name
, 0, 0);
2322 /* This is a hand coded assembler file, so automatically turn on
2323 debugging information. */
2324 if (debug_type
== DEBUG_UNSPECIFIED
)
2325 debug_type
= DEBUG_ECOFF
;
2330 /* Convert storage class to string. */
2333 sc_to_string (storage_class
)
2336 switch (storage_class
)
2338 case sc_Nil
: return "Nil,";
2339 case sc_Text
: return "Text,";
2340 case sc_Data
: return "Data,";
2341 case sc_Bss
: return "Bss,";
2342 case sc_Register
: return "Register,";
2343 case sc_Abs
: return "Abs,";
2344 case sc_Undefined
: return "Undefined,";
2345 case sc_CdbLocal
: return "CdbLocal,";
2346 case sc_Bits
: return "Bits,";
2347 case sc_CdbSystem
: return "CdbSystem,";
2348 case sc_RegImage
: return "RegImage,";
2349 case sc_Info
: return "Info,";
2350 case sc_UserStruct
: return "UserStruct,";
2351 case sc_SData
: return "SData,";
2352 case sc_SBss
: return "SBss,";
2353 case sc_RData
: return "RData,";
2354 case sc_Var
: return "Var,";
2355 case sc_Common
: return "Common,";
2356 case sc_SCommon
: return "SCommon,";
2357 case sc_VarRegister
: return "VarRegister,";
2358 case sc_Variant
: return "Variant,";
2359 case sc_SUndefined
: return "SUndefined,";
2360 case sc_Init
: return "Init,";
2361 case sc_Max
: return "Max,";
2371 /* Convert symbol type to string. */
2374 st_to_string (symbol_type
)
2377 switch (symbol_type
)
2379 case st_Nil
: return "Nil,";
2380 case st_Global
: return "Global,";
2381 case st_Static
: return "Static,";
2382 case st_Param
: return "Param,";
2383 case st_Local
: return "Local,";
2384 case st_Label
: return "Label,";
2385 case st_Proc
: return "Proc,";
2386 case st_Block
: return "Block,";
2387 case st_End
: return "End,";
2388 case st_Member
: return "Member,";
2389 case st_Typedef
: return "Typedef,";
2390 case st_File
: return "File,";
2391 case st_RegReloc
: return "RegReloc,";
2392 case st_Forward
: return "Forward,";
2393 case st_StaticProc
: return "StaticProc,";
2394 case st_Constant
: return "Constant,";
2395 case st_Str
: return "String,";
2396 case st_Number
: return "Number,";
2397 case st_Expr
: return "Expr,";
2398 case st_Type
: return "Type,";
2399 case st_Max
: return "Max,";
2407 /* Parse .begin directives which have a label as the first argument
2408 which gives the location of the start of the block. */
2411 ecoff_directive_begin (int ignore ATTRIBUTE_UNUSED
)
2416 if (cur_file_ptr
== (efdr_t
*) NULL
)
2418 as_warn (_(".begin directive without a preceding .file directive"));
2419 demand_empty_rest_of_line ();
2423 if (cur_proc_ptr
== (proc_t
*) NULL
)
2425 as_warn (_(".begin directive without a preceding .ent directive"));
2426 demand_empty_rest_of_line ();
2430 name
= input_line_pointer
;
2431 name_end
= get_symbol_end ();
2433 (void) add_ecoff_symbol ((const char *) NULL
, st_Block
, sc_Text
,
2434 symbol_find_or_make (name
),
2435 (bfd_vma
) 0, (symint_t
) 0, (symint_t
) 0);
2437 *input_line_pointer
= name_end
;
2439 /* The line number follows, but we don't use it. */
2440 (void) get_absolute_expression ();
2441 demand_empty_rest_of_line ();
2444 /* Parse .bend directives which have a label as the first argument
2445 which gives the location of the end of the block. */
2448 ecoff_directive_bend (int ignore ATTRIBUTE_UNUSED
)
2454 if (cur_file_ptr
== (efdr_t
*) NULL
)
2456 as_warn (_(".bend directive without a preceding .file directive"));
2457 demand_empty_rest_of_line ();
2461 if (cur_proc_ptr
== (proc_t
*) NULL
)
2463 as_warn (_(".bend directive without a preceding .ent directive"));
2464 demand_empty_rest_of_line ();
2468 name
= input_line_pointer
;
2469 name_end
= get_symbol_end ();
2471 /* The value is the distance between the .bend directive and the
2472 corresponding symbol. We fill in the offset when we write out
2474 endsym
= symbol_find (name
);
2475 if (endsym
== (symbolS
*) NULL
)
2476 as_warn (_(".bend directive names unknown symbol"));
2478 (void) add_ecoff_symbol ((const char *) NULL
, st_End
, sc_Text
, endsym
,
2479 (bfd_vma
) 0, (symint_t
) 0, (symint_t
) 0);
2481 *input_line_pointer
= name_end
;
2483 /* The line number follows, but we don't use it. */
2484 (void) get_absolute_expression ();
2485 demand_empty_rest_of_line ();
2488 /* COFF debugging information is provided as a series of directives
2489 (.def, .scl, etc.). We build up information as we read the
2490 directives in the following static variables, and file it away when
2491 we reach the .endef directive. */
2492 static char *coff_sym_name
;
2493 static type_info_t coff_type
;
2494 static sc_t coff_storage_class
;
2495 static st_t coff_symbol_typ
;
2496 static int coff_is_function
;
2497 static char *coff_tag
;
2498 static valueT coff_value
;
2499 static symbolS
*coff_sym_value
;
2500 static bfd_vma coff_sym_addend
;
2501 static int coff_inside_enumeration
;
2503 /* Handle a .def directive: start defining a symbol. */
2506 ecoff_directive_def (int ignore ATTRIBUTE_UNUSED
)
2511 ecoff_debugging_seen
= 1;
2515 name
= input_line_pointer
;
2516 name_end
= get_symbol_end ();
2518 if (coff_sym_name
!= (char *) NULL
)
2519 as_warn (_(".def pseudo-op used inside of .def/.endef; ignored"));
2520 else if (*name
== '\0')
2521 as_warn (_("empty symbol name in .def; ignored"));
2524 if (coff_sym_name
!= (char *) NULL
)
2525 free (coff_sym_name
);
2526 if (coff_tag
!= (char *) NULL
)
2529 coff_sym_name
= xstrdup (name
);
2530 coff_type
= type_info_init
;
2531 coff_storage_class
= sc_Nil
;
2532 coff_symbol_typ
= st_Nil
;
2533 coff_is_function
= 0;
2534 coff_tag
= (char *) NULL
;
2536 coff_sym_value
= (symbolS
*) NULL
;
2537 coff_sym_addend
= 0;
2540 *input_line_pointer
= name_end
;
2542 demand_empty_rest_of_line ();
2545 /* Handle a .dim directive, used to give dimensions for an array. The
2546 arguments are comma separated numbers. mips-tfile assumes that
2547 there will not be more than 6 dimensions, and gdb won't read any
2548 more than that anyhow, so I will also make that assumption. */
2551 ecoff_directive_dim (int ignore ATTRIBUTE_UNUSED
)
2556 if (coff_sym_name
== (char *) NULL
)
2558 as_warn (_(".dim pseudo-op used outside of .def/.endef; ignored"));
2559 demand_empty_rest_of_line ();
2563 for (i
= 0; i
< N_TQ
; i
++)
2566 dimens
[i
] = get_absolute_expression ();
2567 if (*input_line_pointer
== ',')
2568 ++input_line_pointer
;
2571 if (*input_line_pointer
!= '\n'
2572 && *input_line_pointer
!= ';')
2573 as_warn (_("badly formed .dim directive"));
2581 /* The dimensions are stored away in reverse order. */
2584 if (coff_type
.num_dims
>= N_TQ
)
2586 as_warn (_("too many .dim entries"));
2589 coff_type
.dimensions
[coff_type
.num_dims
] = dimens
[i
];
2590 ++coff_type
.num_dims
;
2593 demand_empty_rest_of_line ();
2596 /* Handle a .scl directive, which sets the COFF storage class of the
2600 ecoff_directive_scl (int ignore ATTRIBUTE_UNUSED
)
2604 if (coff_sym_name
== (char *) NULL
)
2606 as_warn (_(".scl pseudo-op used outside of .def/.endef; ignored"));
2607 demand_empty_rest_of_line ();
2611 val
= get_absolute_expression ();
2613 coff_symbol_typ
= map_coff_sym_type
[val
];
2614 coff_storage_class
= map_coff_storage
[val
];
2616 demand_empty_rest_of_line ();
2619 /* Handle a .size directive. For some reason mips-tfile.c thinks that
2620 .size can have multiple arguments. We humor it, although gcc will
2621 never generate more than one argument. */
2624 ecoff_directive_size (int ignore ATTRIBUTE_UNUSED
)
2629 if (coff_sym_name
== (char *) NULL
)
2631 as_warn (_(".size pseudo-op used outside of .def/.endef; ignored"));
2632 demand_empty_rest_of_line ();
2636 for (i
= 0; i
< N_TQ
; i
++)
2639 sizes
[i
] = get_absolute_expression ();
2640 if (*input_line_pointer
== ',')
2641 ++input_line_pointer
;
2644 if (*input_line_pointer
!= '\n'
2645 && *input_line_pointer
!= ';')
2646 as_warn (_("badly formed .size directive"));
2654 /* The sizes are stored away in reverse order. */
2657 if (coff_type
.num_sizes
>= N_TQ
)
2659 as_warn (_("too many .size entries"));
2662 coff_type
.sizes
[coff_type
.num_sizes
] = sizes
[i
];
2663 ++coff_type
.num_sizes
;
2666 demand_empty_rest_of_line ();
2669 /* Handle the .type directive, which gives the COFF type of the
2673 ecoff_directive_type (int ignore ATTRIBUTE_UNUSED
)
2679 if (coff_sym_name
== (char *) NULL
)
2681 as_warn (_(".type pseudo-op used outside of .def/.endef; ignored"));
2682 demand_empty_rest_of_line ();
2686 val
= get_absolute_expression ();
2688 coff_type
.orig_type
= BTYPE (val
);
2689 coff_type
.basic_type
= map_coff_types
[coff_type
.orig_type
];
2691 tq_ptr
= &coff_type
.type_qualifiers
[N_TQ
];
2692 while (val
& ~N_BTMASK
)
2694 if (tq_ptr
== &coff_type
.type_qualifiers
[0])
2696 /* FIXME: We could handle this by setting the continued bit.
2697 There would still be a limit: the .type argument can not
2699 as_warn (_("the type of %s is too complex; it will be simplified"),
2705 else if (ISFCN (val
))
2706 *--tq_ptr
= tq_Proc
;
2707 else if (ISARY (val
))
2708 *--tq_ptr
= tq_Array
;
2710 as_fatal (_("Unrecognized .type argument"));
2715 tq_shft
= &coff_type
.type_qualifiers
[0];
2716 while (tq_ptr
!= &coff_type
.type_qualifiers
[N_TQ
])
2717 *tq_shft
++ = *tq_ptr
++;
2719 if (tq_shft
!= &coff_type
.type_qualifiers
[0] && tq_shft
[-1] == tq_Proc
)
2721 /* If this is a function, ignore it, so that we don't get two
2722 entries (one from the .ent, and one for the .def that
2723 precedes it). Save the type information so that the end
2724 block can properly add it after the begin block index. For
2725 MIPS knows what reason, we must strip off the function type
2727 coff_is_function
= 1;
2728 tq_shft
[-1] = tq_Nil
;
2731 while (tq_shft
!= &coff_type
.type_qualifiers
[N_TQ
])
2732 *tq_shft
++ = tq_Nil
;
2734 demand_empty_rest_of_line ();
2737 /* Handle the .tag directive, which gives the name of a structure,
2741 ecoff_directive_tag (int ignore ATTRIBUTE_UNUSED
)
2746 if (coff_sym_name
== (char *) NULL
)
2748 as_warn (_(".tag pseudo-op used outside of .def/.endef; ignored"));
2749 demand_empty_rest_of_line ();
2753 name
= input_line_pointer
;
2754 name_end
= get_symbol_end ();
2756 coff_tag
= xstrdup (name
);
2758 *input_line_pointer
= name_end
;
2760 demand_empty_rest_of_line ();
2763 /* Handle the .val directive, which gives the value of the symbol. It
2764 may be the name of a static or global symbol. */
2767 ecoff_directive_val (int ignore ATTRIBUTE_UNUSED
)
2771 if (coff_sym_name
== (char *) NULL
)
2773 as_warn (_(".val pseudo-op used outside of .def/.endef; ignored"));
2774 demand_empty_rest_of_line ();
2779 if (exp
.X_op
!= O_constant
&& exp
.X_op
!= O_symbol
)
2781 as_bad (_(".val expression is too complex"));
2782 demand_empty_rest_of_line ();
2786 if (exp
.X_op
== O_constant
)
2787 coff_value
= exp
.X_add_number
;
2790 coff_sym_value
= exp
.X_add_symbol
;
2791 coff_sym_addend
= exp
.X_add_number
;
2794 demand_empty_rest_of_line ();
2797 /* Handle the .endef directive, which terminates processing of COFF
2798 debugging information for a symbol. */
2801 ecoff_directive_endef (int ignore ATTRIBUTE_UNUSED
)
2807 demand_empty_rest_of_line ();
2809 if (coff_sym_name
== (char *) NULL
)
2811 as_warn (_(".endef pseudo-op used before .def; ignored"));
2815 name
= coff_sym_name
;
2816 coff_sym_name
= (char *) NULL
;
2818 /* If the symbol is a static or external, we have already gotten the
2819 appropriate type and class, so make sure we don't override those
2820 values. This is needed because there are some type and classes
2821 that are not in COFF, such as short data, etc. */
2822 if (coff_sym_value
!= (symbolS
*) NULL
)
2824 coff_symbol_typ
= st_Nil
;
2825 coff_storage_class
= sc_Nil
;
2828 coff_type
.extra_sizes
= coff_tag
!= (char *) NULL
;
2829 if (coff_type
.num_dims
> 0)
2831 int diff
= coff_type
.num_dims
- coff_type
.num_sizes
;
2832 int i
= coff_type
.num_dims
- 1;
2835 if (coff_type
.num_sizes
!= 1 || diff
< 0)
2837 as_warn (_("bad COFF debugging information"));
2841 /* If this is an array, make sure the same number of dimensions
2842 and sizes were passed, creating extra sizes for multiply
2843 dimensioned arrays if not passed. */
2844 coff_type
.extra_sizes
= 0;
2847 j
= (sizeof (coff_type
.sizes
) / sizeof (coff_type
.sizes
[0])) - 1;
2850 coff_type
.sizes
[j
] = (((j
- diff
) >= 0)
2851 ? coff_type
.sizes
[j
- diff
]
2856 coff_type
.num_sizes
= i
+ 1;
2857 for (i
--; i
>= 0; i
--)
2858 coff_type
.sizes
[i
] = (coff_type
.dimensions
[i
+ 1] == 0
2860 : (coff_type
.sizes
[i
+ 1]
2861 / coff_type
.dimensions
[i
+ 1]));
2864 else if (coff_symbol_typ
== st_Member
2865 && coff_type
.num_sizes
- coff_type
.extra_sizes
== 1)
2867 /* Is this a bitfield? This is indicated by a structure member
2868 having a size field that isn't an array. */
2869 coff_type
.bitfield
= 1;
2872 /* Except for enumeration members & begin/ending of scopes, put the
2873 type word in the aux. symbol table. */
2874 if (coff_symbol_typ
== st_Block
|| coff_symbol_typ
== st_End
)
2876 else if (coff_inside_enumeration
)
2877 indx
= cur_file_ptr
->void_type
;
2880 if (coff_type
.basic_type
== bt_Struct
2881 || coff_type
.basic_type
== bt_Union
2882 || coff_type
.basic_type
== bt_Enum
)
2884 if (coff_tag
== (char *) NULL
)
2886 as_warn (_("no tag specified for %s"), name
);
2890 coff_type
.tag_ptr
= get_tag (coff_tag
, (localsym_t
*) NULL
,
2891 coff_type
.basic_type
);
2894 if (coff_is_function
)
2896 last_func_type_info
= coff_type
;
2897 last_func_sym_value
= coff_sym_value
;
2901 indx
= add_aux_sym_tir (&coff_type
,
2903 &cur_file_ptr
->thash_head
[0]);
2906 /* Do any last minute adjustments that are necessary. */
2907 switch (coff_symbol_typ
)
2912 /* For the beginning of structs, unions, and enumerations, the
2913 size info needs to be passed in the value field. */
2915 if (coff_type
.num_sizes
- coff_type
.num_dims
- coff_type
.extra_sizes
2918 as_warn (_("bad COFF debugging information"));
2922 coff_value
= coff_type
.sizes
[0];
2924 coff_inside_enumeration
= (coff_type
.orig_type
== T_ENUM
);
2927 /* For the end of structs, unions, and enumerations, omit the
2928 name which is always ".eos". This needs to be done last, so
2929 that any error reporting above gives the correct name. */
2932 name
= (char *) NULL
;
2934 coff_inside_enumeration
= 0;
2937 /* Members of structures and unions that aren't bitfields, need
2938 to adjust the value from a byte offset to a bit offset.
2939 Members of enumerations do not have the value adjusted, and
2940 can be distinguished by indx == indexNil. For enumerations,
2941 update the maximum enumeration value. */
2943 if (! coff_type
.bitfield
&& ! coff_inside_enumeration
)
2949 /* Add the symbol. */
2950 sym
= add_ecoff_symbol (name
,
2955 (symint_t
) coff_value
,
2958 /* deal with struct, union, and enum tags. */
2959 if (coff_symbol_typ
== st_Block
)
2961 /* Create or update the tag information. */
2962 tag_t
*tag_ptr
= get_tag (name
,
2964 coff_type
.basic_type
);
2967 /* Remember any forward references. */
2968 for (pf
= &sym
->forward_ref
;
2969 *pf
!= (forward_t
*) NULL
;
2972 *pf
= tag_ptr
->forward_ref
;
2973 tag_ptr
->forward_ref
= (forward_t
*) NULL
;
2977 /* Parse .end directives. */
2980 ecoff_directive_end (int ignore ATTRIBUTE_UNUSED
)
2986 if (cur_file_ptr
== (efdr_t
*) NULL
)
2988 as_warn (_(".end directive without a preceding .file directive"));
2989 demand_empty_rest_of_line ();
2993 if (cur_proc_ptr
== (proc_t
*) NULL
)
2995 as_warn (_(".end directive without a preceding .ent directive"));
2996 demand_empty_rest_of_line ();
3000 name
= input_line_pointer
;
3001 name_end
= get_symbol_end ();
3003 if (name
== input_line_pointer
)
3005 as_warn (_(".end directive has no name"));
3006 *input_line_pointer
= name_end
;
3007 demand_empty_rest_of_line ();
3011 /* The value is the distance between the .end directive and the
3012 corresponding symbol. We create a fake symbol to hold the
3013 current location, and put in the offset when we write out the
3015 ent
= symbol_find (name
);
3016 if (ent
== (symbolS
*) NULL
)
3017 as_warn (_(".end directive names unknown symbol"));
3019 (void) add_ecoff_symbol ((const char *) NULL
, st_End
, sc_Text
,
3020 symbol_new ("L0\001", now_seg
,
3021 (valueT
) frag_now_fix (),
3023 (bfd_vma
) 0, (symint_t
) 0, (symint_t
) 0);
3025 cur_proc_ptr
= (proc_t
*) NULL
;
3027 *input_line_pointer
= name_end
;
3028 demand_empty_rest_of_line ();
3031 /* Parse .ent directives. */
3034 ecoff_directive_ent (int ignore ATTRIBUTE_UNUSED
)
3039 if (cur_file_ptr
== (efdr_t
*) NULL
)
3040 add_file ((const char *) NULL
, 0, 1);
3042 if (cur_proc_ptr
!= (proc_t
*) NULL
)
3044 as_warn (_("second .ent directive found before .end directive"));
3045 demand_empty_rest_of_line ();
3049 name
= input_line_pointer
;
3050 name_end
= get_symbol_end ();
3052 if (name
== input_line_pointer
)
3054 as_warn (_(".ent directive has no name"));
3055 *input_line_pointer
= name_end
;
3056 demand_empty_rest_of_line ();
3060 add_procedure (name
);
3062 *input_line_pointer
= name_end
;
3064 /* The .ent directive is sometimes followed by a number. I'm not
3065 really sure what the number means. I don't see any way to store
3066 the information in the PDR. The Irix 4 assembler seems to ignore
3069 if (*input_line_pointer
== ',')
3071 ++input_line_pointer
;
3074 if (ISDIGIT (*input_line_pointer
)
3075 || *input_line_pointer
== '-')
3076 (void) get_absolute_expression ();
3078 demand_empty_rest_of_line ();
3081 /* Parse .extern directives. */
3084 ecoff_directive_extern (int ignore ATTRIBUTE_UNUSED
)
3091 name
= input_line_pointer
;
3092 c
= get_symbol_end ();
3093 symbolp
= symbol_find_or_make (name
);
3094 *input_line_pointer
= c
;
3096 S_SET_EXTERNAL (symbolp
);
3098 if (*input_line_pointer
== ',')
3099 ++input_line_pointer
;
3100 size
= get_absolute_expression ();
3102 symbol_get_obj (symbolp
)->ecoff_extern_size
= size
;
3105 /* Parse .file directives. */
3108 ecoff_directive_file (int ignore ATTRIBUTE_UNUSED
)
3114 if (cur_proc_ptr
!= (proc_t
*) NULL
)
3116 as_warn (_("no way to handle .file within .ent/.end section"));
3117 demand_empty_rest_of_line ();
3121 indx
= (int) get_absolute_expression ();
3123 /* FIXME: we don't have to save the name here. */
3124 name
= demand_copy_C_string (&len
);
3126 add_file (name
, indx
- 1, 0);
3128 demand_empty_rest_of_line ();
3131 /* Parse .fmask directives. */
3134 ecoff_directive_fmask (int ignore ATTRIBUTE_UNUSED
)
3138 if (cur_proc_ptr
== (proc_t
*) NULL
)
3140 as_warn (_(".fmask outside of .ent"));
3141 demand_empty_rest_of_line ();
3145 if (get_absolute_expression_and_terminator (&val
) != ',')
3147 as_warn (_("bad .fmask directive"));
3148 --input_line_pointer
;
3149 demand_empty_rest_of_line ();
3153 cur_proc_ptr
->pdr
.fregmask
= val
;
3154 cur_proc_ptr
->pdr
.fregoffset
= get_absolute_expression ();
3156 demand_empty_rest_of_line ();
3159 /* Parse .frame directives. */
3162 ecoff_directive_frame (int ignore ATTRIBUTE_UNUSED
)
3166 if (cur_proc_ptr
== (proc_t
*) NULL
)
3168 as_warn (_(".frame outside of .ent"));
3169 demand_empty_rest_of_line ();
3173 cur_proc_ptr
->pdr
.framereg
= tc_get_register (1);
3176 if (*input_line_pointer
++ != ','
3177 || get_absolute_expression_and_terminator (&val
) != ',')
3179 as_warn (_("bad .frame directive"));
3180 --input_line_pointer
;
3181 demand_empty_rest_of_line ();
3185 cur_proc_ptr
->pdr
.frameoffset
= val
;
3187 cur_proc_ptr
->pdr
.pcreg
= tc_get_register (0);
3189 /* Alpha-OSF1 adds "the offset of saved $a0 from $sp", according to
3190 Sandro. I don't yet know where this value should be stored, if
3191 anywhere. Don't call demand_empty_rest_of_line (). */
3195 /* Parse .mask directives. */
3198 ecoff_directive_mask (int ignore ATTRIBUTE_UNUSED
)
3202 if (cur_proc_ptr
== (proc_t
*) NULL
)
3204 as_warn (_(".mask outside of .ent"));
3205 demand_empty_rest_of_line ();
3209 if (get_absolute_expression_and_terminator (&val
) != ',')
3211 as_warn (_("bad .mask directive"));
3212 --input_line_pointer
;
3213 demand_empty_rest_of_line ();
3217 cur_proc_ptr
->pdr
.regmask
= val
;
3218 cur_proc_ptr
->pdr
.regoffset
= get_absolute_expression ();
3220 demand_empty_rest_of_line ();
3223 /* Parse .loc directives. */
3226 ecoff_directive_loc (int ignore ATTRIBUTE_UNUSED
)
3228 lineno_list_t
*list
;
3231 if (cur_file_ptr
== (efdr_t
*) NULL
)
3233 as_warn (_(".loc before .file"));
3234 demand_empty_rest_of_line ();
3238 if (now_seg
!= text_section
)
3240 as_warn (_(".loc outside of .text"));
3241 demand_empty_rest_of_line ();
3245 /* Skip the file number. */
3247 get_absolute_expression ();
3250 lineno
= get_absolute_expression ();
3254 listing_source_line (lineno
);
3257 /* If we're building stabs, then output a special label rather than
3258 ECOFF line number info. */
3261 (void) add_ecoff_symbol ((char *) NULL
, st_Label
, sc_Text
,
3262 symbol_new ("L0\001", now_seg
,
3263 (valueT
) frag_now_fix (),
3265 (bfd_vma
) 0, 0, lineno
);
3269 list
= allocate_lineno_list ();
3271 list
->next
= (lineno_list_t
*) NULL
;
3272 list
->file
= cur_file_ptr
;
3273 list
->proc
= cur_proc_ptr
;
3274 list
->frag
= frag_now
;
3275 list
->paddr
= frag_now_fix ();
3276 list
->lineno
= lineno
;
3278 /* We don't want to merge files which have line numbers. */
3279 cur_file_ptr
->fdr
.fMerge
= 0;
3281 /* A .loc directive will sometimes appear before a .ent directive,
3282 which means that cur_proc_ptr will be NULL here. Arrange to
3284 if (cur_proc_ptr
== (proc_t
*) NULL
)
3288 pl
= &noproc_lineno
;
3289 while (*pl
!= (lineno_list_t
*) NULL
)
3296 *last_lineno_ptr
= list
;
3297 last_lineno_ptr
= &list
->next
;
3301 /* The MIPS assembler sometimes inserts nop instructions in the
3302 instruction stream. When this happens, we must patch up the .loc
3303 information so that it points to the instruction after the nop. */
3306 ecoff_fix_loc (fragS
*old_frag
, unsigned long old_frag_offset
)
3308 if (last_lineno
!= NULL
3309 && last_lineno
->frag
== old_frag
3310 && last_lineno
->paddr
== old_frag_offset
)
3312 last_lineno
->frag
= frag_now
;
3313 last_lineno
->paddr
= frag_now_fix ();
3317 /* Make sure the @stabs symbol is emitted. */
3320 mark_stabs (int ignore ATTRIBUTE_UNUSED
)
3324 /* Add a dummy @stabs dymbol. */
3326 (void) add_ecoff_symbol (stabs_symbol
, st_Nil
, sc_Info
,
3328 (bfd_vma
) 0, (symint_t
) -1,
3329 ECOFF_MARK_STAB (0));
3333 /* Parse .weakext directives. */
3335 /* For TC_MIPS use the version in tc-mips.c. */
3337 ecoff_directive_weakext (int ignore ATTRIBUTE_UNUSED
)
3344 name
= input_line_pointer
;
3345 c
= get_symbol_end ();
3346 symbolP
= symbol_find_or_make (name
);
3347 *input_line_pointer
= c
;
3351 if (*input_line_pointer
== ',')
3353 if (S_IS_DEFINED (symbolP
))
3355 as_bad (_("symbol `%s' is already defined"),
3356 S_GET_NAME (symbolP
));
3357 ignore_rest_of_line ();
3361 ++input_line_pointer
;
3363 if (! is_end_of_line
[(unsigned char) *input_line_pointer
])
3366 if (exp
.X_op
!= O_symbol
)
3368 as_bad (_("bad .weakext directive"));
3369 ignore_rest_of_line ();
3372 symbol_set_value_expression (symbolP
, &exp
);
3376 S_SET_WEAK (symbolP
);
3378 demand_empty_rest_of_line ();
3380 #endif /* not TC_MIPS */
3382 /* Handle .stabs directives. The actual parsing routine is done by a
3383 generic routine. This routine is called via OBJ_PROCESS_STAB.
3384 When this is called, input_line_pointer will be pointing at the
3385 value field of the stab.
3387 .stabs directives have five fields:
3388 "string" a string, encoding the type information.
3389 code a numeric code, defined in <stab.h>
3391 desc a zero or line number
3392 value a numeric value or an address.
3394 If the value is relocatable, we transform this into:
3395 iss points as an index into string space
3396 value value from lookup of the name
3397 st st from lookup of the name
3398 sc sc from lookup of the name
3399 index code|CODE_MASK
3401 If the value is not relocatable, we transform this into:
3402 iss points as an index into string space
3406 index code|CODE_MASK
3408 .stabn directives have four fields (string is null):
3409 code a numeric code, defined in <stab.h>
3411 desc a zero or a line number
3412 value a numeric value or an address. */
3415 ecoff_stab (segT sec ATTRIBUTE_UNUSED
,
3422 efdr_t
*save_file_ptr
= cur_file_ptr
;
3429 localsym_t
*hold
= NULL
;
3431 ecoff_debugging_seen
= 1;
3433 /* We don't handle .stabd. */
3434 if (what
!= 's' && what
!= 'n')
3436 as_bad (_(".stab%c is not supported"), what
);
3440 /* A .stabn uses a null name, not an empty string. */
3444 /* We ignore the other field. */
3446 as_warn (_(".stab%c: ignoring non-zero other field"), what
);
3448 /* Make sure we have a current file. */
3449 if (cur_file_ptr
== (efdr_t
*) NULL
)
3451 add_file ((const char *) NULL
, 0, 1);
3452 save_file_ptr
= cur_file_ptr
;
3455 /* For stabs in ECOFF, the first symbol must be @stabs. This is a
3457 if (stabs_seen
== 0)
3460 /* Line number stabs are handled differently, since they have two
3461 values, the line number and the address of the label. We use the
3462 index field (aka desc) to hold the line number, and the value
3463 field to hold the address. The symbol type is st_Label, which
3464 should be different from the other stabs, so that gdb can
3466 if (type
== N_SLINE
)
3474 listing_source_line ((unsigned int) desc
);
3477 dummy_symr
.index
= desc
;
3478 if (dummy_symr
.index
!= desc
)
3480 as_warn (_("line number (%d) for .stab%c directive cannot fit in index field (20 bits)"),
3485 name
= input_line_pointer
;
3486 name_end
= get_symbol_end ();
3488 sym
= symbol_find_or_make (name
);
3489 *input_line_pointer
= name_end
;
3500 if (listing
&& (type
== N_SO
|| type
== N_SOL
))
3501 listing_source_file (string
);
3504 if (ISDIGIT (*input_line_pointer
)
3505 || *input_line_pointer
== '-'
3506 || *input_line_pointer
== '+')
3510 sym
= (symbolS
*) NULL
;
3511 value
= get_absolute_expression ();
3514 else if (! is_name_beginner ((unsigned char) *input_line_pointer
))
3516 as_warn (_("illegal .stab%c directive, bad character"), what
);
3527 if (exp
.X_op
== O_constant
)
3530 value
= exp
.X_add_number
;
3533 else if (exp
.X_op
== O_symbol
)
3535 sym
= exp
.X_add_symbol
;
3537 addend
= exp
.X_add_number
;
3541 sym
= make_expr_symbol (&exp
);
3547 indx
= ECOFF_MARK_STAB (type
);
3550 /* Don't store the stabs symbol we are creating as the type of the
3551 ECOFF symbol. We want to compute the type of the ECOFF symbol
3553 if (sym
!= (symbolS
*) NULL
)
3554 hold
= symbol_get_obj (sym
)->ecoff_symbol
;
3556 (void) add_ecoff_symbol (string
, st
, sc
, sym
, addend
, value
, indx
);
3558 if (sym
!= (symbolS
*) NULL
)
3559 symbol_get_obj (sym
)->ecoff_symbol
= hold
;
3561 /* Restore normal file type. */
3562 cur_file_ptr
= save_file_ptr
;
3565 /* Frob an ECOFF symbol. Small common symbols go into a special
3566 .scommon section rather than bfd_com_section. */
3569 ecoff_frob_symbol (symbolS
*sym
)
3571 if (S_IS_COMMON (sym
)
3572 && S_GET_VALUE (sym
) > 0
3573 && S_GET_VALUE (sym
) <= bfd_get_gp_size (stdoutput
))
3575 static asection scom_section
;
3576 static asymbol scom_symbol
;
3578 /* We must construct a fake section similar to bfd_com_section
3579 but with the name .scommon. */
3580 if (scom_section
.name
== NULL
)
3582 scom_section
= bfd_com_section
;
3583 scom_section
.name
= ".scommon";
3584 scom_section
.output_section
= &scom_section
;
3585 scom_section
.symbol
= &scom_symbol
;
3586 scom_section
.symbol_ptr_ptr
= &scom_section
.symbol
;
3587 scom_symbol
= *bfd_com_section
.symbol
;
3588 scom_symbol
.name
= ".scommon";
3589 scom_symbol
.section
= &scom_section
;
3591 S_SET_SEGMENT (sym
, &scom_section
);
3594 /* Double check weak symbols. */
3595 if (S_IS_WEAK (sym
))
3597 if (S_IS_COMMON (sym
))
3598 as_bad (_("symbol `%s' can not be both weak and common"),
3603 /* Add bytes to the symbolic information buffer. */
3606 ecoff_add_bytes (char **buf
,
3615 need
-= *bufend
- bufptr
;
3616 if (need
< PAGE_SIZE
)
3618 want
= (*bufend
- *buf
) + need
;
3619 *buf
= (char *) xrealloc (*buf
, want
);
3620 *bufend
= *buf
+ want
;
3624 /* Adjust the symbolic information buffer to the alignment required
3625 for the ECOFF target debugging information. */
3627 static unsigned long
3628 ecoff_padding_adjust (const struct ecoff_debug_swap
*backend
,
3631 unsigned long offset
,
3634 bfd_size_type align
;
3636 align
= backend
->debug_align
;
3637 if ((offset
& (align
- 1)) != 0)
3641 add
= align
- (offset
& (align
- 1));
3642 if ((unsigned long) (*bufend
- (*buf
+ offset
)) < add
)
3643 (void) ecoff_add_bytes (buf
, bufend
, *buf
+ offset
, add
);
3644 memset (*buf
+ offset
, 0, add
);
3646 if (bufptrptr
!= (char **) NULL
)
3647 *bufptrptr
= *buf
+ offset
;
3653 /* Build the line number information. */
3655 static unsigned long
3656 ecoff_build_lineno (const struct ecoff_debug_swap
*backend
,
3659 unsigned long offset
,
3663 register lineno_list_t
*l
;
3664 lineno_list_t
*last
;
3670 lineno_list_t first
;
3671 lineno_list_t
*local_first_lineno
= first_lineno
;
3673 if (linecntptr
!= (long *) NULL
)
3676 bufptr
= *buf
+ offset
;
3678 file
= (efdr_t
*) NULL
;
3679 proc
= (proc_t
*) NULL
;
3680 last
= (lineno_list_t
*) NULL
;
3685 /* FIXME? Now that MIPS embedded-PIC is gone, it may be safe to
3686 remove this code. */
3687 /* For some reason the address of the first procedure is ignored
3688 when reading line numbers. This doesn't matter if the address of
3689 the first procedure is 0, but when gcc is generating MIPS
3690 embedded PIC code, it will put strings in the .text section
3691 before the first procedure. We cope by inserting a dummy line if
3692 the address of the first procedure is not 0. Hopefully this
3693 won't screw things up too badly.
3695 Don't do this for ECOFF assembly source line numbers. They work
3696 without this extra attention. */
3697 if (debug_type
!= DEBUG_ECOFF
3698 && first_proc_ptr
!= (proc_t
*) NULL
3699 && local_first_lineno
!= (lineno_list_t
*) NULL
3700 && ((S_GET_VALUE (first_proc_ptr
->sym
->as_sym
)
3701 + bfd_get_section_vma (stdoutput
,
3702 S_GET_SEGMENT (first_proc_ptr
->sym
->as_sym
)))
3705 first
.file
= local_first_lineno
->file
;
3706 first
.proc
= local_first_lineno
->proc
;
3707 first
.frag
= &zero_address_frag
;
3711 first
.next
= local_first_lineno
;
3712 local_first_lineno
= &first
;
3715 for (l
= local_first_lineno
; l
!= (lineno_list_t
*) NULL
; l
= l
->next
)
3720 /* Get the offset to the memory address of the next line number
3721 (in words). Do this first, so that we can skip ahead to the
3722 next useful line number entry. */
3723 if (l
->next
== (lineno_list_t
*) NULL
)
3725 /* We want a count of zero, but it will be decremented
3726 before it is used. */
3729 else if (l
->next
->frag
->fr_address
+ l
->next
->paddr
3730 > l
->frag
->fr_address
+ l
->paddr
)
3732 count
= ((l
->next
->frag
->fr_address
+ l
->next
->paddr
3733 - (l
->frag
->fr_address
+ l
->paddr
))
3738 /* Don't change last, so we still get the right delta. */
3742 if (l
->file
!= file
|| l
->proc
!= proc
)
3744 if (l
->proc
!= proc
&& proc
!= (proc_t
*) NULL
)
3745 proc
->pdr
.lnHigh
= last
->lineno
;
3746 if (l
->file
!= file
&& file
!= (efdr_t
*) NULL
)
3748 file
->fdr
.cbLine
= c
- file
->fdr
.cbLineOffset
;
3749 file
->fdr
.cline
= totcount
+ count
;
3750 if (linecntptr
!= (long *) NULL
)
3751 *linecntptr
+= totcount
+ count
;
3755 if (l
->file
!= file
)
3757 efdr_t
*last_file
= file
;
3760 if (last_file
!= (efdr_t
*) NULL
)
3762 = last_file
->fdr
.ilineBase
+ last_file
->fdr
.cline
;
3764 file
->fdr
.ilineBase
= 0;
3765 file
->fdr
.cbLineOffset
= c
;
3767 if (l
->proc
!= proc
)
3770 if (proc
!= (proc_t
*) NULL
)
3772 proc
->pdr
.lnLow
= l
->lineno
;
3773 proc
->pdr
.cbLineOffset
= c
- file
->fdr
.cbLineOffset
;
3774 proc
->pdr
.iline
= totcount
;
3778 last
= (lineno_list_t
*) NULL
;
3783 /* Get the offset to this line number. */
3784 if (last
== (lineno_list_t
*) NULL
)
3787 delta
= l
->lineno
- last
->lineno
;
3789 /* Put in the offset to this line number. */
3794 /* 1 is added to each count read. */
3796 /* We can only adjust the word count by up to 15 words at a
3808 if (delta
>= -7 && delta
<= 7)
3810 if (bufptr
>= *bufend
)
3811 bufptr
= ecoff_add_bytes (buf
, bufend
, bufptr
, (long) 1);
3812 *bufptr
++ = setcount
+ (delta
<< 4);
3820 if (*bufend
- bufptr
< 3)
3821 bufptr
= ecoff_add_bytes (buf
, bufend
, bufptr
, (long) 3);
3822 *bufptr
++ = setcount
+ (8 << 4);
3823 if (delta
< -0x8000)
3828 else if (delta
> 0x7fff)
3838 *bufptr
++ = set
>> 8;
3839 *bufptr
++ = set
& 0xffff;
3844 /* Finish adjusting the count. */
3847 if (bufptr
>= *bufend
)
3848 bufptr
= ecoff_add_bytes (buf
, bufend
, bufptr
, (long) 1);
3849 /* 1 is added to each count read. */
3868 if (proc
!= (proc_t
*) NULL
)
3869 proc
->pdr
.lnHigh
= last
->lineno
;
3870 if (file
!= (efdr_t
*) NULL
)
3872 file
->fdr
.cbLine
= c
- file
->fdr
.cbLineOffset
;
3873 file
->fdr
.cline
= totcount
;
3876 if (linecntptr
!= (long *) NULL
)
3877 *linecntptr
+= totcount
;
3879 c
= ecoff_padding_adjust (backend
, buf
, bufend
, c
, &bufptr
);
3884 /* Build and swap out the symbols. */
3886 static unsigned long
3887 ecoff_build_symbols (const struct ecoff_debug_swap
*backend
,
3890 unsigned long offset
)
3892 const bfd_size_type external_sym_size
= backend
->external_sym_size
;
3893 void (* const swap_sym_out
) (bfd
*, const SYMR
*, void *)
3894 = backend
->swap_sym_out
;
3897 vlinks_t
*file_link
;
3899 sym_out
= *buf
+ offset
;
3903 /* The symbols are stored by file. */
3904 for (file_link
= file_desc
.first
;
3905 file_link
!= (vlinks_t
*) NULL
;
3906 file_link
= file_link
->next
)
3913 if (file_link
->next
== (vlinks_t
*) NULL
)
3914 fil_cnt
= file_desc
.objects_last_page
;
3916 fil_cnt
= file_desc
.objects_per_page
;
3917 fil_ptr
= file_link
->datum
->file
;
3918 fil_end
= fil_ptr
+ fil_cnt
;
3919 for (; fil_ptr
< fil_end
; fil_ptr
++)
3923 fil_ptr
->fdr
.isymBase
= isym
;
3925 for (sym_link
= fil_ptr
->symbols
.first
;
3926 sym_link
!= (vlinks_t
*) NULL
;
3927 sym_link
= sym_link
->next
)
3930 localsym_t
*sym_ptr
;
3931 localsym_t
*sym_end
;
3933 if (sym_link
->next
== (vlinks_t
*) NULL
)
3934 sym_cnt
= fil_ptr
->symbols
.objects_last_page
;
3936 sym_cnt
= fil_ptr
->symbols
.objects_per_page
;
3937 sym_ptr
= sym_link
->datum
->sym
;
3938 sym_end
= sym_ptr
+ sym_cnt
;
3939 for (; sym_ptr
< sym_end
; sym_ptr
++)
3945 know (sym_ptr
->file_ptr
== fil_ptr
);
3947 /* If there is no associated gas symbol, then this
3948 is a pure debugging symbol. We have already
3949 added the name (if any) to fil_ptr->strings.
3950 Otherwise we must decide whether this is an
3951 external or a local symbol (actually, it may be
3952 both if the local provides additional debugging
3953 information for the external). */
3955 as_sym
= sym_ptr
->as_sym
;
3956 if (as_sym
!= (symbolS
*) NULL
)
3960 /* The value of a block start symbol is the
3961 offset from the start of the procedure. For
3962 other symbols we just use the gas value (but
3963 we must offset it by the vma of the section,
3964 just as BFD does, because BFD will not see
3966 if (sym_ptr
->ecoff_sym
.asym
.st
== (int) st_Block
3967 && sym_ptr
->ecoff_sym
.asym
.sc
== (int) sc_Text
)
3971 know (sym_ptr
->proc_ptr
!= (proc_t
*) NULL
);
3972 begin_sym
= sym_ptr
->proc_ptr
->sym
->as_sym
;
3973 if (S_GET_SEGMENT (as_sym
)
3974 != S_GET_SEGMENT (begin_sym
))
3975 as_warn (_(".begin/.bend in different segments"));
3976 sym_ptr
->ecoff_sym
.asym
.value
=
3977 S_GET_VALUE (as_sym
) - S_GET_VALUE (begin_sym
);
3980 sym_ptr
->ecoff_sym
.asym
.value
=
3981 (S_GET_VALUE (as_sym
)
3982 + bfd_get_section_vma (stdoutput
,
3983 S_GET_SEGMENT (as_sym
))
3986 sym_ptr
->ecoff_sym
.weakext
= S_IS_WEAK (as_sym
);
3988 /* Set st_Proc to st_StaticProc for local
3990 if (sym_ptr
->ecoff_sym
.asym
.st
== st_Proc
3991 && S_IS_DEFINED (as_sym
)
3992 && ! S_IS_EXTERNAL (as_sym
)
3993 && ! S_IS_WEAK (as_sym
))
3994 sym_ptr
->ecoff_sym
.asym
.st
= st_StaticProc
;
3996 /* Get the type and storage class based on where
3997 the symbol actually wound up. Traditionally,
3998 N_LBRAC and N_RBRAC are *not* relocated. */
3999 indx
= sym_ptr
->ecoff_sym
.asym
.index
;
4000 if (sym_ptr
->ecoff_sym
.asym
.st
== st_Nil
4001 && sym_ptr
->ecoff_sym
.asym
.sc
== sc_Nil
4002 && (! ECOFF_IS_STAB (&sym_ptr
->ecoff_sym
.asym
)
4003 || ((ECOFF_UNMARK_STAB (indx
) != N_LBRAC
)
4004 && (ECOFF_UNMARK_STAB (indx
) != N_RBRAC
))))
4007 const char *segname
;
4011 seg
= S_GET_SEGMENT (as_sym
);
4012 segname
= segment_name (seg
);
4014 if (! ECOFF_IS_STAB (&sym_ptr
->ecoff_sym
.asym
)
4015 && (S_IS_EXTERNAL (as_sym
)
4016 || S_IS_WEAK (as_sym
)
4017 || ! S_IS_DEFINED (as_sym
)))
4019 if ((symbol_get_bfdsym (as_sym
)->flags
4020 & BSF_FUNCTION
) != 0)
4025 else if (seg
== text_section
)
4030 if (! S_IS_DEFINED (as_sym
))
4034 s
= symbol_get_obj (as_sym
)->ecoff_extern_size
;
4036 || s
> bfd_get_gp_size (stdoutput
))
4041 sym_ptr
->ecoff_sym
.asym
.value
= s
;
4044 S_SET_SIZE (as_sym
, s
);
4047 else if (S_IS_COMMON (as_sym
))
4049 if (S_GET_VALUE (as_sym
) > 0
4050 && (S_GET_VALUE (as_sym
)
4051 <= bfd_get_gp_size (stdoutput
)))
4056 else if (seg
== text_section
)
4058 else if (seg
== data_section
)
4060 else if (strcmp (segname
, ".rdata") == 0
4061 || strcmp (segname
, ".rodata") == 0)
4063 else if (strcmp (segname
, ".sdata") == 0)
4065 else if (seg
== bss_section
)
4067 else if (strcmp (segname
, ".sbss") == 0)
4069 else if (seg
== &bfd_abs_section
)
4073 /* This must be a user named section.
4074 This is not possible in ECOFF, but it
4079 sym_ptr
->ecoff_sym
.asym
.st
= (int) st
;
4080 sym_ptr
->ecoff_sym
.asym
.sc
= (int) sc
;
4083 /* This is just an external symbol if it is
4084 outside a procedure and it has a type.
4085 FIXME: g++ will generate symbols which have
4086 different names in the debugging information
4087 than the actual symbol. Should we handle
4089 if ((S_IS_EXTERNAL (as_sym
)
4090 || S_IS_WEAK (as_sym
)
4091 || ! S_IS_DEFINED (as_sym
))
4092 && sym_ptr
->proc_ptr
== (proc_t
*) NULL
4093 && sym_ptr
->ecoff_sym
.asym
.st
!= (int) st_Nil
4094 && ! ECOFF_IS_STAB (&sym_ptr
->ecoff_sym
.asym
))
4097 /* This is just an external symbol if it is a
4099 if (S_IS_COMMON (as_sym
))
4102 /* If an st_end symbol has an associated gas
4103 symbol, then it is a local label created for
4104 a .bend or .end directive. Stabs line
4105 numbers will have \001 in the names. */
4107 && sym_ptr
->ecoff_sym
.asym
.st
!= st_End
4108 && strchr (sym_ptr
->name
, '\001') == 0)
4109 sym_ptr
->ecoff_sym
.asym
.iss
=
4110 add_string (&fil_ptr
->strings
,
4116 /* We now know the index of this symbol; fill in
4117 locations that have been waiting for that
4119 if (sym_ptr
->begin_ptr
!= (localsym_t
*) NULL
)
4121 localsym_t
*begin_ptr
;
4125 begin_ptr
= sym_ptr
->begin_ptr
;
4126 know (begin_ptr
->sym_index
!= -1);
4127 sym_ptr
->ecoff_sym
.asym
.index
= begin_ptr
->sym_index
;
4128 if (sym_ptr
->ecoff_sym
.asym
.sc
!= (int) sc_Info
)
4129 sym_ptr
->ecoff_sym
.asym
.iss
=
4130 begin_ptr
->ecoff_sym
.asym
.iss
;
4132 begin_type
= (st_t
) begin_ptr
->ecoff_sym
.asym
.st
;
4133 if (begin_type
== st_File
4134 || begin_type
== st_Block
)
4136 begin_ptr
->ecoff_sym
.asym
.index
=
4137 isym
- ifilesym
+ 1;
4138 (*swap_sym_out
) (stdoutput
,
4139 &begin_ptr
->ecoff_sym
.asym
,
4142 + (begin_ptr
->sym_index
4143 * external_sym_size
)));
4147 know (begin_ptr
->index_ptr
!= (aux_t
*) NULL
);
4148 begin_ptr
->index_ptr
->data
.isym
=
4149 isym
- ifilesym
+ 1;
4152 /* The value of the symbol marking the end of a
4153 procedure is the size of the procedure. The
4154 value of the symbol marking the end of a
4155 block is the offset from the start of the
4156 procedure to the block. */
4157 if (begin_type
== st_Proc
4158 || begin_type
== st_StaticProc
)
4160 know (as_sym
!= (symbolS
*) NULL
);
4161 know (begin_ptr
->as_sym
!= (symbolS
*) NULL
);
4162 if (S_GET_SEGMENT (as_sym
)
4163 != S_GET_SEGMENT (begin_ptr
->as_sym
))
4164 as_warn (_(".begin/.bend in different segments"));
4165 sym_ptr
->ecoff_sym
.asym
.value
=
4166 (S_GET_VALUE (as_sym
)
4167 - S_GET_VALUE (begin_ptr
->as_sym
));
4169 /* If the size is odd, this is probably a
4170 mips16 function; force it to be even. */
4171 if ((sym_ptr
->ecoff_sym
.asym
.value
& 1) != 0)
4172 ++sym_ptr
->ecoff_sym
.asym
.value
;
4175 S_SET_SIZE (begin_ptr
->as_sym
,
4176 sym_ptr
->ecoff_sym
.asym
.value
);
4179 else if (begin_type
== st_Block
4180 && sym_ptr
->ecoff_sym
.asym
.sc
!= (int) sc_Info
)
4184 know (as_sym
!= (symbolS
*) NULL
);
4185 know (sym_ptr
->proc_ptr
!= (proc_t
*) NULL
);
4186 begin_sym
= sym_ptr
->proc_ptr
->sym
->as_sym
;
4187 if (S_GET_SEGMENT (as_sym
)
4188 != S_GET_SEGMENT (begin_sym
))
4189 as_warn (_(".begin/.bend in different segments"));
4190 sym_ptr
->ecoff_sym
.asym
.value
=
4191 S_GET_VALUE (as_sym
) - S_GET_VALUE (begin_sym
);
4195 for (f
= sym_ptr
->forward_ref
;
4196 f
!= (forward_t
*) NULL
;
4200 f
->ifd_ptr
->data
.isym
= fil_ptr
->file_index
;
4201 f
->index_ptr
->data
.rndx
.index
= isym
- ifilesym
;
4206 if ((bfd_size_type
)(*bufend
- sym_out
) < external_sym_size
)
4207 sym_out
= ecoff_add_bytes (buf
, bufend
,
4210 (*swap_sym_out
) (stdoutput
, &sym_ptr
->ecoff_sym
.asym
,
4212 sym_out
+= external_sym_size
;
4214 sym_ptr
->sym_index
= isym
;
4216 if (sym_ptr
->proc_ptr
!= (proc_t
*) NULL
4217 && sym_ptr
->proc_ptr
->sym
== sym_ptr
)
4218 sym_ptr
->proc_ptr
->pdr
.isym
= isym
- ifilesym
;
4223 /* Record the local symbol index and file number in
4224 case this is an external symbol. Note that this
4225 destroys the asym.index field. */
4226 if (as_sym
!= (symbolS
*) NULL
4227 && symbol_get_obj (as_sym
)->ecoff_symbol
== sym_ptr
)
4229 if ((sym_ptr
->ecoff_sym
.asym
.st
== st_Proc
4230 || sym_ptr
->ecoff_sym
.asym
.st
== st_StaticProc
)
4232 sym_ptr
->ecoff_sym
.asym
.index
= isym
- ifilesym
- 1;
4233 sym_ptr
->ecoff_sym
.ifd
= fil_ptr
->file_index
;
4235 /* Don't try to merge an FDR which has an
4236 external symbol attached to it. */
4237 if (S_IS_EXTERNAL (as_sym
) || S_IS_WEAK (as_sym
))
4238 fil_ptr
->fdr
.fMerge
= 0;
4242 fil_ptr
->fdr
.csym
= isym
- fil_ptr
->fdr
.isymBase
;
4246 return offset
+ isym
* external_sym_size
;
4249 /* Swap out the procedure information. */
4251 static unsigned long
4252 ecoff_build_procs (const struct ecoff_debug_swap
*backend
,
4255 unsigned long offset
)
4257 const bfd_size_type external_pdr_size
= backend
->external_pdr_size
;
4258 void (* const swap_pdr_out
) (bfd
*, const PDR
*, void *)
4259 = backend
->swap_pdr_out
;
4262 vlinks_t
*file_link
;
4264 pdr_out
= *buf
+ offset
;
4268 /* The procedures are stored by file. */
4269 for (file_link
= file_desc
.first
;
4270 file_link
!= (vlinks_t
*) NULL
;
4271 file_link
= file_link
->next
)
4277 if (file_link
->next
== (vlinks_t
*) NULL
)
4278 fil_cnt
= file_desc
.objects_last_page
;
4280 fil_cnt
= file_desc
.objects_per_page
;
4281 fil_ptr
= file_link
->datum
->file
;
4282 fil_end
= fil_ptr
+ fil_cnt
;
4283 for (; fil_ptr
< fil_end
; fil_ptr
++)
4285 vlinks_t
*proc_link
;
4288 fil_ptr
->fdr
.ipdFirst
= iproc
;
4290 for (proc_link
= fil_ptr
->procs
.first
;
4291 proc_link
!= (vlinks_t
*) NULL
;
4292 proc_link
= proc_link
->next
)
4298 if (proc_link
->next
== (vlinks_t
*) NULL
)
4299 prc_cnt
= fil_ptr
->procs
.objects_last_page
;
4301 prc_cnt
= fil_ptr
->procs
.objects_per_page
;
4302 proc_ptr
= proc_link
->datum
->proc
;
4303 proc_end
= proc_ptr
+ prc_cnt
;
4304 for (; proc_ptr
< proc_end
; proc_ptr
++)
4309 adr_sym
= proc_ptr
->sym
->as_sym
;
4310 adr
= (S_GET_VALUE (adr_sym
)
4311 + bfd_get_section_vma (stdoutput
,
4312 S_GET_SEGMENT (adr_sym
)));
4315 /* This code used to force the adr of the very
4316 first fdr to be 0. However, the native tools
4317 don't do that, and I can't remember why it
4318 used to work that way, so I took it out. */
4319 fil_ptr
->fdr
.adr
= adr
;
4322 proc_ptr
->pdr
.adr
= adr
- fil_ptr
->fdr
.adr
;
4323 if ((bfd_size_type
)(*bufend
- pdr_out
) < external_pdr_size
)
4324 pdr_out
= ecoff_add_bytes (buf
, bufend
,
4327 (*swap_pdr_out
) (stdoutput
, &proc_ptr
->pdr
, pdr_out
);
4328 pdr_out
+= external_pdr_size
;
4332 fil_ptr
->fdr
.cpd
= iproc
- fil_ptr
->fdr
.ipdFirst
;
4336 return offset
+ iproc
* external_pdr_size
;
4339 /* Swap out the aux information. */
4341 static unsigned long
4342 ecoff_build_aux (const struct ecoff_debug_swap
*backend
,
4345 unsigned long offset
)
4348 union aux_ext
*aux_out
;
4350 vlinks_t
*file_link
;
4352 bigendian
= bfd_big_endian (stdoutput
);
4354 aux_out
= (union aux_ext
*) (*buf
+ offset
);
4358 /* The aux entries are stored by file. */
4359 for (file_link
= file_desc
.first
;
4360 file_link
!= (vlinks_t
*) NULL
;
4361 file_link
= file_link
->next
)
4367 if (file_link
->next
== (vlinks_t
*) NULL
)
4368 fil_cnt
= file_desc
.objects_last_page
;
4370 fil_cnt
= file_desc
.objects_per_page
;
4371 fil_ptr
= file_link
->datum
->file
;
4372 fil_end
= fil_ptr
+ fil_cnt
;
4373 for (; fil_ptr
< fil_end
; fil_ptr
++)
4377 fil_ptr
->fdr
.fBigendian
= bigendian
;
4378 fil_ptr
->fdr
.iauxBase
= iaux
;
4379 for (aux_link
= fil_ptr
->aux_syms
.first
;
4380 aux_link
!= (vlinks_t
*) NULL
;
4381 aux_link
= aux_link
->next
)
4387 if (aux_link
->next
== (vlinks_t
*) NULL
)
4388 aux_cnt
= fil_ptr
->aux_syms
.objects_last_page
;
4390 aux_cnt
= fil_ptr
->aux_syms
.objects_per_page
;
4391 aux_ptr
= aux_link
->datum
->aux
;
4392 aux_end
= aux_ptr
+ aux_cnt
;
4393 for (; aux_ptr
< aux_end
; aux_ptr
++)
4395 if ((unsigned long) (*bufend
- (char *) aux_out
)
4396 < sizeof (union aux_ext
))
4397 aux_out
= ((union aux_ext
*)
4398 ecoff_add_bytes (buf
, bufend
,
4400 sizeof (union aux_ext
)));
4401 switch (aux_ptr
->type
)
4404 (*backend
->swap_tir_out
) (bigendian
,
4409 (*backend
->swap_rndx_out
) (bigendian
,
4410 &aux_ptr
->data
.rndx
,
4414 AUX_PUT_DNLOW (bigendian
, aux_ptr
->data
.dnLow
,
4418 AUX_PUT_DNHIGH (bigendian
, aux_ptr
->data
.dnHigh
,
4422 AUX_PUT_ISYM (bigendian
, aux_ptr
->data
.isym
,
4426 AUX_PUT_ISS (bigendian
, aux_ptr
->data
.iss
,
4430 AUX_PUT_WIDTH (bigendian
, aux_ptr
->data
.width
,
4434 AUX_PUT_COUNT (bigendian
, aux_ptr
->data
.count
,
4443 fil_ptr
->fdr
.caux
= iaux
- fil_ptr
->fdr
.iauxBase
;
4447 return ecoff_padding_adjust (backend
, buf
, bufend
,
4448 offset
+ iaux
* sizeof (union aux_ext
),
4452 /* Copy out the strings from a varray_t. This returns the number of
4453 bytes copied, rather than the new offset. */
4455 static unsigned long
4456 ecoff_build_strings (char **buf
,
4458 unsigned long offset
,
4465 str_out
= *buf
+ offset
;
4469 for (str_link
= vp
->first
;
4470 str_link
!= (vlinks_t
*) NULL
;
4471 str_link
= str_link
->next
)
4473 unsigned long str_cnt
;
4475 if (str_link
->next
== (vlinks_t
*) NULL
)
4476 str_cnt
= vp
->objects_last_page
;
4478 str_cnt
= vp
->objects_per_page
;
4480 if ((unsigned long)(*bufend
- str_out
) < str_cnt
)
4481 str_out
= ecoff_add_bytes (buf
, bufend
, str_out
, str_cnt
);
4483 memcpy (str_out
, str_link
->datum
->byte
, str_cnt
);
4491 /* Dump out the local strings. */
4493 static unsigned long
4494 ecoff_build_ss (const struct ecoff_debug_swap
*backend
,
4497 unsigned long offset
)
4500 vlinks_t
*file_link
;
4504 for (file_link
= file_desc
.first
;
4505 file_link
!= (vlinks_t
*) NULL
;
4506 file_link
= file_link
->next
)
4512 if (file_link
->next
== (vlinks_t
*) NULL
)
4513 fil_cnt
= file_desc
.objects_last_page
;
4515 fil_cnt
= file_desc
.objects_per_page
;
4516 fil_ptr
= file_link
->datum
->file
;
4517 fil_end
= fil_ptr
+ fil_cnt
;
4518 for (; fil_ptr
< fil_end
; fil_ptr
++)
4522 fil_ptr
->fdr
.issBase
= iss
;
4523 ss_cnt
= ecoff_build_strings (buf
, bufend
, offset
+ iss
,
4525 fil_ptr
->fdr
.cbSs
= ss_cnt
;
4530 return ecoff_padding_adjust (backend
, buf
, bufend
, offset
+ iss
,
4534 /* Swap out the file descriptors. */
4536 static unsigned long
4537 ecoff_build_fdr (const struct ecoff_debug_swap
*backend
,
4540 unsigned long offset
)
4542 const bfd_size_type external_fdr_size
= backend
->external_fdr_size
;
4543 void (* const swap_fdr_out
) (bfd
*, const FDR
*, void *)
4544 = backend
->swap_fdr_out
;
4547 vlinks_t
*file_link
;
4551 fdr_out
= *buf
+ offset
;
4553 for (file_link
= file_desc
.first
;
4554 file_link
!= (vlinks_t
*) NULL
;
4555 file_link
= file_link
->next
)
4561 if (file_link
->next
== (vlinks_t
*) NULL
)
4562 fil_cnt
= file_desc
.objects_last_page
;
4564 fil_cnt
= file_desc
.objects_per_page
;
4565 fil_ptr
= file_link
->datum
->file
;
4566 fil_end
= fil_ptr
+ fil_cnt
;
4567 for (; fil_ptr
< fil_end
; fil_ptr
++)
4569 if ((bfd_size_type
)(*bufend
- fdr_out
) < external_fdr_size
)
4570 fdr_out
= ecoff_add_bytes (buf
, bufend
, fdr_out
,
4572 (*swap_fdr_out
) (stdoutput
, &fil_ptr
->fdr
, fdr_out
);
4573 fdr_out
+= external_fdr_size
;
4578 return offset
+ ifile
* external_fdr_size
;
4581 /* Set up the external symbols. These are supposed to be handled by
4582 the backend. This routine just gets the right information and
4583 calls a backend function to deal with it. */
4586 ecoff_setup_ext (void)
4588 register symbolS
*sym
;
4590 for (sym
= symbol_rootP
; sym
!= (symbolS
*) NULL
; sym
= symbol_next (sym
))
4592 if (symbol_get_obj (sym
)->ecoff_symbol
== NULL
)
4595 /* If this is a local symbol, then force the fields to zero. */
4596 if (! S_IS_EXTERNAL (sym
)
4597 && ! S_IS_WEAK (sym
)
4598 && S_IS_DEFINED (sym
))
4600 struct localsym
*lsym
;
4602 lsym
= symbol_get_obj (sym
)->ecoff_symbol
;
4603 lsym
->ecoff_sym
.asym
.value
= 0;
4604 lsym
->ecoff_sym
.asym
.st
= (int) st_Nil
;
4605 lsym
->ecoff_sym
.asym
.sc
= (int) sc_Nil
;
4606 lsym
->ecoff_sym
.asym
.index
= indexNil
;
4609 obj_ecoff_set_ext (sym
, &symbol_get_obj (sym
)->ecoff_symbol
->ecoff_sym
);
4613 /* Build the ECOFF debugging information. */
4616 ecoff_build_debug (HDRR
*hdr
,
4618 const struct ecoff_debug_swap
*backend
)
4620 const bfd_size_type external_pdr_size
= backend
->external_pdr_size
;
4625 efdr_t
*hold_file_ptr
;
4626 proc_t
*hold_proc_ptr
;
4630 unsigned long offset
;
4632 /* Make sure we have a file. */
4633 if (first_file
== (efdr_t
*) NULL
)
4634 add_file ((const char *) NULL
, 0, 1);
4636 /* Handle any top level tags. */
4637 for (ptag
= top_tag_head
->first_tag
;
4638 ptag
!= (tag_t
*) NULL
;
4641 if (ptag
->forward_ref
!= (forward_t
*) NULL
)
4642 add_unknown_tag (ptag
);
4644 ptag_next
= ptag
->same_block
;
4645 ptag
->hash_ptr
->tag_ptr
= ptag
->same_name
;
4649 free_thead (top_tag_head
);
4651 /* Look through the symbols. Add debugging information for each
4652 symbol that has not already received it. */
4653 hold_file_ptr
= cur_file_ptr
;
4654 hold_proc_ptr
= cur_proc_ptr
;
4655 cur_proc_ptr
= (proc_t
*) NULL
;
4656 for (sym
= symbol_rootP
; sym
!= (symbolS
*) NULL
; sym
= symbol_next (sym
))
4658 if (symbol_get_obj (sym
)->ecoff_symbol
!= NULL
4659 || symbol_get_obj (sym
)->ecoff_file
== (efdr_t
*) NULL
4660 || (symbol_get_bfdsym (sym
)->flags
& BSF_SECTION_SYM
) != 0)
4663 cur_file_ptr
= symbol_get_obj (sym
)->ecoff_file
;
4664 add_ecoff_symbol ((const char *) NULL
, st_Nil
, sc_Nil
, sym
,
4665 (bfd_vma
) 0, S_GET_VALUE (sym
), indexNil
);
4667 cur_proc_ptr
= hold_proc_ptr
;
4668 cur_file_ptr
= hold_file_ptr
;
4670 /* Output an ending symbol for all the files. We have to do this
4671 here for the last file, so we may as well do it for all of the
4674 for (fil_ptr
= first_file
;
4675 fil_ptr
!= (efdr_t
*) NULL
;
4676 fil_ptr
= fil_ptr
->next_file
)
4678 cur_file_ptr
= fil_ptr
;
4679 while (cur_file_ptr
->cur_scope
!= (scope_t
*) NULL
4680 && cur_file_ptr
->cur_scope
->prev
!= (scope_t
*) NULL
)
4682 cur_file_ptr
->cur_scope
= cur_file_ptr
->cur_scope
->prev
;
4683 if (! end_warning
&& ! cur_file_ptr
->fake
)
4685 as_warn (_("missing .end or .bend at end of file"));
4689 if (cur_file_ptr
->cur_scope
!= (scope_t
*) NULL
)
4690 (void) add_ecoff_symbol ((const char *) NULL
,
4698 /* Build the symbolic information. */
4700 buf
= (char *) xmalloc (PAGE_SIZE
);
4701 bufend
= buf
+ PAGE_SIZE
;
4703 /* Build the line number information. */
4704 hdr
->cbLineOffset
= offset
;
4705 offset
= ecoff_build_lineno (backend
, &buf
, &bufend
, offset
,
4707 hdr
->cbLine
= offset
- hdr
->cbLineOffset
;
4709 /* We don't use dense numbers at all. */
4711 hdr
->cbDnOffset
= 0;
4713 /* We can't build the PDR table until we have built the symbols,
4714 because a PDR contains a symbol index. However, we set aside
4715 space at this point. */
4716 hdr
->ipdMax
= proc_cnt
;
4717 hdr
->cbPdOffset
= offset
;
4718 if ((bfd_size_type
)(bufend
- (buf
+ offset
)) < proc_cnt
* external_pdr_size
)
4719 (void) ecoff_add_bytes (&buf
, &bufend
, buf
+ offset
,
4720 proc_cnt
* external_pdr_size
);
4721 offset
+= proc_cnt
* external_pdr_size
;
4723 /* Build the local symbols. */
4724 hdr
->cbSymOffset
= offset
;
4725 offset
= ecoff_build_symbols (backend
, &buf
, &bufend
, offset
);
4726 hdr
->isymMax
= (offset
- hdr
->cbSymOffset
) / backend
->external_sym_size
;
4728 /* Building the symbols initializes the symbol index in the PDR's.
4729 Now we can swap out the PDR's. */
4730 (void) ecoff_build_procs (backend
, &buf
, &bufend
, hdr
->cbPdOffset
);
4732 /* We don't use optimization symbols. */
4734 hdr
->cbOptOffset
= 0;
4736 /* Swap out the auxiliary type information. */
4737 hdr
->cbAuxOffset
= offset
;
4738 offset
= ecoff_build_aux (backend
, &buf
, &bufend
, offset
);
4739 hdr
->iauxMax
= (offset
- hdr
->cbAuxOffset
) / sizeof (union aux_ext
);
4741 /* Copy out the local strings. */
4742 hdr
->cbSsOffset
= offset
;
4743 offset
= ecoff_build_ss (backend
, &buf
, &bufend
, offset
);
4744 hdr
->issMax
= offset
- hdr
->cbSsOffset
;
4746 /* We don't use relative file descriptors. */
4748 hdr
->cbRfdOffset
= 0;
4750 /* Swap out the file descriptors. */
4751 hdr
->cbFdOffset
= offset
;
4752 offset
= ecoff_build_fdr (backend
, &buf
, &bufend
, offset
);
4753 hdr
->ifdMax
= (offset
- hdr
->cbFdOffset
) / backend
->external_fdr_size
;
4755 /* Set up the external symbols, which are handled by the BFD back
4758 hdr
->cbSsExtOffset
= 0;
4760 hdr
->cbExtOffset
= 0;
4763 know ((offset
& (backend
->debug_align
- 1)) == 0);
4765 /* FIXME: This value should be determined from the .verstamp directive,
4766 with reasonable defaults in config files. */
4768 hdr
->vstamp
= 0x030b;
4770 hdr
->vstamp
= 0x020b;
4777 /* Allocate a cluster of pages. */
4779 #ifndef MALLOC_CHECK
4782 allocate_cluster (unsigned long npages
)
4784 register page_type
*value
= (page_type
*) xmalloc (npages
* PAGE_USIZE
);
4788 fprintf (stderr
, "\talloc\tnpages = %d, value = 0x%.8x\n", npages
, value
);
4791 memset (value
, 0, npages
* PAGE_USIZE
);
4796 static page_type
*cluster_ptr
= NULL
;
4797 static unsigned long pages_left
= 0;
4799 #endif /* MALLOC_CHECK */
4801 /* Allocate one page (which is initialized to 0). */
4804 allocate_page (void)
4806 #ifndef MALLOC_CHECK
4808 if (pages_left
== 0)
4810 pages_left
= MAX_CLUSTER_PAGES
;
4811 cluster_ptr
= allocate_cluster (pages_left
);
4815 return cluster_ptr
++;
4817 #else /* MALLOC_CHECK */
4821 ptr
= xmalloc (PAGE_USIZE
);
4822 memset (ptr
, 0, PAGE_USIZE
);
4825 #endif /* MALLOC_CHECK */
4828 /* Allocate scoping information. */
4831 allocate_scope (void)
4833 register scope_t
*ptr
;
4834 static scope_t initial_scope
;
4836 #ifndef MALLOC_CHECK
4838 ptr
= alloc_counts
[(int) alloc_type_scope
].free_list
.f_scope
;
4839 if (ptr
!= (scope_t
*) NULL
)
4840 alloc_counts
[(int) alloc_type_scope
].free_list
.f_scope
= ptr
->free
;
4843 register int unallocated
= alloc_counts
[(int) alloc_type_scope
].unallocated
;
4844 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_scope
].cur_page
;
4846 if (unallocated
== 0)
4848 unallocated
= PAGE_SIZE
/ sizeof (scope_t
);
4849 alloc_counts
[(int) alloc_type_scope
].cur_page
= cur_page
= allocate_page ();
4850 alloc_counts
[(int) alloc_type_scope
].total_pages
++;
4853 ptr
= &cur_page
->scope
[--unallocated
];
4854 alloc_counts
[(int) alloc_type_scope
].unallocated
= unallocated
;
4859 ptr
= (scope_t
*) xmalloc (sizeof (scope_t
));
4863 alloc_counts
[(int) alloc_type_scope
].total_alloc
++;
4864 *ptr
= initial_scope
;
4868 /* Free scoping information. */
4871 free_scope (scope_t
*ptr
)
4873 alloc_counts
[(int) alloc_type_scope
].total_free
++;
4875 #ifndef MALLOC_CHECK
4876 ptr
->free
= alloc_counts
[(int) alloc_type_scope
].free_list
.f_scope
;
4877 alloc_counts
[(int) alloc_type_scope
].free_list
.f_scope
= ptr
;
4879 free ((void *) ptr
);
4883 /* Allocate links for pages in a virtual array. */
4886 allocate_vlinks (void)
4888 register vlinks_t
*ptr
;
4889 static vlinks_t initial_vlinks
;
4891 #ifndef MALLOC_CHECK
4893 register int unallocated
= alloc_counts
[(int) alloc_type_vlinks
].unallocated
;
4894 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_vlinks
].cur_page
;
4896 if (unallocated
== 0)
4898 unallocated
= PAGE_SIZE
/ sizeof (vlinks_t
);
4899 alloc_counts
[(int) alloc_type_vlinks
].cur_page
= cur_page
= allocate_page ();
4900 alloc_counts
[(int) alloc_type_vlinks
].total_pages
++;
4903 ptr
= &cur_page
->vlinks
[--unallocated
];
4904 alloc_counts
[(int) alloc_type_vlinks
].unallocated
= unallocated
;
4908 ptr
= (vlinks_t
*) xmalloc (sizeof (vlinks_t
));
4912 alloc_counts
[(int) alloc_type_vlinks
].total_alloc
++;
4913 *ptr
= initial_vlinks
;
4917 /* Allocate string hash buckets. */
4920 allocate_shash (void)
4922 register shash_t
*ptr
;
4923 static shash_t initial_shash
;
4925 #ifndef MALLOC_CHECK
4927 register int unallocated
= alloc_counts
[(int) alloc_type_shash
].unallocated
;
4928 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_shash
].cur_page
;
4930 if (unallocated
== 0)
4932 unallocated
= PAGE_SIZE
/ sizeof (shash_t
);
4933 alloc_counts
[(int) alloc_type_shash
].cur_page
= cur_page
= allocate_page ();
4934 alloc_counts
[(int) alloc_type_shash
].total_pages
++;
4937 ptr
= &cur_page
->shash
[--unallocated
];
4938 alloc_counts
[(int) alloc_type_shash
].unallocated
= unallocated
;
4942 ptr
= (shash_t
*) xmalloc (sizeof (shash_t
));
4946 alloc_counts
[(int) alloc_type_shash
].total_alloc
++;
4947 *ptr
= initial_shash
;
4951 /* Allocate type hash buckets. */
4954 allocate_thash (void)
4956 register thash_t
*ptr
;
4957 static thash_t initial_thash
;
4959 #ifndef MALLOC_CHECK
4961 register int unallocated
= alloc_counts
[(int) alloc_type_thash
].unallocated
;
4962 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_thash
].cur_page
;
4964 if (unallocated
== 0)
4966 unallocated
= PAGE_SIZE
/ sizeof (thash_t
);
4967 alloc_counts
[(int) alloc_type_thash
].cur_page
= cur_page
= allocate_page ();
4968 alloc_counts
[(int) alloc_type_thash
].total_pages
++;
4971 ptr
= &cur_page
->thash
[--unallocated
];
4972 alloc_counts
[(int) alloc_type_thash
].unallocated
= unallocated
;
4976 ptr
= (thash_t
*) xmalloc (sizeof (thash_t
));
4980 alloc_counts
[(int) alloc_type_thash
].total_alloc
++;
4981 *ptr
= initial_thash
;
4985 /* Allocate structure, union, or enum tag information. */
4990 register tag_t
*ptr
;
4991 static tag_t initial_tag
;
4993 #ifndef MALLOC_CHECK
4995 ptr
= alloc_counts
[(int) alloc_type_tag
].free_list
.f_tag
;
4996 if (ptr
!= (tag_t
*) NULL
)
4997 alloc_counts
[(int) alloc_type_tag
].free_list
.f_tag
= ptr
->free
;
5000 register int unallocated
= alloc_counts
[(int) alloc_type_tag
].unallocated
;
5001 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_tag
].cur_page
;
5003 if (unallocated
== 0)
5005 unallocated
= PAGE_SIZE
/ sizeof (tag_t
);
5006 alloc_counts
[(int) alloc_type_tag
].cur_page
= cur_page
= allocate_page ();
5007 alloc_counts
[(int) alloc_type_tag
].total_pages
++;
5010 ptr
= &cur_page
->tag
[--unallocated
];
5011 alloc_counts
[(int) alloc_type_tag
].unallocated
= unallocated
;
5016 ptr
= (tag_t
*) xmalloc (sizeof (tag_t
));
5020 alloc_counts
[(int) alloc_type_tag
].total_alloc
++;
5025 /* Free scoping information. */
5028 free_tag (tag_t
*ptr
)
5030 alloc_counts
[(int) alloc_type_tag
].total_free
++;
5032 #ifndef MALLOC_CHECK
5033 ptr
->free
= alloc_counts
[(int) alloc_type_tag
].free_list
.f_tag
;
5034 alloc_counts
[(int) alloc_type_tag
].free_list
.f_tag
= ptr
;
5040 /* Allocate forward reference to a yet unknown tag. */
5043 allocate_forward (void)
5045 register forward_t
*ptr
;
5046 static forward_t initial_forward
;
5048 #ifndef MALLOC_CHECK
5050 register int unallocated
= alloc_counts
[(int) alloc_type_forward
].unallocated
;
5051 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_forward
].cur_page
;
5053 if (unallocated
== 0)
5055 unallocated
= PAGE_SIZE
/ sizeof (forward_t
);
5056 alloc_counts
[(int) alloc_type_forward
].cur_page
= cur_page
= allocate_page ();
5057 alloc_counts
[(int) alloc_type_forward
].total_pages
++;
5060 ptr
= &cur_page
->forward
[--unallocated
];
5061 alloc_counts
[(int) alloc_type_forward
].unallocated
= unallocated
;
5065 ptr
= (forward_t
*) xmalloc (sizeof (forward_t
));
5069 alloc_counts
[(int) alloc_type_forward
].total_alloc
++;
5070 *ptr
= initial_forward
;
5074 /* Allocate head of type hash list. */
5077 allocate_thead (void)
5079 register thead_t
*ptr
;
5080 static thead_t initial_thead
;
5082 #ifndef MALLOC_CHECK
5084 ptr
= alloc_counts
[(int) alloc_type_thead
].free_list
.f_thead
;
5085 if (ptr
!= (thead_t
*) NULL
)
5086 alloc_counts
[(int) alloc_type_thead
].free_list
.f_thead
= ptr
->free
;
5089 register int unallocated
= alloc_counts
[(int) alloc_type_thead
].unallocated
;
5090 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_thead
].cur_page
;
5092 if (unallocated
== 0)
5094 unallocated
= PAGE_SIZE
/ sizeof (thead_t
);
5095 alloc_counts
[(int) alloc_type_thead
].cur_page
= cur_page
= allocate_page ();
5096 alloc_counts
[(int) alloc_type_thead
].total_pages
++;
5099 ptr
= &cur_page
->thead
[--unallocated
];
5100 alloc_counts
[(int) alloc_type_thead
].unallocated
= unallocated
;
5105 ptr
= (thead_t
*) xmalloc (sizeof (thead_t
));
5109 alloc_counts
[(int) alloc_type_thead
].total_alloc
++;
5110 *ptr
= initial_thead
;
5114 /* Free scoping information. */
5117 free_thead (thead_t
*ptr
)
5119 alloc_counts
[(int) alloc_type_thead
].total_free
++;
5121 #ifndef MALLOC_CHECK
5122 ptr
->free
= (thead_t
*) alloc_counts
[(int) alloc_type_thead
].free_list
.f_thead
;
5123 alloc_counts
[(int) alloc_type_thead
].free_list
.f_thead
= ptr
;
5129 static lineno_list_t
*
5130 allocate_lineno_list (void)
5132 register lineno_list_t
*ptr
;
5133 static lineno_list_t initial_lineno_list
;
5135 #ifndef MALLOC_CHECK
5137 register int unallocated
= alloc_counts
[(int) alloc_type_lineno
].unallocated
;
5138 register page_type
*cur_page
= alloc_counts
[(int) alloc_type_lineno
].cur_page
;
5140 if (unallocated
== 0)
5142 unallocated
= PAGE_SIZE
/ sizeof (lineno_list_t
);
5143 alloc_counts
[(int) alloc_type_lineno
].cur_page
= cur_page
= allocate_page ();
5144 alloc_counts
[(int) alloc_type_lineno
].total_pages
++;
5147 ptr
= &cur_page
->lineno
[--unallocated
];
5148 alloc_counts
[(int) alloc_type_lineno
].unallocated
= unallocated
;
5152 ptr
= (lineno_list_t
*) xmalloc (sizeof (lineno_list_t
));
5156 alloc_counts
[(int) alloc_type_lineno
].total_alloc
++;
5157 *ptr
= initial_lineno_list
;
5162 ecoff_set_gp_prolog_size (int sz
)
5164 if (cur_proc_ptr
== 0)
5167 cur_proc_ptr
->pdr
.gp_prologue
= sz
;
5168 if (cur_proc_ptr
->pdr
.gp_prologue
!= sz
)
5170 as_warn (_("GP prologue size exceeds field size, using 0 instead"));
5171 cur_proc_ptr
->pdr
.gp_prologue
= 0;
5174 cur_proc_ptr
->pdr
.gp_used
= 1;
5178 ecoff_no_current_file (void)
5180 return cur_file_ptr
== (efdr_t
*) NULL
;
5184 ecoff_generate_asm_lineno (void)
5186 unsigned int lineno
;
5188 lineno_list_t
*list
;
5190 as_where (&filename
, &lineno
);
5192 if (current_stabs_filename
== (char *) NULL
5193 || strcmp (current_stabs_filename
, filename
))
5194 add_file (filename
, 0, 1);
5196 list
= allocate_lineno_list ();
5198 list
->next
= (lineno_list_t
*) NULL
;
5199 list
->file
= cur_file_ptr
;
5200 list
->proc
= cur_proc_ptr
;
5201 list
->frag
= frag_now
;
5202 list
->paddr
= frag_now_fix ();
5203 list
->lineno
= lineno
;
5205 /* We don't want to merge files which have line numbers. */
5206 cur_file_ptr
->fdr
.fMerge
= 0;
5208 /* A .loc directive will sometimes appear before a .ent directive,
5209 which means that cur_proc_ptr will be NULL here. Arrange to
5211 if (cur_proc_ptr
== (proc_t
*) NULL
)
5215 pl
= &noproc_lineno
;
5216 while (*pl
!= (lineno_list_t
*) NULL
)
5223 *last_lineno_ptr
= list
;
5224 last_lineno_ptr
= &list
->next
;
5231 ecoff_generate_asm_lineno (void)
5235 #endif /* ECOFF_DEBUGGING */