Do not set finalize_syms until after the segments have been sized.
[deliverable/binutils-gdb.git] / gas / write.c
1 /* write.c - emit .o file
2 Copyright 1986, 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001
4 Free Software Foundation, Inc.
5
6 This file is part of GAS, the GNU Assembler.
7
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA. */
22
23 /* This thing should be set up to do byteordering correctly. But... */
24
25 #include "as.h"
26 #include "subsegs.h"
27 #include "obstack.h"
28 #include "output-file.h"
29 #include "dwarf2dbg.h"
30
31 /* This looks like a good idea. Let's try turning it on always, for now. */
32 #undef BFD_FAST_SECTION_FILL
33 #define BFD_FAST_SECTION_FILL
34
35 #ifndef TC_ADJUST_RELOC_COUNT
36 #define TC_ADJUST_RELOC_COUNT(FIXP,COUNT)
37 #endif
38
39 #ifndef TC_FORCE_RELOCATION
40 #define TC_FORCE_RELOCATION(FIXP) 0
41 #endif
42
43 #ifndef TC_FORCE_RELOCATION_SECTION
44 #define TC_FORCE_RELOCATION_SECTION(FIXP,SEG) TC_FORCE_RELOCATION(FIXP)
45 #endif
46
47 #ifndef TC_LINKRELAX_FIXUP
48 #define TC_LINKRELAX_FIXUP(SEG) 1
49 #endif
50
51 #ifndef TC_FIX_ADJUSTABLE
52 #define TC_FIX_ADJUSTABLE(fix) 1
53 #endif
54
55 #ifndef MD_PCREL_FROM_SECTION
56 #define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from(FIXP)
57 #endif
58
59 #ifndef WORKING_DOT_WORD
60 extern CONST int md_short_jump_size;
61 extern CONST int md_long_jump_size;
62 #endif
63
64 /* Used to control final evaluation of expressions. */
65 int finalize_syms = 0;
66
67 int symbol_table_frozen;
68 void print_fixup PARAMS ((fixS *));
69
70 #ifdef BFD_ASSEMBLER
71 static void renumber_sections PARAMS ((bfd *, asection *, PTR));
72
73 /* We generally attach relocs to frag chains. However, after we have
74 chained these all together into a segment, any relocs we add after
75 that must be attached to a segment. This will include relocs added
76 in md_estimate_size_for_relax, for example. */
77 static int frags_chained = 0;
78 #endif
79
80 #ifndef BFD_ASSEMBLER
81
82 #ifndef MANY_SEGMENTS
83 struct frag *text_frag_root;
84 struct frag *data_frag_root;
85 struct frag *bss_frag_root;
86
87 struct frag *text_last_frag; /* Last frag in segment. */
88 struct frag *data_last_frag; /* Last frag in segment. */
89 static struct frag *bss_last_frag; /* Last frag in segment. */
90 #endif
91
92 #ifndef BFD
93 static object_headers headers;
94 #endif
95
96 long string_byte_count;
97 char *next_object_file_charP; /* Tracks object file bytes. */
98
99 #ifndef OBJ_VMS
100 int magic_number_for_object_file = DEFAULT_MAGIC_NUMBER_FOR_OBJECT_FILE;
101 #endif
102
103 #endif /* BFD_ASSEMBLER */
104
105 static int n_fixups;
106
107 #ifdef BFD_ASSEMBLER
108 static fixS *fix_new_internal PARAMS ((fragS *, int where, int size,
109 symbolS *add, symbolS *sub,
110 offsetT offset, int pcrel,
111 bfd_reloc_code_real_type r_type));
112 #else
113 static fixS *fix_new_internal PARAMS ((fragS *, int where, int size,
114 symbolS *add, symbolS *sub,
115 offsetT offset, int pcrel,
116 int r_type));
117 #endif
118 #if defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS))
119 static long fixup_segment PARAMS ((fixS * fixP, segT this_segment_type));
120 #endif
121 static relax_addressT relax_align PARAMS ((relax_addressT addr, int align));
122 #if defined (BFD_ASSEMBLER) || ! defined (BFD)
123 static fragS *chain_frchains_together_1 PARAMS ((segT, struct frchain *));
124 #endif
125 #ifdef BFD_ASSEMBLER
126 static void chain_frchains_together PARAMS ((bfd *, segT, PTR));
127 static void cvt_frag_to_fill PARAMS ((segT, fragS *));
128 static void adjust_reloc_syms PARAMS ((bfd *, asection *, PTR));
129 static void write_relocs PARAMS ((bfd *, asection *, PTR));
130 static void write_contents PARAMS ((bfd *, asection *, PTR));
131 static void set_symtab PARAMS ((void));
132 #endif
133 #if defined (BFD_ASSEMBLER) || (! defined (BFD) && ! defined (OBJ_AOUT))
134 static void merge_data_into_text PARAMS ((void));
135 #endif
136 #if ! defined (BFD_ASSEMBLER) && ! defined (BFD)
137 static void cvt_frag_to_fill PARAMS ((object_headers *, segT, fragS *));
138 static void remove_subsegs PARAMS ((frchainS *, int, fragS **, fragS **));
139 static void relax_and_size_all_segments PARAMS ((void));
140 #endif
141 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
142 static void set_segment_vma PARAMS ((bfd *, asection *, PTR));
143 #endif
144
145 /* Create a fixS in obstack 'notes'. */
146
147 static fixS *
148 fix_new_internal (frag, where, size, add_symbol, sub_symbol, offset, pcrel,
149 r_type)
150 fragS *frag; /* Which frag? */
151 int where; /* Where in that frag? */
152 int size; /* 1, 2, or 4 usually. */
153 symbolS *add_symbol; /* X_add_symbol. */
154 symbolS *sub_symbol; /* X_op_symbol. */
155 offsetT offset; /* X_add_number. */
156 int pcrel; /* TRUE if PC-relative relocation. */
157 #ifdef BFD_ASSEMBLER
158 bfd_reloc_code_real_type r_type; /* Relocation type. */
159 #else
160 int r_type; /* Relocation type. */
161 #endif
162 {
163 fixS *fixP;
164
165 n_fixups++;
166
167 fixP = (fixS *) obstack_alloc (&notes, sizeof (fixS));
168
169 fixP->fx_frag = frag;
170 fixP->fx_where = where;
171 fixP->fx_size = size;
172 /* We've made fx_size a narrow field; check that it's wide enough. */
173 if (fixP->fx_size != size)
174 {
175 as_bad (_("field fx_size too small to hold %d"), size);
176 abort ();
177 }
178 fixP->fx_addsy = add_symbol;
179 fixP->fx_subsy = sub_symbol;
180 fixP->fx_offset = offset;
181 fixP->fx_pcrel = pcrel;
182 fixP->fx_plt = 0;
183 #if defined(NEED_FX_R_TYPE) || defined (BFD_ASSEMBLER)
184 fixP->fx_r_type = r_type;
185 #endif
186 fixP->fx_im_disp = 0;
187 fixP->fx_pcrel_adjust = 0;
188 fixP->fx_bit_fixP = 0;
189 fixP->fx_addnumber = 0;
190 fixP->fx_tcbit = 0;
191 fixP->fx_done = 0;
192 fixP->fx_no_overflow = 0;
193 fixP->fx_signed = 0;
194
195 #ifdef USING_CGEN
196 fixP->fx_cgen.insn = NULL;
197 fixP->fx_cgen.opinfo = 0;
198 #endif
199
200 #ifdef TC_FIX_TYPE
201 TC_INIT_FIX_DATA (fixP);
202 #endif
203
204 as_where (&fixP->fx_file, &fixP->fx_line);
205
206 /* Usually, we want relocs sorted numerically, but while
207 comparing to older versions of gas that have relocs
208 reverse sorted, it is convenient to have this compile
209 time option. xoxorich. */
210 {
211
212 #ifdef BFD_ASSEMBLER
213 fixS **seg_fix_rootP = (frags_chained
214 ? &seg_info (now_seg)->fix_root
215 : &frchain_now->fix_root);
216 fixS **seg_fix_tailP = (frags_chained
217 ? &seg_info (now_seg)->fix_tail
218 : &frchain_now->fix_tail);
219 #endif
220
221 #ifdef REVERSE_SORT_RELOCS
222
223 fixP->fx_next = *seg_fix_rootP;
224 *seg_fix_rootP = fixP;
225
226 #else /* REVERSE_SORT_RELOCS */
227
228 fixP->fx_next = NULL;
229
230 if (*seg_fix_tailP)
231 (*seg_fix_tailP)->fx_next = fixP;
232 else
233 *seg_fix_rootP = fixP;
234 *seg_fix_tailP = fixP;
235
236 #endif /* REVERSE_SORT_RELOCS */
237 }
238
239 return fixP;
240 }
241
242 /* Create a fixup relative to a symbol (plus a constant). */
243
244 fixS *
245 fix_new (frag, where, size, add_symbol, offset, pcrel, r_type)
246 fragS *frag; /* Which frag? */
247 int where; /* Where in that frag? */
248 int size; /* 1, 2, or 4 usually. */
249 symbolS *add_symbol; /* X_add_symbol. */
250 offsetT offset; /* X_add_number. */
251 int pcrel; /* TRUE if PC-relative relocation. */
252 #ifdef BFD_ASSEMBLER
253 bfd_reloc_code_real_type r_type; /* Relocation type. */
254 #else
255 int r_type; /* Relocation type. */
256 #endif
257 {
258 return fix_new_internal (frag, where, size, add_symbol,
259 (symbolS *) NULL, offset, pcrel, r_type);
260 }
261
262 /* Create a fixup for an expression. Currently we only support fixups
263 for difference expressions. That is itself more than most object
264 file formats support anyhow. */
265
266 fixS *
267 fix_new_exp (frag, where, size, exp, pcrel, r_type)
268 fragS *frag; /* Which frag? */
269 int where; /* Where in that frag? */
270 int size; /* 1, 2, or 4 usually. */
271 expressionS *exp; /* Expression. */
272 int pcrel; /* TRUE if PC-relative relocation. */
273 #ifdef BFD_ASSEMBLER
274 bfd_reloc_code_real_type r_type; /* Relocation type. */
275 #else
276 int r_type; /* Relocation type. */
277 #endif
278 {
279 symbolS *add = NULL;
280 symbolS *sub = NULL;
281 offsetT off = 0;
282
283 switch (exp->X_op)
284 {
285 case O_absent:
286 break;
287
288 case O_register:
289 as_bad (_("register value used as expression"));
290 break;
291
292 case O_add:
293 /* This comes up when _GLOBAL_OFFSET_TABLE_+(.-L0) is read, if
294 the difference expression cannot immediately be reduced. */
295 {
296 symbolS *stmp = make_expr_symbol (exp);
297
298 exp->X_op = O_symbol;
299 exp->X_op_symbol = 0;
300 exp->X_add_symbol = stmp;
301 exp->X_add_number = 0;
302
303 return fix_new_exp (frag, where, size, exp, pcrel, r_type);
304 }
305
306 case O_symbol_rva:
307 add = exp->X_add_symbol;
308 off = exp->X_add_number;
309
310 #if defined(BFD_ASSEMBLER)
311 r_type = BFD_RELOC_RVA;
312 #else
313 #if defined(TC_RVA_RELOC)
314 r_type = TC_RVA_RELOC;
315 #else
316 as_fatal (_("rva not supported"));
317 #endif
318 #endif
319 break;
320
321 case O_uminus:
322 sub = exp->X_add_symbol;
323 off = exp->X_add_number;
324 break;
325
326 case O_subtract:
327 sub = exp->X_op_symbol;
328 /* Fall through. */
329 case O_symbol:
330 add = exp->X_add_symbol;
331 /* Fall through. */
332 case O_constant:
333 off = exp->X_add_number;
334 break;
335
336 default:
337 add = make_expr_symbol (exp);
338 break;
339 }
340
341 return fix_new_internal (frag, where, size, add, sub, off, pcrel, r_type);
342 }
343
344 /* Append a string onto another string, bumping the pointer along. */
345 void
346 append (charPP, fromP, length)
347 char **charPP;
348 char *fromP;
349 unsigned long length;
350 {
351 /* Don't trust memcpy() of 0 chars. */
352 if (length == 0)
353 return;
354
355 memcpy (*charPP, fromP, length);
356 *charPP += length;
357 }
358
359 #ifndef BFD_ASSEMBLER
360 int section_alignment[SEG_MAXIMUM_ORDINAL];
361 #endif
362
363 /* This routine records the largest alignment seen for each segment.
364 If the beginning of the segment is aligned on the worst-case
365 boundary, all of the other alignments within it will work. At
366 least one object format really uses this info. */
367
368 void
369 record_alignment (seg, align)
370 /* Segment to which alignment pertains. */
371 segT seg;
372 /* Alignment, as a power of 2 (e.g., 1 => 2-byte boundary, 2 => 4-byte
373 boundary, etc.) */
374 int align;
375 {
376 if (seg == absolute_section)
377 return;
378 #ifdef BFD_ASSEMBLER
379 if ((unsigned int) align > bfd_get_section_alignment (stdoutput, seg))
380 bfd_set_section_alignment (stdoutput, seg, align);
381 #else
382 if (align > section_alignment[(int) seg])
383 section_alignment[(int) seg] = align;
384 #endif
385 }
386
387 int
388 get_recorded_alignment (seg)
389 segT seg;
390 {
391 if (seg == absolute_section)
392 return 0;
393 #ifdef BFD_ASSEMBLER
394 return bfd_get_section_alignment (stdoutput, seg);
395 #else
396 return section_alignment[(int) seg];
397 #endif
398 }
399
400 #ifdef BFD_ASSEMBLER
401
402 /* Reset the section indices after removing the gas created sections. */
403
404 static void
405 renumber_sections (abfd, sec, countparg)
406 bfd *abfd ATTRIBUTE_UNUSED;
407 asection *sec;
408 PTR countparg;
409 {
410 int *countp = (int *) countparg;
411
412 sec->index = *countp;
413 ++*countp;
414 }
415
416 #endif /* defined (BFD_ASSEMBLER) */
417
418 #if defined (BFD_ASSEMBLER) || ! defined (BFD)
419
420 static fragS *
421 chain_frchains_together_1 (section, frchp)
422 segT section;
423 struct frchain *frchp;
424 {
425 fragS dummy, *prev_frag = &dummy;
426 #ifdef BFD_ASSEMBLER
427 fixS fix_dummy, *prev_fix = &fix_dummy;
428 #endif
429
430 for (; frchp && frchp->frch_seg == section; frchp = frchp->frch_next)
431 {
432 prev_frag->fr_next = frchp->frch_root;
433 prev_frag = frchp->frch_last;
434 assert (prev_frag->fr_type != 0);
435 #ifdef BFD_ASSEMBLER
436 if (frchp->fix_root != (fixS *) NULL)
437 {
438 if (seg_info (section)->fix_root == (fixS *) NULL)
439 seg_info (section)->fix_root = frchp->fix_root;
440 prev_fix->fx_next = frchp->fix_root;
441 seg_info (section)->fix_tail = frchp->fix_tail;
442 prev_fix = frchp->fix_tail;
443 }
444 #endif
445 }
446 assert (prev_frag->fr_type != 0);
447 prev_frag->fr_next = 0;
448 return prev_frag;
449 }
450
451 #endif
452
453 #ifdef BFD_ASSEMBLER
454
455 static void
456 chain_frchains_together (abfd, section, xxx)
457 bfd *abfd ATTRIBUTE_UNUSED;
458 segT section;
459 PTR xxx ATTRIBUTE_UNUSED;
460 {
461 segment_info_type *info;
462
463 /* BFD may have introduced its own sections without using
464 subseg_new, so it is possible that seg_info is NULL. */
465 info = seg_info (section);
466 if (info != (segment_info_type *) NULL)
467 info->frchainP->frch_last
468 = chain_frchains_together_1 (section, info->frchainP);
469
470 /* Now that we've chained the frags together, we must add new fixups
471 to the segment, not to the frag chain. */
472 frags_chained = 1;
473 }
474
475 #endif
476
477 #if !defined (BFD) && !defined (BFD_ASSEMBLER)
478
479 static void
480 remove_subsegs (head, seg, root, last)
481 frchainS *head;
482 int seg;
483 fragS **root;
484 fragS **last;
485 {
486 *root = head->frch_root;
487 *last = chain_frchains_together_1 (seg, head);
488 }
489
490 #endif /* BFD */
491
492 #if defined (BFD_ASSEMBLER) || !defined (BFD)
493
494 #ifdef BFD_ASSEMBLER
495 static void
496 cvt_frag_to_fill (sec, fragP)
497 segT sec ATTRIBUTE_UNUSED;
498 fragS *fragP;
499 #else
500 static void
501 cvt_frag_to_fill (headersP, sec, fragP)
502 object_headers *headersP;
503 segT sec;
504 fragS *fragP;
505 #endif
506 {
507 switch (fragP->fr_type)
508 {
509 case rs_align:
510 case rs_align_code:
511 case rs_align_test:
512 case rs_org:
513 case rs_space:
514 #ifdef HANDLE_ALIGN
515 HANDLE_ALIGN (fragP);
516 #endif
517 know (fragP->fr_next != NULL);
518 fragP->fr_offset = (fragP->fr_next->fr_address
519 - fragP->fr_address
520 - fragP->fr_fix) / fragP->fr_var;
521 if (fragP->fr_offset < 0)
522 {
523 as_bad_where (fragP->fr_file, fragP->fr_line,
524 _("attempt to .org/.space backwards? (%ld)"),
525 (long) fragP->fr_offset);
526 }
527 fragP->fr_type = rs_fill;
528 break;
529
530 case rs_fill:
531 break;
532
533 case rs_leb128:
534 {
535 valueT value = S_GET_VALUE (fragP->fr_symbol);
536 int size;
537
538 size = output_leb128 (fragP->fr_literal + fragP->fr_fix, value,
539 fragP->fr_subtype);
540
541 fragP->fr_fix += size;
542 fragP->fr_type = rs_fill;
543 fragP->fr_var = 0;
544 fragP->fr_offset = 0;
545 fragP->fr_symbol = NULL;
546 }
547 break;
548
549 case rs_cfa:
550 eh_frame_convert_frag (fragP);
551 break;
552
553 case rs_dwarf2dbg:
554 dwarf2dbg_convert_frag (fragP);
555 break;
556
557 case rs_machine_dependent:
558 #ifdef BFD_ASSEMBLER
559 md_convert_frag (stdoutput, sec, fragP);
560 #else
561 md_convert_frag (headersP, sec, fragP);
562 #endif
563
564 assert (fragP->fr_next == NULL
565 || ((offsetT) (fragP->fr_next->fr_address - fragP->fr_address)
566 == fragP->fr_fix));
567
568 /* After md_convert_frag, we make the frag into a ".space 0".
569 md_convert_frag() should set up any fixSs and constants
570 required. */
571 frag_wane (fragP);
572 break;
573
574 #ifndef WORKING_DOT_WORD
575 case rs_broken_word:
576 {
577 struct broken_word *lie;
578
579 if (fragP->fr_subtype)
580 {
581 fragP->fr_fix += md_short_jump_size;
582 for (lie = (struct broken_word *) (fragP->fr_symbol);
583 lie && lie->dispfrag == fragP;
584 lie = lie->next_broken_word)
585 if (lie->added == 1)
586 fragP->fr_fix += md_long_jump_size;
587 }
588 frag_wane (fragP);
589 }
590 break;
591 #endif
592
593 default:
594 BAD_CASE (fragP->fr_type);
595 break;
596 }
597 }
598
599 #endif /* defined (BFD_ASSEMBLER) || !defined (BFD) */
600
601 #ifdef BFD_ASSEMBLER
602 static void relax_seg PARAMS ((bfd *, asection *, PTR));
603 static void
604 relax_seg (abfd, sec, xxx)
605 bfd *abfd ATTRIBUTE_UNUSED;
606 asection *sec;
607 PTR xxx;
608 {
609 segment_info_type *seginfo = seg_info (sec);
610
611 if (seginfo && seginfo->frchainP
612 && relax_segment (seginfo->frchainP->frch_root, sec))
613 {
614 int *result = (int *) xxx;
615 *result = 1;
616 }
617 }
618
619 static void size_seg PARAMS ((bfd *, asection *, PTR));
620 static void
621 size_seg (abfd, sec, xxx)
622 bfd *abfd;
623 asection *sec;
624 PTR xxx ATTRIBUTE_UNUSED;
625 {
626 flagword flags;
627 fragS *fragp;
628 segment_info_type *seginfo;
629 int x;
630 valueT size, newsize;
631
632 subseg_change (sec, 0);
633
634 seginfo = seg_info (sec);
635 if (seginfo && seginfo->frchainP)
636 {
637 for (fragp = seginfo->frchainP->frch_root; fragp; fragp = fragp->fr_next)
638 cvt_frag_to_fill (sec, fragp);
639 for (fragp = seginfo->frchainP->frch_root;
640 fragp->fr_next;
641 fragp = fragp->fr_next)
642 /* Walk to last elt. */
643 ;
644 size = fragp->fr_address + fragp->fr_fix;
645 }
646 else
647 size = 0;
648
649 flags = bfd_get_section_flags (abfd, sec);
650
651 if (size > 0 && ! seginfo->bss)
652 flags |= SEC_HAS_CONTENTS;
653
654 /* @@ This is just an approximation. */
655 if (seginfo && seginfo->fix_root)
656 flags |= SEC_RELOC;
657 else
658 flags &= ~SEC_RELOC;
659 x = bfd_set_section_flags (abfd, sec, flags);
660 assert (x == true);
661
662 newsize = md_section_align (sec, size);
663 x = bfd_set_section_size (abfd, sec, newsize);
664 assert (x == true);
665
666 /* If the size had to be rounded up, add some padding in the last
667 non-empty frag. */
668 assert (newsize >= size);
669 if (size != newsize)
670 {
671 fragS *last = seginfo->frchainP->frch_last;
672 fragp = seginfo->frchainP->frch_root;
673 while (fragp->fr_next != last)
674 fragp = fragp->fr_next;
675 last->fr_address = size;
676 fragp->fr_offset += newsize - size;
677 }
678
679 #ifdef tc_frob_section
680 tc_frob_section (sec);
681 #endif
682 #ifdef obj_frob_section
683 obj_frob_section (sec);
684 #endif
685 }
686
687 #ifdef DEBUG2
688 static void
689 dump_section_relocs (abfd, sec, stream_)
690 bfd *abfd ATTRIBUTE_UNUSED;
691 asection *sec;
692 char *stream_;
693 {
694 FILE *stream = (FILE *) stream_;
695 segment_info_type *seginfo = seg_info (sec);
696 fixS *fixp = seginfo->fix_root;
697
698 if (!fixp)
699 return;
700
701 fprintf (stream, "sec %s relocs:\n", sec->name);
702 while (fixp)
703 {
704 symbolS *s = fixp->fx_addsy;
705
706 fprintf (stream, " %08lx: type %d ", (unsigned long) fixp,
707 (int) fixp->fx_r_type);
708 if (s == NULL)
709 fprintf (stream, "no sym\n");
710 else
711 {
712 print_symbol_value_1 (stream, s);
713 fprintf (stream, "\n");
714 }
715 fixp = fixp->fx_next;
716 }
717 }
718 #else
719 #define dump_section_relocs(ABFD,SEC,STREAM) ((void) 0)
720 #endif
721
722 #ifndef EMIT_SECTION_SYMBOLS
723 #define EMIT_SECTION_SYMBOLS 1
724 #endif
725
726 static void
727 adjust_reloc_syms (abfd, sec, xxx)
728 bfd *abfd ATTRIBUTE_UNUSED;
729 asection *sec;
730 PTR xxx ATTRIBUTE_UNUSED;
731 {
732 segment_info_type *seginfo = seg_info (sec);
733 fixS *fixp;
734
735 if (seginfo == NULL)
736 return;
737
738 dump_section_relocs (abfd, sec, stderr);
739
740 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
741 if (fixp->fx_done)
742 /* Ignore it. */
743 ;
744 else if (fixp->fx_addsy)
745 {
746 symbolS *sym;
747 asection *symsec;
748
749 #ifdef DEBUG5
750 fprintf (stderr, "\n\nadjusting fixup:\n");
751 print_fixup (fixp);
752 #endif
753
754 sym = fixp->fx_addsy;
755
756 /* All symbols should have already been resolved at this
757 point. It is possible to see unresolved expression
758 symbols, though, since they are not in the regular symbol
759 table. */
760 if (sym != NULL)
761 resolve_symbol_value (sym);
762
763 if (fixp->fx_subsy != NULL)
764 resolve_symbol_value (fixp->fx_subsy);
765
766 /* If this symbol is equated to an undefined symbol, convert
767 the fixup to being against that symbol. */
768 if (sym != NULL && symbol_equated_p (sym)
769 && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
770 {
771 fixp->fx_offset += symbol_get_value_expression (sym)->X_add_number;
772 sym = symbol_get_value_expression (sym)->X_add_symbol;
773 fixp->fx_addsy = sym;
774 }
775
776 if (sym != NULL && symbol_mri_common_p (sym))
777 {
778 /* These symbols are handled specially in fixup_segment. */
779 goto done;
780 }
781
782 symsec = S_GET_SEGMENT (sym);
783
784 if (symsec == NULL)
785 abort ();
786
787 if (bfd_is_abs_section (symsec))
788 {
789 /* The fixup_segment routine will not use this symbol in a
790 relocation unless TC_FORCE_RELOCATION returns 1. */
791 if (TC_FORCE_RELOCATION (fixp))
792 {
793 symbol_mark_used_in_reloc (fixp->fx_addsy);
794 #ifdef UNDEFINED_DIFFERENCE_OK
795 if (fixp->fx_subsy != NULL)
796 symbol_mark_used_in_reloc (fixp->fx_subsy);
797 #endif
798 }
799 goto done;
800 }
801
802 /* If it's one of these sections, assume the symbol is
803 definitely going to be output. The code in
804 md_estimate_size_before_relax in tc-mips.c uses this test
805 as well, so if you change this code you should look at that
806 code. */
807 if (bfd_is_und_section (symsec)
808 || bfd_is_com_section (symsec))
809 {
810 symbol_mark_used_in_reloc (fixp->fx_addsy);
811 #ifdef UNDEFINED_DIFFERENCE_OK
812 /* We have the difference of an undefined symbol and some
813 other symbol. Make sure to mark the other symbol as used
814 in a relocation so that it will always be output. */
815 if (fixp->fx_subsy)
816 symbol_mark_used_in_reloc (fixp->fx_subsy);
817 #endif
818 goto done;
819 }
820
821 /* Don't try to reduce relocs which refer to non-local symbols
822 in .linkonce sections. It can lead to confusion when a
823 debugging section refers to a .linkonce section. I hope
824 this will always be correct. */
825 if (symsec != sec && ! S_IS_LOCAL (sym))
826 {
827 boolean linkonce;
828
829 linkonce = false;
830 #ifdef BFD_ASSEMBLER
831 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
832 != 0)
833 linkonce = true;
834 #endif
835 #ifdef OBJ_ELF
836 /* The GNU toolchain uses an extension for ELF: a section
837 beginning with the magic string .gnu.linkonce is a
838 linkonce section. */
839 if (strncmp (segment_name (symsec), ".gnu.linkonce",
840 sizeof ".gnu.linkonce" - 1) == 0)
841 linkonce = true;
842 #endif
843
844 if (linkonce)
845 {
846 symbol_mark_used_in_reloc (fixp->fx_addsy);
847 #ifdef UNDEFINED_DIFFERENCE_OK
848 if (fixp->fx_subsy != NULL)
849 symbol_mark_used_in_reloc (fixp->fx_subsy);
850 #endif
851 goto done;
852 }
853 }
854
855 /* Since we're reducing to section symbols, don't attempt to reduce
856 anything that's already using one. */
857 if (symbol_section_p (sym))
858 {
859 symbol_mark_used_in_reloc (fixp->fx_addsy);
860 goto done;
861 }
862
863 #ifdef BFD_ASSEMBLER
864 /* We can never adjust a reloc against a weak symbol. If we
865 did, and the weak symbol was overridden by a real symbol
866 somewhere else, then our relocation would be pointing at
867 the wrong area of memory. */
868 if (S_IS_WEAK (sym))
869 {
870 symbol_mark_used_in_reloc (fixp->fx_addsy);
871 goto done;
872 }
873
874 /* Never adjust a reloc against local symbol in a merge section. */
875 if (symsec->flags & SEC_MERGE)
876 {
877 symbol_mark_used_in_reloc (fixp->fx_addsy);
878 goto done;
879 }
880 #endif
881
882 /* Is there some other reason we can't adjust this one? (E.g.,
883 call/bal links in i960-bout symbols.) */
884 #ifdef obj_fix_adjustable
885 if (! obj_fix_adjustable (fixp))
886 {
887 symbol_mark_used_in_reloc (fixp->fx_addsy);
888 goto done;
889 }
890 #endif
891
892 /* Is there some other (target cpu dependent) reason we can't adjust
893 this one? (E.g. relocations involving function addresses on
894 the PA. */
895 #ifdef tc_fix_adjustable
896 if (! tc_fix_adjustable (fixp))
897 {
898 symbol_mark_used_in_reloc (fixp->fx_addsy);
899 goto done;
900 }
901 #endif
902
903 /* If the section symbol isn't going to be output, the relocs
904 at least should still work. If not, figure out what to do
905 when we run into that case.
906
907 We refetch the segment when calling section_symbol, rather
908 than using symsec, because S_GET_VALUE may wind up changing
909 the section when it calls resolve_symbol_value. */
910 fixp->fx_offset += S_GET_VALUE (sym);
911 fixp->fx_addsy = section_symbol (S_GET_SEGMENT (sym));
912 symbol_mark_used_in_reloc (fixp->fx_addsy);
913 #ifdef DEBUG5
914 fprintf (stderr, "\nadjusted fixup:\n");
915 print_fixup (fixp);
916 #endif
917
918 done:
919 ;
920 }
921 #if 1 /* def RELOC_REQUIRES_SYMBOL */
922 else
923 {
924 /* There was no symbol required by this relocation. However,
925 BFD doesn't really handle relocations without symbols well.
926 (At least, the COFF support doesn't.) So for now we fake up
927 a local symbol in the absolute section. */
928
929 fixp->fx_addsy = section_symbol (absolute_section);
930 #if 0
931 fixp->fx_addsy->sy_used_in_reloc = 1;
932 #endif
933 }
934 #endif
935
936 dump_section_relocs (abfd, sec, stderr);
937 }
938
939 static void
940 write_relocs (abfd, sec, xxx)
941 bfd *abfd;
942 asection *sec;
943 PTR xxx ATTRIBUTE_UNUSED;
944 {
945 segment_info_type *seginfo = seg_info (sec);
946 unsigned int i;
947 unsigned int n;
948 arelent **relocs;
949 fixS *fixp;
950 char *err;
951
952 /* If seginfo is NULL, we did not create this section; don't do
953 anything with it. */
954 if (seginfo == NULL)
955 return;
956
957 fixup_segment (seginfo->fix_root, sec);
958
959 n = 0;
960 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
961 n++;
962
963 #ifndef RELOC_EXPANSION_POSSIBLE
964 /* Set up reloc information as well. */
965 relocs = (arelent **) xmalloc (n * sizeof (arelent *));
966 memset ((char *) relocs, 0, n * sizeof (arelent *));
967
968 i = 0;
969 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
970 {
971 arelent *reloc;
972 bfd_reloc_status_type s;
973 symbolS *sym;
974
975 if (fixp->fx_done)
976 {
977 n--;
978 continue;
979 }
980
981 /* If this is an undefined symbol which was equated to another
982 symbol, then use generate the reloc against the latter symbol
983 rather than the former. */
984 sym = fixp->fx_addsy;
985 while (symbol_equated_p (sym)
986 && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
987 {
988 symbolS *n;
989
990 /* We must avoid looping, as that can occur with a badly
991 written program. */
992 n = symbol_get_value_expression (sym)->X_add_symbol;
993 if (n == sym)
994 break;
995 fixp->fx_offset += symbol_get_value_expression (sym)->X_add_number;
996 sym = n;
997 }
998 fixp->fx_addsy = sym;
999
1000 reloc = tc_gen_reloc (sec, fixp);
1001 if (!reloc)
1002 {
1003 n--;
1004 continue;
1005 }
1006
1007 #if 0
1008 /* This test is triggered inappropriately for the SH. */
1009 if (fixp->fx_where + fixp->fx_size
1010 > fixp->fx_frag->fr_fix + fixp->fx_frag->fr_offset)
1011 abort ();
1012 #endif
1013
1014 s = bfd_install_relocation (stdoutput, reloc,
1015 fixp->fx_frag->fr_literal,
1016 fixp->fx_frag->fr_address,
1017 sec, &err);
1018 switch (s)
1019 {
1020 case bfd_reloc_ok:
1021 break;
1022 case bfd_reloc_overflow:
1023 as_bad_where (fixp->fx_file, fixp->fx_line, _("relocation overflow"));
1024 break;
1025 case bfd_reloc_outofrange:
1026 as_bad_where (fixp->fx_file, fixp->fx_line, _("relocation out of range"));
1027 break;
1028 default:
1029 as_fatal (_("%s:%u: bad return from bfd_install_relocation: %x"),
1030 fixp->fx_file, fixp->fx_line, s);
1031 }
1032 relocs[i++] = reloc;
1033 }
1034 #else
1035 n = n * MAX_RELOC_EXPANSION;
1036 /* Set up reloc information as well. */
1037 relocs = (arelent **) xmalloc (n * sizeof (arelent *));
1038
1039 i = 0;
1040 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
1041 {
1042 arelent **reloc;
1043 char *data;
1044 bfd_reloc_status_type s;
1045 symbolS *sym;
1046 int j;
1047
1048 if (fixp->fx_done)
1049 {
1050 n--;
1051 continue;
1052 }
1053
1054 /* If this is an undefined symbol which was equated to another
1055 symbol, then generate the reloc against the latter symbol
1056 rather than the former. */
1057 sym = fixp->fx_addsy;
1058 while (symbol_equated_p (sym)
1059 && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
1060 sym = symbol_get_value_expression (sym)->X_add_symbol;
1061 fixp->fx_addsy = sym;
1062
1063 reloc = tc_gen_reloc (sec, fixp);
1064
1065 for (j = 0; reloc[j]; j++)
1066 {
1067 relocs[i++] = reloc[j];
1068 assert (i <= n);
1069 }
1070 data = fixp->fx_frag->fr_literal + fixp->fx_where;
1071 if (fixp->fx_where + fixp->fx_size
1072 > fixp->fx_frag->fr_fix + fixp->fx_frag->fr_offset)
1073 as_bad_where (fixp->fx_file, fixp->fx_line,
1074 _("internal error: fixup not contained within frag"));
1075 for (j = 0; reloc[j]; j++)
1076 {
1077 s = bfd_install_relocation (stdoutput, reloc[j],
1078 fixp->fx_frag->fr_literal,
1079 fixp->fx_frag->fr_address,
1080 sec, &err);
1081 switch (s)
1082 {
1083 case bfd_reloc_ok:
1084 break;
1085 case bfd_reloc_overflow:
1086 as_bad_where (fixp->fx_file, fixp->fx_line,
1087 _("relocation overflow"));
1088 break;
1089 default:
1090 as_fatal (_("%s:%u: bad return from bfd_install_relocation"),
1091 fixp->fx_file, fixp->fx_line);
1092 }
1093 }
1094 }
1095 n = i;
1096 #endif
1097
1098 #ifdef DEBUG4
1099 {
1100 int i, j, nsyms;
1101 asymbol **sympp;
1102 sympp = bfd_get_outsymbols (stdoutput);
1103 nsyms = bfd_get_symcount (stdoutput);
1104 for (i = 0; i < n; i++)
1105 if (((*relocs[i]->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
1106 {
1107 for (j = 0; j < nsyms; j++)
1108 if (sympp[j] == *relocs[i]->sym_ptr_ptr)
1109 break;
1110 if (j == nsyms)
1111 abort ();
1112 }
1113 }
1114 #endif
1115
1116 if (n)
1117 bfd_set_reloc (stdoutput, sec, relocs, n);
1118 else
1119 bfd_set_section_flags (abfd, sec,
1120 (bfd_get_section_flags (abfd, sec)
1121 & (flagword) ~SEC_RELOC));
1122
1123 #ifdef SET_SECTION_RELOCS
1124 SET_SECTION_RELOCS (sec, relocs, n);
1125 #endif
1126
1127 #ifdef DEBUG3
1128 {
1129 int i;
1130 arelent *r;
1131 asymbol *s;
1132 fprintf (stderr, "relocs for sec %s\n", sec->name);
1133 for (i = 0; i < n; i++)
1134 {
1135 r = relocs[i];
1136 s = *r->sym_ptr_ptr;
1137 fprintf (stderr, " reloc %2d @%08x off %4x : sym %-10s addend %x\n",
1138 i, r, r->address, s->name, r->addend);
1139 }
1140 }
1141 #endif
1142 }
1143
1144 static void
1145 write_contents (abfd, sec, xxx)
1146 bfd *abfd ATTRIBUTE_UNUSED;
1147 asection *sec;
1148 PTR xxx ATTRIBUTE_UNUSED;
1149 {
1150 segment_info_type *seginfo = seg_info (sec);
1151 unsigned long offset = 0;
1152 fragS *f;
1153
1154 /* Write out the frags. */
1155 if (seginfo == NULL
1156 || !(bfd_get_section_flags (abfd, sec) & SEC_HAS_CONTENTS))
1157 return;
1158
1159 for (f = seginfo->frchainP->frch_root;
1160 f;
1161 f = f->fr_next)
1162 {
1163 int x;
1164 unsigned long fill_size;
1165 char *fill_literal;
1166 long count;
1167
1168 assert (f->fr_type == rs_fill);
1169 if (f->fr_fix)
1170 {
1171 x = bfd_set_section_contents (stdoutput, sec,
1172 f->fr_literal, (file_ptr) offset,
1173 (bfd_size_type) f->fr_fix);
1174 if (x == false)
1175 {
1176 bfd_perror (stdoutput->filename);
1177 as_perror (_("FATAL: Can't write %s"), stdoutput->filename);
1178 exit (EXIT_FAILURE);
1179 }
1180 offset += f->fr_fix;
1181 }
1182 fill_literal = f->fr_literal + f->fr_fix;
1183 fill_size = f->fr_var;
1184 count = f->fr_offset;
1185 assert (count >= 0);
1186 if (fill_size && count)
1187 {
1188 char buf[256];
1189 if (fill_size > sizeof (buf))
1190 {
1191 /* Do it the old way. Can this ever happen? */
1192 while (count--)
1193 {
1194 x = bfd_set_section_contents (stdoutput, sec,
1195 fill_literal,
1196 (file_ptr) offset,
1197 (bfd_size_type) fill_size);
1198 if (x == false)
1199 {
1200 bfd_perror (stdoutput->filename);
1201 as_perror (_("FATAL: Can't write %s"),
1202 stdoutput->filename);
1203 exit (EXIT_FAILURE);
1204 }
1205 offset += fill_size;
1206 }
1207 }
1208 else
1209 {
1210 /* Build a buffer full of fill objects and output it as
1211 often as necessary. This saves on the overhead of
1212 potentially lots of bfd_set_section_contents calls. */
1213 int n_per_buf, i;
1214 if (fill_size == 1)
1215 {
1216 n_per_buf = sizeof (buf);
1217 memset (buf, *fill_literal, n_per_buf);
1218 }
1219 else
1220 {
1221 char *bufp;
1222 n_per_buf = sizeof (buf) / fill_size;
1223 for (i = n_per_buf, bufp = buf; i; i--, bufp += fill_size)
1224 memcpy (bufp, fill_literal, fill_size);
1225 }
1226 for (; count > 0; count -= n_per_buf)
1227 {
1228 n_per_buf = n_per_buf > count ? count : n_per_buf;
1229 x = bfd_set_section_contents
1230 (stdoutput, sec, buf, (file_ptr) offset,
1231 (bfd_size_type) n_per_buf * fill_size);
1232 if (x != true)
1233 as_fatal (_("Cannot write to output file."));
1234 offset += n_per_buf * fill_size;
1235 }
1236 }
1237 }
1238 }
1239 }
1240 #endif
1241
1242 #if defined(BFD_ASSEMBLER) || (!defined (BFD) && !defined(OBJ_AOUT))
1243 static void
1244 merge_data_into_text ()
1245 {
1246 #if defined(BFD_ASSEMBLER) || defined(MANY_SEGMENTS)
1247 seg_info (text_section)->frchainP->frch_last->fr_next =
1248 seg_info (data_section)->frchainP->frch_root;
1249 seg_info (text_section)->frchainP->frch_last =
1250 seg_info (data_section)->frchainP->frch_last;
1251 seg_info (data_section)->frchainP = 0;
1252 #else
1253 fixS *tmp;
1254
1255 text_last_frag->fr_next = data_frag_root;
1256 text_last_frag = data_last_frag;
1257 data_last_frag = NULL;
1258 data_frag_root = NULL;
1259 if (text_fix_root)
1260 {
1261 for (tmp = text_fix_root; tmp->fx_next; tmp = tmp->fx_next);;
1262 tmp->fx_next = data_fix_root;
1263 text_fix_tail = data_fix_tail;
1264 }
1265 else
1266 text_fix_root = data_fix_root;
1267 data_fix_root = NULL;
1268 #endif
1269 }
1270 #endif /* BFD_ASSEMBLER || (! BFD && ! OBJ_AOUT) */
1271
1272 #if !defined (BFD_ASSEMBLER) && !defined (BFD)
1273 static void
1274 relax_and_size_all_segments ()
1275 {
1276 fragS *fragP;
1277
1278 relax_segment (text_frag_root, SEG_TEXT);
1279 relax_segment (data_frag_root, SEG_DATA);
1280 relax_segment (bss_frag_root, SEG_BSS);
1281
1282 /* Now the addresses of frags are correct within the segment. */
1283 know (text_last_frag->fr_type == rs_fill && text_last_frag->fr_offset == 0);
1284 H_SET_TEXT_SIZE (&headers, text_last_frag->fr_address);
1285 text_last_frag->fr_address = H_GET_TEXT_SIZE (&headers);
1286
1287 /* Join the 2 segments into 1 huge segment.
1288 To do this, re-compute every rn_address in the SEG_DATA frags.
1289 Then join the data frags after the text frags.
1290
1291 Determine a_data [length of data segment]. */
1292 if (data_frag_root)
1293 {
1294 register relax_addressT slide;
1295
1296 know ((text_last_frag->fr_type == rs_fill)
1297 && (text_last_frag->fr_offset == 0));
1298
1299 H_SET_DATA_SIZE (&headers, data_last_frag->fr_address);
1300 data_last_frag->fr_address = H_GET_DATA_SIZE (&headers);
1301 slide = H_GET_TEXT_SIZE (&headers); /* & in file of the data segment. */
1302 #ifdef OBJ_BOUT
1303 #define RoundUp(N,S) (((N)+(S)-1)&-(S))
1304 /* For b.out: If the data section has a strict alignment
1305 requirement, its load address in the .o file will be
1306 rounded up from the size of the text section. These
1307 two values are *not* the same! Similarly for the bss
1308 section.... */
1309 slide = RoundUp (slide, 1 << section_alignment[SEG_DATA]);
1310 #endif
1311
1312 for (fragP = data_frag_root; fragP; fragP = fragP->fr_next)
1313 fragP->fr_address += slide;
1314
1315 know (text_last_frag != 0);
1316 text_last_frag->fr_next = data_frag_root;
1317 }
1318 else
1319 {
1320 H_SET_DATA_SIZE (&headers, 0);
1321 }
1322
1323 #ifdef OBJ_BOUT
1324 /* See above comments on b.out data section address. */
1325 {
1326 long bss_vma;
1327 if (data_last_frag == 0)
1328 bss_vma = H_GET_TEXT_SIZE (&headers);
1329 else
1330 bss_vma = data_last_frag->fr_address;
1331 bss_vma = RoundUp (bss_vma, 1 << section_alignment[SEG_BSS]);
1332 bss_address_frag.fr_address = bss_vma;
1333 }
1334 #else /* ! OBJ_BOUT */
1335 bss_address_frag.fr_address = (H_GET_TEXT_SIZE (&headers) +
1336 H_GET_DATA_SIZE (&headers));
1337
1338 #endif /* ! OBJ_BOUT */
1339
1340 /* Slide all the frags. */
1341 if (bss_frag_root)
1342 {
1343 relax_addressT slide = bss_address_frag.fr_address;
1344
1345 for (fragP = bss_frag_root; fragP; fragP = fragP->fr_next)
1346 fragP->fr_address += slide;
1347 }
1348
1349 if (bss_last_frag)
1350 H_SET_BSS_SIZE (&headers,
1351 bss_last_frag->fr_address - bss_frag_root->fr_address);
1352 else
1353 H_SET_BSS_SIZE (&headers, 0);
1354 }
1355 #endif /* ! BFD_ASSEMBLER && ! BFD */
1356
1357 #if defined (BFD_ASSEMBLER) || !defined (BFD)
1358
1359 #ifdef BFD_ASSEMBLER
1360 static void
1361 set_symtab ()
1362 {
1363 int nsyms;
1364 asymbol **asympp;
1365 symbolS *symp;
1366 boolean result;
1367 extern PTR bfd_alloc PARAMS ((bfd *, size_t));
1368
1369 /* Count symbols. We can't rely on a count made by the loop in
1370 write_object_file, because *_frob_file may add a new symbol or
1371 two. */
1372 nsyms = 0;
1373 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1374 nsyms++;
1375
1376 if (nsyms)
1377 {
1378 int i;
1379
1380 asympp = (asymbol **) bfd_alloc (stdoutput,
1381 nsyms * sizeof (asymbol *));
1382 symp = symbol_rootP;
1383 for (i = 0; i < nsyms; i++, symp = symbol_next (symp))
1384 {
1385 asympp[i] = symbol_get_bfdsym (symp);
1386 symbol_mark_written (symp);
1387 }
1388 }
1389 else
1390 asympp = 0;
1391 result = bfd_set_symtab (stdoutput, asympp, nsyms);
1392 assert (result == true);
1393 symbol_table_frozen = 1;
1394 }
1395 #endif
1396
1397 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
1398 static void
1399 set_segment_vma (abfd, sec, xxx)
1400 bfd *abfd;
1401 asection *sec;
1402 PTR xxx ATTRIBUTE_UNUSED;
1403 {
1404 static bfd_vma addr = 0;
1405
1406 bfd_set_section_vma (abfd, sec, addr);
1407 addr += bfd_section_size (abfd, sec);
1408 }
1409 #endif /* BFD_ASSEMBLER && OBJ_COFF && !TE_PE */
1410
1411 /* Finish the subsegments. After every sub-segment, we fake an
1412 ".align ...". This conforms to BSD4.2 brane-damage. We then fake
1413 ".fill 0" because that is the kind of frag that requires least
1414 thought. ".align" frags like to have a following frag since that
1415 makes calculating their intended length trivial. */
1416
1417 #ifndef SUB_SEGMENT_ALIGN
1418 #ifdef BFD_ASSEMBLER
1419 #define SUB_SEGMENT_ALIGN(SEG) (0)
1420 #else
1421 #define SUB_SEGMENT_ALIGN(SEG) (2)
1422 #endif
1423 #endif
1424
1425 void
1426 subsegs_finish ()
1427 {
1428 struct frchain *frchainP;
1429
1430 for (frchainP = frchain_root; frchainP; frchainP = frchainP->frch_next)
1431 {
1432 int alignment;
1433
1434 subseg_set (frchainP->frch_seg, frchainP->frch_subseg);
1435
1436 /* This now gets called even if we had errors. In that case,
1437 any alignment is meaningless, and, moreover, will look weird
1438 if we are generating a listing. */
1439 alignment = had_errors () ? 0 : SUB_SEGMENT_ALIGN (now_seg);
1440
1441 /* The last subsegment gets an aligment corresponding to the
1442 alignment of the section. This allows proper nop-filling
1443 at the end of code-bearing sections. */
1444 if (!frchainP->frch_next || frchainP->frch_next->frch_seg != now_seg)
1445 alignment = get_recorded_alignment (now_seg);
1446
1447 if (subseg_text_p (now_seg))
1448 frag_align_code (alignment, 0);
1449 else
1450 frag_align (alignment, 0, 0);
1451
1452 /* frag_align will have left a new frag.
1453 Use this last frag for an empty ".fill".
1454
1455 For this segment ...
1456 Create a last frag. Do not leave a "being filled in frag". */
1457 frag_wane (frag_now);
1458 frag_now->fr_fix = 0;
1459 know (frag_now->fr_next == NULL);
1460 }
1461 }
1462
1463 /* Write the object file. */
1464
1465 void
1466 write_object_file ()
1467 {
1468 #if ! defined (BFD_ASSEMBLER) || ! defined (WORKING_DOT_WORD)
1469 fragS *fragP; /* Track along all frags. */
1470 #endif
1471
1472 /* Do we really want to write it? */
1473 {
1474 int n_warns, n_errs;
1475 n_warns = had_warnings ();
1476 n_errs = had_errors ();
1477 /* The -Z flag indicates that an object file should be generated,
1478 regardless of warnings and errors. */
1479 if (flag_always_generate_output)
1480 {
1481 if (n_warns || n_errs)
1482 as_warn (_("%d error%s, %d warning%s, generating bad object file.\n"),
1483 n_errs, n_errs == 1 ? "" : "s",
1484 n_warns, n_warns == 1 ? "" : "s");
1485 }
1486 else
1487 {
1488 if (n_errs)
1489 as_fatal (_("%d error%s, %d warning%s, no object file generated.\n"),
1490 n_errs, n_errs == 1 ? "" : "s",
1491 n_warns, n_warns == 1 ? "" : "s");
1492 }
1493 }
1494
1495 #ifdef OBJ_VMS
1496 /* Under VMS we try to be compatible with VAX-11 "C". Thus, we call
1497 a routine to check for the definition of the procedure "_main",
1498 and if so -- fix it up so that it can be program entry point. */
1499 vms_check_for_main ();
1500 #endif /* OBJ_VMS */
1501
1502 /* From now on, we don't care about sub-segments. Build one frag chain
1503 for each segment. Linked thru fr_next. */
1504
1505 #ifdef BFD_ASSEMBLER
1506 /* Remove the sections created by gas for its own purposes. */
1507 {
1508 asection **seclist, *sec;
1509 int i;
1510
1511 seclist = &stdoutput->sections;
1512 while (seclist && *seclist)
1513 {
1514 sec = *seclist;
1515 while (sec == reg_section || sec == expr_section)
1516 {
1517 sec = sec->next;
1518 *seclist = sec;
1519 stdoutput->section_count--;
1520 if (!sec)
1521 break;
1522 }
1523 if (*seclist)
1524 seclist = &(*seclist)->next;
1525 }
1526 i = 0;
1527 bfd_map_over_sections (stdoutput, renumber_sections, &i);
1528 }
1529
1530 bfd_map_over_sections (stdoutput, chain_frchains_together, (char *) 0);
1531 #else
1532 remove_subsegs (frchain_root, SEG_TEXT, &text_frag_root, &text_last_frag);
1533 remove_subsegs (data0_frchainP, SEG_DATA, &data_frag_root, &data_last_frag);
1534 remove_subsegs (bss0_frchainP, SEG_BSS, &bss_frag_root, &bss_last_frag);
1535 #endif
1536
1537 /* We have two segments. If user gave -R flag, then we must put the
1538 data frags into the text segment. Do this before relaxing so
1539 we know to take advantage of -R and make shorter addresses. */
1540 #if !defined (OBJ_AOUT) || defined (BFD_ASSEMBLER)
1541 if (flag_readonly_data_in_text)
1542 {
1543 merge_data_into_text ();
1544 }
1545 #endif
1546
1547 #ifdef BFD_ASSEMBLER
1548 while (1)
1549 {
1550 int changed;
1551
1552 #ifndef WORKING_DOT_WORD
1553 /* We need to reset the markers in the broken word list and
1554 associated frags between calls to relax_segment (via
1555 relax_seg). Since the broken word list is global, we do it
1556 once per round, rather than locally in relax_segment for each
1557 segment. */
1558 struct broken_word *brokp;
1559
1560 for (brokp = broken_words;
1561 brokp != (struct broken_word *) NULL;
1562 brokp = brokp->next_broken_word)
1563 {
1564 brokp->added = 0;
1565
1566 if (brokp->dispfrag != (fragS *) NULL
1567 && brokp->dispfrag->fr_type == rs_broken_word)
1568 brokp->dispfrag->fr_subtype = 0;
1569 }
1570 #endif
1571
1572 changed = 0;
1573 bfd_map_over_sections (stdoutput, relax_seg, &changed);
1574 if (!changed)
1575 break;
1576 }
1577
1578 /* Note - we do not set finalize_syms here because some targets
1579 do not finish sizing all of their frags until after size_seg
1580 has completed. */
1581 bfd_map_over_sections (stdoutput, size_seg, (char *) 0);
1582 #else
1583 relax_and_size_all_segments ();
1584 #endif /* BFD_ASSEMBLER */
1585
1586 /* Relaxation has completed. Freeze all syms. */
1587 finalize_syms = 1;
1588
1589 #if defined (BFD_ASSEMBLER) && defined (OBJ_COFF) && defined (TE_GO32)
1590 /* Now that the segments have their final sizes, run through the
1591 sections and set their vma and lma. !BFD gas sets them, and BFD gas
1592 should too. Currently, only DJGPP uses this code, but other
1593 COFF targets may need to execute this too. */
1594 bfd_map_over_sections (stdoutput, set_segment_vma, (char *) 0);
1595 #endif
1596
1597 #ifndef BFD_ASSEMBLER
1598 /* Crawl the symbol chain.
1599
1600 For each symbol whose value depends on a frag, take the address of
1601 that frag and subsume it into the value of the symbol.
1602 After this, there is just one way to lookup a symbol value.
1603 Values are left in their final state for object file emission.
1604 We adjust the values of 'L' local symbols, even if we do
1605 not intend to emit them to the object file, because their values
1606 are needed for fix-ups.
1607
1608 Unless we saw a -L flag, remove all symbols that begin with 'L'
1609 from the symbol chain. (They are still pointed to by the fixes.)
1610
1611 Count the remaining symbols.
1612 Assign a symbol number to each symbol.
1613 Count the number of string-table chars we will emit.
1614 Put this info into the headers as appropriate. */
1615 know (zero_address_frag.fr_address == 0);
1616 string_byte_count = sizeof (string_byte_count);
1617
1618 obj_crawl_symbol_chain (&headers);
1619
1620 if (string_byte_count == sizeof (string_byte_count))
1621 string_byte_count = 0;
1622
1623 H_SET_STRING_SIZE (&headers, string_byte_count);
1624
1625 /* Addresses of frags now reflect addresses we use in the object file.
1626 Symbol values are correct.
1627 Scan the frags, converting any ".org"s and ".align"s to ".fill"s.
1628 Also converting any machine-dependent frags using md_convert_frag(); */
1629 subseg_change (SEG_TEXT, 0);
1630
1631 for (fragP = text_frag_root; fragP; fragP = fragP->fr_next)
1632 {
1633 /* At this point we have linked all the frags into a single
1634 chain. However, cvt_frag_to_fill may call md_convert_frag
1635 which may call fix_new. We need to ensure that fix_new adds
1636 the fixup to the right section. */
1637 if (fragP == data_frag_root)
1638 subseg_change (SEG_DATA, 0);
1639
1640 cvt_frag_to_fill (&headers, SEG_TEXT, fragP);
1641
1642 /* Some assert macros don't work with # directives mixed in. */
1643 #ifndef NDEBUG
1644 if (!(fragP->fr_next == NULL
1645 #ifdef OBJ_BOUT
1646 || fragP->fr_next == data_frag_root
1647 #endif
1648 || ((fragP->fr_next->fr_address - fragP->fr_address)
1649 == (fragP->fr_fix + fragP->fr_offset * fragP->fr_var))))
1650 abort ();
1651 #endif
1652 }
1653 #endif /* ! BFD_ASSEMBLER */
1654
1655 #ifndef WORKING_DOT_WORD
1656 {
1657 struct broken_word *lie;
1658 struct broken_word **prevP;
1659
1660 prevP = &broken_words;
1661 for (lie = broken_words; lie; lie = lie->next_broken_word)
1662 if (!lie->added)
1663 {
1664 expressionS exp;
1665
1666 subseg_change (lie->seg, lie->subseg);
1667 exp.X_op = O_subtract;
1668 exp.X_add_symbol = lie->add;
1669 exp.X_op_symbol = lie->sub;
1670 exp.X_add_number = lie->addnum;
1671 #ifdef BFD_ASSEMBLER
1672 #ifdef TC_CONS_FIX_NEW
1673 TC_CONS_FIX_NEW (lie->frag,
1674 lie->word_goes_here - lie->frag->fr_literal,
1675 2, &exp);
1676 #else
1677 fix_new_exp (lie->frag,
1678 lie->word_goes_here - lie->frag->fr_literal,
1679 2, &exp, 0, BFD_RELOC_16);
1680 #endif
1681 #else
1682 #if defined(TC_SPARC) || defined(TC_A29K) || defined(NEED_FX_R_TYPE)
1683 fix_new_exp (lie->frag,
1684 lie->word_goes_here - lie->frag->fr_literal,
1685 2, &exp, 0, NO_RELOC);
1686 #else
1687 #ifdef TC_NS32K
1688 fix_new_ns32k_exp (lie->frag,
1689 lie->word_goes_here - lie->frag->fr_literal,
1690 2, &exp, 0, 0, 2, 0, 0);
1691 #else
1692 fix_new_exp (lie->frag,
1693 lie->word_goes_here - lie->frag->fr_literal,
1694 2, &exp, 0, 0);
1695 #endif /* TC_NS32K */
1696 #endif /* TC_SPARC|TC_A29K|NEED_FX_R_TYPE */
1697 #endif /* BFD_ASSEMBLER */
1698 *prevP = lie->next_broken_word;
1699 }
1700 else
1701 prevP = &(lie->next_broken_word);
1702
1703 for (lie = broken_words; lie;)
1704 {
1705 struct broken_word *untruth;
1706 char *table_ptr;
1707 addressT table_addr;
1708 addressT from_addr, to_addr;
1709 int n, m;
1710
1711 subseg_change (lie->seg, lie->subseg);
1712 fragP = lie->dispfrag;
1713
1714 /* Find out how many broken_words go here. */
1715 n = 0;
1716 for (untruth = lie;
1717 untruth && untruth->dispfrag == fragP;
1718 untruth = untruth->next_broken_word)
1719 if (untruth->added == 1)
1720 n++;
1721
1722 table_ptr = lie->dispfrag->fr_opcode;
1723 table_addr = (lie->dispfrag->fr_address
1724 + (table_ptr - lie->dispfrag->fr_literal));
1725 /* Create the jump around the long jumps. This is a short
1726 jump from table_ptr+0 to table_ptr+n*long_jump_size. */
1727 from_addr = table_addr;
1728 to_addr = table_addr + md_short_jump_size + n * md_long_jump_size;
1729 md_create_short_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1730 lie->add);
1731 table_ptr += md_short_jump_size;
1732 table_addr += md_short_jump_size;
1733
1734 for (m = 0;
1735 lie && lie->dispfrag == fragP;
1736 m++, lie = lie->next_broken_word)
1737 {
1738 if (lie->added == 2)
1739 continue;
1740 /* Patch the jump table. */
1741 /* This is the offset from ??? to table_ptr+0. */
1742 to_addr = table_addr - S_GET_VALUE (lie->sub);
1743 #ifdef BFD_ASSEMBLER
1744 to_addr -= symbol_get_frag (lie->sub)->fr_address;
1745 #endif
1746 #ifdef TC_CHECK_ADJUSTED_BROKEN_DOT_WORD
1747 TC_CHECK_ADJUSTED_BROKEN_DOT_WORD (to_addr, lie);
1748 #endif
1749 md_number_to_chars (lie->word_goes_here, to_addr, 2);
1750 for (untruth = lie->next_broken_word;
1751 untruth && untruth->dispfrag == fragP;
1752 untruth = untruth->next_broken_word)
1753 {
1754 if (untruth->use_jump == lie)
1755 md_number_to_chars (untruth->word_goes_here, to_addr, 2);
1756 }
1757
1758 /* Install the long jump. */
1759 /* This is a long jump from table_ptr+0 to the final target. */
1760 from_addr = table_addr;
1761 to_addr = S_GET_VALUE (lie->add) + lie->addnum;
1762 #ifdef BFD_ASSEMBLER
1763 to_addr += symbol_get_frag (lie->add)->fr_address;
1764 #endif
1765 md_create_long_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1766 lie->add);
1767 table_ptr += md_long_jump_size;
1768 table_addr += md_long_jump_size;
1769 }
1770 }
1771 }
1772 #endif /* not WORKING_DOT_WORD */
1773
1774 #ifndef BFD_ASSEMBLER
1775 #ifndef OBJ_VMS
1776 { /* not vms */
1777 char *the_object_file;
1778 long object_file_size;
1779 /* Scan every FixS performing fixups. We had to wait until now to
1780 do this because md_convert_frag() may have made some fixSs. */
1781 int trsize, drsize;
1782
1783 subseg_change (SEG_TEXT, 0);
1784 trsize = md_reloc_size * fixup_segment (text_fix_root, SEG_TEXT);
1785 subseg_change (SEG_DATA, 0);
1786 drsize = md_reloc_size * fixup_segment (data_fix_root, SEG_DATA);
1787 H_SET_RELOCATION_SIZE (&headers, trsize, drsize);
1788
1789 /* FIXME: Move this stuff into the pre-write-hook. */
1790 H_SET_MAGIC_NUMBER (&headers, magic_number_for_object_file);
1791 H_SET_ENTRY_POINT (&headers, 0);
1792
1793 obj_pre_write_hook (&headers); /* Extra coff stuff. */
1794
1795 object_file_size = H_GET_FILE_SIZE (&headers);
1796 next_object_file_charP = the_object_file = xmalloc (object_file_size);
1797
1798 output_file_create (out_file_name);
1799
1800 obj_header_append (&next_object_file_charP, &headers);
1801
1802 know ((next_object_file_charP - the_object_file)
1803 == H_GET_HEADER_SIZE (&headers));
1804
1805 /* Emit code. */
1806 for (fragP = text_frag_root; fragP; fragP = fragP->fr_next)
1807 {
1808 register long count;
1809 register char *fill_literal;
1810 register long fill_size;
1811
1812 PROGRESS (1);
1813 know (fragP->fr_type == rs_fill);
1814 append (&next_object_file_charP, fragP->fr_literal,
1815 (unsigned long) fragP->fr_fix);
1816 fill_literal = fragP->fr_literal + fragP->fr_fix;
1817 fill_size = fragP->fr_var;
1818 know (fragP->fr_offset >= 0);
1819
1820 for (count = fragP->fr_offset; count; count--)
1821 append (&next_object_file_charP, fill_literal,
1822 (unsigned long) fill_size);
1823 }
1824
1825 know ((next_object_file_charP - the_object_file)
1826 == (H_GET_HEADER_SIZE (&headers)
1827 + H_GET_TEXT_SIZE (&headers)
1828 + H_GET_DATA_SIZE (&headers)));
1829
1830 /* Emit relocations. */
1831 obj_emit_relocations (&next_object_file_charP, text_fix_root,
1832 (relax_addressT) 0);
1833 know ((next_object_file_charP - the_object_file)
1834 == (H_GET_HEADER_SIZE (&headers)
1835 + H_GET_TEXT_SIZE (&headers)
1836 + H_GET_DATA_SIZE (&headers)
1837 + H_GET_TEXT_RELOCATION_SIZE (&headers)));
1838 #ifdef TC_I960
1839 /* Make addresses in data relocation directives relative to beginning of
1840 first data fragment, not end of last text fragment: alignment of the
1841 start of the data segment may place a gap between the segments. */
1842 obj_emit_relocations (&next_object_file_charP, data_fix_root,
1843 data0_frchainP->frch_root->fr_address);
1844 #else /* TC_I960 */
1845 obj_emit_relocations (&next_object_file_charP, data_fix_root,
1846 text_last_frag->fr_address);
1847 #endif /* TC_I960 */
1848
1849 know ((next_object_file_charP - the_object_file)
1850 == (H_GET_HEADER_SIZE (&headers)
1851 + H_GET_TEXT_SIZE (&headers)
1852 + H_GET_DATA_SIZE (&headers)
1853 + H_GET_TEXT_RELOCATION_SIZE (&headers)
1854 + H_GET_DATA_RELOCATION_SIZE (&headers)));
1855
1856 /* Emit line number entries. */
1857 OBJ_EMIT_LINENO (&next_object_file_charP, lineno_rootP, the_object_file);
1858 know ((next_object_file_charP - the_object_file)
1859 == (H_GET_HEADER_SIZE (&headers)
1860 + H_GET_TEXT_SIZE (&headers)
1861 + H_GET_DATA_SIZE (&headers)
1862 + H_GET_TEXT_RELOCATION_SIZE (&headers)
1863 + H_GET_DATA_RELOCATION_SIZE (&headers)
1864 + H_GET_LINENO_SIZE (&headers)));
1865
1866 /* Emit symbols. */
1867 obj_emit_symbols (&next_object_file_charP, symbol_rootP);
1868 know ((next_object_file_charP - the_object_file)
1869 == (H_GET_HEADER_SIZE (&headers)
1870 + H_GET_TEXT_SIZE (&headers)
1871 + H_GET_DATA_SIZE (&headers)
1872 + H_GET_TEXT_RELOCATION_SIZE (&headers)
1873 + H_GET_DATA_RELOCATION_SIZE (&headers)
1874 + H_GET_LINENO_SIZE (&headers)
1875 + H_GET_SYMBOL_TABLE_SIZE (&headers)));
1876
1877 /* Emit strings. */
1878 if (string_byte_count > 0)
1879 obj_emit_strings (&next_object_file_charP);
1880
1881 #ifdef BFD_HEADERS
1882 bfd_seek (stdoutput, 0, 0);
1883 bfd_write (the_object_file, 1, object_file_size, stdoutput);
1884 #else
1885
1886 /* Write the data to the file. */
1887 output_file_append (the_object_file, object_file_size, out_file_name);
1888 free (the_object_file);
1889 #endif
1890 }
1891 #else /* OBJ_VMS */
1892 /* Now do the VMS-dependent part of writing the object file. */
1893 vms_write_object_file (H_GET_TEXT_SIZE (&headers),
1894 H_GET_DATA_SIZE (&headers),
1895 H_GET_BSS_SIZE (&headers),
1896 text_frag_root, data_frag_root);
1897 #endif /* OBJ_VMS */
1898 #else /* BFD_ASSEMBLER */
1899
1900 /* Resolve symbol values. This needs to be done before processing
1901 the relocations. */
1902 if (symbol_rootP)
1903 {
1904 symbolS *symp;
1905
1906 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1907 resolve_symbol_value (symp);
1908 }
1909 resolve_local_symbol_values ();
1910
1911 PROGRESS (1);
1912
1913 #ifdef tc_frob_file_before_adjust
1914 tc_frob_file_before_adjust ();
1915 #endif
1916 #ifdef obj_frob_file_before_adjust
1917 obj_frob_file_before_adjust ();
1918 #endif
1919
1920 bfd_map_over_sections (stdoutput, adjust_reloc_syms, (char *) 0);
1921
1922 /* Set up symbol table, and write it out. */
1923 if (symbol_rootP)
1924 {
1925 symbolS *symp;
1926
1927 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1928 {
1929 int punt = 0;
1930 const char *name;
1931
1932 if (symbol_mri_common_p (symp))
1933 {
1934 if (S_IS_EXTERNAL (symp))
1935 as_bad (_("%s: global symbols not supported in common sections"),
1936 S_GET_NAME (symp));
1937 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1938 continue;
1939 }
1940
1941 name = S_GET_NAME (symp);
1942 if (name)
1943 {
1944 const char *name2 =
1945 decode_local_label_name ((char *) S_GET_NAME (symp));
1946 /* They only differ if `name' is a fb or dollar local
1947 label name. */
1948 if (name2 != name && ! S_IS_DEFINED (symp))
1949 as_bad (_("local label %s is not defined"), name2);
1950 }
1951
1952 /* Do it again, because adjust_reloc_syms might introduce
1953 more symbols. They'll probably only be section symbols,
1954 but they'll still need to have the values computed. */
1955 resolve_symbol_value (symp);
1956
1957 /* Skip symbols which were equated to undefined or common
1958 symbols. */
1959 if (symbol_equated_p (symp)
1960 && (! S_IS_DEFINED (symp) || S_IS_COMMON (symp)))
1961 {
1962 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1963 continue;
1964 }
1965
1966 /* So far, common symbols have been treated like undefined symbols.
1967 Put them in the common section now. */
1968 if (S_IS_DEFINED (symp) == 0
1969 && S_GET_VALUE (symp) != 0)
1970 S_SET_SEGMENT (symp, bfd_com_section_ptr);
1971 #if 0
1972 printf ("symbol `%s'\n\t@%x: value=%d flags=%x seg=%s\n",
1973 S_GET_NAME (symp), symp,
1974 S_GET_VALUE (symp),
1975 symbol_get_bfdsym (symp)->flags,
1976 segment_name (S_GET_SEGMENT (symp)));
1977 #endif
1978
1979 #ifdef obj_frob_symbol
1980 obj_frob_symbol (symp, punt);
1981 #endif
1982 #ifdef tc_frob_symbol
1983 if (! punt || symbol_used_in_reloc_p (symp))
1984 tc_frob_symbol (symp, punt);
1985 #endif
1986
1987 /* If we don't want to keep this symbol, splice it out of
1988 the chain now. If EMIT_SECTION_SYMBOLS is 0, we never
1989 want section symbols. Otherwise, we skip local symbols
1990 and symbols that the frob_symbol macros told us to punt,
1991 but we keep such symbols if they are used in relocs. */
1992 if ((! EMIT_SECTION_SYMBOLS
1993 && symbol_section_p (symp))
1994 /* Note that S_IS_EXTERN and S_IS_LOCAL are not always
1995 opposites. Sometimes the former checks flags and the
1996 latter examines the name... */
1997 || (!S_IS_EXTERN (symp)
1998 && (S_IS_LOCAL (symp) || punt)
1999 && ! symbol_used_in_reloc_p (symp)))
2000 {
2001 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
2002
2003 /* After symbol_remove, symbol_next(symp) still returns
2004 the one that came after it in the chain. So we don't
2005 need to do any extra cleanup work here. */
2006 continue;
2007 }
2008
2009 /* Make sure we really got a value for the symbol. */
2010 if (! symbol_resolved_p (symp))
2011 {
2012 as_bad (_("can't resolve value for symbol \"%s\""),
2013 S_GET_NAME (symp));
2014 symbol_mark_resolved (symp);
2015 }
2016
2017 /* Set the value into the BFD symbol. Up til now the value
2018 has only been kept in the gas symbolS struct. */
2019 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
2020 }
2021 }
2022
2023 PROGRESS (1);
2024
2025 /* Now do any format-specific adjustments to the symbol table, such
2026 as adding file symbols. */
2027 #ifdef tc_adjust_symtab
2028 tc_adjust_symtab ();
2029 #endif
2030 #ifdef obj_adjust_symtab
2031 obj_adjust_symtab ();
2032 #endif
2033
2034 /* Now that all the sizes are known, and contents correct, we can
2035 start writing to the file. */
2036 set_symtab ();
2037
2038 /* If *_frob_file changes the symbol value at this point, it is
2039 responsible for moving the changed value into symp->bsym->value
2040 as well. Hopefully all symbol value changing can be done in
2041 *_frob_symbol. */
2042 #ifdef tc_frob_file
2043 tc_frob_file ();
2044 #endif
2045 #ifdef obj_frob_file
2046 obj_frob_file ();
2047 #endif
2048
2049 bfd_map_over_sections (stdoutput, write_relocs, (char *) 0);
2050
2051 #ifdef tc_frob_file_after_relocs
2052 tc_frob_file_after_relocs ();
2053 #endif
2054 #ifdef obj_frob_file_after_relocs
2055 obj_frob_file_after_relocs ();
2056 #endif
2057
2058 bfd_map_over_sections (stdoutput, write_contents, (char *) 0);
2059 #endif /* BFD_ASSEMBLER */
2060 }
2061 #endif /* ! BFD */
2062
2063 #ifdef TC_GENERIC_RELAX_TABLE
2064
2065 /* Relax a fragment by scanning TC_GENERIC_RELAX_TABLE. */
2066
2067 long
2068 relax_frag (segment, fragP, stretch)
2069 segT segment;
2070 fragS *fragP;
2071 long stretch;
2072 {
2073 const relax_typeS *this_type;
2074 const relax_typeS *start_type;
2075 relax_substateT next_state;
2076 relax_substateT this_state;
2077 long growth;
2078 offsetT aim;
2079 addressT target;
2080 addressT address;
2081 symbolS *symbolP;
2082 const relax_typeS *table;
2083
2084 target = fragP->fr_offset;
2085 address = fragP->fr_address;
2086 table = TC_GENERIC_RELAX_TABLE;
2087 this_state = fragP->fr_subtype;
2088 start_type = this_type = table + this_state;
2089 symbolP = fragP->fr_symbol;
2090
2091 if (symbolP)
2092 {
2093 fragS *sym_frag;
2094
2095 sym_frag = symbol_get_frag (symbolP);
2096
2097 #ifndef DIFF_EXPR_OK
2098 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2099 know ((S_GET_SEGMENT (symbolP) == SEG_ABSOLUTE)
2100 || (S_GET_SEGMENT (symbolP) == SEG_DATA)
2101 || (S_GET_SEGMENT (symbolP) == SEG_BSS)
2102 || (S_GET_SEGMENT (symbolP) == SEG_TEXT));
2103 #endif
2104 know (sym_frag != NULL);
2105 #endif
2106 know (!(S_GET_SEGMENT (symbolP) == absolute_section)
2107 || sym_frag == &zero_address_frag);
2108 target += S_GET_VALUE (symbolP) + sym_frag->fr_address;
2109
2110 /* If frag has yet to be reached on this pass,
2111 assume it will move by STRETCH just as we did.
2112 If this is not so, it will be because some frag
2113 between grows, and that will force another pass. */
2114
2115 if (stretch != 0
2116 && sym_frag->relax_marker != fragP->relax_marker
2117 && S_GET_SEGMENT (symbolP) == segment)
2118 {
2119 target += stretch;
2120 }
2121 }
2122
2123 aim = target - address - fragP->fr_fix;
2124 #ifdef TC_PCREL_ADJUST
2125 /* Currently only the ns32k family needs this. */
2126 aim += TC_PCREL_ADJUST (fragP);
2127 /* #else */
2128 /* This machine doesn't want to use pcrel_adjust.
2129 In that case, pcrel_adjust should be zero. */
2130 #if 0
2131 assert (fragP->fr_targ.ns32k.pcrel_adjust == 0);
2132 #endif
2133 #endif
2134 #ifdef md_prepare_relax_scan /* formerly called M68K_AIM_KLUDGE */
2135 md_prepare_relax_scan (fragP, address, aim, this_state, this_type);
2136 #endif
2137
2138 if (aim < 0)
2139 {
2140 /* Look backwards. */
2141 for (next_state = this_type->rlx_more; next_state;)
2142 if (aim >= this_type->rlx_backward)
2143 next_state = 0;
2144 else
2145 {
2146 /* Grow to next state. */
2147 this_state = next_state;
2148 this_type = table + this_state;
2149 next_state = this_type->rlx_more;
2150 }
2151 }
2152 else
2153 {
2154 /* Look forwards. */
2155 for (next_state = this_type->rlx_more; next_state;)
2156 if (aim <= this_type->rlx_forward)
2157 next_state = 0;
2158 else
2159 {
2160 /* Grow to next state. */
2161 this_state = next_state;
2162 this_type = table + this_state;
2163 next_state = this_type->rlx_more;
2164 }
2165 }
2166
2167 growth = this_type->rlx_length - start_type->rlx_length;
2168 if (growth != 0)
2169 fragP->fr_subtype = this_state;
2170 return growth;
2171 }
2172
2173 #endif /* defined (TC_GENERIC_RELAX_TABLE) */
2174
2175 /* Relax_align. Advance location counter to next address that has 'alignment'
2176 lowest order bits all 0s, return size of adjustment made. */
2177 static relax_addressT
2178 relax_align (address, alignment)
2179 register relax_addressT address; /* Address now. */
2180 register int alignment; /* Alignment (binary). */
2181 {
2182 relax_addressT mask;
2183 relax_addressT new_address;
2184
2185 mask = ~((~0) << alignment);
2186 new_address = (address + mask) & (~mask);
2187 #ifdef LINKER_RELAXING_SHRINKS_ONLY
2188 if (linkrelax)
2189 /* We must provide lots of padding, so the linker can discard it
2190 when needed. The linker will not add extra space, ever. */
2191 new_address += (1 << alignment);
2192 #endif
2193 return (new_address - address);
2194 }
2195
2196 /* Now we have a segment, not a crowd of sub-segments, we can make
2197 fr_address values.
2198
2199 Relax the frags.
2200
2201 After this, all frags in this segment have addresses that are correct
2202 within the segment. Since segments live in different file addresses,
2203 these frag addresses may not be the same as final object-file
2204 addresses. */
2205
2206 int
2207 relax_segment (segment_frag_root, segment)
2208 struct frag *segment_frag_root;
2209 segT segment;
2210 {
2211 register struct frag *fragP;
2212 register relax_addressT address;
2213 int ret;
2214
2215 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2216 know (segment == SEG_DATA || segment == SEG_TEXT || segment == SEG_BSS);
2217 #endif
2218 /* In case md_estimate_size_before_relax() wants to make fixSs. */
2219 subseg_change (segment, 0);
2220
2221 /* For each frag in segment: count and store (a 1st guess of)
2222 fr_address. */
2223 address = 0;
2224 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2225 {
2226 fragP->relax_marker = 0;
2227 fragP->fr_address = address;
2228 address += fragP->fr_fix;
2229
2230 switch (fragP->fr_type)
2231 {
2232 case rs_fill:
2233 address += fragP->fr_offset * fragP->fr_var;
2234 break;
2235
2236 case rs_align:
2237 case rs_align_code:
2238 case rs_align_test:
2239 {
2240 addressT offset = relax_align (address, (int) fragP->fr_offset);
2241
2242 if (fragP->fr_subtype != 0 && offset > fragP->fr_subtype)
2243 offset = 0;
2244
2245 if (offset % fragP->fr_var != 0)
2246 {
2247 as_bad_where (fragP->fr_file, fragP->fr_line,
2248 _("alignment padding (%lu bytes) not a multiple of %ld"),
2249 (unsigned long) offset, (long) fragP->fr_var);
2250 offset -= (offset % fragP->fr_var);
2251 }
2252
2253 address += offset;
2254 }
2255 break;
2256
2257 case rs_org:
2258 case rs_space:
2259 /* Assume .org is nugatory. It will grow with 1st relax. */
2260 break;
2261
2262 case rs_machine_dependent:
2263 address += md_estimate_size_before_relax (fragP, segment);
2264 break;
2265
2266 #ifndef WORKING_DOT_WORD
2267 /* Broken words don't concern us yet. */
2268 case rs_broken_word:
2269 break;
2270 #endif
2271
2272 case rs_leb128:
2273 /* Initial guess is always 1; doing otherwise can result in
2274 stable solutions that are larger than the minimum. */
2275 address += fragP->fr_offset = 1;
2276 break;
2277
2278 case rs_cfa:
2279 address += eh_frame_estimate_size_before_relax (fragP);
2280 break;
2281
2282 case rs_dwarf2dbg:
2283 address += dwarf2dbg_estimate_size_before_relax (fragP);
2284 break;
2285
2286 default:
2287 BAD_CASE (fragP->fr_type);
2288 break;
2289 }
2290 }
2291
2292 /* Do relax(). */
2293 {
2294 long stretch; /* May be any size, 0 or negative. */
2295 /* Cumulative number of addresses we have relaxed this pass.
2296 We may have relaxed more than one address. */
2297 int stretched; /* Have we stretched on this pass? */
2298 /* This is 'cuz stretch may be zero, when, in fact some piece of code
2299 grew, and another shrank. If a branch instruction doesn't fit anymore,
2300 we could be scrod. */
2301
2302 do
2303 {
2304 stretch = 0;
2305 stretched = 0;
2306
2307 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2308 {
2309 long growth = 0;
2310 addressT was_address;
2311 offsetT offset;
2312 symbolS *symbolP;
2313
2314 fragP->relax_marker ^= 1;
2315 was_address = fragP->fr_address;
2316 address = fragP->fr_address += stretch;
2317 symbolP = fragP->fr_symbol;
2318 offset = fragP->fr_offset;
2319
2320 switch (fragP->fr_type)
2321 {
2322 case rs_fill: /* .fill never relaxes. */
2323 growth = 0;
2324 break;
2325
2326 #ifndef WORKING_DOT_WORD
2327 /* JF: This is RMS's idea. I do *NOT* want to be blamed
2328 for it I do not want to write it. I do not want to have
2329 anything to do with it. This is not the proper way to
2330 implement this misfeature. */
2331 case rs_broken_word:
2332 {
2333 struct broken_word *lie;
2334 struct broken_word *untruth;
2335
2336 /* Yes this is ugly (storing the broken_word pointer
2337 in the symbol slot). Still, this whole chunk of
2338 code is ugly, and I don't feel like doing anything
2339 about it. Think of it as stubbornness in action. */
2340 growth = 0;
2341 for (lie = (struct broken_word *) (fragP->fr_symbol);
2342 lie && lie->dispfrag == fragP;
2343 lie = lie->next_broken_word)
2344 {
2345
2346 if (lie->added)
2347 continue;
2348
2349 offset = (symbol_get_frag (lie->add)->fr_address
2350 + S_GET_VALUE (lie->add)
2351 + lie->addnum
2352 - (symbol_get_frag (lie->sub)->fr_address
2353 + S_GET_VALUE (lie->sub)));
2354 if (offset <= -32768 || offset >= 32767)
2355 {
2356 if (flag_warn_displacement)
2357 {
2358 char buf[50];
2359 sprint_value (buf, (addressT) lie->addnum);
2360 as_warn_where (fragP->fr_file, fragP->fr_line,
2361 _(".word %s-%s+%s didn't fit"),
2362 S_GET_NAME (lie->add),
2363 S_GET_NAME (lie->sub),
2364 buf);
2365 }
2366 lie->added = 1;
2367 if (fragP->fr_subtype == 0)
2368 {
2369 fragP->fr_subtype++;
2370 growth += md_short_jump_size;
2371 }
2372 for (untruth = lie->next_broken_word;
2373 untruth && untruth->dispfrag == lie->dispfrag;
2374 untruth = untruth->next_broken_word)
2375 if ((symbol_get_frag (untruth->add)
2376 == symbol_get_frag (lie->add))
2377 && (S_GET_VALUE (untruth->add)
2378 == S_GET_VALUE (lie->add)))
2379 {
2380 untruth->added = 2;
2381 untruth->use_jump = lie;
2382 }
2383 growth += md_long_jump_size;
2384 }
2385 }
2386
2387 break;
2388 } /* case rs_broken_word */
2389 #endif
2390 case rs_align:
2391 case rs_align_code:
2392 case rs_align_test:
2393 {
2394 addressT oldoff, newoff;
2395
2396 oldoff = relax_align (was_address + fragP->fr_fix,
2397 (int) offset);
2398 newoff = relax_align (address + fragP->fr_fix,
2399 (int) offset);
2400
2401 if (fragP->fr_subtype != 0)
2402 {
2403 if (oldoff > fragP->fr_subtype)
2404 oldoff = 0;
2405 if (newoff > fragP->fr_subtype)
2406 newoff = 0;
2407 }
2408
2409 growth = newoff - oldoff;
2410 }
2411 break;
2412
2413 case rs_org:
2414 {
2415 addressT target = offset;
2416 addressT after;
2417
2418 if (symbolP)
2419 {
2420 #if !defined (MANY_SEGMENTS) && !defined (BFD_ASSEMBLER)
2421 know ((S_GET_SEGMENT (symbolP) == SEG_ABSOLUTE)
2422 || (S_GET_SEGMENT (symbolP) == SEG_DATA)
2423 || (S_GET_SEGMENT (symbolP) == SEG_TEXT)
2424 || S_GET_SEGMENT (symbolP) == SEG_BSS);
2425 know (symbolP->sy_frag);
2426 know (!(S_GET_SEGMENT (symbolP) == SEG_ABSOLUTE)
2427 || (symbolP->sy_frag == &zero_address_frag));
2428 #endif
2429 target += (S_GET_VALUE (symbolP)
2430 + symbol_get_frag (symbolP)->fr_address);
2431 } /* if we have a symbol */
2432
2433 know (fragP->fr_next);
2434 after = fragP->fr_next->fr_address;
2435 growth = target - after;
2436 if (growth < 0)
2437 {
2438 /* Growth may be negative, but variable part of frag
2439 cannot have fewer than 0 chars. That is, we can't
2440 .org backwards. */
2441 as_bad_where (fragP->fr_file, fragP->fr_line,
2442 _("attempt to .org backwards ignored"));
2443
2444 /* We've issued an error message. Change the
2445 frag to avoid cascading errors. */
2446 fragP->fr_type = rs_align;
2447 fragP->fr_subtype = 0;
2448 fragP->fr_offset = 0;
2449 fragP->fr_fix = after - address;
2450 growth = stretch;
2451 }
2452
2453 /* This is an absolute growth factor */
2454 growth -= stretch;
2455 break;
2456 }
2457
2458 case rs_space:
2459 growth = 0;
2460 if (symbolP)
2461 {
2462 offsetT amount;
2463
2464 amount = S_GET_VALUE (symbolP);
2465 if (S_GET_SEGMENT (symbolP) != absolute_section
2466 || S_IS_COMMON (symbolP)
2467 || ! S_IS_DEFINED (symbolP))
2468 {
2469 as_bad_where (fragP->fr_file, fragP->fr_line,
2470 _(".space specifies non-absolute value"));
2471 /* Prevent repeat of this error message. */
2472 fragP->fr_symbol = 0;
2473 }
2474 else if (amount < 0)
2475 {
2476 as_warn_where (fragP->fr_file, fragP->fr_line,
2477 _(".space or .fill with negative value, ignored"));
2478 fragP->fr_symbol = 0;
2479 }
2480 else
2481 growth = (was_address + amount
2482 - fragP->fr_next->fr_address);
2483 }
2484 break;
2485
2486 case rs_machine_dependent:
2487 #ifdef md_relax_frag
2488 growth = md_relax_frag (segment, fragP, stretch);
2489 #else
2490 #ifdef TC_GENERIC_RELAX_TABLE
2491 /* The default way to relax a frag is to look through
2492 TC_GENERIC_RELAX_TABLE. */
2493 growth = relax_frag (segment, fragP, stretch);
2494 #endif /* TC_GENERIC_RELAX_TABLE */
2495 #endif
2496 break;
2497
2498 case rs_leb128:
2499 {
2500 valueT value;
2501 int size;
2502
2503 value = resolve_symbol_value (fragP->fr_symbol);
2504 size = sizeof_leb128 (value, fragP->fr_subtype);
2505 growth = size - fragP->fr_offset;
2506 fragP->fr_offset = size;
2507 }
2508 break;
2509
2510 case rs_cfa:
2511 growth = eh_frame_relax_frag (fragP);
2512 break;
2513
2514 case rs_dwarf2dbg:
2515 growth = dwarf2dbg_relax_frag (fragP);
2516 break;
2517
2518 default:
2519 BAD_CASE (fragP->fr_type);
2520 break;
2521 }
2522 if (growth)
2523 {
2524 stretch += growth;
2525 stretched = 1;
2526 }
2527 } /* For each frag in the segment. */
2528 }
2529 while (stretched); /* Until nothing further to relax. */
2530 } /* do_relax */
2531
2532 ret = 0;
2533 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2534 if (fragP->last_fr_address != fragP->fr_address)
2535 {
2536 fragP->last_fr_address = fragP->fr_address;
2537 ret = 1;
2538 }
2539 return ret;
2540 }
2541
2542 #if defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS))
2543
2544 #ifndef TC_RELOC_RTSYM_LOC_FIXUP
2545 #define TC_RELOC_RTSYM_LOC_FIXUP(X) (1)
2546 #endif
2547
2548 /* fixup_segment()
2549
2550 Go through all the fixS's in a segment and see which ones can be
2551 handled now. (These consist of fixS where we have since discovered
2552 the value of a symbol, or the address of the frag involved.)
2553 For each one, call md_apply_fix to put the fix into the frag data.
2554
2555 Result is a count of how many relocation structs will be needed to
2556 handle the remaining fixS's that we couldn't completely handle here.
2557 These will be output later by emit_relocations(). */
2558
2559 static long
2560 fixup_segment (fixP, this_segment_type)
2561 register fixS *fixP;
2562 segT this_segment_type; /* N_TYPE bits for segment. */
2563 {
2564 long seg_reloc_count = 0;
2565 symbolS *add_symbolP;
2566 symbolS *sub_symbolP;
2567 valueT add_number;
2568 int size;
2569 char *place;
2570 long where;
2571 int pcrel, plt;
2572 fragS *fragP;
2573 segT add_symbol_segment = absolute_section;
2574
2575 /* If the linker is doing the relaxing, we must not do any fixups.
2576
2577 Well, strictly speaking that's not true -- we could do any that are
2578 PC-relative and don't cross regions that could change size. And for the
2579 i960 (the only machine for which we've got a relaxing linker right now),
2580 we might be able to turn callx/callj into bal anyways in cases where we
2581 know the maximum displacement. */
2582 if (linkrelax && TC_LINKRELAX_FIXUP (this_segment_type))
2583 {
2584 for (; fixP; fixP = fixP->fx_next)
2585 seg_reloc_count++;
2586 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
2587 return seg_reloc_count;
2588 }
2589
2590 for (; fixP; fixP = fixP->fx_next)
2591 {
2592 #ifdef DEBUG5
2593 fprintf (stderr, "\nprocessing fixup:\n");
2594 print_fixup (fixP);
2595 #endif
2596
2597 fragP = fixP->fx_frag;
2598 know (fragP);
2599 where = fixP->fx_where;
2600 place = fragP->fr_literal + where;
2601 size = fixP->fx_size;
2602 add_symbolP = fixP->fx_addsy;
2603 #ifdef TC_VALIDATE_FIX
2604 TC_VALIDATE_FIX (fixP, this_segment_type, skip);
2605 #endif
2606 sub_symbolP = fixP->fx_subsy;
2607 add_number = fixP->fx_offset;
2608 pcrel = fixP->fx_pcrel;
2609 plt = fixP->fx_plt;
2610
2611 if (add_symbolP != NULL
2612 && symbol_mri_common_p (add_symbolP))
2613 {
2614 know (add_symbolP->sy_value.X_op == O_symbol);
2615 add_number += S_GET_VALUE (add_symbolP);
2616 fixP->fx_offset = add_number;
2617 add_symbolP = fixP->fx_addsy =
2618 symbol_get_value_expression (add_symbolP)->X_add_symbol;
2619 }
2620
2621 if (add_symbolP)
2622 add_symbol_segment = S_GET_SEGMENT (add_symbolP);
2623
2624 if (sub_symbolP)
2625 {
2626 resolve_symbol_value (sub_symbolP);
2627 if (add_symbolP == NULL || add_symbol_segment == absolute_section)
2628 {
2629 if (add_symbolP != NULL)
2630 {
2631 add_number += S_GET_VALUE (add_symbolP);
2632 add_symbolP = NULL;
2633 fixP->fx_addsy = NULL;
2634 }
2635
2636 /* It's just -sym. */
2637 if (S_GET_SEGMENT (sub_symbolP) == absolute_section)
2638 {
2639 add_number -= S_GET_VALUE (sub_symbolP);
2640 fixP->fx_subsy = NULL;
2641 }
2642 else if (pcrel
2643 && S_GET_SEGMENT (sub_symbolP) == this_segment_type)
2644 {
2645 /* Should try converting to a constant. */
2646 goto bad_sub_reloc;
2647 }
2648 else
2649 bad_sub_reloc:
2650 as_bad_where (fixP->fx_file, fixP->fx_line,
2651 _("Negative of non-absolute symbol %s"),
2652 S_GET_NAME (sub_symbolP));
2653 }
2654 else if (S_GET_SEGMENT (sub_symbolP) == add_symbol_segment
2655 && SEG_NORMAL (add_symbol_segment))
2656 {
2657 /* Difference of 2 symbols from same segment.
2658 Can't make difference of 2 undefineds: 'value' means
2659 something different for N_UNDF. */
2660 #ifdef TC_I960
2661 /* Makes no sense to use the difference of 2 arbitrary symbols
2662 as the target of a call instruction. */
2663 if (fixP->fx_tcbit)
2664 as_bad_where (fixP->fx_file, fixP->fx_line,
2665 _("callj to difference of 2 symbols"));
2666 #endif /* TC_I960 */
2667 add_number += (S_GET_VALUE (add_symbolP)
2668 - S_GET_VALUE (sub_symbolP));
2669 if (1
2670 #ifdef TC_M68K
2671 /* See the comment below about 68k weirdness. */
2672 && 0
2673 #endif
2674 && pcrel)
2675 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment_type);
2676
2677 add_symbolP = NULL;
2678 pcrel = 0; /* No further pcrel processing. */
2679
2680 /* Let the target machine make the final determination
2681 as to whether or not a relocation will be needed to
2682 handle this fixup. */
2683 if (!TC_FORCE_RELOCATION_SECTION (fixP, this_segment_type))
2684 {
2685 fixP->fx_pcrel = 0;
2686 fixP->fx_addsy = NULL;
2687 fixP->fx_subsy = NULL;
2688 }
2689 }
2690 else
2691 {
2692 /* Different segments in subtraction. */
2693 know (!(S_IS_EXTERNAL (sub_symbolP)
2694 && (S_GET_SEGMENT (sub_symbolP) == absolute_section)));
2695
2696 if ((S_GET_SEGMENT (sub_symbolP) == absolute_section))
2697 add_number -= S_GET_VALUE (sub_symbolP);
2698
2699 #ifdef DIFF_EXPR_OK
2700 else if (S_GET_SEGMENT (sub_symbolP) == this_segment_type)
2701 {
2702 /* Make it pc-relative. */
2703 if (0
2704 #ifdef TC_M68K
2705 /* Do this for m68k even if it's already described
2706 as pc-relative. On the m68k, an operand of
2707 "pc@(foo-.-2)" should address "foo" in a
2708 pc-relative mode. */
2709 || 1
2710 #endif
2711 || !pcrel)
2712 {
2713 add_number += MD_PCREL_FROM_SECTION (fixP,
2714 this_segment_type);
2715 pcrel = 1;
2716 fixP->fx_pcrel = 1;
2717 }
2718
2719 add_number -= S_GET_VALUE (sub_symbolP);
2720 sub_symbolP = 0;
2721 fixP->fx_subsy = 0;
2722 }
2723 #endif
2724 #ifdef UNDEFINED_DIFFERENCE_OK
2725 /* The PA needs this for PIC code generation. We basically
2726 don't want to do anything if we have the difference of two
2727 symbols at this point. */
2728 else if (1)
2729 {
2730 /* Leave it alone. */
2731 }
2732 #endif
2733 #ifdef BFD_ASSEMBLER
2734 else if (fixP->fx_r_type == BFD_RELOC_GPREL32
2735 || fixP->fx_r_type == BFD_RELOC_GPREL16)
2736 {
2737 /* Leave it alone. */
2738 }
2739 #endif
2740 else
2741 {
2742 char buf[50];
2743 sprint_value (buf, fragP->fr_address + where);
2744 as_bad_where (fixP->fx_file, fixP->fx_line,
2745 _("Subtraction of two symbols in different sections \"%s\" {%s section} - \"%s\" {%s section} at file address %s."),
2746 S_GET_NAME (add_symbolP),
2747 segment_name (S_GET_SEGMENT (add_symbolP)),
2748 S_GET_NAME (sub_symbolP),
2749 segment_name (S_GET_SEGMENT (sub_symbolP)),
2750 buf);
2751 }
2752 }
2753 }
2754
2755 if (add_symbolP)
2756 {
2757 if (add_symbol_segment == this_segment_type && pcrel && !plt
2758 && TC_RELOC_RTSYM_LOC_FIXUP (fixP))
2759 {
2760 /* This fixup was made when the symbol's segment was
2761 SEG_UNKNOWN, but it is now in the local segment.
2762 So we know how to do the address without relocation. */
2763 #ifdef TC_I960
2764 /* reloc_callj() may replace a 'call' with a 'calls' or a
2765 'bal', in which cases it modifies *fixP as appropriate.
2766 In the case of a 'calls', no further work is required,
2767 and *fixP has been set up to make the rest of the code
2768 below a no-op. */
2769 reloc_callj (fixP);
2770 #endif /* TC_I960 */
2771
2772 add_number += S_GET_VALUE (add_symbolP);
2773 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment_type);
2774 /* Lie. Don't want further pcrel processing. */
2775 pcrel = 0;
2776
2777 /* Let the target machine make the final determination
2778 as to whether or not a relocation will be needed to
2779 handle this fixup. */
2780 if (!TC_FORCE_RELOCATION (fixP))
2781 {
2782 fixP->fx_pcrel = 0;
2783 fixP->fx_addsy = NULL;
2784 }
2785 }
2786 else
2787 {
2788 if (add_symbol_segment == absolute_section
2789 && ! pcrel)
2790 {
2791 #ifdef TC_I960
2792 /* See comment about reloc_callj() above. */
2793 reloc_callj (fixP);
2794 #endif /* TC_I960 */
2795 add_number += S_GET_VALUE (add_symbolP);
2796
2797 /* Let the target machine make the final determination
2798 as to whether or not a relocation will be needed to
2799 handle this fixup. */
2800
2801 if (!TC_FORCE_RELOCATION (fixP))
2802 {
2803 fixP->fx_addsy = NULL;
2804 add_symbolP = NULL;
2805 }
2806 }
2807 else if (add_symbol_segment == undefined_section
2808 #ifdef BFD_ASSEMBLER
2809 || bfd_is_com_section (add_symbol_segment)
2810 #endif
2811 )
2812 {
2813 #ifdef TC_I960
2814 if ((int) fixP->fx_bit_fixP == 13)
2815 {
2816 /* This is a COBR instruction. They have only a
2817 13-bit displacement and are only to be used
2818 for local branches: flag as error, don't generate
2819 relocation. */
2820 as_bad_where (fixP->fx_file, fixP->fx_line,
2821 _("can't use COBR format with external label"));
2822 fixP->fx_addsy = NULL;
2823 fixP->fx_done = 1;
2824 continue;
2825 } /* COBR. */
2826 #endif /* TC_I960 */
2827
2828 #ifdef OBJ_COFF
2829 #ifdef TE_I386AIX
2830 if (S_IS_COMMON (add_symbolP))
2831 add_number += S_GET_VALUE (add_symbolP);
2832 #endif /* TE_I386AIX */
2833 #endif /* OBJ_COFF */
2834 ++seg_reloc_count;
2835 }
2836 else
2837 {
2838 seg_reloc_count++;
2839 if (TC_FIX_ADJUSTABLE (fixP))
2840 add_number += S_GET_VALUE (add_symbolP);
2841 }
2842 }
2843 }
2844
2845 if (pcrel)
2846 {
2847 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment_type);
2848 if (add_symbolP == 0)
2849 {
2850 #ifndef BFD_ASSEMBLER
2851 fixP->fx_addsy = &abs_symbol;
2852 #else
2853 fixP->fx_addsy = section_symbol (absolute_section);
2854 #endif
2855 symbol_mark_used_in_reloc (fixP->fx_addsy);
2856 ++seg_reloc_count;
2857 }
2858 }
2859
2860 if (!fixP->fx_done)
2861 {
2862 #ifdef MD_APPLY_FIX3
2863 md_apply_fix3 (fixP, &add_number, this_segment_type);
2864 #else
2865 #ifdef BFD_ASSEMBLER
2866 md_apply_fix (fixP, &add_number);
2867 #else
2868 md_apply_fix (fixP, add_number);
2869 #endif
2870 #endif
2871
2872 #ifndef TC_HANDLES_FX_DONE
2873 /* If the tc-* files haven't been converted, assume it's handling
2874 it the old way, where a null fx_addsy means that the fix has
2875 been applied completely, and no further work is needed. */
2876 if (fixP->fx_addsy == 0 && fixP->fx_pcrel == 0)
2877 fixP->fx_done = 1;
2878 #endif
2879 }
2880
2881 if (!fixP->fx_bit_fixP && !fixP->fx_no_overflow && size > 0)
2882 {
2883 if ((size_t) size < sizeof (valueT))
2884 {
2885 valueT mask;
2886
2887 mask = 0;
2888 mask--; /* Set all bits to one. */
2889 mask <<= size * 8 - (fixP->fx_signed ? 1 : 0);
2890 if ((add_number & mask) != 0 && (add_number & mask) != mask)
2891 {
2892 char buf[50], buf2[50];
2893 sprint_value (buf, fragP->fr_address + where);
2894 if (add_number > 1000)
2895 sprint_value (buf2, add_number);
2896 else
2897 sprintf (buf2, "%ld", (long) add_number);
2898 as_bad_where (fixP->fx_file, fixP->fx_line,
2899 _("Value of %s too large for field of %d bytes at %s"),
2900 buf2, size, buf);
2901 } /* Generic error checking. */
2902 }
2903 #ifdef WARN_SIGNED_OVERFLOW_WORD
2904 /* Warn if a .word value is too large when treated as a signed
2905 number. We already know it is not too negative. This is to
2906 catch over-large switches generated by gcc on the 68k. */
2907 if (!flag_signed_overflow_ok
2908 && size == 2
2909 && add_number > 0x7fff)
2910 as_bad_where (fixP->fx_file, fixP->fx_line,
2911 _("Signed .word overflow; switch may be too large; %ld at 0x%lx"),
2912 (long) add_number,
2913 (unsigned long) (fragP->fr_address + where));
2914 #endif
2915 } /* Not a bit fix. */
2916
2917 #ifdef TC_VALIDATE_FIX
2918 skip: ATTRIBUTE_UNUSED_LABEL
2919 ;
2920 #endif
2921 #ifdef DEBUG5
2922 fprintf (stderr, "result:\n");
2923 print_fixup (fixP);
2924 #endif
2925 } /* For each fixS in this segment. */
2926
2927 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
2928 return seg_reloc_count;
2929 }
2930
2931 #endif /* defined (BFD_ASSEMBLER) || (!defined (BFD) && !defined (OBJ_VMS)) */
2932
2933 void
2934 number_to_chars_bigendian (buf, val, n)
2935 char *buf;
2936 valueT val;
2937 int n;
2938 {
2939 if ((size_t) n > sizeof (val) || n <= 0)
2940 abort ();
2941 while (n--)
2942 {
2943 buf[n] = val & 0xff;
2944 val >>= 8;
2945 }
2946 }
2947
2948 void
2949 number_to_chars_littleendian (buf, val, n)
2950 char *buf;
2951 valueT val;
2952 int n;
2953 {
2954 if ((size_t) n > sizeof (val) || n <= 0)
2955 abort ();
2956 while (n--)
2957 {
2958 *buf++ = val & 0xff;
2959 val >>= 8;
2960 }
2961 }
2962
2963 void
2964 write_print_statistics (file)
2965 FILE *file;
2966 {
2967 fprintf (file, "fixups: %d\n", n_fixups);
2968 }
2969
2970 /* For debugging. */
2971 extern int indent_level;
2972
2973 void
2974 print_fixup (fixp)
2975 fixS *fixp;
2976 {
2977 indent_level = 1;
2978 fprintf (stderr, "fix %lx %s:%d", (long) fixp, fixp->fx_file, fixp->fx_line);
2979 if (fixp->fx_pcrel)
2980 fprintf (stderr, " pcrel");
2981 if (fixp->fx_pcrel_adjust)
2982 fprintf (stderr, " pcrel_adjust=%d", fixp->fx_pcrel_adjust);
2983 if (fixp->fx_im_disp)
2984 {
2985 #ifdef TC_NS32K
2986 fprintf (stderr, " im_disp=%d", fixp->fx_im_disp);
2987 #else
2988 fprintf (stderr, " im_disp");
2989 #endif
2990 }
2991 if (fixp->fx_tcbit)
2992 fprintf (stderr, " tcbit");
2993 if (fixp->fx_done)
2994 fprintf (stderr, " done");
2995 fprintf (stderr, "\n size=%d frag=%lx where=%ld offset=%lx addnumber=%lx",
2996 fixp->fx_size, (long) fixp->fx_frag, (long) fixp->fx_where,
2997 (long) fixp->fx_offset, (long) fixp->fx_addnumber);
2998 #ifdef BFD_ASSEMBLER
2999 fprintf (stderr, "\n %s (%d)", bfd_get_reloc_code_name (fixp->fx_r_type),
3000 fixp->fx_r_type);
3001 #else
3002 #ifdef NEED_FX_R_TYPE
3003 fprintf (stderr, " r_type=%d", fixp->fx_r_type);
3004 #endif
3005 #endif
3006 if (fixp->fx_addsy)
3007 {
3008 fprintf (stderr, "\n +<");
3009 print_symbol_value_1 (stderr, fixp->fx_addsy);
3010 fprintf (stderr, ">");
3011 }
3012 if (fixp->fx_subsy)
3013 {
3014 fprintf (stderr, "\n -<");
3015 print_symbol_value_1 (stderr, fixp->fx_subsy);
3016 fprintf (stderr, ">");
3017 }
3018 fprintf (stderr, "\n");
3019 #ifdef TC_FIX_DATA_PRINT
3020 TC_FIX_DATA_PRINT (stderr, fixp);
3021 #endif
3022 }
This page took 0.088243 seconds and 5 git commands to generate.