]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/srconv.c
Sync libiberty sources with gcc mainline.
[thirdparty/binutils-gdb.git] / binutils / srconv.c
CommitLineData
252b5132 1/* srconv.c -- Sysroff conversion program
6f2750fe 2 Copyright (C) 1994-2016 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
32866df7 8 the Free Software Foundation; either version 3 of the License, or
252b5132
RH
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
b43b5d5f
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132
RH
20
21/* Written by Steve Chamberlain (sac@cygnus.com)
22
23 This program can be used to convert a coff object file
24 into a Hitachi OM/LM (Sysroff) format.
25
26 All debugging information is preserved */
27
3db64b00 28#include "sysdep.h"
e9792343 29#include "bfd.h"
252b5132
RH
30#include "bucomm.h"
31#include "sysroff.h"
32#include "coffgrok.h"
e9792343 33#include "libiberty.h"
8b6efd89 34#include "filenames.h"
e9792343 35#include "getopt.h"
252b5132
RH
36
37#include "coff/internal.h"
38#include "../bfd/libcoff.h"
39
252b5132
RH
40/*#define FOOP1 1 */
41
42static int addrsize;
43static char *toolname;
44static char **rnames;
45
c32144ff 46static void walk_tree_symbol
2da42df6 47 (struct coff_sfile *, struct coff_section *, struct coff_symbol *, int);
c32144ff 48static void walk_tree_scope
2da42df6 49 (struct coff_section *, struct coff_sfile *, struct coff_scope *, int, int);
2da42df6 50static int find_base (struct coff_sfile *, struct coff_section *);
2da42df6 51static void wr_globals (struct coff_ofile *, struct coff_sfile *, int);
252b5132
RH
52
53static FILE *file;
54static bfd *abfd;
55static int debug = 0;
56static int quick = 0;
57static int noprescan = 0;
58static struct coff_ofile *tree;
9f66665a 59/* Obsolete ??
252b5132
RH
60 static int absolute_p;
61 */
62
63static int segmented_p;
64static int code;
65
66static int ids1[20000];
67static int ids2[20000];
68
69static int base1 = 0x18;
70static int base2 = 0x2018;
71
72static int
2da42df6 73get_member_id (int x)
252b5132
RH
74{
75 if (ids2[x])
8b53311e
NC
76 return ids2[x];
77
252b5132
RH
78 ids2[x] = base2++;
79 return ids2[x];
80}
81
82static int
2da42df6 83get_ordinary_id (int x)
252b5132
RH
84{
85 if (ids1[x])
8b53311e
NC
86 return ids1[x];
87
252b5132
RH
88 ids1[x] = base1++;
89 return ids1[x];
90}
91static char *
2da42df6 92section_translate (char *n)
252b5132
RH
93{
94 if (strcmp (n, ".text") == 0)
95 return "P";
96 if (strcmp (n, ".data") == 0)
97 return "D";
98 if (strcmp (n, ".bss") == 0)
99 return "B";
100 return n;
101}
102
252b5132
RH
103#define DATE "940201073000"; /* Just a time on my birthday */
104
0e51e555
NC
105static char *
106strip_suffix (const char *name)
252b5132
RH
107{
108 int i;
109 char *res;
8b53311e 110
252b5132
RH
111 for (i = 0; name[i] != 0 && name[i] != '.'; i++)
112 ;
113 res = (char *) xmalloc (i + 1);
114 memcpy (res, name, i);
115 res[i] = 0;
116 return res;
117}
118
252b5132
RH
119/* IT LEN stuff CS */
120static void
91d6fa6a 121checksum (FILE *ffile, unsigned char *ptr, int size, int ccode)
252b5132
RH
122{
123 int j;
124 int last;
125 int sum = 0;
126 int bytes = size / 8;
8b53311e 127
91d6fa6a 128 last = !(ccode & 0xff00);
252b5132 129 if (size & 0x7)
c88f5b8e
NC
130 fatal (_("Checksum failure"));
131
91d6fa6a 132 ptr[0] = ccode | (last ? 0x80 : 0);
252b5132
RH
133 ptr[1] = bytes + 1;
134
135 for (j = 0; j < bytes; j++)
8b53311e
NC
136 sum += ptr[j];
137
138 /* Glue on a checksum too. */
252b5132 139 ptr[bytes] = ~sum;
91d6fa6a 140 if (fwrite (ptr, bytes + 1, 1, ffile) != 1)
615f3149 141 /* FIXME: Return error status. */
c88f5b8e 142 fatal (_("Failed to write checksum"));
252b5132
RH
143}
144
145
252b5132 146static void
91d6fa6a 147writeINT (int n, unsigned char *ptr, int *idx, int size, FILE *ffile)
252b5132
RH
148{
149 int byte = *idx / 8;
150
151 if (size == -2)
152 size = addrsize;
153 else if (size == -1)
154 size = 0;
155
156 if (byte > 240)
157 {
8b53311e 158 /* Lets write out that record and do another one. */
91d6fa6a 159 checksum (ffile, ptr, *idx, code | 0x1000);
252b5132
RH
160 *idx = 16;
161 byte = *idx / 8;
162 }
8b53311e 163
252b5132
RH
164 switch (size)
165 {
166 case 0:
167 break;
168 case 1:
169 ptr[byte] = n;
170 break;
171 case 2:
172 ptr[byte + 0] = n >> 8;
173 ptr[byte + 1] = n;
174 break;
175 case 4:
176 ptr[byte + 0] = n >> 24;
177 ptr[byte + 1] = n >> 16;
178 ptr[byte + 2] = n >> 8;
179 ptr[byte + 3] = n >> 0;
180 break;
181 default:
c88f5b8e 182 fatal (_("Unsupported integer write size: %d"), size);
252b5132
RH
183 }
184 *idx += size * 8;
185}
186
252b5132 187static void
dc3c06c2 188writeBITS (int val, unsigned char *ptr, int *idx, int size)
252b5132
RH
189{
190 int byte = *idx / 8;
191 int bit = *idx % 8;
192 int old;
8b53311e 193
252b5132
RH
194 *idx += size;
195
196 old = ptr[byte];
8b53311e 197 /* Turn off all about to change bits. */
252b5132 198 old &= ~((~0 >> (8 - bit - size)) & ((1 << size) - 1));
8b53311e 199 /* Turn on the bits we want. */
252b5132
RH
200 old |= (val & ((1 << size) - 1)) << (8 - bit - size);
201 ptr[byte] = old;
202}
203
204static void
dc3c06c2 205writeBARRAY (barray data, unsigned char *ptr, int *idx,
91d6fa6a 206 int size ATTRIBUTE_UNUSED, FILE *ffile)
252b5132
RH
207{
208 int i;
8b53311e 209
91d6fa6a 210 writeINT (data.len, ptr, idx, 1, ffile);
252b5132 211 for (i = 0; i < data.len; i++)
91d6fa6a 212 writeINT (data.data[i], ptr, idx, 1, ffile);
252b5132
RH
213}
214
252b5132 215static void
91d6fa6a 216writeCHARS (char *string, unsigned char *ptr, int *idx, int size, FILE *ffile)
252b5132
RH
217{
218 int i = *idx / 8;
219
220 if (i > 240)
221 {
8b53311e 222 /* Lets write out that record and do another one. */
91d6fa6a 223 checksum (ffile, ptr, *idx, code | 0x1000);
252b5132
RH
224 *idx = 16;
225 i = *idx / 8;
226 }
227
228 if (size == 0)
229 {
8b53311e 230 /* Variable length string. */
252b5132
RH
231 size = strlen (string);
232 ptr[i++] = size;
233 }
234
8b53311e 235 /* BUG WAITING TO HAPPEN. */
252b5132
RH
236 memcpy (ptr + i, string, size);
237 i += size;
238 *idx = i * 8;
239}
240
241#define SYSROFF_SWAP_OUT
242#include "sysroff.c"
243
252b5132
RH
244static char *rname_sh[] =
245{
246 "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15"
247};
248
249static char *rname_h8300[] =
250{
251 "ER0", "ER1", "ER2", "ER3", "ER4", "ER5", "ER6", "ER7", "PC", "CCR"
252};
253
254static void
2da42df6 255wr_tr (void)
252b5132 256{
8b53311e 257 /* The TR block is not normal - it doesn't have any contents. */
252b5132 258
8b53311e
NC
259 static char b[] =
260 {
261 0xff, /* IT */
262 0x03, /* RL */
263 0xfd, /* CS */
264 };
615f3149
AM
265
266 if (fwrite (b, sizeof (b), 1, file) != 1)
267 /* FIXME: Return error status. */
c88f5b8e 268 fatal (_("Failed to write TR block"));
252b5132
RH
269}
270
271static void
2da42df6
AJ
272wr_un (struct coff_ofile *ptr, struct coff_sfile *sfile, int first,
273 int nsecs ATTRIBUTE_UNUSED)
252b5132
RH
274{
275 struct IT_un un;
252b5132
RH
276 struct coff_symbol *s;
277
278 un.spare1 = 0;
279
280 if (bfd_get_file_flags (abfd) & EXEC_P)
281 un.format = FORMAT_LM;
282 else
283 un.format = FORMAT_OM;
284 un.spare1 = 0;
285
84e43642
BE
286 /* Don't count the abs section. */
287 un.nsections = ptr->nsections - 1;
252b5132
RH
288
289 un.nextdefs = 0;
290 un.nextrefs = 0;
8b53311e 291 /* Count all the undefined and defined variables with global scope. */
252b5132
RH
292
293 if (first)
294 {
295 for (s = ptr->symbol_list_head; s; s = s->next_in_ofile_list)
296 {
297 if (s->visible->type == coff_vis_ext_def
298 || s->visible->type == coff_vis_common)
299 un.nextdefs++;
300
301 if (s->visible->type == coff_vis_ext_ref)
302 un.nextrefs++;
303 }
304 }
305 un.tool = toolname;
306 un.tcd = DATE;
307 un.linker = "L_GX00";
308 un.lcd = DATE;
309 un.name = sfile->name;
310 sysroff_swap_un_out (file, &un);
311}
312
252b5132 313static void
2da42df6 314wr_hd (struct coff_ofile *p)
252b5132
RH
315{
316 struct IT_hd hd;
317
318 hd.spare1 = 0;
319 if (bfd_get_file_flags (abfd) & EXEC_P)
8b53311e 320 hd.mt = MTYPE_ABS_LM;
252b5132 321 else
8b53311e
NC
322 hd.mt = MTYPE_OMS_OR_LMS;
323
252b5132
RH
324 hd.cd = DATE;
325
326 hd.nu = p->nsources; /* Always one unit */
327 hd.code = 0; /* Always ASCII */
328 hd.ver = "0200"; /* Version 2.00 */
8b53311e 329
252b5132
RH
330 switch (bfd_get_arch (abfd))
331 {
332 case bfd_arch_h8300:
333 hd.au = 8;
334 hd.si = 0;
335 hd.spcsz = 32;
336 hd.segsz = 0;
337 hd.segsh = 0;
338 switch (bfd_get_mach (abfd))
339 {
340 case bfd_mach_h8300:
341 hd.cpu = "H8300";
342 hd.afl = 2;
343 addrsize = 2;
344 toolname = "C_H8/300";
345 break;
346 case bfd_mach_h8300h:
347 hd.cpu = "H8300H";
348 hd.afl = 4;
349 addrsize = 4;
350 toolname = "C_H8/300H";
351 break;
352 case bfd_mach_h8300s:
353 hd.cpu = "H8300S";
354 hd.afl = 4;
355 addrsize = 4;
356 toolname = "C_H8/300S";
357 break;
358 default:
c88f5b8e
NC
359 fatal (_("Unrecognized H8300 sub-architecture: %ld"),
360 bfd_get_mach (abfd));
252b5132
RH
361 }
362 rnames = rname_h8300;
363 break;
364 case bfd_arch_sh:
365 hd.au = 8;
366 hd.si = 0;
367 hd.afl = 4;
368 hd.spcsz = 32;
369 hd.segsz = 0;
370 hd.segsh = 0;
371 hd.cpu = "SH";
372 addrsize = 4;
373 toolname = "C_SH";
374 rnames = rname_sh;
375 break;
376 default:
c88f5b8e 377 fatal (_("Unsupported architecture: %d"), bfd_get_arch (abfd));
252b5132
RH
378 }
379
f904699a 380 if (! (bfd_get_file_flags(abfd) & EXEC_P))
252b5132
RH
381 {
382 hd.ep = 0;
383 }
384 else
385 {
386 hd.ep = 1;
387 hd.uan = 0;
388 hd.sa = 0;
389 hd.sad = 0;
390 hd.address = bfd_get_start_address (abfd);
391 }
392
393 hd.os = "";
394 hd.sys = "";
395 hd.mn = strip_suffix (bfd_get_filename (abfd));
396
397 sysroff_swap_hd_out (file, &hd);
398}
399
400
401static void
2da42df6 402wr_sh (struct coff_ofile *p ATTRIBUTE_UNUSED, struct coff_section *sec)
252b5132
RH
403{
404 struct IT_sh sh;
405 sh.unit = 0;
406 sh.section = sec->number;
407#ifdef FOOP1
408 sh.section = 0;
409#endif
410 sysroff_swap_sh_out (file, &sh);
411}
412
413
414static void
2da42df6 415wr_ob (struct coff_ofile *p ATTRIBUTE_UNUSED, struct coff_section *section)
252b5132
RH
416{
417 bfd_size_type i;
418 int first = 1;
419 unsigned char stuff[200];
420
421 i = 0;
135dfb4a 422 while (i < bfd_get_section_size (section->bfd_section))
252b5132
RH
423 {
424 struct IT_ob ob;
8b53311e
NC
425 int todo = 200; /* Copy in 200 byte lumps. */
426
252b5132 427 ob.spare = 0;
135dfb4a
AM
428 if (i + todo > bfd_get_section_size (section->bfd_section))
429 todo = bfd_get_section_size (section->bfd_section) - i;
252b5132
RH
430
431 if (first)
432 {
433 ob.saf = 1;
434 if (bfd_get_file_flags (abfd) & EXEC_P)
435 ob.address = section->address;
436 else
437 ob.address = 0;
438
439 first = 0;
440 }
441 else
442 {
443 ob.saf = 0;
444 }
445
8b53311e 446 ob.cpf = 0; /* Never compress. */
252b5132
RH
447 ob.data.len = todo;
448 bfd_get_section_contents (abfd, section->bfd_section, stuff, i, todo);
449 ob.data.data = stuff;
450 sysroff_swap_ob_out (file, &ob /*, i + todo < section->size */ );
451 i += todo;
452 }
8b53311e
NC
453
454 /* Now fill the rest with blanks. */
252b5132
RH
455 while (i < (bfd_size_type) section->size)
456 {
457 struct IT_ob ob;
8b53311e
NC
458 int todo = 200; /* Copy in 200 byte lumps. */
459
252b5132
RH
460 ob.spare = 0;
461 if (i + todo > (bfd_size_type) section->size)
462 todo = section->size - i;
463 ob.saf = 0;
464
8b53311e 465 ob.cpf = 0; /* Never compress. */
252b5132
RH
466 ob.data.len = todo;
467 memset (stuff, 0, todo);
468 ob.data.data = stuff;
469 sysroff_swap_ob_out (file, &ob);
470 i += todo;
471 }
8b53311e 472 /* Now fill the rest with blanks. */
252b5132
RH
473}
474
475static void
2da42df6 476wr_rl (struct coff_ofile *ptr ATTRIBUTE_UNUSED, struct coff_section *sec)
252b5132
RH
477{
478 int nr = sec->nrelocs;
479 int i;
8b53311e 480
252b5132
RH
481 for (i = 0; i < nr; i++)
482 {
483 struct coff_reloc *r = sec->relocs + i;
484 struct coff_symbol *ref;
485 struct IT_rl rl;
8b53311e 486
252b5132
RH
487 rl.apol = 0;
488 rl.boundary = 0;
489 rl.segment = 1;
490 rl.sign = 0;
491 rl.check = 0;
492 rl.addr = r->offset;
493 rl.bitloc = 0;
8b53311e
NC
494 rl.flen = 32; /* SH Specific. */
495
496 /* What sort of reloc ? Look in the section to find out. */
252b5132
RH
497 ref = r->symbol;
498 if (ref->visible->type == coff_vis_ext_ref)
499 {
8b53311e 500 rl.bcount = 4; /* Always 4 for us. */
252b5132
RH
501 rl.op = OP_EXT_REF;
502 rl.symn = ref->er_number;
503 }
504 else if (ref->visible->type == coff_vis_common)
505 {
8b53311e 506 rl.bcount = 11; /* Always 11 for us. */
252b5132
RH
507 rl.op = OP_SEC_REF;
508 rl.secn = ref->where->section->number;
509 rl.copcode_is_3 = 3;
510 rl.alength_is_4 = 4;
511 rl.addend = ref->where->offset - ref->where->section->address;
512 rl.aopcode_is_0x20 = 0x20;
513 }
252b5132
RH
514 else
515 {
8b53311e 516 rl.bcount = 11; /* Always 11 for us. */
252b5132
RH
517 rl.op = OP_SEC_REF;
518 rl.secn = ref->where->section->number;
519 rl.copcode_is_3 = 3;
520 rl.alength_is_4 = 4;
521 rl.addend = -ref->where->section->address;
522 rl.aopcode_is_0x20 = 0x20;
523 }
8b53311e 524
252b5132 525 rl.end = 0xff;
8b53311e
NC
526
527 if ( rl.op == OP_SEC_REF
252b5132 528 || rl.op == OP_EXT_REF)
8b53311e 529 sysroff_swap_rl_out (file, &rl);
252b5132
RH
530 }
531}
532
533static void
2da42df6 534wr_object_body (struct coff_ofile *p)
252b5132
RH
535{
536 int i;
8b53311e 537
252b5132
RH
538 for (i = 1; i < p->nsections; i++)
539 {
540 wr_sh (p, p->sections + i);
541 wr_ob (p, p->sections + i);
542 wr_rl (p, p->sections + i);
543 }
544}
545
546static void
2da42df6
AJ
547wr_dps_start (struct coff_sfile *sfile,
548 struct coff_section *section ATTRIBUTE_UNUSED,
549 struct coff_scope *scope, int type, int nest)
252b5132
RH
550{
551 struct IT_dps dps;
8b53311e 552
252b5132
RH
553 dps.end = 0;
554 dps.opt = 0;
555 dps.type = type;
8b53311e 556
252b5132
RH
557 if (scope->sec)
558 {
559 dps.san = scope->sec->number;
560 dps.address = scope->offset - find_base (sfile, scope->sec);
561 dps.block_size = scope->size;
8b53311e 562
252b5132
RH
563 if (debug)
564 {
565 printf ("DPS %s %d %x\n",
566 sfile->name,
567 nest,
568 dps.address);
252b5132
RH
569 }
570 }
571 else
572 {
573 dps.san = 0;
574 dps.address = 0;
575 dps.block_size = 0;
576 }
577
578 dps.nesting = nest;
579 dps.neg = 0x1001;
580 sysroff_swap_dps_out (file, &dps);
581}
582
583static void
2da42df6
AJ
584wr_dps_end (struct coff_section *section ATTRIBUTE_UNUSED,
585 struct coff_scope *scope ATTRIBUTE_UNUSED, int type)
252b5132
RH
586{
587 struct IT_dps dps;
8b53311e 588
252b5132
RH
589 dps.end = 1;
590 dps.type = type;
591 sysroff_swap_dps_out (file, &dps);
592}
593
594static int *
2da42df6 595nints (int x)
252b5132
RH
596{
597 return (int *) (xcalloc (sizeof (int), x));
598}
599
252b5132 600static void
2da42df6
AJ
601walk_tree_type_1 (struct coff_sfile *sfile, struct coff_symbol *symbol,
602 struct coff_type *type, int nest)
252b5132
RH
603{
604 switch (type->type)
605 {
606 case coff_secdef_type:
607 case coff_basic_type:
608 {
609 struct IT_dbt dbt;
610
611 switch (type->u.basic)
612 {
613 case T_NULL:
614 case T_VOID:
615 dbt.btype = BTYPE_VOID;
616 dbt.sign = BTYPE_UNSPEC;
617 dbt.fptype = FPTYPE_NOTSPEC;
618 break;
8b53311e 619
252b5132
RH
620 case T_CHAR:
621 dbt.btype = BTYPE_CHAR;
622 dbt.sign = BTYPE_UNSPEC;
623 dbt.fptype = FPTYPE_NOTSPEC;
624 break;
8b53311e 625
252b5132
RH
626 case T_SHORT:
627 case T_INT:
628 case T_LONG:
629 dbt.btype = BTYPE_INT;
630 dbt.sign = SIGN_SIGNED;
631 dbt.fptype = FPTYPE_NOTSPEC;
632 break;
8b53311e 633
252b5132
RH
634 case T_FLOAT:
635 dbt.btype = BTYPE_FLOAT;
636 dbt.fptype = FPTYPE_SINGLE;
637 break;
8b53311e 638
252b5132
RH
639 case T_DOUBLE:
640 dbt.btype = BTYPE_FLOAT;
641 dbt.fptype = FPTYPE_DOUBLE;
642 break;
8b53311e 643
252b5132
RH
644 case T_LNGDBL:
645 dbt.btype = BTYPE_FLOAT;
646 dbt.fptype = FPTYPE_EXTENDED;
647 break;
8b53311e 648
252b5132
RH
649 case T_UCHAR:
650 dbt.btype = BTYPE_CHAR;
651 dbt.sign = SIGN_UNSIGNED;
652 dbt.fptype = FPTYPE_NOTSPEC;
653 break;
8b53311e 654
252b5132
RH
655 case T_USHORT:
656 case T_UINT:
657 case T_ULONG:
658 dbt.btype = BTYPE_INT;
659 dbt.sign = SIGN_UNSIGNED;
660 dbt.fptype = FPTYPE_NOTSPEC;
661 break;
662 }
8b53311e 663
252b5132
RH
664 dbt.bitsize = type->size;
665 dbt.neg = 0x1001;
666 sysroff_swap_dbt_out (file, &dbt);
667 break;
668 }
8b53311e 669
252b5132
RH
670 case coff_pointer_type:
671 {
672 struct IT_dpt dpt;
8b53311e 673
1a0a850d 674 dpt.dunno = 0;
252b5132
RH
675 walk_tree_type_1 (sfile, symbol, type->u.pointer.points_to, nest + 1);
676 dpt.neg = 0x1001;
677 sysroff_swap_dpt_out (file, &dpt);
678 break;
679 }
680
681 case coff_function_type:
682 {
683 struct IT_dfp dfp;
684 struct coff_symbol *param;
8b53311e 685
252b5132
RH
686 dfp.end = 0;
687 dfp.spare = 0;
688 dfp.nparams = type->u.function.parameters->nvars;
689 dfp.neg = 0x1001;
690
691 walk_tree_type_1 (sfile, symbol, type->u.function.function_returns, nest + 1);
692
693 sysroff_swap_dfp_out (file, &dfp);
694
695 for (param = type->u.function.parameters->vars_head;
696 param;
697 param = param->next)
8b53311e
NC
698 walk_tree_symbol (sfile, 0, param, nest);
699
252b5132
RH
700 dfp.end = 1;
701 sysroff_swap_dfp_out (file, &dfp);
702 break;
703 }
704
705 case coff_structdef_type:
706 {
707 struct IT_dbt dbt;
708 struct IT_dds dds;
709 struct coff_symbol *member;
8b53311e 710
252b5132
RH
711 dds.spare = 0;
712 dbt.btype = BTYPE_STRUCT;
713 dbt.bitsize = type->size;
714 dbt.sign = SIGN_UNSPEC;
715 dbt.fptype = FPTYPE_NOTSPEC;
716 dbt.sid = get_member_id (type->u.astructdef.idx);
717 dbt.neg = 0x1001;
718 sysroff_swap_dbt_out (file, &dbt);
719 dds.end = 0;
720 dds.neg = 0x1001;
721 sysroff_swap_dds_out (file, &dds);
8b53311e 722
252b5132
RH
723 for (member = type->u.astructdef.elements->vars_head;
724 member;
725 member = member->next)
8b53311e 726 walk_tree_symbol (sfile, 0, member, nest + 1);
252b5132
RH
727
728 dds.end = 1;
729 sysroff_swap_dds_out (file, &dds);
730
731 }
732 break;
8b53311e 733
252b5132
RH
734 case coff_structref_type:
735 {
736 struct IT_dbt dbt;
8b53311e 737
252b5132
RH
738 dbt.btype = BTYPE_TAG;
739 dbt.bitsize = type->size;
740 dbt.sign = SIGN_UNSPEC;
741 dbt.fptype = FPTYPE_NOTSPEC;
8b53311e 742
252b5132 743 if (type->u.astructref.ref)
8b53311e 744 dbt.sid = get_member_id (type->u.astructref.ref->number);
252b5132 745 else
8b53311e 746 dbt.sid = 0;
252b5132
RH
747
748 dbt.neg = 0x1001;
749 sysroff_swap_dbt_out (file, &dbt);
750 }
751 break;
8b53311e 752
252b5132
RH
753 case coff_array_type:
754 {
755 struct IT_dar dar;
756 int j;
8b53311e
NC
757 int dims = 1; /* Only output one dimension at a time. */
758
252b5132
RH
759 dar.dims = dims;
760 dar.variable = nints (dims);
761 dar.subtype = nints (dims);
762 dar.spare = nints (dims);
763 dar.max_variable = nints (dims);
764 dar.maxspare = nints (dims);
765 dar.max = nints (dims);
766 dar.min_variable = nints (dims);
767 dar.min = nints (dims);
768 dar.minspare = nints (dims);
769 dar.neg = 0x1001;
770 dar.length = type->size / type->u.array.dim;
8b53311e 771
252b5132
RH
772 for (j = 0; j < dims; j++)
773 {
774 dar.variable[j] = VARIABLE_FIXED;
775 dar.subtype[j] = SUB_INTEGER;
776 dar.spare[j] = 0;
777 dar.max_variable[j] = 0;
778 dar.max[j] = type->u.array.dim;
779 dar.min_variable[j] = 0;
780 dar.min[j] = 1; /* Why isn't this 0 ? */
781 }
782 walk_tree_type_1 (sfile, symbol, type->u.array.array_of, nest + 1);
783 sysroff_swap_dar_out (file, &dar);
784 }
785 break;
8b53311e 786
252b5132
RH
787 case coff_enumdef_type:
788 {
789 struct IT_dbt dbt;
790 struct IT_den den;
791 struct coff_symbol *member;
8b53311e 792
252b5132
RH
793 dbt.btype = BTYPE_ENUM;
794 dbt.bitsize = type->size;
795 dbt.sign = SIGN_UNSPEC;
796 dbt.fptype = FPTYPE_NOTSPEC;
797 dbt.sid = get_member_id (type->u.aenumdef.idx);
798 dbt.neg = 0x1001;
799 sysroff_swap_dbt_out (file, &dbt);
800
801 den.end = 0;
802 den.neg = 0x1001;
803 den.spare = 0;
804 sysroff_swap_den_out (file, &den);
8b53311e 805
252b5132
RH
806 for (member = type->u.aenumdef.elements->vars_head;
807 member;
808 member = member->next)
8b53311e 809 walk_tree_symbol (sfile, 0, member, nest + 1);
252b5132
RH
810
811 den.end = 1;
812 sysroff_swap_den_out (file, &den);
813 }
814 break;
815
252b5132
RH
816 case coff_enumref_type:
817 {
818 struct IT_dbt dbt;
8b53311e 819
252b5132
RH
820 dbt.btype = BTYPE_TAG;
821 dbt.bitsize = type->size;
822 dbt.sign = SIGN_UNSPEC;
823 dbt.fptype = FPTYPE_NOTSPEC;
824 dbt.sid = get_member_id (type->u.aenumref.ref->number);
825 dbt.neg = 0x1001;
826 sysroff_swap_dbt_out (file, &dbt);
827 }
828 break;
8b53311e 829
252b5132 830 default:
c88f5b8e 831 fatal (_("Unrecognised type: %d"), type->type);
252b5132
RH
832 }
833}
834
9f66665a 835/* Obsolete ?
252b5132
RH
836 static void
837 dty_start ()
838 {
839 struct IT_dty dty;
840 dty.end = 0;
841 dty.neg = 0x1001;
842 dty.spare = 0;
843 sysroff_swap_dty_out (file, &dty);
844 }
845
846 static void
847 dty_stop ()
848 {
849 struct IT_dty dty;
850 dty.end = 0;
851 dty.neg = 0x1001;
852 dty.end = 1;
853 sysroff_swap_dty_out (file, &dty);
854 }
855
856
857 static void
858 dump_tree_structure (sfile, symbol, type, nest)
859 struct coff_sfile *sfile;
860 struct coff_symbol *symbol;
861 struct coff_type *type;
862 int nest;
863 {
864 if (symbol->type->type == coff_function_type)
865 {
866
867
868 }
869
870 }
871 */
872
873static void
2da42df6
AJ
874walk_tree_type (struct coff_sfile *sfile, struct coff_symbol *symbol,
875 struct coff_type *type, int nest)
252b5132
RH
876{
877 if (symbol->type->type == coff_function_type)
878 {
252b5132 879 struct IT_dty dty;
8b53311e 880
252b5132
RH
881 dty.end = 0;
882 dty.neg = 0x1001;
883
884 sysroff_swap_dty_out (file, &dty);
885 walk_tree_type_1 (sfile, symbol, type, nest);
886 dty.end = 1;
887 sysroff_swap_dty_out (file, &dty);
888
889 wr_dps_start (sfile,
890 symbol->where->section,
891 symbol->type->u.function.code,
892 BLOCK_TYPE_FUNCTION, nest);
893 wr_dps_start (sfile, symbol->where->section,
894 symbol->type->u.function.code,
895 BLOCK_TYPE_BLOCK, nest);
896 walk_tree_scope (symbol->where->section,
897 sfile,
898 symbol->type->u.function.code,
899 nest + 1, BLOCK_TYPE_BLOCK);
900
901 wr_dps_end (symbol->where->section,
902 symbol->type->u.function.code,
903 BLOCK_TYPE_BLOCK);
904 wr_dps_end (symbol->where->section,
905 symbol->type->u.function.code, BLOCK_TYPE_FUNCTION);
252b5132
RH
906 }
907 else
908 {
909 struct IT_dty dty;
8b53311e 910
252b5132
RH
911 dty.end = 0;
912 dty.neg = 0x1001;
913 sysroff_swap_dty_out (file, &dty);
914 walk_tree_type_1 (sfile, symbol, type, nest);
915 dty.end = 1;
916 sysroff_swap_dty_out (file, &dty);
917 }
252b5132
RH
918}
919
252b5132 920static void
2da42df6 921walk_tree_symbol (struct coff_sfile *sfile, struct coff_section *section ATTRIBUTE_UNUSED, struct coff_symbol *symbol, int nest)
252b5132
RH
922{
923 struct IT_dsy dsy;
924
8b53311e 925 memset (&dsy, 0, sizeof(dsy));
252b5132
RH
926 dsy.nesting = nest;
927
928 switch (symbol->type->type)
929 {
930 case coff_function_type:
931 dsy.type = STYPE_FUNC;
932 dsy.assign = 1;
933 break;
8b53311e 934
252b5132
RH
935 case coff_structref_type:
936 case coff_pointer_type:
937 case coff_array_type:
938 case coff_basic_type:
939 case coff_enumref_type:
940 dsy.type = STYPE_VAR;
941 dsy.assign = 1;
942 break;
8b53311e 943
252b5132
RH
944 case coff_enumdef_type:
945 dsy.type = STYPE_TAG;
946 dsy.assign = 0;
947 dsy.magic = 2;
948 break;
8b53311e 949
252b5132
RH
950 case coff_structdef_type:
951 dsy.type = STYPE_TAG;
952 dsy.assign = 0;
953 dsy.magic = symbol->type->u.astructdef.isstruct ? 0 : 1;
954 break;
8b53311e 955
252b5132
RH
956 case coff_secdef_type:
957 return;
8b53311e 958
252b5132 959 default:
c88f5b8e 960 fatal (_("Unrecognised coff symbol type: %d"), symbol->type->type);
252b5132
RH
961 }
962
963 if (symbol->where->where == coff_where_member_of_struct)
964 {
965 dsy.assign = 0;
966 dsy.type = STYPE_MEMBER;
967 }
8b53311e 968
252b5132
RH
969 if (symbol->where->where == coff_where_member_of_enum)
970 {
971 dsy.type = STYPE_ENUM;
972 dsy.assign = 0;
973 dsy.evallen = 4;
974 dsy.evalue = symbol->where->offset;
975 }
976
977 if (symbol->type->type == coff_structdef_type
978 || symbol->where->where == coff_where_entag
979 || symbol->where->where == coff_where_strtag)
980 {
981 dsy.snumber = get_member_id (symbol->number);
982 }
983 else
984 {
985 dsy.snumber = get_ordinary_id (symbol->number);
986 }
987
252b5132
RH
988 dsy.sname = symbol->name[0] == '_' ? symbol->name + 1 : symbol->name;
989
990 switch (symbol->visible->type)
991 {
992 case coff_vis_common:
993 case coff_vis_ext_def:
994 dsy.ainfo = AINFO_STATIC_EXT_DEF;
995 break;
8b53311e 996
252b5132
RH
997 case coff_vis_ext_ref:
998 dsy.ainfo = AINFO_STATIC_EXT_REF;
999 break;
8b53311e 1000
252b5132
RH
1001 case coff_vis_int_def:
1002 dsy.ainfo = AINFO_STATIC_INT;
1003 break;
8b53311e 1004
252b5132
RH
1005 case coff_vis_auto:
1006 case coff_vis_autoparam:
1007 dsy.ainfo = AINFO_AUTO;
1008 break;
8b53311e 1009
252b5132
RH
1010 case coff_vis_register:
1011 case coff_vis_regparam:
1012 dsy.ainfo = AINFO_REG;
1013 break;
1014 break;
8b53311e 1015
252b5132
RH
1016 case coff_vis_tag:
1017 case coff_vis_member_of_struct:
1018 case coff_vis_member_of_enum:
1019 break;
8b53311e 1020
252b5132 1021 default:
c88f5b8e 1022 fatal (_("Unrecognised coff symbol visibility: %d"), symbol->visible->type);
252b5132
RH
1023 }
1024
1025 dsy.dlength = symbol->type->size;
8b53311e 1026
252b5132
RH
1027 switch (symbol->where->where)
1028 {
1029 case coff_where_memory:
1030
1031 dsy.section = symbol->where->section->number;
1032#ifdef FOOP
1033 dsy.section = 0;
1034#endif
1035 break;
8b53311e 1036
252b5132
RH
1037 case coff_where_member_of_struct:
1038 case coff_where_member_of_enum:
1039 case coff_where_stack:
1040 case coff_where_register:
1041 case coff_where_unknown:
1042 case coff_where_strtag:
252b5132
RH
1043 case coff_where_entag:
1044 case coff_where_typedef:
1045 break;
8b53311e 1046
252b5132 1047 default:
c88f5b8e 1048 fatal (_("Unrecognised coff symbol location: %d"), symbol->where->where);
252b5132
RH
1049 }
1050
1051 switch (symbol->where->where)
1052 {
1053 case coff_where_memory:
1054 dsy.address = symbol->where->offset - find_base (sfile, symbol->where->section);
1055 break;
8b53311e 1056
252b5132
RH
1057 case coff_where_stack:
1058 dsy.address = symbol->where->offset;
1059 break;
252b5132 1060
8b53311e 1061 case coff_where_member_of_struct:
252b5132
RH
1062 if (symbol->where->bitsize)
1063 {
1064 int bits = (symbol->where->offset * 8 + symbol->where->bitoffset);
1065 dsy.bitunit = 1;
1066 dsy.field_len = symbol->where->bitsize;
1067 dsy.field_off = (bits / 32) * 4;
1068 dsy.field_bitoff = bits % 32;
1069 }
1070 else
1071 {
1072 dsy.bitunit = 0;
1073
1074 dsy.field_len = symbol->type->size;
1075 dsy.field_off = symbol->where->offset;
1076 }
1077 break;
8b53311e 1078
252b5132
RH
1079 case coff_where_member_of_enum:
1080 /* dsy.bitunit = 0;
1081 dsy.field_len = symbol->type->size;
1082 dsy.field_off = symbol->where->offset; */
1083 break;
8b53311e 1084
252b5132
RH
1085 case coff_where_register:
1086 case coff_where_unknown:
1087 case coff_where_strtag:
252b5132
RH
1088 case coff_where_entag:
1089 case coff_where_typedef:
1090 break;
8b53311e 1091
252b5132 1092 default:
c88f5b8e 1093 fatal (_("Unrecognised coff symbol location: %d"), symbol->where->where);
252b5132
RH
1094 }
1095
1096 if (symbol->where->where == coff_where_register)
1097 dsy.reg = rnames[symbol->where->offset];
1098
1099 switch (symbol->visible->type)
1100 {
1101 case coff_vis_common:
8b53311e 1102 /* We do this 'cause common C symbols are treated as extdefs. */
252b5132
RH
1103 case coff_vis_ext_def:
1104 case coff_vis_ext_ref:
252b5132
RH
1105 dsy.ename = symbol->name;
1106 break;
1107
1108 case coff_vis_regparam:
1109 case coff_vis_autoparam:
1110 dsy.type = STYPE_PARAMETER;
1111 break;
1112
1113 case coff_vis_int_def:
252b5132
RH
1114 case coff_vis_auto:
1115 case coff_vis_register:
1116 case coff_vis_tag:
1117 case coff_vis_member_of_struct:
1118 case coff_vis_member_of_enum:
1119 break;
8b53311e 1120
252b5132 1121 default:
c88f5b8e 1122 fatal (_("Unrecognised coff symbol visibility: %d"), symbol->visible->type);
252b5132
RH
1123 }
1124
1125 dsy.sfn = 0;
1126 dsy.sln = 2;
252b5132
RH
1127 dsy.neg = 0x1001;
1128
252b5132
RH
1129 sysroff_swap_dsy_out (file, &dsy);
1130
1131 walk_tree_type (sfile, symbol, symbol->type, nest);
1132}
1133
252b5132 1134static void
2da42df6 1135walk_tree_scope (struct coff_section *section, struct coff_sfile *sfile, struct coff_scope *scope, int nest, int type)
252b5132
RH
1136{
1137 struct coff_symbol *vars;
1138 struct coff_scope *child;
1139
1140 if (scope->vars_head
1141 || (scope->list_head && scope->list_head->vars_head))
1142 {
1143 wr_dps_start (sfile, section, scope, type, nest);
1144
1145 if (nest == 0)
1146 wr_globals (tree, sfile, nest + 1);
1147
1148 for (vars = scope->vars_head; vars; vars = vars->next)
8b53311e 1149 walk_tree_symbol (sfile, section, vars, nest);
252b5132
RH
1150
1151 for (child = scope->list_head; child; child = child->next)
8b53311e 1152 walk_tree_scope (section, sfile, child, nest + 1, BLOCK_TYPE_BLOCK);
252b5132
RH
1153
1154 wr_dps_end (section, scope, type);
1155 }
1156}
8b53311e 1157
252b5132 1158static void
2da42df6 1159walk_tree_sfile (struct coff_section *section, struct coff_sfile *sfile)
252b5132
RH
1160{
1161 walk_tree_scope (section, sfile, sfile->scope, 0, BLOCK_TYPE_COMPUNIT);
252b5132
RH
1162}
1163
1164static void
2da42df6 1165wr_program_structure (struct coff_ofile *p, struct coff_sfile *sfile)
252b5132 1166{
951eaaec
NC
1167 if (p->nsections < 4)
1168 return;
252b5132 1169 walk_tree_sfile (p->sections + 4, sfile);
252b5132
RH
1170}
1171
1172static void
2da42df6 1173wr_du (struct coff_ofile *p, struct coff_sfile *sfile, int n)
252b5132
RH
1174{
1175 struct IT_du du;
1176 int lim;
252b5132
RH
1177 int i;
1178 int j;
1179 unsigned int *lowest = (unsigned *) nints (p->nsections);
1180 unsigned int *highest = (unsigned *) nints (p->nsections);
8b53311e 1181
252b5132
RH
1182 du.format = bfd_get_file_flags (abfd) & EXEC_P ? 0 : 1;
1183 du.optimized = 0;
1184 du.stackfrmt = 0;
1185 du.spare = 0;
1186 du.unit = n;
1187 du.sections = p->nsections - 1;
1188 du.san = (int *) xcalloc (sizeof (int), du.sections);
1189 du.address = nints (du.sections);
1190 du.length = nints (du.sections);
1191
1192 for (i = 0; i < du.sections; i++)
1193 {
1194 lowest[i] = ~0;
1195 highest[i] = 0;
1196 }
1197
252b5132
RH
1198 lim = du.sections;
1199 for (j = 0; j < lim; j++)
1200 {
1201 int src = j;
1202 int dst = j;
8b53311e 1203
252b5132 1204 du.san[dst] = dst;
8b53311e 1205
252b5132
RH
1206 if (sfile->section[src].init)
1207 {
1208 du.length[dst]
1209 = sfile->section[src].high - sfile->section[src].low + 1;
1210 du.address[dst]
1211 = sfile->section[src].low;
1212 }
1213 else
1214 {
1215 du.length[dst] = 0;
1216 du.address[dst] = 0;
1217 }
8b53311e 1218
252b5132
RH
1219 if (debug)
1220 {
1221 if (sfile->section[src].parent)
1222 {
1223 printf (" section %6s 0x%08x..0x%08x\n",
1224 sfile->section[src].parent->name,
1225 du.address[dst],
1226 du.address[dst] + du.length[dst] - 1);
1227 }
1228 }
8b53311e 1229
252b5132
RH
1230 du.sections = dst + 1;
1231 }
1232
1233 du.tool = "c_gcc";
1234 du.date = DATE;
1235
1236 sysroff_swap_du_out (file, &du);
1237}
1238
1239static void
2da42df6 1240wr_dus (struct coff_ofile *p ATTRIBUTE_UNUSED, struct coff_sfile *sfile)
252b5132 1241{
252b5132
RH
1242 struct IT_dus dus;
1243
1244 dus.efn = 0x1001;
1245 dus.ns = 1; /* p->nsources; sac 14 jul 94 */
1246 dus.drb = nints (dus.ns);
1247 dus.fname = (char **) xcalloc (sizeof (char *), dus.ns);
1248 dus.spare = nints (dus.ns);
1249 dus.ndir = 0;
8b53311e 1250 /* Find the filenames. */
252b5132
RH
1251 dus.drb[0] = 0;
1252 dus.fname[0] = sfile->name;
252b5132
RH
1253
1254 sysroff_swap_dus_out (file, &dus);
1255
1256}
1257
1258/* Find the offset of the .text section for this sfile in the
8b53311e 1259 .text section for the output file. */
252b5132
RH
1260
1261static int
2da42df6 1262find_base (struct coff_sfile *sfile, struct coff_section *section)
252b5132
RH
1263{
1264 return sfile->section[section->number].low;
1265}
0f371bb4 1266
252b5132 1267static void
2da42df6
AJ
1268wr_dln (struct coff_ofile *p ATTRIBUTE_UNUSED, struct coff_sfile *sfile,
1269 int n ATTRIBUTE_UNUSED)
252b5132 1270{
252b5132
RH
1271 /* Count up all the linenumbers */
1272
1273 struct coff_symbol *sy;
1274 int lc = 0;
1275 struct IT_dln dln;
1276
1277 int idx;
1278
1279 for (sy = sfile->scope->vars_head;
1280 sy;
1281 sy = sy->next)
1282 {
1283 struct coff_type *t = sy->type;
1284 if (t->type == coff_function_type)
1285 {
1286 struct coff_line *l = t->u.function.lines;
1287 if (l)
1288 lc += l->nlines;
1289 }
1290 }
1291
1292 dln.sfn = nints (lc);
1293 dln.sln = nints (lc);
1294 dln.cc = nints (lc);
1295 dln.section = nints (lc);
1296
1297 dln.from_address = nints (lc);
1298 dln.to_address = nints (lc);
1299
1300
1301 dln.neg = 0x1001;
1302
1303 dln.nln = lc;
1304
1305 /* Run through once more and fill up the structure */
1306 idx = 0;
1307 for (sy = sfile->scope->vars_head;
1308 sy;
1309 sy = sy->next)
1310 {
1311 if (sy->type->type == coff_function_type)
1312 {
1313 int i;
1314 struct coff_line *l = sy->type->u.function.lines;
1315 if (l)
1316 {
1317 int base = find_base (sfile, sy->where->section);
1318 for (i = 0; i < l->nlines; i++)
1319 {
1320 dln.section[idx] = sy->where->section->number;
1321 dln.sfn[idx] = 0;
1322 dln.sln[idx] = l->lines[i];
1323 dln.from_address[idx] =
1324 l->addresses[i] + sy->where->section->address - base;
1325 dln.cc[idx] = 0;
1326 if (idx)
1327 dln.to_address[idx - 1] = dln.from_address[idx];
1328 idx++;
1329
1330 }
1331 dln.to_address[idx - 1] = dln.from_address[idx - 1] + 2;
1332 }
1333 }
1334 }
1335 if (lc)
1336 sysroff_swap_dln_out (file, &dln);
252b5132
RH
1337}
1338
8b53311e
NC
1339/* Write the global symbols out to the debug info. */
1340
252b5132 1341static void
2da42df6
AJ
1342wr_globals (struct coff_ofile *p, struct coff_sfile *sfile,
1343 int n ATTRIBUTE_UNUSED)
252b5132
RH
1344{
1345 struct coff_symbol *sy;
8b53311e 1346
252b5132
RH
1347 for (sy = p->symbol_list_head;
1348 sy;
1349 sy = sy->next_in_ofile_list)
1350 {
1351 if (sy->visible->type == coff_vis_ext_def
1352 || sy->visible->type == coff_vis_ext_ref)
1353 {
1354 /* Only write out symbols if they belong to
8b53311e 1355 the current source file. */
252b5132
RH
1356 if (sy->sfile == sfile)
1357 walk_tree_symbol (sfile, 0, sy, 0);
252b5132
RH
1358 }
1359 }
1360}
1361
1362static void
2da42df6 1363wr_debug (struct coff_ofile *p)
252b5132
RH
1364{
1365 struct coff_sfile *sfile;
1366 int n = 0;
8b53311e 1367
252b5132
RH
1368 for (sfile = p->source_head;
1369 sfile;
1370 sfile = sfile->next)
252b5132
RH
1371 {
1372 if (debug)
8b53311e
NC
1373 printf ("%s\n", sfile->name);
1374
252b5132
RH
1375 wr_du (p, sfile, n);
1376 wr_dus (p, sfile);
1377 wr_program_structure (p, sfile);
1378 wr_dln (p, sfile, n);
1379 n++;
1380 }
1381}
1382
1383static void
2da42df6 1384wr_cs (void)
252b5132
RH
1385{
1386 /* It seems that the CS struct is not normal - the size is wrong
8b53311e
NC
1387 heres one I prepared earlier. */
1388 static char b[] =
1389 {
252b5132
RH
1390 0x80, /* IT */
1391 0x21, /* RL */
1392 0x00, /* number of chars in variable length part */
9f66665a
KH
1393 0x80, /* hd */
1394 0x00, /* hs */
1395 0x80, /* un */
1396 0x00, /* us */
1397 0x80, /* sc */
1398 0x00, /* ss */
1399 0x80, /* er */
1400 0x80, /* ed */
1401 0x80, /* sh */
1402 0x80, /* ob */
1403 0x80, /* rl */
252b5132
RH
1404 0x80, /* du */
1405 0x80, /* dps */
1406 0x80, /* dsy */
1407 0x80, /* dty */
1408 0x80, /* dln */
1409 0x80, /* dso */
1410 0x80, /* dus */
1411 0x00, /* dss */
1412 0x80, /* dbt */
1413 0x00, /* dpp */
1414 0x80, /* dfp */
1415 0x80, /* den */
1416 0x80, /* dds */
1417 0x80, /* dar */
1418 0x80, /* dpt */
1419 0x00, /* dul */
1420 0x00, /* dse */
1421 0x00, /* dot */
1422 0xDE /* CS */
1423 };
615f3149
AM
1424
1425 if (fwrite (b, sizeof (b), 1, file) != 1)
1426 /* FIXME: Return error status. */
c88f5b8e 1427 fatal (_("Failed to write CS struct"));
252b5132
RH
1428}
1429
1430/* Write out the SC records for a unit. Create an SC
1431 for all the sections which appear in the output file, even
8b53311e 1432 if there isn't an equivalent one on the input. */
252b5132
RH
1433
1434static int
2da42df6 1435wr_sc (struct coff_ofile *ptr, struct coff_sfile *sfile)
252b5132
RH
1436{
1437 int i;
8b53311e
NC
1438 int scount = 0;
1439 /* First work out the total number of sections. */
252b5132 1440 int total_sec = ptr->nsections;
252b5132
RH
1441 struct myinfo
1442 {
1443 struct coff_section *sec;
1444 struct coff_symbol *symbol;
1445 };
1446 struct coff_symbol *symbol;
252b5132
RH
1447 struct myinfo *info
1448 = (struct myinfo *) calloc (total_sec, sizeof (struct myinfo));
1449
1450
252b5132
RH
1451 for (i = 0; i < total_sec; i++)
1452 {
1453 info[i].sec = ptr->sections + i;
1454 info[i].symbol = 0;
1455 }
1456
1457 for (symbol = sfile->scope->vars_head;
1458 symbol;
1459 symbol = symbol->next)
1460 {
1461
1462 if (symbol->type->type == coff_secdef_type)
1463 {
1464 for (i = 0; i < total_sec; i++)
1465 {
1466 if (symbol->where->section == info[i].sec)
1467 {
1468 info[i].symbol = symbol;
1469 break;
1470 }
1471 }
1472 }
1473 }
1474
1475 /* Now output all the section info, and fake up some stuff for sections
8b53311e 1476 we don't have. */
252b5132
RH
1477 for (i = 1; i < total_sec; i++)
1478 {
1479 struct IT_sc sc;
1480 char *name;
8b53311e 1481
252b5132
RH
1482 symbol = info[i].symbol;
1483 sc.spare = 0;
1484 sc.spare1 = 0;
8b53311e 1485
252b5132
RH
1486 if (!symbol)
1487 {
8b53311e
NC
1488 /* Don't have a symbol set aside for this section, which means
1489 that nothing in this file does anything for the section. */
252b5132
RH
1490 sc.format = !(bfd_get_file_flags (abfd) & EXEC_P);
1491 sc.addr = 0;
1492 sc.length = 0;
1493 name = info[i].sec->name;
1494 }
1495 else
1496 {
1497 if (bfd_get_file_flags (abfd) & EXEC_P)
1498 {
1499 sc.format = 0;
1500 sc.addr = symbol->where->offset;
1501 }
1502 else
1503 {
1504 sc.format = 1;
1505 sc.addr = 0;
1506 }
1507 sc.length = symbol->type->size;
1508 name = symbol->name;
1509 }
1510
1511 sc.align = 4;
252b5132
RH
1512 sc.concat = CONCAT_SIMPLE;
1513 sc.read = 3;
1514 sc.write = 3;
1515 sc.exec = 3;
1516 sc.init = 3;
1517 sc.mode = 3;
1518 sc.spare = 0;
1519 sc.segadd = 0;
8b53311e 1520 sc.spare1 = 0; /* If not zero, then it doesn't work. */
252b5132 1521 sc.name = section_translate (name);
8b53311e 1522
252b5132
RH
1523 if (strlen (sc.name) == 1)
1524 {
1525 switch (sc.name[0])
1526 {
1527 case 'D':
1528 case 'B':
1529 sc.contents = CONTENTS_DATA;
1530 break;
8b53311e 1531
252b5132
RH
1532 default:
1533 sc.contents = CONTENTS_CODE;
1534 }
1535 }
1536 else
1537 {
1538 sc.contents = CONTENTS_CODE;
1539 }
84e43642
BE
1540
1541 sysroff_swap_sc_out (file, &sc);
1542 scount++;
252b5132 1543 }
b2e951ec 1544 free (info);
8b53311e 1545 return scount;
252b5132
RH
1546}
1547
8b53311e 1548/* Write out the ER records for a unit. */
252b5132 1549
252b5132 1550static void
2da42df6
AJ
1551wr_er (struct coff_ofile *ptr, struct coff_sfile *sfile ATTRIBUTE_UNUSED,
1552 int first)
252b5132
RH
1553{
1554 int idx = 0;
1555 struct coff_symbol *sym;
8b53311e 1556
252b5132
RH
1557 if (first)
1558 {
1559 for (sym = ptr->symbol_list_head; sym; sym = sym->next_in_ofile_list)
1560 {
1561 if (sym->visible->type == coff_vis_ext_ref)
1562 {
1563 struct IT_er er;
8b53311e 1564
252b5132
RH
1565 er.spare = 0;
1566 er.type = ER_NOTSPEC;
1567 er.name = sym->name;
1568 sysroff_swap_er_out (file, &er);
1569 sym->er_number = idx++;
1570 }
1571 }
1572 }
1573}
1574
8b53311e
NC
1575/* Write out the ED records for a unit. */
1576
252b5132 1577static void
2da42df6
AJ
1578wr_ed (struct coff_ofile *ptr, struct coff_sfile *sfile ATTRIBUTE_UNUSED,
1579 int first)
252b5132
RH
1580{
1581 struct coff_symbol *s;
8b53311e 1582
252b5132
RH
1583 if (first)
1584 {
1585 for (s = ptr->symbol_list_head; s; s = s->next_in_ofile_list)
1586 {
1587 if (s->visible->type == coff_vis_ext_def
1588 || s->visible->type == coff_vis_common)
1589 {
1590 struct IT_ed ed;
1591
1592 ed.section = s->where->section->number;
1593 ed.spare = 0;
8b53311e 1594
252b5132
RH
1595 if (s->where->section->data)
1596 {
1597 ed.type = ED_TYPE_DATA;
1598 }
1599 else if (s->where->section->code & SEC_CODE)
1600 {
1601 ed.type = ED_TYPE_ENTRY;
1602 }
1603 else
1604 {
1605 ed.type = ED_TYPE_NOTSPEC;
1606 ed.type = ED_TYPE_DATA;
1607 }
8b53311e 1608
252b5132
RH
1609 ed.address = s->where->offset - s->where->section->address;
1610 ed.name = s->name;
1611 sysroff_swap_ed_out (file, &ed);
1612 }
1613 }
1614 }
1615}
1616
1617static void
2da42df6 1618wr_unit_info (struct coff_ofile *ptr)
252b5132
RH
1619{
1620 struct coff_sfile *sfile;
1621 int first = 1;
8b53311e 1622
252b5132
RH
1623 for (sfile = ptr->source_head;
1624 sfile;
1625 sfile = sfile->next)
1626 {
1627 long p1;
1628 long p2;
1629 int nsecs;
8b53311e 1630
252b5132
RH
1631 p1 = ftell (file);
1632 wr_un (ptr, sfile, first, 0);
1633 nsecs = wr_sc (ptr, sfile);
1634 p2 = ftell (file);
1635 fseek (file, p1, SEEK_SET);
1636 wr_un (ptr, sfile, first, nsecs);
9f66665a 1637 fseek (file, p2, SEEK_SET);
252b5132
RH
1638 wr_er (ptr, sfile, first);
1639 wr_ed (ptr, sfile, first);
1640 first = 0;
1641 }
1642}
1643
1644static void
2da42df6 1645wr_module (struct coff_ofile *p)
252b5132
RH
1646{
1647 wr_cs ();
1648 wr_hd (p);
1649 wr_unit_info (p);
1650 wr_object_body (p);
1651 wr_debug (p);
1652 wr_tr ();
1653}
1654
1655static int
2da42df6 1656align (int x)
252b5132
RH
1657{
1658 return (x + 3) & ~3;
1659}
1660
1661/* Find all the common variables and turn them into
8b53311e 1662 ordinary defs - dunno why, but thats what hitachi does with 'em. */
252b5132
RH
1663
1664static void
91d6fa6a 1665prescan (struct coff_ofile *otree)
252b5132
RH
1666{
1667 struct coff_symbol *s;
1668 struct coff_section *common_section;
8b53311e 1669
951eaaec
NC
1670 if (otree->nsections < 3)
1671 return;
1672
8b53311e 1673 /* Find the common section - always section 3. */
91d6fa6a 1674 common_section = otree->sections + 3;
8b53311e 1675
91d6fa6a 1676 for (s = otree->symbol_list_head;
252b5132
RH
1677 s;
1678 s = s->next_in_ofile_list)
1679 {
1680 if (s->visible->type == coff_vis_common)
1681 {
1682 struct coff_where *w = s->where;
1683 /* s->visible->type = coff_vis_ext_def; leave it as common */
1684 common_section->size = align (common_section->size);
1685 w->offset = common_section->size + common_section->address;
1686 w->section = common_section;
1687 common_section->size += s->type->size;
1688 common_section->size = align (common_section->size);
1689 }
1690 }
1691}
1692
1693char *program_name;
1694
1e0f0b4d 1695ATTRIBUTE_NORETURN static void
91d6fa6a 1696show_usage (FILE *ffile, int status)
252b5132 1697{
91d6fa6a
NC
1698 fprintf (ffile, _("Usage: %s [option(s)] in-file [out-file]\n"), program_name);
1699 fprintf (ffile, _("Convert a COFF object file into a SYSROFF object file\n"));
1700 fprintf (ffile, _(" The options are:\n\
d412a550 1701 -q --quick (Obsolete - ignored)\n\
8b53311e
NC
1702 -n --noprescan Do not perform a scan to convert commons into defs\n\
1703 -d --debug Display information about what is being done\n\
07012eee 1704 @<file> Read options from <file>\n\
8b53311e
NC
1705 -h --help Display this information\n\
1706 -v --version Print the program's version number\n"));
1707
92f01d61 1708 if (REPORT_BUGS_TO[0] && status == 0)
91d6fa6a 1709 fprintf (ffile, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132
RH
1710 exit (status);
1711}
1712
252b5132 1713int
2da42df6 1714main (int ac, char **av)
252b5132
RH
1715{
1716 int opt;
1717 static struct option long_options[] =
1718 {
1719 {"debug", no_argument, 0, 'd'},
1720 {"quick", no_argument, 0, 'q'},
1721 {"noprescan", no_argument, 0, 'n'},
1722 {"help", no_argument, 0, 'h'},
1723 {"version", no_argument, 0, 'V'},
1724 {NULL, no_argument, 0, 0}
1725 };
1726 char **matching;
1727 char *input_file;
1728 char *output_file;
1729
1730#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
1731 setlocale (LC_MESSAGES, "");
3882b010
L
1732#endif
1733#if defined (HAVE_SETLOCALE)
1734 setlocale (LC_CTYPE, "");
252b5132
RH
1735#endif
1736 bindtextdomain (PACKAGE, LOCALEDIR);
1737 textdomain (PACKAGE);
1738
1739 program_name = av[0];
1740 xmalloc_set_program_name (program_name);
86eafac0 1741 bfd_set_error_program_name (program_name);
252b5132 1742
869b9d07
MM
1743 expandargv (&ac, &av);
1744
8b53311e 1745 while ((opt = getopt_long (ac, av, "dHhVvqn", long_options,
252b5132
RH
1746 (int *) NULL))
1747 != EOF)
1748 {
1749 switch (opt)
1750 {
1751 case 'q':
1752 quick = 1;
1753 break;
1754 case 'n':
1755 noprescan = 1;
1756 break;
1757 case 'd':
1758 debug = 1;
1759 break;
8b53311e 1760 case 'H':
252b5132 1761 case 'h':
8b53311e 1762 show_usage (stdout, 0);
252b5132 1763 /*NOTREACHED */
8b53311e 1764 case 'v':
252b5132 1765 case 'V':
6a8c2b0d 1766 print_version ("srconv");
252b5132
RH
1767 exit (0);
1768 /*NOTREACHED */
1769 case 0:
1770 break;
1771 default:
1772 show_usage (stderr, 1);
1773 /*NOTREACHED */
1774 }
1775 }
1776
1777 /* The input and output files may be named on the command line. */
1778 output_file = NULL;
1779 if (optind < ac)
1780 {
1781 input_file = av[optind];
1782 ++optind;
1783 if (optind < ac)
1784 {
1785 output_file = av[optind];
1786 ++optind;
1787 if (optind < ac)
1788 show_usage (stderr, 1);
8b6efd89 1789 if (filename_cmp (input_file, output_file) == 0)
252b5132 1790 {
37cc8ec1 1791 fatal (_("input and output files must be different"));
252b5132
RH
1792 }
1793 }
1794 }
1795 else
1796 input_file = 0;
1797
1798 if (!input_file)
1799 {
37cc8ec1 1800 fatal (_("no input file specified"));
252b5132
RH
1801 }
1802
1803 if (!output_file)
1804 {
1805 /* Take a .o off the input file and stick on a .obj. If
1806 it doesn't end in .o, then stick a .obj on anyway */
1807
1808 int len = strlen (input_file);
8b53311e 1809
252b5132
RH
1810 output_file = xmalloc (len + 5);
1811 strcpy (output_file, input_file);
8b53311e 1812
252b5132
RH
1813 if (len > 3
1814 && output_file[len - 2] == '.'
1815 && output_file[len - 1] == 'o')
1816 {
1817 output_file[len] = 'b';
1818 output_file[len + 1] = 'j';
1819 output_file[len + 2] = 0;
1820 }
1821 else
1822 {
1823 strcat (output_file, ".obj");
1824 }
1825 }
1826
1827 abfd = bfd_openr (input_file, 0);
1828
1829 if (!abfd)
1830 bfd_fatal (input_file);
1831
1832 if (!bfd_check_format_matches (abfd, bfd_object, &matching))
1833 {
1834 bfd_nonfatal (input_file);
8b53311e 1835
252b5132
RH
1836 if (bfd_get_error () == bfd_error_file_ambiguously_recognized)
1837 {
1838 list_matching_formats (matching);
1839 free (matching);
1840 }
1841 exit (1);
1842 }
1843
1844 file = fopen (output_file, FOPEN_WB);
1845
1846 if (!file)
8b53311e 1847 fatal (_("unable to open output file %s"), output_file);
252b5132
RH
1848
1849 if (debug)
1850 printf ("ids %d %d\n", base1, base2);
8b53311e 1851
252b5132 1852 tree = coff_grok (abfd);
85880250
NC
1853 if (tree)
1854 {
1855 if (!noprescan)
1856 prescan (tree);
8b53311e 1857
85880250
NC
1858 wr_module (tree);
1859 }
252b5132
RH
1860 return 0;
1861}