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