]> gcc.gnu.org Git - gcc.git/blame - gcc/mips-tfile.c
(ASM_OUTPUT_CASE_LABEL): Change to readonly section if the table contains addresses.
[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. */
2915 for (name_end_p1 = name_start; (ch = *name_end_p1) != ';'; name_end_p1++)
2916 {
2917 if (ch == '\0' || isspace (ch))
2918 {
2919 error_line = __LINE__;
2920 saber_stop ();
2921 goto bomb_out;
2922 }
2923 }
2924
2925 /* Parse the remaining subdirectives now. */
2926 dir_start = name_end_p1+1;
2927 for (;;)
2928 {
2929 while ((ch = *dir_start) == ' ' || ch == '\t')
2930 ++dir_start;
2931
2932 if (ch != '.')
2933 {
2934 error_line = __LINE__;
2935 saber_stop ();
2936 goto bomb_out;
2937 }
2938
2939 /* Are we done? */
2940 if (dir_start[1] == 'e'
2941 && memcmp (dir_start, ".endef", sizeof (".endef")-1) == 0)
2942 break;
2943
2944 /* Pick up the subdirective now */
2945 for (dir_end_p1 = dir_start+1;
2946 (ch = *dir_end_p1) != ' ' && ch != '\t';
2947 dir_end_p1++)
2948 {
2949 if (ch == '\0' || isspace (ch))
2950 {
2951 error_line = __LINE__;
2952 saber_stop ();
2953 goto bomb_out;
2954 }
2955 }
2956
2957 /* Pick up the subdirective argument now. */
2958 arg_was_number = arg_number = 0;
2959 arg_end_p1 = (const char *)0;
2960 arg_start = dir_end_p1+1;
2961 ch = *arg_start;
2962 while (ch == ' ' || ch == '\t')
2963 ch = *++arg_start;
2964
2965 if (isdigit (ch) || ch == '-' || ch == '+')
2966 {
2967 int ch2;
2968 arg_number = strtol (arg_start, (char **) &arg_end_p1, 0);
2969 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',')
2970 arg_was_number++;
2971 }
2972
2973 else if (ch == '\0' || isspace (ch))
2974 {
2975 error_line = __LINE__;
2976 saber_stop ();
2977 goto bomb_out;
2978 }
2979
2980 if (!arg_was_number)
2981 for (arg_end_p1 = arg_start+1; (ch = *arg_end_p1) != ';'; arg_end_p1++)
2982 {
2983 if (ch == '\0' || isspace (ch))
2984 {
2985 error_line = __LINE__;
2986 saber_stop ();
2987 goto bomb_out;
2988 }
2989 }
2990
2991
2992 /* Classify the directives now. */
2993 len = dir_end_p1 - dir_start;
2994 switch (dir_start[1])
2995 {
2996 default:
2997 error_line = __LINE__;
2998 saber_stop ();
2999 goto bomb_out;
3000
3001 case 'd':
3002 if (len == sizeof (".dim")-1
3003 && memcmp (dir_start, ".dim", sizeof (".dim")-1) == 0
3004 && arg_was_number)
3005 {
3006 symint_t *t_ptr = &temp_array[ N_TQ-1 ];
3007
3008 *t_ptr = arg_number;
3009 while (*arg_end_p1 == ',' && arg_was_number)
3010 {
3011 arg_start = arg_end_p1+1;
3012 ch = *arg_start;
3013 while (ch == ' ' || ch == '\t')
3014 ch = *++arg_start;
3015
3016 arg_was_number = 0;
3017 if (isdigit (ch) || ch == '-' || ch == '+')
3018 {
3019 int ch2;
3020 arg_number = strtol (arg_start, (char **) &arg_end_p1, 0);
3021 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',')
3022 arg_was_number++;
3023
3024 if (t_ptr == &temp_array[0])
3025 {
3026 error_line = __LINE__;
3027 saber_stop ();
3028 goto bomb_out;
3029 }
3030
3031 *--t_ptr = arg_number;
3032 }
3033 }
3034
3035 /* Reverse order of dimensions. */
3036 while (t_ptr <= &temp_array[ N_TQ-1 ])
3037 {
3038 if (t.num_dims >= N_TQ-1)
3039 {
3040 error_line = __LINE__;
3041 saber_stop ();
3042 goto bomb_out;
3043 }
3044
3045 t.dimensions[ t.num_dims++ ] = *t_ptr++;
3046 }
3047 break;
3048 }
3049 else
3050 {
3051 error_line = __LINE__;
3052 saber_stop ();
3053 goto bomb_out;
3054 }
3055
3056
3057 case 's':
3058 if (len == sizeof (".scl")-1
3059 && memcmp (dir_start, ".scl", sizeof (".scl")-1) == 0
3060 && arg_was_number
3061 && arg_number < ((symint_t) C_MAX))
3062 {
3063 /* If the symbol is a static or external, we have
3064 already gotten the appropriate type and class, so
3065 make sure we don't override those values. This is
3066 needed because there are some type and classes that
3067 are not in COFF, such as short data, etc. */
3068 if (symbol_type == st_Nil)
3069 {
3070 symbol_type = map_coff_sym_type[arg_number];
3071 storage_class = map_coff_storage [arg_number];
3072 }
3073 break;
3074 }
3075
3076 else if (len == sizeof (".size")-1
3077 && memcmp (dir_start, ".size", sizeof (".size")-1) == 0
3078 && arg_was_number)
3079 {
3080 symint_t *t_ptr = &temp_array[ N_TQ-1 ];
3081
3082 *t_ptr = arg_number;
3083 while (*arg_end_p1 == ',' && arg_was_number)
3084 {
3085 arg_start = arg_end_p1+1;
3086 ch = *arg_start;
3087 while (ch == ' ' || ch == '\t')
3088 ch = *++arg_start;
3089
3090 arg_was_number = 0;
3091 if (isdigit (ch) || ch == '-' || ch == '+')
3092 {
3093 int ch2;
3094 arg_number = strtol (arg_start, (char **) &arg_end_p1, 0);
3095 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',')
3096 arg_was_number++;
3097
3098 if (t_ptr == &temp_array[0])
3099 {
3100 error_line = __LINE__;
3101 saber_stop ();
3102 goto bomb_out;
3103 }
3104
3105 *--t_ptr = arg_number;
3106 }
3107 }
3108
3109 /* Reverse order of sizes. */
3110 while (t_ptr <= &temp_array[ N_TQ-1 ])
3111 {
3112 if (t.num_sizes >= N_TQ-1)
3113 {
3114 error_line = __LINE__;
3115 saber_stop ();
3116 goto bomb_out;
3117 }
3118
3119 t.sizes[ t.num_sizes++ ] = *t_ptr++;
3120 }
3121 break;
3122 }
3123
3124 else
3125 {
3126 error_line = __LINE__;
3127 saber_stop ();
3128 goto bomb_out;
3129 }
3130
3131
3132 case 't':
3133 if (len == sizeof (".type")-1
3134 && memcmp (dir_start, ".type", sizeof (".type")-1) == 0
3135 && arg_was_number)
3136 {
3137 tq_t *tq_ptr = &t.type_qualifiers[0];
3138
3139 t.orig_type = (coff_type_t) (arg_number & N_BTMASK);
3140 t.basic_type = map_coff_types [(int)t.orig_type];
3141 for (i = N_TQ-1; i >= 0; i--)
3142 {
3143 int dt = (arg_number >> ((i * N_TQ_SHIFT) + N_BT_SHIFT)
3144 & N_TMASK);
3145
3146 if (dt != (int)DT_NON)
3147 *tq_ptr++ = map_coff_derived_type [dt];
3148 }
3149
3150 /* If this is a function, ignore it, so that we don't get
3151 two entries (one from the .ent, and one for the .def
c5b7917e 3152 that precedes it). Save the type information so that
e506707d
MM
3153 the end block can properly add it after the begin block
3154 index. For MIPS knows what reason, we must strip off
3155 the function type at this point. */
3156 if (tq_ptr != &t.type_qualifiers[0] && tq_ptr[-1] == tq_Proc)
3157 {
3158 is_function = 1;
3159 tq_ptr[-1] = tq_Nil;
3160 }
3161
3162 break;
3163 }
3164
3165 else if (len == sizeof (".tag")-1
3166 && memcmp (dir_start, ".tag", sizeof (".tag")-1) == 0)
3167 {
3168 tag_start = arg_start;
3169 tag_end_p1 = arg_end_p1;
3170 break;
3171 }
3172
3173 else
3174 {
3175 error_line = __LINE__;
3176 saber_stop ();
3177 goto bomb_out;
3178 }
3179
3180
3181 case 'v':
3182 if (len == sizeof (".val")-1
3183 && memcmp (dir_start, ".val", sizeof (".val")-1) == 0)
3184 {
3185 if (arg_was_number)
3186 value = arg_number;
3187
3188 /* If the value is not an integer value, it must be the
3189 name of a static or global item. Look up the name in
c5b7917e 3190 the original symbol table to pick up the storage
e506707d
MM
3191 class, symbol type, etc. */
3192 else
3193 {
3194 shash_t *orig_hash_ptr; /* hash within orig sym table*/
3195 shash_t *ext_hash_ptr; /* hash within ext. sym table*/
3196
3197 ext_hash_ptr = hash_string (arg_start,
3198 arg_end_p1 - arg_start,
3199 &ext_str_hash[0],
3200 (symint_t *)0);
3201
3202 if (ext_hash_ptr != (shash_t *)0
3203 && ext_hash_ptr->esym_ptr != (EXTR *)0)
3204 eptr = ext_hash_ptr->esym_ptr;
3205
3206 orig_hash_ptr = hash_string (arg_start,
3207 arg_end_p1 - arg_start,
3208 &orig_str_hash[0],
3209 (symint_t *)0);
3210
3211 if ((orig_hash_ptr == (shash_t *)0
3212 || orig_hash_ptr->sym_ptr == (SYMR *)0)
3213 && eptr == (EXTR *)0)
6ea68a57
RS
3214 {
3215 fprintf (stderr, "warning, %.*s not found in original or external symbol tables, value defaults to 0\n",
3216 arg_end_p1 - arg_start,
3217 arg_start);
3218 value = 0;
3219 }
e506707d
MM
3220 else
3221 {
3222 SYMR *ptr = (orig_hash_ptr != (shash_t *)0
3223 && orig_hash_ptr->sym_ptr != (SYMR *)0)
3224 ? orig_hash_ptr->sym_ptr
3225 : &eptr->asym;
3226
3227 symbol_type = (st_t) ptr->st;
3228 storage_class = (sc_t) ptr->sc;
3229 value = ptr->value;
3230 }
3231 }
3232 break;
3233 }
3234 else
3235 {
3236 error_line = __LINE__;
3237 saber_stop ();
3238 goto bomb_out;
3239 }
3240 }
3241
3242 /* Set up to find next directive. */
3243 dir_start = arg_end_p1 + 1;
3244 }
3245
3246
3247 t.extra_sizes = (tag_start != (char *)0);
3248 if (t.num_dims > 0)
3249 {
3250 int diff = t.num_dims - t.num_sizes;
3251 int i = t.num_dims - 1;
3252 int j;
3253
3254 if (t.num_sizes != 1 || diff < 0)
3255 {
3256 error_line = __LINE__;
3257 saber_stop ();
3258 goto bomb_out;
3259 }
3260
3261 /* If this is an array, make sure the same number of dimensions
3262 and sizes were passed, creating extra sizes for multiply
3263 dimensioned arrays if not passed. */
3264
3265 t.extra_sizes = 0;
3266 if (diff)
3267 {
3268 for (j = (sizeof (t.sizes) / sizeof (t.sizes[0])) - 1; j >= 0; j--)
3269 t.sizes[ j ] = ((j-diff) >= 0) ? t.sizes[ j-diff ] : 0;
3270
3271 t.num_sizes = i + 1;
3272 for ( i--; i >= 0; i-- )
3273 t.sizes[ i ] = t.sizes[ i+1 ] / t.dimensions[ i+1 ];
3274 }
3275 }
3276
3277 else if (symbol_type == st_Member && t.num_sizes - t.extra_sizes == 1)
3278 { /* Is this a bitfield? This is indicated by a structure memeber
3279 having a size field that isn't an array. */
3280
3281 t.bitfield = 1;
3282 }
3283
3284
3285 /* Except for enumeration members & begin/ending of scopes, put the
3286 type word in the aux. symbol table. */
3287
3288 if (symbol_type == st_Block || symbol_type == st_End)
3289 index = 0;
3290
3291 else if (inside_enumeration)
3292 index = cur_file_ptr->void_type;
3293
3294 else
3295 {
3296 if (t.basic_type == bt_Struct
3297 || t.basic_type == bt_Union
3298 || t.basic_type == bt_Enum)
3299 {
3300 if (tag_start == (char *)0)
3301 {
3302 error ("No tag specified for %.*s",
3303 name_end_p1 - name_start,
3304 name_start);
3305 return;
3306 }
3307
3308 t.tag_ptr = get_tag (tag_start, tag_end_p1, (symint_t)indexNil,
3309 t.basic_type);
3310 }
3311
3312 if (is_function)
3313 {
3314 last_func_type_info = t;
3315 last_func_eptr = eptr;
3316 return;
3317 }
3318
3319 index = add_aux_sym_tir (&t,
3320 hash_yes,
3321 &cur_file_ptr->thash_head[0]);
3322 }
3323
3324
3325 /* If this is an external or static symbol, update the appropriate
3326 external symbol. */
3327
3328 if (eptr != (EXTR *)0
3329 && (eptr->asym.index == indexNil || cur_proc_ptr == (PDR *)0))
3330 {
3331 eptr->ifd = cur_file_ptr->file_index;
3332 eptr->asym.index = index;
3333 }
3334
3335
3336 /* Do any last minute adjustments that are necessary. */
3337 switch (symbol_type)
3338 {
3339 default:
3340 break;
3341
3342
3343 /* For the beginning of structs, unions, and enumerations, the
3344 size info needs to be passed in the value field. */
3345
3346 case st_Block:
3347 if (t.num_sizes - t.num_dims - t.extra_sizes != 1)
3348 {
3349 error_line = __LINE__;
3350 saber_stop ();
3351 goto bomb_out;
3352 }
3353
3354 else
3355 value = t.sizes[0];
3356
3357 inside_enumeration = (t.orig_type == T_ENUM);
3358 break;
3359
3360
3361 /* For the end of structs, unions, and enumerations, omit the
3362 name which is always ".eos". This needs to be done last, so
3363 that any error reporting above gives the correct name. */
3364
3365 case st_End:
3366 name_start = name_end_p1 = (const char *)0;
3367 value = inside_enumeration = 0;
3368 break;
3369
3370
3371 /* Members of structures and unions that aren't bitfields, need
3372 to adjust the value from a byte offset to a bit offset.
3373 Members of enumerations do not have the value adjusted, and
c5b7917e 3374 can be distinguished by index == indexNil. For enumerations,
e506707d
MM
3375 update the maximum enumeration value. */
3376
3377 case st_Member:
3378 if (!t.bitfield && !inside_enumeration)
3379 value *= 8;
3380
3381 break;
3382 }
3383
3384
3385 /* Add the symbol, except for global symbols outside of functions,
3386 for which the external symbol table is fine enough. */
3387
3388 if (eptr == (EXTR *)0
3389 || eptr->asym.st == (int)st_Nil
3390 || cur_proc_ptr != (PDR *)0)
3391 {
6ea68a57
RS
3392 symint_t isym = add_local_symbol (name_start, name_end_p1,
3393 symbol_type, storage_class,
e506707d
MM
3394 value,
3395 index);
3396
3397 /* deal with struct, union, and enum tags. */
3398 if (symbol_type == st_Block)
3399 {
3400 /* Create or update the tag information. */
3401 tag_t *tag_ptr = get_tag (name_start,
3402 name_end_p1,
3403 isym,
3404 t.basic_type);
3405
3406 /* If there are any forward references, fill in the appropriate
3407 file and symbol indexes. */
3408
3409 symint_t file_index = cur_file_ptr->file_index;
3410 forward_t *f_next = tag_ptr->forward_ref;
3411 forward_t *f_cur;
3412
3413 while (f_next != (forward_t *)0)
3414 {
3415 f_cur = f_next;
3416 f_next = f_next->next;
3417
3418 f_cur->ifd_ptr->isym = file_index;
3419 f_cur->index_ptr->rndx.index = isym;
3420
6ea68a57 3421 free_forward (f_cur);
e506707d
MM
3422 }
3423
3424 tag_ptr->forward_ref = (forward_t *)0;
3425 }
3426 }
3427
3428 /* Normal return */
3429 return;
3430
3431 /* Error return, issue message. */
3432bomb_out:
3433 if (error_line)
3434 error ("compiler error, badly formed #.def (internal line # = %d)", error_line);
3435 else
3436 error ("compiler error, badly formed #.def");
3437
3438 return;
3439}
3440
3441\f
3442/* Parse .end directives. */
3443
3444STATIC void
3445parse_end (start)
3446 const char *start; /* start of directive */
3447{
3448 register const char *start_func, *end_func_p1;
3449 register int ch;
3450 register symint_t value;
3451 register FDR *orig_fdr;
3452
3453 if (cur_file_ptr == (efdr_t *)0)
3454 {
4c23f36f 3455 error (".end directive without a preceding .file directive");
e506707d
MM
3456 return;
3457 }
3458
3459 if (cur_proc_ptr == (PDR *)0)
3460 {
4c23f36f 3461 error (".end directive without a preceding .ent directive");
e506707d
MM
3462 return;
3463 }
3464
3465 /* Get the function name, skipping whitespace. */
3466 for (start_func = start; isspace (*start_func); start_func++)
3467 ;
3468
3469 ch = *start_func;
3470 if (!IS_ASM_IDENT (ch))
3471 {
3472 error (".end directive has no name");
3473 return;
3474 }
3475
3476 for (end_func_p1 = start_func; IS_ASM_IDENT (ch); ch = *++end_func_p1)
3477 ;
3478
3479
3480 /* Get the value field for creating the end from the original object
3481 file (which we find by locating the procedure start, and using the
3482 pointer to the end+1 block and backing up. The index points to a
3483 two word aux. symbol, whose first word is the index of the end
3484 symbol, and the second word is the type of the function return
3485 value. */
3486
3487 orig_fdr = cur_file_ptr->orig_fdr;
3488 value = 0;
6ea68a57
RS
3489 if (orig_fdr != (FDR *)0 && cur_oproc_end != (SYMR *)0)
3490 value = cur_oproc_end->value;
e506707d 3491
6ea68a57
RS
3492 else
3493 error ("Cannot find .end block for %.*s", end_func_p1 - start_func, start_func);
e506707d 3494
6ea68a57
RS
3495 (void) add_local_symbol (start_func, end_func_p1,
3496 st_End, sc_Text,
e506707d
MM
3497 value,
3498 (symint_t)0);
3499
3500 cur_proc_ptr = cur_oproc_ptr = (PDR *)0;
3501}
3502
3503\f
3504/* Parse .ent directives. */
3505
3506STATIC void
3507parse_ent (start)
3508 const char *start; /* start of directive */
3509{
3510 register const char *start_func, *end_func_p1;
3511 register int ch;
3512
3513 if (cur_file_ptr == (efdr_t *)0)
3514 {
4c23f36f 3515 error (".ent directive without a preceding .file directive");
e506707d
MM
3516 return;
3517 }
3518
3519 if (cur_proc_ptr != (PDR *)0)
3520 {
3521 error ("second .ent directive found before .end directive");
3522 return;
3523 }
3524
3525 for (start_func = start; isspace (*start_func); start_func++)
3526 ;
3527
3528 ch = *start_func;
3529 if (!IS_ASM_IDENT (ch))
3530 {
3531 error (".ent directive has no name");
3532 return;
3533 }
3534
3535 for (end_func_p1 = start_func; IS_ASM_IDENT (ch); ch = *++end_func_p1)
3536 ;
3537
3538 (void) add_procedure (start_func, end_func_p1);
3539}
3540
3541\f
3542/* Parse .file directives. */
3543
3544STATIC void
3545parse_file (start)
3546 const char *start; /* start of directive */
3547{
3548 char *p;
3549 register char *start_name, *end_name_p1;
3550
3551 (void) strtol (start, &p, 0);
3552 if (start == p
878fb2ac
CH
3553 || (start_name = index (p, '"')) == (char *)0
3554 || (end_name_p1 = rindex (++start_name, '"')) == (char *)0)
e506707d
MM
3555 {
3556 error ("Illegal .file directive");
3557 return;
3558 }
3559
3560 if (cur_proc_ptr != (PDR *)0)
3561 {
3562 error ("No way to handle .file within .ent/.end section");
3563 return;
3564 }
3565
3566 add_file (start_name, end_name_p1);
3567}
3568
4c23f36f
MM
3569\f
3570/* Make sure the @stabs symbol is emitted. */
3571
3572static void
3573mark_stabs (start)
45848a8c 3574 const char *start; /* Start of directive (ignored) */
4c23f36f
MM
3575{
3576 if (!stabs_seen)
3577 {
3578 /* Add a dummy @stabs dymbol. */
3579 stabs_seen = 1;
3580 (void) add_local_symbol (stabs_symbol,
3581 stabs_symbol + sizeof (stabs_symbol),
3582 stNil, scInfo, -1, MIPS_MARK_STAB(0));
3583
3584 }
3585}
3586
6ea68a57
RS
3587\f
3588/* Parse .stabs directives.
3589
3590 .stabs directives have five fields:
3591 "string" a string, encoding the type information.
3592 code a numeric code, defined in <stab.h>
3593 0 a zero
3594 0 a zero or line number
3595 value a numeric value or an address.
3596
3597 If the value is relocatable, we transform this into:
3598 iss points as an index into string space
3599 value value from lookup of the name
3600 st st from lookup of the name
3601 sc sc from lookup of the name
3602 index code|CODE_MASK
3603
3604 If the value is not relocatable, we transform this into:
3605 iss points as an index into string space
3606 value value
3607 st st_Nil
3608 sc sc_Nil
3609 index code|CODE_MASK
3610
3611 .stabn directives have four fields (string is null):
3612 code a numeric code, defined in <stab.h>
3613 0 a zero
3614 0 a zero or a line number
3615 value a numeric value or an address. */
3616
3617STATIC void
3618parse_stabs_common (string_start, string_end, rest)
3619 const char *string_start; /* start of string or NULL */
3620 const char *string_end; /* end+1 of string or NULL */
3621 const char *rest; /* rest of the directive. */
3622{
3623 efdr_t *save_file_ptr = cur_file_ptr;
3624 symint_t code;
3625 symint_t value;
3626 char *p;
3627 st_t st;
3628 sc_t sc;
3629 int ch;
6ea68a57 3630
4c23f36f
MM
3631 if (stabs_seen == 0)
3632 mark_stabs ("");
6ea68a57
RS
3633
3634 /* Read code from stabs. */
3635 if (!isdigit (*rest))
3636 {
3637 error ("Illegal .stabs/.stabn directive, code is non-numeric");
3638 return;
3639 }
3640
3641 code = strtol (rest, &p, 0);
3642
3643 /* Line number stabs are handled differently, since they have two values,
3644 the line number and the address of the label. We use the index field
3645 (aka code) to hold the line number, and the value field to hold the
3646 address. The symbol type is st_Label, which should be different from
3647 the other stabs, so that gdb can recognize it. */
3648
3649 if (code == (int)N_SLINE)
3650 {
3651 SYMR *sym_ptr;
3652 shash_t *shash_ptr;
3653
3654 /* Skip ,0, */
3655 if (p[0] != ',' || p[1] != '0' || p[2] != ',' || !isdigit (p[3]))
3656 {
3657 error ("Illegal line number .stabs/.stabn directive");
3658 return;
3659 }
3660
3661 code = strtol (p+3, &p, 0);
3662 ch = *++p;
3663 if (code <= 0 || p[-1] != ',' || isdigit (ch) || !IS_ASM_IDENT (ch))
3664 {
3665 error ("Illegal line number .stabs/.stabn directive");
3666 return;
3667 }
3668
3669 shash_ptr = hash_string (p,
3670 strlen (p) - 1,
3671 &orig_str_hash[0],
3672 (symint_t *)0);
3673
3674 if (shash_ptr == (shash_t *)0
3675 || (sym_ptr = shash_ptr->sym_ptr) == (SYMR *)0)
3676 {
3677 error ("Illegal .stabs/.stabn directive, value not found");
3678 return;
3679 }
3680
3681 if ((st_t) sym_ptr->st != st_Label)
3682 {
3683 error ("Illegal line number .stabs/.stabn directive");
3684 return;
3685 }
3686
3687 st = st_Label;
3688 sc = (sc_t) sym_ptr->sc;
3689 value = sym_ptr->value;
3690 }
3691 else
3692 {
6ea68a57
RS
3693 /* Skip ,0,0, */
3694 if (p[0] != ',' || p[1] != '0' || p[2] != ',' || p[3] != '0' || p[4] != ',')
3695 {
4c23f36f 3696 error ("Illegal .stabs/.stabn directive, mandatory 0 isn't");
6ea68a57
RS
3697 return;
3698 }
3699
3700 p += 5;
3701 ch = *p;
3702 if (!IS_ASM_IDENT (ch) && ch != '-')
3703 {
3704 error ("Illegal .stabs/.stabn directive, bad character");
3705 return;
3706 }
3707
3708 if (isdigit (ch) || ch == '-')
3709 {
3710 st = st_Nil;
3711 sc = sc_Nil;
3712 value = strtol (p, &p, 0);
3713 if (*p != '\n')
3714 {
3715 error ("Illegal .stabs/.stabn directive, stuff after numeric value");
3716 return;
3717 }
3718 }
3719 else if (!IS_ASM_IDENT (ch))
3720 {
3721 error ("Illegal .stabs/.stabn directive, bad character");
3722 return;
3723 }
3724 else
3725 {
3726 SYMR *sym_ptr;
3727 shash_t *shash_ptr = hash_string (p,
3728 strlen (p) - 1,
3729 &orig_str_hash[0],
3730 (symint_t *)0);
3731
3732 if (shash_ptr == (shash_t *)0
3733 || (sym_ptr = shash_ptr->sym_ptr) == (SYMR *)0)
3734 {
3735 error ("Illegal .stabs/.stabn directive, value not found");
3736 return;
3737 }
3738
4c23f36f
MM
3739 /* Traditionally, N_LBRAC and N_RBRAC are *not* relocated. */
3740 if (code == (int)N_LBRAC || code == (int)N_RBRAC)
3741 {
3742 sc = scNil;
3743 st = stNil;
3744 }
3745 else
3746 {
3747 sc = (sc_t) sym_ptr->sc;
3748 st = (st_t) sym_ptr->st;
3749 }
6ea68a57
RS
3750 value = sym_ptr->value;
3751 }
4c23f36f 3752 code = MIPS_MARK_STAB(code);
6ea68a57
RS
3753 }
3754
3755 (void) add_local_symbol (string_start, string_end, st, sc, value, code);
3756 /* Restore normal file type. */
3757 cur_file_ptr = save_file_ptr;
3758}
3759
3760
3761STATIC void
3762parse_stabs (start)
3763 const char *start; /* start of directive */
3764{
878fb2ac 3765 const char *end = index (start+1, '"');
6ea68a57
RS
3766
3767 if (*start != '"' || end == (const char *)0 || end[1] != ',')
3768 {
3769 error ("Illegal .stabs directive, no string");
3770 return;
3771 }
3772
3773 parse_stabs_common (start+1, end, end+2);
3774}
3775
3776
3777STATIC void
3778parse_stabn (start)
3779 const char *start; /* start of directive */
3780{
3781 parse_stabs_common ((const char *)0, (const char *)0, start);
3782}
3783
e506707d
MM
3784\f
3785/* Parse the input file, and write the lines to the output file
3786 if needed. */
3787
3788STATIC void
3789parse_input __proto((void))
3790{
3791 register char *p;
3792 register int i;
3793 register thead_t *ptag_head;
3794 register tag_t *ptag;
3795 register tag_t *ptag_next;
3796
3797 if (debug)
3798 fprintf (stderr, "\tinput\n");
3799
3800 /* Add a dummy scope block around the entire compilation unit for
3801 structures defined outside of blocks. */
6ea68a57 3802 ptag_head = allocate_thead ();
e506707d
MM
3803 ptag_head->first_tag = 0;
3804 ptag_head->prev = cur_tag_head;
3805 cur_tag_head = ptag_head;
3806
3807 while ((p = read_line ()) != (char *)0)
3808 {
3809 /* Skip leading blanks */
3810 while (isspace (*p))
3811 p++;
3812
3813 /* See if it's a directive we handle. If so, dispatch handler. */
3814 for (i = 0; i < sizeof (pseudo_ops) / sizeof (pseudo_ops[0]); i++)
3815 if (memcmp (p, pseudo_ops[i].name, pseudo_ops[i].len) == 0
3816 && isspace (p[pseudo_ops[i].len]))
3817 {
3818 p += pseudo_ops[i].len; /* skip to first argument */
3819 while (isspace (*p))
3820 p++;
3821
3822 (*pseudo_ops[i].func)( p );
3823 break;
3824 }
3825 }
3826
3827 /* Process any tags at global level. */
3828 ptag_head = cur_tag_head;
3829 cur_tag_head = ptag_head->prev;
3830
3831 for (ptag = ptag_head->first_tag;
3832 ptag != (tag_t *)0;
3833 ptag = ptag_next)
3834 {
3835 if (ptag->forward_ref != (forward_t *)0)
3836 add_unknown_tag (ptag);
3837
3838 ptag_next = ptag->same_block;
3839 ptag->hash_ptr->tag_ptr = ptag->same_name;
6ea68a57 3840 free_tag (ptag);
e506707d
MM
3841 }
3842
6ea68a57 3843 free_thead (ptag_head);
e506707d
MM
3844
3845}
3846
3847\f
3848/* Update the global headers with the final offsets in preparation
3849 to write out the .T file. */
3850
3851STATIC void
3852update_headers __proto((void))
3853{
3854 register symint_t i;
3855 register efdr_t *file_ptr;
3856
3857 /* Set up the symbolic header. */
3858 file_offset = sizeof (symbolic_header) + orig_file_header.f_symptr;
3859 symbolic_header.magic = orig_sym_hdr.magic;
3860 symbolic_header.vstamp = orig_sym_hdr.vstamp;
3861
3862 /* Set up global counts. */
3863 symbolic_header.issExtMax = ext_strings.num_allocated;
3864 symbolic_header.idnMax = dense_num.num_allocated;
3865 symbolic_header.ifdMax = file_desc.num_allocated;
3866 symbolic_header.iextMax = ext_symbols.num_allocated;
3867 symbolic_header.ilineMax = orig_sym_hdr.ilineMax;
3868 symbolic_header.ioptMax = orig_sym_hdr.ioptMax;
3869 symbolic_header.cbLine = orig_sym_hdr.cbLine;
3870 symbolic_header.crfd = orig_sym_hdr.crfd;
3871
3872
3873 /* Loop through each file, figuring out how many local syms,
3874 line numbers, etc. there are. Also, put out end symbol
3875 for the filename. */
3876
3877 for (file_ptr = first_file;
3878 file_ptr != (efdr_t *)0;
3879 file_ptr = file_ptr->next_file)
3880 {
3881 cur_file_ptr = file_ptr;
6ea68a57
RS
3882 (void) add_local_symbol ((const char *)0, (const char *)0,
3883 st_End, sc_Text,
e506707d
MM
3884 (symint_t)0,
3885 (symint_t)0);
3886
3887 file_ptr->fdr.cpd = file_ptr->procs.num_allocated;
3888 file_ptr->fdr.ipdFirst = symbolic_header.ipdMax;
3889 symbolic_header.ipdMax += file_ptr->fdr.cpd;
3890
3891 file_ptr->fdr.csym = file_ptr->symbols.num_allocated;
3892 file_ptr->fdr.isymBase = symbolic_header.isymMax;
3893 symbolic_header.isymMax += file_ptr->fdr.csym;
3894
3895 file_ptr->fdr.caux = file_ptr->aux_syms.num_allocated;
3896 file_ptr->fdr.iauxBase = symbolic_header.iauxMax;
3897 symbolic_header.iauxMax += file_ptr->fdr.caux;
3898
3899 file_ptr->fdr.cbSs = file_ptr->strings.num_allocated;
3900 file_ptr->fdr.issBase = symbolic_header.issMax;
3901 symbolic_header.issMax += file_ptr->fdr.cbSs;
3902 }
3903
3904
3905 i = WORD_ALIGN (symbolic_header.cbLine); /* line numbers */
3906 if (i > 0)
3907 {
3908 symbolic_header.cbLineOffset = file_offset;
3909 file_offset += i;
3910 }
3911
3912 i = symbolic_header.ioptMax; /* optimization symbols */
3913 if (((long) i) > 0)
3914 {
3915 symbolic_header.cbOptOffset = file_offset;
3916 file_offset += i * sizeof (OPTR);
3917 }
3918
3919 i = symbolic_header.idnMax; /* dense numbers */
3920 if (i > 0)
3921 {
3922 symbolic_header.cbDnOffset = file_offset;
3923 file_offset += i * sizeof (DNR);
3924 }
3925
3926 i = symbolic_header.ipdMax; /* procedure tables */
3927 if (i > 0)
3928 {
3929 symbolic_header.cbPdOffset = file_offset;
3930 file_offset += i * sizeof (PDR);
3931 }
3932
3933 i = symbolic_header.isymMax; /* local symbols */
3934 if (i > 0)
3935 {
3936 symbolic_header.cbSymOffset = file_offset;
3937 file_offset += i * sizeof (SYMR);
3938 }
3939
3940 i = symbolic_header.iauxMax; /* aux syms. */
3941 if (i > 0)
3942 {
3943 symbolic_header.cbAuxOffset = file_offset;
3944 file_offset += i * sizeof (TIR);
3945 }
3946
3947 i = WORD_ALIGN (symbolic_header.issMax); /* local strings */
3948 if (i > 0)
3949 {
3950 symbolic_header.cbSsOffset = file_offset;
3951 file_offset += i;
3952 }
3953
3954 i = WORD_ALIGN (symbolic_header.issExtMax); /* external strings */
3955 if (i > 0)
3956 {
3957 symbolic_header.cbSsExtOffset = file_offset;
3958 file_offset += i;
3959 }
3960
3961 i = symbolic_header.ifdMax; /* file tables */
3962 if (i > 0)
3963 {
3964 symbolic_header.cbFdOffset = file_offset;
3965 file_offset += i * sizeof (FDR);
3966 }
3967
3968 i = symbolic_header.crfd; /* relative file descriptors */
3969 if (i > 0)
3970 {
3971 symbolic_header.cbRfdOffset = file_offset;
3972 file_offset += i * sizeof (symint_t);
3973 }
3974
3975 i = symbolic_header.iextMax; /* external symbols */
3976 if (i > 0)
3977 {
3978 symbolic_header.cbExtOffset = file_offset;
3979 file_offset += i * sizeof (EXTR);
3980 }
3981}
3982
3983\f
3984/* Write out a varray at a given location. */
3985
3986STATIC void
3987write_varray (vp, offset, str)
3988 varray_t *vp; /* virtual array */
3989 off_t offset; /* offset to write varray to */
3990 const char *str; /* string to print out when tracing */
3991{
3992 int num_write, sys_write;
3993 vlinks_t *ptr;
3994
3995 if (vp->num_allocated == 0)
3996 return;
3997
3998 if (debug)
3999 fprintf (stderr, "\twarray\tvp = 0x%.8x, offset = %7u, size = %7u, %s\n",
4000 vp, offset, vp->num_allocated * vp->object_size, str);
4001
4002 if (file_offset != offset
4003 && fseek (object_stream, (long)offset, SEEK_SET) < 0)
4004 pfatal_with_name (object_name);
4005
4006 for (ptr = vp->first; ptr != (vlinks_t *)0; ptr = ptr->next)
4007 {
4008 num_write = (ptr->next == (vlinks_t *)0)
4009 ? vp->objects_last_page * vp->object_size
4010 : vp->objects_per_page * vp->object_size;
4011
4012 sys_write = fwrite ((PTR_T) ptr->datum, 1, num_write, object_stream);
4013 if (sys_write <= 0)
4014 pfatal_with_name (object_name);
4015
4016 else if (sys_write != num_write)
4017 fatal ("Wrote %d bytes to %s, system returned %d",
4018 num_write,
4019 object_name,
4020 sys_write);
4021
4022 file_offset += num_write;
4023 }
4024}
4025
4026\f
4027/* Write out the symbol table in the object file. */
4028
4029STATIC void
4030write_object __proto((void))
4031{
4032 int sys_write;
4033 efdr_t *file_ptr;
4034 off_t offset;
4035
4036 if (debug)
4037 fprintf (stderr, "\n\twrite\tvp = 0x%.8x, offset = %7u, size = %7u, %s\n",
4038 (PTR_T *) &symbolic_header, 0, sizeof (symbolic_header),
4039 "symbolic header");
4040
4041 sys_write = fwrite ((PTR_T) &symbolic_header,
4042 1,
4043 sizeof (symbolic_header),
4044 object_stream);
4045
4046 if (sys_write < 0)
4047 pfatal_with_name (object_name);
4048
4049 else if (sys_write != sizeof (symbolic_header))
4050 fatal ("Wrote %d bytes to %s, system returned %d",
4051 sizeof (symbolic_header),
4052 object_name,
4053 sys_write);
4054
4055
4056 file_offset = sizeof (symbolic_header) + orig_file_header.f_symptr;
4057
4058 if (symbolic_header.cbLine > 0) /* line numbers */
4059 {
4060 long sys_write;
4061
4062 if (file_offset != symbolic_header.cbLineOffset
4063 && fseek (object_stream, symbolic_header.cbLineOffset, SEEK_SET) != 0)
4064 pfatal_with_name (object_name);
4065
4066 if (debug)
4067 fprintf (stderr, "\twrite\tvp = 0x%.8x, offset = %7u, size = %7u, %s\n",
4068 (PTR_T *) &orig_linenum, symbolic_header.cbLineOffset,
4069 symbolic_header.cbLine, "Line numbers");
4070
4071 sys_write = fwrite ((PTR_T) orig_linenum,
4072 1,
4073 symbolic_header.cbLine,
4074 object_stream);
4075
4076 if (sys_write <= 0)
4077 pfatal_with_name (object_name);
4078
4079 else if (sys_write != symbolic_header.cbLine)
4080 fatal ("Wrote %d bytes to %s, system returned %d",
4081 symbolic_header.cbLine,
4082 object_name,
4083 sys_write);
4084
4085 file_offset = symbolic_header.cbLineOffset + symbolic_header.cbLine;
4086 }
4087
4088 if (symbolic_header.ioptMax > 0) /* optimization symbols */
4089 {
4090 long sys_write;
4091 long num_write = symbolic_header.ioptMax * sizeof (OPTR);
4092
4093 if (file_offset != symbolic_header.cbOptOffset
4094 && fseek (object_stream, symbolic_header.cbOptOffset, SEEK_SET) != 0)
4095 pfatal_with_name (object_name);
4096
4097 if (debug)
4098 fprintf (stderr, "\twrite\tvp = 0x%.8x, offset = %7u, size = %7u, %s\n",
4099 (PTR_T *) &orig_opt_syms, symbolic_header.cbOptOffset,
4100 num_write, "Optimizer symbols");
4101
4102 sys_write = fwrite ((PTR_T) orig_opt_syms,
4103 1,
4104 num_write,
4105 object_stream);
4106
4107 if (sys_write <= 0)
4108 pfatal_with_name (object_name);
4109
4110 else if (sys_write != num_write)
4111 fatal ("Wrote %d bytes to %s, system returned %d",
4112 num_write,
4113 object_name,
4114 sys_write);
4115
4116 file_offset = symbolic_header.cbOptOffset + num_write;
4117 }
4118
4119 if (symbolic_header.idnMax > 0) /* dense numbers */
4120 write_varray (&dense_num, (off_t)symbolic_header.cbDnOffset, "Dense numbers");
4121
4122 if (symbolic_header.ipdMax > 0) /* procedure tables */
4123 {
4124 offset = symbolic_header.cbPdOffset;
4125 for (file_ptr = first_file;
4126 file_ptr != (efdr_t *)0;
4127 file_ptr = file_ptr->next_file)
4128 {
4129 write_varray (&file_ptr->procs, offset, "Procedure tables");
4130 offset = file_offset;
4131 }
4132 }
4133
4134 if (symbolic_header.isymMax > 0) /* local symbols */
4135 {
4136 offset = symbolic_header.cbSymOffset;
4137 for (file_ptr = first_file;
4138 file_ptr != (efdr_t *)0;
4139 file_ptr = file_ptr->next_file)
4140 {
4141 write_varray (&file_ptr->symbols, offset, "Local symbols");
4142 offset = file_offset;
4143 }
4144 }
4145
4146 if (symbolic_header.iauxMax > 0) /* aux symbols */
4147 {
4148 offset = symbolic_header.cbAuxOffset;
4149 for (file_ptr = first_file;
4150 file_ptr != (efdr_t *)0;
4151 file_ptr = file_ptr->next_file)
4152 {
4153 write_varray (&file_ptr->aux_syms, offset, "Aux. symbols");
4154 offset = file_offset;
4155 }
4156 }
4157
4158 if (symbolic_header.issMax > 0) /* local strings */
4159 {
4160 offset = symbolic_header.cbSsOffset;
4161 for (file_ptr = first_file;
4162 file_ptr != (efdr_t *)0;
4163 file_ptr = file_ptr->next_file)
4164 {
4165 write_varray (&file_ptr->strings, offset, "Local strings");
4166 offset = file_offset;
4167 }
4168 }
4169
4170 if (symbolic_header.issExtMax > 0) /* external strings */
4171 write_varray (&ext_strings, symbolic_header.cbSsExtOffset, "External strings");
4172
4173 if (symbolic_header.ifdMax > 0) /* file tables */
4174 {
4175 offset = symbolic_header.cbFdOffset;
4176 if (file_offset != offset
4177 && fseek (object_stream, (long)offset, SEEK_SET) < 0)
4178 pfatal_with_name (object_name);
4179
4180 file_offset = offset;
4181 for (file_ptr = first_file;
4182 file_ptr != (efdr_t *)0;
4183 file_ptr = file_ptr->next_file)
4184 {
4185 if (debug)
4186 fprintf (stderr, "\twrite\tvp = 0x%.8x, offset = %7u, size = %7u, %s\n",
4187 (PTR_T *) &file_ptr->fdr, file_offset, sizeof (FDR), "File header");
4188
4189 sys_write = fwrite (&file_ptr->fdr,
4190 1,
4191 sizeof (FDR),
4192 object_stream);
4193
4194 if (sys_write < 0)
4195 pfatal_with_name (object_name);
4196
4197 else if (sys_write != sizeof (FDR))
4198 fatal ("Wrote %d bytes to %s, system returned %d",
4199 sizeof (FDR),
4200 object_name,
4201 sys_write);
4202
4203 file_offset = offset += sizeof (FDR);
4204 }
4205 }
4206
4207 if (symbolic_header.crfd > 0) /* relative file descriptors */
4208 {
4209 long sys_write;
4210 symint_t num_write = symbolic_header.crfd * sizeof (symint_t);
4211
4212 if (file_offset != symbolic_header.cbRfdOffset
4213 && fseek (object_stream, symbolic_header.cbRfdOffset, SEEK_SET) != 0)
4214 pfatal_with_name (object_name);
4215
4216 if (debug)
4217 fprintf (stderr, "\twrite\tvp = 0x%.8x, offset = %7u, size = %7u, %s\n",
4218 (PTR_T *) &orig_rfds, symbolic_header.cbRfdOffset,
4219 num_write, "Relative file descriptors");
4220
4221 sys_write = fwrite (orig_rfds,
4222 1,
4223 num_write,
4224 object_stream);
4225
4226 if (sys_write <= 0)
4227 pfatal_with_name (object_name);
4228
4229 else if (sys_write != num_write)
4230 fatal ("Wrote %d bytes to %s, system returned %d",
4231 num_write,
4232 object_name,
4233 sys_write);
4234
4235 file_offset = symbolic_header.cbRfdOffset + num_write;
4236 }
4237
4238 if (symbolic_header.issExtMax > 0) /* external symbols */
4239 write_varray (&ext_symbols, (off_t)symbolic_header.cbExtOffset, "External symbols");
4240
4241 if (fclose (object_stream) != 0)
4242 pfatal_with_name (object_name);
4243}
4244
4245\f
4246/* Read some bytes at a specified location, and return a pointer. */
4247
4248STATIC page_t *
4249read_seek (size, offset, str)
4250 Size_t size; /* # bytes to read */
4251 off_t offset; /* offset to read at */
4252 const char *str; /* name for tracing */
4253{
4254 page_t *ptr;
4255 long sys_read = 0;
4256
4257 if (size == 0) /* nothing to read */
4258 return (page_t *)0;
4259
4260 if (debug)
4261 fprintf (stderr, "\trseek\tsize = %7u, offset = %7u, currently at %7u, %s\n",
4262 size, offset, file_offset, str);
4263
4264#ifndef MALLOC_CHECK
4265 ptr = allocate_multiple_pages ((size + PAGE_USIZE - 1) / PAGE_USIZE);
4266#else
4267 ptr = (page_t *) xcalloc (1, size);
4268#endif
4269
4270 /* If we need to seek, and the distance is nearby, just do some reads,
4271 to speed things up. */
4272 if (file_offset != offset)
4273 {
4274 symint_t difference = offset - file_offset;
4275
4276 if (difference < 8)
4277 {
4278 char small_buffer[8];
4279
4280 sys_read = fread (small_buffer, 1, difference, obj_in_stream);
4281 if (sys_read <= 0)
4282 pfatal_with_name (obj_in_name);
4283
4284 if (sys_read != difference)
4285 fatal ("Wanted to read %d bytes from %s, system returned %d",
4286 size,
05bc17df
MM
4287 obj_in_name,
4288 sys_read);
e506707d
MM
4289 }
4290 else if (fseek (obj_in_stream, offset, SEEK_SET) < 0)
4291 pfatal_with_name (obj_in_name);
4292 }
4293
4294 sys_read = fread ((PTR_T)ptr, 1, size, obj_in_stream);
4295 if (sys_read <= 0)
4296 pfatal_with_name (obj_in_name);
4297
4298 if (sys_read != size)
4299 fatal ("Wanted to read %d bytes from %s, system returned %d",
4300 size,
05bc17df
MM
4301 obj_in_name,
4302 sys_read);
e506707d
MM
4303
4304 file_offset = offset + size;
4305
4306 if (file_offset > max_file_offset)
4307 max_file_offset = file_offset;
4308
4309 return ptr;
4310}
4311
4312\f
4313/* Read the existing object file (and copy to the output object file
4314 if it is different from the input object file), and remove the old
4315 symbol table. */
4316
4317STATIC void
4318copy_object __proto((void))
4319{
4320 char buffer[ PAGE_SIZE ];
4321 register int sys_read;
4322 register int remaining;
4323 register int num_write;
4324 register int sys_write;
4325 register int fd, es;
4326 register int delete_ifd = 0;
6ea68a57 4327 register int *remap_file_number;
e506707d
MM
4328 struct stat stat_buf;
4329
4330 if (debug)
4331 fprintf (stderr, "\tcopy\n");
4332
4333 if (fstat (fileno (obj_in_stream), &stat_buf) != 0
4334 || fseek (obj_in_stream, 0L, SEEK_SET) != 0)
4335 pfatal_with_name (obj_in_name);
4336
4337 sys_read = fread ((PTR_T) &orig_file_header,
4338 1,
4339 sizeof (struct filehdr),
4340 obj_in_stream);
4341
4342 if (sys_read < 0)
4343 pfatal_with_name (obj_in_name);
4344
4345 else if (sys_read == 0 && feof (obj_in_stream))
4346 return; /* create a .T file sans file header */
4347
4348 else if (sys_read < sizeof (struct filehdr))
4349 fatal ("Wanted to read %d bytes from %s, system returned %d",
4350 sizeof (struct filehdr),
4351 obj_in_name,
4352 sys_read);
4353
4354
e506707d
MM
4355 if (orig_file_header.f_nsyms != sizeof (HDRR))
4356 fatal ("%s symbolic header wrong size (%d bytes, should be %d)",
4357 input_name, orig_file_header.f_nsyms, sizeof (HDRR));
4358
4359
4360 /* Read in the current symbolic header. */
4361 if (fseek (obj_in_stream, (long) orig_file_header.f_symptr, SEEK_SET) != 0)
4362 pfatal_with_name (input_name);
4363
4364 sys_read = fread ((PTR_T) &orig_sym_hdr,
4365 1,
4366 sizeof (orig_sym_hdr),
4367 obj_in_stream);
4368
4369 if (sys_read < 0)
4370 pfatal_with_name (object_name);
4371
4372 else if (sys_read < sizeof (struct filehdr))
4373 fatal ("Wanted to read %d bytes from %s, system returned %d",
4374 sizeof (struct filehdr),
4375 obj_in_name,
4376 sys_read);
4377
4378
4379 /* Read in each of the sections if they exist in the object file.
4380 We read things in in the order the mips assembler creates the
4381 sections, so in theory no extra seeks are done.
4382
4383 For simplicity sake, round each read up to a page boundary,
4384 we may want to revisit this later.... */
4385
4386 file_offset = orig_file_header.f_symptr + sizeof (struct filehdr);
4387
4388 if (orig_sym_hdr.cbLine > 0) /* line numbers */
4389 orig_linenum = (char *) read_seek ((Size_t)orig_sym_hdr.cbLine,
4390 orig_sym_hdr.cbLineOffset,
4391 "Line numbers");
4392
4393 if (orig_sym_hdr.ipdMax > 0) /* procedure tables */
4394 orig_procs = (PDR *) read_seek ((Size_t)orig_sym_hdr.ipdMax * sizeof (PDR),
4395 orig_sym_hdr.cbPdOffset,
4396 "Procedure tables");
4397
4398 if (orig_sym_hdr.isymMax > 0) /* local symbols */
4399 orig_local_syms = (SYMR *) read_seek ((Size_t)orig_sym_hdr.isymMax * sizeof (SYMR),
4400 orig_sym_hdr.cbSymOffset,
4401 "Local symbols");
4402
4403 if (orig_sym_hdr.iauxMax > 0) /* aux symbols */
4404 orig_aux_syms = (AUXU *) read_seek ((Size_t)orig_sym_hdr.iauxMax * sizeof (AUXU),
4405 orig_sym_hdr.cbAuxOffset,
4406 "Aux. symbols");
4407
4408 if (orig_sym_hdr.issMax > 0) /* local strings */
4409 orig_local_strs = (char *) read_seek ((Size_t)orig_sym_hdr.issMax,
4410 orig_sym_hdr.cbSsOffset,
4411 "Local strings");
4412
4413 if (orig_sym_hdr.issExtMax > 0) /* external strings */
4414 orig_ext_strs = (char *) read_seek ((Size_t)orig_sym_hdr.issExtMax,
4415 orig_sym_hdr.cbSsExtOffset,
4416 "External strings");
4417
4418 if (orig_sym_hdr.ifdMax > 0) /* file tables */
4419 orig_files = (FDR *) read_seek ((Size_t)orig_sym_hdr.ifdMax * sizeof (FDR),
4420 orig_sym_hdr.cbFdOffset,
4421 "File tables");
4422
4423 if (orig_sym_hdr.crfd > 0) /* relative file descriptors */
4424 orig_rfds = (symint_t *) read_seek ((Size_t)orig_sym_hdr.crfd * sizeof (symint_t),
4425 orig_sym_hdr.cbRfdOffset,
4426 "Relative file descriptors");
4427
4428 if (orig_sym_hdr.issExtMax > 0) /* external symbols */
4429 orig_ext_syms = (EXTR *) read_seek ((Size_t)orig_sym_hdr.iextMax * sizeof (EXTR),
4430 orig_sym_hdr.cbExtOffset,
4431 "External symbols");
4432
4433 if (orig_sym_hdr.idnMax > 0) /* dense numbers */
4434 {
4435 orig_dense = (DNR *) read_seek ((Size_t)orig_sym_hdr.idnMax * sizeof (DNR),
4436 orig_sym_hdr.cbDnOffset,
4437 "Dense numbers");
4438
4439 add_bytes (&dense_num, (char *) orig_dense, (Size_t)orig_sym_hdr.idnMax);
4440 }
4441
4442 if (orig_sym_hdr.ioptMax > 0) /* opt symbols */
4443 orig_opt_syms = (OPTR *) read_seek ((Size_t)orig_sym_hdr.ioptMax * sizeof (OPTR),
4444 orig_sym_hdr.cbOptOffset,
4445 "Optimizer symbols");
4446
4447
4448
4449 /* Abort if the symbol table is not last. */
4450 if (max_file_offset != stat_buf.st_size)
4451 fatal ("Symbol table is not last (symbol table ends at %ld, .o ends at %ld",
4452 max_file_offset,
4453 stat_buf.st_size);
4454
4455
4456 /* If the first original file descriptor is a dummy which the assembler
4457 put out, but there are no symbols in it, skip it now. */
4458 if (orig_sym_hdr.ifdMax > 1
4459 && orig_files->csym == 2
4460 && orig_files->caux == 0)
4461 {
4462 char *filename = orig_local_strs + (orig_files->issBase + orig_files->rss);
878fb2ac 4463 char *suffix = rindex (filename, '.');
e506707d
MM
4464
4465 if (suffix != (char *)0 && strcmp (suffix, ".s") == 0)
4466 delete_ifd = 1;
4467 }
4468
4469
6ea68a57
RS
4470 /* Create array to map original file numbers to the new file numbers
4471 (in case there are duplicate filenames, we collapse them into one
4472 file section, the MIPS assembler may or may not collapse them). */
4473
4474 remap_file_number = (int *) alloca (sizeof (int) * orig_sym_hdr.ifdMax);
4475
4476 for (fd = delete_ifd; fd < orig_sym_hdr.ifdMax; fd++)
4477 {
4478 register FDR *fd_ptr = ORIG_FILES (fd);
4479 register char *filename = ORIG_LSTRS (fd_ptr->issBase + fd_ptr->rss);
4480
4481 /* file support itself. */
4482 add_file (filename, filename + strlen (filename));
4483 remap_file_number[fd] = cur_file_ptr->file_index;
4484 }
4485
4486 if (delete_ifd > 0) /* just in case */
4487 remap_file_number[0] = remap_file_number[1];
4488
4489
e506707d
MM
4490 /* Loop, adding each of the external symbols. These must be in
4491 order or otherwise we would have to change the relocation
4492 entries. We don't just call add_bytes, because we need to have
4493 the names put into the external hash table. We set the type to
4494 'void' for now, and parse_def will fill in the correct type if it
6ea68a57
RS
4495 is in the symbol table. We must add the external symbols before
4496 the locals, since the locals do lookups against the externals. */
e506707d
MM
4497
4498 if (debug)
4499 fprintf (stderr, "\tehash\n");
4500
4501 for (es = 0; es < orig_sym_hdr.iextMax; es++)
4502 {
4503 register EXTR *eptr = orig_ext_syms + es;
4504 register char *ename = ORIG_ESTRS (eptr->asym.iss);
6ea68a57 4505 register unsigned ifd = eptr->ifd;
e506707d
MM
4506
4507 (void) add_ext_symbol (ename,
4508 ename + strlen (ename),
4509 (st_t) eptr->asym.st,
4510 (sc_t) eptr->asym.sc,
4511 eptr->asym.value,
4512 (symint_t)((eptr->asym.index == indexNil) ? indexNil : 0),
6ea68a57 4513 (ifd < orig_sym_hdr.ifdMax) ? remap_file_number[ ifd ] : ifd);
e506707d
MM
4514 }
4515
4516
4517 /* For each of the files in the object file, copy the symbols, and such
4518 into the varrays for the new object file. */
4519
4520 for (fd = delete_ifd; fd < orig_sym_hdr.ifdMax; fd++)
4521 {
4522 register FDR *fd_ptr = ORIG_FILES (fd);
4523 register char *filename = ORIG_LSTRS (fd_ptr->issBase + fd_ptr->rss);
4524 register SYMR *sym_start;
4525 register SYMR *sym;
4526 register SYMR *sym_end_p1;
4527 register PDR *proc_start;
4528 register PDR *proc;
4529 register PDR *proc_end_p1;
4530
4531 /* file support itself. */
4532 add_file (filename, filename + strlen (filename));
4533 cur_file_ptr->orig_fdr = fd_ptr;
4534
4535 /* Copy stuff that's just passed through (such as line #'s) */
4536 cur_file_ptr->fdr.adr = fd_ptr->adr;
4537 cur_file_ptr->fdr.ilineBase = fd_ptr->ilineBase;
4538 cur_file_ptr->fdr.cline = fd_ptr->cline;
4539 cur_file_ptr->fdr.rfdBase = fd_ptr->rfdBase;
4540 cur_file_ptr->fdr.crfd = fd_ptr->crfd;
4541 cur_file_ptr->fdr.cbLineOffset = fd_ptr->cbLineOffset;
4542 cur_file_ptr->fdr.cbLine = fd_ptr->cbLine;
4543 cur_file_ptr->fdr.fMerge = fd_ptr->fMerge;
4544 cur_file_ptr->fdr.fReadin = fd_ptr->fReadin;
4545 cur_file_ptr->fdr.glevel = fd_ptr->glevel;
4546
4547 if (debug)
4548 fprintf (stderr, "\thash\tstart, filename %s\n", filename);
4549
4550 /* For each of the static and global symbols defined, add them
4551 to the hash table of original symbols, so we can look up
4552 their values. */
4553
4554 sym_start = ORIG_LSYMS (fd_ptr->isymBase);
4555 sym_end_p1 = sym_start + fd_ptr->csym;
4556 for (sym = sym_start; sym < sym_end_p1; sym++)
4557 {
4558 switch ((st_t) sym->st)
4559 {
4560 default:
4561 break;
4562
4563 case st_Global:
4564 case st_Static:
4565 case st_Label:
4566 case st_Proc:
4567 case st_StaticProc:
4568 {
4569 auto symint_t hash_index;
4570 register char *str = ORIG_LSTRS (fd_ptr->issBase + sym->iss);
4571 register Size_t len = strlen (str);
4572 register shash_t *shash_ptr = hash_string (str,
4573 (Ptrdiff_t)len,
4574 &orig_str_hash[0],
4575 &hash_index);
4576
4577 if (shash_ptr != (shash_t *)0)
4578 error ("internal error, %s is already in original symbol table", str);
4579
4580 else
4581 {
6ea68a57 4582 shash_ptr = allocate_shash ();
e506707d
MM
4583 shash_ptr->next = orig_str_hash[hash_index];
4584 orig_str_hash[hash_index] = shash_ptr;
4585
4586 shash_ptr->len = len;
4587 shash_ptr->index = indexNil;
4588 shash_ptr->string = str;
4589 shash_ptr->sym_ptr = sym;
4590 }
4591 }
6ea68a57
RS
4592 break;
4593
4594 case st_End:
4595 if ((sc_t) sym->sc == sc_Text)
4596 {
4597 register char *str = ORIG_LSTRS (fd_ptr->issBase + sym->iss);
4598
4599 if (*str != '\0')
4600 {
4601 register Size_t len = strlen (str);
4602 register shash_t *shash_ptr = hash_string (str,
4603 (Ptrdiff_t)len,
4604 &orig_str_hash[0],
4605 (symint_t *)0);
4606
4607 if (shash_ptr != (shash_t *)0)
4608 shash_ptr->end_ptr = sym;
4609 }
4610 }
4611 break;
4612
e506707d
MM
4613 }
4614 }
4615
4616 if (debug)
4617 {
4618 fprintf (stderr, "\thash\tdone, filename %s\n", filename);
4619 fprintf (stderr, "\tproc\tstart, filename %s\n", filename);
4620 }
4621
4622 /* Go through each of the procedures in this file, and add the
4623 procedure pointer to the hash entry for the given name. */
4624
4625 proc_start = ORIG_PROCS (fd_ptr->ipdFirst);
4626 proc_end_p1 = proc_start + fd_ptr->cpd;
4627 for (proc = proc_start; proc < proc_end_p1; proc++)
4628 {
4629 register SYMR *proc_sym = ORIG_LSYMS (fd_ptr->isymBase + proc->isym);
4630 register char *str = ORIG_LSTRS (fd_ptr->issBase + proc_sym->iss);
4631 register Size_t len = strlen (str);
4632 register shash_t *shash_ptr = hash_string (str,
4633 (Ptrdiff_t)len,
4634 &orig_str_hash[0],
4635 (symint_t *)0);
4636
4637 if (shash_ptr == (shash_t *)0)
4638 error ("internal error, function %s is not in original symbol table", str);
4639
4640 else
4641 shash_ptr->proc_ptr = proc;
4642 }
4643
4644 if (debug)
4645 fprintf (stderr, "\tproc\tdone, filename %s\n", filename);
4646
4647 }
4648 cur_file_ptr = first_file;
4649
4650
4651 /* Copy all of the object file up to the symbol table. Originally
4652 we were going to use ftruncate, but that doesn't seem to work
4653 on Ultrix 3.1.... */
4654
4655 if (fseek (obj_in_stream, (long)0, SEEK_SET) != 0)
4656 pfatal_with_name (obj_in_name);
4657
4658 if (fseek (object_stream, (long)0, SEEK_SET) != 0)
4659 pfatal_with_name (object_name);
4660
4661 for (remaining = orig_file_header.f_symptr;
4662 remaining > 0;
4663 remaining -= num_write)
4664 {
4665 num_write = (remaining <= sizeof (buffer)) ? remaining : sizeof (buffer);
4666 sys_read = fread ((PTR_T) buffer, 1, num_write, obj_in_stream);
4667 if (sys_read <= 0)
4668 pfatal_with_name (obj_in_name);
4669
4670 else if (sys_read != num_write)
4671 fatal ("Wanted to read %d bytes from %s, system returned %d",
4672 num_write,
4673 obj_in_name,
4674 sys_read);
4675
4676 sys_write = fwrite (buffer, 1, num_write, object_stream);
4677 if (sys_write <= 0)
4678 pfatal_with_name (object_name);
4679
4680 else if (sys_write != num_write)
4681 fatal ("Wrote %d bytes to %s, system returned %d",
4682 num_write,
4683 object_name,
4684 sys_write);
4685 }
4686}
4687
4688\f
4689/* Ye olde main program. */
4690
4691int
4692main (argc, argv)
4693 int argc;
4694 char *argv[];
4695{
4696 int iflag = 0;
878fb2ac 4697 char *p = rindex (argv[0], '/');
e506707d
MM
4698 char *num_end;
4699 int option;
6ea68a57 4700 int i;
e506707d
MM
4701
4702 progname = (p != 0) ? p+1 : argv[0];
4703
4704 (void) signal (SIGSEGV, catch_signal);
4705 (void) signal (SIGBUS, catch_signal);
4706 (void) signal (SIGABRT, catch_signal);
4707
4708#if !defined(__SABER__) && !defined(lint)
4709 if (sizeof (efdr_t) > PAGE_USIZE)
4710 fatal ("Efdr_t has a sizeof %d bytes, when it should be less than %d",
4711 sizeof (efdr_t),
4712 PAGE_USIZE);
4713
4714 if (sizeof (page_t) != PAGE_USIZE)
4715 fatal ("Page_t has a sizeof %d bytes, when it should be %d",
4716 sizeof (page_t),
4717 PAGE_USIZE);
4718
e506707d
MM
4719#endif
4720
6ea68a57
RS
4721 alloc_counts[ alloc_type_none ].alloc_name = "none";
4722 alloc_counts[ alloc_type_scope ].alloc_name = "scope";
4723 alloc_counts[ alloc_type_vlinks ].alloc_name = "vlinks";
4724 alloc_counts[ alloc_type_shash ].alloc_name = "shash";
4725 alloc_counts[ alloc_type_thash ].alloc_name = "thash";
4726 alloc_counts[ alloc_type_tag ].alloc_name = "tag";
4727 alloc_counts[ alloc_type_forward ].alloc_name = "forward";
4728 alloc_counts[ alloc_type_thead ].alloc_name = "thead";
4729 alloc_counts[ alloc_type_varray ].alloc_name = "varray";
4730
e506707d
MM
4731 int_type_info = type_info_init;
4732 int_type_info.basic_type = bt_Int;
4733
4734 void_type_info = type_info_init;
4735 void_type_info.basic_type = bt_Void;
4736
4737 while ((option = getopt (argc, argv, "d:i:I:o:v")) != EOF)
4738 switch (option)
4739 {
4740 default:
4741 had_errors++;
4742 break;
4743
4744 case 'd':
4745 debug = strtol (optarg, &num_end, 0);
4746 if ((unsigned)debug > 4 || num_end == optarg)
4747 had_errors++;
4748
4749 break;
4750
4751 case 'I':
4752 if (rename_output || obj_in_name != (char *)0)
4753 had_errors++;
4754 else
4755 rename_output = 1;
4756
4757 /* fall through to 'i' case. */
4758
4759 case 'i':
4760 if (obj_in_name == (char *)0)
4761 {
4762 obj_in_name = optarg;
4763 iflag++;
4764 }
4765 else
4766 had_errors++;
4767 break;
4768
4769 case 'o':
4770 if (object_name == (char *)0)
4771 object_name = optarg;
4772 else
4773 had_errors++;
4774 break;
4775
4776 case 'v':
4777 version++;
4778 break;
4779 }
4780
4781 if (obj_in_name == (char *)0 && optind <= argc - 2)
4782 obj_in_name = argv[--argc];
4783
4784 if (object_name == (char *)0 && optind <= argc - 2)
4785 object_name = argv[--argc];
4786
4787 /* If there is an output name, but no input name use
4788 the same file for both, deleting the name between
4789 opening it for input and opening it for output. */
4790 if (obj_in_name == (char *)0 && object_name != (char *)0)
4791 {
4792 obj_in_name = object_name;
4793 delete_input = 1;
4794 }
4795
4796 if (object_name == (char *)0 || had_errors || optind != argc - 1)
4797 {
4798 fprintf (stderr, "Calling Sequence:\n");
4799 fprintf (stderr, "\tmips-tfile [-d <num>] [-v] [-i <o-in-file>] -o <o-out-file> <s-file> (or)\n");
4800 fprintf (stderr, "\tmips-tfile [-d <num>] [-v] [-I <o-in-file>] -o <o-out-file> <s-file> (or)\n");
4801 fprintf (stderr, "\tmips-tfile [-d <num>] [-v] <s-file> <o-in-file> <o-out-file>\n");
4802 fprintf (stderr, "\n");
4803 fprintf (stderr, "Debug levels are:\n");
4804 fprintf (stderr, " 1\tGeneral debug + trace functions/blocks.\n");
4805 fprintf (stderr, " 2\tDebug level 1 + trace externals.\n");
4806 fprintf (stderr, " 3\tDebug level 2 + trace all symbols.\n");
4807 fprintf (stderr, " 4\tDebug level 3 + trace memory allocations.\n");
4808 return 1;
4809 }
4810
4811
4812 if (version)
4813 {
e506707d
MM
4814 fprintf (stderr, "mips-tfile version %s", version_string);
4815#ifdef TARGET_VERSION
4816 TARGET_VERSION;
4817#endif
4818 fputc ('\n', stderr);
4819 }
4820
4821 if (obj_in_name == (char *)0)
4822 obj_in_name = object_name;
4823
4824 if (rename_output && rename (object_name, obj_in_name) != 0)
4825 {
4826 char *buffer = (char *) allocate_multiple_pages (4);
4827 int len;
4828 int len2;
4829 int in_fd;
4830 int out_fd;
4831
4832 /* Rename failed, copy input file */
4833 in_fd = open (object_name, O_RDONLY, 0666);
4834 if (in_fd < 0)
4835 pfatal_with_name (object_name);
4836
4837 out_fd = open (obj_in_name, O_WRONLY | O_CREAT | O_TRUNC, 0666);
4838 if (out_fd < 0)
4839 pfatal_with_name (obj_in_name);
4840
4841 while ((len = read (in_fd, buffer, 4*PAGE_SIZE)) > 0)
4842 {
4843 len2 = write (out_fd, buffer, len);
4844 if (len2 < 0)
4845 pfatal_with_name (object_name);
4846
4847 if (len != len2)
4848 fatal ("wrote %d bytes to %s, expected to write %d", len2, obj_in_name, len);
4849 }
4850
6ea68a57 4851 free_multiple_pages ((page_t *)buffer, 4);
e506707d
MM
4852
4853 if (len < 0)
4854 pfatal_with_name (object_name);
4855
4856 if (close (in_fd) < 0)
4857 pfatal_with_name (object_name);
4858
4859 if (close (out_fd) < 0)
4860 pfatal_with_name (obj_in_name);
4861 }
4862
4863 /* Must open input before output, since the output may be the same file, and
4864 we need to get the input handle before truncating it. */
4865 obj_in_stream = fopen (obj_in_name, "r");
4866 if (obj_in_stream == (FILE *)0)
4867 pfatal_with_name (obj_in_name);
4868
4869 if (delete_input && unlink (obj_in_name) != 0)
4870 pfatal_with_name (obj_in_name);
4871
4872 object_stream = fopen (object_name, "w");
4873 if (object_stream == (FILE *)0)
4874 pfatal_with_name (object_name);
4875
4876 if (strcmp (argv[optind], "-") != 0)
4877 {
4878 input_name = argv[optind];
4879 if (freopen (argv[optind], "r", stdin) != stdin)
4880 pfatal_with_name (argv[optind]);
4881 }
4882
e506707d
MM
4883 copy_object (); /* scan & copy object file */
4884 parse_input (); /* scan all of input */
4885
4886 update_headers (); /* write out tfile */
4887 write_object ();
4888
6ea68a57
RS
4889 if (debug)
4890 {
4891 fprintf (stderr, "\n\tAllocation summary:\n\n");
4892 for (i = (int)alloc_type_none; i < (int)alloc_type_last; i++)
4893 if (alloc_counts[i].total_alloc)
4894 {
4895 fprintf (stderr,
4896 "\t%s\t%5d allocation(s), %5d free(s), %2d page(s)\n",
4897 alloc_counts[i].alloc_name,
4898 alloc_counts[i].total_alloc,
4899 alloc_counts[i].total_free,
4900 alloc_counts[i].total_pages);
4901 }
4902 }
4903
e506707d
MM
4904 return (had_errors) ? 1 : 0;
4905}
4906
4907\f
4908/* Catch a signal and exit without dumping core. */
4909
4910STATIC void
4911catch_signal (signum)
4912 int signum;
4913{
e506707d
MM
4914 (void) signal (signum, SIG_DFL); /* just in case... */
4915 fatal (sys_siglist[signum]);
4916}
4917
4918/* Print a fatal error message. NAME is the text.
4919 Also include a system error message based on `errno'. */
4920
4921void
4922pfatal_with_name (msg)
4923 char *msg;
4924{
4925 int save_errno = errno; /* just in case.... */
4926 if (line_number > 0)
4927 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number);
4928 else
4929 fprintf (stderr, "%s:", progname);
4930
4931 errno = save_errno;
4932 if (errno == 0)
4933 fprintf (stderr, "[errno = 0] %s\n", msg);
4934 else
4935 perror (msg);
4936
4937 exit (1);
4938}
4939
4940\f
4941/* Procedure to abort with an out of bounds error message. It has
4942 type int, so it can be used with an ?: expression within the
4943 ORIG_xxx macros, but the function never returns. */
4944
4945static int
4946out_of_bounds (index, max, str, prog_line)
4947 symint_t index; /* index that is out of bounds */
4948 symint_t max; /* maximum index */
4949 const char *str; /* string to print out */
4950 int prog_line; /* line number within mips-tfile.c */
4951{
4952 if (index < max) /* just in case */
4953 return 0;
4954
4955 fprintf (stderr, "%s, %s:%ld index %u is out of bounds for %s, max is %u, mips-tfile.c line# %d\n",
4956 progname, input_name, line_number, index, str, max, prog_line);
4957
4958 exit (1);
4959 return 0; /* turn off warning messages */
4960}
4961
4962\f
4963/* Allocate a cluster of pages. USE_MALLOC says that malloc does not
4964 like sbrk's behind it's back (or sbrk isn't available). If we use
4965 sbrk, we assume it gives us zeroed pages. */
4966
4967#ifndef MALLOC_CHECK
4968#ifdef USE_MALLOC
4969
4970STATIC page_t *
4971allocate_cluster (npages)
4972 Size_t npages;
4973{
4974 register page_t *value = (page_t *) calloc (npages, PAGE_USIZE);
4975
4976 if (value == 0)
4977 fatal ("Virtual memory exhausted.");
4978
4979 if (debug > 3)
4980 fprintf (stderr, "\talloc\tnpages = %d, value = 0x%.8x\n", npages, value);
4981
4982 return value;
4983}
4984
4985#else /* USE_MALLOC */
4986
4987STATIC page_t *
4988allocate_cluster (npages)
4989 Size_t npages;
4990{
4991 register page_t *ptr = (page_t *) sbrk (0); /* current sbreak */
4992 unsigned long offset = ((unsigned long) ptr) & (PAGE_SIZE - 1);
4993
4994 if (offset != 0) /* align to a page boundary */
4995 {
4996 if (sbrk (PAGE_USIZE - offset) == (char *)-1)
4997 pfatal_with_name ("allocate_cluster");
4998
4999 ptr = (page_t *) (((char *)ptr) + PAGE_SIZE - offset);
5000 }
5001
5002 if (sbrk (npages * PAGE_USIZE) == (char *)-1)
5003 pfatal_with_name ("allocate_cluster");
5004
5005 if (debug > 3)
5006 fprintf (stderr, "\talloc\tnpages = %d, value = 0x%.8x\n", npages, ptr);
5007
5008 return ptr;
5009}
5010
5011#endif /* USE_MALLOC */
5012
5013
5014static page_t *cluster_ptr = NULL;
5015static unsigned pages_left = 0;
5016
5017#endif /* MALLOC_CHECK */
5018
5019
5020/* Allocate some pages (which is initialized to 0). */
5021
5022STATIC page_t *
5023allocate_multiple_pages (npages)
5024 Size_t npages;
5025{
5026#ifndef MALLOC_CHECK
5027 if (pages_left == 0 && npages < MAX_CLUSTER_PAGES)
5028 {
5029 pages_left = MAX_CLUSTER_PAGES;
5030 cluster_ptr = allocate_cluster (MAX_CLUSTER_PAGES);
5031 }
5032
5033 if (npages <= pages_left)
5034 {
5035 page_t *ptr = cluster_ptr;
5036 cluster_ptr += npages;
5037 pages_left -= npages;
5038 return ptr;
5039 }
5040
5041 return allocate_cluster (npages);
5042
5043#else /* MALLOC_CHECK */
5044 return (page_t *) xcalloc (npages, PAGE_SIZE);
5045
5046#endif /* MALLOC_CHECK */
5047}
5048
5049
5050/* Release some pages. */
5051
5052STATIC void
5053free_multiple_pages (page_ptr, npages)
5054 page_t *page_ptr;
5055 Size_t npages;
5056{
5057#ifndef MALLOC_CHECK
5058 if (pages_left == 0)
5059 {
5060 cluster_ptr = page_ptr;
5061 pages_left = npages;
5062 }
5063
5064 else if ((page_ptr + npages) == cluster_ptr)
5065 {
5066 cluster_ptr -= npages;
5067 pages_left += npages;
5068 }
5069
5070 /* otherwise the page is not freed. If more than call is
5071 done, we probably should worry about it, but at present,
5072 the free pages is done right after an allocate. */
5073
5074#else /* MALLOC_CHECK */
5075 free ((char *) page_ptr);
5076
5077#endif /* MALLOC_CHECK */
5078}
5079
5080
5081/* Allocate one page (which is initialized to 0). */
5082
5083STATIC page_t *
5084allocate_page __proto((void))
5085{
5086#ifndef MALLOC_CHECK
5087 if (pages_left == 0)
5088 {
5089 pages_left = MAX_CLUSTER_PAGES;
5090 cluster_ptr = allocate_cluster (MAX_CLUSTER_PAGES);
5091 }
5092
5093 pages_left--;
5094 return cluster_ptr++;
5095
5096#else /* MALLOC_CHECK */
5097 return (page_t *) xcalloc (1, PAGE_SIZE);
5098
5099#endif /* MALLOC_CHECK */
5100}
5101
5102\f
6ea68a57
RS
5103/* Allocate scoping information. */
5104
5105STATIC scope_t *
5106allocate_scope __proto((void))
5107{
5108 register scope_t *ptr;
5109 static scope_t initial_scope;
5110
5111#ifndef MALLOC_CHECK
5112 ptr = alloc_counts[ (int)alloc_type_scope ].free_list.f_scope;
5113 if (ptr != (scope_t *)0)
5114 alloc_counts[ (int)alloc_type_scope ].free_list.f_scope = ptr->free;
5115
5116 else
5117 {
5118 register int unallocated = alloc_counts[ (int)alloc_type_scope ].unallocated;
5119 register page_t *cur_page = alloc_counts[ (int)alloc_type_scope ].cur_page;
5120
5121 if (unallocated == 0)
5122 {
5123 unallocated = PAGE_SIZE / sizeof (scope_t);
5124 alloc_counts[ (int)alloc_type_scope ].cur_page = cur_page = allocate_page ();
5125 alloc_counts[ (int)alloc_type_scope ].total_pages++;
5126 }
5127
5128 ptr = &cur_page->scope[ --unallocated ];
5129 alloc_counts[ (int)alloc_type_scope ].unallocated = unallocated;
5130 }
5131
5132#else
5133 ptr = (scope_t *) xmalloc (sizeof (scope_t));
5134
5135#endif
5136
5137 alloc_counts[ (int)alloc_type_scope ].total_alloc++;
5138 *ptr = initial_scope;
5139 return ptr;
5140}
5141
5142/* Free scoping information. */
5143
5144STATIC void
5145free_scope (ptr)
5146 scope_t *ptr;
5147{
5148 alloc_counts[ (int)alloc_type_scope ].total_free++;
5149
5150#ifndef MALLOC_CHECK
5151 ptr->free = alloc_counts[ (int)alloc_type_scope ].free_list.f_scope;
5152 alloc_counts[ (int)alloc_type_scope ].free_list.f_scope = ptr;
5153
5154#else
5155 xfree ((PTR_T) ptr);
5156#endif
5157
5158}
5159
5160\f
5161/* Allocate links for pages in a virtual array. */
5162
5163STATIC vlinks_t *
5164allocate_vlinks __proto((void))
5165{
5166 register vlinks_t *ptr;
5167 static vlinks_t initial_vlinks;
5168
5169#ifndef MALLOC_CHECK
5170 register int unallocated = alloc_counts[ (int)alloc_type_vlinks ].unallocated;
5171 register page_t *cur_page = alloc_counts[ (int)alloc_type_vlinks ].cur_page;
5172
5173 if (unallocated == 0)
5174 {
5175 unallocated = PAGE_SIZE / sizeof (vlinks_t);
5176 alloc_counts[ (int)alloc_type_vlinks ].cur_page = cur_page = allocate_page ();
5177 alloc_counts[ (int)alloc_type_vlinks ].total_pages++;
5178 }
5179
5180 ptr = &cur_page->vlinks[ --unallocated ];
5181 alloc_counts[ (int)alloc_type_vlinks ].unallocated = unallocated;
5182
5183#else
5184 ptr = (vlinks_t *) xmalloc (sizeof (vlinks_t));
5185
5186#endif
5187
5188 alloc_counts[ (int)alloc_type_vlinks ].total_alloc++;
5189 *ptr = initial_vlinks;
5190 return ptr;
5191}
5192
5193\f
5194/* Allocate string hash buckets. */
5195
5196STATIC shash_t *
5197allocate_shash __proto((void))
5198{
5199 register shash_t *ptr;
5200 static shash_t initial_shash;
5201
5202#ifndef MALLOC_CHECK
5203 register int unallocated = alloc_counts[ (int)alloc_type_shash ].unallocated;
5204 register page_t *cur_page = alloc_counts[ (int)alloc_type_shash ].cur_page;
5205
5206 if (unallocated == 0)
5207 {
5208 unallocated = PAGE_SIZE / sizeof (shash_t);
5209 alloc_counts[ (int)alloc_type_shash ].cur_page = cur_page = allocate_page ();
5210 alloc_counts[ (int)alloc_type_shash ].total_pages++;
5211 }
5212
5213 ptr = &cur_page->shash[ --unallocated ];
5214 alloc_counts[ (int)alloc_type_shash ].unallocated = unallocated;
5215
5216#else
5217 ptr = (shash_t *) xmalloc (sizeof (shash_t));
5218
5219#endif
5220
5221 alloc_counts[ (int)alloc_type_shash ].total_alloc++;
5222 *ptr = initial_shash;
5223 return ptr;
5224}
5225
5226\f
5227/* Allocate type hash buckets. */
5228
5229STATIC thash_t *
5230allocate_thash __proto((void))
5231{
5232 register thash_t *ptr;
5233 static thash_t initial_thash;
5234
5235#ifndef MALLOC_CHECK
5236 register int unallocated = alloc_counts[ (int)alloc_type_thash ].unallocated;
5237 register page_t *cur_page = alloc_counts[ (int)alloc_type_thash ].cur_page;
5238
5239 if (unallocated == 0)
5240 {
5241 unallocated = PAGE_SIZE / sizeof (thash_t);
5242 alloc_counts[ (int)alloc_type_thash ].cur_page = cur_page = allocate_page ();
5243 alloc_counts[ (int)alloc_type_thash ].total_pages++;
5244 }
5245
5246 ptr = &cur_page->thash[ --unallocated ];
5247 alloc_counts[ (int)alloc_type_thash ].unallocated = unallocated;
5248
5249#else
5250 ptr = (thash_t *) xmalloc (sizeof (thash_t));
5251
5252#endif
5253
5254 alloc_counts[ (int)alloc_type_thash ].total_alloc++;
5255 *ptr = initial_thash;
5256 return ptr;
5257}
5258
5259\f
5260/* Allocate structure, union, or enum tag information. */
5261
5262STATIC tag_t *
5263allocate_tag __proto((void))
5264{
5265 register tag_t *ptr;
5266 static tag_t initial_tag;
e506707d
MM
5267
5268#ifndef MALLOC_CHECK
6ea68a57
RS
5269 ptr = alloc_counts[ (int)alloc_type_tag ].free_list.f_tag;
5270 if (ptr != (tag_t *)0)
5271 alloc_counts[ (int)alloc_type_tag ].free_list.f_tag = ptr->free;
5272
5273 else
5274 {
5275 register int unallocated = alloc_counts[ (int)alloc_type_tag ].unallocated;
5276 register page_t *cur_page = alloc_counts[ (int)alloc_type_tag ].cur_page;
5277
5278 if (unallocated == 0)
5279 {
5280 unallocated = PAGE_SIZE / sizeof (tag_t);
5281 alloc_counts[ (int)alloc_type_tag ].cur_page = cur_page = allocate_page ();
5282 alloc_counts[ (int)alloc_type_tag ].total_pages++;
5283 }
5284
5285 ptr = &cur_page->tag[ --unallocated ];
5286 alloc_counts[ (int)alloc_type_tag ].unallocated = unallocated;
5287 }
5288
5289#else
5290 ptr = (tag_t *) xmalloc (sizeof (tag_t));
5291
5292#endif
5293
5294 alloc_counts[ (int)alloc_type_tag ].total_alloc++;
5295 *ptr = initial_tag;
5296 return ptr;
5297}
5298
5299/* Free scoping information. */
5300
5301STATIC void
5302free_tag (ptr)
5303 tag_t *ptr;
5304{
5305 alloc_counts[ (int)alloc_type_tag ].total_free++;
5306
5307#ifndef MALLOC_CHECK
5308 ptr->free = alloc_counts[ (int)alloc_type_tag ].free_list.f_tag;
5309 alloc_counts[ (int)alloc_type_tag ].free_list.f_tag = ptr;
5310
5311#else
5312 xfree ((PTR_T) ptr);
e506707d
MM
5313#endif
5314
6ea68a57
RS
5315}
5316
5317\f
5318/* Allocate forward reference to a yet unknown tag. */
5319
5320STATIC forward_t *
5321allocate_forward __proto((void))
e506707d 5322{
6ea68a57
RS
5323 register forward_t *ptr;
5324 static forward_t initial_forward;
5325
e506707d 5326#ifndef MALLOC_CHECK
6ea68a57
RS
5327 ptr = alloc_counts[ (int)alloc_type_forward ].free_list.f_forward;
5328 if (ptr != (forward_t *)0)
5329 alloc_counts[ (int)alloc_type_forward ].free_list.f_forward = ptr->free;
5330
e506707d
MM
5331 else
5332 {
6ea68a57
RS
5333 register int unallocated = alloc_counts[ (int)alloc_type_forward ].unallocated;
5334 register page_t *cur_page = alloc_counts[ (int)alloc_type_forward ].cur_page;
e506707d 5335
6ea68a57 5336 if (unallocated == 0)
e506707d 5337 {
6ea68a57
RS
5338 unallocated = PAGE_SIZE / sizeof (forward_t);
5339 alloc_counts[ (int)alloc_type_forward ].cur_page = cur_page = allocate_page ();
5340 alloc_counts[ (int)alloc_type_forward ].total_pages++;
e506707d 5341 }
6ea68a57
RS
5342
5343 ptr = &cur_page->forward[ --unallocated ];
5344 alloc_counts[ (int)alloc_type_forward ].unallocated = unallocated;
e506707d
MM
5345 }
5346
6ea68a57
RS
5347#else
5348 ptr = (forward_t *) xmalloc (sizeof (forward_t));
5349
5350#endif
5351
5352 alloc_counts[ (int)alloc_type_forward ].total_alloc++;
5353 *ptr = initial_forward;
e506707d 5354 return ptr;
6ea68a57 5355}
e506707d 5356
6ea68a57 5357/* Free scoping information. */
e506707d 5358
6ea68a57
RS
5359STATIC void
5360free_forward (ptr)
5361 forward_t *ptr;
5362{
5363 alloc_counts[ (int)alloc_type_forward ].total_free++;
5364
5365#ifndef MALLOC_CHECK
5366 ptr->free = alloc_counts[ (int)alloc_type_forward ].free_list.f_forward;
5367 alloc_counts[ (int)alloc_type_forward ].free_list.f_forward = ptr;
5368
5369#else
5370 xfree ((PTR_T) ptr);
5371#endif
5372
5373}
5374
5375\f
5376/* Allocate head of type hash list. */
5377
5378STATIC thead_t *
5379allocate_thead __proto((void))
5380{
5381 register thead_t *ptr;
5382 static thead_t initial_thead;
5383
5384#ifndef MALLOC_CHECK
5385 ptr = alloc_counts[ (int)alloc_type_thead ].free_list.f_thead;
5386 if (ptr != (thead_t *)0)
5387 alloc_counts[ (int)alloc_type_thead ].free_list.f_thead = ptr->free;
5388
5389 else
5390 {
5391 register int unallocated = alloc_counts[ (int)alloc_type_thead ].unallocated;
5392 register page_t *cur_page = alloc_counts[ (int)alloc_type_thead ].cur_page;
5393
5394 if (unallocated == 0)
5395 {
5396 unallocated = PAGE_SIZE / sizeof (thead_t);
5397 alloc_counts[ (int)alloc_type_thead ].cur_page = cur_page = allocate_page ();
5398 alloc_counts[ (int)alloc_type_thead ].total_pages++;
5399 }
5400
5401 ptr = &cur_page->thead[ --unallocated ];
5402 alloc_counts[ (int)alloc_type_thead ].unallocated = unallocated;
5403 }
5404
5405#else
5406 ptr = (thead_t *) xmalloc (sizeof (thead_t));
5407
5408#endif
5409
5410 alloc_counts[ (int)alloc_type_thead ].total_alloc++;
5411 *ptr = initial_thead;
5412 return ptr;
e506707d
MM
5413}
5414
6ea68a57
RS
5415/* Free scoping information. */
5416
e506707d 5417STATIC void
6ea68a57
RS
5418free_thead (ptr)
5419 thead_t *ptr;
e506707d 5420{
6ea68a57
RS
5421 alloc_counts[ (int)alloc_type_thead ].total_free++;
5422
e506707d 5423#ifndef MALLOC_CHECK
6ea68a57
RS
5424 ptr->free = (thead_t *) alloc_counts[ (int)alloc_type_thead ].free_list.f_thead;
5425 alloc_counts[ (int)alloc_type_thead ].free_list.f_thead = ptr;
e506707d 5426
6ea68a57
RS
5427#else
5428 xfree ((PTR_T) ptr);
5429#endif
e506707d 5430
e506707d
MM
5431}
5432
6ea68a57 5433#endif /* MIPS_DEBUGGING_INFO *?
e506707d
MM
5434
5435\f
5436/* Output an error message and exit */
5437
5438/*VARARGS*/
5439void
5440fatal (va_alist)
5441 va_dcl
5442{
5443 va_list ap;
5444 char *format;
5445
5446 if (line_number > 0)
5447 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number);
5448 else
5449 fprintf (stderr, "%s:", progname);
5450
5451 va_start(ap);
5452 format = va_arg (ap, char *);
5453 vfprintf (stderr, format, ap);
5454 va_end (ap);
5455 fprintf (stderr, "\n");
5456 if (line_number > 0)
5457 fprintf (stderr, "line:\t%s\n", cur_line_start);
5458
5459 saber_stop ();
5460 exit (1);
5461}
5462
5463/*VARARGS*/
5464void
5465error (va_alist)
5466 va_dcl
5467{
5468 va_list ap;
5469 char *format;
5470
5471 if (line_number > 0)
5472 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number);
5473 else
5474 fprintf (stderr, "%s:", progname);
5475
5476 va_start(ap);
5477 format = va_arg (ap, char *);
5478 vfprintf (stderr, format, ap);
5479 fprintf (stderr, "\n");
5480 if (line_number > 0)
5481 fprintf (stderr, "line:\t%s\n", cur_line_start);
5482
5483 had_errors++;
5484 va_end (ap);
5485
5486 saber_stop ();
5487}
5488
5489/* More 'friendly' abort that prints the line and file.
5490 config.h can #define abort fancy_abort if you like that sort of thing. */
5491
5492void
5493fancy_abort ()
5494{
5495 fatal ("Internal abort.");
5496}
5497\f
5498
5499/* When `malloc.c' is compiled with `rcheck' defined,
5500 it calls this function to report clobberage. */
5501
5502void
5503botch (s)
5504 const char *s;
5505{
5506 fatal (s);
5507}
5508
5509/* Same as `malloc' but report error if no memory available. */
5510
5511PTR_T
5512xmalloc (size)
5513 Size_t size;
5514{
5515 register PTR_T value = malloc (size);
5516 if (value == 0)
5517 fatal ("Virtual memory exhausted.");
5518
5519 if (debug > 3)
5520 fprintf (stderr, "\tmalloc\tptr = 0x%.8x, size = %10u\n", value, size);
5521
5522 return value;
5523}
5524
5525/* Same as `calloc' but report error if no memory available. */
5526
5527PTR_T
5528xcalloc (size1, size2)
5529 Size_t size1, size2;
5530{
5531 register PTR_T value = calloc (size1, size2);
5532 if (value == 0)
5533 fatal ("Virtual memory exhausted.");
5534
5535 if (debug > 3)
5536 fprintf (stderr, "\tcalloc\tptr = 0x%.8x, size1 = %10u, size2 = %10u [%u]\n",
5537 value, size1, size2, size1+size2);
5538
5539 return value;
5540}
5541
5542/* Same as `realloc' but report error if no memory available. */
5543
5544PTR_T
5545xrealloc (ptr, size)
5546 PTR_T ptr;
5547 Size_t size;
5548{
5549 register PTR_T result = realloc (ptr, size);
5550 if (!result)
5551 fatal ("Virtual memory exhausted.");
5552
5553 if (debug > 3)
5554 fprintf (stderr, "\trealloc\tptr = 0x%.8x, size = %10u, orig = 0x%.8x\n",
5555 result, size, ptr);
5556
5557 return result;
5558}
5559
5560void
5561xfree (ptr)
5562 PTR_T ptr;
5563{
5564 if (debug > 3)
5565 fprintf (stderr, "\tfree\tptr = 0x%.8x\n", ptr);
5566
5567 free (ptr);
5568}
This page took 0.565144 seconds and 5 git commands to generate.