]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/config/obj-ecoff.c
gcc lint. See ChangeLog for details. Also:
[thirdparty/binutils-gdb.git] / gas / config / obj-ecoff.c
1 /* ECOFF object file format.
2 Copyright (C) 1993 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4 This file was put together by Ian Lance Taylor <ian@cygnus.com>. A
5 good deal of it comes directly from mips-tfile.c, by Michael
6 Meissner <meissner@osf.org>.
7
8 This file is part of GAS.
9
10 GAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 GAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GAS; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
23
24 #include "as.h"
25 #include "coff/internal.h"
26 #include "coff/sym.h"
27 #include "coff/symconst.h"
28 #include "coff/ecoff.h"
29 #include "aout/stab_gnu.h"
30 #include "../bfd/libcoff.h"
31 #include "../bfd/libecoff.h"
32
33 #include <ctype.h>
34
35 /* Why isn't this in coff/sym.h? */
36 #define ST_RFDESCAPE 0xfff
37
38 /* Why isn't this in listing.h? */
39 extern int listing;
40
41 /* The ECOFF file format uses COFF style sections, but with a unique
42 debugging format. We just build generic BFD sections since BFD
43 knows how to write them out. The debugging format, however, we
44 must construct here; all BFD knows at the moment is to write it out
45 as a large block of data.
46
47 We support both COFF style debugging and stabs debugging (the stabs
48 symbols are encapsulated in COFF symbols). This should let us
49 handle anything the compiler might throw at us. Parsing the COFF
50 and stabs debugging information is similar to work done by COFF and
51 a.out targets, but since the result is completely different the
52 code is not shared. */
53
54 /* Here is a brief description of the MIPS ECOFF symbol table, by
55 Michael Meissner. The MIPS symbol table has the following pieces:
56
57 Symbolic Header
58 |
59 +-- Auxiliary Symbols
60 |
61 +-- Dense number table
62 |
63 +-- Optimizer Symbols
64 |
65 +-- External Strings
66 |
67 +-- External Symbols
68 |
69 +-- Relative file descriptors
70 |
71 +-- File table
72 |
73 +-- Procedure table
74 |
75 +-- Line number table
76 |
77 +-- Local Strings
78 |
79 +-- Local Symbols
80
81 The symbolic header points to each of the other tables, and also
82 contains the number of entries. It also contains a magic number
83 and MIPS compiler version number, such as 2.0.
84
85 The auxiliary table is a series of 32 bit integers, that are
86 referenced as needed from the local symbol table. Unlike standard
87 COFF, the aux. information does not follow the symbol that uses
88 it, but rather is a separate table. In theory, this would allow
89 the MIPS compilers to collapse duplicate aux. entries, but I've not
90 noticed this happening with the 1.31 compiler suite. The different
91 types of aux. entries are:
92
93 1) dnLow: Low bound on array dimension.
94
95 2) dnHigh: High bound on array dimension.
96
97 3) isym: Index to the local symbol which is the start of the
98 function for the end of function first aux. entry.
99
100 4) width: Width of structures and bitfields.
101
102 5) count: Count of ranges for variant part.
103
104 6) rndx: A relative index into the symbol table. The relative
105 index field has two parts: rfd which is a pointer into the
106 relative file index table or ST_RFDESCAPE which says the next
107 aux. entry is the file number, and index: which is the pointer
108 into the local symbol within a given file table. This is for
109 things like references to types defined in another file.
110
111 7) Type information: This is like the COFF type bits, except it
112 is 32 bits instead of 16; they still have room to add new
113 basic types; and they can handle more than 6 levels of array,
114 pointer, function, etc. Each type information field contains
115 the following structure members:
116
117 a) fBitfield: a bit that says this is a bitfield, and the
118 size in bits follows as the next aux. entry.
119
120 b) continued: a bit that says the next aux. entry is a
121 continuation of the current type information (in case
122 there are more than 6 levels of array/ptr/function).
123
124 c) bt: an integer containing the base type before adding
125 array, pointer, function, etc. qualifiers. The
126 current base types that I have documentation for are:
127
128 btNil -- undefined
129 btAdr -- address - integer same size as ptr
130 btChar -- character
131 btUChar -- unsigned character
132 btShort -- short
133 btUShort -- unsigned short
134 btInt -- int
135 btUInt -- unsigned int
136 btLong -- long
137 btULong -- unsigned long
138 btFloat -- float (real)
139 btDouble -- Double (real)
140 btStruct -- Structure (Record)
141 btUnion -- Union (variant)
142 btEnum -- Enumerated
143 btTypedef -- defined via a typedef isymRef
144 btRange -- subrange of int
145 btSet -- pascal sets
146 btComplex -- fortran complex
147 btDComplex -- fortran double complex
148 btIndirect -- forward or unnamed typedef
149 btFixedDec -- Fixed Decimal
150 btFloatDec -- Float Decimal
151 btString -- Varying Length Character String
152 btBit -- Aligned Bit String
153 btPicture -- Picture
154 btVoid -- Void (MIPS cc revision >= 2.00)
155
156 d) tq0 - tq5: type qualifier fields as needed. The
157 current type qualifier fields I have documentation for
158 are:
159
160 tqNil -- no more qualifiers
161 tqPtr -- pointer
162 tqProc -- procedure
163 tqArray -- array
164 tqFar -- 8086 far pointers
165 tqVol -- volatile
166
167
168 The dense number table is used in the front ends, and disappears by
169 the time the .o is created.
170
171 With the 1.31 compiler suite, the optimization symbols don't seem
172 to be used as far as I can tell.
173
174 The linker is the first entity that creates the relative file
175 descriptor table, and I believe it is used so that the individual
176 file table pointers don't have to be rewritten when the objects are
177 merged together into the program file.
178
179 Unlike COFF, the basic symbol & string tables are split into
180 external and local symbols/strings. The relocation information
181 only goes off of the external symbol table, and the debug
182 information only goes off of the internal symbol table. The
183 external symbols can have links to an appropriate file index and
184 symbol within the file to give it the appropriate type information.
185 Because of this, the external symbols are actually larger than the
186 internal symbols (to contain the link information), and contain the
187 local symbol structure as a member, though this member is not the
188 first member of the external symbol structure (!). I suspect this
189 split is to make strip easier to deal with.
190
191 Each file table has offsets for where the line numbers, local
192 strings, local symbols, and procedure table starts from within the
193 global tables, and the indexs are reset to 0 for each of those
194 tables for the file.
195
196 The procedure table contains the binary equivalents of the .ent
197 (start of the function address), .frame (what register is the
198 virtual frame pointer, constant offset from the register to obtain
199 the VFP, and what register holds the return address), .mask/.fmask
200 (bitmask of saved registers, and where the first register is stored
201 relative to the VFP) assembler directives. It also contains the
202 low and high bounds of the line numbers if debugging is turned on.
203
204 The line number table is a compressed form of the normal COFF line
205 table. Each line number entry is either 1 or 3 bytes long, and
206 contains a signed delta from the previous line, and an unsigned
207 count of the number of instructions this statement takes.
208
209 The local symbol table contains the following fields:
210
211 1) iss: index to the local string table giving the name of the
212 symbol.
213
214 2) value: value of the symbol (address, register number, etc.).
215
216 3) st: symbol type. The current symbol types are:
217
218 stNil -- Nuthin' special
219 stGlobal -- external symbol
220 stStatic -- static
221 stParam -- procedure argument
222 stLocal -- local variable
223 stLabel -- label
224 stProc -- External Procedure
225 stBlock -- beginning of block
226 stEnd -- end (of anything)
227 stMember -- member (of anything)
228 stTypedef -- type definition
229 stFile -- file name
230 stRegReloc -- register relocation
231 stForward -- forwarding address
232 stStaticProc -- Static procedure
233 stConstant -- const
234
235 4) sc: storage class. The current storage classes are:
236
237 scText -- text symbol
238 scData -- initialized data symbol
239 scBss -- un-initialized data symbol
240 scRegister -- value of symbol is register number
241 scAbs -- value of symbol is absolute
242 scUndefined -- who knows?
243 scCdbLocal -- variable's value is IN se->va.??
244 scBits -- this is a bit field
245 scCdbSystem -- value is IN debugger's address space
246 scRegImage -- register value saved on stack
247 scInfo -- symbol contains debugger information
248 scUserStruct -- addr in struct user for current process
249 scSData -- load time only small data
250 scSBss -- load time only small common
251 scRData -- load time only read only data
252 scVar -- Var parameter (fortranpascal)
253 scCommon -- common variable
254 scSCommon -- small common
255 scVarRegister -- Var parameter in a register
256 scVariant -- Variant record
257 scSUndefined -- small undefined(external) data
258 scInit -- .init section symbol
259
260 5) index: pointer to a local symbol or aux. entry.
261
262
263
264 For the following program:
265
266 #include <stdio.h>
267
268 main(){
269 printf("Hello World!\n");
270 return 0;
271 }
272
273 Mips-tdump produces the following information:
274
275 Global file header:
276 magic number 0x162
277 # sections 2
278 timestamp 645311799, Wed Jun 13 17:16:39 1990
279 symbolic header offset 284
280 symbolic header size 96
281 optional header 56
282 flags 0x0
283
284 Symbolic header, magic number = 0x7009, vstamp = 1.31:
285
286 Info Offset Number Bytes
287 ==== ====== ====== =====
288
289 Line numbers 380 4 4 [13]
290 Dense numbers 0 0 0
291 Procedures Tables 384 1 52
292 Local Symbols 436 16 192
293 Optimization Symbols 0 0 0
294 Auxiliary Symbols 628 39 156
295 Local Strings 784 80 80
296 External Strings 864 144 144
297 File Tables 1008 2 144
298 Relative Files 0 0 0
299 External Symbols 1152 20 320
300
301 File #0, "hello2.c"
302
303 Name index = 1 Readin = No
304 Merge = No Endian = LITTLE
305 Debug level = G2 Language = C
306 Adr = 0x00000000
307
308 Info Start Number Size Offset
309 ==== ===== ====== ==== ======
310 Local strings 0 15 15 784
311 Local symbols 0 6 72 436
312 Line numbers 0 13 13 380
313 Optimization symbols 0 0 0 0
314 Procedures 0 1 52 384
315 Auxiliary symbols 0 14 56 628
316 Relative Files 0 0 0 0
317
318 There are 6 local symbols, starting at 436
319
320 Symbol# 0: "hello2.c"
321 End+1 symbol = 6
322 String index = 1
323 Storage class = Text Index = 6
324 Symbol type = File Value = 0
325
326 Symbol# 1: "main"
327 End+1 symbol = 5
328 Type = int
329 String index = 10
330 Storage class = Text Index = 12
331 Symbol type = Proc Value = 0
332
333 Symbol# 2: ""
334 End+1 symbol = 4
335 String index = 0
336 Storage class = Text Index = 4
337 Symbol type = Block Value = 8
338
339 Symbol# 3: ""
340 First symbol = 2
341 String index = 0
342 Storage class = Text Index = 2
343 Symbol type = End Value = 28
344
345 Symbol# 4: "main"
346 First symbol = 1
347 String index = 10
348 Storage class = Text Index = 1
349 Symbol type = End Value = 52
350
351 Symbol# 5: "hello2.c"
352 First symbol = 0
353 String index = 1
354 Storage class = Text Index = 0
355 Symbol type = End Value = 0
356
357 There are 14 auxiliary table entries, starting at 628.
358
359 * #0 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
360 * #1 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
361 * #2 8, [ 8/ 0], [ 2 0:0 0:0:0:0:0:0]
362 * #3 16, [ 16/ 0], [ 4 0:0 0:0:0:0:0:0]
363 * #4 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
364 * #5 32, [ 32/ 0], [ 8 0:0 0:0:0:0:0:0]
365 * #6 40, [ 40/ 0], [10 0:0 0:0:0:0:0:0]
366 * #7 44, [ 44/ 0], [11 0:0 0:0:0:0:0:0]
367 * #8 12, [ 12/ 0], [ 3 0:0 0:0:0:0:0:0]
368 * #9 20, [ 20/ 0], [ 5 0:0 0:0:0:0:0:0]
369 * #10 28, [ 28/ 0], [ 7 0:0 0:0:0:0:0:0]
370 * #11 36, [ 36/ 0], [ 9 0:0 0:0:0:0:0:0]
371 #12 5, [ 5/ 0], [ 1 1:0 0:0:0:0:0:0]
372 #13 24, [ 24/ 0], [ 6 0:0 0:0:0:0:0:0]
373
374 There are 1 procedure descriptor entries, starting at 0.
375
376 Procedure descriptor 0:
377 Name index = 10 Name = "main"
378 .mask 0x80000000,-4 .fmask 0x00000000,0
379 .frame $29,24,$31
380 Opt. start = -1 Symbols start = 1
381 First line # = 3 Last line # = 6
382 Line Offset = 0 Address = 0x00000000
383
384 There are 4 bytes holding line numbers, starting at 380.
385 Line 3, delta 0, count 2
386 Line 4, delta 1, count 3
387 Line 5, delta 1, count 2
388 Line 6, delta 1, count 6
389
390 File #1, "/usr/include/stdio.h"
391
392 Name index = 1 Readin = No
393 Merge = Yes Endian = LITTLE
394 Debug level = G2 Language = C
395 Adr = 0x00000000
396
397 Info Start Number Size Offset
398 ==== ===== ====== ==== ======
399 Local strings 15 65 65 799
400 Local symbols 6 10 120 508
401 Line numbers 0 0 0 380
402 Optimization symbols 0 0 0 0
403 Procedures 1 0 0 436
404 Auxiliary symbols 14 25 100 684
405 Relative Files 0 0 0 0
406
407 There are 10 local symbols, starting at 442
408
409 Symbol# 0: "/usr/include/stdio.h"
410 End+1 symbol = 10
411 String index = 1
412 Storage class = Text Index = 10
413 Symbol type = File Value = 0
414
415 Symbol# 1: "_iobuf"
416 End+1 symbol = 9
417 String index = 22
418 Storage class = Info Index = 9
419 Symbol type = Block Value = 20
420
421 Symbol# 2: "_cnt"
422 Type = int
423 String index = 29
424 Storage class = Info Index = 4
425 Symbol type = Member Value = 0
426
427 Symbol# 3: "_ptr"
428 Type = ptr to char
429 String index = 34
430 Storage class = Info Index = 15
431 Symbol type = Member Value = 32
432
433 Symbol# 4: "_base"
434 Type = ptr to char
435 String index = 39
436 Storage class = Info Index = 16
437 Symbol type = Member Value = 64
438
439 Symbol# 5: "_bufsiz"
440 Type = int
441 String index = 45
442 Storage class = Info Index = 4
443 Symbol type = Member Value = 96
444
445 Symbol# 6: "_flag"
446 Type = short
447 String index = 53
448 Storage class = Info Index = 3
449 Symbol type = Member Value = 128
450
451 Symbol# 7: "_file"
452 Type = char
453 String index = 59
454 Storage class = Info Index = 2
455 Symbol type = Member Value = 144
456
457 Symbol# 8: ""
458 First symbol = 1
459 String index = 0
460 Storage class = Info Index = 1
461 Symbol type = End Value = 0
462
463 Symbol# 9: "/usr/include/stdio.h"
464 First symbol = 0
465 String index = 1
466 Storage class = Text Index = 0
467 Symbol type = End Value = 0
468
469 There are 25 auxiliary table entries, starting at 642.
470
471 * #14 -1, [4095/1048575], [63 1:1 f:f:f:f:f:f]
472 #15 65544, [ 8/ 16], [ 2 0:0 1:0:0:0:0:0]
473 #16 65544, [ 8/ 16], [ 2 0:0 1:0:0:0:0:0]
474 * #17 196656, [ 48/ 48], [12 0:0 3:0:0:0:0:0]
475 * #18 8191, [4095/ 1], [63 1:1 0:0:0:0:f:1]
476 * #19 1, [ 1/ 0], [ 0 1:0 0:0:0:0:0:0]
477 * #20 20479, [4095/ 4], [63 1:1 0:0:0:0:f:4]
478 * #21 1, [ 1/ 0], [ 0 1:0 0:0:0:0:0:0]
479 * #22 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
480 * #23 2, [ 2/ 0], [ 0 0:1 0:0:0:0:0:0]
481 * #24 160, [ 160/ 0], [40 0:0 0:0:0:0:0:0]
482 * #25 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
483 * #26 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
484 * #27 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
485 * #28 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
486 * #29 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
487 * #30 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
488 * #31 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
489 * #32 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
490 * #33 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
491 * #34 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
492 * #35 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
493 * #36 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
494 * #37 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
495 * #38 0, [ 0/ 0], [ 0 0:0 0:0:0:0:0:0]
496
497 There are 0 procedure descriptor entries, starting at 1.
498
499 There are 20 external symbols, starting at 1152
500
501 Symbol# 0: "_iob"
502 Type = array [3 {160}] of struct _iobuf { ifd = 1, index = 1 }
503 String index = 0 Ifd = 1
504 Storage class = Nil Index = 17
505 Symbol type = Global Value = 60
506
507 Symbol# 1: "fopen"
508 String index = 5 Ifd = 1
509 Storage class = Nil Index = 1048575
510 Symbol type = Proc Value = 0
511
512 Symbol# 2: "fdopen"
513 String index = 11 Ifd = 1
514 Storage class = Nil Index = 1048575
515 Symbol type = Proc Value = 0
516
517 Symbol# 3: "freopen"
518 String index = 18 Ifd = 1
519 Storage class = Nil Index = 1048575
520 Symbol type = Proc Value = 0
521
522 Symbol# 4: "popen"
523 String index = 26 Ifd = 1
524 Storage class = Nil Index = 1048575
525 Symbol type = Proc Value = 0
526
527 Symbol# 5: "tmpfile"
528 String index = 32 Ifd = 1
529 Storage class = Nil Index = 1048575
530 Symbol type = Proc Value = 0
531
532 Symbol# 6: "ftell"
533 String index = 40 Ifd = 1
534 Storage class = Nil Index = 1048575
535 Symbol type = Proc Value = 0
536
537 Symbol# 7: "rewind"
538 String index = 46 Ifd = 1
539 Storage class = Nil Index = 1048575
540 Symbol type = Proc Value = 0
541
542 Symbol# 8: "setbuf"
543 String index = 53 Ifd = 1
544 Storage class = Nil Index = 1048575
545 Symbol type = Proc Value = 0
546
547 Symbol# 9: "setbuffer"
548 String index = 60 Ifd = 1
549 Storage class = Nil Index = 1048575
550 Symbol type = Proc Value = 0
551
552 Symbol# 10: "setlinebuf"
553 String index = 70 Ifd = 1
554 Storage class = Nil Index = 1048575
555 Symbol type = Proc Value = 0
556
557 Symbol# 11: "fgets"
558 String index = 81 Ifd = 1
559 Storage class = Nil Index = 1048575
560 Symbol type = Proc Value = 0
561
562 Symbol# 12: "gets"
563 String index = 87 Ifd = 1
564 Storage class = Nil Index = 1048575
565 Symbol type = Proc Value = 0
566
567 Symbol# 13: "ctermid"
568 String index = 92 Ifd = 1
569 Storage class = Nil Index = 1048575
570 Symbol type = Proc Value = 0
571
572 Symbol# 14: "cuserid"
573 String index = 100 Ifd = 1
574 Storage class = Nil Index = 1048575
575 Symbol type = Proc Value = 0
576
577 Symbol# 15: "tempnam"
578 String index = 108 Ifd = 1
579 Storage class = Nil Index = 1048575
580 Symbol type = Proc Value = 0
581
582 Symbol# 16: "tmpnam"
583 String index = 116 Ifd = 1
584 Storage class = Nil Index = 1048575
585 Symbol type = Proc Value = 0
586
587 Symbol# 17: "sprintf"
588 String index = 123 Ifd = 1
589 Storage class = Nil Index = 1048575
590 Symbol type = Proc Value = 0
591
592 Symbol# 18: "main"
593 Type = int
594 String index = 131 Ifd = 0
595 Storage class = Text Index = 1
596 Symbol type = Proc Value = 0
597
598 Symbol# 19: "printf"
599 String index = 136 Ifd = 0
600 Storage class = Undefined Index = 1048575
601 Symbol type = Proc Value = 0
602
603 The following auxiliary table entries were unused:
604
605 #0 0 0x00000000 void
606 #2 8 0x00000008 char
607 #3 16 0x00000010 short
608 #4 24 0x00000018 int
609 #5 32 0x00000020 long
610 #6 40 0x00000028 float
611 #7 44 0x0000002c double
612 #8 12 0x0000000c unsigned char
613 #9 20 0x00000014 unsigned short
614 #10 28 0x0000001c unsigned int
615 #11 36 0x00000024 unsigned long
616 #14 0 0x00000000 void
617 #15 24 0x00000018 int
618 #19 32 0x00000020 long
619 #20 40 0x00000028 float
620 #21 44 0x0000002c double
621 #22 12 0x0000000c unsigned char
622 #23 20 0x00000014 unsigned short
623 #24 28 0x0000001c unsigned int
624 #25 36 0x00000024 unsigned long
625 #26 48 0x00000030 struct no name { ifd = -1, index = 1048575 }
626 \f
627 */
628 /* Redefinition of of storage classes as an enumeration for better
629 debugging. */
630
631 typedef enum sc {
632 sc_Nil = scNil, /* no storage class */
633 sc_Text = scText, /* text symbol */
634 sc_Data = scData, /* initialized data symbol */
635 sc_Bss = scBss, /* un-initialized data symbol */
636 sc_Register = scRegister, /* value of symbol is register number */
637 sc_Abs = scAbs, /* value of symbol is absolute */
638 sc_Undefined = scUndefined, /* who knows? */
639 sc_CdbLocal = scCdbLocal, /* variable's value is IN se->va.?? */
640 sc_Bits = scBits, /* this is a bit field */
641 sc_CdbSystem = scCdbSystem, /* value is IN CDB's address space */
642 sc_RegImage = scRegImage, /* register value saved on stack */
643 sc_Info = scInfo, /* symbol contains debugger information */
644 sc_UserStruct = scUserStruct, /* addr in struct user for current process */
645 sc_SData = scSData, /* load time only small data */
646 sc_SBss = scSBss, /* load time only small common */
647 sc_RData = scRData, /* load time only read only data */
648 sc_Var = scVar, /* Var parameter (fortran,pascal) */
649 sc_Common = scCommon, /* common variable */
650 sc_SCommon = scSCommon, /* small common */
651 sc_VarRegister = scVarRegister, /* Var parameter in a register */
652 sc_Variant = scVariant, /* Variant record */
653 sc_SUndefined = scSUndefined, /* small undefined(external) data */
654 sc_Init = scInit, /* .init section symbol */
655 sc_Max = scMax /* Max storage class+1 */
656 } sc_t;
657
658 /* Redefinition of symbol type. */
659
660 typedef enum st {
661 st_Nil = stNil, /* Nuthin' special */
662 st_Global = stGlobal, /* external symbol */
663 st_Static = stStatic, /* static */
664 st_Param = stParam, /* procedure argument */
665 st_Local = stLocal, /* local variable */
666 st_Label = stLabel, /* label */
667 st_Proc = stProc, /* " " Procedure */
668 st_Block = stBlock, /* beginning of block */
669 st_End = stEnd, /* end (of anything) */
670 st_Member = stMember, /* member (of anything - struct/union/enum */
671 st_Typedef = stTypedef, /* type definition */
672 st_File = stFile, /* file name */
673 st_RegReloc = stRegReloc, /* register relocation */
674 st_Forward = stForward, /* forwarding address */
675 st_StaticProc = stStaticProc, /* load time only static procs */
676 st_Constant = stConstant, /* const */
677 st_Str = stStr, /* string */
678 st_Number = stNumber, /* pure number (ie. 4 NOR 2+2) */
679 st_Expr = stExpr, /* 2+2 vs. 4 */
680 st_Type = stType, /* post-coercion SER */
681 st_Max = stMax /* max type+1 */
682 } st_t;
683
684 /* Redefinition of type qualifiers. */
685
686 typedef enum tq {
687 tq_Nil = tqNil, /* bt is what you see */
688 tq_Ptr = tqPtr, /* pointer */
689 tq_Proc = tqProc, /* procedure */
690 tq_Array = tqArray, /* duh */
691 tq_Far = tqFar, /* longer addressing - 8086/8 land */
692 tq_Vol = tqVol, /* volatile */
693 tq_Max = tqMax /* Max type qualifier+1 */
694 } tq_t;
695
696 /* Redefinition of basic types. */
697
698 typedef enum bt {
699 bt_Nil = btNil, /* undefined */
700 bt_Adr = btAdr, /* address - integer same size as pointer */
701 bt_Char = btChar, /* character */
702 bt_UChar = btUChar, /* unsigned character */
703 bt_Short = btShort, /* short */
704 bt_UShort = btUShort, /* unsigned short */
705 bt_Int = btInt, /* int */
706 bt_UInt = btUInt, /* unsigned int */
707 bt_Long = btLong, /* long */
708 bt_ULong = btULong, /* unsigned long */
709 bt_Float = btFloat, /* float (real) */
710 bt_Double = btDouble, /* Double (real) */
711 bt_Struct = btStruct, /* Structure (Record) */
712 bt_Union = btUnion, /* Union (variant) */
713 bt_Enum = btEnum, /* Enumerated */
714 bt_Typedef = btTypedef, /* defined via a typedef, isymRef points */
715 bt_Range = btRange, /* subrange of int */
716 bt_Set = btSet, /* pascal sets */
717 bt_Complex = btComplex, /* fortran complex */
718 bt_DComplex = btDComplex, /* fortran double complex */
719 bt_Indirect = btIndirect, /* forward or unnamed typedef */
720 bt_FixedDec = btFixedDec, /* Fixed Decimal */
721 bt_FloatDec = btFloatDec, /* Float Decimal */
722 bt_String = btString, /* Varying Length Character String */
723 bt_Bit = btBit, /* Aligned Bit String */
724 bt_Picture = btPicture, /* Picture */
725 bt_Void = btVoid, /* Void */
726 bt_Max = btMax /* Max basic type+1 */
727 } bt_t;
728
729 #define N_TQ itqMax
730
731 /* States for whether to hash type or not. */
732 typedef enum hash_state {
733 hash_no = 0, /* don't hash type */
734 hash_yes = 1, /* ok to hash type, or use previous hash */
735 hash_record = 2 /* ok to record hash, but don't use prev. */
736 } hash_state_t;
737
738 /* Types of different sized allocation requests. */
739 enum alloc_type {
740 alloc_type_none, /* dummy value */
741 alloc_type_scope, /* nested scopes linked list */
742 alloc_type_vlinks, /* glue linking pages in varray */
743 alloc_type_shash, /* string hash element */
744 alloc_type_thash, /* type hash element */
745 alloc_type_tag, /* struct/union/tag element */
746 alloc_type_forward, /* element to hold unknown tag */
747 alloc_type_thead, /* head of type hash list */
748 alloc_type_varray, /* general varray allocation */
749 alloc_type_lineno, /* line number list */
750 alloc_type_last /* last+1 element for array bounds */
751 };
752
753 /* Types of auxiliary type information. */
754 enum aux_type {
755 aux_tir, /* TIR type information */
756 aux_rndx, /* relative index into symbol table */
757 aux_dnLow, /* low dimension */
758 aux_dnHigh, /* high dimension */
759 aux_isym, /* symbol table index (end of proc) */
760 aux_iss, /* index into string space (not used) */
761 aux_width, /* width for non-default sized struc fields */
762 aux_count /* count of ranges for variant arm */
763 };
764 \f
765 /* Structures to provide n-number of virtual arrays, each of which can
766 grow linearly, and which are written in the object file as
767 sequential pages. On systems with a BSD malloc, the
768 MAX_CLUSTER_PAGES should be 1 less than a power of two, since
769 malloc adds it's overhead, and rounds up to the next power of 2.
770 Pages are linked together via a linked list.
771
772 If PAGE_SIZE is > 4096, the string length in the shash_t structure
773 can't be represented (assuming there are strings > 4096 bytes). */
774
775 #ifndef PAGE_SIZE
776 #define PAGE_SIZE 4096 /* size of varray pages */
777 #endif
778
779 #define PAGE_USIZE ((unsigned long) PAGE_SIZE)
780
781
782 #ifndef MAX_CLUSTER_PAGES /* # pages to get from system */
783 #define MAX_CLUSTER_PAGES 63
784 #endif
785
786
787 /* Linked list connecting separate page allocations. */
788 typedef struct vlinks {
789 struct vlinks *prev; /* previous set of pages */
790 struct vlinks *next; /* next set of pages */
791 union page *datum; /* start of page */
792 unsigned long start_index; /* starting index # of page */
793 } vlinks_t;
794
795
796 /* Virtual array header. */
797 typedef struct varray {
798 vlinks_t *first; /* first page link */
799 vlinks_t *last; /* last page link */
800 unsigned long num_allocated; /* # objects allocated */
801 unsigned short object_size; /* size in bytes of each object */
802 unsigned short objects_per_page; /* # objects that can fit on a page */
803 unsigned short objects_last_page; /* # objects allocated on last page */
804 } varray_t;
805
806 #ifndef MALLOC_CHECK
807 #define OBJECTS_PER_PAGE(type) (PAGE_SIZE / sizeof (type))
808 #else
809 #define OBJECTS_PER_PAGE(type) ((sizeof (type) > 1) ? 1 : PAGE_SIZE)
810 #endif
811
812 #define INIT_VARRAY(type) { /* macro to initialize a varray */ \
813 (vlinks_t *)0, /* first */ \
814 (vlinks_t *)0, /* last */ \
815 0, /* num_allocated */ \
816 sizeof (type), /* object_size */ \
817 OBJECTS_PER_PAGE (type), /* objects_per_page */ \
818 OBJECTS_PER_PAGE (type), /* objects_last_page */ \
819 }
820
821
822 /* Master type for indexes within the symbol table. */
823 typedef unsigned long symint_t;
824
825
826 /* Linked list support for nested scopes (file, block, structure, etc.). */
827 typedef struct scope {
828 struct scope *prev; /* previous scope level */
829 struct scope *free; /* free list pointer */
830 struct localsym *lsym; /* pointer to local symbol node */
831 st_t type; /* type of the node */
832 } scope_t;
833
834
835 /* For a local symbol we store a gas symbol as well as the debugging
836 information we generate. The gas symbol will be NULL if this is
837 only a debugging symbol. */
838 typedef struct localsym {
839 const char *name; /* symbol name */
840 symbolS *as_sym; /* symbol as seen by gas */
841 struct efdr *file_ptr; /* file pointer */
842 struct ecoff_proc *proc_ptr; /* proc pointer */
843 struct localsym *begin_ptr; /* symbol at start of block */
844 struct ecoff_aux *index_ptr; /* index value to be filled in */
845 struct forward *forward_ref; /* forward references to this symbol */
846 long sym_index; /* final symbol index */
847 SYMR ecoff_sym; /* ECOFF debugging symbol */
848 } localsym_t;
849
850
851 /* For aux information we keep the type and the data. */
852 typedef struct ecoff_aux {
853 enum aux_type type; /* aux type */
854 AUXU data; /* aux data */
855 } aux_t;
856
857 /* For a procedure we store the gas symbol as well as the PDR
858 debugging information. */
859 typedef struct ecoff_proc {
860 localsym_t *sym; /* associated symbol */
861 PDR pdr; /* ECOFF debugging info */
862 } proc_t;
863
864 /* Number of proc_t structures allocated. */
865 static unsigned long proc_cnt;
866
867
868 /* Forward reference list for tags referenced, but not yet defined. */
869 typedef struct forward {
870 struct forward *next; /* next forward reference */
871 struct forward *free; /* free list pointer */
872 aux_t *ifd_ptr; /* pointer to store file index */
873 aux_t *index_ptr; /* pointer to store symbol index */
874 } forward_t;
875
876
877 /* Linked list support for tags. The first tag in the list is always
878 the current tag for that block. */
879 typedef struct tag {
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 */
888 } tag_t;
889
890
891 /* Head of a block's linked list of tags. */
892 typedef struct thead {
893 struct thead *prev; /* previous block */
894 struct thead *free; /* free list pointer */
895 struct tag *first_tag; /* first tag in block defined */
896 } thead_t;
897
898
899 /* Union containing pointers to each the small structures which are freed up. */
900 typedef union small_free {
901 scope_t *f_scope; /* scope structure */
902 thead_t *f_thead; /* tag head structure */
903 tag_t *f_tag; /* tag element structure */
904 forward_t *f_forward; /* forward tag reference */
905 } small_free_t;
906
907
908 /* String hash table entry. */
909
910 typedef struct shash {
911 char *string; /* string we are hashing */
912 symint_t indx; /* index within string table */
913 EXTR *esym_ptr; /* global symbol pointer */
914 localsym_t *sym_ptr; /* local symbol pointer */
915 localsym_t *end_ptr; /* symbol pointer to end block */
916 tag_t *tag_ptr; /* tag pointer */
917 proc_t *proc_ptr; /* procedure descriptor pointer */
918 } shash_t;
919
920
921 /* Type hash table support. The size of the hash table must fit
922 within a page with the other extended file descriptor information.
923 Because unique types which are hashed are fewer in number than
924 strings, we use a smaller hash value. */
925
926 #define HASHBITS 30
927
928 #ifndef THASH_SIZE
929 #define THASH_SIZE 113
930 #endif
931
932 typedef struct thash {
933 struct thash *next; /* next hash value */
934 AUXU type; /* type we are hashing */
935 symint_t indx; /* index within string table */
936 } thash_t;
937
938
939 /* Extended file descriptor that contains all of the support necessary
940 to add things to each file separately. */
941 typedef struct efdr {
942 FDR fdr; /* File header to be written out */
943 FDR *orig_fdr; /* original file header */
944 char *name; /* filename */
945 symint_t void_type; /* aux. pointer to 'void' type */
946 symint_t int_type; /* aux. pointer to 'int' type */
947 scope_t *cur_scope; /* current nested scopes */
948 symint_t file_index; /* current file number */
949 int nested_scopes; /* # nested scopes */
950 varray_t strings; /* local strings */
951 varray_t symbols; /* local symbols */
952 varray_t procs; /* procedures */
953 varray_t aux_syms; /* auxiliary symbols */
954 struct efdr *next_file; /* next file descriptor */
955 /* string/type hash tables */
956 struct hash_control *str_hash; /* string hash table */
957 thash_t *thash_head[THASH_SIZE];
958 } efdr_t;
959
960 /* Pre-initialized extended file structure. */
961 static const efdr_t init_file =
962 {
963 { /* FDR structure */
964 0, /* adr: memory address of beginning of file */
965 0, /* rss: file name (of source, if known) */
966 0, /* issBase: file's string space */
967 0, /* cbSs: number of bytes in the ss */
968 0, /* isymBase: beginning of symbols */
969 0, /* csym: count file's of symbols */
970 0, /* ilineBase: file's line symbols */
971 0, /* cline: count of file's line symbols */
972 0, /* ioptBase: file's optimization entries */
973 0, /* copt: count of file's optimization entries */
974 0, /* ipdFirst: start of procedures for this file */
975 0, /* cpd: count of procedures for this file */
976 0, /* iauxBase: file's auxiliary entries */
977 0, /* caux: count of file's auxiliary entries */
978 0, /* rfdBase: index into the file indirect table */
979 0, /* crfd: count file indirect entries */
980 langC, /* lang: language for this file */
981 0, /* fMerge: whether this file can be merged */
982 0, /* fReadin: true if read in (not just created) */
983 #ifdef TARGET_BYTES_BIG_ENDIAN
984 1, /* fBigendian: if 1, compiled on big endian machine */
985 #else
986 0, /* fBigendian: if 1, compiled on big endian machine */
987 #endif
988 GLEVEL_2, /* glevel: level this file was compiled with */
989 0, /* reserved: reserved for future use */
990 0, /* cbLineOffset: byte offset from header for this file ln's */
991 0, /* cbLine: size of lines for this file */
992 },
993
994 (FDR *)0, /* orig_fdr: original file header pointer */
995 (char *)0, /* name: pointer to filename */
996 0, /* void_type: ptr to aux node for void type */
997 0, /* int_type: ptr to aux node for int type */
998 (scope_t *)0, /* cur_scope: current scope being processed */
999 0, /* file_index: current file # */
1000 0, /* nested_scopes: # nested scopes */
1001 INIT_VARRAY (char), /* strings: local string varray */
1002 INIT_VARRAY (localsym_t), /* symbols: local symbols varray */
1003 INIT_VARRAY (proc_t), /* procs: procedure varray */
1004 INIT_VARRAY (aux_t), /* aux_syms: auxiliary symbols varray */
1005
1006 (struct efdr *)0, /* next_file: next file structure */
1007
1008 (struct hash_control *)0, /* str_hash: string hash table */
1009 { 0 }, /* thash_head: type hash table */
1010 };
1011
1012
1013 static efdr_t *first_file; /* first file descriptor */
1014 static efdr_t **last_file_ptr = &first_file; /* file descriptor tail */
1015
1016
1017 /* Line number information is kept in a list until the assembly is
1018 finished. */
1019 typedef struct lineno_list {
1020 struct lineno_list *next; /* next element in list */
1021 efdr_t *file; /* file this line is in */
1022 proc_t *proc; /* procedure this line is in */
1023 fragS *frag; /* fragment this line number is in */
1024 unsigned long paddr; /* offset within fragment */
1025 long lineno; /* actual line number */
1026 } lineno_list_t;
1027
1028 static lineno_list_t *first_lineno;
1029 static lineno_list_t **last_lineno_ptr = &first_lineno;
1030
1031 /* Sometimes there will be some .loc statements before a .ent. We
1032 keep them in this list so that we can fill in the procedure pointer
1033 after we see the .ent. */
1034 static lineno_list_t *noproc_lineno;
1035
1036 /* Union of various things that are held in pages. */
1037 typedef union page {
1038 char byte [ PAGE_SIZE ];
1039 unsigned char ubyte [ PAGE_SIZE ];
1040 efdr_t file [ PAGE_SIZE / sizeof (efdr_t) ];
1041 FDR ofile [ PAGE_SIZE / sizeof (FDR) ];
1042 proc_t proc [ PAGE_SIZE / sizeof (proc_t) ];
1043 localsym_t sym [ PAGE_SIZE / sizeof (localsym_t) ];
1044 aux_t aux [ PAGE_SIZE / sizeof (aux_t) ];
1045 DNR dense [ PAGE_SIZE / sizeof (DNR) ];
1046 scope_t scope [ PAGE_SIZE / sizeof (scope_t) ];
1047 vlinks_t vlinks [ PAGE_SIZE / sizeof (vlinks_t) ];
1048 shash_t shash [ PAGE_SIZE / sizeof (shash_t) ];
1049 thash_t thash [ PAGE_SIZE / sizeof (thash_t) ];
1050 tag_t tag [ PAGE_SIZE / sizeof (tag_t) ];
1051 forward_t forward [ PAGE_SIZE / sizeof (forward_t) ];
1052 thead_t thead [ PAGE_SIZE / sizeof (thead_t) ];
1053 lineno_list_t lineno [ PAGE_SIZE / sizeof (lineno_list_t) ];
1054 } page_t;
1055
1056
1057 /* Structure holding allocation information for small sized structures. */
1058 typedef struct alloc_info {
1059 char *alloc_name; /* name of this allocation type (must be first) */
1060 page_t *cur_page; /* current page being allocated from */
1061 small_free_t free_list; /* current free list if any */
1062 int unallocated; /* number of elements unallocated on page */
1063 int total_alloc; /* total number of allocations */
1064 int total_free; /* total number of frees */
1065 int total_pages; /* total number of pages allocated */
1066 } alloc_info_t;
1067
1068
1069 /* Type information collected together. */
1070 typedef struct type_info {
1071 bt_t basic_type; /* basic type */
1072 int orig_type; /* original COFF-based type */
1073 int num_tq; /* # type qualifiers */
1074 int num_dims; /* # dimensions */
1075 int num_sizes; /* # sizes */
1076 int extra_sizes; /* # extra sizes not tied with dims */
1077 tag_t * tag_ptr; /* tag pointer */
1078 int bitfield; /* symbol is a bitfield */
1079 tq_t type_qualifiers[N_TQ]; /* type qualifiers (ptr, func, array)*/
1080 symint_t dimensions [N_TQ]; /* dimensions for each array */
1081 symint_t sizes [N_TQ+2]; /* sizes of each array slice + size of
1082 struct/union/enum + bitfield size */
1083 } type_info_t;
1084
1085 /* Pre-initialized type_info struct. */
1086 static const type_info_t type_info_init = {
1087 bt_Nil, /* basic type */
1088 T_NULL, /* original COFF-based type */
1089 0, /* # type qualifiers */
1090 0, /* # dimensions */
1091 0, /* # sizes */
1092 0, /* sizes not tied with dims */
1093 NULL, /* ptr to tag */
1094 0, /* bitfield */
1095 { /* type qualifiers */
1096 tq_Nil,
1097 tq_Nil,
1098 tq_Nil,
1099 tq_Nil,
1100 tq_Nil,
1101 tq_Nil,
1102 },
1103 { /* dimensions */
1104 0,
1105 0,
1106 0,
1107 0,
1108 0,
1109 0
1110 },
1111 { /* sizes */
1112 0,
1113 0,
1114 0,
1115 0,
1116 0,
1117 0,
1118 0,
1119 0,
1120 },
1121 };
1122
1123 /* Global hash table for the tags table and global table for file
1124 descriptors. */
1125
1126 static varray_t file_desc = INIT_VARRAY (efdr_t);
1127
1128 static struct hash_control *tag_hash;
1129
1130 /* Static types for int and void. Also, remember the last function's
1131 type (which is set up when we encounter the declaration for the
1132 function, and used when the end block for the function is emitted. */
1133
1134 static type_info_t int_type_info;
1135 static type_info_t void_type_info;
1136 static type_info_t last_func_type_info;
1137 static symbolS *last_func_sym_value;
1138
1139
1140 /* Convert COFF basic type to ECOFF basic type. The T_NULL type
1141 really should use bt_Void, but this causes the current ecoff GDB to
1142 issue unsupported type messages, and the Ultrix 4.00 dbx (aka MIPS
1143 2.0) doesn't understand it, even though the compiler generates it.
1144 Maybe this will be fixed in 2.10 or 2.20 of the MIPS compiler
1145 suite, but for now go with what works.
1146
1147 It would make sense for the .type and .scl directives to use the
1148 ECOFF numbers directly, rather than using the COFF numbers and
1149 mapping them. Unfortunately, this is historically what mips-tfile
1150 expects, and changing gcc now would be a considerable pain (the
1151 native compiler generates debugging information internally, rather
1152 than via the assembler, so it will never use .type or .scl). */
1153
1154 static const bt_t map_coff_types[] = {
1155 bt_Nil, /* T_NULL */
1156 bt_Nil, /* T_ARG */
1157 bt_Char, /* T_CHAR */
1158 bt_Short, /* T_SHORT */
1159 bt_Int, /* T_INT */
1160 bt_Long, /* T_LONG */
1161 bt_Float, /* T_FLOAT */
1162 bt_Double, /* T_DOUBLE */
1163 bt_Struct, /* T_STRUCT */
1164 bt_Union, /* T_UNION */
1165 bt_Enum, /* T_ENUM */
1166 bt_Enum, /* T_MOE */
1167 bt_UChar, /* T_UCHAR */
1168 bt_UShort, /* T_USHORT */
1169 bt_UInt, /* T_UINT */
1170 bt_ULong /* T_ULONG */
1171 };
1172
1173 /* Convert COFF storage class to ECOFF storage class. */
1174 static const sc_t map_coff_storage[] = {
1175 sc_Nil, /* 0: C_NULL */
1176 sc_Abs, /* 1: C_AUTO auto var */
1177 sc_Undefined, /* 2: C_EXT external */
1178 sc_Data, /* 3: C_STAT static */
1179 sc_Register, /* 4: C_REG register */
1180 sc_Undefined, /* 5: C_EXTDEF ??? */
1181 sc_Text, /* 6: C_LABEL label */
1182 sc_Text, /* 7: C_ULABEL user label */
1183 sc_Info, /* 8: C_MOS member of struct */
1184 sc_Abs, /* 9: C_ARG argument */
1185 sc_Info, /* 10: C_STRTAG struct tag */
1186 sc_Info, /* 11: C_MOU member of union */
1187 sc_Info, /* 12: C_UNTAG union tag */
1188 sc_Info, /* 13: C_TPDEF typedef */
1189 sc_Data, /* 14: C_USTATIC ??? */
1190 sc_Info, /* 15: C_ENTAG enum tag */
1191 sc_Info, /* 16: C_MOE member of enum */
1192 sc_Register, /* 17: C_REGPARM register parameter */
1193 sc_Bits, /* 18; C_FIELD bitfield */
1194 sc_Nil, /* 19 */
1195 sc_Nil, /* 20 */
1196 sc_Nil, /* 21 */
1197 sc_Nil, /* 22 */
1198 sc_Nil, /* 23 */
1199 sc_Nil, /* 24 */
1200 sc_Nil, /* 25 */
1201 sc_Nil, /* 26 */
1202 sc_Nil, /* 27 */
1203 sc_Nil, /* 28 */
1204 sc_Nil, /* 29 */
1205 sc_Nil, /* 30 */
1206 sc_Nil, /* 31 */
1207 sc_Nil, /* 32 */
1208 sc_Nil, /* 33 */
1209 sc_Nil, /* 34 */
1210 sc_Nil, /* 35 */
1211 sc_Nil, /* 36 */
1212 sc_Nil, /* 37 */
1213 sc_Nil, /* 38 */
1214 sc_Nil, /* 39 */
1215 sc_Nil, /* 40 */
1216 sc_Nil, /* 41 */
1217 sc_Nil, /* 42 */
1218 sc_Nil, /* 43 */
1219 sc_Nil, /* 44 */
1220 sc_Nil, /* 45 */
1221 sc_Nil, /* 46 */
1222 sc_Nil, /* 47 */
1223 sc_Nil, /* 48 */
1224 sc_Nil, /* 49 */
1225 sc_Nil, /* 50 */
1226 sc_Nil, /* 51 */
1227 sc_Nil, /* 52 */
1228 sc_Nil, /* 53 */
1229 sc_Nil, /* 54 */
1230 sc_Nil, /* 55 */
1231 sc_Nil, /* 56 */
1232 sc_Nil, /* 57 */
1233 sc_Nil, /* 58 */
1234 sc_Nil, /* 59 */
1235 sc_Nil, /* 60 */
1236 sc_Nil, /* 61 */
1237 sc_Nil, /* 62 */
1238 sc_Nil, /* 63 */
1239 sc_Nil, /* 64 */
1240 sc_Nil, /* 65 */
1241 sc_Nil, /* 66 */
1242 sc_Nil, /* 67 */
1243 sc_Nil, /* 68 */
1244 sc_Nil, /* 69 */
1245 sc_Nil, /* 70 */
1246 sc_Nil, /* 71 */
1247 sc_Nil, /* 72 */
1248 sc_Nil, /* 73 */
1249 sc_Nil, /* 74 */
1250 sc_Nil, /* 75 */
1251 sc_Nil, /* 76 */
1252 sc_Nil, /* 77 */
1253 sc_Nil, /* 78 */
1254 sc_Nil, /* 79 */
1255 sc_Nil, /* 80 */
1256 sc_Nil, /* 81 */
1257 sc_Nil, /* 82 */
1258 sc_Nil, /* 83 */
1259 sc_Nil, /* 84 */
1260 sc_Nil, /* 85 */
1261 sc_Nil, /* 86 */
1262 sc_Nil, /* 87 */
1263 sc_Nil, /* 88 */
1264 sc_Nil, /* 89 */
1265 sc_Nil, /* 90 */
1266 sc_Nil, /* 91 */
1267 sc_Nil, /* 92 */
1268 sc_Nil, /* 93 */
1269 sc_Nil, /* 94 */
1270 sc_Nil, /* 95 */
1271 sc_Nil, /* 96 */
1272 sc_Nil, /* 97 */
1273 sc_Nil, /* 98 */
1274 sc_Nil, /* 99 */
1275 sc_Text, /* 100: C_BLOCK block start/end */
1276 sc_Text, /* 101: C_FCN function start/end */
1277 sc_Info, /* 102: C_EOS end of struct/union/enum */
1278 sc_Nil, /* 103: C_FILE file start */
1279 sc_Nil, /* 104: C_LINE line number */
1280 sc_Nil, /* 105: C_ALIAS combined type info */
1281 sc_Nil, /* 106: C_HIDDEN ??? */
1282 };
1283
1284 /* Convert COFF storage class to ECOFF symbol type. */
1285 static const st_t map_coff_sym_type[] = {
1286 st_Nil, /* 0: C_NULL */
1287 st_Local, /* 1: C_AUTO auto var */
1288 st_Global, /* 2: C_EXT external */
1289 st_Static, /* 3: C_STAT static */
1290 st_Local, /* 4: C_REG register */
1291 st_Global, /* 5: C_EXTDEF ??? */
1292 st_Label, /* 6: C_LABEL label */
1293 st_Label, /* 7: C_ULABEL user label */
1294 st_Member, /* 8: C_MOS member of struct */
1295 st_Param, /* 9: C_ARG argument */
1296 st_Block, /* 10: C_STRTAG struct tag */
1297 st_Member, /* 11: C_MOU member of union */
1298 st_Block, /* 12: C_UNTAG union tag */
1299 st_Typedef, /* 13: C_TPDEF typedef */
1300 st_Static, /* 14: C_USTATIC ??? */
1301 st_Block, /* 15: C_ENTAG enum tag */
1302 st_Member, /* 16: C_MOE member of enum */
1303 st_Param, /* 17: C_REGPARM register parameter */
1304 st_Member, /* 18; C_FIELD bitfield */
1305 st_Nil, /* 19 */
1306 st_Nil, /* 20 */
1307 st_Nil, /* 21 */
1308 st_Nil, /* 22 */
1309 st_Nil, /* 23 */
1310 st_Nil, /* 24 */
1311 st_Nil, /* 25 */
1312 st_Nil, /* 26 */
1313 st_Nil, /* 27 */
1314 st_Nil, /* 28 */
1315 st_Nil, /* 29 */
1316 st_Nil, /* 30 */
1317 st_Nil, /* 31 */
1318 st_Nil, /* 32 */
1319 st_Nil, /* 33 */
1320 st_Nil, /* 34 */
1321 st_Nil, /* 35 */
1322 st_Nil, /* 36 */
1323 st_Nil, /* 37 */
1324 st_Nil, /* 38 */
1325 st_Nil, /* 39 */
1326 st_Nil, /* 40 */
1327 st_Nil, /* 41 */
1328 st_Nil, /* 42 */
1329 st_Nil, /* 43 */
1330 st_Nil, /* 44 */
1331 st_Nil, /* 45 */
1332 st_Nil, /* 46 */
1333 st_Nil, /* 47 */
1334 st_Nil, /* 48 */
1335 st_Nil, /* 49 */
1336 st_Nil, /* 50 */
1337 st_Nil, /* 51 */
1338 st_Nil, /* 52 */
1339 st_Nil, /* 53 */
1340 st_Nil, /* 54 */
1341 st_Nil, /* 55 */
1342 st_Nil, /* 56 */
1343 st_Nil, /* 57 */
1344 st_Nil, /* 58 */
1345 st_Nil, /* 59 */
1346 st_Nil, /* 60 */
1347 st_Nil, /* 61 */
1348 st_Nil, /* 62 */
1349 st_Nil, /* 63 */
1350 st_Nil, /* 64 */
1351 st_Nil, /* 65 */
1352 st_Nil, /* 66 */
1353 st_Nil, /* 67 */
1354 st_Nil, /* 68 */
1355 st_Nil, /* 69 */
1356 st_Nil, /* 70 */
1357 st_Nil, /* 71 */
1358 st_Nil, /* 72 */
1359 st_Nil, /* 73 */
1360 st_Nil, /* 74 */
1361 st_Nil, /* 75 */
1362 st_Nil, /* 76 */
1363 st_Nil, /* 77 */
1364 st_Nil, /* 78 */
1365 st_Nil, /* 79 */
1366 st_Nil, /* 80 */
1367 st_Nil, /* 81 */
1368 st_Nil, /* 82 */
1369 st_Nil, /* 83 */
1370 st_Nil, /* 84 */
1371 st_Nil, /* 85 */
1372 st_Nil, /* 86 */
1373 st_Nil, /* 87 */
1374 st_Nil, /* 88 */
1375 st_Nil, /* 89 */
1376 st_Nil, /* 90 */
1377 st_Nil, /* 91 */
1378 st_Nil, /* 92 */
1379 st_Nil, /* 93 */
1380 st_Nil, /* 94 */
1381 st_Nil, /* 95 */
1382 st_Nil, /* 96 */
1383 st_Nil, /* 97 */
1384 st_Nil, /* 98 */
1385 st_Nil, /* 99 */
1386 st_Block, /* 100: C_BLOCK block start/end */
1387 st_Proc, /* 101: C_FCN function start/end */
1388 st_End, /* 102: C_EOS end of struct/union/enum */
1389 st_File, /* 103: C_FILE file start */
1390 st_Nil, /* 104: C_LINE line number */
1391 st_Nil, /* 105: C_ALIAS combined type info */
1392 st_Nil, /* 106: C_HIDDEN ??? */
1393 };
1394
1395
1396 /* Keep track of different sized allocation requests. */
1397 static alloc_info_t alloc_counts[ (int)alloc_type_last ];
1398 \f
1399 /* Various statics. */
1400 static efdr_t *cur_file_ptr = (efdr_t *) 0; /* current file desc. header */
1401 static proc_t *cur_proc_ptr = (proc_t *) 0; /* current procedure header */
1402 static thead_t *top_tag_head = (thead_t *) 0; /* top level tag head */
1403 static thead_t *cur_tag_head = (thead_t *) 0; /* current tag head */
1404 #ifdef ECOFF_DEBUG
1405 static int debug = 0; /* trace functions */
1406 #endif
1407 static int stabs_seen = 0; /* != 0 if stabs have been seen */
1408
1409
1410 /* Pseudo symbol to use when putting stabs into the symbol table. */
1411 #ifndef STABS_SYMBOL
1412 #define STABS_SYMBOL "@stabs"
1413 #endif
1414
1415 static char stabs_symbol[] = STABS_SYMBOL;
1416 \f
1417 /* Prototypes for functions defined in this file. */
1418
1419 static void add_varray_page PARAMS ((varray_t *vp));
1420 static symint_t add_string PARAMS ((varray_t *vp,
1421 struct hash_control *hash_tbl,
1422 const char *str,
1423 shash_t **ret_hash));
1424 static localsym_t *add_ecoff_symbol PARAMS ((const char *str, st_t type,
1425 sc_t storage, symbolS *sym,
1426 symint_t value,
1427 symint_t indx));
1428 static symint_t add_aux_sym_symint PARAMS ((symint_t aux_word));
1429 static symint_t add_aux_sym_rndx PARAMS ((int file_index,
1430 symint_t sym_index));
1431 static symint_t add_aux_sym_tir PARAMS ((type_info_t *t,
1432 hash_state_t state,
1433 thash_t **hash_tbl));
1434 static tag_t *get_tag PARAMS ((const char *tag, localsym_t *sym,
1435 bt_t basic_type));
1436 static void add_unknown_tag PARAMS ((tag_t *ptag));
1437 static void add_procedure PARAMS ((char *func));
1438 static void add_file PARAMS ((const char *file_name, int indx));
1439 #ifdef ECOFF_DEBUG
1440 static char *sc_to_string PARAMS ((sc_t storage_class));
1441 static char *st_to_string PARAMS ((st_t symbol_type));
1442 #endif
1443 static void obj_ecoff_def PARAMS ((int));
1444 static void obj_ecoff_dim PARAMS ((int));
1445 static void obj_ecoff_endef PARAMS ((int));
1446 static void obj_ecoff_file PARAMS ((int));
1447 static void obj_ecoff_scl PARAMS ((int));
1448 static void obj_ecoff_size PARAMS ((int));
1449 static void obj_ecoff_tag PARAMS ((int));
1450 static void obj_ecoff_type PARAMS ((int));
1451 static void obj_ecoff_val PARAMS ((int));
1452 static void obj_ecoff_stab PARAMS ((int));
1453 static void obj_ecoff_ent PARAMS ((int));
1454 static void obj_ecoff_begin PARAMS ((int));
1455 static void obj_ecoff_bend PARAMS ((int));
1456 static void obj_ecoff_end PARAMS ((int));
1457 static void obj_ecoff_fmask PARAMS ((int));
1458 static void obj_ecoff_frame PARAMS ((int));
1459 static void obj_ecoff_loc PARAMS ((int));
1460 static void obj_ecoff_mask PARAMS ((int));
1461 static void mark_stabs PARAMS ((int));
1462 static char *ecoff_add_bytes PARAMS ((char **buf, char **bufend,
1463 char *bufptr, long need));
1464 static long ecoff_padding_adjust PARAMS ((char **buf, char **bufend,
1465 long offset, char **bufptrptr));
1466 static long ecoff_build_lineno PARAMS ((char **buf, char **bufend,
1467 long offset, long *linecntptr));
1468 static long ecoff_build_symbols PARAMS ((char **buf, char **bufend,
1469 long offset,
1470 char **extbuf, char **extbufend,
1471 long *extoffset,
1472 varray_t *ext_strings,
1473 struct hash_control *ext_str_hash));
1474 static long ecoff_build_procs PARAMS ((char **buf, char **bufend,
1475 long offset));
1476 static long ecoff_build_aux PARAMS ((char **buf, char **bufend,
1477 long offset));
1478 static long ecoff_build_strings PARAMS ((char **buf, char **bufend,
1479 long offset,
1480 varray_t *vp));
1481 static long ecoff_build_ss PARAMS ((char **buf, char **bufend,
1482 long offset));
1483 static long ecoff_build_fdr PARAMS ((char **buf, char **bufend,
1484 long offset));
1485 static page_t *allocate_cluster PARAMS ((unsigned long npages));
1486 static page_t *allocate_page PARAMS ((void));
1487 static scope_t *allocate_scope PARAMS ((void));
1488 static void free_scope PARAMS ((scope_t *ptr));
1489 static vlinks_t *allocate_vlinks PARAMS ((void));
1490 static shash_t *allocate_shash PARAMS ((void));
1491 static thash_t *allocate_thash PARAMS ((void));
1492 static tag_t *allocate_tag PARAMS ((void));
1493 static void free_tag PARAMS ((tag_t *ptr));
1494 static forward_t *allocate_forward PARAMS ((void));
1495 static thead_t *allocate_thead PARAMS ((void));
1496 static void free_thead PARAMS ((thead_t *ptr));
1497 static lineno_list_t *allocate_lineno_list PARAMS ((void));
1498
1499 /* Why isn't this in some header file somewhere? In fact, is it even
1500 necessary? */
1501 #define SKIP_WHITESPACES() \
1502 do \
1503 { \
1504 while (*input_line_pointer == ' ' \
1505 || *input_line_pointer == '\t') \
1506 ++input_line_pointer; \
1507 } \
1508 while (0)
1509 \f
1510 /* These are the pseudo-ops we support in this file. Only those
1511 relating to debugging information are supported here.
1512
1513 The following pseudo-ops from the Kane and Heinrich MIPS book
1514 should be defined here, but are currently unsupported: .aent,
1515 .bgnb, .endb, .verstamp, .vreg.
1516
1517 The following pseudo-ops from the Kane and Heinrich MIPS book are
1518 MIPS CPU specific, and should be defined by tc-mips.c: .alias,
1519 .extern, .galive, .gjaldef, .gjrlive, .livereg, .noalias, .option,
1520 .rdata, .sdata, .set.
1521
1522 The following pseudo-ops from the Kane and Heinrich MIPS book are
1523 not MIPS CPU specific, but are also not ECOFF specific. I have
1524 only listed the ones which are not already in read.c. It's not
1525 completely clear where these should be defined, but tc-mips.c is
1526 probably the most reasonable place: .asciiz, .asm0, .endr, .err,
1527 .half, .lab, .repeat, .struct, .weakext. */
1528
1529 const pseudo_typeS obj_pseudo_table[] =
1530 {
1531 /* COFF style debugging information. .ln is not used; .loc is used
1532 instead. */
1533 { "def", obj_ecoff_def, 0 },
1534 { "dim", obj_ecoff_dim, 0 },
1535 { "endef", obj_ecoff_endef, 0 },
1536 { "file", obj_ecoff_file, 0 },
1537 { "scl", obj_ecoff_scl, 0 },
1538 { "size", obj_ecoff_size, 0 },
1539 { "tag", obj_ecoff_tag, 0 },
1540 { "type", obj_ecoff_type, 0 },
1541 { "val", obj_ecoff_val, 0 },
1542
1543 /* stabs debugging information. */
1544 { "stabd", obj_ecoff_stab, 'd' },
1545 { "stabn", obj_ecoff_stab, 'n' },
1546 { "stabs", obj_ecoff_stab, 's' },
1547
1548 /* ECOFF specific debugging information. */
1549 { "begin", obj_ecoff_begin, 0 },
1550 { "bend", obj_ecoff_bend, 0 },
1551 { "end", obj_ecoff_end, 0 },
1552 { "ent", obj_ecoff_ent, 0 },
1553 { "fmask", obj_ecoff_fmask, 0 },
1554 { "frame", obj_ecoff_frame, 0 },
1555 { "loc", obj_ecoff_loc, 0 },
1556 { "mask", obj_ecoff_mask, 0 },
1557
1558 /* Sentinel. */
1559 { NULL }
1560 };
1561 \f
1562 /* This function is called when the assembler starts up. */
1563
1564 void
1565 obj_read_begin_hook ()
1566 {
1567 tag_hash = hash_new ();
1568 top_tag_head = allocate_thead ();
1569 top_tag_head->first_tag = (tag_t *) NULL;
1570 top_tag_head->free = (thead_t *) NULL;
1571 top_tag_head->prev = cur_tag_head;
1572 cur_tag_head = top_tag_head;
1573 }
1574
1575 /* This function is called when a symbol is created. */
1576
1577 void
1578 obj_symbol_new_hook (symbolP)
1579 symbolS *symbolP;
1580 {
1581 if (cur_file_ptr == (efdr_t *) NULL)
1582 add_file ((const char *) NULL, 0);
1583 symbolP->ecoff_file = cur_file_ptr;
1584 symbolP->ecoff_symbol = 0;
1585 symbolP->ecoff_undefined = 0;
1586 }
1587 \f
1588 /* Add a page to a varray object. */
1589
1590 static void
1591 add_varray_page (vp)
1592 varray_t *vp; /* varray to add page to */
1593 {
1594 vlinks_t *new_links = allocate_vlinks ();
1595
1596 #ifdef MALLOC_CHECK
1597 if (vp->object_size > 1)
1598 new_links->datum = (page_t *) xcalloc (1, vp->object_size);
1599 else
1600 #endif
1601 new_links->datum = allocate_page ();
1602
1603 alloc_counts[(int)alloc_type_varray].total_alloc++;
1604 alloc_counts[(int)alloc_type_varray].total_pages++;
1605
1606 new_links->start_index = vp->num_allocated;
1607 vp->objects_last_page = 0;
1608
1609 if (vp->first == (vlinks_t *) NULL) /* first allocation? */
1610 vp->first = vp->last = new_links;
1611 else
1612 { /* 2nd or greater allocation */
1613 new_links->prev = vp->last;
1614 vp->last->next = new_links;
1615 vp->last = new_links;
1616 }
1617 }
1618 \f
1619 /* Add a string (and null pad) to one of the string tables. */
1620
1621 static symint_t
1622 add_string (vp, hash_tbl, str, ret_hash)
1623 varray_t *vp; /* string obstack */
1624 struct hash_control *hash_tbl; /* ptr to hash table */
1625 const char *str; /* string */
1626 shash_t **ret_hash; /* return hash pointer */
1627 {
1628 register unsigned long len = strlen (str);
1629 register shash_t *hash_ptr;
1630
1631 if (len >= PAGE_USIZE)
1632 as_fatal ("String too big (%lu bytes)", len);
1633
1634 hash_ptr = (shash_t *) hash_find (hash_tbl, str);
1635 if (hash_ptr == (shash_t *) NULL)
1636 {
1637 register char *err;
1638
1639 if (vp->objects_last_page + len >= PAGE_USIZE)
1640 {
1641 vp->num_allocated =
1642 ((vp->num_allocated + PAGE_USIZE - 1) / PAGE_USIZE) * PAGE_USIZE;
1643 add_varray_page (vp);
1644 }
1645
1646 hash_ptr = allocate_shash ();
1647 hash_ptr->indx = vp->num_allocated;
1648
1649 hash_ptr->string = &vp->last->datum->byte[vp->objects_last_page];
1650
1651 vp->objects_last_page += len + 1;
1652 vp->num_allocated += len + 1;
1653
1654 strcpy (hash_ptr->string, str);
1655
1656 err = hash_insert (hash_tbl, str, (char *) hash_ptr);
1657 if (*err != '\0')
1658 as_fatal ("Inserting \"%s\" into string hash table: %s",
1659 str, err);
1660 }
1661
1662 if (ret_hash != (shash_t **) NULL)
1663 *ret_hash = hash_ptr;
1664
1665 return hash_ptr->indx;
1666 }
1667 \f
1668 /* Add debugging information for a symbol. */
1669
1670 static localsym_t *
1671 add_ecoff_symbol (str, type, storage, sym_value, value, indx)
1672 const char *str; /* symbol name */
1673 st_t type; /* symbol type */
1674 sc_t storage; /* storage class */
1675 symbolS *sym_value; /* associated symbol. */
1676 symint_t value; /* value of symbol */
1677 symint_t indx; /* index to local/aux. syms */
1678 {
1679 localsym_t *psym;
1680 register scope_t *pscope;
1681 register thead_t *ptag_head;
1682 register tag_t *ptag;
1683 register tag_t *ptag_next;
1684 register varray_t *vp;
1685 register int scope_delta = 0;
1686 shash_t *hash_ptr = (shash_t *) NULL;
1687
1688 if (cur_file_ptr == (efdr_t *) NULL)
1689 as_fatal ("no current file pointer");
1690
1691 vp = &cur_file_ptr->symbols;
1692
1693 if (vp->objects_last_page == vp->objects_per_page)
1694 add_varray_page (vp);
1695
1696 psym = &vp->last->datum->sym[ vp->objects_last_page++ ];
1697
1698 if (str == (const char *) NULL && sym_value != (symbolS *) NULL)
1699 psym->name = S_GET_NAME (sym_value);
1700 else
1701 psym->name = str;
1702 psym->as_sym = sym_value;
1703 if (sym_value != (symbolS *) NULL)
1704 sym_value->ecoff_symbol = 1;
1705 psym->file_ptr = cur_file_ptr;
1706 psym->proc_ptr = cur_proc_ptr;
1707 psym->begin_ptr = (localsym_t *) NULL;
1708 psym->index_ptr = (aux_t *) NULL;
1709 psym->forward_ref = (forward_t *) NULL;
1710 psym->sym_index = -1;
1711 psym->ecoff_sym.value = value;
1712 psym->ecoff_sym.st = (unsigned) type;
1713 psym->ecoff_sym.sc = (unsigned) storage;
1714 psym->ecoff_sym.index = indx;
1715
1716 /* If there is an associated symbol, we wait until the end of the
1717 assembly before deciding where to put the name (it may be just an
1718 external symbol). Otherwise, this is just a debugging symbol and
1719 the name should go with the current file. */
1720 if (sym_value == (symbolS *) NULL)
1721 psym->ecoff_sym.iss = ((str == (const char *) NULL)
1722 ? 0
1723 : add_string (&cur_file_ptr->strings,
1724 cur_file_ptr->str_hash,
1725 str,
1726 &hash_ptr));
1727
1728 ++vp->num_allocated;
1729
1730 if (ECOFF_IS_STAB (&psym->ecoff_sym))
1731 return psym;
1732
1733 /* Save the symbol within the hash table if this is a static
1734 item, and it has a name. */
1735 if (hash_ptr != (shash_t *) NULL
1736 && (type == st_Global || type == st_Static || type == st_Label
1737 || type == st_Proc || type == st_StaticProc))
1738 hash_ptr->sym_ptr = psym;
1739
1740 /* push or pop a scope if appropriate. */
1741 switch (type)
1742 {
1743 default:
1744 break;
1745
1746 case st_File: /* beginning of file */
1747 case st_Proc: /* procedure */
1748 case st_StaticProc: /* static procedure */
1749 case st_Block: /* begin scope */
1750 pscope = allocate_scope ();
1751 pscope->prev = cur_file_ptr->cur_scope;
1752 pscope->lsym = psym;
1753 pscope->type = type;
1754 cur_file_ptr->cur_scope = pscope;
1755
1756 if (type != st_File)
1757 scope_delta = 1;
1758
1759 /* For every block type except file, struct, union, or
1760 enumeration blocks, push a level on the tag stack. We omit
1761 file types, so that tags can span file boundaries. */
1762 if (type != st_File && storage != sc_Info)
1763 {
1764 ptag_head = allocate_thead ();
1765 ptag_head->first_tag = 0;
1766 ptag_head->prev = cur_tag_head;
1767 cur_tag_head = ptag_head;
1768 }
1769 break;
1770
1771 case st_End:
1772 pscope = cur_file_ptr->cur_scope;
1773 if (pscope == (scope_t *) NULL)
1774 as_fatal ("too many st_End's");
1775 else
1776 {
1777 st_t begin_type = (st_t) pscope->lsym->ecoff_sym.st;
1778
1779 psym->begin_ptr = pscope->lsym;
1780
1781 if (begin_type != st_File)
1782 scope_delta = -1;
1783
1784 /* Except for file, structure, union, or enumeration end
1785 blocks remove all tags created within this scope. */
1786 if (begin_type != st_File && storage != sc_Info)
1787 {
1788 ptag_head = cur_tag_head;
1789 cur_tag_head = ptag_head->prev;
1790
1791 for (ptag = ptag_head->first_tag;
1792 ptag != (tag_t *) NULL;
1793 ptag = ptag_next)
1794 {
1795 if (ptag->forward_ref != (forward_t *) NULL)
1796 add_unknown_tag (ptag);
1797
1798 ptag_next = ptag->same_block;
1799 ptag->hash_ptr->tag_ptr = ptag->same_name;
1800 free_tag (ptag);
1801 }
1802
1803 free_thead (ptag_head);
1804 }
1805
1806 cur_file_ptr->cur_scope = pscope->prev;
1807
1808 /* block begin gets next sym #. This is set when we know
1809 the symbol index value. */
1810
1811 /* Functions push two or more aux words as follows:
1812 1st word: index+1 of the end symbol (filled in later).
1813 2nd word: type of the function (plus any aux words needed).
1814 Also, tie the external pointer back to the function begin symbol. */
1815 if (begin_type != st_File && begin_type != st_Block)
1816 {
1817 symint_t ty;
1818 varray_t *svp = &cur_file_ptr->aux_syms;
1819
1820 pscope->lsym->ecoff_sym.index = add_aux_sym_symint (0);
1821 pscope->lsym->index_ptr =
1822 &svp->last->datum->aux[svp->objects_last_page - 1];
1823 ty = add_aux_sym_tir (&last_func_type_info,
1824 hash_no,
1825 &cur_file_ptr->thash_head[0]);
1826 /*
1827 if (last_func_sym_value != (symbolS *) NULL)
1828 {
1829 last_func_sym_value->ifd = cur_file_ptr->file_index;
1830 last_func_sym_value->index = ty;
1831 }
1832 */
1833 }
1834
1835 free_scope (pscope);
1836 }
1837 }
1838
1839 cur_file_ptr->nested_scopes += scope_delta;
1840
1841 #ifdef ECOFF_DEBUG
1842 if (debug && type != st_File
1843 && (debug > 2 || type == st_Block || type == st_End
1844 || type == st_Proc || type == st_StaticProc))
1845 {
1846 char *sc_str = sc_to_string (storage);
1847 char *st_str = st_to_string (type);
1848 int depth = cur_file_ptr->nested_scopes + (scope_delta < 0);
1849
1850 fprintf (stderr,
1851 "\tlsym\tv= %10ld, depth= %2d, sc= %-12s",
1852 value, depth, sc_str);
1853
1854 if (str_start && str_end_p1 - str_start > 0)
1855 fprintf (stderr, " st= %-11s name= %.*s\n", st_str, str_end_p1 - str_start, str_start);
1856 else
1857 {
1858 unsigned long len = strlen (st_str);
1859 fprintf (stderr, " st= %.*s\n", len-1, st_str);
1860 }
1861 }
1862 #endif
1863
1864 return psym;
1865 }
1866 \f
1867 /* Add an auxiliary symbol (passing a symint). This is actually used
1868 for integral aux types, not just symints. */
1869
1870 static symint_t
1871 add_aux_sym_symint (aux_word)
1872 symint_t aux_word; /* auxiliary information word */
1873 {
1874 register varray_t *vp;
1875 register aux_t *aux_ptr;
1876
1877 if (cur_file_ptr == (efdr_t *) NULL)
1878 as_fatal ("no current file pointer");
1879
1880 vp = &cur_file_ptr->aux_syms;
1881
1882 if (vp->objects_last_page == vp->objects_per_page)
1883 add_varray_page (vp);
1884
1885 aux_ptr = &vp->last->datum->aux[vp->objects_last_page++];
1886 aux_ptr->type = aux_isym;
1887 aux_ptr->data.isym = aux_word;
1888
1889 return vp->num_allocated++;
1890 }
1891
1892
1893 /* Add an auxiliary symbol (passing a file/symbol index combo). */
1894
1895 static symint_t
1896 add_aux_sym_rndx (file_index, sym_index)
1897 int file_index;
1898 symint_t sym_index;
1899 {
1900 register varray_t *vp;
1901 register aux_t *aux_ptr;
1902
1903 if (cur_file_ptr == (efdr_t *) NULL)
1904 as_fatal ("no current file pointer");
1905
1906 vp = &cur_file_ptr->aux_syms;
1907
1908 if (vp->objects_last_page == vp->objects_per_page)
1909 add_varray_page (vp);
1910
1911 aux_ptr = &vp->last->datum->aux[vp->objects_last_page++];
1912 aux_ptr->type = aux_rndx;
1913 aux_ptr->data.rndx.rfd = file_index;
1914 aux_ptr->data.rndx.index = sym_index;
1915
1916 return vp->num_allocated++;
1917 }
1918 \f
1919 /* Add an auxiliary symbol (passing the basic type and possibly
1920 type qualifiers). */
1921
1922 static symint_t
1923 add_aux_sym_tir (t, state, hash_tbl)
1924 type_info_t *t; /* current type information */
1925 hash_state_t state; /* whether to hash type or not */
1926 thash_t **hash_tbl; /* pointer to hash table to use */
1927 {
1928 register varray_t *vp;
1929 register aux_t *aux_ptr;
1930 static AUXU init_aux;
1931 symint_t ret;
1932 int i;
1933 AUXU aux;
1934
1935 if (cur_file_ptr == (efdr_t *) NULL)
1936 as_fatal ("no current file pointer");
1937
1938 vp = &cur_file_ptr->aux_syms;
1939
1940 aux = init_aux;
1941 aux.ti.bt = (int) t->basic_type;
1942 aux.ti.continued = 0;
1943 aux.ti.fBitfield = t->bitfield;
1944
1945 aux.ti.tq0 = (int) t->type_qualifiers[0];
1946 aux.ti.tq1 = (int) t->type_qualifiers[1];
1947 aux.ti.tq2 = (int) t->type_qualifiers[2];
1948 aux.ti.tq3 = (int) t->type_qualifiers[3];
1949 aux.ti.tq4 = (int) t->type_qualifiers[4];
1950 aux.ti.tq5 = (int) t->type_qualifiers[5];
1951
1952
1953 /* For anything that adds additional information, we must not hash,
1954 so check here, and reset our state. */
1955
1956 if (state != hash_no
1957 && (t->type_qualifiers[0] == tq_Array
1958 || t->type_qualifiers[1] == tq_Array
1959 || t->type_qualifiers[2] == tq_Array
1960 || t->type_qualifiers[3] == tq_Array
1961 || t->type_qualifiers[4] == tq_Array
1962 || t->type_qualifiers[5] == tq_Array
1963 || t->basic_type == bt_Struct
1964 || t->basic_type == bt_Union
1965 || t->basic_type == bt_Enum
1966 || t->bitfield
1967 || t->num_dims > 0))
1968 state = hash_no;
1969
1970 /* See if we can hash this type, and save some space, but some types
1971 can't be hashed (because they contain arrays or continuations),
1972 and others can be put into the hash list, but cannot use existing
1973 types because other aux entries precede this one. */
1974
1975 if (state != hash_no)
1976 {
1977 register thash_t *hash_ptr;
1978 register symint_t hi;
1979
1980 hi = aux.isym & ((1 << HASHBITS) - 1);
1981 hi %= THASH_SIZE;
1982
1983 for (hash_ptr = hash_tbl[hi];
1984 hash_ptr != (thash_t *)0;
1985 hash_ptr = hash_ptr->next)
1986 {
1987 if (aux.isym == hash_ptr->type.isym)
1988 break;
1989 }
1990
1991 if (hash_ptr != (thash_t *) NULL && state == hash_yes)
1992 return hash_ptr->indx;
1993
1994 if (hash_ptr == (thash_t *) NULL)
1995 {
1996 hash_ptr = allocate_thash ();
1997 hash_ptr->next = hash_tbl[hi];
1998 hash_ptr->type = aux;
1999 hash_ptr->indx = vp->num_allocated;
2000 hash_tbl[hi] = hash_ptr;
2001 }
2002 }
2003
2004 /* Everything is set up, add the aux symbol. */
2005 if (vp->objects_last_page == vp->objects_per_page)
2006 add_varray_page (vp);
2007
2008 aux_ptr = &vp->last->datum->aux[ vp->objects_last_page++ ];
2009 aux_ptr->type = aux_tir;
2010 aux_ptr->data = aux;
2011
2012 ret = vp->num_allocated++;
2013
2014 /* Add bitfield length if it exists.
2015
2016 NOTE: Mips documentation claims bitfield goes at the end of the
2017 AUX record, but the DECstation compiler emits it here.
2018 (This would only make a difference for enum bitfields.)
2019
2020 Also note: We use the last size given since gcc may emit 2
2021 for an enum bitfield. */
2022
2023 if (t->bitfield)
2024 (void) add_aux_sym_symint ((symint_t)t->sizes[t->num_sizes-1]);
2025
2026
2027 /* Add tag information if needed. Structure, union, and enum
2028 references add 2 aux symbols: a [file index, symbol index]
2029 pointer to the structure type, and the current file index. */
2030
2031 if (t->basic_type == bt_Struct
2032 || t->basic_type == bt_Union
2033 || t->basic_type == bt_Enum)
2034 {
2035 register symint_t file_index = t->tag_ptr->ifd;
2036 register localsym_t *sym = t->tag_ptr->sym;
2037 register forward_t *forward_ref = allocate_forward ();
2038
2039 if (sym != (localsym_t *) NULL)
2040 {
2041 forward_ref->next = sym->forward_ref;
2042 sym->forward_ref = forward_ref;
2043 }
2044 else
2045 {
2046 forward_ref->next = t->tag_ptr->forward_ref;
2047 t->tag_ptr->forward_ref = forward_ref;
2048 }
2049
2050 (void) add_aux_sym_rndx (ST_RFDESCAPE, indexNil);
2051 forward_ref->index_ptr
2052 = &vp->last->datum->aux[ vp->objects_last_page - 1];
2053
2054 (void) add_aux_sym_symint (file_index);
2055 forward_ref->ifd_ptr
2056 = &vp->last->datum->aux[ vp->objects_last_page - 1];
2057 }
2058
2059 /* Add information about array bounds if they exist. */
2060 for (i = 0; i < t->num_dims; i++)
2061 {
2062 (void) add_aux_sym_rndx (ST_RFDESCAPE,
2063 cur_file_ptr->int_type);
2064
2065 (void) add_aux_sym_symint (cur_file_ptr->file_index); /* file index*/
2066 (void) add_aux_sym_symint ((symint_t) 0); /* low bound */
2067 (void) add_aux_sym_symint (t->dimensions[i] - 1); /* high bound*/
2068 (void) add_aux_sym_symint ((t->dimensions[i] == 0) /* stride */
2069 ? 0
2070 : (t->sizes[i] * 8) / t->dimensions[i]);
2071 };
2072
2073 /* NOTE: Mips documentation claims that the bitfield width goes here.
2074 But it needs to be emitted earlier. */
2075
2076 return ret;
2077 }
2078 \f
2079 /* Add a tag to the tag table (unless it already exists). */
2080
2081 static tag_t *
2082 get_tag (tag, sym, basic_type)
2083 const char *tag; /* tag name */
2084 localsym_t *sym; /* tag start block */
2085 bt_t basic_type; /* bt_Struct, bt_Union, or bt_Enum */
2086 {
2087 shash_t *hash_ptr;
2088 char *err;
2089 tag_t *tag_ptr;
2090
2091 if (cur_file_ptr == (efdr_t *) NULL)
2092 as_fatal ("no current file pointer");
2093
2094 hash_ptr = (shash_t *) hash_find (tag_hash, tag);
2095
2096 if (hash_ptr != (shash_t *) NULL
2097 && hash_ptr->tag_ptr != (tag_t *) NULL)
2098 {
2099 tag_ptr = hash_ptr->tag_ptr;
2100 if (sym != (localsym_t *) NULL)
2101 {
2102 tag_ptr->basic_type = basic_type;
2103 tag_ptr->ifd = cur_file_ptr->file_index;
2104 tag_ptr->sym = sym;
2105 }
2106 return tag_ptr;
2107 }
2108
2109 if (hash_ptr == (shash_t *) NULL)
2110 {
2111 char *perm;
2112
2113 perm = xmalloc (strlen (tag) + 1);
2114 strcpy (perm, tag);
2115 hash_ptr = allocate_shash ();
2116 err = hash_insert (tag_hash, perm, (char *) hash_ptr);
2117 if (*err != '\0')
2118 as_fatal ("Inserting \"%s\" into tag hash table: %s",
2119 tag, err);
2120 hash_ptr->string = perm;
2121 }
2122
2123 tag_ptr = allocate_tag ();
2124 tag_ptr->forward_ref = (forward_t *) NULL;
2125 tag_ptr->hash_ptr = hash_ptr;
2126 tag_ptr->same_name = hash_ptr->tag_ptr;
2127 tag_ptr->basic_type = basic_type;
2128 tag_ptr->sym = sym;
2129 tag_ptr->ifd = ((sym == (localsym_t *) NULL)
2130 ? -1
2131 : cur_file_ptr->file_index);
2132 tag_ptr->same_block = cur_tag_head->first_tag;
2133
2134 cur_tag_head->first_tag = tag_ptr;
2135 hash_ptr->tag_ptr = tag_ptr;
2136
2137 return tag_ptr;
2138 }
2139 \f
2140 /* Add an unknown {struct, union, enum} tag. */
2141
2142 static void
2143 add_unknown_tag (ptag)
2144 tag_t *ptag; /* pointer to tag information */
2145 {
2146 shash_t *hash_ptr = ptag->hash_ptr;
2147 char *name = hash_ptr->string;
2148 localsym_t *sym;
2149 forward_t **pf;
2150
2151 #ifdef ECOFF_DEBUG
2152 if (debug > 1)
2153 {
2154 char *agg_type = "{unknown aggregate type}";
2155 switch (ptag->basic_type)
2156 {
2157 case bt_Struct: agg_type = "struct"; break;
2158 case bt_Union: agg_type = "union"; break;
2159 case bt_Enum: agg_type = "enum"; break;
2160 default: break;
2161 }
2162
2163 fprintf (stderr, "unknown %s %.*s found\n", agg_type,
2164 hash_ptr->len, name_start);
2165 }
2166 #endif
2167
2168 sym = add_ecoff_symbol (name,
2169 st_Block,
2170 sc_Info,
2171 (symbolS *) NULL,
2172 (symint_t) 0,
2173 (symint_t) 0);
2174
2175 (void) add_ecoff_symbol (name,
2176 st_End,
2177 sc_Info,
2178 (symbolS *) NULL,
2179 (symint_t) 0,
2180 (symint_t) 0);
2181
2182 for (pf = &sym->forward_ref; *pf != (forward_t *) NULL; pf = &(*pf)->next)
2183 ;
2184 *pf = ptag->forward_ref;
2185 }
2186 \f
2187 /* Add a procedure to the current file's list of procedures, and record
2188 this is the current procedure. */
2189
2190 static void
2191 add_procedure (func)
2192 char *func; /* func name */
2193 {
2194 register varray_t *vp;
2195 register proc_t *new_proc_ptr;
2196
2197 #ifdef ECOFF_DEBUG
2198 if (debug)
2199 fputc ('\n', stderr);
2200 #endif
2201
2202 if (cur_file_ptr == (efdr_t *) NULL)
2203 as_fatal ("no current file pointer");
2204
2205 vp = &cur_file_ptr->procs;
2206
2207 if (vp->objects_last_page == vp->objects_per_page)
2208 add_varray_page (vp);
2209
2210 cur_proc_ptr = new_proc_ptr = &vp->last->datum->proc[vp->objects_last_page++];
2211
2212 vp->num_allocated++;
2213
2214 new_proc_ptr->pdr.isym = -1;
2215 new_proc_ptr->pdr.iline = -1;
2216 new_proc_ptr->pdr.lnLow = -1;
2217 new_proc_ptr->pdr.lnHigh = -1;
2218
2219 /* Push the start of the function. */
2220 new_proc_ptr->sym = add_ecoff_symbol ((const char *) NULL, st_Proc, sc_Text,
2221 symbol_find_or_make (func),
2222 (symint_t) 0, (symint_t) 0);
2223
2224 ++proc_cnt;
2225
2226 /* Fill in the linenos preceding the .ent, if any. */
2227 if (noproc_lineno != (lineno_list_t *) NULL)
2228 {
2229 lineno_list_t *l;
2230
2231 for (l = noproc_lineno; l != (lineno_list_t *) NULL; l = l->next)
2232 l->proc = new_proc_ptr;
2233 *last_lineno_ptr = noproc_lineno;
2234 while (*last_lineno_ptr != NULL)
2235 last_lineno_ptr = &(*last_lineno_ptr)->next;
2236 noproc_lineno = (lineno_list_t *) NULL;
2237 }
2238 }
2239 \f
2240 /* Add a new filename, and set up all of the file relative
2241 virtual arrays (strings, symbols, aux syms, etc.). Record
2242 where the current file structure lives. */
2243
2244 static void
2245 add_file (file_name, indx)
2246 const char *file_name; /* file name */
2247 int indx;
2248 {
2249 register int first_ch;
2250 register efdr_t *fil_ptr;
2251
2252 #ifdef ECOFF_DEBUG
2253 if (debug)
2254 fprintf (stderr, "\tfile\t%.*s\n", len, file_start);
2255 #endif
2256
2257 /* If the file name is NULL, then no .file symbol appeared, and we
2258 want to use the actual file name. Unfortunately, we don't have a
2259 clean way to access it. */
2260 if (file_name == (const char *) NULL)
2261 {
2262 extern char *logical_input_file;
2263 extern char *physical_input_file;
2264
2265 if (first_file != (efdr_t *) NULL)
2266 as_fatal ("fake .file after real one");
2267 file_name = logical_input_file;
2268 if (file_name == (const char *) NULL)
2269 {
2270 file_name = physical_input_file;
2271 if (file_name == (const char *) NULL)
2272 file_name = "UNKNOWN";
2273 }
2274 }
2275
2276 #ifndef NO_LISTING
2277 if (listing)
2278 listing_source_file (file_name);
2279 #endif
2280
2281 /* If we're creating stabs, then we don't actually make a new FDR.
2282 Instead, we just create a stabs symbol. */
2283 if (stabs_seen)
2284 {
2285 (void) add_ecoff_symbol (file_name, st_Nil, sc_Nil,
2286 symbol_new ("L0\001", now_seg,
2287 frag_now_fix (), frag_now),
2288 0, ECOFF_MARK_STAB (N_SOL));
2289 return;
2290 }
2291
2292 first_ch = *file_name;
2293
2294 /* See if the file has already been created. */
2295 for (fil_ptr = first_file;
2296 fil_ptr != (efdr_t *) NULL;
2297 fil_ptr = fil_ptr->next_file)
2298 {
2299 if (first_ch == fil_ptr->name[0]
2300 && strcmp (file_name, fil_ptr->name) == 0)
2301 {
2302 cur_file_ptr = fil_ptr;
2303 break;
2304 }
2305 }
2306
2307 /* If this is a new file, create it. */
2308 if (fil_ptr == (efdr_t *) NULL)
2309 {
2310 if (file_desc.objects_last_page == file_desc.objects_per_page)
2311 add_varray_page (&file_desc);
2312
2313 fil_ptr = cur_file_ptr =
2314 &file_desc.last->datum->file[file_desc.objects_last_page++];
2315 *fil_ptr = init_file;
2316
2317 fil_ptr->file_index = indx;
2318 ++file_desc.num_allocated;
2319
2320 /* Allocate the string hash table. */
2321 fil_ptr->str_hash = hash_new ();
2322
2323 /* Make sure 0 byte in string table is null */
2324 add_string (&fil_ptr->strings,
2325 fil_ptr->str_hash,
2326 "",
2327 (shash_t **)0);
2328
2329 if (strlen (file_name) > PAGE_USIZE - 2)
2330 as_fatal ("Filename goes over one page boundary.");
2331
2332 /* Push the start of the filename. We assume that the filename
2333 will be stored at string offset 1. */
2334 (void) add_ecoff_symbol (file_name, st_File, sc_Text,
2335 (symbolS *) NULL,
2336 (symint_t) 0, (symint_t) 0);
2337 fil_ptr->fdr.rss = 1;
2338 fil_ptr->name = &fil_ptr->strings.last->datum->byte[1];
2339
2340 /* Update the linked list of file descriptors. */
2341 *last_file_ptr = fil_ptr;
2342 last_file_ptr = &fil_ptr->next_file;
2343
2344 /* Add void & int types to the file (void should be first to catch
2345 errant 0's within the index fields). */
2346 fil_ptr->void_type = add_aux_sym_tir (&void_type_info,
2347 hash_yes,
2348 &cur_file_ptr->thash_head[0]);
2349
2350 fil_ptr->int_type = add_aux_sym_tir (&int_type_info,
2351 hash_yes,
2352 &cur_file_ptr->thash_head[0]);
2353 }
2354 }
2355 \f
2356 #ifdef ECOFF_DEBUG
2357
2358 /* Convert storage class to string. */
2359
2360 static char *
2361 sc_to_string(storage_class)
2362 sc_t storage_class;
2363 {
2364 switch(storage_class)
2365 {
2366 case sc_Nil: return "Nil,";
2367 case sc_Text: return "Text,";
2368 case sc_Data: return "Data,";
2369 case sc_Bss: return "Bss,";
2370 case sc_Register: return "Register,";
2371 case sc_Abs: return "Abs,";
2372 case sc_Undefined: return "Undefined,";
2373 case sc_CdbLocal: return "CdbLocal,";
2374 case sc_Bits: return "Bits,";
2375 case sc_CdbSystem: return "CdbSystem,";
2376 case sc_RegImage: return "RegImage,";
2377 case sc_Info: return "Info,";
2378 case sc_UserStruct: return "UserStruct,";
2379 case sc_SData: return "SData,";
2380 case sc_SBss: return "SBss,";
2381 case sc_RData: return "RData,";
2382 case sc_Var: return "Var,";
2383 case sc_Common: return "Common,";
2384 case sc_SCommon: return "SCommon,";
2385 case sc_VarRegister: return "VarRegister,";
2386 case sc_Variant: return "Variant,";
2387 case sc_SUndefined: return "SUndefined,";
2388 case sc_Init: return "Init,";
2389 case sc_Max: return "Max,";
2390 }
2391
2392 return "???,";
2393 }
2394
2395 #endif /* DEBUG */
2396 \f
2397 #ifdef ECOFF_DEBUG
2398
2399 /* Convert symbol type to string. */
2400
2401 static char *
2402 st_to_string(symbol_type)
2403 st_t symbol_type;
2404 {
2405 switch(symbol_type)
2406 {
2407 case st_Nil: return "Nil,";
2408 case st_Global: return "Global,";
2409 case st_Static: return "Static,";
2410 case st_Param: return "Param,";
2411 case st_Local: return "Local,";
2412 case st_Label: return "Label,";
2413 case st_Proc: return "Proc,";
2414 case st_Block: return "Block,";
2415 case st_End: return "End,";
2416 case st_Member: return "Member,";
2417 case st_Typedef: return "Typedef,";
2418 case st_File: return "File,";
2419 case st_RegReloc: return "RegReloc,";
2420 case st_Forward: return "Forward,";
2421 case st_StaticProc: return "StaticProc,";
2422 case st_Constant: return "Constant,";
2423 case st_Str: return "String,";
2424 case st_Number: return "Number,";
2425 case st_Expr: return "Expr,";
2426 case st_Type: return "Type,";
2427 case st_Max: return "Max,";
2428 }
2429
2430 return "???,";
2431 }
2432
2433 #endif /* DEBUG */
2434 \f
2435 /* Parse .begin directives which have a label as the first argument
2436 which gives the location of the start of the block. */
2437
2438 static void
2439 obj_ecoff_begin (ignore)
2440 int ignore;
2441 {
2442 char *name;
2443 char name_end;
2444
2445 if (cur_file_ptr == (efdr_t *) NULL)
2446 {
2447 as_warn (".begin directive without a preceding .file directive");
2448 demand_empty_rest_of_line ();
2449 return;
2450 }
2451
2452 if (cur_proc_ptr == (proc_t *) NULL)
2453 {
2454 as_warn (".begin directive without a preceding .ent directive");
2455 demand_empty_rest_of_line ();
2456 return;
2457 }
2458
2459 name = input_line_pointer;
2460 name_end = get_symbol_end ();
2461
2462 (void) add_ecoff_symbol ((const char *) NULL, st_Block, sc_Text,
2463 symbol_find_or_make (name),
2464 (symint_t) 0, (symint_t) 0);
2465
2466 *input_line_pointer = name_end;
2467
2468 /* The line number follows, but we don't use it. */
2469 (void) get_absolute_expression ();
2470 demand_empty_rest_of_line ();
2471 }
2472 \f
2473 /* Parse .bend directives which have a label as the first argument
2474 which gives the location of the end of the block. */
2475
2476 static void
2477 obj_ecoff_bend (ignore)
2478 int ignore;
2479 {
2480 char *name;
2481 char name_end;
2482 symbolS *endsym;
2483
2484 if (cur_file_ptr == (efdr_t *) NULL)
2485 {
2486 as_warn (".bend directive without a preceding .file directive");
2487 demand_empty_rest_of_line ();
2488 return;
2489 }
2490
2491 if (cur_proc_ptr == (proc_t *) NULL)
2492 {
2493 as_warn (".bend directive without a preceding .ent directive");
2494 demand_empty_rest_of_line ();
2495 return;
2496 }
2497
2498 name = input_line_pointer;
2499 name_end = get_symbol_end ();
2500
2501 /* The value is the distance between the .bend directive and the
2502 corresponding symbol. We fill in the offset when we write out
2503 the symbol. */
2504 endsym = symbol_find (name);
2505 if (endsym == (symbolS *) NULL)
2506 as_warn (".bend directive names unknown symbol");
2507 else
2508 (void) add_ecoff_symbol ((const char *) NULL, st_End, sc_Text, endsym,
2509 (symint_t) 0, (symint_t) 0);
2510
2511 *input_line_pointer = name_end;
2512
2513 /* The line number follows, but we don't use it. */
2514 (void) get_absolute_expression ();
2515 demand_empty_rest_of_line ();
2516 }
2517 \f
2518 /* COFF debugging information is provided as a series of directives
2519 (.def, .scl, etc.). We build up information as we read the
2520 directives in the following static variables, and file it away when
2521 we reach the .endef directive. */
2522 static char *coff_sym_name;
2523 static type_info_t coff_type;
2524 static sc_t coff_storage_class;
2525 static st_t coff_symbol_typ;
2526 static int coff_is_function;
2527 static char *coff_tag;
2528 static long coff_value; /* FIXME: Might be 64 bits. */
2529 symbolS *coff_sym_value;
2530 static int coff_inside_enumeration;
2531
2532 /* Handle a .def directive: start defining a symbol. */
2533
2534 static void
2535 obj_ecoff_def (ignore)
2536 int ignore;
2537 {
2538 char *name;
2539 char name_end;
2540
2541 SKIP_WHITESPACES ();
2542
2543 name = input_line_pointer;
2544 name_end = get_symbol_end ();
2545
2546 if (coff_sym_name != (char *) NULL)
2547 as_warn (".def pseudo-op used inside of .def/.endef; ignored");
2548 else if (*name == '\0')
2549 as_warn ("Empty symbol name in .def; ignored");
2550 else
2551 {
2552 if (coff_sym_name != (char *) NULL)
2553 free (coff_sym_name);
2554 if (coff_tag != (char *) NULL)
2555 free (coff_tag);
2556 coff_sym_name = (char *) xmalloc (strlen (name) + 1);
2557 strcpy (coff_sym_name, name);
2558 coff_type = type_info_init;
2559 coff_storage_class = sc_Nil;
2560 coff_symbol_typ = st_Nil;
2561 coff_is_function = 0;
2562 coff_tag = (char *) NULL;
2563 coff_value = 0;
2564 coff_sym_value = (symbolS *) NULL;
2565 }
2566
2567 *input_line_pointer = name_end;
2568
2569 demand_empty_rest_of_line ();
2570 }
2571
2572 /* Handle a .dim directive, used to give dimensions for an array. The
2573 arguments are comma separated numbers. mips-tfile assumes that
2574 there will not be more than 6 dimensions, and gdb won't read any
2575 more than that anyhow, so I will also make that assumption. */
2576
2577 static void
2578 obj_ecoff_dim (ignore)
2579 int ignore;
2580 {
2581 int dimens[N_TQ];
2582 int i;
2583
2584 if (coff_sym_name == (char *) NULL)
2585 {
2586 as_warn (".dim pseudo-op used outside of .def/.endef; ignored");
2587 demand_empty_rest_of_line ();
2588 return;
2589 }
2590
2591 for (i = 0; i < N_TQ; i++)
2592 {
2593 SKIP_WHITESPACES ();
2594 dimens[i] = get_absolute_expression ();
2595 if (*input_line_pointer == ',')
2596 ++input_line_pointer;
2597 else
2598 {
2599 if (*input_line_pointer != '\n'
2600 && *input_line_pointer != ';')
2601 as_warn ("Badly formed .dim directive");
2602 break;
2603 }
2604 }
2605
2606 if (i == N_TQ)
2607 --i;
2608
2609 /* The dimensions are stored away in reverse order. */
2610 for (; i >= 0; i--)
2611 {
2612 if (coff_type.num_dims >= N_TQ)
2613 {
2614 as_warn ("Too many .dim entries");
2615 break;
2616 }
2617 coff_type.dimensions[coff_type.num_dims] = dimens[i];
2618 ++coff_type.num_dims;
2619 }
2620
2621 demand_empty_rest_of_line ();
2622 }
2623
2624 /* Handle a .scl directive, which sets the COFF storage class of the
2625 symbol. */
2626
2627 static void
2628 obj_ecoff_scl (ignore)
2629 int ignore;
2630 {
2631 long val;
2632
2633 if (coff_sym_name == (char *) NULL)
2634 {
2635 as_warn (".scl pseudo-op used outside of .def/.endef; ignored");
2636 demand_empty_rest_of_line ();
2637 return;
2638 }
2639
2640 val = get_absolute_expression ();
2641
2642 coff_symbol_typ = map_coff_sym_type[val];
2643 coff_storage_class = map_coff_storage[val];
2644
2645 demand_empty_rest_of_line ();
2646 }
2647
2648 /* Handle a .size directive. For some reason mips-tfile.c thinks that
2649 .size can have multiple arguments. We humor it, although gcc will
2650 never generate more than one argument. */
2651
2652 static void
2653 obj_ecoff_size (ignore)
2654 int ignore;
2655 {
2656 int sizes[N_TQ];
2657 int i;
2658
2659 if (coff_sym_name == (char *) NULL)
2660 {
2661 as_warn (".size pseudo-op used outside of .def/.endef; ignored");
2662 demand_empty_rest_of_line ();
2663 return;
2664 }
2665
2666 for (i = 0; i < N_TQ; i++)
2667 {
2668 SKIP_WHITESPACES ();
2669 sizes[i] = get_absolute_expression ();
2670 if (*input_line_pointer == ',')
2671 ++input_line_pointer;
2672 else
2673 {
2674 if (*input_line_pointer != '\n'
2675 && *input_line_pointer != ';')
2676 as_warn ("Badly formed .size directive");
2677 break;
2678 }
2679 }
2680
2681 if (i == N_TQ)
2682 --i;
2683
2684 /* The sizes are stored away in reverse order. */
2685 for (; i >= 0; i--)
2686 {
2687 if (coff_type.num_sizes >= N_TQ)
2688 {
2689 as_warn ("Too many .size entries");
2690 break;
2691 }
2692 coff_type.sizes[coff_type.num_sizes] = sizes[i];
2693 ++coff_type.num_sizes;
2694 }
2695
2696 demand_empty_rest_of_line ();
2697 }
2698
2699 /* Handle the .type directive, which gives the COFF type of the
2700 symbol. */
2701
2702 static void
2703 obj_ecoff_type (ignore)
2704 int ignore;
2705 {
2706 long val;
2707 tq_t *tq_ptr;
2708 tq_t *tq_shft;
2709
2710 if (coff_sym_name == (char *) NULL)
2711 {
2712 as_warn (".type pseudo-op used outside of .def/.endef; ignored");
2713 demand_empty_rest_of_line ();
2714 return;
2715 }
2716
2717 val = get_absolute_expression ();
2718
2719 coff_type.orig_type = BTYPE (val);
2720 coff_type.basic_type = map_coff_types[coff_type.orig_type];
2721
2722 tq_ptr = &coff_type.type_qualifiers[N_TQ];
2723 while (val &~ N_BTMASK)
2724 {
2725 if (tq_ptr == &coff_type.type_qualifiers[0])
2726 {
2727 as_warn ("Too derived values in .type argument");
2728 break;
2729 }
2730 if (ISPTR (val))
2731 *--tq_ptr = tq_Ptr;
2732 else if (ISFCN (val))
2733 *--tq_ptr = tq_Proc;
2734 else if (ISARY (val))
2735 *--tq_ptr = tq_Array;
2736 else
2737 as_fatal ("Unrecognized .type argument");
2738
2739 val = DECREF (val);
2740 }
2741
2742 tq_shft = &coff_type.type_qualifiers[0];
2743 while (tq_ptr != &coff_type.type_qualifiers[N_TQ])
2744 *tq_shft++ = *tq_ptr++;
2745
2746 if (tq_shft != &coff_type.type_qualifiers[0] && tq_shft[-1] == tq_Proc)
2747 {
2748 /* If this is a function, ignore it, so that we don't get two
2749 entries (one from the .ent, and one for the .def that
2750 precedes it). Save the type information so that the end
2751 block can properly add it after the begin block index. For
2752 MIPS knows what reason, we must strip off the function type
2753 at this point. */
2754 coff_is_function = 1;
2755 tq_shft[-1] = tq_Nil;
2756 }
2757
2758 while (tq_shft != &coff_type.type_qualifiers[N_TQ])
2759 *tq_shft++ = tq_Nil;
2760
2761 demand_empty_rest_of_line ();
2762 }
2763
2764 /* Handle the .tag directive, which gives the name of a structure,
2765 union or enum. */
2766
2767 static void
2768 obj_ecoff_tag (ignore)
2769 int ignore;
2770 {
2771 char *name;
2772 char name_end;
2773
2774 if (coff_sym_name == (char *) NULL)
2775 {
2776 as_warn (".tag pseudo-op used outside of .def/.endef; ignored");
2777 demand_empty_rest_of_line ();
2778 return;
2779 }
2780
2781 name = input_line_pointer;
2782 name_end = get_symbol_end ();
2783
2784 coff_tag = (char *) xmalloc (strlen (name) + 1);
2785 strcpy (coff_tag, name);
2786
2787 *input_line_pointer = name_end;
2788
2789 demand_empty_rest_of_line ();
2790 }
2791
2792 /* Handle the .val directive, which gives the value of the symbol. It
2793 may be the name of a static or global symbol. */
2794
2795 static void
2796 obj_ecoff_val (ignore)
2797 int ignore;
2798 {
2799 if (coff_sym_name == (char *) NULL)
2800 {
2801 as_warn (".val pseudo-op used outside of .def/.endef; ignored");
2802 demand_empty_rest_of_line ();
2803 return;
2804 }
2805
2806 if (! is_name_beginner ((unsigned char) *input_line_pointer))
2807 coff_value = get_absolute_expression ();
2808 else
2809 {
2810 char *name;
2811 char name_end;
2812
2813 name = input_line_pointer;
2814 name_end = get_symbol_end ();
2815
2816 if (strcmp (name, ".") == 0)
2817 as_warn ("`.val .' not supported");
2818 else
2819 coff_sym_value = symbol_find_or_make (name);
2820
2821 *input_line_pointer = name_end;
2822
2823 /* FIXME: gcc can generate address expressions here in unusual
2824 cases (search for "obscure" in sdbout.c), although this is
2825 very unlikely for a MIPS chip. */
2826 }
2827
2828 demand_empty_rest_of_line ();
2829 }
2830
2831 /* Handle the .endef directive, which terminates processing of COFF
2832 debugging information for a symbol. */
2833
2834 static void
2835 obj_ecoff_endef (ignore)
2836 int ignore;
2837 {
2838 char *name;
2839 symint_t indx;
2840 localsym_t *sym;
2841
2842 demand_empty_rest_of_line ();
2843
2844 if (coff_sym_name == (char *) NULL)
2845 {
2846 as_warn (".endef pseudo-op used before .def; ignored");
2847 return;
2848 }
2849
2850 name = coff_sym_name;
2851 coff_sym_name = (char *) NULL;
2852
2853 /* If the symbol is a static or external, we have already gotten the
2854 appropriate type and class, so make sure we don't override those
2855 values. This is needed because there are some type and classes
2856 that are not in COFF, such as short data, etc. */
2857 if (coff_sym_value != (symbolS *) NULL)
2858 {
2859 coff_symbol_typ = st_Nil;
2860 coff_storage_class = sc_Nil;
2861 }
2862
2863 coff_type.extra_sizes = coff_tag != (char *) NULL;
2864 if (coff_type.num_dims > 0)
2865 {
2866 int diff = coff_type.num_dims - coff_type.num_sizes;
2867 int i = coff_type.num_dims - 1;
2868 int j;
2869
2870 if (coff_type.num_sizes != 1 || diff < 0)
2871 {
2872 as_warn ("Bad COFF debugging info");
2873 return;
2874 }
2875
2876 /* If this is an array, make sure the same number of dimensions
2877 and sizes were passed, creating extra sizes for multiply
2878 dimensioned arrays if not passed. */
2879 coff_type.extra_sizes = 0;
2880 if (diff)
2881 {
2882 j = (sizeof (coff_type.sizes) / sizeof (coff_type.sizes[0])) - 1;
2883 while (j >= 0)
2884 {
2885 coff_type.sizes[j] = (((j - diff) >= 0)
2886 ? coff_type.sizes[j - diff]
2887 : 0);
2888 j--;
2889 }
2890
2891 coff_type.num_sizes = i + 1;
2892 for (i--; i >= 0; i--)
2893 coff_type.sizes[i] = (coff_type.sizes[i + 1]
2894 / coff_type.dimensions[i + 1]);
2895 }
2896 }
2897 else if (coff_symbol_typ == st_Member
2898 && coff_type.num_sizes - coff_type.extra_sizes == 1)
2899 {
2900 /* Is this a bitfield? This is indicated by a structure memeber
2901 having a size field that isn't an array. */
2902 coff_type.bitfield = 1;
2903 }
2904
2905 /* Except for enumeration members & begin/ending of scopes, put the
2906 type word in the aux. symbol table. */
2907 if (coff_symbol_typ == st_Block || coff_symbol_typ == st_End)
2908 indx = 0;
2909 else if (coff_inside_enumeration)
2910 indx = cur_file_ptr->void_type;
2911 else
2912 {
2913 if (coff_type.basic_type == bt_Struct
2914 || coff_type.basic_type == bt_Union
2915 || coff_type.basic_type == bt_Enum)
2916 {
2917 if (coff_tag == (char *) NULL)
2918 {
2919 as_warn ("No tag specified for %s", name);
2920 return;
2921 }
2922
2923 coff_type.tag_ptr = get_tag (coff_tag, (localsym_t *) NULL,
2924 coff_type.basic_type);
2925 }
2926
2927 if (coff_is_function)
2928 {
2929 last_func_type_info = coff_type;
2930 last_func_sym_value = coff_sym_value;
2931 return;
2932 }
2933
2934 indx = add_aux_sym_tir (&coff_type,
2935 hash_yes,
2936 &cur_file_ptr->thash_head[0]);
2937 }
2938
2939 /* Do any last minute adjustments that are necessary. */
2940 switch (coff_symbol_typ)
2941 {
2942 default:
2943 break;
2944
2945 /* For the beginning of structs, unions, and enumerations, the
2946 size info needs to be passed in the value field. */
2947 case st_Block:
2948 if (coff_type.num_sizes - coff_type.num_dims - coff_type.extra_sizes
2949 != 1)
2950 {
2951 as_warn ("Bad COFF debugging information");
2952 return;
2953 }
2954 else
2955 coff_value = coff_type.sizes[0];
2956
2957 coff_inside_enumeration = (coff_type.orig_type == T_ENUM);
2958 break;
2959
2960 /* For the end of structs, unions, and enumerations, omit the
2961 name which is always ".eos". This needs to be done last, so
2962 that any error reporting above gives the correct name. */
2963 case st_End:
2964 free (name);
2965 name = (char *) NULL;
2966 coff_value = 0;
2967 coff_inside_enumeration = 0;
2968 break;
2969
2970 /* Members of structures and unions that aren't bitfields, need
2971 to adjust the value from a byte offset to a bit offset.
2972 Members of enumerations do not have the value adjusted, and
2973 can be distinguished by indx == indexNil. For enumerations,
2974 update the maximum enumeration value. */
2975 case st_Member:
2976 if (! coff_type.bitfield && ! coff_inside_enumeration)
2977 coff_value *= 8;
2978
2979 break;
2980 }
2981
2982 /* Add the symbol. */
2983 sym = add_ecoff_symbol (name,
2984 coff_symbol_typ,
2985 coff_storage_class,
2986 coff_sym_value,
2987 coff_value,
2988 indx);
2989
2990 /* deal with struct, union, and enum tags. */
2991 if (coff_symbol_typ == st_Block)
2992 {
2993 /* Create or update the tag information. */
2994 tag_t *tag_ptr = get_tag (name,
2995 sym,
2996 coff_type.basic_type);
2997 forward_t **pf;
2998
2999 /* Remember any forward references. */
3000 for (pf = &sym->forward_ref;
3001 *pf != (forward_t *) NULL;
3002 pf = &(*pf)->next)
3003 ;
3004 *pf = tag_ptr->forward_ref;
3005 tag_ptr->forward_ref = (forward_t *) NULL;
3006 }
3007 }
3008 \f
3009 /* Parse .end directives. */
3010
3011 static void
3012 obj_ecoff_end (ignore)
3013 int ignore;
3014 {
3015 char *name;
3016 char name_end;
3017 register int ch;
3018 symbolS *ent;
3019
3020 if (cur_file_ptr == (efdr_t *) NULL)
3021 {
3022 as_warn (".end directive without a preceding .file directive");
3023 demand_empty_rest_of_line ();
3024 return;
3025 }
3026
3027 if (cur_proc_ptr == (proc_t *) NULL)
3028 {
3029 as_warn (".end directive without a preceding .ent directive");
3030 demand_empty_rest_of_line ();
3031 return;
3032 }
3033
3034 name = input_line_pointer;
3035 name_end = get_symbol_end ();
3036
3037 ch = *name;
3038 if (! is_name_beginner (ch))
3039 {
3040 as_warn (".end directive has no name");
3041 *input_line_pointer = name_end;
3042 demand_empty_rest_of_line ();
3043 return;
3044 }
3045
3046 /* The value is the distance between the .end directive and the
3047 corresponding symbol. We create a fake symbol to hold the
3048 current location, and put in the offset when we write out the
3049 symbol. */
3050 ent = symbol_find (name);
3051 if (ent == (symbolS *) NULL)
3052 as_warn (".end directive names unknown symbol");
3053 else
3054 (void) add_ecoff_symbol ((const char *) NULL, st_End, sc_Text,
3055 symbol_new ("L0\001", now_seg,
3056 frag_now_fix (), frag_now),
3057 (symint_t) 0, (symint_t) 0);
3058
3059 cur_proc_ptr = (proc_t *) NULL;
3060
3061 *input_line_pointer = name_end;
3062 demand_empty_rest_of_line ();
3063 }
3064 \f
3065 /* Parse .ent directives. */
3066
3067 static void
3068 obj_ecoff_ent (ignore)
3069 int ignore;
3070 {
3071 char *name;
3072 char name_end;
3073 register int ch;
3074
3075 if (cur_file_ptr == (efdr_t *) NULL)
3076 add_file ((const char *) NULL, 0);
3077
3078 if (cur_proc_ptr != (proc_t *) NULL)
3079 {
3080 as_warn ("second .ent directive found before .end directive");
3081 demand_empty_rest_of_line ();
3082 return;
3083 }
3084
3085 name = input_line_pointer;
3086 name_end = get_symbol_end ();
3087
3088 ch = *name;
3089 if (! is_name_beginner (ch))
3090 {
3091 as_warn (".ent directive has no name");
3092 *input_line_pointer = name_end;
3093 demand_empty_rest_of_line ();
3094 return;
3095 }
3096
3097 add_procedure (name);
3098
3099 *input_line_pointer = name_end;
3100 demand_empty_rest_of_line ();
3101 }
3102 \f
3103 /* Parse .file directives. */
3104
3105 static void
3106 obj_ecoff_file (ignore)
3107 int ignore;
3108 {
3109 int indx;
3110 char *name;
3111 int len;
3112
3113 if (cur_proc_ptr != (proc_t *) NULL)
3114 {
3115 as_warn ("No way to handle .file within .ent/.end section");
3116 demand_empty_rest_of_line ();
3117 return;
3118 }
3119
3120 indx = (int) get_absolute_expression ();
3121
3122 /* FIXME: we don't have to save the name here. */
3123 name = demand_copy_C_string (&len);
3124
3125 add_file (name, indx - 1);
3126
3127 demand_empty_rest_of_line ();
3128 }
3129 \f
3130 /* Parse .fmask directives. */
3131
3132 static void
3133 obj_ecoff_fmask (ignore)
3134 int ignore;
3135 {
3136 long val;
3137
3138 if (cur_proc_ptr == (proc_t *) NULL)
3139 {
3140 as_warn (".fmask outside of .ent");
3141 demand_empty_rest_of_line ();
3142 return;
3143 }
3144
3145 if (get_absolute_expression_and_terminator (&val) != ',')
3146 {
3147 as_warn ("Bad .fmask directive");
3148 --input_line_pointer;
3149 demand_empty_rest_of_line ();
3150 return;
3151 }
3152
3153 cur_proc_ptr->pdr.fregmask = val;
3154 cur_proc_ptr->pdr.fregoffset = get_absolute_expression ();
3155
3156 demand_empty_rest_of_line ();
3157 }
3158 \f
3159 /* Parse .frame directives. */
3160
3161 static void
3162 obj_ecoff_frame (ignore)
3163 int ignore;
3164 {
3165 long val;
3166
3167 if (cur_proc_ptr == (proc_t *) NULL)
3168 {
3169 as_warn (".frame outside of .ent");
3170 demand_empty_rest_of_line ();
3171 return;
3172 }
3173
3174 cur_proc_ptr->pdr.framereg = tc_get_register ();
3175
3176 SKIP_WHITESPACE ();
3177 if (*input_line_pointer++ != ','
3178 || get_absolute_expression_and_terminator (&val) != ',')
3179 {
3180 as_warn ("Bad .frame directive");
3181 --input_line_pointer;
3182 demand_empty_rest_of_line ();
3183 return;
3184 }
3185
3186 cur_proc_ptr->pdr.frameoffset = val;
3187
3188 cur_proc_ptr->pdr.pcreg = tc_get_register ();
3189
3190 demand_empty_rest_of_line ();
3191 }
3192 \f
3193 /* Parse .mask directives. */
3194
3195 static void
3196 obj_ecoff_mask (ignore)
3197 int ignore;
3198 {
3199 long val;
3200
3201 if (cur_proc_ptr == (proc_t *) NULL)
3202 {
3203 as_warn (".mask outside of .ent");
3204 demand_empty_rest_of_line ();
3205 return;
3206 }
3207
3208 if (get_absolute_expression_and_terminator (&val) != ',')
3209 {
3210 as_warn ("Bad .mask directive");
3211 --input_line_pointer;
3212 demand_empty_rest_of_line ();
3213 return;
3214 }
3215
3216 cur_proc_ptr->pdr.regmask = val;
3217 cur_proc_ptr->pdr.regoffset = get_absolute_expression ();
3218
3219 demand_empty_rest_of_line ();
3220 }
3221 \f
3222 /* Parse .loc directives. */
3223
3224 static void
3225 obj_ecoff_loc (ignore)
3226 int ignore;
3227 {
3228 lineno_list_t *list;
3229 int lineno;
3230
3231 if (cur_file_ptr == (efdr_t *) NULL)
3232 {
3233 as_warn (".loc before .file");
3234 demand_empty_rest_of_line ();
3235 return;
3236 }
3237
3238 if (now_seg != text_section)
3239 {
3240 as_warn (".loc outside of .text");
3241 demand_empty_rest_of_line ();
3242 return;
3243 }
3244
3245 /* Skip the file number. */
3246 SKIP_WHITESPACE ();
3247 get_absolute_expression ();
3248 SKIP_WHITESPACE ();
3249
3250 lineno = get_absolute_expression ();
3251
3252 #ifndef NO_LISTING
3253 if (listing)
3254 listing_source_line (lineno);
3255 #endif
3256
3257 /* If we're building stabs, then output a special label rather than
3258 ECOFF line number info. */
3259 if (stabs_seen)
3260 {
3261 (void) add_ecoff_symbol ((char *) NULL, st_Label, sc_Text,
3262 symbol_new ("L0\001", now_seg,
3263 frag_now_fix (), frag_now),
3264 0, lineno);
3265 return;
3266 }
3267
3268 list = allocate_lineno_list ();
3269
3270 list->next = (lineno_list_t *) NULL;
3271 list->file = cur_file_ptr;
3272 list->proc = cur_proc_ptr;
3273 list->frag = frag_now;
3274 list->paddr = frag_now_fix ();
3275 list->lineno = lineno;
3276
3277 /* A .loc directive will sometimes appear before a .ent directive,
3278 which means that cur_proc_ptr will be NULL here. Arrange to
3279 patch this up. */
3280 if (cur_proc_ptr == (proc_t *) NULL)
3281 {
3282 lineno_list_t **pl;
3283
3284 pl = &noproc_lineno;
3285 while (*pl != (lineno_list_t *) NULL)
3286 pl = &(*pl)->next;
3287 *pl = list;
3288 }
3289 else
3290 {
3291 *last_lineno_ptr = list;
3292 last_lineno_ptr = &list->next;
3293 }
3294 }
3295 \f
3296 /* Make sure the @stabs symbol is emitted. */
3297
3298 static void
3299 mark_stabs (ignore)
3300 int ignore;
3301 {
3302 if (! stabs_seen)
3303 {
3304 /* Add a dummy @stabs dymbol. */
3305 stabs_seen = 1;
3306 (void) add_ecoff_symbol (stabs_symbol, stNil, scInfo,
3307 (symbolS *) NULL,
3308 (symint_t) -1, ECOFF_MARK_STAB (0));
3309 }
3310 }
3311 \f
3312 /* Parse .stabs directives.
3313
3314 .stabs directives have five fields:
3315 "string" a string, encoding the type information.
3316 code a numeric code, defined in <stab.h>
3317 0 a zero
3318 0 a zero or line number
3319 value a numeric value or an address.
3320
3321 If the value is relocatable, we transform this into:
3322 iss points as an index into string space
3323 value value from lookup of the name
3324 st st from lookup of the name
3325 sc sc from lookup of the name
3326 index code|CODE_MASK
3327
3328 If the value is not relocatable, we transform this into:
3329 iss points as an index into string space
3330 value value
3331 st st_Nil
3332 sc sc_Nil
3333 index code|CODE_MASK
3334
3335 .stabn directives have four fields (string is null):
3336 code a numeric code, defined in <stab.h>
3337 0 a zero
3338 0 a zero or a line number
3339 value a numeric value or an address. */
3340
3341 static void
3342 obj_ecoff_stab (type)
3343 int type;
3344 {
3345 char *string;
3346 efdr_t *save_file_ptr = cur_file_ptr;
3347 symint_t code;
3348 symint_t value;
3349 symbolS *sym;
3350 st_t st;
3351 sc_t sc;
3352
3353 if (cur_file_ptr == (efdr_t *) NULL)
3354 {
3355 add_file ((const char *) NULL, 0);
3356 save_file_ptr = cur_file_ptr;
3357 }
3358
3359 if (stabs_seen == 0)
3360 mark_stabs (0);
3361
3362 if (type != 's')
3363 string = (char *) NULL;
3364 else
3365 {
3366 int len;
3367
3368 string = demand_copy_C_string (&len);
3369 SKIP_WHITESPACE ();
3370 if (*input_line_pointer == ',')
3371 input_line_pointer++;
3372 else
3373 {
3374 as_warn ("Bad .stab%c directive", type);
3375 demand_empty_rest_of_line ();
3376 return;
3377 }
3378 }
3379
3380 code = (symint_t) get_absolute_expression ();
3381
3382 SKIP_WHITESPACE ();
3383 if (*input_line_pointer++ != ',')
3384 {
3385 as_warn ("Bad .stab%c directive", type);
3386 --input_line_pointer;
3387 demand_empty_rest_of_line ();
3388 return;
3389 }
3390
3391 if (get_absolute_expression () != 0)
3392 {
3393 as_warn ("Bad .stab%c directive (expected 0)", type);
3394 demand_empty_rest_of_line ();
3395 return;
3396 }
3397
3398 SKIP_WHITESPACE ();
3399 if (*input_line_pointer++ != ',')
3400 {
3401 as_warn ("Bad .stab%c directive", type);
3402 --input_line_pointer;
3403 demand_empty_rest_of_line ();
3404 return;
3405 }
3406
3407 /* Line number stabs are handled differently, since they have two values,
3408 the line number and the address of the label. We use the index field
3409 (aka code) to hold the line number, and the value field to hold the
3410 address. The symbol type is st_Label, which should be different from
3411 the other stabs, so that gdb can recognize it. */
3412 if (code == N_SLINE)
3413 {
3414 SYMR dummy_symr;
3415 char *name;
3416 char name_end;
3417
3418 code = (symint_t) get_absolute_expression ();
3419
3420 #ifndef NO_LISTING
3421 if (listing)
3422 listing_source_line (code);
3423 #endif
3424
3425 if (*input_line_pointer++ != ',')
3426 {
3427 as_warn ("Bad .stab%c directive", type);
3428 --input_line_pointer;
3429 demand_empty_rest_of_line ();
3430 return;
3431 }
3432
3433 dummy_symr.index = code;
3434 if (dummy_symr.index != code)
3435 {
3436 as_warn ("Line number (%lu) for .stab%c directive cannot fit in index field (20 bits)",
3437 code, type);
3438 demand_empty_rest_of_line ();
3439 return;
3440 }
3441
3442 SKIP_WHITESPACE ();
3443 name = input_line_pointer;
3444 name_end = get_symbol_end ();
3445
3446 sym = symbol_find_or_make (name);
3447 *input_line_pointer = name_end;
3448
3449 value = 0;
3450 st = st_Label;
3451 sc = sc_Text;
3452 }
3453 else
3454 {
3455 #ifndef NO_LISTING
3456 if (listing && (code == N_SO || code == N_SOL))
3457 listing_source_file (string);
3458 #endif
3459
3460 /* The next number is sometimes the line number of the
3461 declaration. We have nowhere to put it, so we just ignore
3462 it. */
3463 (void) get_absolute_expression ();
3464
3465 SKIP_WHITESPACE ();
3466 if (*input_line_pointer++ != ',')
3467 {
3468 as_warn ("Bad .stab%c directive", type);
3469 --input_line_pointer;
3470 demand_empty_rest_of_line ();
3471 return;
3472 }
3473
3474 SKIP_WHITESPACE ();
3475 if (isdigit (*input_line_pointer)
3476 || *input_line_pointer == '-'
3477 || *input_line_pointer == '+')
3478 {
3479 st = st_Nil;
3480 sc = sc_Nil;
3481 sym = (symbolS *) NULL;
3482 value = get_absolute_expression ();
3483 }
3484 else if (! is_name_beginner ((unsigned char) *input_line_pointer))
3485 {
3486 as_warn ("Illegal .stab%c directive, bad character", type);
3487 demand_empty_rest_of_line ();
3488 return;
3489 }
3490 else
3491 {
3492 char *name;
3493 char name_end;
3494
3495 name = input_line_pointer;
3496 name_end = get_symbol_end ();
3497
3498 sym = symbol_find_or_make (name);
3499
3500 sc = sc_Nil;
3501 st = st_Nil;
3502 value = 0;
3503
3504 *input_line_pointer = name_end;
3505 if (name_end == '+' || name_end == '-')
3506 {
3507 ++input_line_pointer;
3508 value = get_absolute_expression ();
3509 if (name_end == '-')
3510 value = - value;
3511 }
3512 }
3513
3514 code = ECOFF_MARK_STAB (code);
3515 }
3516
3517 (void) add_ecoff_symbol (string, st, sc, sym, value, code);
3518
3519 /* Restore normal file type. */
3520 cur_file_ptr = save_file_ptr;
3521 }
3522 \f
3523 /* Add bytes to the symbolic information buffer. */
3524
3525 static char *
3526 ecoff_add_bytes (buf, bufend, bufptr, need)
3527 char **buf;
3528 char **bufend;
3529 char *bufptr;
3530 long need;
3531 {
3532 unsigned long at;
3533 unsigned long want;
3534
3535 at = bufptr - *buf;
3536 need -= *bufend - bufptr;
3537 if (need < PAGE_SIZE)
3538 need = PAGE_SIZE;
3539 want = (*bufend - *buf) + need;
3540 *buf = xrealloc (*buf, want);
3541 *bufend = *buf + want;
3542 return *buf + at;
3543 }
3544
3545 /* Adjust the symbolic information buffer to the alignment required
3546 for the ECOFF target debugging information. */
3547
3548 static long
3549 ecoff_padding_adjust (buf, bufend, offset, bufptrptr)
3550 char **buf;
3551 char **bufend;
3552 long offset;
3553 char **bufptrptr;
3554 {
3555 bfd_size_type align;
3556
3557 align = ecoff_backend (stdoutput)->debug_align;
3558 if ((offset & (align - 1)) != 0)
3559 {
3560 long add;
3561
3562 add = align - (offset & (align - 1));
3563 if (*bufend - (*buf + offset) < add)
3564 (void) ecoff_add_bytes (buf, bufend, *buf + offset, add);
3565 memset (*buf + offset, 0, add);
3566 offset += add;
3567 if (bufptrptr != (char **) NULL)
3568 *bufptrptr = *buf + offset;
3569 }
3570
3571 return offset;
3572 }
3573
3574 /* Build the line number information. */
3575
3576 static long
3577 ecoff_build_lineno (buf, bufend, offset, linecntptr)
3578 char **buf;
3579 char **bufend;
3580 long offset;
3581 long *linecntptr;
3582 {
3583 char *bufptr;
3584 register lineno_list_t *l;
3585 lineno_list_t *last;
3586 efdr_t *file;
3587 proc_t *proc;
3588 long c;
3589 long iline;
3590 long totcount;
3591
3592 if (linecntptr != (long *) NULL)
3593 *linecntptr = 0;
3594
3595 bufptr = *buf + offset;
3596
3597 file = (efdr_t *) NULL;
3598 proc = (proc_t *) NULL;
3599 last = (lineno_list_t *) NULL;
3600 c = offset;
3601 iline = 0;
3602 totcount = 0;
3603 for (l = first_lineno; l != (lineno_list_t *) NULL; l = l->next)
3604 {
3605 long count;
3606 long delta;
3607
3608 /* Get the offset to the memory address of the next line number
3609 (in words). Do this first, so that we can skip ahead to the
3610 next useful line number entry. */
3611 if (l->next == (lineno_list_t *) NULL)
3612 count = 0;
3613 else
3614 {
3615 count = ((l->next->frag->fr_address + l->next->paddr
3616 - (l->frag->fr_address + l->paddr))
3617 >> 2);
3618 if (count <= 0)
3619 {
3620 /* Don't change last, so we still get the right delta. */
3621 continue;
3622 }
3623 }
3624
3625 if (l->file != file || l->proc != proc)
3626 {
3627 if (l->proc != proc && proc != (proc_t *) NULL)
3628 proc->pdr.lnHigh = last->lineno;
3629 if (l->file != file && file != (efdr_t *) NULL)
3630 {
3631 file->fdr.cbLine = c - file->fdr.cbLineOffset;
3632 /* The cline field is ill-documented. This is a guess
3633 at the right value. */
3634 file->fdr.cline = totcount + count;
3635 if (linecntptr != (long *) NULL)
3636 *linecntptr += totcount + count;
3637 totcount = 0;
3638 }
3639
3640 if (l->file != file)
3641 {
3642 file = l->file;
3643 file->fdr.ilineBase = iline;
3644 file->fdr.cbLineOffset = c;
3645 }
3646 if (l->proc != proc)
3647 {
3648 proc = l->proc;
3649 if (proc != (proc_t *) NULL)
3650 {
3651 proc->pdr.lnLow = l->lineno;
3652 proc->pdr.cbLineOffset = c - file->fdr.cbLineOffset;
3653 /* The iline field is ill-documented. This is a
3654 guess at the right value. */
3655 proc->pdr.iline = totcount;
3656 }
3657 }
3658
3659 last = (lineno_list_t *) NULL;
3660 }
3661
3662 totcount += count;
3663
3664 /* Get the offset to this line number. */
3665 if (last == (lineno_list_t *) NULL)
3666 delta = 0;
3667 else
3668 delta = l->lineno - last->lineno;
3669
3670 /* Put in the offset to this line number. */
3671 while (delta != 0)
3672 {
3673 int setcount;
3674
3675 /* 1 is added to each count read. */
3676 --count;
3677 /* We can only adjust the word count by up to 15 words at a
3678 time. */
3679 if (count <= 0x0f)
3680 {
3681 setcount = count;
3682 count = 0;
3683 }
3684 else
3685 {
3686 setcount = 0x0f;
3687 count -= 0x0f;
3688 }
3689 if (delta >= -7 && delta <= 7)
3690 {
3691 if (bufptr >= *bufend)
3692 bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 1);
3693 *bufptr++ = setcount + (delta << 4);
3694 delta = 0;
3695 ++c;
3696 }
3697 else
3698 {
3699 int set;
3700
3701 if (*bufend - bufptr < 3)
3702 bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 3);
3703 *bufptr++ = setcount + (8 << 4);
3704 if (delta < -0x8000)
3705 {
3706 set = -0x8000;
3707 delta += 0x8000;
3708 }
3709 else if (delta > 0x7fff)
3710 {
3711 set = 0x7fff;
3712 delta -= 0x7fff;
3713 }
3714 else
3715 {
3716 set = delta;
3717 delta = 0;
3718 }
3719 *bufptr++ = set >> 8;
3720 *bufptr++ = set & 0xffff;
3721 c += 3;
3722 }
3723 }
3724
3725 /* Finish adjusting the count. */
3726 while (count > 0)
3727 {
3728 if (bufptr >= *bufend)
3729 bufptr = ecoff_add_bytes (buf, bufend, bufptr, (long) 1);
3730 /* 1 is added to each count read. */
3731 --count;
3732 if (count > 0x0f)
3733 {
3734 *bufptr++ = 0x0f;
3735 count -= 0x0f;
3736 }
3737 else
3738 {
3739 *bufptr++ = count;
3740 count = 0;
3741 }
3742 ++c;
3743 }
3744
3745 ++iline;
3746 last = l;
3747 }
3748
3749 if (proc != (proc_t *) NULL)
3750 proc->pdr.lnHigh = last->lineno;
3751 if (file != (efdr_t *) NULL)
3752 {
3753 file->fdr.cbLine = c - file->fdr.cbLineOffset;
3754 file->fdr.cline = totcount;
3755 }
3756
3757 if (linecntptr != (long *) NULL)
3758 *linecntptr += totcount;
3759
3760 c = ecoff_padding_adjust (buf, bufend, c, &bufptr);
3761
3762 return c;
3763 }
3764
3765 /* Build and swap out the symbols. */
3766
3767 static long
3768 ecoff_build_symbols (buf,
3769 bufend,
3770 offset,
3771 extbuf,
3772 extbufend,
3773 extoffset,
3774 ext_strings,
3775 ext_str_hash)
3776 char **buf;
3777 char **bufend;
3778 long offset;
3779 char **extbuf;
3780 char **extbufend;
3781 long *extoffset;
3782 varray_t *ext_strings;
3783 struct hash_control *ext_str_hash;
3784 {
3785 const bfd_size_type external_sym_size =
3786 ecoff_backend (stdoutput)->external_sym_size;
3787 const bfd_size_type external_ext_size =
3788 ecoff_backend (stdoutput)->external_ext_size;
3789 void (* const swap_sym_out) PARAMS ((bfd *, const SYMR *, PTR))
3790 = ecoff_backend (stdoutput)->swap_sym_out;
3791 void (* const swap_ext_out) PARAMS ((bfd *, const EXTR *, PTR))
3792 = ecoff_backend (stdoutput)->swap_ext_out;
3793 char *sym_out;
3794 char *ext_out;
3795 long isym;
3796 long iext;
3797 vlinks_t *file_link;
3798
3799 sym_out = *buf + offset;
3800 ext_out = *extbuf + *extoffset;
3801
3802 isym = 0;
3803 iext = 0;
3804
3805 /* The symbols are stored by file. */
3806 for (file_link = file_desc.first;
3807 file_link != (vlinks_t *) NULL;
3808 file_link = file_link->next)
3809 {
3810 int ifilesym;
3811 int fil_cnt;
3812 efdr_t *fil_ptr;
3813 efdr_t *fil_end;
3814
3815 if (file_link->next == (vlinks_t *) NULL)
3816 fil_cnt = file_desc.objects_last_page;
3817 else
3818 fil_cnt = file_desc.objects_per_page;
3819 fil_ptr = file_link->datum->file;
3820 fil_end = fil_ptr + fil_cnt;
3821 for (; fil_ptr < fil_end; fil_ptr++)
3822 {
3823 vlinks_t *sym_link;
3824
3825 fil_ptr->fdr.isymBase = isym;
3826 ifilesym = isym;
3827 for (sym_link = fil_ptr->symbols.first;
3828 sym_link != (vlinks_t *) NULL;
3829 sym_link = sym_link->next)
3830 {
3831 int sym_cnt;
3832 localsym_t *sym_ptr;
3833 localsym_t *sym_end;
3834
3835 if (sym_link->next == (vlinks_t *) NULL)
3836 sym_cnt = fil_ptr->symbols.objects_last_page;
3837 else
3838 sym_cnt = fil_ptr->symbols.objects_per_page;
3839 sym_ptr = sym_link->datum->sym;
3840 sym_end = sym_ptr + sym_cnt;
3841 for (; sym_ptr < sym_end; sym_ptr++)
3842 {
3843 int local;
3844 symbolS *as_sym;
3845 forward_t *f;
3846
3847 know (sym_ptr->file_ptr == fil_ptr);
3848
3849 /* If there is no associated gas symbol, then this
3850 is a pure debugging symbol. We have already
3851 added the name (if any) to fil_ptr->strings.
3852 Otherwise we must decide whether this is an
3853 external or a local symbol (actually, it may be
3854 both if the local provides additional debugging
3855 information for the external). */
3856 local = 1;
3857 as_sym = sym_ptr->as_sym;
3858 if (as_sym != (symbolS *) NULL)
3859 {
3860 symint_t indx;
3861
3862 /* The value of a block start symbol is the
3863 offset from the start of the procedure. For
3864 other symbols we just use the gas value (but
3865 we must offset it by the vma of the section,
3866 just as BFD does, because BFD will not see
3867 this value). */
3868 if (sym_ptr->ecoff_sym.st == (int) st_Block
3869 && sym_ptr->ecoff_sym.sc == (int) sc_Text)
3870 {
3871 symbolS *begin_sym;
3872
3873 know (sym_ptr->proc_ptr != (proc_t *) NULL);
3874 begin_sym = sym_ptr->proc_ptr->sym->as_sym;
3875 if (S_GET_SEGMENT (as_sym)
3876 != S_GET_SEGMENT (begin_sym))
3877 as_warn (".begin/.bend in different segments");
3878 sym_ptr->ecoff_sym.value =
3879 S_GET_VALUE (as_sym) - S_GET_VALUE (begin_sym);
3880 }
3881 else
3882 sym_ptr->ecoff_sym.value =
3883 (S_GET_VALUE (as_sym)
3884 + bfd_get_section_vma (stdoutput,
3885 S_GET_SEGMENT (as_sym)));
3886
3887 /* Set st_Proc to st_StaticProc for local
3888 functions. */
3889 if (sym_ptr->ecoff_sym.st == st_Proc
3890 && S_IS_DEFINED (as_sym)
3891 && ! S_IS_EXTERNAL (as_sym))
3892 sym_ptr->ecoff_sym.st = st_StaticProc;
3893
3894 /* Get the type and storage class based on where
3895 the symbol actually wound up. Traditionally,
3896 N_LBRAC and N_RBRAC are *not* relocated. */
3897 indx = sym_ptr->ecoff_sym.index;
3898 if (sym_ptr->ecoff_sym.st == st_Nil
3899 && sym_ptr->ecoff_sym.sc == sc_Nil
3900 && (! ECOFF_IS_STAB (&sym_ptr->ecoff_sym)
3901 || ((ECOFF_UNMARK_STAB (indx) != N_LBRAC)
3902 && (ECOFF_UNMARK_STAB (indx) != N_RBRAC))))
3903 {
3904 segT seg;
3905 const char *segname;
3906 st_t st;
3907 sc_t sc;
3908
3909 seg = S_GET_SEGMENT (as_sym);
3910 segname = segment_name (seg);
3911
3912 if (S_IS_EXTERNAL (as_sym)
3913 || ! S_IS_DEFINED (as_sym))
3914 st = st_Global;
3915 else if (seg == text_section)
3916 st = st_Label;
3917 else
3918 st = st_Static;
3919
3920 if (! S_IS_DEFINED (as_sym)
3921 || as_sym->ecoff_undefined)
3922 {
3923 if (S_GET_VALUE (as_sym) > 0
3924 && (S_GET_VALUE (as_sym)
3925 <= bfd_get_gp_size (stdoutput)))
3926 sc = sc_SUndefined;
3927 else
3928 sc = sc_Undefined;
3929 }
3930 else if (S_IS_COMMON (as_sym))
3931 {
3932 if (S_GET_VALUE (as_sym) > 0
3933 && (S_GET_VALUE (as_sym)
3934 <= bfd_get_gp_size (stdoutput)))
3935 sc = sc_SCommon;
3936 else
3937 sc = sc_Common;
3938 }
3939 else if (seg == text_section)
3940 sc = sc_Text;
3941 else if (seg == data_section)
3942 sc = sc_Data;
3943 else if (strcmp (segname, ".rdata") == 0)
3944 sc = sc_RData;
3945 else if (strcmp (segname, ".sdata") == 0)
3946 sc = sc_SData;
3947 else if (seg == bss_section)
3948 sc = sc_Bss;
3949 else if (strcmp (segname, ".sbss") == 0)
3950 sc = sc_SBss;
3951 else if (seg == &bfd_abs_section)
3952 sc = sc_Abs;
3953 else
3954 abort ();
3955
3956 sym_ptr->ecoff_sym.st = (int) st;
3957 sym_ptr->ecoff_sym.sc = (int) sc;
3958 }
3959
3960 /* This is just an external symbol if it is
3961 outside a procedure and it has a type.
3962 FIXME: g++ will generate symbols which have
3963 different names in the debugging information
3964 than the actual symbol. Should we handle
3965 them here? */
3966 if ((S_IS_EXTERNAL (as_sym)
3967 || ! S_IS_DEFINED (as_sym))
3968 && sym_ptr->proc_ptr == (proc_t *) NULL
3969 && sym_ptr->ecoff_sym.st != (int) st_Nil
3970 && ! ECOFF_IS_STAB (&sym_ptr->ecoff_sym))
3971 local = 0;
3972
3973 /* If an st_end symbol has an associated gas
3974 symbol, then it is a local label created for
3975 a .bend or .end directive. Stabs line
3976 numbers will have \001 in the names. */
3977 if (local
3978 && sym_ptr->ecoff_sym.st != st_End
3979 && strchr (sym_ptr->name, '\001') == 0)
3980 sym_ptr->ecoff_sym.iss =
3981 add_string (&fil_ptr->strings,
3982 fil_ptr->str_hash,
3983 sym_ptr->name,
3984 (shash_t **) NULL);
3985 }
3986
3987 /* We now know the index of this symbol; fill in
3988 locations that have been waiting for that
3989 information. */
3990 if (sym_ptr->begin_ptr != (localsym_t *) NULL)
3991 {
3992 localsym_t *begin_ptr;
3993 st_t begin_type;
3994
3995 know (local);
3996 begin_ptr = sym_ptr->begin_ptr;
3997 know (begin_ptr->sym_index != -1);
3998 sym_ptr->ecoff_sym.index = begin_ptr->sym_index;
3999 if (sym_ptr->ecoff_sym.sc != (int) sc_Info)
4000 sym_ptr->ecoff_sym.iss = begin_ptr->ecoff_sym.iss;
4001
4002 begin_type = begin_ptr->ecoff_sym.st;
4003 if (begin_type == st_File
4004 || begin_type == st_Block)
4005 {
4006 begin_ptr->ecoff_sym.index = isym - ifilesym + 1;
4007 (*swap_sym_out) (stdoutput,
4008 &begin_ptr->ecoff_sym,
4009 (*buf
4010 + offset
4011 + (begin_ptr->sym_index
4012 * external_sym_size)));
4013 }
4014 else
4015 {
4016 know (begin_ptr->index_ptr != (aux_t *) NULL);
4017 begin_ptr->index_ptr->data.isym =
4018 isym - ifilesym + 1;
4019 }
4020
4021 /* The value of the symbol marking the end of a
4022 procedure is the size of the procedure. The
4023 value of the symbol marking the end of a
4024 block is the offset from the start of the
4025 procedure to the block. */
4026 if (begin_type == st_Proc)
4027 {
4028 know (as_sym != (symbolS *) NULL);
4029 know (begin_ptr->as_sym != (symbolS *) NULL);
4030 if (S_GET_SEGMENT (as_sym)
4031 != S_GET_SEGMENT (begin_ptr->as_sym))
4032 as_warn (".begin/.bend in different segments");
4033 sym_ptr->ecoff_sym.value =
4034 (S_GET_VALUE (as_sym)
4035 - S_GET_VALUE (begin_ptr->as_sym));
4036 }
4037 else if (begin_type == st_Block
4038 && sym_ptr->ecoff_sym.sc != (int) sc_Info)
4039 {
4040 symbolS *begin_sym;
4041
4042 know (as_sym != (symbolS *) NULL);
4043 know (sym_ptr->proc_ptr != (proc_t *) NULL);
4044 begin_sym = sym_ptr->proc_ptr->sym->as_sym;
4045 if (S_GET_SEGMENT (as_sym)
4046 != S_GET_SEGMENT (begin_sym))
4047 as_warn (".begin/.bend in different segments");
4048 sym_ptr->ecoff_sym.value =
4049 S_GET_VALUE (as_sym) - S_GET_VALUE (begin_sym);
4050 }
4051 }
4052
4053 for (f = sym_ptr->forward_ref;
4054 f != (forward_t *) NULL;
4055 f = f->next)
4056 {
4057 know (local);
4058 f->ifd_ptr->data.isym = fil_ptr->file_index;
4059 f->index_ptr->data.rndx.index = isym - ifilesym;
4060 }
4061
4062 if (local)
4063 {
4064 if (*bufend - sym_out < external_sym_size)
4065 sym_out = ecoff_add_bytes (buf, bufend,
4066 sym_out,
4067 external_sym_size);
4068 (*swap_sym_out) (stdoutput, &sym_ptr->ecoff_sym,
4069 sym_out);
4070 sym_out += external_sym_size;
4071
4072 sym_ptr->sym_index = isym;
4073
4074 if (sym_ptr->proc_ptr != (proc_t *) NULL
4075 && sym_ptr->proc_ptr->sym == sym_ptr)
4076 sym_ptr->proc_ptr->pdr.isym = isym - ifilesym;
4077
4078 ++isym;
4079 }
4080
4081 /* If this is an external symbol, swap it out. */
4082 if (as_sym != (symbolS *) NULL
4083 && (S_IS_EXTERNAL (as_sym)
4084 || ! S_IS_DEFINED (as_sym))
4085 && ! ECOFF_IS_STAB (&sym_ptr->ecoff_sym))
4086 {
4087 EXTR ext;
4088
4089 memset (&ext, 0, sizeof ext);
4090 ext.asym = sym_ptr->ecoff_sym;
4091 if (sym_ptr->ecoff_sym.st == st_Proc
4092 || sym_ptr->ecoff_sym.st == st_StaticProc)
4093 {
4094 know (local);
4095 ext.asym.index = isym - ifilesym - 1;
4096 }
4097 ext.ifd = fil_ptr->file_index;
4098 ext.asym.iss = add_string (ext_strings,
4099 ext_str_hash,
4100 S_GET_NAME (as_sym),
4101 (shash_t **) NULL);
4102 if (*extbufend - ext_out < external_ext_size)
4103 ext_out = ecoff_add_bytes (extbuf, extbufend,
4104 ext_out,
4105 external_ext_size);
4106 (*swap_ext_out) (stdoutput, &ext, ext_out);
4107 ecoff_set_sym_index (as_sym->bsym, iext);
4108 ext_out += external_ext_size;
4109 ++iext;
4110 }
4111 }
4112 }
4113 fil_ptr->fdr.csym = isym - fil_ptr->fdr.isymBase;
4114 }
4115 }
4116
4117 *extoffset += iext * external_ext_size;
4118 return offset + isym * external_sym_size;
4119 }
4120
4121 /* Swap out the procedure information. */
4122
4123 static long
4124 ecoff_build_procs (buf, bufend, offset)
4125 char **buf;
4126 char **bufend;
4127 long offset;
4128 {
4129 const bfd_size_type external_pdr_size
4130 = ecoff_backend (stdoutput)->external_pdr_size;
4131 void (* const swap_pdr_out) PARAMS ((bfd *, const PDR *, PTR))
4132 = ecoff_backend (stdoutput)->swap_pdr_out;
4133 char *pdr_out;
4134 int first_fil;
4135 long iproc;
4136 vlinks_t *file_link;
4137
4138 pdr_out = *buf + offset;
4139
4140 first_fil = 1;
4141 iproc = 0;
4142
4143 /* The procedures are stored by file. */
4144 for (file_link = file_desc.first;
4145 file_link != (vlinks_t *) NULL;
4146 file_link = file_link->next)
4147 {
4148 int fil_cnt;
4149 efdr_t *fil_ptr;
4150 efdr_t *fil_end;
4151
4152 if (file_link->next == (vlinks_t *) NULL)
4153 fil_cnt = file_desc.objects_last_page;
4154 else
4155 fil_cnt = file_desc.objects_per_page;
4156 fil_ptr = file_link->datum->file;
4157 fil_end = fil_ptr + fil_cnt;
4158 for (; fil_ptr < fil_end; fil_ptr++)
4159 {
4160 vlinks_t *proc_link;
4161 int first;
4162
4163 fil_ptr->fdr.ipdFirst = iproc;
4164 first = 1;
4165 for (proc_link = fil_ptr->procs.first;
4166 proc_link != (vlinks_t *) NULL;
4167 proc_link = proc_link->next)
4168 {
4169 int prc_cnt;
4170 proc_t *proc_ptr;
4171 proc_t *proc_end;
4172
4173 if (proc_link->next == (vlinks_t *) NULL)
4174 prc_cnt = fil_ptr->procs.objects_last_page;
4175 else
4176 prc_cnt = fil_ptr->procs.objects_per_page;
4177 proc_ptr = proc_link->datum->proc;
4178 proc_end = proc_ptr + prc_cnt;
4179 for (; proc_ptr < proc_end; proc_ptr++)
4180 {
4181 symbolS *adr_sym;
4182 unsigned long adr;
4183
4184 adr_sym = proc_ptr->sym->as_sym;
4185 adr = (S_GET_VALUE (adr_sym)
4186 + bfd_get_section_vma (stdoutput,
4187 S_GET_SEGMENT (adr_sym)));
4188 if (first)
4189 {
4190 if (first_fil)
4191 first_fil = 0;
4192 else
4193 fil_ptr->fdr.adr = adr;
4194 first = 0;
4195 }
4196 proc_ptr->pdr.adr = adr - fil_ptr->fdr.adr;
4197 if (*bufend - pdr_out < external_pdr_size)
4198 pdr_out = ecoff_add_bytes (buf, bufend,
4199 pdr_out,
4200 external_pdr_size);
4201 (*swap_pdr_out) (stdoutput, &proc_ptr->pdr, pdr_out);
4202 pdr_out += external_pdr_size;
4203 ++iproc;
4204 }
4205 }
4206 fil_ptr->fdr.cpd = iproc - fil_ptr->fdr.ipdFirst;
4207 }
4208 }
4209
4210 return offset + iproc * external_pdr_size;
4211 }
4212
4213 /* Swap out the aux information. */
4214
4215 static long
4216 ecoff_build_aux (buf, bufend, offset)
4217 char **buf;
4218 char **bufend;
4219 long offset;
4220 {
4221 int bigendian;
4222 union aux_ext *aux_out;
4223 long iaux;
4224 vlinks_t *file_link;
4225
4226 bigendian = stdoutput->xvec->header_byteorder_big_p;
4227
4228 aux_out = (union aux_ext *) (*buf + offset);
4229
4230 iaux = 0;
4231
4232 /* The aux entries are stored by file. */
4233 for (file_link = file_desc.first;
4234 file_link != (vlinks_t *) NULL;
4235 file_link = file_link->next)
4236 {
4237 int fil_cnt;
4238 efdr_t *fil_ptr;
4239 efdr_t *fil_end;
4240
4241 if (file_link->next == (vlinks_t *) NULL)
4242 fil_cnt = file_desc.objects_last_page;
4243 else
4244 fil_cnt = file_desc.objects_per_page;
4245 fil_ptr = file_link->datum->file;
4246 fil_end = fil_ptr + fil_cnt;
4247 for (; fil_ptr < fil_end; fil_ptr++)
4248 {
4249 vlinks_t *aux_link;
4250
4251 fil_ptr->fdr.fBigendian = bigendian;
4252 fil_ptr->fdr.iauxBase = iaux;
4253 for (aux_link = fil_ptr->aux_syms.first;
4254 aux_link != (vlinks_t *) NULL;
4255 aux_link = aux_link->next)
4256 {
4257 int aux_cnt;
4258 aux_t *aux_ptr;
4259 aux_t *aux_end;
4260
4261 if (aux_link->next == (vlinks_t *) NULL)
4262 aux_cnt = fil_ptr->aux_syms.objects_last_page;
4263 else
4264 aux_cnt = fil_ptr->aux_syms.objects_per_page;
4265 aux_ptr = aux_link->datum->aux;
4266 aux_end = aux_ptr + aux_cnt;
4267 for (; aux_ptr < aux_end; aux_ptr++)
4268 {
4269 if (*bufend - (char *) aux_out < sizeof (union aux_ext))
4270 aux_out = ((union aux_ext *)
4271 ecoff_add_bytes (buf, bufend,
4272 (char *) aux_out,
4273 sizeof (union aux_ext)));
4274 switch (aux_ptr->type)
4275 {
4276 case aux_tir:
4277 ecoff_swap_tir_out (bigendian, &aux_ptr->data.ti,
4278 &aux_out->a_ti);
4279 break;
4280 case aux_rndx:
4281 ecoff_swap_rndx_out (bigendian, &aux_ptr->data.rndx,
4282 &aux_out->a_rndx);
4283 break;
4284 case aux_dnLow:
4285 AUX_PUT_DNLOW (bigendian, aux_ptr->data.dnLow,
4286 aux_out);
4287 break;
4288 case aux_dnHigh:
4289 AUX_PUT_DNHIGH (bigendian, aux_ptr->data.dnHigh,
4290 aux_out);
4291 break;
4292 case aux_isym:
4293 AUX_PUT_ISYM (bigendian, aux_ptr->data.isym,
4294 aux_out);
4295 break;
4296 case aux_iss:
4297 AUX_PUT_ISS (bigendian, aux_ptr->data.iss,
4298 aux_out);
4299 break;
4300 case aux_width:
4301 AUX_PUT_WIDTH (bigendian, aux_ptr->data.width,
4302 aux_out);
4303 break;
4304 case aux_count:
4305 AUX_PUT_COUNT (bigendian, aux_ptr->data.count,
4306 aux_out);
4307 break;
4308 }
4309
4310 ++aux_out;
4311 ++iaux;
4312 }
4313 }
4314 fil_ptr->fdr.caux = iaux - fil_ptr->fdr.iauxBase;
4315 }
4316 }
4317
4318 return offset + iaux * sizeof (union aux_ext);
4319 }
4320
4321 /* Copy out the strings from a varray_t. This returns the number of
4322 bytes copied, rather than the new offset. */
4323
4324 static long
4325 ecoff_build_strings (buf, bufend, offset, vp)
4326 char **buf;
4327 char **bufend;
4328 long offset;
4329 varray_t *vp;
4330 {
4331 long istr;
4332 char *str_out;
4333 vlinks_t *str_link;
4334
4335 str_out = *buf + offset;
4336
4337 istr = 0;
4338
4339 for (str_link = vp->first;
4340 str_link != (vlinks_t *) NULL;
4341 str_link = str_link->next)
4342 {
4343 long str_cnt;
4344
4345 if (str_link->next == (vlinks_t *) NULL)
4346 str_cnt = vp->objects_last_page;
4347 else
4348 str_cnt = vp->objects_per_page;
4349
4350 if (*bufend - str_out < str_cnt)
4351 str_out = ecoff_add_bytes (buf, bufend, str_out, str_cnt);
4352
4353 memcpy (str_out, str_link->datum->byte, str_cnt);
4354 str_out += str_cnt;
4355 istr += str_cnt;
4356 }
4357
4358 return istr;
4359 }
4360
4361 /* Dump out the local strings. */
4362
4363 static long
4364 ecoff_build_ss (buf, bufend, offset)
4365 char **buf;
4366 char **bufend;
4367 long offset;
4368 {
4369 long iss;
4370 vlinks_t *file_link;
4371
4372 iss = 0;
4373
4374 for (file_link = file_desc.first;
4375 file_link != (vlinks_t *) NULL;
4376 file_link = file_link->next)
4377 {
4378 int fil_cnt;
4379 efdr_t *fil_ptr;
4380 efdr_t *fil_end;
4381
4382 if (file_link->next == (vlinks_t *) NULL)
4383 fil_cnt = file_desc.objects_last_page;
4384 else
4385 fil_cnt = file_desc.objects_per_page;
4386 fil_ptr = file_link->datum->file;
4387 fil_end = fil_ptr + fil_cnt;
4388 for (; fil_ptr < fil_end; fil_ptr++)
4389 {
4390 long ss_cnt;
4391
4392 fil_ptr->fdr.issBase = iss;
4393 ss_cnt = ecoff_build_strings (buf, bufend, offset + iss,
4394 &fil_ptr->strings);
4395 fil_ptr->fdr.cbSs = ss_cnt;
4396 iss += ss_cnt;
4397 }
4398 }
4399
4400 return ecoff_padding_adjust (buf, bufend, offset + iss, (char **) NULL);
4401 }
4402
4403 /* Swap out the file descriptors. */
4404
4405 static long
4406 ecoff_build_fdr (buf, bufend, offset)
4407 char **buf;
4408 char **bufend;
4409 long offset;
4410 {
4411 const bfd_size_type external_fdr_size
4412 = ecoff_backend (stdoutput)->external_fdr_size;
4413 void (* const swap_fdr_out) PARAMS ((bfd *, const FDR *, PTR))
4414 = ecoff_backend (stdoutput)->swap_fdr_out;
4415 long ifile;
4416 char *fdr_out;
4417 vlinks_t *file_link;
4418
4419 ifile = 0;
4420
4421 fdr_out = *buf + offset;
4422
4423 for (file_link = file_desc.first;
4424 file_link != (vlinks_t *) NULL;
4425 file_link = file_link->next)
4426 {
4427 int fil_cnt;
4428 efdr_t *fil_ptr;
4429 efdr_t *fil_end;
4430
4431 if (file_link->next == (vlinks_t *) NULL)
4432 fil_cnt = file_desc.objects_last_page;
4433 else
4434 fil_cnt = file_desc.objects_per_page;
4435 fil_ptr = file_link->datum->file;
4436 fil_end = fil_ptr + fil_cnt;
4437 for (; fil_ptr < fil_end; fil_ptr++)
4438 {
4439 if (*bufend - fdr_out < external_fdr_size)
4440 fdr_out = ecoff_add_bytes (buf, bufend, fdr_out,
4441 external_fdr_size);
4442 (*swap_fdr_out) (stdoutput, &fil_ptr->fdr, fdr_out);
4443 fdr_out += external_fdr_size;
4444 ++ifile;
4445 }
4446 }
4447
4448 return offset + ifile * external_fdr_size;
4449 }
4450
4451 /* Swap out the symbols and debugging information for BFD. */
4452
4453 void
4454 ecoff_frob_file ()
4455 {
4456 const struct ecoff_backend_data * const backend = ecoff_backend (stdoutput);
4457 const bfd_size_type external_pdr_size = backend->external_pdr_size;
4458 tag_t *ptag;
4459 tag_t *ptag_next;
4460 efdr_t *fil_ptr;
4461 int end_warning;
4462 efdr_t *hold_file_ptr;
4463 proc_t * hold_proc_ptr;
4464 bfd_vma addr;
4465 asection *sec;
4466 symbolS *sym;
4467 HDRR *hdr;
4468 char *buf;
4469 char *bufend;
4470 long offset;
4471 char *extbuf;
4472 char *extbufend;
4473 long extoffset;
4474 varray_t ext_strings;
4475 static varray_t init_ext_strings = INIT_VARRAY (char);
4476 struct hash_control *ext_str_hash;
4477 char *set;
4478
4479 /* Make sure we have a file. */
4480 if (first_file == (efdr_t *) NULL)
4481 add_file ((const char *) NULL, 0);
4482
4483 /* Handle any top level tags. */
4484 for (ptag = top_tag_head->first_tag;
4485 ptag != (tag_t *) NULL;
4486 ptag = ptag_next)
4487 {
4488 if (ptag->forward_ref != (forward_t *) NULL)
4489 add_unknown_tag (ptag);
4490
4491 ptag_next = ptag->same_block;
4492 ptag->hash_ptr->tag_ptr = ptag->same_name;
4493 free_tag (ptag);
4494 }
4495
4496 free_thead (top_tag_head);
4497
4498 /* Output an ending symbol for all the files. We have to do this
4499 here for the last file, so we may as well do it for all of the
4500 files. */
4501 end_warning = 0;
4502 for (fil_ptr = first_file;
4503 fil_ptr != (efdr_t *) NULL;
4504 fil_ptr = fil_ptr->next_file)
4505 {
4506 cur_file_ptr = fil_ptr;
4507 while (cur_file_ptr->cur_scope->prev != (scope_t *) NULL)
4508 {
4509 cur_file_ptr->cur_scope = cur_file_ptr->cur_scope->prev;
4510 if (! end_warning)
4511 {
4512 as_warn ("Missing .end or .bend at end of file");
4513 end_warning = 1;
4514 }
4515 }
4516 (void) add_ecoff_symbol ((const char *) NULL,
4517 st_End, sc_Text,
4518 (symbolS *) NULL,
4519 (symint_t) 0,
4520 (symint_t) 0);
4521 }
4522
4523 /* Set the section VMA values. */
4524 addr = 0;
4525 for (sec = stdoutput->sections; sec != (asection *) NULL; sec = sec->next)
4526 {
4527 bfd_set_section_vma (stdoutput, sec, addr);
4528 addr += bfd_section_size (stdoutput, sec);
4529 }
4530
4531 /* Look through the symbols. Add debugging information for each
4532 symbol that has not already received it. */
4533 hold_file_ptr = cur_file_ptr;
4534 hold_proc_ptr = cur_proc_ptr;
4535 cur_proc_ptr = (proc_t *) NULL;
4536 for (sym = symbol_rootP; sym != (symbolS *) NULL; sym = symbol_next (sym))
4537 {
4538 if (sym->ecoff_symbol
4539 || sym->ecoff_file == (efdr_t *) NULL
4540 || (sym->bsym->flags & BSF_SECTION_SYM) != 0)
4541 continue;
4542
4543 cur_file_ptr = sym->ecoff_file;
4544 add_ecoff_symbol ((const char *) NULL, st_Nil, sc_Nil, sym,
4545 S_GET_VALUE (sym), indexNil);
4546 }
4547 cur_proc_ptr = hold_proc_ptr;
4548 cur_file_ptr = hold_file_ptr;
4549
4550 /* Build the symbolic information. */
4551 hdr = &ecoff_data (stdoutput)->symbolic_header;
4552 offset = 0;
4553 buf = xmalloc (PAGE_SIZE);
4554 bufend = buf + PAGE_SIZE;
4555
4556 /* Build the line number information. */
4557 hdr->cbLineOffset = offset;
4558 offset = ecoff_build_lineno (&buf, &bufend, offset, &hdr->ilineMax);
4559 hdr->cbLine = offset - hdr->cbLineOffset;
4560
4561 /* We don't use dense numbers at all. */
4562 hdr->idnMax = 0;
4563 hdr->cbDnOffset = 0;
4564
4565 /* We can't build the PDR table until we have built the symbols,
4566 because a PDR contains a symbol index. However, we set aside
4567 space at this point. */
4568 hdr->ipdMax = proc_cnt;
4569 hdr->cbPdOffset = offset;
4570 if (bufend - (buf + offset) < proc_cnt * external_pdr_size)
4571 (void) ecoff_add_bytes (&buf, &bufend, buf + offset,
4572 proc_cnt * external_pdr_size);
4573 offset += proc_cnt * external_pdr_size;
4574
4575 /* Build the symbols. It's convenient to build both the local and
4576 external symbols at the same time. We can put the local symbols
4577 directly into the buffer, but we have to hold the external
4578 symbols apart until we know where they are going to go. */
4579 extbuf = xmalloc (PAGE_SIZE);
4580 extbufend = extbuf + PAGE_SIZE;
4581 extoffset = 0;
4582 ext_strings = init_ext_strings;
4583 ext_str_hash = hash_new ();
4584 hdr->cbSymOffset = offset;
4585 offset = ecoff_build_symbols (&buf, &bufend, offset,
4586 &extbuf, &extbufend, &extoffset,
4587 &ext_strings, ext_str_hash);
4588 hdr->isymMax = (offset - hdr->cbSymOffset) / backend->external_sym_size;
4589
4590 /* Building the symbols initializes the symbol index in the PDR's.
4591 Now we can swap out the PDR's. */
4592 (void) ecoff_build_procs (&buf, &bufend, hdr->cbPdOffset);
4593
4594 /* We don't use optimization symbols. */
4595 hdr->ioptMax = 0;
4596 hdr->cbOptOffset = 0;
4597
4598 /* Swap out the auxiliary type information. */
4599 hdr->cbAuxOffset = offset;
4600 offset = ecoff_build_aux (&buf, &bufend, offset);
4601 hdr->iauxMax = (offset - hdr->cbAuxOffset) / sizeof (union aux_ext);
4602
4603 /* Copy out the local strings. */
4604 hdr->cbSsOffset = offset;
4605 offset = ecoff_build_ss (&buf, &bufend, offset);
4606 hdr->issMax = offset - hdr->cbSsOffset;
4607
4608 /* Copy out the external strings. */
4609 hdr->cbSsExtOffset = offset;
4610 offset += ecoff_build_strings (&buf, &bufend, offset, &ext_strings);
4611 offset = ecoff_padding_adjust (&buf, &bufend, offset, (char **) NULL);
4612 hdr->issExtMax = offset - hdr->cbSsExtOffset;
4613
4614 /* We don't use relative file descriptors. */
4615 hdr->crfd = 0;
4616 hdr->cbRfdOffset = 0;
4617
4618 /* Swap out the file descriptors. */
4619 hdr->cbFdOffset = offset;
4620 offset = ecoff_build_fdr (&buf, &bufend, offset);
4621 hdr->ifdMax = (offset - hdr->cbFdOffset) / backend->external_fdr_size;
4622
4623 /* Copy out the external symbols. */
4624 hdr->cbExtOffset = offset;
4625 if (bufend - (buf + offset) < extoffset)
4626 (void) ecoff_add_bytes (&buf, &bufend, buf + offset, extoffset);
4627 memcpy (buf + offset, extbuf, extoffset);
4628 offset += extoffset;
4629 hdr->iextMax = (offset - hdr->cbExtOffset) / backend->external_ext_size;
4630
4631 know ((offset & (backend->debug_align - 1)) == 0);
4632
4633 /* That completes the symbolic debugging information. We must now
4634 finish up the symbolic header and the ecoff_tdata structure. */
4635 set = buf;
4636 #define SET(ptr, count, type, size) \
4637 ecoff_data (stdoutput)->ptr = (type) set; \
4638 set += hdr->count * size
4639
4640 SET (line, cbLine, unsigned char *, sizeof (unsigned char));
4641 SET (external_dnr, idnMax, PTR, backend->external_dnr_size);
4642 SET (external_pdr, ipdMax, PTR, backend->external_pdr_size);
4643 SET (external_sym, isymMax, PTR, backend->external_sym_size);
4644 SET (external_opt, ioptMax, PTR, backend->external_opt_size);
4645 SET (external_aux, iauxMax, union aux_ext *, sizeof (union aux_ext));
4646 SET (ss, issMax, char *, sizeof (char));
4647 SET (ssext, issExtMax, char *, sizeof (char));
4648 SET (external_rfd, crfd, PTR, backend->external_rfd_size);
4649 SET (external_fdr, ifdMax, PTR, backend->external_fdr_size);
4650 SET (external_ext, iextMax, PTR, backend->external_ext_size);
4651
4652 #undef SET
4653
4654 /* FIXME: set the register masks. */
4655
4656 ecoff_data (stdoutput)->raw_size = offset;
4657 ecoff_data (stdoutput)->raw_syments = buf;
4658
4659 hdr->magic = magicSym;
4660 /* FIXME: what should hdr->vstamp be? */
4661
4662 bfd_set_symtab (stdoutput, bfd_get_outsymbols (stdoutput),
4663 hdr->isymMax + hdr->iextMax);
4664 }
4665 \f
4666 /* Allocate a cluster of pages. */
4667
4668 #ifndef MALLOC_CHECK
4669
4670 static page_t *
4671 allocate_cluster (npages)
4672 unsigned long npages;
4673 {
4674 register page_t *value = (page_t *) xmalloc (npages * PAGE_USIZE);
4675
4676 #ifdef ECOFF_DEBUG
4677 if (debug > 3)
4678 fprintf (stderr, "\talloc\tnpages = %d, value = 0x%.8x\n", npages, value);
4679 #endif
4680
4681 memset (value, 0, npages * PAGE_USIZE);
4682
4683 return value;
4684 }
4685
4686
4687 static page_t *cluster_ptr = NULL;
4688 static unsigned long pages_left = 0;
4689
4690 #endif /* MALLOC_CHECK */
4691
4692 /* Allocate one page (which is initialized to 0). */
4693
4694 static page_t *
4695 allocate_page ()
4696 {
4697 #ifndef MALLOC_CHECK
4698
4699 if (pages_left == 0)
4700 {
4701 pages_left = MAX_CLUSTER_PAGES;
4702 cluster_ptr = allocate_cluster (pages_left);
4703 }
4704
4705 pages_left--;
4706 return cluster_ptr++;
4707
4708 #else /* MALLOC_CHECK */
4709
4710 page_t *ptr;
4711
4712 ptr = xmalloc (PAGE_USIZE);
4713 memset (ptr, 0, PAGE_USIZE);
4714 return ptr;
4715
4716 #endif /* MALLOC_CHECK */
4717 }
4718 \f
4719 /* Allocate scoping information. */
4720
4721 static scope_t *
4722 allocate_scope ()
4723 {
4724 register scope_t *ptr;
4725 static scope_t initial_scope;
4726
4727 #ifndef MALLOC_CHECK
4728
4729 ptr = alloc_counts[(int)alloc_type_scope].free_list.f_scope;
4730 if (ptr != (scope_t *) NULL)
4731 alloc_counts[ (int)alloc_type_scope ].free_list.f_scope = ptr->free;
4732 else
4733 {
4734 register int unallocated = alloc_counts[(int)alloc_type_scope].unallocated;
4735 register page_t *cur_page = alloc_counts[(int)alloc_type_scope].cur_page;
4736
4737 if (unallocated == 0)
4738 {
4739 unallocated = PAGE_SIZE / sizeof (scope_t);
4740 alloc_counts[(int)alloc_type_scope].cur_page = cur_page = allocate_page ();
4741 alloc_counts[(int)alloc_type_scope].total_pages++;
4742 }
4743
4744 ptr = &cur_page->scope[--unallocated];
4745 alloc_counts[(int)alloc_type_scope].unallocated = unallocated;
4746 }
4747
4748 #else
4749
4750 ptr = (scope_t *) xmalloc (sizeof (scope_t));
4751
4752 #endif
4753
4754 alloc_counts[(int)alloc_type_scope].total_alloc++;
4755 *ptr = initial_scope;
4756 return ptr;
4757 }
4758
4759 /* Free scoping information. */
4760
4761 static void
4762 free_scope (ptr)
4763 scope_t *ptr;
4764 {
4765 alloc_counts[(int)alloc_type_scope].total_free++;
4766
4767 #ifndef MALLOC_CHECK
4768 ptr->free = alloc_counts[(int)alloc_type_scope].free_list.f_scope;
4769 alloc_counts[(int)alloc_type_scope].free_list.f_scope = ptr;
4770 #else
4771 free ((PTR) ptr);
4772 #endif
4773 }
4774 \f
4775 /* Allocate links for pages in a virtual array. */
4776
4777 static vlinks_t *
4778 allocate_vlinks ()
4779 {
4780 register vlinks_t *ptr;
4781 static vlinks_t initial_vlinks;
4782
4783 #ifndef MALLOC_CHECK
4784
4785 register int unallocated = alloc_counts[(int)alloc_type_vlinks].unallocated;
4786 register page_t *cur_page = alloc_counts[(int)alloc_type_vlinks].cur_page;
4787
4788 if (unallocated == 0)
4789 {
4790 unallocated = PAGE_SIZE / sizeof (vlinks_t);
4791 alloc_counts[(int)alloc_type_vlinks].cur_page = cur_page = allocate_page ();
4792 alloc_counts[(int)alloc_type_vlinks].total_pages++;
4793 }
4794
4795 ptr = &cur_page->vlinks[--unallocated];
4796 alloc_counts[(int)alloc_type_vlinks].unallocated = unallocated;
4797
4798 #else
4799
4800 ptr = (vlinks_t *) xmalloc (sizeof (vlinks_t));
4801
4802 #endif
4803
4804 alloc_counts[(int)alloc_type_vlinks].total_alloc++;
4805 *ptr = initial_vlinks;
4806 return ptr;
4807 }
4808 \f
4809 /* Allocate string hash buckets. */
4810
4811 static shash_t *
4812 allocate_shash ()
4813 {
4814 register shash_t *ptr;
4815 static shash_t initial_shash;
4816
4817 #ifndef MALLOC_CHECK
4818
4819 register int unallocated = alloc_counts[(int)alloc_type_shash].unallocated;
4820 register page_t *cur_page = alloc_counts[(int)alloc_type_shash].cur_page;
4821
4822 if (unallocated == 0)
4823 {
4824 unallocated = PAGE_SIZE / sizeof (shash_t);
4825 alloc_counts[(int)alloc_type_shash].cur_page = cur_page = allocate_page ();
4826 alloc_counts[(int)alloc_type_shash].total_pages++;
4827 }
4828
4829 ptr = &cur_page->shash[--unallocated];
4830 alloc_counts[(int)alloc_type_shash].unallocated = unallocated;
4831
4832 #else
4833
4834 ptr = (shash_t *) xmalloc (sizeof (shash_t));
4835
4836 #endif
4837
4838 alloc_counts[(int)alloc_type_shash].total_alloc++;
4839 *ptr = initial_shash;
4840 return ptr;
4841 }
4842 \f
4843 /* Allocate type hash buckets. */
4844
4845 static thash_t *
4846 allocate_thash ()
4847 {
4848 register thash_t *ptr;
4849 static thash_t initial_thash;
4850
4851 #ifndef MALLOC_CHECK
4852
4853 register int unallocated = alloc_counts[(int)alloc_type_thash].unallocated;
4854 register page_t *cur_page = alloc_counts[(int)alloc_type_thash].cur_page;
4855
4856 if (unallocated == 0)
4857 {
4858 unallocated = PAGE_SIZE / sizeof (thash_t);
4859 alloc_counts[(int)alloc_type_thash].cur_page = cur_page = allocate_page ();
4860 alloc_counts[(int)alloc_type_thash].total_pages++;
4861 }
4862
4863 ptr = &cur_page->thash[--unallocated];
4864 alloc_counts[(int)alloc_type_thash].unallocated = unallocated;
4865
4866 #else
4867
4868 ptr = (thash_t *) xmalloc (sizeof (thash_t));
4869
4870 #endif
4871
4872 alloc_counts[(int)alloc_type_thash].total_alloc++;
4873 *ptr = initial_thash;
4874 return ptr;
4875 }
4876 \f
4877 /* Allocate structure, union, or enum tag information. */
4878
4879 static tag_t *
4880 allocate_tag ()
4881 {
4882 register tag_t *ptr;
4883 static tag_t initial_tag;
4884
4885 #ifndef MALLOC_CHECK
4886
4887 ptr = alloc_counts[(int)alloc_type_tag].free_list.f_tag;
4888 if (ptr != (tag_t *) NULL)
4889 alloc_counts[(int)alloc_type_tag].free_list.f_tag = ptr->free;
4890 else
4891 {
4892 register int unallocated = alloc_counts[(int)alloc_type_tag].unallocated;
4893 register page_t *cur_page = alloc_counts[(int)alloc_type_tag].cur_page;
4894
4895 if (unallocated == 0)
4896 {
4897 unallocated = PAGE_SIZE / sizeof (tag_t);
4898 alloc_counts[(int)alloc_type_tag].cur_page = cur_page = allocate_page ();
4899 alloc_counts[(int)alloc_type_tag].total_pages++;
4900 }
4901
4902 ptr = &cur_page->tag[--unallocated];
4903 alloc_counts[(int)alloc_type_tag].unallocated = unallocated;
4904 }
4905
4906 #else
4907
4908 ptr = (tag_t *) xmalloc (sizeof (tag_t));
4909
4910 #endif
4911
4912 alloc_counts[(int)alloc_type_tag].total_alloc++;
4913 *ptr = initial_tag;
4914 return ptr;
4915 }
4916
4917 /* Free scoping information. */
4918
4919 static void
4920 free_tag (ptr)
4921 tag_t *ptr;
4922 {
4923 alloc_counts[(int)alloc_type_tag].total_free++;
4924
4925 #ifndef MALLOC_CHECK
4926 ptr->free = alloc_counts[(int)alloc_type_tag].free_list.f_tag;
4927 alloc_counts[(int)alloc_type_tag].free_list.f_tag = ptr;
4928 #else
4929 free ((PTR_T) ptr);
4930 #endif
4931 }
4932 \f
4933 /* Allocate forward reference to a yet unknown tag. */
4934
4935 static forward_t *
4936 allocate_forward ()
4937 {
4938 register forward_t *ptr;
4939 static forward_t initial_forward;
4940
4941 #ifndef MALLOC_CHECK
4942
4943 register int unallocated = alloc_counts[(int)alloc_type_forward].unallocated;
4944 register page_t *cur_page = alloc_counts[(int)alloc_type_forward].cur_page;
4945
4946 if (unallocated == 0)
4947 {
4948 unallocated = PAGE_SIZE / sizeof (forward_t);
4949 alloc_counts[(int)alloc_type_forward].cur_page = cur_page = allocate_page ();
4950 alloc_counts[(int)alloc_type_forward].total_pages++;
4951 }
4952
4953 ptr = &cur_page->forward[--unallocated];
4954 alloc_counts[(int)alloc_type_forward].unallocated = unallocated;
4955
4956 #else
4957
4958 ptr = (forward_t *) xmalloc (sizeof (forward_t));
4959
4960 #endif
4961
4962 alloc_counts[(int)alloc_type_forward].total_alloc++;
4963 *ptr = initial_forward;
4964 return ptr;
4965 }
4966 \f
4967 /* Allocate head of type hash list. */
4968
4969 static thead_t *
4970 allocate_thead ()
4971 {
4972 register thead_t *ptr;
4973 static thead_t initial_thead;
4974
4975 #ifndef MALLOC_CHECK
4976
4977 ptr = alloc_counts[(int)alloc_type_thead].free_list.f_thead;
4978 if (ptr != (thead_t *) NULL)
4979 alloc_counts[ (int)alloc_type_thead ].free_list.f_thead = ptr->free;
4980 else
4981 {
4982 register int unallocated = alloc_counts[(int)alloc_type_thead].unallocated;
4983 register page_t *cur_page = alloc_counts[(int)alloc_type_thead].cur_page;
4984
4985 if (unallocated == 0)
4986 {
4987 unallocated = PAGE_SIZE / sizeof (thead_t);
4988 alloc_counts[(int)alloc_type_thead].cur_page = cur_page = allocate_page ();
4989 alloc_counts[(int)alloc_type_thead].total_pages++;
4990 }
4991
4992 ptr = &cur_page->thead[--unallocated];
4993 alloc_counts[(int)alloc_type_thead].unallocated = unallocated;
4994 }
4995
4996 #else
4997
4998 ptr = (thead_t *) xmalloc (sizeof (thead_t));
4999
5000 #endif
5001
5002 alloc_counts[(int)alloc_type_thead].total_alloc++;
5003 *ptr = initial_thead;
5004 return ptr;
5005 }
5006
5007 /* Free scoping information. */
5008
5009 static void
5010 free_thead (ptr)
5011 thead_t *ptr;
5012 {
5013 alloc_counts[(int)alloc_type_thead].total_free++;
5014
5015 #ifndef MALLOC_CHECK
5016 ptr->free = (thead_t *) alloc_counts[(int)alloc_type_thead].free_list.f_thead;
5017 alloc_counts[(int)alloc_type_thead].free_list.f_thead = ptr;
5018 #else
5019 free ((PTR_T) ptr);
5020 #endif
5021 }
5022 \f
5023 static lineno_list_t *
5024 allocate_lineno_list ()
5025 {
5026 register lineno_list_t *ptr;
5027 static lineno_list_t initial_lineno_list;
5028
5029 #ifndef MALLOC_CHECK
5030
5031 register int unallocated = alloc_counts[(int)alloc_type_lineno].unallocated;
5032 register page_t *cur_page = alloc_counts[(int)alloc_type_lineno].cur_page;
5033
5034 if (unallocated == 0)
5035 {
5036 unallocated = PAGE_SIZE / sizeof (lineno_list_t);
5037 alloc_counts[(int)alloc_type_lineno].cur_page = cur_page = allocate_page ();
5038 alloc_counts[(int)alloc_type_lineno].total_pages++;
5039 }
5040
5041 ptr = &cur_page->lineno[--unallocated];
5042 alloc_counts[(int)alloc_type_lineno].unallocated = unallocated;
5043
5044 #else
5045
5046 ptr = (lineno_list_t *) xmalloc (sizeof (lineno_list_t));
5047
5048 #endif
5049
5050 alloc_counts[(int)alloc_type_lineno].total_alloc++;
5051 *ptr = initial_lineno_list;
5052 return ptr;
5053 }