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