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