* config/tc-ppc.c (ppc_bb): Call SF_SET_PROCESS.
[binutils-gdb.git] / gas / config / obj-coff.c
1 /* coff object file format
2 Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
4
5 This file is part of GAS.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #include "as.h"
22 #include "obstack.h"
23 #include "subsegs.h"
24
25 /* I think this is probably always correct. */
26 #ifndef KEEP_RELOC_INFO
27 #define KEEP_RELOC_INFO
28 #endif
29
30
31 /* structure used to keep the filenames which
32 are too long around so that we can stick them
33 into the string table */
34 struct filename_list
35 {
36 char *filename;
37 struct filename_list *next;
38 };
39
40 static struct filename_list *filename_list_head;
41 static struct filename_list *filename_list_tail;
42
43 const char *s_get_name PARAMS ((symbolS * s));
44 static symbolS *def_symbol_in_progress;
45
46 \f
47 /* stack stuff */
48 typedef struct
49 {
50 unsigned long chunk_size;
51 unsigned long element_size;
52 unsigned long size;
53 char *data;
54 unsigned long pointer;
55 }
56 stack;
57
58 static stack *
59 stack_init (chunk_size, element_size)
60 unsigned long chunk_size;
61 unsigned long element_size;
62 {
63 stack *st;
64
65 st = (stack *) malloc (sizeof (stack));
66 if (!st)
67 return 0;
68 st->data = malloc (chunk_size);
69 if (!st->data)
70 {
71 free (st);
72 return 0;
73 }
74 st->pointer = 0;
75 st->size = chunk_size;
76 st->chunk_size = chunk_size;
77 st->element_size = element_size;
78 return st;
79 }
80
81 #if 0
82 /* Not currently used. */
83 static void
84 stack_delete (st)
85 stack *st;
86 {
87 free (st->data);
88 free (st);
89 }
90 #endif
91
92 static char *
93 stack_push (st, element)
94 stack *st;
95 char *element;
96 {
97 if (st->pointer + st->element_size >= st->size)
98 {
99 st->size += st->chunk_size;
100 if ((st->data = xrealloc (st->data, st->size)) == (char *) 0)
101 return (char *) 0;
102 }
103 memcpy (st->data + st->pointer, element, st->element_size);
104 st->pointer += st->element_size;
105 return st->data + st->pointer;
106 }
107
108 static char *
109 stack_pop (st)
110 stack *st;
111 {
112 if (st->pointer < st->element_size)
113 {
114 st->pointer = 0;
115 return (char *) 0;
116 }
117 st->pointer -= st->element_size;
118 return st->data + st->pointer;
119 }
120 \f
121 /*
122 * Maintain a list of the tagnames of the structres.
123 */
124
125 static struct hash_control *tag_hash;
126
127 static void
128 tag_init ()
129 {
130 tag_hash = hash_new ();
131 }
132
133 static void
134 tag_insert (name, symbolP)
135 const char *name;
136 symbolS *symbolP;
137 {
138 const char *error_string;
139
140 if ((error_string = hash_jam (tag_hash, name, (char *) symbolP)))
141 {
142 as_fatal ("Inserting \"%s\" into structure table failed: %s",
143 name, error_string);
144 }
145 }
146
147 static symbolS *
148 tag_find (name)
149 char *name;
150 {
151 #ifdef STRIP_UNDERSCORE
152 if (*name == '_')
153 name++;
154 #endif /* STRIP_UNDERSCORE */
155 return (symbolS *) hash_find (tag_hash, name);
156 }
157
158 static symbolS *
159 tag_find_or_make (name)
160 char *name;
161 {
162 symbolS *symbolP;
163
164 if ((symbolP = tag_find (name)) == NULL)
165 {
166 symbolP = symbol_new (name, undefined_section,
167 0, &zero_address_frag);
168
169 tag_insert (S_GET_NAME (symbolP), symbolP);
170 #ifdef BFD_ASSEMBLER
171 symbol_table_insert (symbolP);
172 #endif
173 } /* not found */
174
175 return symbolP;
176 }
177
178
179
180 #ifdef BFD_ASSEMBLER
181
182 static void SA_SET_SYM_TAGNDX PARAMS ((symbolS *, symbolS *));
183
184 #define GET_FILENAME_STRING(X) \
185 ((char*)(&((X)->sy_symbol.ost_auxent->x_file.x_n.x_offset))[1])
186
187 /* @@ Ick. */
188 static segT
189 fetch_coff_debug_section ()
190 {
191 static segT debug_section;
192 if (!debug_section)
193 {
194 CONST asymbol *s;
195 s = bfd_make_debug_symbol (stdoutput, (char *) 0, 0);
196 assert (s != 0);
197 debug_section = s->section;
198 }
199 return debug_section;
200 }
201
202 void
203 SA_SET_SYM_ENDNDX (sym, val)
204 symbolS *sym;
205 symbolS *val;
206 {
207 combined_entry_type *entry, *p;
208
209 entry = &coffsymbol (sym->bsym)->native[1];
210 p = coffsymbol (val->bsym)->native;
211 entry->u.auxent.x_sym.x_fcnary.x_fcn.x_endndx.p = p;
212 entry->fix_end = 1;
213 }
214
215 static void
216 SA_SET_SYM_TAGNDX (sym, val)
217 symbolS *sym;
218 symbolS *val;
219 {
220 combined_entry_type *entry, *p;
221
222 entry = &coffsymbol (sym->bsym)->native[1];
223 p = coffsymbol (val->bsym)->native;
224 entry->u.auxent.x_sym.x_tagndx.p = p;
225 entry->fix_tag = 1;
226 }
227
228 static int
229 S_GET_DATA_TYPE (sym)
230 symbolS *sym;
231 {
232 return coffsymbol (sym->bsym)->native->u.syment.n_type;
233 }
234
235 int
236 S_SET_DATA_TYPE (sym, val)
237 symbolS *sym;
238 int val;
239 {
240 coffsymbol (sym->bsym)->native->u.syment.n_type = val;
241 return val;
242 }
243
244 int
245 S_GET_STORAGE_CLASS (sym)
246 symbolS *sym;
247 {
248 return coffsymbol (sym->bsym)->native->u.syment.n_sclass;
249 }
250
251 int
252 S_SET_STORAGE_CLASS (sym, val)
253 symbolS *sym;
254 int val;
255 {
256 coffsymbol (sym->bsym)->native->u.syment.n_sclass = val;
257 return val;
258 }
259
260 /* Merge a debug symbol containing debug information into a normal symbol. */
261
262 void
263 c_symbol_merge (debug, normal)
264 symbolS *debug;
265 symbolS *normal;
266 {
267 S_SET_DATA_TYPE (normal, S_GET_DATA_TYPE (debug));
268 S_SET_STORAGE_CLASS (normal, S_GET_STORAGE_CLASS (debug));
269
270 if (S_GET_NUMBER_AUXILIARY (debug) > S_GET_NUMBER_AUXILIARY (normal))
271 /* take the most we have */
272 S_SET_NUMBER_AUXILIARY (normal, S_GET_NUMBER_AUXILIARY (debug));
273
274 if (S_GET_NUMBER_AUXILIARY (debug) > 0)
275 {
276 /* Move all the auxiliary information. */
277 /* @@ How many fields do we want to preserve? Would it make more
278 sense to pick and choose those we want to copy? Should look
279 into this further.... [raeburn:19920512.2209EST] */
280 alent *linenos;
281 linenos = coffsymbol (normal->bsym)->lineno;
282 memcpy ((char *) &coffsymbol (normal->bsym)->native,
283 (char *) &coffsymbol (debug->bsym)->native,
284 S_GET_NUMBER_AUXILIARY(debug) * AUXESZ);
285 coffsymbol (normal->bsym)->lineno = linenos;
286 }
287
288 /* Move the debug flags. */
289 SF_SET_DEBUG_FIELD (normal, SF_GET_DEBUG_FIELD (debug));
290 }
291
292 static symbolS *previous_file_symbol;
293 void
294 c_dot_file_symbol (filename)
295 char *filename;
296 {
297 symbolS *symbolP;
298
299 symbolP = symbol_new (filename, bfd_abs_section_ptr, 0, &zero_address_frag);
300
301 S_SET_STORAGE_CLASS (symbolP, C_FILE);
302 S_SET_NUMBER_AUXILIARY (symbolP, 1);
303
304 symbolP->bsym->flags = BSF_DEBUGGING;
305
306 #ifndef NO_LISTING
307 {
308 extern int listing;
309 if (listing)
310 {
311 listing_source_file (filename);
312 }
313 }
314 #endif
315
316 S_SET_VALUE (symbolP, (long) previous_file_symbol);
317
318 previous_file_symbol = symbolP;
319
320 /* Make sure that the symbol is first on the symbol chain */
321 if (symbol_rootP != symbolP)
322 {
323 if (symbolP == symbol_lastP)
324 {
325 symbol_lastP = symbol_lastP->sy_previous;
326 } /* if it was the last thing on the list */
327
328 symbol_remove (symbolP, &symbol_rootP, &symbol_lastP);
329 symbol_insert (symbolP, symbol_rootP, &symbol_rootP, &symbol_lastP);
330 symbol_rootP = symbolP;
331 } /* if not first on the list */
332 }
333
334 /*
335 * Build a 'section static' symbol.
336 */
337
338 char *
339 c_section_symbol (name, value, length, nreloc, nlnno)
340 char *name;
341 long value;
342 long length;
343 unsigned short nreloc;
344 unsigned short nlnno;
345 {
346 symbolS *symbolP;
347
348 symbolP = symbol_new (name,
349 (name[1] == 't'
350 ? text_section
351 : name[1] == 'd'
352 ? data_section
353 : bss_section),
354 value,
355 &zero_address_frag);
356
357 S_SET_STORAGE_CLASS (symbolP, C_STAT);
358 S_SET_NUMBER_AUXILIARY (symbolP, 1);
359
360 SA_SET_SCN_SCNLEN (symbolP, length);
361 SA_SET_SCN_NRELOC (symbolP, nreloc);
362 SA_SET_SCN_NLINNO (symbolP, nlnno);
363
364 SF_SET_STATICS (symbolP);
365
366 return (char *) symbolP;
367 }
368
369 /* Line number handling */
370
371 struct line_no {
372 struct line_no *next;
373 fragS *frag;
374 alent l;
375 };
376
377 int coff_line_base;
378
379 /* Symbol of last function, which we should hang line#s off of. */
380 static symbolS *line_fsym;
381
382 #define in_function() (line_fsym != 0)
383 #define clear_function() (line_fsym = 0)
384 #define set_function(F) (line_fsym = (F), coff_add_linesym (F))
385
386 \f
387 void
388 obj_symbol_new_hook (symbolP)
389 symbolS *symbolP;
390 {
391 char underscore = 0; /* Symbol has leading _ */
392
393 {
394 long sz = (OBJ_COFF_MAX_AUXENTRIES + 1) * sizeof (combined_entry_type);
395 char *s = (char *) bfd_alloc_by_size_t (stdoutput, sz);
396 memset (s, 0, sz);
397 coffsymbol (symbolP->bsym)->native = (combined_entry_type *) s;
398 }
399 S_SET_DATA_TYPE (symbolP, T_NULL);
400 S_SET_STORAGE_CLASS (symbolP, 0);
401 S_SET_NUMBER_AUXILIARY (symbolP, 0);
402
403 if (S_IS_STRING (symbolP))
404 SF_SET_STRING (symbolP);
405 if (!underscore && S_IS_LOCAL (symbolP))
406 SF_SET_LOCAL (symbolP);
407 }
408
409 \f
410 /*
411 * Handle .ln directives.
412 */
413
414 static symbolS *current_lineno_sym;
415 static struct line_no *line_nos;
416 /* @@ Blindly assume all .ln directives will be in the .text section... */
417 int coff_n_line_nos;
418
419 static void
420 add_lineno (frag, offset, num)
421 fragS *frag;
422 int offset;
423 int num;
424 {
425 struct line_no *new_line = (struct line_no *) bfd_alloc_by_size_t (stdoutput,
426 sizeof (struct line_no));
427 if (!current_lineno_sym)
428 {
429 abort ();
430 }
431 new_line->next = line_nos;
432 new_line->frag = frag;
433 new_line->l.line_number = num;
434 new_line->l.u.offset = offset;
435 line_nos = new_line;
436 coff_n_line_nos++;
437 }
438
439 void
440 coff_add_linesym (sym)
441 symbolS *sym;
442 {
443 if (line_nos)
444 {
445 coffsymbol (current_lineno_sym->bsym)->lineno = (alent *) line_nos;
446 coff_n_line_nos++;
447 line_nos = 0;
448 }
449 current_lineno_sym = sym;
450 }
451
452 static void
453 obj_coff_ln (appline)
454 int appline;
455 {
456 int l;
457
458 if (! appline && def_symbol_in_progress != NULL)
459 {
460 as_warn (".ln pseudo-op inside .def/.endef: ignored.");
461 demand_empty_rest_of_line ();
462 return;
463 }
464
465 l = get_absolute_expression ();
466 if (!appline)
467 {
468 add_lineno (frag_now, frag_now_fix (), l);
469 }
470
471 #ifndef NO_LISTING
472 {
473 extern int listing;
474
475 if (listing)
476 {
477 if (! appline)
478 l += coff_line_base - 1;
479 listing_source_line (l);
480 }
481 }
482 #endif
483
484 demand_empty_rest_of_line ();
485 }
486
487 /*
488 * def()
489 *
490 * Handle .def directives.
491 *
492 * One might ask : why can't we symbol_new if the symbol does not
493 * already exist and fill it with debug information. Because of
494 * the C_EFCN special symbol. It would clobber the value of the
495 * function symbol before we have a chance to notice that it is
496 * a C_EFCN. And a second reason is that the code is more clear this
497 * way. (at least I think it is :-).
498 *
499 */
500
501 #define SKIP_SEMI_COLON() while (*input_line_pointer++ != ';')
502 #define SKIP_WHITESPACES() while (*input_line_pointer == ' ' || \
503 *input_line_pointer == '\t') \
504 input_line_pointer++;
505
506 static void
507 obj_coff_def (what)
508 int what;
509 {
510 char name_end; /* Char after the end of name */
511 char *symbol_name; /* Name of the debug symbol */
512 char *symbol_name_copy; /* Temporary copy of the name */
513 unsigned int symbol_name_length;
514
515 if (def_symbol_in_progress != NULL)
516 {
517 as_warn (".def pseudo-op used inside of .def/.endef: ignored.");
518 demand_empty_rest_of_line ();
519 return;
520 } /* if not inside .def/.endef */
521
522 SKIP_WHITESPACES ();
523
524 symbol_name = input_line_pointer;
525 #ifdef STRIP_UNDERSCORE
526 if (symbol_name[0] == '_' && symbol_name[1] != 0)
527 symbol_name++;
528 #endif /* STRIP_UNDERSCORE */
529
530 name_end = get_symbol_end ();
531 symbol_name_length = strlen (symbol_name);
532 symbol_name_copy = xmalloc (symbol_name_length + 1);
533 strcpy (symbol_name_copy, symbol_name);
534
535 /* Initialize the new symbol */
536 def_symbol_in_progress = symbol_make (symbol_name_copy);
537 def_symbol_in_progress->sy_frag = &zero_address_frag;
538 S_SET_VALUE (def_symbol_in_progress, 0);
539
540 if (S_IS_STRING (def_symbol_in_progress))
541 SF_SET_STRING (def_symbol_in_progress);
542
543 *input_line_pointer = name_end;
544
545 demand_empty_rest_of_line ();
546 }
547
548 unsigned int dim_index;
549
550 static void
551 obj_coff_endef (ignore)
552 int ignore;
553 {
554 symbolS *symbolP;
555 /* DIM BUG FIX sac@cygnus.com */
556 dim_index = 0;
557 if (def_symbol_in_progress == NULL)
558 {
559 as_warn (".endef pseudo-op used outside of .def/.endef: ignored.");
560 demand_empty_rest_of_line ();
561 return;
562 } /* if not inside .def/.endef */
563
564 /* Set the section number according to storage class. */
565 switch (S_GET_STORAGE_CLASS (def_symbol_in_progress))
566 {
567 case C_STRTAG:
568 case C_ENTAG:
569 case C_UNTAG:
570 SF_SET_TAG (def_symbol_in_progress);
571 /* intentional fallthrough */
572 case C_FILE:
573 case C_TPDEF:
574 SF_SET_DEBUG (def_symbol_in_progress);
575 S_SET_SEGMENT (def_symbol_in_progress, fetch_coff_debug_section ());
576 break;
577
578 case C_EFCN:
579 SF_SET_LOCAL (def_symbol_in_progress); /* Do not emit this symbol. */
580 /* intentional fallthrough */
581 case C_BLOCK:
582 SF_SET_PROCESS (def_symbol_in_progress); /* Will need processing before writing */
583 /* intentional fallthrough */
584 case C_FCN:
585 {
586 CONST char *name;
587 S_SET_SEGMENT (def_symbol_in_progress, text_section);
588
589 name = bfd_asymbol_name (def_symbol_in_progress->bsym);
590 if (name[1] == 'b' && name[2] == 'f')
591 {
592 if (! in_function ())
593 as_warn ("`%s' symbol without preceding function", name);
594 /* SA_SET_SYM_LNNO (def_symbol_in_progress, 12345);*/
595 /* Will need relocating */
596 SF_SET_PROCESS (def_symbol_in_progress);
597 clear_function ();
598 }
599 }
600 break;
601
602 #ifdef C_AUTOARG
603 case C_AUTOARG:
604 #endif /* C_AUTOARG */
605 case C_AUTO:
606 case C_REG:
607 case C_MOS:
608 case C_MOE:
609 case C_MOU:
610 case C_ARG:
611 case C_REGPARM:
612 case C_FIELD:
613 case C_EOS:
614 SF_SET_DEBUG (def_symbol_in_progress);
615 S_SET_SEGMENT (def_symbol_in_progress, absolute_section);
616 break;
617
618 case C_EXT:
619 case C_STAT:
620 case C_LABEL:
621 /* Valid but set somewhere else (s_comm, s_lcomm, colon) */
622 break;
623
624 case C_USTATIC:
625 case C_EXTDEF:
626 case C_ULABEL:
627 as_warn ("unexpected storage class %d",
628 S_GET_STORAGE_CLASS (def_symbol_in_progress));
629 break;
630 } /* switch on storage class */
631
632 /* Now that we have built a debug symbol, try to find if we should
633 merge with an existing symbol or not. If a symbol is C_EFCN or
634 SEG_ABSOLUTE or untagged SEG_DEBUG it never merges. */
635
636 /* Two cases for functions. Either debug followed by definition or
637 definition followed by debug. For definition first, we will
638 merge the debug symbol into the definition. For debug first, the
639 lineno entry MUST point to the definition function or else it
640 will point off into space when obj_crawl_symbol_chain() merges
641 the debug symbol into the real symbol. Therefor, let's presume
642 the debug symbol is a real function reference. */
643
644 /* FIXME-SOON If for some reason the definition label/symbol is
645 never seen, this will probably leave an undefined symbol at link
646 time. */
647
648 if (S_GET_STORAGE_CLASS (def_symbol_in_progress) == C_EFCN
649 || (!strcmp (bfd_get_section_name (stdoutput,
650 S_GET_SEGMENT (def_symbol_in_progress)),
651 "*DEBUG*")
652 && !SF_GET_TAG (def_symbol_in_progress))
653 || S_GET_SEGMENT (def_symbol_in_progress) == absolute_section
654 || (symbolP = symbol_find_base (S_GET_NAME (def_symbol_in_progress), DO_NOT_STRIP)) == NULL)
655 {
656 if (def_symbol_in_progress != symbol_lastP)
657 symbol_append (def_symbol_in_progress, symbol_lastP, &symbol_rootP,
658 &symbol_lastP);
659 }
660 else
661 {
662 /* This symbol already exists, merge the newly created symbol
663 into the old one. This is not mandatory. The linker can
664 handle duplicate symbols correctly. But I guess that it save
665 a *lot* of space if the assembly file defines a lot of
666 symbols. [loic] */
667
668 /* The debug entry (def_symbol_in_progress) is merged into the
669 previous definition. */
670
671 c_symbol_merge (def_symbol_in_progress, symbolP);
672 /* FIXME-SOON Should *def_symbol_in_progress be free'd? xoxorich. */
673 def_symbol_in_progress = symbolP;
674
675 if (SF_GET_FUNCTION (def_symbol_in_progress)
676 || SF_GET_TAG (def_symbol_in_progress))
677 {
678 /* For functions, and tags, the symbol *must* be where the
679 debug symbol appears. Move the existing symbol to the
680 current place. */
681 /* If it already is at the end of the symbol list, do nothing */
682 if (def_symbol_in_progress != symbol_lastP)
683 {
684 symbol_remove (def_symbol_in_progress, &symbol_rootP, &symbol_lastP);
685 symbol_append (def_symbol_in_progress, symbol_lastP, &symbol_rootP, &symbol_lastP);
686 }
687 }
688 }
689
690 if (SF_GET_TAG (def_symbol_in_progress)
691 && symbol_find_base (S_GET_NAME (def_symbol_in_progress), DO_NOT_STRIP) == NULL)
692 {
693 tag_insert (S_GET_NAME (def_symbol_in_progress), def_symbol_in_progress);
694 }
695
696 if (SF_GET_FUNCTION (def_symbol_in_progress))
697 {
698 know (sizeof (def_symbol_in_progress) <= sizeof (long));
699 set_function (def_symbol_in_progress);
700 SF_SET_PROCESS (def_symbol_in_progress);
701
702 if (symbolP == NULL)
703 {
704 /* That is, if this is the first time we've seen the
705 function... */
706 symbol_table_insert (def_symbol_in_progress);
707 } /* definition follows debug */
708 } /* Create the line number entry pointing to the function being defined */
709
710 def_symbol_in_progress = NULL;
711 demand_empty_rest_of_line ();
712 }
713
714 static void
715 obj_coff_dim (ignore)
716 int ignore;
717 {
718 int dim_index;
719
720 if (def_symbol_in_progress == NULL)
721 {
722 as_warn (".dim pseudo-op used outside of .def/.endef: ignored.");
723 demand_empty_rest_of_line ();
724 return;
725 } /* if not inside .def/.endef */
726
727 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
728
729 for (dim_index = 0; dim_index < DIMNUM; dim_index++)
730 {
731 SKIP_WHITESPACES ();
732 SA_SET_SYM_DIMEN (def_symbol_in_progress, dim_index,
733 get_absolute_expression ());
734
735 switch (*input_line_pointer)
736 {
737 case ',':
738 input_line_pointer++;
739 break;
740
741 default:
742 as_warn ("badly formed .dim directive ignored");
743 /* intentional fallthrough */
744 case '\n':
745 case ';':
746 dim_index = DIMNUM;
747 break;
748 }
749 }
750
751 demand_empty_rest_of_line ();
752 }
753
754 static void
755 obj_coff_line (ignore)
756 int ignore;
757 {
758 int this_base;
759
760 if (def_symbol_in_progress == NULL)
761 {
762 /* Probably stabs-style line? */
763 obj_coff_ln (0);
764 return;
765 }
766
767 this_base = get_absolute_expression ();
768 if (!strcmp (".bf", S_GET_NAME (def_symbol_in_progress)))
769 coff_line_base = this_base;
770
771 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
772 SA_SET_SYM_LNNO (def_symbol_in_progress, coff_line_base);
773
774 demand_empty_rest_of_line ();
775
776 #ifndef NO_LISTING
777 if (strcmp (".bf", S_GET_NAME (def_symbol_in_progress)) == 0)
778 {
779 extern int listing;
780
781 if (listing)
782 listing_source_line ((unsigned int) coff_line_base);
783 }
784 #endif
785 }
786
787 static void
788 obj_coff_size (ignore)
789 int ignore;
790 {
791 if (def_symbol_in_progress == NULL)
792 {
793 as_warn (".size pseudo-op used outside of .def/.endef ignored.");
794 demand_empty_rest_of_line ();
795 return;
796 } /* if not inside .def/.endef */
797
798 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
799 SA_SET_SYM_SIZE (def_symbol_in_progress, get_absolute_expression ());
800 demand_empty_rest_of_line ();
801 }
802
803 static void
804 obj_coff_scl (ignore)
805 int ignore;
806 {
807 if (def_symbol_in_progress == NULL)
808 {
809 as_warn (".scl pseudo-op used outside of .def/.endef ignored.");
810 demand_empty_rest_of_line ();
811 return;
812 } /* if not inside .def/.endef */
813
814 S_SET_STORAGE_CLASS (def_symbol_in_progress, get_absolute_expression ());
815 demand_empty_rest_of_line ();
816 }
817
818 static void
819 obj_coff_tag (ignore)
820 int ignore;
821 {
822 char *symbol_name;
823 char name_end;
824
825 if (def_symbol_in_progress == NULL)
826 {
827 as_warn (".tag pseudo-op used outside of .def/.endef ignored.");
828 demand_empty_rest_of_line ();
829 return;
830 }
831
832 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
833 symbol_name = input_line_pointer;
834 name_end = get_symbol_end ();
835
836 /* Assume that the symbol referred to by .tag is always defined.
837 This was a bad assumption. I've added find_or_make. xoxorich. */
838 SA_SET_SYM_TAGNDX (def_symbol_in_progress,
839 tag_find_or_make (symbol_name));
840 if (SA_GET_SYM_TAGNDX (def_symbol_in_progress) == 0L)
841 {
842 as_warn ("tag not found for .tag %s", symbol_name);
843 } /* not defined */
844
845 SF_SET_TAGGED (def_symbol_in_progress);
846 *input_line_pointer = name_end;
847
848 demand_empty_rest_of_line ();
849 }
850
851 static void
852 obj_coff_type (ignore)
853 int ignore;
854 {
855 if (def_symbol_in_progress == NULL)
856 {
857 as_warn (".type pseudo-op used outside of .def/.endef ignored.");
858 demand_empty_rest_of_line ();
859 return;
860 } /* if not inside .def/.endef */
861
862 S_SET_DATA_TYPE (def_symbol_in_progress, get_absolute_expression ());
863
864 if (ISFCN (S_GET_DATA_TYPE (def_symbol_in_progress)) &&
865 S_GET_STORAGE_CLASS (def_symbol_in_progress) != C_TPDEF)
866 {
867 SF_SET_FUNCTION (def_symbol_in_progress);
868 } /* is a function */
869
870 demand_empty_rest_of_line ();
871 }
872
873 static void
874 obj_coff_val (ignore)
875 int ignore;
876 {
877 if (def_symbol_in_progress == NULL)
878 {
879 as_warn (".val pseudo-op used outside of .def/.endef ignored.");
880 demand_empty_rest_of_line ();
881 return;
882 } /* if not inside .def/.endef */
883
884 if (is_name_beginner (*input_line_pointer))
885 {
886 char *symbol_name = input_line_pointer;
887 char name_end = get_symbol_end ();
888
889 if (!strcmp (symbol_name, "."))
890 {
891 def_symbol_in_progress->sy_frag = frag_now;
892 S_SET_VALUE (def_symbol_in_progress, (valueT) frag_now_fix ());
893 /* If the .val is != from the .def (e.g. statics) */
894 }
895 else if (strcmp (S_GET_NAME (def_symbol_in_progress), symbol_name))
896 {
897 def_symbol_in_progress->sy_value.X_op = O_symbol;
898 def_symbol_in_progress->sy_value.X_add_symbol =
899 symbol_find_or_make (symbol_name);
900 def_symbol_in_progress->sy_value.X_op_symbol = NULL;
901 def_symbol_in_progress->sy_value.X_add_number = 0;
902
903 /* If the segment is undefined when the forward reference is
904 resolved, then copy the segment id from the forward
905 symbol. */
906 SF_SET_GET_SEGMENT (def_symbol_in_progress);
907 }
908 /* Otherwise, it is the name of a non debug symbol and its value will be calculated later. */
909 *input_line_pointer = name_end;
910 }
911 else
912 {
913 S_SET_VALUE (def_symbol_in_progress, get_absolute_expression ());
914 } /* if symbol based */
915
916 demand_empty_rest_of_line ();
917 }
918
919 void
920 obj_read_begin_hook ()
921 {
922 /* These had better be the same. Usually 18 bytes. */
923 #ifndef BFD_HEADERS
924 know (sizeof (SYMENT) == sizeof (AUXENT));
925 know (SYMESZ == AUXESZ);
926 #endif
927 tag_init ();
928 }
929
930
931 symbolS *coff_last_function;
932
933 void
934 coff_frob_symbol (symp, punt)
935 symbolS *symp;
936 int *punt;
937 {
938 static symbolS *last_tagP;
939 static stack *block_stack;
940 static symbolS *set_end;
941 symbolS *next_set_end = NULL;
942
943 if (symp == &abs_symbol)
944 {
945 *punt = 1;
946 return;
947 }
948
949 if (current_lineno_sym)
950 coff_add_linesym ((symbolS *) 0);
951
952 if (!block_stack)
953 block_stack = stack_init (512, sizeof (symbolS*));
954
955 if (!S_IS_DEFINED (symp) && S_GET_STORAGE_CLASS (symp) != C_STAT)
956 S_SET_STORAGE_CLASS (symp, C_EXT);
957
958 if (!SF_GET_DEBUG (symp))
959 {
960 symbolS *real;
961 if (!SF_GET_LOCAL (symp)
962 && (real = symbol_find_base (S_GET_NAME (symp), DO_NOT_STRIP))
963 && real != symp)
964 {
965 c_symbol_merge (symp, real);
966 *punt = 1;
967 }
968 if (!S_IS_DEFINED (symp) && !SF_GET_LOCAL (symp))
969 {
970 assert (S_GET_VALUE (symp) == 0);
971 S_SET_EXTERNAL (symp);
972 }
973 else if (S_GET_STORAGE_CLASS (symp) == C_NULL)
974 {
975 if (S_GET_SEGMENT (symp) == text_section
976 && symp != seg_info (text_section)->sym)
977 S_SET_STORAGE_CLASS (symp, C_LABEL);
978 else
979 S_SET_STORAGE_CLASS (symp, C_STAT);
980 }
981 if (SF_GET_PROCESS (symp))
982 {
983 if (S_GET_STORAGE_CLASS (symp) == C_BLOCK)
984 {
985 if (!strcmp (S_GET_NAME (symp), ".bb"))
986 stack_push (block_stack, (char *) &symp);
987 else
988 {
989 symbolS *begin;
990 begin = *(symbolS **) stack_pop (block_stack);
991 if (begin == 0)
992 as_warn ("mismatched .eb");
993 else
994 next_set_end = begin;
995 }
996 }
997 if (coff_last_function == 0 && SF_GET_FUNCTION (symp))
998 {
999 union internal_auxent *auxp;
1000 coff_last_function = symp;
1001 if (S_GET_NUMBER_AUXILIARY (symp) < 1)
1002 S_SET_NUMBER_AUXILIARY (symp, 1);
1003 auxp = &coffsymbol (symp->bsym)->native[1].u.auxent;
1004 memset (auxp->x_sym.x_fcnary.x_ary.x_dimen, 0,
1005 sizeof (auxp->x_sym.x_fcnary.x_ary.x_dimen));
1006 }
1007 if (S_GET_STORAGE_CLASS (symp) == C_EFCN)
1008 {
1009 if (coff_last_function == 0)
1010 as_fatal ("C_EFCN symbol out of scope");
1011 SA_SET_SYM_FSIZE (coff_last_function,
1012 (long) (S_GET_VALUE (symp)
1013 - S_GET_VALUE (coff_last_function)));
1014 next_set_end = coff_last_function;
1015 coff_last_function = 0;
1016 }
1017 }
1018 else if (SF_GET_TAG (symp))
1019 last_tagP = symp;
1020 else if (S_GET_STORAGE_CLASS (symp) == C_EOS)
1021 next_set_end = last_tagP;
1022 else if (S_GET_STORAGE_CLASS (symp) == C_FILE)
1023 {
1024 if (S_GET_VALUE (symp))
1025 {
1026 S_SET_VALUE ((symbolS *) S_GET_VALUE (symp), 0xdeadbeef);
1027 S_SET_VALUE (symp, 0);
1028 }
1029 }
1030 if (S_IS_EXTERNAL (symp))
1031 S_SET_STORAGE_CLASS (symp, C_EXT);
1032 else if (SF_GET_LOCAL (symp))
1033 *punt = 1;
1034
1035 if (SF_GET_FUNCTION (symp))
1036 symp->bsym->flags |= BSF_FUNCTION;
1037
1038 /* more ... */
1039 }
1040
1041 #ifdef OBJ_XCOFF
1042 /* This is pretty horrible, but we have to set *punt correctly in
1043 order to call SA_SET_SYM_ENDNDX correctly. */
1044 if (! symp->sy_used_in_reloc
1045 && ((symp->bsym->flags & BSF_SECTION_SYM) != 0
1046 || (! S_IS_EXTERNAL (symp)
1047 && ! symp->sy_tc.output
1048 && S_GET_STORAGE_CLASS (symp) != C_FILE)))
1049 *punt = 1;
1050 #endif
1051
1052 if (set_end != (symbolS *) NULL
1053 && ! *punt)
1054 {
1055 SA_SET_SYM_ENDNDX (set_end, symp);
1056 set_end = NULL;
1057 }
1058
1059 if (next_set_end != NULL
1060 && ! *punt)
1061 set_end = next_set_end;
1062
1063 if (coffsymbol (symp->bsym)->lineno)
1064 {
1065 int i;
1066 struct line_no *lptr;
1067 alent *l;
1068
1069 lptr = (struct line_no *) coffsymbol (symp->bsym)->lineno;
1070 for (i = 0; lptr; lptr = lptr->next)
1071 i++;
1072 lptr = (struct line_no *) coffsymbol (symp->bsym)->lineno;
1073
1074 /* We need i entries for line numbers, plus 1 for the first
1075 entry which BFD will override, plus 1 for the last zero
1076 entry (a marker for BFD). */
1077 l = (alent *) bfd_alloc_by_size_t (stdoutput, (i + 2) * sizeof (alent));
1078 coffsymbol (symp->bsym)->lineno = l;
1079 l[i + 1].line_number = 0;
1080 l[i + 1].u.sym = NULL;
1081 for (; i > 0; i--)
1082 {
1083 if (lptr->frag)
1084 lptr->l.u.offset += lptr->frag->fr_address;
1085 l[i] = lptr->l;
1086 lptr = lptr->next;
1087 }
1088 }
1089 }
1090
1091 void
1092 coff_adjust_section_syms (abfd, sec, x)
1093 bfd *abfd;
1094 asection *sec;
1095 PTR x;
1096 {
1097 symbolS *secsym;
1098 segment_info_type *seginfo = seg_info (sec);
1099 int nlnno, nrelocs = 0;
1100
1101 /* RS/6000 gas creates a .debug section manually in ppc_frob_file in
1102 tc-ppc.c. Do not get confused by it. */
1103 if (seginfo == NULL)
1104 return;
1105
1106 if (!strcmp (sec->name, ".text"))
1107 nlnno = coff_n_line_nos;
1108 else
1109 nlnno = 0;
1110 {
1111 /* @@ Hope that none of the fixups expand to more than one reloc
1112 entry... */
1113 fixS *fixp = seginfo->fix_root;
1114 while (fixp)
1115 {
1116 fixp = fixp->fx_next;
1117 nrelocs++;
1118 }
1119 }
1120 if (bfd_get_section_size_before_reloc (sec) == 0
1121 && nrelocs == 0 && nlnno == 0)
1122 return;
1123 secsym = section_symbol (sec);
1124 SA_SET_SCN_NRELOC (secsym, nrelocs);
1125 SA_SET_SCN_NLINNO (secsym, nlnno);
1126 }
1127
1128 void
1129 coff_frob_file ()
1130 {
1131 bfd_map_over_sections (stdoutput, coff_adjust_section_syms, (char*) 0);
1132 }
1133
1134 /*
1135 * implement the .section pseudo op:
1136 * .section name {, "flags"}
1137 * ^ ^
1138 * | +--- optional flags: 'b' for bss
1139 * | 'i' for info
1140 * +-- section name 'l' for lib
1141 * 'n' for noload
1142 * 'o' for over
1143 * 'w' for data
1144 * 'd' (apparently m88k for data)
1145 * 'x' for text
1146 * But if the argument is not a quoted string, treat it as a
1147 * subsegment number.
1148 */
1149
1150 void
1151 obj_coff_section (ignore)
1152 int ignore;
1153 {
1154 /* Strip out the section name */
1155 char *section_name;
1156 char c;
1157 char *name;
1158 unsigned int exp;
1159 flagword flags;
1160 asection *sec;
1161
1162 if (flag_mri)
1163 {
1164 char type;
1165
1166 s_mri_sect (&type);
1167 return;
1168 }
1169
1170 section_name = input_line_pointer;
1171 c = get_symbol_end ();
1172
1173 name = xmalloc (input_line_pointer - section_name + 1);
1174 strcpy (name, section_name);
1175
1176 *input_line_pointer = c;
1177
1178 SKIP_WHITESPACE ();
1179
1180 exp = 0;
1181 flags = SEC_NO_FLAGS;
1182
1183 if (*input_line_pointer == ',')
1184 {
1185 ++input_line_pointer;
1186 SKIP_WHITESPACE ();
1187 if (*input_line_pointer != '"')
1188 exp = get_absolute_expression ();
1189 else
1190 {
1191 ++input_line_pointer;
1192 while (*input_line_pointer != '"'
1193 && ! is_end_of_line[(unsigned char) *input_line_pointer])
1194 {
1195 switch (*input_line_pointer)
1196 {
1197 case 'b': flags |= SEC_ALLOC; flags &=~ SEC_LOAD; break;
1198 case 'n': flags &=~ SEC_LOAD; break;
1199 case 'd':
1200 case 'w': flags &=~ SEC_READONLY; break;
1201 case 'x': flags |= SEC_CODE; break;
1202
1203 case 'i': /* STYP_INFO */
1204 case 'l': /* STYP_LIB */
1205 case 'o': /* STYP_OVER */
1206 as_warn ("unsupported section attribute '%c'",
1207 *input_line_pointer);
1208 break;
1209
1210 default:
1211 as_warn("unknown section attribute '%c'",
1212 *input_line_pointer);
1213 break;
1214 }
1215 ++input_line_pointer;
1216 }
1217 if (*input_line_pointer == '"')
1218 ++input_line_pointer;
1219 }
1220 }
1221
1222 sec = subseg_new (name, (subsegT) exp);
1223
1224 if (flags != SEC_NO_FLAGS)
1225 {
1226 if (! bfd_set_section_flags (stdoutput, sec, flags))
1227 as_warn ("error setting flags for \"%s\": %s",
1228 bfd_section_name (stdoutput, sec),
1229 bfd_errmsg (bfd_get_error ()));
1230 }
1231 }
1232
1233 void
1234 coff_adjust_symtab ()
1235 {
1236 if (symbol_rootP == NULL
1237 || S_GET_STORAGE_CLASS (symbol_rootP) != C_FILE)
1238 {
1239 assert (previous_file_symbol == 0);
1240 c_dot_file_symbol ("fake");
1241 }
1242 }
1243
1244 void
1245 coff_frob_section (sec)
1246 segT sec;
1247 {
1248 segT strsec;
1249 char *strname, *p;
1250 fragS *fragp;
1251 bfd_vma size, n_entries, mask;
1252
1253 /* The COFF back end in BFD requires that all section sizes be
1254 rounded up to multiples of the corresponding section alignments.
1255 Seems kinda silly to me, but that's the way it is. */
1256 size = bfd_get_section_size_before_reloc (sec);
1257 mask = ((bfd_vma) 1 << (bfd_vma) sec->alignment_power) - 1;
1258 if (size & mask)
1259 {
1260 size = (size + mask) & ~mask;
1261 bfd_set_section_size (stdoutput, sec, size);
1262 }
1263
1264 /* If the section size is non-zero, the section symbol needs an aux
1265 entry associated with it, indicating the size. We don't know
1266 all the values yet; coff_frob_symbol will fill them in later. */
1267 if (size)
1268 {
1269 symbolS *secsym = section_symbol (sec);
1270
1271 S_SET_STORAGE_CLASS (secsym, C_STAT);
1272 S_SET_NUMBER_AUXILIARY (secsym, 1);
1273 SF_SET_STATICS (secsym);
1274 SA_SET_SCN_SCNLEN (secsym, size);
1275 }
1276
1277 /* @@ these should be in a "stabs.h" file, or maybe as.h */
1278 #ifndef STAB_SECTION_NAME
1279 #define STAB_SECTION_NAME ".stab"
1280 #endif
1281 #ifndef STAB_STRING_SECTION_NAME
1282 #define STAB_STRING_SECTION_NAME ".stabstr"
1283 #endif
1284 if (strcmp (STAB_STRING_SECTION_NAME, sec->name))
1285 return;
1286
1287 strsec = sec;
1288 sec = subseg_get (STAB_SECTION_NAME, 0);
1289 /* size is already rounded up, since other section will be listed first */
1290 size = bfd_get_section_size_before_reloc (strsec);
1291
1292 n_entries = bfd_get_section_size_before_reloc (sec) / 12 - 1;
1293
1294 /* Find first non-empty frag. It should be large enough. */
1295 fragp = seg_info (sec)->frchainP->frch_root;
1296 while (fragp && fragp->fr_fix == 0)
1297 fragp = fragp->fr_next;
1298 assert (fragp != 0 && fragp->fr_fix >= 12);
1299
1300 /* Store the values. */
1301 p = fragp->fr_literal;
1302 bfd_h_put_16 (stdoutput, n_entries, (bfd_byte *) p + 6);
1303 bfd_h_put_32 (stdoutput, size, (bfd_byte *) p + 8);
1304 }
1305
1306 void
1307 obj_coff_init_stab_section (seg)
1308 segT seg;
1309 {
1310 char *file;
1311 char *p;
1312 char *stabstr_name;
1313 unsigned int stroff;
1314
1315 /* Make space for this first symbol. */
1316 p = frag_more (12);
1317 /* Zero it out. */
1318 memset (p, 0, 12);
1319 as_where (&file, (unsigned int *) NULL);
1320 stabstr_name = (char *) alloca (strlen (seg->name) + 4);
1321 strcpy (stabstr_name, seg->name);
1322 strcat (stabstr_name, "str");
1323 stroff = get_stab_string_offset (file, stabstr_name);
1324 know (stroff == 1);
1325 md_number_to_chars (p, stroff, 4);
1326 }
1327
1328 #ifdef DEBUG
1329 /* for debugging */
1330 const char *
1331 s_get_name (s)
1332 symbolS *s;
1333 {
1334 return ((s == NULL) ? "(NULL)" : S_GET_NAME (s));
1335 }
1336
1337 void
1338 symbol_dump ()
1339 {
1340 symbolS *symbolP;
1341
1342 for (symbolP = symbol_rootP; symbolP; symbolP = symbol_next (symbolP))
1343 {
1344 printf("0x%lx: \"%s\" type = %ld, class = %d, segment = %d\n",
1345 (unsigned long) symbolP,
1346 S_GET_NAME(symbolP),
1347 (long) S_GET_DATA_TYPE(symbolP),
1348 S_GET_STORAGE_CLASS(symbolP),
1349 (int) S_GET_SEGMENT(symbolP));
1350 }
1351 }
1352
1353 #endif /* DEBUG */
1354
1355 #else /* not BFD_ASSEMBLER */
1356
1357 #include "frags.h"
1358 /* This is needed because we include internal bfd things. */
1359 #include <time.h>
1360
1361 #include "libbfd.h"
1362 #include "libcoff.h"
1363
1364 /* The NOP_OPCODE is for the alignment fill value. Fill with nop so
1365 that we can stick sections together without causing trouble. */
1366 #ifndef NOP_OPCODE
1367 #define NOP_OPCODE 0x00
1368 #endif
1369
1370 /* The zeroes if symbol name is longer than 8 chars */
1371 #define S_SET_ZEROES(s,v) ((s)->sy_symbol.ost_entry.n_zeroes = (v))
1372
1373 #define MIN(a,b) ((a) < (b)? (a) : (b))
1374 /* This vector is used to turn an internal segment into a section #
1375 suitable for insertion into a coff symbol table
1376 */
1377
1378 const short seg_N_TYPE[] =
1379 { /* in: segT out: N_TYPE bits */
1380 C_ABS_SECTION,
1381 1,
1382 2,
1383 3,
1384 4,
1385 5,
1386 6,
1387 7,
1388 8,
1389 9,
1390 10,
1391 C_UNDEF_SECTION, /* SEG_UNKNOWN */
1392 C_UNDEF_SECTION, /* SEG_GOOF */
1393 C_UNDEF_SECTION, /* SEG_EXPR */
1394 C_DEBUG_SECTION, /* SEG_DEBUG */
1395 C_NTV_SECTION, /* SEG_NTV */
1396 C_PTV_SECTION, /* SEG_PTV */
1397 C_REGISTER_SECTION, /* SEG_REGISTER */
1398 };
1399
1400 int function_lineoff = -1; /* Offset in line#s where the last function
1401 started (the odd entry for line #0) */
1402
1403 static symbolS *last_line_symbol;
1404
1405 /* Add 4 to the real value to get the index and compensate the
1406 negatives. This vector is used by S_GET_SEGMENT to turn a coff
1407 section number into a segment number
1408 */
1409 static symbolS *previous_file_symbol;
1410 void c_symbol_merge ();
1411 static int line_base;
1412
1413 symbolS *c_section_symbol ();
1414 bfd *abfd;
1415
1416 static void fixup_segment PARAMS ((segment_info_type *segP,
1417 segT this_segment_type));
1418
1419
1420 static void fixup_mdeps PARAMS ((fragS *,
1421 object_headers *,
1422 segT));
1423
1424
1425 static void fill_section PARAMS ((bfd * abfd,
1426 object_headers *,
1427 unsigned long *));
1428
1429
1430 static int c_line_new PARAMS ((symbolS * symbol, long paddr,
1431 int line_number,
1432 fragS * frag));
1433
1434
1435 static void w_symbols PARAMS ((bfd * abfd, char *where,
1436 symbolS * symbol_rootP));
1437
1438 static void adjust_stab_section PARAMS ((bfd *abfd, segT seg));
1439
1440 static void obj_coff_lcomm PARAMS ((int));
1441 static void obj_coff_text PARAMS ((int));
1442 static void obj_coff_data PARAMS ((int));
1443 static void obj_coff_bss PARAMS ((int));
1444 static void obj_coff_ident PARAMS ((int));
1445 void obj_coff_section PARAMS ((int));
1446
1447 /* Section stuff
1448
1449 We allow more than just the standard 3 sections, infact, we allow
1450 10 sections, (though the usual three have to be there).
1451
1452 This structure performs the mappings for us:
1453
1454 */
1455
1456 #define N_SEG 32
1457 typedef struct
1458 {
1459 segT seg_t;
1460 int i;
1461 } seg_info_type;
1462
1463 static const seg_info_type seg_info_off_by_4[N_SEG] =
1464 {
1465 {SEG_PTV, },
1466 {SEG_NTV, },
1467 {SEG_DEBUG, },
1468 {SEG_ABSOLUTE, },
1469 {SEG_UNKNOWN, },
1470 {SEG_E0},
1471 {SEG_E1},
1472 {SEG_E2},
1473 {SEG_E3},
1474 {SEG_E4},
1475 {SEG_E5},
1476 {SEG_E6},
1477 {SEG_E7},
1478 {SEG_E8},
1479 {SEG_E9},
1480 {(segT)15},
1481 {(segT)16},
1482 {(segT)17},
1483 {(segT)18},
1484 {(segT)19},
1485 {(segT)20},
1486 {(segT)0},
1487 {(segT)0},
1488 {(segT)0},
1489 {SEG_REGISTER}
1490 };
1491
1492
1493
1494 #define SEG_INFO_FROM_SECTION_NUMBER(x) (seg_info_off_by_4[(x)+4])
1495
1496 static relax_addressT
1497 relax_align (address, alignment)
1498 relax_addressT address;
1499 long alignment;
1500 {
1501 relax_addressT mask;
1502 relax_addressT new_address;
1503
1504 mask = ~((~0) << alignment);
1505 new_address = (address + mask) & (~mask);
1506 return (new_address - address);
1507 }
1508
1509
1510 segT
1511 s_get_segment (x)
1512 symbolS * x;
1513 {
1514 return SEG_INFO_FROM_SECTION_NUMBER (x->sy_symbol.ost_entry.n_scnum).seg_t;
1515 }
1516
1517
1518
1519 /* calculate the size of the frag chain and fill in the section header
1520 to contain all of it, also fill in the addr of the sections */
1521 static unsigned int
1522 size_section (abfd, idx)
1523 bfd * abfd;
1524 unsigned int idx;
1525 {
1526
1527 unsigned int size = 0;
1528 fragS *frag = segment_info[idx].frchainP->frch_root;
1529 while (frag)
1530 {
1531 size = frag->fr_address;
1532 if (frag->fr_address != size)
1533 {
1534 fprintf (stderr, "Out of step\n");
1535 size = frag->fr_address;
1536 }
1537
1538 switch (frag->fr_type)
1539 {
1540 #ifdef TC_COFF_SIZEMACHDEP
1541 case rs_machine_dependent:
1542 size += TC_COFF_SIZEMACHDEP (frag);
1543 break;
1544 #endif
1545 case rs_space:
1546 assert (frag->fr_symbol == 0);
1547 case rs_fill:
1548 case rs_org:
1549 size += frag->fr_fix;
1550 size += frag->fr_offset * frag->fr_var;
1551 break;
1552 case rs_align:
1553 size += frag->fr_fix;
1554 size += relax_align (size, frag->fr_offset);
1555 break;
1556 default:
1557 BAD_CASE (frag->fr_type);
1558 break;
1559 }
1560 frag = frag->fr_next;
1561 }
1562 segment_info[idx].scnhdr.s_size = size;
1563 return size;
1564 }
1565
1566
1567 static unsigned int
1568 count_entries_in_chain (idx)
1569 unsigned int idx;
1570 {
1571 unsigned int nrelocs;
1572 fixS *fixup_ptr;
1573
1574 /* Count the relocations */
1575 fixup_ptr = segment_info[idx].fix_root;
1576 nrelocs = 0;
1577 while (fixup_ptr != (fixS *) NULL)
1578 {
1579 if (TC_COUNT_RELOC (fixup_ptr))
1580 {
1581 #ifdef TC_A29K
1582 if (fixup_ptr->fx_r_type == RELOC_CONSTH)
1583 nrelocs += 2;
1584 else
1585 nrelocs++;
1586 #else
1587 nrelocs++;
1588 #endif
1589 }
1590
1591 fixup_ptr = fixup_ptr->fx_next;
1592 }
1593 return nrelocs;
1594 }
1595
1596 /* output all the relocations for a section */
1597 void
1598 do_relocs_for (abfd, h, file_cursor)
1599 bfd * abfd;
1600 object_headers * h;
1601 unsigned long *file_cursor;
1602 {
1603 unsigned int nrelocs;
1604 unsigned int idx;
1605 unsigned long reloc_start = *file_cursor;
1606
1607 for (idx = SEG_E0; idx < SEG_E9; idx++)
1608 {
1609 if (segment_info[idx].scnhdr.s_name[0])
1610 {
1611 struct external_reloc *ext_ptr;
1612 struct external_reloc *external_reloc_vec;
1613 unsigned int external_reloc_size;
1614 unsigned int base = segment_info[idx].scnhdr.s_paddr;
1615 fixS *fix_ptr = segment_info[idx].fix_root;
1616 nrelocs = count_entries_in_chain (idx);
1617
1618 if (nrelocs)
1619 /* Bypass this stuff if no relocs. This also incidentally
1620 avoids a SCO bug, where free(malloc(0)) tends to crash. */
1621 {
1622 external_reloc_size = nrelocs * RELSZ;
1623 external_reloc_vec =
1624 (struct external_reloc *) malloc (external_reloc_size);
1625
1626 ext_ptr = external_reloc_vec;
1627
1628 /* Fill in the internal coff style reloc struct from the
1629 internal fix list. */
1630 while (fix_ptr)
1631 {
1632 struct internal_reloc intr;
1633
1634 /* Only output some of the relocations */
1635 if (TC_COUNT_RELOC (fix_ptr))
1636 {
1637 #ifdef TC_RELOC_MANGLE
1638 TC_RELOC_MANGLE (&segment_info[idx], fix_ptr, &intr,
1639 base);
1640
1641 #else
1642 symbolS *dot;
1643 symbolS *symbol_ptr = fix_ptr->fx_addsy;
1644
1645 intr.r_type = TC_COFF_FIX2RTYPE (fix_ptr);
1646 intr.r_vaddr =
1647 base + fix_ptr->fx_frag->fr_address + fix_ptr->fx_where;
1648
1649 #ifdef TC_KEEP_FX_OFFSET
1650 intr.r_offset = fix_ptr->fx_offset;
1651 #else
1652 intr.r_offset = 0;
1653 #endif
1654
1655 /* Turn the segment of the symbol into an offset. */
1656 if (symbol_ptr)
1657 {
1658 dot = segment_info[S_GET_SEGMENT (symbol_ptr)].dot;
1659 if (dot)
1660 {
1661 intr.r_symndx = dot->sy_number;
1662 }
1663 else
1664 {
1665 intr.r_symndx = symbol_ptr->sy_number;
1666 }
1667
1668 }
1669 else
1670 {
1671 intr.r_symndx = -1;
1672 }
1673 #endif
1674
1675 (void) bfd_coff_swap_reloc_out (abfd, &intr, ext_ptr);
1676 ext_ptr++;
1677
1678 #if defined(TC_A29K)
1679
1680 /* The 29k has a special kludge for the high 16 bit
1681 reloc. Two relocations are emited, R_IHIHALF,
1682 and R_IHCONST. The second one doesn't contain a
1683 symbol, but uses the value for offset. */
1684
1685 if (intr.r_type == R_IHIHALF)
1686 {
1687 /* now emit the second bit */
1688 intr.r_type = R_IHCONST;
1689 intr.r_symndx = fix_ptr->fx_addnumber;
1690 (void) bfd_coff_swap_reloc_out (abfd, &intr, ext_ptr);
1691 ext_ptr++;
1692 }
1693 #endif
1694 }
1695
1696 fix_ptr = fix_ptr->fx_next;
1697 }
1698
1699 /* Write out the reloc table */
1700 bfd_write ((PTR) external_reloc_vec, 1, external_reloc_size,
1701 abfd);
1702 free (external_reloc_vec);
1703
1704 /* Fill in section header info. */
1705 segment_info[idx].scnhdr.s_relptr = *file_cursor;
1706 *file_cursor += external_reloc_size;
1707 segment_info[idx].scnhdr.s_nreloc = nrelocs;
1708 }
1709 else
1710 {
1711 /* No relocs */
1712 segment_info[idx].scnhdr.s_relptr = 0;
1713 }
1714 }
1715 }
1716 /* Set relocation_size field in file headers */
1717 H_SET_RELOCATION_SIZE (h, *file_cursor - reloc_start, 0);
1718 }
1719
1720
1721 /* run through a frag chain and write out the data to go with it, fill
1722 in the scnhdrs with the info on the file postions
1723 */
1724 static void
1725 fill_section (abfd, h, file_cursor)
1726 bfd * abfd;
1727 object_headers *h;
1728 unsigned long *file_cursor;
1729 {
1730
1731 unsigned int i;
1732 unsigned int paddr = 0;
1733
1734 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
1735 {
1736 unsigned int offset = 0;
1737 struct internal_scnhdr *s = &(segment_info[i].scnhdr);
1738
1739 PROGRESS (1);
1740
1741 if (s->s_name[0])
1742 {
1743 fragS *frag = segment_info[i].frchainP->frch_root;
1744 char *buffer;
1745
1746 if (s->s_size == 0)
1747 s->s_scnptr = 0;
1748 else
1749 {
1750 buffer = xmalloc (s->s_size);
1751 s->s_scnptr = *file_cursor;
1752 }
1753 know (s->s_paddr == paddr);
1754
1755 if (strcmp (s->s_name, ".text") == 0)
1756 s->s_flags |= STYP_TEXT;
1757 else if (strcmp (s->s_name, ".data") == 0)
1758 s->s_flags |= STYP_DATA;
1759 else if (strcmp (s->s_name, ".bss") == 0)
1760 {
1761 s->s_scnptr = 0;
1762 s->s_flags |= STYP_BSS;
1763
1764 /* @@ Should make the i386 and a29k coff targets define
1765 COFF_NOLOAD_PROBLEM, and have only one test here. */
1766 #ifndef TC_I386
1767 #ifndef TC_A29K
1768 #ifndef COFF_NOLOAD_PROBLEM
1769 /* Apparently the SVR3 linker (and exec syscall) and UDI
1770 mondfe progrem are confused by noload sections. */
1771 s->s_flags |= STYP_NOLOAD;
1772 #endif
1773 #endif
1774 #endif
1775 }
1776 else if (strcmp (s->s_name, ".lit") == 0)
1777 s->s_flags = STYP_LIT | STYP_TEXT;
1778 else if (strcmp (s->s_name, ".init") == 0)
1779 s->s_flags |= STYP_TEXT;
1780 else if (strcmp (s->s_name, ".fini") == 0)
1781 s->s_flags |= STYP_TEXT;
1782 else if (strncmp (s->s_name, ".comment", 8) == 0)
1783 s->s_flags |= STYP_INFO;
1784
1785 while (frag)
1786 {
1787 unsigned int fill_size;
1788 switch (frag->fr_type)
1789 {
1790 case rs_machine_dependent:
1791 if (frag->fr_fix)
1792 {
1793 memcpy (buffer + frag->fr_address,
1794 frag->fr_literal,
1795 (unsigned int) frag->fr_fix);
1796 offset += frag->fr_fix;
1797 }
1798
1799 break;
1800 case rs_space:
1801 assert (frag->fr_symbol == 0);
1802 case rs_fill:
1803 case rs_align:
1804 case rs_org:
1805 if (frag->fr_fix)
1806 {
1807 memcpy (buffer + frag->fr_address,
1808 frag->fr_literal,
1809 (unsigned int) frag->fr_fix);
1810 offset += frag->fr_fix;
1811 }
1812
1813 fill_size = frag->fr_var;
1814 if (fill_size && frag->fr_offset > 0)
1815 {
1816 unsigned int count;
1817 unsigned int off = frag->fr_fix;
1818 for (count = frag->fr_offset; count; count--)
1819 {
1820 if (fill_size + frag->fr_address + off <= s->s_size)
1821 {
1822 memcpy (buffer + frag->fr_address + off,
1823 frag->fr_literal + frag->fr_fix,
1824 fill_size);
1825 off += fill_size;
1826 offset += fill_size;
1827 }
1828 }
1829 }
1830 break;
1831 case rs_broken_word:
1832 break;
1833 default:
1834 abort ();
1835 }
1836 frag = frag->fr_next;
1837 }
1838
1839 if (s->s_size != 0)
1840 {
1841 if (s->s_scnptr != 0)
1842 {
1843 bfd_write (buffer, s->s_size, 1, abfd);
1844 *file_cursor += s->s_size;
1845 }
1846 free (buffer);
1847 }
1848 paddr += s->s_size;
1849 }
1850 }
1851 }
1852
1853 /* Coff file generation & utilities */
1854
1855 static void
1856 coff_header_append (abfd, h)
1857 bfd * abfd;
1858 object_headers * h;
1859 {
1860 unsigned int i;
1861 char buffer[1000];
1862 char buffero[1000];
1863
1864 bfd_seek (abfd, 0, 0);
1865
1866 #ifndef OBJ_COFF_OMIT_OPTIONAL_HEADER
1867 H_SET_MAGIC_NUMBER (h, COFF_MAGIC);
1868 H_SET_VERSION_STAMP (h, 0);
1869 H_SET_ENTRY_POINT (h, 0);
1870 H_SET_TEXT_START (h, segment_info[SEG_E0].frchainP->frch_root->fr_address);
1871 H_SET_DATA_START (h, segment_info[SEG_E1].frchainP->frch_root->fr_address);
1872 H_SET_SIZEOF_OPTIONAL_HEADER (h, bfd_coff_swap_aouthdr_out(abfd, &h->aouthdr,
1873 buffero));
1874 #else /* defined (OBJ_COFF_OMIT_OPTIONAL_HEADER) */
1875 H_SET_SIZEOF_OPTIONAL_HEADER (h, 0);
1876 #endif /* defined (OBJ_COFF_OMIT_OPTIONAL_HEADER) */
1877
1878 i = bfd_coff_swap_filehdr_out (abfd, &h->filehdr, buffer);
1879
1880 bfd_write (buffer, i, 1, abfd);
1881 bfd_write (buffero, H_GET_SIZEOF_OPTIONAL_HEADER (h), 1, abfd);
1882
1883 for (i = SEG_E0; i < SEG_E9; i++)
1884 {
1885 if (segment_info[i].scnhdr.s_name[0])
1886 {
1887 unsigned int size =
1888 bfd_coff_swap_scnhdr_out (abfd,
1889 &(segment_info[i].scnhdr),
1890 buffer);
1891 if (size == 0)
1892 as_bad ("bfd_coff_swap_scnhdr_out failed");
1893 bfd_write (buffer, size, 1, abfd);
1894 }
1895 }
1896 }
1897
1898
1899 char *
1900 symbol_to_chars (abfd, where, symbolP)
1901 bfd * abfd;
1902 char *where;
1903 symbolS * symbolP;
1904 {
1905 unsigned int numaux = symbolP->sy_symbol.ost_entry.n_numaux;
1906 unsigned int i;
1907 valueT val;
1908
1909 /* Turn any symbols with register attributes into abs symbols */
1910 if (S_GET_SEGMENT (symbolP) == reg_section)
1911 {
1912 S_SET_SEGMENT (symbolP, absolute_section);
1913 }
1914 /* At the same time, relocate all symbols to their output value */
1915
1916 val = (segment_info[S_GET_SEGMENT (symbolP)].scnhdr.s_paddr
1917 + S_GET_VALUE (symbolP));
1918
1919 S_SET_VALUE (symbolP, val);
1920
1921 symbolP->sy_symbol.ost_entry.n_value = val;
1922
1923 where += bfd_coff_swap_sym_out (abfd, &symbolP->sy_symbol.ost_entry,
1924 where);
1925
1926 for (i = 0; i < numaux; i++)
1927 {
1928 where += bfd_coff_swap_aux_out (abfd,
1929 &symbolP->sy_symbol.ost_auxent[i],
1930 S_GET_DATA_TYPE (symbolP),
1931 S_GET_STORAGE_CLASS (symbolP),
1932 i, numaux, where);
1933 }
1934 return where;
1935
1936 }
1937
1938 void
1939 obj_symbol_new_hook (symbolP)
1940 symbolS *symbolP;
1941 {
1942 char underscore = 0; /* Symbol has leading _ */
1943
1944 /* Effective symbol */
1945 /* Store the pointer in the offset. */
1946 S_SET_ZEROES (symbolP, 0L);
1947 S_SET_DATA_TYPE (symbolP, T_NULL);
1948 S_SET_STORAGE_CLASS (symbolP, 0);
1949 S_SET_NUMBER_AUXILIARY (symbolP, 0);
1950 /* Additional information */
1951 symbolP->sy_symbol.ost_flags = 0;
1952 /* Auxiliary entries */
1953 memset ((char *) &symbolP->sy_symbol.ost_auxent[0], 0, AUXESZ);
1954
1955 if (S_IS_STRING (symbolP))
1956 SF_SET_STRING (symbolP);
1957 if (!underscore && S_IS_LOCAL (symbolP))
1958 SF_SET_LOCAL (symbolP);
1959 }
1960
1961 /*
1962 * Handle .ln directives.
1963 */
1964
1965 static void
1966 obj_coff_ln (appline)
1967 int appline;
1968 {
1969 int l;
1970
1971 if (! appline && def_symbol_in_progress != NULL)
1972 {
1973 as_warn (".ln pseudo-op inside .def/.endef: ignored.");
1974 demand_empty_rest_of_line ();
1975 return;
1976 } /* wrong context */
1977
1978 l = get_absolute_expression ();
1979 c_line_new (0, frag_now_fix (), l, frag_now);
1980 #ifndef NO_LISTING
1981 {
1982 extern int listing;
1983
1984 if (listing)
1985 {
1986 if (! appline)
1987 l += line_base - 1;
1988 listing_source_line ((unsigned int) l);
1989 }
1990
1991 }
1992 #endif
1993 demand_empty_rest_of_line ();
1994 }
1995
1996 /*
1997 * def()
1998 *
1999 * Handle .def directives.
2000 *
2001 * One might ask : why can't we symbol_new if the symbol does not
2002 * already exist and fill it with debug information. Because of
2003 * the C_EFCN special symbol. It would clobber the value of the
2004 * function symbol before we have a chance to notice that it is
2005 * a C_EFCN. And a second reason is that the code is more clear this
2006 * way. (at least I think it is :-).
2007 *
2008 */
2009
2010 #define SKIP_SEMI_COLON() while (*input_line_pointer++ != ';')
2011 #define SKIP_WHITESPACES() while (*input_line_pointer == ' ' || \
2012 *input_line_pointer == '\t') \
2013 input_line_pointer++;
2014
2015 static void
2016 obj_coff_def (what)
2017 int what;
2018 {
2019 char name_end; /* Char after the end of name */
2020 char *symbol_name; /* Name of the debug symbol */
2021 char *symbol_name_copy; /* Temporary copy of the name */
2022 unsigned int symbol_name_length;
2023
2024 if (def_symbol_in_progress != NULL)
2025 {
2026 as_warn (".def pseudo-op used inside of .def/.endef: ignored.");
2027 demand_empty_rest_of_line ();
2028 return;
2029 } /* if not inside .def/.endef */
2030
2031 SKIP_WHITESPACES ();
2032
2033 def_symbol_in_progress = (symbolS *) obstack_alloc (&notes, sizeof (*def_symbol_in_progress));
2034 memset (def_symbol_in_progress, 0, sizeof (*def_symbol_in_progress));
2035
2036 symbol_name = input_line_pointer;
2037 name_end = get_symbol_end ();
2038 symbol_name_length = strlen (symbol_name);
2039 symbol_name_copy = xmalloc (symbol_name_length + 1);
2040 strcpy (symbol_name_copy, symbol_name);
2041
2042 /* Initialize the new symbol */
2043 #ifdef STRIP_UNDERSCORE
2044 S_SET_NAME (def_symbol_in_progress, (*symbol_name_copy == '_'
2045 ? symbol_name_copy + 1
2046 : symbol_name_copy));
2047 #else /* STRIP_UNDERSCORE */
2048 S_SET_NAME (def_symbol_in_progress, symbol_name_copy);
2049 #endif /* STRIP_UNDERSCORE */
2050 /* free(symbol_name_copy); */
2051 def_symbol_in_progress->sy_name_offset = (unsigned long) ~0;
2052 def_symbol_in_progress->sy_number = ~0;
2053 def_symbol_in_progress->sy_frag = &zero_address_frag;
2054 S_SET_VALUE (def_symbol_in_progress, 0);
2055
2056 if (S_IS_STRING (def_symbol_in_progress))
2057 SF_SET_STRING (def_symbol_in_progress);
2058
2059 *input_line_pointer = name_end;
2060
2061 demand_empty_rest_of_line ();
2062 }
2063
2064 unsigned int dim_index;
2065
2066
2067 static void
2068 obj_coff_endef (ignore)
2069 int ignore;
2070 {
2071 symbolS *symbolP = 0;
2072 /* DIM BUG FIX sac@cygnus.com */
2073 dim_index = 0;
2074 if (def_symbol_in_progress == NULL)
2075 {
2076 as_warn (".endef pseudo-op used outside of .def/.endef: ignored.");
2077 demand_empty_rest_of_line ();
2078 return;
2079 } /* if not inside .def/.endef */
2080
2081 /* Set the section number according to storage class. */
2082 switch (S_GET_STORAGE_CLASS (def_symbol_in_progress))
2083 {
2084 case C_STRTAG:
2085 case C_ENTAG:
2086 case C_UNTAG:
2087 SF_SET_TAG (def_symbol_in_progress);
2088 /* intentional fallthrough */
2089 case C_FILE:
2090 case C_TPDEF:
2091 SF_SET_DEBUG (def_symbol_in_progress);
2092 S_SET_SEGMENT (def_symbol_in_progress, SEG_DEBUG);
2093 break;
2094
2095 case C_EFCN:
2096 SF_SET_LOCAL (def_symbol_in_progress); /* Do not emit this symbol. */
2097 /* intentional fallthrough */
2098 case C_BLOCK:
2099 SF_SET_PROCESS (def_symbol_in_progress); /* Will need processing before writing */
2100 /* intentional fallthrough */
2101 case C_FCN:
2102 S_SET_SEGMENT (def_symbol_in_progress, SEG_E0);
2103
2104 if (strcmp (S_GET_NAME (def_symbol_in_progress), ".bf") == 0)
2105 { /* .bf */
2106 if (function_lineoff < 0)
2107 {
2108 fprintf (stderr, "`.bf' symbol without preceding function\n");
2109 } /* missing function symbol */
2110 SA_GET_SYM_LNNOPTR (last_line_symbol) = function_lineoff;
2111
2112 SF_SET_PROCESS (last_line_symbol);
2113 function_lineoff = -1;
2114 }
2115 /* Value is always set to . */
2116 def_symbol_in_progress->sy_frag = frag_now;
2117 S_SET_VALUE (def_symbol_in_progress, (valueT) frag_now_fix ());
2118 break;
2119
2120 #ifdef C_AUTOARG
2121 case C_AUTOARG:
2122 #endif /* C_AUTOARG */
2123 case C_AUTO:
2124 case C_REG:
2125 case C_MOS:
2126 case C_MOE:
2127 case C_MOU:
2128 case C_ARG:
2129 case C_REGPARM:
2130 case C_FIELD:
2131 case C_EOS:
2132 SF_SET_DEBUG (def_symbol_in_progress);
2133 S_SET_SEGMENT (def_symbol_in_progress, absolute_section);
2134 break;
2135
2136 case C_EXT:
2137 case C_STAT:
2138 case C_LABEL:
2139 /* Valid but set somewhere else (s_comm, s_lcomm, colon) */
2140 break;
2141
2142 case C_USTATIC:
2143 case C_EXTDEF:
2144 case C_ULABEL:
2145 as_warn ("unexpected storage class %d", S_GET_STORAGE_CLASS (def_symbol_in_progress));
2146 break;
2147 } /* switch on storage class */
2148
2149 /* Now that we have built a debug symbol, try to find if we should
2150 merge with an existing symbol or not. If a symbol is C_EFCN or
2151 absolute_section or untagged SEG_DEBUG it never merges. We also
2152 don't merge labels, which are in a different namespace, nor
2153 symbols which have not yet been defined since they are typically
2154 unique, nor do we merge tags with non-tags. */
2155
2156 /* Two cases for functions. Either debug followed by definition or
2157 definition followed by debug. For definition first, we will
2158 merge the debug symbol into the definition. For debug first, the
2159 lineno entry MUST point to the definition function or else it
2160 will point off into space when crawl_symbols() merges the debug
2161 symbol into the real symbol. Therefor, let's presume the debug
2162 symbol is a real function reference. */
2163
2164 /* FIXME-SOON If for some reason the definition label/symbol is
2165 never seen, this will probably leave an undefined symbol at link
2166 time. */
2167
2168 if (S_GET_STORAGE_CLASS (def_symbol_in_progress) == C_EFCN
2169 || S_GET_STORAGE_CLASS (def_symbol_in_progress) == C_LABEL
2170 || (S_GET_SEGMENT (def_symbol_in_progress) == SEG_DEBUG
2171 && !SF_GET_TAG (def_symbol_in_progress))
2172 || S_GET_SEGMENT (def_symbol_in_progress) == absolute_section
2173 || def_symbol_in_progress->sy_value.X_op != O_constant
2174 || (symbolP = symbol_find_base (S_GET_NAME (def_symbol_in_progress), DO_NOT_STRIP)) == NULL
2175 || (SF_GET_TAG (def_symbol_in_progress) != SF_GET_TAG (symbolP)))
2176 {
2177 symbol_append (def_symbol_in_progress, symbol_lastP, &symbol_rootP,
2178 &symbol_lastP);
2179 }
2180 else
2181 {
2182 /* This symbol already exists, merge the newly created symbol
2183 into the old one. This is not mandatory. The linker can
2184 handle duplicate symbols correctly. But I guess that it save
2185 a *lot* of space if the assembly file defines a lot of
2186 symbols. [loic] */
2187
2188 /* The debug entry (def_symbol_in_progress) is merged into the
2189 previous definition. */
2190
2191 c_symbol_merge (def_symbol_in_progress, symbolP);
2192 /* FIXME-SOON Should *def_symbol_in_progress be free'd? xoxorich. */
2193 def_symbol_in_progress = symbolP;
2194
2195 if (SF_GET_FUNCTION (def_symbol_in_progress)
2196 || SF_GET_TAG (def_symbol_in_progress))
2197 {
2198 /* For functions, and tags, the symbol *must* be where the
2199 debug symbol appears. Move the existing symbol to the
2200 current place. */
2201 /* If it already is at the end of the symbol list, do nothing */
2202 if (def_symbol_in_progress != symbol_lastP)
2203 {
2204 symbol_remove (def_symbol_in_progress, &symbol_rootP,
2205 &symbol_lastP);
2206 symbol_append (def_symbol_in_progress, symbol_lastP,
2207 &symbol_rootP, &symbol_lastP);
2208 } /* if not already in place */
2209 } /* if function */
2210 } /* normal or mergable */
2211
2212 if (SF_GET_TAG (def_symbol_in_progress)
2213 && symbol_find_base (S_GET_NAME (def_symbol_in_progress), DO_NOT_STRIP) == NULL)
2214 {
2215 tag_insert (S_GET_NAME (def_symbol_in_progress), def_symbol_in_progress);
2216 }
2217
2218 if (SF_GET_FUNCTION (def_symbol_in_progress))
2219 {
2220 know (sizeof (def_symbol_in_progress) <= sizeof (long));
2221 function_lineoff
2222 = c_line_new (def_symbol_in_progress, 0, 0, &zero_address_frag);
2223
2224 SF_SET_PROCESS (def_symbol_in_progress);
2225
2226 if (symbolP == NULL)
2227 {
2228 /* That is, if this is the first time we've seen the
2229 function... */
2230 symbol_table_insert (def_symbol_in_progress);
2231 } /* definition follows debug */
2232 } /* Create the line number entry pointing to the function being defined */
2233
2234 def_symbol_in_progress = NULL;
2235 demand_empty_rest_of_line ();
2236 }
2237
2238 static void
2239 obj_coff_dim (ignore)
2240 int ignore;
2241 {
2242 int dim_index;
2243
2244 if (def_symbol_in_progress == NULL)
2245 {
2246 as_warn (".dim pseudo-op used outside of .def/.endef: ignored.");
2247 demand_empty_rest_of_line ();
2248 return;
2249 } /* if not inside .def/.endef */
2250
2251 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
2252
2253 for (dim_index = 0; dim_index < DIMNUM; dim_index++)
2254 {
2255 SKIP_WHITESPACES ();
2256 SA_SET_SYM_DIMEN (def_symbol_in_progress, dim_index,
2257 get_absolute_expression ());
2258
2259 switch (*input_line_pointer)
2260 {
2261 case ',':
2262 input_line_pointer++;
2263 break;
2264
2265 default:
2266 as_warn ("badly formed .dim directive ignored");
2267 /* intentional fallthrough */
2268 case '\n':
2269 case ';':
2270 dim_index = DIMNUM;
2271 break;
2272 }
2273 }
2274
2275 demand_empty_rest_of_line ();
2276 }
2277
2278 static void
2279 obj_coff_line (ignore)
2280 int ignore;
2281 {
2282 int this_base;
2283 const char *name;
2284
2285 if (def_symbol_in_progress == NULL)
2286 {
2287 obj_coff_ln (0);
2288 return;
2289 }
2290
2291 name = S_GET_NAME (def_symbol_in_progress);
2292 this_base = get_absolute_expression ();
2293
2294 /* Only .bf symbols indicate the use of a new base line number; the
2295 line numbers associated with .ef, .bb, .eb are relative to the
2296 start of the containing function. */
2297 if (!strcmp (".bf", name))
2298 {
2299 #if 0 /* XXX Can we ever have line numbers going backwards? */
2300 if (this_base > line_base)
2301 #endif
2302 {
2303 line_base = this_base;
2304 }
2305
2306 #ifndef NO_LISTING
2307 {
2308 extern int listing;
2309 if (listing)
2310 {
2311 listing_source_line ((unsigned int) line_base);
2312 }
2313 }
2314 #endif
2315 }
2316
2317 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
2318 SA_SET_SYM_LNNO (def_symbol_in_progress, this_base);
2319
2320 demand_empty_rest_of_line ();
2321 }
2322
2323 static void
2324 obj_coff_size (ignore)
2325 int ignore;
2326 {
2327 if (def_symbol_in_progress == NULL)
2328 {
2329 as_warn (".size pseudo-op used outside of .def/.endef ignored.");
2330 demand_empty_rest_of_line ();
2331 return;
2332 } /* if not inside .def/.endef */
2333
2334 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
2335 SA_SET_SYM_SIZE (def_symbol_in_progress, get_absolute_expression ());
2336 demand_empty_rest_of_line ();
2337 }
2338
2339 static void
2340 obj_coff_scl (ignore)
2341 int ignore;
2342 {
2343 if (def_symbol_in_progress == NULL)
2344 {
2345 as_warn (".scl pseudo-op used outside of .def/.endef ignored.");
2346 demand_empty_rest_of_line ();
2347 return;
2348 } /* if not inside .def/.endef */
2349
2350 S_SET_STORAGE_CLASS (def_symbol_in_progress, get_absolute_expression ());
2351 demand_empty_rest_of_line ();
2352 }
2353
2354 static void
2355 obj_coff_tag (ignore)
2356 int ignore;
2357 {
2358 char *symbol_name;
2359 char name_end;
2360
2361 if (def_symbol_in_progress == NULL)
2362 {
2363 as_warn (".tag pseudo-op used outside of .def/.endef ignored.");
2364 demand_empty_rest_of_line ();
2365 return;
2366 }
2367
2368 S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
2369 symbol_name = input_line_pointer;
2370 name_end = get_symbol_end ();
2371
2372 /* Assume that the symbol referred to by .tag is always defined.
2373 This was a bad assumption. I've added find_or_make. xoxorich. */
2374 SA_SET_SYM_TAGNDX (def_symbol_in_progress,
2375 (long) tag_find_or_make (symbol_name));
2376 if (SA_GET_SYM_TAGNDX (def_symbol_in_progress) == 0L)
2377 {
2378 as_warn ("tag not found for .tag %s", symbol_name);
2379 } /* not defined */
2380
2381 SF_SET_TAGGED (def_symbol_in_progress);
2382 *input_line_pointer = name_end;
2383
2384 demand_empty_rest_of_line ();
2385 }
2386
2387 static void
2388 obj_coff_type (ignore)
2389 int ignore;
2390 {
2391 if (def_symbol_in_progress == NULL)
2392 {
2393 as_warn (".type pseudo-op used outside of .def/.endef ignored.");
2394 demand_empty_rest_of_line ();
2395 return;
2396 } /* if not inside .def/.endef */
2397
2398 S_SET_DATA_TYPE (def_symbol_in_progress, get_absolute_expression ());
2399
2400 if (ISFCN (S_GET_DATA_TYPE (def_symbol_in_progress)) &&
2401 S_GET_STORAGE_CLASS (def_symbol_in_progress) != C_TPDEF)
2402 {
2403 SF_SET_FUNCTION (def_symbol_in_progress);
2404 } /* is a function */
2405
2406 demand_empty_rest_of_line ();
2407 }
2408
2409 static void
2410 obj_coff_val (ignore)
2411 int ignore;
2412 {
2413 if (def_symbol_in_progress == NULL)
2414 {
2415 as_warn (".val pseudo-op used outside of .def/.endef ignored.");
2416 demand_empty_rest_of_line ();
2417 return;
2418 } /* if not inside .def/.endef */
2419
2420 if (is_name_beginner (*input_line_pointer))
2421 {
2422 char *symbol_name = input_line_pointer;
2423 char name_end = get_symbol_end ();
2424
2425 if (!strcmp (symbol_name, "."))
2426 {
2427 def_symbol_in_progress->sy_frag = frag_now;
2428 S_SET_VALUE (def_symbol_in_progress, (valueT) frag_now_fix ());
2429 /* If the .val is != from the .def (e.g. statics) */
2430 }
2431 else if (strcmp (S_GET_NAME (def_symbol_in_progress), symbol_name))
2432 {
2433 def_symbol_in_progress->sy_value.X_op = O_symbol;
2434 def_symbol_in_progress->sy_value.X_add_symbol =
2435 symbol_find_or_make (symbol_name);
2436 def_symbol_in_progress->sy_value.X_op_symbol = NULL;
2437 def_symbol_in_progress->sy_value.X_add_number = 0;
2438
2439 /* If the segment is undefined when the forward reference is
2440 resolved, then copy the segment id from the forward
2441 symbol. */
2442 SF_SET_GET_SEGMENT (def_symbol_in_progress);
2443
2444 /* FIXME: gcc can generate address expressions
2445 here in unusual cases (search for "obscure"
2446 in sdbout.c). We just ignore the offset
2447 here, thus generating incorrect debugging
2448 information. We ignore the rest of the
2449 line just below. */
2450 }
2451 /* Otherwise, it is the name of a non debug symbol and
2452 its value will be calculated later. */
2453 *input_line_pointer = name_end;
2454
2455 /* FIXME: this is to avoid an error message in the
2456 FIXME case mentioned just above. */
2457 while (! is_end_of_line[(unsigned char) *input_line_pointer])
2458 ++input_line_pointer;
2459 }
2460 else
2461 {
2462 S_SET_VALUE (def_symbol_in_progress,
2463 (valueT) get_absolute_expression ());
2464 } /* if symbol based */
2465
2466 demand_empty_rest_of_line ();
2467 }
2468
2469 void
2470 obj_read_begin_hook ()
2471 {
2472 /* These had better be the same. Usually 18 bytes. */
2473 #ifndef BFD_HEADERS
2474 know (sizeof (SYMENT) == sizeof (AUXENT));
2475 know (SYMESZ == AUXESZ);
2476 #endif
2477 tag_init ();
2478 }
2479
2480 /* This function runs through the symbol table and puts all the
2481 externals onto another chain */
2482
2483 /* The chain of globals. */
2484 symbolS *symbol_globalP;
2485 symbolS *symbol_global_lastP;
2486
2487 /* The chain of externals */
2488 symbolS *symbol_externP;
2489 symbolS *symbol_extern_lastP;
2490
2491 stack *block_stack;
2492 symbolS *last_functionP;
2493 symbolS *last_tagP;
2494
2495 static unsigned int
2496 yank_symbols ()
2497 {
2498 symbolS *symbolP;
2499 unsigned int symbol_number = 0;
2500 unsigned int last_file_symno = 0;
2501
2502 struct filename_list *filename_list_scan = filename_list_head;
2503
2504 for (symbolP = symbol_rootP;
2505 symbolP;
2506 symbolP = symbolP ? symbol_next (symbolP) : symbol_rootP)
2507 {
2508 if (symbolP->sy_mri_common)
2509 {
2510 if (S_GET_STORAGE_CLASS (symbolP) == C_EXT)
2511 as_bad ("%s: global symbols not supported in common sections",
2512 S_GET_NAME (symbolP));
2513 symbol_remove (symbolP, &symbol_rootP, &symbol_lastP);
2514 continue;
2515 }
2516
2517 if (!SF_GET_DEBUG (symbolP))
2518 {
2519 /* Debug symbols do not need all this rubbish */
2520 symbolS *real_symbolP;
2521
2522 /* L* and C_EFCN symbols never merge. */
2523 if (!SF_GET_LOCAL (symbolP)
2524 && S_GET_STORAGE_CLASS (symbolP) != C_LABEL
2525 && symbolP->sy_value.X_op == O_constant
2526 && (real_symbolP = symbol_find_base (S_GET_NAME (symbolP), DO_NOT_STRIP))
2527 && real_symbolP != symbolP)
2528 {
2529 /* FIXME-SOON: where do dups come from?
2530 Maybe tag references before definitions? xoxorich. */
2531 /* Move the debug data from the debug symbol to the
2532 real symbol. Do NOT do the oposite (i.e. move from
2533 real symbol to debug symbol and remove real symbol from the
2534 list.) Because some pointers refer to the real symbol
2535 whereas no pointers refer to the debug symbol. */
2536 c_symbol_merge (symbolP, real_symbolP);
2537 /* Replace the current symbol by the real one */
2538 /* The symbols will never be the last or the first
2539 because : 1st symbol is .file and 3 last symbols are
2540 .text, .data, .bss */
2541 symbol_remove (real_symbolP, &symbol_rootP, &symbol_lastP);
2542 symbol_insert (real_symbolP, symbolP, &symbol_rootP, &symbol_lastP);
2543 symbol_remove (symbolP, &symbol_rootP, &symbol_lastP);
2544 symbolP = real_symbolP;
2545 } /* if not local but dup'd */
2546
2547 if (flag_readonly_data_in_text && (S_GET_SEGMENT (symbolP) == SEG_E1))
2548 {
2549 S_SET_SEGMENT (symbolP, SEG_E0);
2550 } /* push data into text */
2551
2552 resolve_symbol_value (symbolP);
2553
2554 if (S_GET_STORAGE_CLASS (symbolP) == C_NULL)
2555 {
2556 if (!S_IS_DEFINED (symbolP) && !SF_GET_LOCAL (symbolP))
2557 {
2558 S_SET_EXTERNAL (symbolP);
2559 }
2560 else if (S_GET_SEGMENT (symbolP) == SEG_E0)
2561 {
2562 S_SET_STORAGE_CLASS (symbolP, C_LABEL);
2563 }
2564 else
2565 {
2566 S_SET_STORAGE_CLASS (symbolP, C_STAT);
2567 }
2568 }
2569
2570 /* Mainly to speed up if not -g */
2571 if (SF_GET_PROCESS (symbolP))
2572 {
2573 /* Handle the nested blocks auxiliary info. */
2574 if (S_GET_STORAGE_CLASS (symbolP) == C_BLOCK)
2575 {
2576 if (!strcmp (S_GET_NAME (symbolP), ".bb"))
2577 stack_push (block_stack, (char *) &symbolP);
2578 else
2579 { /* .eb */
2580 register symbolS *begin_symbolP;
2581 begin_symbolP = *(symbolS **) stack_pop (block_stack);
2582 if (begin_symbolP == (symbolS *) 0)
2583 as_warn ("mismatched .eb");
2584 else
2585 SA_SET_SYM_ENDNDX (begin_symbolP, symbol_number + 2);
2586 }
2587 }
2588 /* If we are able to identify the type of a function, and we
2589 are out of a function (last_functionP == 0) then, the
2590 function symbol will be associated with an auxiliary
2591 entry. */
2592 if (last_functionP == (symbolS *) 0 &&
2593 SF_GET_FUNCTION (symbolP))
2594 {
2595 last_functionP = symbolP;
2596
2597 if (S_GET_NUMBER_AUXILIARY (symbolP) < 1)
2598 {
2599 S_SET_NUMBER_AUXILIARY (symbolP, 1);
2600 } /* make it at least 1 */
2601
2602 /* Clobber possible stale .dim information. */
2603 #if 0
2604 /* Iffed out by steve - this fries the lnnoptr info too */
2605 bzero (symbolP->sy_symbol.ost_auxent[0].x_sym.x_fcnary.x_ary.x_dimen,
2606 sizeof (symbolP->sy_symbol.ost_auxent[0].x_sym.x_fcnary.x_ary.x_dimen));
2607 #endif
2608 }
2609 /* The C_FCN doesn't need any additional information. I
2610 don't even know if this is needed for sdb. But the
2611 standard assembler generates it, so... */
2612 if (S_GET_STORAGE_CLASS (symbolP) == C_EFCN)
2613 {
2614 if (last_functionP == (symbolS *) 0)
2615 as_fatal ("C_EFCN symbol out of scope");
2616 SA_SET_SYM_FSIZE (last_functionP,
2617 (long) (S_GET_VALUE (symbolP) -
2618 S_GET_VALUE (last_functionP)));
2619 SA_SET_SYM_ENDNDX (last_functionP, symbol_number);
2620 last_functionP = (symbolS *) 0;
2621 }
2622 }
2623 }
2624 else if (SF_GET_TAG (symbolP))
2625 {
2626 /* First descriptor of a structure must point to
2627 the first slot after the structure description. */
2628 last_tagP = symbolP;
2629
2630 }
2631 else if (S_GET_STORAGE_CLASS (symbolP) == C_EOS)
2632 {
2633 /* +2 take in account the current symbol */
2634 SA_SET_SYM_ENDNDX (last_tagP, symbol_number + 2);
2635 }
2636 else if (S_GET_STORAGE_CLASS (symbolP) == C_FILE)
2637 {
2638 /* If the filename was too long to fit in the
2639 auxent, put it in the string table */
2640 if (SA_GET_FILE_FNAME_ZEROS (symbolP) == 0)
2641 {
2642 SA_SET_FILE_FNAME_OFFSET (symbolP, string_byte_count);
2643 string_byte_count += strlen (filename_list_scan->filename) + 1;
2644 filename_list_scan = filename_list_scan->next;
2645 }
2646 if (S_GET_VALUE (symbolP))
2647 {
2648 S_SET_VALUE (symbolP, last_file_symno);
2649 last_file_symno = symbol_number;
2650 } /* no one points at the first .file symbol */
2651 } /* if debug or tag or eos or file */
2652
2653 /* We must put the external symbols apart. The loader
2654 does not bomb if we do not. But the references in
2655 the endndx field for a .bb symbol are not corrected
2656 if an external symbol is removed between .bb and .be.
2657 I.e in the following case :
2658 [20] .bb endndx = 22
2659 [21] foo external
2660 [22] .be
2661 ld will move the symbol 21 to the end of the list but
2662 endndx will still be 22 instead of 21. */
2663
2664
2665 if (SF_GET_LOCAL (symbolP))
2666 {
2667 /* remove C_EFCN and LOCAL (L...) symbols */
2668 /* next pointer remains valid */
2669 symbol_remove (symbolP, &symbol_rootP, &symbol_lastP);
2670
2671 }
2672 else if (!S_IS_DEFINED (symbolP)
2673 && !S_IS_DEBUG (symbolP)
2674 && !SF_GET_STATICS (symbolP) &&
2675 S_GET_STORAGE_CLASS (symbolP) == C_EXT)
2676 { /* C_EXT && !SF_GET_FUNCTION(symbolP)) */
2677 /* if external, Remove from the list */
2678 symbolS *hold = symbol_previous (symbolP);
2679
2680 symbol_remove (symbolP, &symbol_rootP, &symbol_lastP);
2681 symbol_clear_list_pointers (symbolP);
2682 symbol_append (symbolP, symbol_extern_lastP, &symbol_externP, &symbol_extern_lastP);
2683 symbolP = hold;
2684 }
2685 else if (! S_IS_DEBUG (symbolP)
2686 && ! SF_GET_STATICS (symbolP)
2687 && ! SF_GET_FUNCTION (symbolP)
2688 && S_GET_STORAGE_CLASS (symbolP) == C_EXT)
2689 {
2690 symbolS *hold = symbol_previous (symbolP);
2691
2692 /* The O'Reilly COFF book says that defined global symbols
2693 come at the end of the symbol table, just before
2694 undefined global symbols. */
2695
2696 symbol_remove (symbolP, &symbol_rootP, &symbol_lastP);
2697 symbol_clear_list_pointers (symbolP);
2698 symbol_append (symbolP, symbol_global_lastP, &symbol_globalP,
2699 &symbol_global_lastP);
2700 symbolP = hold;
2701 }
2702 else
2703 {
2704 if (SF_GET_STRING (symbolP))
2705 {
2706 symbolP->sy_name_offset = string_byte_count;
2707 string_byte_count += strlen (S_GET_NAME (symbolP)) + 1;
2708 }
2709 else
2710 {
2711 symbolP->sy_name_offset = 0;
2712 } /* fix "long" names */
2713
2714 symbolP->sy_number = symbol_number;
2715 symbol_number += 1 + S_GET_NUMBER_AUXILIARY (symbolP);
2716 } /* if local symbol */
2717 } /* traverse the symbol list */
2718 return symbol_number;
2719
2720 }
2721
2722
2723 static unsigned int
2724 glue_symbols (head, tail)
2725 symbolS **head;
2726 symbolS **tail;
2727 {
2728 unsigned int symbol_number = 0;
2729 symbolS *symbolP;
2730
2731 for (symbolP = *head; *head != NULL;)
2732 {
2733 symbolS *tmp = *head;
2734
2735 /* append */
2736 symbol_remove (tmp, head, tail);
2737 symbol_append (tmp, symbol_lastP, &symbol_rootP, &symbol_lastP);
2738
2739 /* and process */
2740 if (SF_GET_STRING (tmp))
2741 {
2742 tmp->sy_name_offset = string_byte_count;
2743 string_byte_count += strlen (S_GET_NAME (tmp)) + 1;
2744 }
2745 else
2746 {
2747 tmp->sy_name_offset = 0;
2748 } /* fix "long" names */
2749
2750 tmp->sy_number = symbol_number;
2751 symbol_number += 1 + S_GET_NUMBER_AUXILIARY (tmp);
2752 } /* append the entire extern chain */
2753
2754 return symbol_number;
2755 }
2756
2757 static unsigned int
2758 tie_tags ()
2759 {
2760 unsigned int symbol_number = 0;
2761
2762 symbolS *symbolP;
2763 for (symbolP = symbol_rootP; symbolP; symbolP =
2764 symbol_next (symbolP))
2765 {
2766 symbolP->sy_number = symbol_number;
2767
2768
2769
2770 if (SF_GET_TAGGED (symbolP))
2771 {
2772 SA_SET_SYM_TAGNDX
2773 (symbolP,
2774 ((symbolS *) SA_GET_SYM_TAGNDX (symbolP))->sy_number);
2775 }
2776
2777 symbol_number += 1 + S_GET_NUMBER_AUXILIARY (symbolP);
2778 }
2779 return symbol_number;
2780
2781 }
2782
2783 static void
2784 crawl_symbols (h, abfd)
2785 object_headers *h;
2786 bfd * abfd;
2787 {
2788 unsigned int i;
2789
2790 /* Initialize the stack used to keep track of the matching .bb .be */
2791
2792 block_stack = stack_init (512, sizeof (symbolS *));
2793
2794 /* The symbol list should be ordered according to the following sequence
2795 * order :
2796 * . .file symbol
2797 * . debug entries for functions
2798 * . fake symbols for the sections, including.text .data and .bss
2799 * . defined symbols
2800 * . undefined symbols
2801 * But this is not mandatory. The only important point is to put the
2802 * undefined symbols at the end of the list.
2803 */
2804
2805 if (symbol_rootP == NULL
2806 || S_GET_STORAGE_CLASS (symbol_rootP) != C_FILE)
2807 {
2808 c_dot_file_symbol ("fake");
2809 }
2810 /* Is there a .file symbol ? If not insert one at the beginning. */
2811
2812 /*
2813 * Build up static symbols for the sections, they are filled in later
2814 */
2815
2816
2817 for (i = SEG_E0; i < SEG_E9; i++)
2818 {
2819 if (segment_info[i].scnhdr.s_name[0])
2820 {
2821 char name[9];
2822
2823 strncpy (name, segment_info[i].scnhdr.s_name, 8);
2824 name[8] = '\0';
2825 segment_info[i].dot = c_section_symbol (name, i - SEG_E0 + 1);
2826 }
2827 }
2828
2829
2830 /* Take all the externals out and put them into another chain */
2831 H_SET_SYMBOL_TABLE_SIZE (h, yank_symbols ());
2832 /* Take the externals and glue them onto the end.*/
2833 H_SET_SYMBOL_TABLE_SIZE (h,
2834 (H_GET_SYMBOL_COUNT (h)
2835 + glue_symbols (&symbol_globalP,
2836 &symbol_global_lastP)
2837 + glue_symbols (&symbol_externP,
2838 &symbol_extern_lastP)));
2839
2840 H_SET_SYMBOL_TABLE_SIZE (h, tie_tags ());
2841 know (symbol_globalP == NULL);
2842 know (symbol_global_lastP == NULL);
2843 know (symbol_externP == NULL);
2844 know (symbol_extern_lastP == NULL);
2845 }
2846
2847 /*
2848 * Find strings by crawling along symbol table chain.
2849 */
2850
2851 void
2852 w_strings (where)
2853 char *where;
2854 {
2855 symbolS *symbolP;
2856 struct filename_list *filename_list_scan = filename_list_head;
2857
2858 /* Gotta do md_ byte-ordering stuff for string_byte_count first - KWK */
2859 md_number_to_chars (where, (valueT) string_byte_count, 4);
2860 where += 4;
2861 for (symbolP = symbol_rootP;
2862 symbolP;
2863 symbolP = symbol_next (symbolP))
2864 {
2865 unsigned int size;
2866
2867 if (SF_GET_STRING (symbolP))
2868 {
2869 size = strlen (S_GET_NAME (symbolP)) + 1;
2870 memcpy (where, S_GET_NAME (symbolP), size);
2871 where += size;
2872 }
2873 if (S_GET_STORAGE_CLASS (symbolP) == C_FILE
2874 && SA_GET_FILE_FNAME_ZEROS (symbolP) == 0)
2875 {
2876 size = strlen (filename_list_scan->filename) + 1;
2877 memcpy (where, filename_list_scan->filename, size);
2878 filename_list_scan = filename_list_scan ->next;
2879 where += size;
2880 }
2881 }
2882 }
2883
2884 static void
2885 do_linenos_for (abfd, h, file_cursor)
2886 bfd * abfd;
2887 object_headers * h;
2888 unsigned long *file_cursor;
2889 {
2890 unsigned int idx;
2891 unsigned long start = *file_cursor;
2892
2893 for (idx = SEG_E0; idx < SEG_E9; idx++)
2894 {
2895 segment_info_type *s = segment_info + idx;
2896
2897
2898 if (s->scnhdr.s_nlnno != 0)
2899 {
2900 struct lineno_list *line_ptr;
2901
2902 struct external_lineno *buffer =
2903 (struct external_lineno *) xmalloc (s->scnhdr.s_nlnno * LINESZ);
2904
2905 struct external_lineno *dst = buffer;
2906
2907 /* Run through the table we've built and turn it into its external
2908 form, take this chance to remove duplicates */
2909
2910 for (line_ptr = s->lineno_list_head;
2911 line_ptr != (struct lineno_list *) NULL;
2912 line_ptr = line_ptr->next)
2913 {
2914
2915 if (line_ptr->line.l_lnno == 0)
2916 {
2917 /* Turn a pointer to a symbol into the symbols' index */
2918 line_ptr->line.l_addr.l_symndx =
2919 ((symbolS *) line_ptr->line.l_addr.l_symndx)->sy_number;
2920 }
2921 else
2922 {
2923 line_ptr->line.l_addr.l_paddr += ((struct frag *) (line_ptr->frag))->fr_address;
2924 }
2925
2926
2927 (void) bfd_coff_swap_lineno_out (abfd, &(line_ptr->line), dst);
2928 dst++;
2929
2930 }
2931
2932 s->scnhdr.s_lnnoptr = *file_cursor;
2933
2934 bfd_write (buffer, 1, s->scnhdr.s_nlnno * LINESZ, abfd);
2935 free (buffer);
2936
2937 *file_cursor += s->scnhdr.s_nlnno * LINESZ;
2938 }
2939 }
2940 H_SET_LINENO_SIZE (h, *file_cursor - start);
2941 }
2942
2943
2944 /* Now we run through the list of frag chains in a segment and
2945 make all the subsegment frags appear at the end of the
2946 list, as if the seg 0 was extra long */
2947
2948 static void
2949 remove_subsegs ()
2950 {
2951 unsigned int i;
2952
2953 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
2954 {
2955 frchainS *head = segment_info[i].frchainP;
2956 fragS dummy;
2957 fragS *prev_frag = &dummy;
2958
2959 while (head && head->frch_seg == i)
2960 {
2961 prev_frag->fr_next = head->frch_root;
2962 prev_frag = head->frch_last;
2963 head = head->frch_next;
2964 }
2965 prev_frag->fr_next = 0;
2966 }
2967 }
2968
2969 unsigned long machine;
2970 int coff_flags;
2971 extern void
2972 write_object_file ()
2973 {
2974 int i;
2975 char *name;
2976 struct frchain *frchain_ptr;
2977
2978 object_headers headers;
2979 unsigned long file_cursor;
2980 bfd *abfd;
2981 unsigned int addr;
2982 abfd = bfd_openw (out_file_name, TARGET_FORMAT);
2983
2984
2985 if (abfd == 0)
2986 {
2987 as_perror ("FATAL: Can't create %s", out_file_name);
2988 exit (EXIT_FAILURE);
2989 }
2990 bfd_set_format (abfd, bfd_object);
2991 bfd_set_arch_mach (abfd, BFD_ARCH, machine);
2992
2993 string_byte_count = 4;
2994
2995 for (frchain_ptr = frchain_root;
2996 frchain_ptr != (struct frchain *) NULL;
2997 frchain_ptr = frchain_ptr->frch_next)
2998 {
2999 /* Run through all the sub-segments and align them up. Also
3000 close any open frags. We tack a .fill onto the end of the
3001 frag chain so that any .align's size can be worked by looking
3002 at the next frag. */
3003
3004 subseg_set (frchain_ptr->frch_seg, frchain_ptr->frch_subseg);
3005 #ifndef SUB_SEGMENT_ALIGN
3006 #define SUB_SEGMENT_ALIGN(SEG) 1
3007 #endif
3008 frag_align (SUB_SEGMENT_ALIGN (now_seg), NOP_OPCODE);
3009 frag_wane (frag_now);
3010 frag_now->fr_fix = 0;
3011 know (frag_now->fr_next == NULL);
3012 }
3013
3014
3015 remove_subsegs ();
3016
3017
3018 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
3019 {
3020 relax_segment (segment_info[i].frchainP->frch_root, i);
3021 }
3022
3023 H_SET_NUMBER_OF_SECTIONS (&headers, 0);
3024
3025 /* Find out how big the sections are, and set the addresses. */
3026 addr = 0;
3027 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
3028 {
3029 long size;
3030
3031 segment_info[i].scnhdr.s_paddr = addr;
3032 segment_info[i].scnhdr.s_vaddr = addr;
3033
3034 if (segment_info[i].scnhdr.s_name[0])
3035 {
3036 H_SET_NUMBER_OF_SECTIONS (&headers,
3037 H_GET_NUMBER_OF_SECTIONS (&headers) + 1);
3038 }
3039
3040 size = size_section (abfd, (unsigned int) i);
3041 addr += size;
3042
3043 /* I think the section alignment is only used on the i960; the
3044 i960 needs it, and it should do no harm on other targets. */
3045 segment_info[i].scnhdr.s_align = section_alignment[i];
3046
3047 if (i == SEG_E0)
3048 H_SET_TEXT_SIZE (&headers, size);
3049 else if (i == SEG_E1)
3050 H_SET_DATA_SIZE (&headers, size);
3051 else if (i == SEG_E2)
3052 H_SET_BSS_SIZE (&headers, size);
3053 }
3054
3055 /* Turn the gas native symbol table shape into a coff symbol table */
3056 crawl_symbols (&headers, abfd);
3057
3058 if (string_byte_count == 4)
3059 string_byte_count = 0;
3060
3061 H_SET_STRING_SIZE (&headers, string_byte_count);
3062
3063 #ifdef tc_frob_file
3064 tc_frob_file ();
3065 #endif
3066
3067 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
3068 {
3069 fixup_mdeps (segment_info[i].frchainP->frch_root, &headers, i);
3070 fixup_segment (&segment_info[i], i);
3071 }
3072
3073 /* Look for ".stab" segments and fill in their initial symbols
3074 correctly. */
3075 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
3076 {
3077 name = segment_info[i].scnhdr.s_name;
3078
3079 if (name != NULL
3080 && strncmp (".stab", name, 5) == 0
3081 && strncmp (".stabstr", name, 8) != 0)
3082 adjust_stab_section (abfd, i);
3083 }
3084
3085 file_cursor = H_GET_TEXT_FILE_OFFSET (&headers);
3086
3087 bfd_seek (abfd, (file_ptr) file_cursor, 0);
3088
3089 /* Plant the data */
3090
3091 fill_section (abfd, &headers, &file_cursor);
3092
3093 do_relocs_for (abfd, &headers, &file_cursor);
3094
3095 do_linenos_for (abfd, &headers, &file_cursor);
3096
3097 H_SET_FILE_MAGIC_NUMBER (&headers, COFF_MAGIC);
3098 #ifndef OBJ_COFF_OMIT_TIMESTAMP
3099 H_SET_TIME_STAMP (&headers, (long)time((time_t *)0));
3100 #else
3101 H_SET_TIME_STAMP (&headers, 0);
3102 #endif
3103 #ifdef TC_COFF_SET_MACHINE
3104 TC_COFF_SET_MACHINE (&headers);
3105 #endif
3106
3107 #ifndef COFF_FLAGS
3108 #define COFF_FLAGS 0
3109 #endif
3110
3111 #ifdef KEEP_RELOC_INFO
3112 H_SET_FLAGS (&headers, ((H_GET_LINENO_SIZE(&headers) ? 0 : F_LNNO) |
3113 COFF_FLAGS | coff_flags));
3114 #else
3115 H_SET_FLAGS (&headers, ((H_GET_LINENO_SIZE(&headers) ? 0 : F_LNNO) |
3116 (H_GET_RELOCATION_SIZE(&headers) ? 0 : F_RELFLG) |
3117 COFF_FLAGS | coff_flags));
3118 #endif
3119
3120 {
3121 unsigned int symtable_size = H_GET_SYMBOL_TABLE_SIZE (&headers);
3122 char *buffer1 = xmalloc (symtable_size + string_byte_count + 1);
3123
3124 H_SET_SYMBOL_TABLE_POINTER (&headers, bfd_tell (abfd));
3125 w_symbols (abfd, buffer1, symbol_rootP);
3126 if (string_byte_count > 0)
3127 w_strings (buffer1 + symtable_size);
3128 bfd_write (buffer1, 1, symtable_size + string_byte_count, abfd);
3129 free (buffer1);
3130 }
3131
3132 coff_header_append (abfd, &headers);
3133 #if 0
3134 /* Recent changes to write need this, but where it should
3135 go is up to Ken.. */
3136 if (bfd_close_all_done (abfd) == false)
3137 as_fatal ("Can't close %s: %s", out_file_name,
3138 bfd_errmsg (bfd_get_error ()));
3139 #else
3140 {
3141 extern bfd *stdoutput;
3142 stdoutput = abfd;
3143 }
3144 #endif
3145
3146 }
3147
3148 /* Add a new segment. This is called from subseg_new via the
3149 obj_new_segment macro. */
3150
3151 segT
3152 obj_coff_add_segment (name)
3153 const char *name;
3154 {
3155 unsigned int len;
3156 unsigned int i;
3157
3158 /* Find out if we've already got a section of this name. */
3159 len = strlen (name);
3160 if (len < sizeof (segment_info[i].scnhdr.s_name))
3161 ++len;
3162 else
3163 len = sizeof (segment_info[i].scnhdr.s_name);
3164 for (i = SEG_E0; i < SEG_E9 && segment_info[i].scnhdr.s_name[0]; i++)
3165 if (strncmp (segment_info[i].scnhdr.s_name, name, len) == 0
3166 && (len == sizeof (segment_info[i].scnhdr.s_name)
3167 || segment_info[i].scnhdr.s_name[len] == '\0'))
3168 return (segT) i;
3169
3170 if (i == SEG_E9)
3171 {
3172 as_bad ("Too many new sections; can't add \"%s\"", name);
3173 return now_seg;
3174 }
3175
3176 /* Add a new section. */
3177 strncpy (segment_info[i].scnhdr.s_name, name,
3178 sizeof (segment_info[i].scnhdr.s_name));
3179 segment_info[i].scnhdr.s_flags = STYP_REG;
3180
3181 return (segT) i;
3182 }
3183
3184 /*
3185 * implement the .section pseudo op:
3186 * .section name {, "flags"}
3187 * ^ ^
3188 * | +--- optional flags: 'b' for bss
3189 * | 'i' for info
3190 * +-- section name 'l' for lib
3191 * 'n' for noload
3192 * 'o' for over
3193 * 'w' for data
3194 * 'd' (apparently m88k for data)
3195 * 'x' for text
3196 * But if the argument is not a quoted string, treat it as a
3197 * subsegment number.
3198 */
3199
3200 void
3201 obj_coff_section (ignore)
3202 int ignore;
3203 {
3204 /* Strip out the section name */
3205 char *section_name;
3206 char *section_name_end;
3207 char c;
3208 int argp;
3209 unsigned int len;
3210 unsigned int exp;
3211 long flags;
3212
3213 if (flag_mri)
3214 {
3215 char type;
3216
3217 s_mri_sect (&type);
3218 flags = 0;
3219 if (type == 'C')
3220 flags = STYP_TEXT;
3221 else if (type == 'D')
3222 flags = STYP_DATA;
3223 segment_info[now_seg].scnhdr.s_flags |= flags;
3224
3225 return;
3226 }
3227
3228 section_name = input_line_pointer;
3229 c = get_symbol_end ();
3230 section_name_end = input_line_pointer;
3231
3232 len = section_name_end - section_name;
3233 input_line_pointer++;
3234 SKIP_WHITESPACE ();
3235
3236 argp = 0;
3237 if (c == ',')
3238 argp = 1;
3239 else if (*input_line_pointer == ',')
3240 {
3241 argp = 1;
3242 ++input_line_pointer;
3243 SKIP_WHITESPACE ();
3244 }
3245
3246 exp = 0;
3247 flags = 0;
3248 if (argp)
3249 {
3250 if (*input_line_pointer != '"')
3251 exp = get_absolute_expression ();
3252 else
3253 {
3254 ++input_line_pointer;
3255 while (*input_line_pointer != '"'
3256 && ! is_end_of_line[(unsigned char) *input_line_pointer])
3257 {
3258 switch (*input_line_pointer)
3259 {
3260 case 'b': flags |= STYP_BSS; break;
3261 case 'i': flags |= STYP_INFO; break;
3262 case 'l': flags |= STYP_LIB; break;
3263 case 'n': flags |= STYP_NOLOAD; break;
3264 case 'o': flags |= STYP_OVER; break;
3265 case 'd':
3266 case 'w': flags |= STYP_DATA; break;
3267 case 'x': flags |= STYP_TEXT; break;
3268 default:
3269 as_warn("unknown section attribute '%c'",
3270 *input_line_pointer);
3271 break;
3272 }
3273 ++input_line_pointer;
3274 }
3275 if (*input_line_pointer == '"')
3276 ++input_line_pointer;
3277 }
3278 }
3279
3280 subseg_new (section_name, (subsegT) exp);
3281
3282 segment_info[now_seg].scnhdr.s_flags |= flags;
3283
3284 *section_name_end = c;
3285 }
3286
3287
3288 static void
3289 obj_coff_text (ignore)
3290 int ignore;
3291 {
3292 subseg_new (".text", get_absolute_expression ());
3293 }
3294
3295
3296 static void
3297 obj_coff_data (ignore)
3298 int ignore;
3299 {
3300 if (flag_readonly_data_in_text)
3301 subseg_new (".text", get_absolute_expression () + 1000);
3302 else
3303 subseg_new (".data", get_absolute_expression ());
3304 }
3305
3306 static void
3307 obj_coff_bss (ignore)
3308 int ignore;
3309 {
3310 if (*input_line_pointer == '\n') /* .bss */
3311 subseg_new(".bss", get_absolute_expression());
3312 else /* .bss id,expr */
3313 obj_coff_lcomm(0);
3314 }
3315
3316 static void
3317 obj_coff_ident (ignore)
3318 int ignore;
3319 {
3320 segT current_seg = now_seg; /* save current seg */
3321 subsegT current_subseg = now_subseg;
3322 subseg_new (".comment", 0); /* .comment seg */
3323 stringer (1); /* read string */
3324 subseg_set (current_seg, current_subseg); /* restore current seg */
3325 }
3326
3327 void
3328 c_symbol_merge (debug, normal)
3329 symbolS *debug;
3330 symbolS *normal;
3331 {
3332 S_SET_DATA_TYPE (normal, S_GET_DATA_TYPE (debug));
3333 S_SET_STORAGE_CLASS (normal, S_GET_STORAGE_CLASS (debug));
3334
3335 if (S_GET_NUMBER_AUXILIARY (debug) > S_GET_NUMBER_AUXILIARY (normal))
3336 {
3337 S_SET_NUMBER_AUXILIARY (normal, S_GET_NUMBER_AUXILIARY (debug));
3338 } /* take the most we have */
3339
3340 if (S_GET_NUMBER_AUXILIARY (debug) > 0)
3341 {
3342 memcpy ((char *) &normal->sy_symbol.ost_auxent[0],
3343 (char *) &debug->sy_symbol.ost_auxent[0],
3344 (unsigned int) (S_GET_NUMBER_AUXILIARY (debug) * AUXESZ));
3345 } /* Move all the auxiliary information */
3346
3347 /* Move the debug flags. */
3348 SF_SET_DEBUG_FIELD (normal, SF_GET_DEBUG_FIELD (debug));
3349 } /* c_symbol_merge() */
3350
3351 static int
3352 c_line_new (symbol, paddr, line_number, frag)
3353 symbolS * symbol;
3354 long paddr;
3355 int line_number;
3356 fragS * frag;
3357 {
3358 struct lineno_list *new_line =
3359 (struct lineno_list *) xmalloc (sizeof (struct lineno_list));
3360
3361 segment_info_type *s = segment_info + now_seg;
3362 new_line->line.l_lnno = line_number;
3363
3364 if (line_number == 0)
3365 {
3366 last_line_symbol = symbol;
3367 new_line->line.l_addr.l_symndx = (long) symbol;
3368 }
3369 else
3370 {
3371 new_line->line.l_addr.l_paddr = paddr;
3372 }
3373
3374 new_line->frag = (char *) frag;
3375 new_line->next = (struct lineno_list *) NULL;
3376
3377
3378 if (s->lineno_list_head == (struct lineno_list *) NULL)
3379 {
3380 s->lineno_list_head = new_line;
3381 }
3382 else
3383 {
3384 s->lineno_list_tail->next = new_line;
3385 }
3386 s->lineno_list_tail = new_line;
3387 return LINESZ * s->scnhdr.s_nlnno++;
3388 }
3389
3390 void
3391 c_dot_file_symbol (filename)
3392 char *filename;
3393 {
3394 symbolS *symbolP;
3395
3396 symbolP = symbol_new (".file",
3397 SEG_DEBUG,
3398 0,
3399 &zero_address_frag);
3400
3401 S_SET_STORAGE_CLASS (symbolP, C_FILE);
3402 S_SET_NUMBER_AUXILIARY (symbolP, 1);
3403
3404 if (strlen (filename) > FILNMLEN)
3405 {
3406 /* Filename is too long to fit into an auxent,
3407 we stick it into the string table instead. We keep
3408 a linked list of the filenames we find so we can emit
3409 them later.*/
3410 struct filename_list *f = xmalloc (sizeof (struct filename_list));
3411
3412 f->filename = filename;
3413 f->next = 0;
3414
3415 SA_SET_FILE_FNAME_ZEROS (symbolP, 0);
3416 SA_SET_FILE_FNAME_OFFSET (symbolP, 0);
3417
3418 if (filename_list_tail)
3419 filename_list_tail->next = f;
3420 else
3421 filename_list_head = f;
3422 filename_list_tail = f;
3423 }
3424 else
3425 {
3426 SA_SET_FILE_FNAME (symbolP, filename);
3427 }
3428 #ifndef NO_LISTING
3429 {
3430 extern int listing;
3431 if (listing)
3432 {
3433 listing_source_file (filename);
3434 }
3435
3436 }
3437
3438 #endif
3439 SF_SET_DEBUG (symbolP);
3440 S_SET_VALUE (symbolP, (valueT) previous_file_symbol);
3441
3442 previous_file_symbol = symbolP;
3443
3444 /* Make sure that the symbol is first on the symbol chain */
3445 if (symbol_rootP != symbolP)
3446 {
3447 if (symbolP == symbol_lastP)
3448 {
3449 symbol_lastP = symbol_lastP->sy_previous;
3450 } /* if it was the last thing on the list */
3451
3452 symbol_remove (symbolP, &symbol_rootP, &symbol_lastP);
3453 symbol_insert (symbolP, symbol_rootP, &symbol_rootP, &symbol_lastP);
3454 symbol_rootP = symbolP;
3455 } /* if not first on the list */
3456
3457 } /* c_dot_file_symbol() */
3458
3459 /*
3460 * Build a 'section static' symbol.
3461 */
3462
3463 symbolS *
3464 c_section_symbol (name, idx)
3465 char *name;
3466 int idx;
3467 {
3468 symbolS *symbolP;
3469
3470 symbolP = symbol_new (name, idx,
3471 0,
3472 &zero_address_frag);
3473
3474 S_SET_STORAGE_CLASS (symbolP, C_STAT);
3475 S_SET_NUMBER_AUXILIARY (symbolP, 1);
3476
3477 SF_SET_STATICS (symbolP);
3478
3479 return symbolP;
3480 } /* c_section_symbol() */
3481
3482 static void
3483 w_symbols (abfd, where, symbol_rootP)
3484 bfd * abfd;
3485 char *where;
3486 symbolS * symbol_rootP;
3487 {
3488 symbolS *symbolP;
3489 unsigned int i;
3490
3491 /* First fill in those values we have only just worked out */
3492 for (i = SEG_E0; i < SEG_E9; i++)
3493 {
3494 symbolP = segment_info[i].dot;
3495 if (symbolP)
3496 {
3497 SA_SET_SCN_SCNLEN (symbolP, segment_info[i].scnhdr.s_size);
3498 SA_SET_SCN_NRELOC (symbolP, segment_info[i].scnhdr.s_nreloc);
3499 SA_SET_SCN_NLINNO (symbolP, segment_info[i].scnhdr.s_nlnno);
3500 }
3501 }
3502
3503 /*
3504 * Emit all symbols left in the symbol chain.
3505 */
3506 for (symbolP = symbol_rootP; symbolP; symbolP = symbol_next (symbolP))
3507 {
3508 /* Used to save the offset of the name. It is used to point
3509 to the string in memory but must be a file offset. */
3510 register char *temp;
3511
3512 tc_coff_symbol_emit_hook (symbolP);
3513
3514 temp = S_GET_NAME (symbolP);
3515 if (SF_GET_STRING (symbolP))
3516 {
3517 S_SET_OFFSET (symbolP, symbolP->sy_name_offset);
3518 S_SET_ZEROES (symbolP, 0);
3519 }
3520 else
3521 {
3522 memset (symbolP->sy_symbol.ost_entry.n_name, 0, SYMNMLEN);
3523 strncpy (symbolP->sy_symbol.ost_entry.n_name, temp, SYMNMLEN);
3524 }
3525 where = symbol_to_chars (abfd, where, symbolP);
3526 S_SET_NAME (symbolP, temp);
3527 }
3528
3529 } /* w_symbols() */
3530
3531 static void
3532 obj_coff_lcomm (ignore)
3533 int ignore;
3534 {
3535 s_lcomm(0);
3536 return;
3537 #if 0
3538 char *name;
3539 char c;
3540 int temp;
3541 char *p;
3542
3543 symbolS *symbolP;
3544
3545 name = input_line_pointer;
3546
3547 c = get_symbol_end ();
3548 p = input_line_pointer;
3549 *p = c;
3550 SKIP_WHITESPACE ();
3551 if (*input_line_pointer != ',')
3552 {
3553 as_bad ("Expected comma after name");
3554 ignore_rest_of_line ();
3555 return;
3556 }
3557 if (*input_line_pointer == '\n')
3558 {
3559 as_bad ("Missing size expression");
3560 return;
3561 }
3562 input_line_pointer++;
3563 if ((temp = get_absolute_expression ()) < 0)
3564 {
3565 as_warn ("lcomm length (%d.) <0! Ignored.", temp);
3566 ignore_rest_of_line ();
3567 return;
3568 }
3569 *p = 0;
3570
3571 symbolP = symbol_find_or_make(name);
3572
3573 if (S_GET_SEGMENT(symbolP) == SEG_UNKNOWN &&
3574 S_GET_VALUE(symbolP) == 0)
3575 {
3576 if (! need_pass_2)
3577 {
3578 char *p;
3579 segT current_seg = now_seg; /* save current seg */
3580 subsegT current_subseg = now_subseg;
3581
3582 subseg_set (SEG_E2, 1);
3583 symbolP->sy_frag = frag_now;
3584 p = frag_var(rs_org, 1, 1, (relax_substateT)0, symbolP,
3585 temp, (char *)0);
3586 *p = 0;
3587 subseg_set (current_seg, current_subseg); /* restore current seg */
3588 S_SET_SEGMENT(symbolP, SEG_E2);
3589 S_SET_STORAGE_CLASS(symbolP, C_STAT);
3590 }
3591 }
3592 else
3593 as_bad("Symbol %s already defined", name);
3594
3595 demand_empty_rest_of_line();
3596 #endif
3597 }
3598
3599 static void
3600 fixup_mdeps (frags, h, this_segment)
3601 fragS * frags;
3602 object_headers * h;
3603 segT this_segment;
3604 {
3605 subseg_change (this_segment, 0);
3606 while (frags)
3607 {
3608 switch (frags->fr_type)
3609 {
3610 case rs_align:
3611 case rs_org:
3612 #ifdef HANDLE_ALIGN
3613 HANDLE_ALIGN (frags);
3614 #endif
3615 frags->fr_type = rs_fill;
3616 frags->fr_offset =
3617 (frags->fr_next->fr_address - frags->fr_address - frags->fr_fix);
3618 break;
3619 case rs_machine_dependent:
3620 md_convert_frag (h, this_segment, frags);
3621 frag_wane (frags);
3622 break;
3623 default:
3624 ;
3625 }
3626 frags = frags->fr_next;
3627 }
3628 }
3629
3630 #if 1
3631
3632 #ifndef TC_FORCE_RELOCATION
3633 #define TC_FORCE_RELOCATION(fix) 0
3634 #endif
3635
3636 static void
3637 fixup_segment (segP, this_segment_type)
3638 segment_info_type * segP;
3639 segT this_segment_type;
3640 {
3641 register fixS * fixP;
3642 register symbolS *add_symbolP;
3643 register symbolS *sub_symbolP;
3644 long add_number;
3645 register int size;
3646 register char *place;
3647 register long where;
3648 register char pcrel;
3649 register fragS *fragP;
3650 register segT add_symbol_segment = absolute_section;
3651
3652 if (linkrelax)
3653 return;
3654
3655 for (fixP = segP->fix_root; fixP; fixP = fixP->fx_next)
3656 {
3657 fragP = fixP->fx_frag;
3658 know (fragP);
3659 where = fixP->fx_where;
3660 place = fragP->fr_literal + where;
3661 size = fixP->fx_size;
3662 add_symbolP = fixP->fx_addsy;
3663 #ifdef TC_I960
3664 if (fixP->fx_tcbit && SF_GET_CALLNAME (add_symbolP))
3665 {
3666 /* Relocation should be done via the associated 'bal' entry
3667 point symbol. */
3668
3669 if (!SF_GET_BALNAME (tc_get_bal_of_call (add_symbolP)))
3670 {
3671 as_bad_where (fixP->fx_file, fixP->fx_line,
3672 "No 'bal' entry point for leafproc %s",
3673 S_GET_NAME (add_symbolP));
3674 continue;
3675 }
3676 fixP->fx_addsy = add_symbolP = tc_get_bal_of_call (add_symbolP);
3677 }
3678 #endif
3679 sub_symbolP = fixP->fx_subsy;
3680 add_number = fixP->fx_offset;
3681 pcrel = fixP->fx_pcrel;
3682
3683 if (add_symbolP != NULL
3684 && add_symbolP->sy_mri_common)
3685 {
3686 know (add_symbolP->sy_value.X_op == O_symbol);
3687 add_number += S_GET_VALUE (add_symbolP);
3688 fixP->fx_offset = add_number;
3689 add_symbolP = fixP->fx_addsy = add_symbolP->sy_value.X_add_symbol;
3690 }
3691
3692 if (add_symbolP)
3693 {
3694 add_symbol_segment = S_GET_SEGMENT (add_symbolP);
3695 } /* if there is an addend */
3696
3697 if (sub_symbolP)
3698 {
3699 if (add_symbolP == NULL || add_symbol_segment == absolute_section)
3700 {
3701 if (add_symbolP != NULL)
3702 {
3703 add_number += S_GET_VALUE (add_symbolP);
3704 add_symbolP = NULL;
3705 fixP->fx_addsy = NULL;
3706 }
3707
3708 /* It's just -sym. */
3709 if (S_GET_SEGMENT (sub_symbolP) == absolute_section)
3710 {
3711 add_number -= S_GET_VALUE (sub_symbolP);
3712 fixP->fx_subsy = 0;
3713 fixP->fx_done = 1;
3714 }
3715 else
3716 {
3717 #ifndef TC_M68K
3718 as_bad_where (fixP->fx_file, fixP->fx_line,
3719 "Negative of non-absolute symbol %s",
3720 S_GET_NAME (sub_symbolP));
3721 #endif
3722 add_number -= S_GET_VALUE (sub_symbolP);
3723 } /* not absolute */
3724
3725 /* if sub_symbol is in the same segment that add_symbol
3726 and add_symbol is either in DATA, TEXT, BSS or ABSOLUTE */
3727 }
3728 else if (S_GET_SEGMENT (sub_symbolP) == add_symbol_segment
3729 && SEG_NORMAL (add_symbol_segment))
3730 {
3731 /* Difference of 2 symbols from same segment. Can't
3732 make difference of 2 undefineds: 'value' means
3733 something different for N_UNDF. */
3734 #ifdef TC_I960
3735 /* Makes no sense to use the difference of 2 arbitrary symbols
3736 as the target of a call instruction. */
3737 if (fixP->fx_tcbit)
3738 {
3739 as_bad_where (fixP->fx_file, fixP->fx_line,
3740 "callj to difference of 2 symbols");
3741 }
3742 #endif /* TC_I960 */
3743 add_number += S_GET_VALUE (add_symbolP) -
3744 S_GET_VALUE (sub_symbolP);
3745 add_symbolP = NULL;
3746
3747 if (!TC_FORCE_RELOCATION (fixP))
3748 {
3749 fixP->fx_addsy = NULL;
3750 fixP->fx_subsy = NULL;
3751 fixP->fx_done = 1;
3752 #ifdef TC_M68K /* is this right? */
3753 pcrel = 0;
3754 fixP->fx_pcrel = 0;
3755 #endif
3756 }
3757 }
3758 else
3759 {
3760 /* Different segments in subtraction. */
3761 know (!(S_IS_EXTERNAL (sub_symbolP) && (S_GET_SEGMENT (sub_symbolP) == absolute_section)));
3762
3763 if ((S_GET_SEGMENT (sub_symbolP) == absolute_section))
3764 {
3765 add_number -= S_GET_VALUE (sub_symbolP);
3766 }
3767 #ifdef DIFF_EXPR_OK
3768 else if (S_GET_SEGMENT (sub_symbolP) == this_segment_type
3769 #if 0 /* Okay for 68k, at least... */
3770 && !pcrel
3771 #endif
3772 )
3773 {
3774 /* Make it pc-relative. */
3775 add_number += (md_pcrel_from (fixP)
3776 - S_GET_VALUE (sub_symbolP));
3777 pcrel = 1;
3778 fixP->fx_pcrel = 1;
3779 sub_symbolP = 0;
3780 fixP->fx_subsy = 0;
3781 }
3782 #endif
3783 else
3784 {
3785 as_bad_where (fixP->fx_file, fixP->fx_line,
3786 "Can't emit reloc {- %s-seg symbol \"%s\"} @ file address %ld.",
3787 segment_name (S_GET_SEGMENT (sub_symbolP)),
3788 S_GET_NAME (sub_symbolP),
3789 (long) (fragP->fr_address + where));
3790 } /* if absolute */
3791 }
3792 } /* if sub_symbolP */
3793
3794 if (add_symbolP)
3795 {
3796 if (add_symbol_segment == this_segment_type && pcrel)
3797 {
3798 /*
3799 * This fixup was made when the symbol's segment was
3800 * SEG_UNKNOWN, but it is now in the local segment.
3801 * So we know how to do the address without relocation.
3802 */
3803 #ifdef TC_I960
3804 /* reloc_callj() may replace a 'call' with a 'calls' or a 'bal',
3805 * in which cases it modifies *fixP as appropriate. In the case
3806 * of a 'calls', no further work is required, and *fixP has been
3807 * set up to make the rest of the code below a no-op.
3808 */
3809 reloc_callj (fixP);
3810 #endif /* TC_I960 */
3811
3812 add_number += S_GET_VALUE (add_symbolP);
3813 add_number -= md_pcrel_from (fixP);
3814 #if defined (TC_I386) || defined (TE_LYNX)
3815 /* On the 386 we must adjust by the segment
3816 vaddr as well. Ian Taylor. */
3817 add_number -= segP->scnhdr.s_vaddr;
3818 #endif
3819 pcrel = 0; /* Lie. Don't want further pcrel processing. */
3820 if (!TC_FORCE_RELOCATION (fixP))
3821 {
3822 fixP->fx_addsy = NULL;
3823 fixP->fx_done = 1;
3824 }
3825 }
3826 else
3827 {
3828 switch (add_symbol_segment)
3829 {
3830 case absolute_section:
3831 #ifdef TC_I960
3832 reloc_callj (fixP); /* See comment about reloc_callj() above*/
3833 #endif /* TC_I960 */
3834 add_number += S_GET_VALUE (add_symbolP);
3835 add_symbolP = NULL;
3836
3837 if (!TC_FORCE_RELOCATION (fixP))
3838 {
3839 fixP->fx_addsy = NULL;
3840 fixP->fx_done = 1;
3841 }
3842 break;
3843 default:
3844
3845
3846 #if defined(TC_A29K) || (defined(TE_PE) && defined(TC_I386))
3847 /* This really should be handled in the linker, but
3848 backward compatibility forbids. */
3849 add_number += S_GET_VALUE (add_symbolP);
3850 #else
3851 add_number += S_GET_VALUE (add_symbolP) +
3852 segment_info[S_GET_SEGMENT (add_symbolP)].scnhdr.s_paddr;
3853 #endif
3854 break;
3855
3856 case SEG_UNKNOWN:
3857 #ifdef TC_I960
3858 if ((int) fixP->fx_bit_fixP == 13)
3859 {
3860 /* This is a COBR instruction. They have only a
3861 * 13-bit displacement and are only to be used
3862 * for local branches: flag as error, don't generate
3863 * relocation.
3864 */
3865 as_bad_where (fixP->fx_file, fixP->fx_line,
3866 "can't use COBR format with external label");
3867 fixP->fx_addsy = NULL;
3868 fixP->fx_done = 1;
3869 continue;
3870 } /* COBR */
3871 #endif /* TC_I960 */
3872 #if (defined (TC_I386) || defined (TE_LYNX)) && !defined(TE_PE)
3873 /* 386 COFF uses a peculiar format in which the
3874 value of a common symbol is stored in the .text
3875 segment (I've checked this on SVR3.2 and SCO
3876 3.2.2) Ian Taylor <ian@cygnus.com>. */
3877 if (S_IS_COMMON (add_symbolP))
3878 add_number += S_GET_VALUE (add_symbolP);
3879 #endif
3880 break;
3881
3882
3883 } /* switch on symbol seg */
3884 } /* if not in local seg */
3885 } /* if there was a + symbol */
3886
3887 if (pcrel)
3888 {
3889 #if !defined(TC_M88K) && !(defined(TE_PE) && defined(TC_I386))
3890 /* This adjustment is not correct on the m88k, for which the
3891 linker does all the computation. */
3892 add_number -= md_pcrel_from (fixP);
3893 #endif
3894 if (add_symbolP == 0)
3895 {
3896 fixP->fx_addsy = &abs_symbol;
3897 } /* if there's an add_symbol */
3898 #if defined (TC_I386) || defined (TE_LYNX)
3899 /* On the 386 we must adjust by the segment vaddr
3900 as well. Ian Taylor. */
3901 add_number -= segP->scnhdr.s_vaddr;
3902 #endif
3903 } /* if pcrel */
3904
3905 if (!fixP->fx_bit_fixP)
3906 {
3907 #ifndef TC_M88K
3908 /* The m88k uses the offset field of the reloc to get around
3909 this problem. */
3910 if ((size == 1
3911 && (add_number & ~0xFF)
3912 && ((add_number & ~0xFF) != (-1 & ~0xFF)))
3913 || (size == 2
3914 && (add_number & ~0xFFFF)
3915 && ((add_number & ~0xFFFF) != (-1 & ~0xFFFF))))
3916 {
3917 as_bad_where (fixP->fx_file, fixP->fx_line,
3918 "Value of %ld too large for field of %d bytes at 0x%lx",
3919 (long) add_number, size,
3920 (unsigned long) (fragP->fr_address + where));
3921 }
3922 #endif
3923 #ifdef WARN_SIGNED_OVERFLOW_WORD
3924 /* Warn if a .word value is too large when treated as a
3925 signed number. We already know it is not too negative.
3926 This is to catch over-large switches generated by gcc on
3927 the 68k. */
3928 if (!flag_signed_overflow_ok
3929 && size == 2
3930 && add_number > 0x7fff)
3931 as_bad_where (fixP->fx_file, fixP->fx_line,
3932 "Signed .word overflow; switch may be too large; %ld at 0x%lx",
3933 (long) add_number,
3934 (unsigned long) (fragP->fr_address + where));
3935 #endif
3936 } /* not a bit fix */
3937 /* Once this fix has been applied, we don't have to output
3938 anything nothing more need be done. */
3939 #ifdef MD_APPLY_FIX3
3940 md_apply_fix3 (fixP, &add_number, this_segment_type);
3941 #else
3942 md_apply_fix (fixP, add_number);
3943 #endif
3944 } /* For each fixS in this segment. */
3945 } /* fixup_segment() */
3946
3947 #endif
3948
3949 /* The first entry in a .stab section is special. */
3950
3951 void
3952 obj_coff_init_stab_section (seg)
3953 segT seg;
3954 {
3955 char *file;
3956 char *p;
3957 char *stabstr_name;
3958 unsigned int stroff;
3959
3960 /* Make space for this first symbol. */
3961 p = frag_more (12);
3962 /* Zero it out. */
3963 memset (p, 0, 12);
3964 as_where (&file, (unsigned int *) NULL);
3965 stabstr_name = (char *) alloca (strlen (segment_info[seg].scnhdr.s_name) + 4);
3966 strcpy (stabstr_name, segment_info[seg].scnhdr.s_name);
3967 strcat (stabstr_name, "str");
3968 stroff = get_stab_string_offset (file, stabstr_name);
3969 know (stroff == 1);
3970 md_number_to_chars (p, stroff, 4);
3971 }
3972
3973 /* Fill in the counts in the first entry in a .stab section. */
3974
3975 static void
3976 adjust_stab_section(abfd, seg)
3977 bfd *abfd;
3978 segT seg;
3979 {
3980 segT stabstrseg = SEG_UNKNOWN;
3981 char *secname, *name, *name2;
3982 char *p = NULL;
3983 int i, strsz = 0, nsyms;
3984 fragS *frag = segment_info[seg].frchainP->frch_root;
3985
3986 /* Look for the associated string table section. */
3987
3988 secname = segment_info[seg].scnhdr.s_name;
3989 name = (char *) alloca (strlen (secname) + 4);
3990 strcpy (name, secname);
3991 strcat (name, "str");
3992
3993 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
3994 {
3995 name2 = segment_info[i].scnhdr.s_name;
3996 if (name2 != NULL && strncmp(name2, name, 8) == 0)
3997 {
3998 stabstrseg = i;
3999 break;
4000 }
4001 }
4002
4003 /* If we found the section, get its size. */
4004 if (stabstrseg != SEG_UNKNOWN)
4005 strsz = size_section (abfd, stabstrseg);
4006
4007 nsyms = size_section (abfd, seg) / 12 - 1;
4008
4009 /* Look for the first frag of sufficient size for the initial stab
4010 symbol, and collect a pointer to it. */
4011 while (frag && frag->fr_fix < 12)
4012 frag = frag->fr_next;
4013 assert (frag != 0);
4014 p = frag->fr_literal;
4015 assert (p != 0);
4016
4017 /* Write in the number of stab symbols and the size of the string
4018 table. */
4019 bfd_h_put_16 (abfd, (bfd_vma) nsyms, (bfd_byte *) p + 6);
4020 bfd_h_put_32 (abfd, (bfd_vma) strsz, (bfd_byte *) p + 8);
4021 }
4022
4023 #endif /* not BFD_ASSEMBLER */
4024
4025 const pseudo_typeS obj_pseudo_table[] =
4026 {
4027 {"def", obj_coff_def, 0},
4028 {"dim", obj_coff_dim, 0},
4029 {"endef", obj_coff_endef, 0},
4030 {"line", obj_coff_line, 0},
4031 {"ln", obj_coff_ln, 0},
4032 {"appline", obj_coff_ln, 1},
4033 {"scl", obj_coff_scl, 0},
4034 {"size", obj_coff_size, 0},
4035 {"tag", obj_coff_tag, 0},
4036 {"type", obj_coff_type, 0},
4037 {"val", obj_coff_val, 0},
4038 {"section", obj_coff_section, 0},
4039 {"sect", obj_coff_section, 0},
4040 /* FIXME: We ignore the MRI short attribute. */
4041 {"section.s", obj_coff_section, 0},
4042 {"sect.s", obj_coff_section, 0},
4043 #ifndef BFD_ASSEMBLER
4044 {"use", obj_coff_section, 0},
4045 {"text", obj_coff_text, 0},
4046 {"data", obj_coff_data, 0},
4047 {"bss", obj_coff_bss, 0},
4048 {"lcomm", obj_coff_lcomm, 0},
4049 {"ident", obj_coff_ident, 0},
4050 #else
4051 {"optim", s_ignore, 0}, /* For sun386i cc (?) */
4052 {"ident", s_ignore, 0}, /* we don't yet handle this. */
4053 #endif
4054 {"ABORT", s_abort, 0},
4055 #ifdef TC_M88K
4056 /* The m88k uses sdef instead of def. */
4057 {"sdef", obj_coff_def, 0},
4058 #endif
4059 {NULL} /* end sentinel */
4060 }; /* obj_pseudo_table */