remove unused var
[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, 2002, 2003, 2004, 2005, 2006, 2007
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, 51 Franklin Street - Fifth Floor, Boston, MA
21 02110-1301, 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 #include "libbfd.h"
31
32 #ifndef TC_ADJUST_RELOC_COUNT
33 #define TC_ADJUST_RELOC_COUNT(FIX, COUNT)
34 #endif
35
36 #ifndef TC_FORCE_RELOCATION
37 #define TC_FORCE_RELOCATION(FIX) \
38 (generic_force_reloc (FIX))
39 #endif
40
41 #ifndef TC_FORCE_RELOCATION_ABS
42 #define TC_FORCE_RELOCATION_ABS(FIX) \
43 (TC_FORCE_RELOCATION (FIX))
44 #endif
45
46 #ifndef TC_FORCE_RELOCATION_LOCAL
47 #define TC_FORCE_RELOCATION_LOCAL(FIX) \
48 (!(FIX)->fx_pcrel \
49 || TC_FORCE_RELOCATION (FIX))
50 #endif
51
52 #ifndef TC_FORCE_RELOCATION_SUB_SAME
53 #define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEG) \
54 (! SEG_NORMAL (SEG))
55 #endif
56
57 #ifndef TC_FORCE_RELOCATION_SUB_ABS
58 #define TC_FORCE_RELOCATION_SUB_ABS(FIX) 0
59 #endif
60
61 #ifndef TC_FORCE_RELOCATION_SUB_LOCAL
62 #ifdef DIFF_EXPR_OK
63 #define TC_FORCE_RELOCATION_SUB_LOCAL(FIX) 0
64 #else
65 #define TC_FORCE_RELOCATION_SUB_LOCAL(FIX) 1
66 #endif
67 #endif
68
69 #ifndef TC_VALIDATE_FIX_SUB
70 #ifdef UNDEFINED_DIFFERENCE_OK
71 /* The PA needs this for PIC code generation. */
72 #define TC_VALIDATE_FIX_SUB(FIX) 1
73 #else
74 #define TC_VALIDATE_FIX_SUB(FIX) \
75 ((FIX)->fx_r_type == BFD_RELOC_GPREL32 \
76 || (FIX)->fx_r_type == BFD_RELOC_GPREL16)
77 #endif
78 #endif
79
80 #ifndef TC_LINKRELAX_FIXUP
81 #define TC_LINKRELAX_FIXUP(SEG) 1
82 #endif
83
84 #ifndef MD_APPLY_SYM_VALUE
85 #define MD_APPLY_SYM_VALUE(FIX) 1
86 #endif
87
88 #ifndef TC_FINALIZE_SYMS_BEFORE_SIZE_SEG
89 #define TC_FINALIZE_SYMS_BEFORE_SIZE_SEG 1
90 #endif
91
92 #ifndef MD_PCREL_FROM_SECTION
93 #define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from (FIX)
94 #endif
95
96 #ifndef TC_FAKE_LABEL
97 #define TC_FAKE_LABEL(NAME) (strcmp ((NAME), FAKE_LABEL_NAME) == 0)
98 #endif
99
100 /* Used to control final evaluation of expressions. */
101 int finalize_syms = 0;
102
103 int symbol_table_frozen;
104
105 symbolS *abs_section_sym;
106
107 /* Remember the value of dot when parsing expressions. */
108 addressT dot_value;
109
110 void print_fixup (fixS *);
111
112 /* We generally attach relocs to frag chains. However, after we have
113 chained these all together into a segment, any relocs we add after
114 that must be attached to a segment. This will include relocs added
115 in md_estimate_size_for_relax, for example. */
116 static int frags_chained = 0;
117
118 static int n_fixups;
119
120 #define RELOC_ENUM enum bfd_reloc_code_real
121
122 /* Create a fixS in obstack 'notes'. */
123
124 static fixS *
125 fix_new_internal (fragS *frag, /* Which frag? */
126 int where, /* Where in that frag? */
127 int size, /* 1, 2, or 4 usually. */
128 symbolS *add_symbol, /* X_add_symbol. */
129 symbolS *sub_symbol, /* X_op_symbol. */
130 offsetT offset, /* X_add_number. */
131 int pcrel, /* TRUE if PC-relative relocation. */
132 RELOC_ENUM r_type ATTRIBUTE_UNUSED /* Relocation type. */)
133 {
134 fixS *fixP;
135
136 n_fixups++;
137
138 fixP = obstack_alloc (&notes, sizeof (fixS));
139
140 fixP->fx_frag = frag;
141 fixP->fx_where = where;
142 fixP->fx_size = size;
143 /* We've made fx_size a narrow field; check that it's wide enough. */
144 if (fixP->fx_size != size)
145 {
146 as_bad (_("field fx_size too small to hold %d"), size);
147 abort ();
148 }
149 fixP->fx_addsy = add_symbol;
150 fixP->fx_subsy = sub_symbol;
151 fixP->fx_offset = offset;
152 fixP->fx_dot_value = dot_value;
153 fixP->fx_pcrel = pcrel;
154 fixP->fx_r_type = r_type;
155 fixP->fx_im_disp = 0;
156 fixP->fx_pcrel_adjust = 0;
157 fixP->fx_bit_fixP = 0;
158 fixP->fx_addnumber = 0;
159 fixP->fx_tcbit = 0;
160 fixP->fx_tcbit2 = 0;
161 fixP->fx_done = 0;
162 fixP->fx_no_overflow = 0;
163 fixP->fx_signed = 0;
164
165 #ifdef USING_CGEN
166 fixP->fx_cgen.insn = NULL;
167 fixP->fx_cgen.opinfo = 0;
168 #endif
169
170 #ifdef TC_FIX_TYPE
171 TC_INIT_FIX_DATA (fixP);
172 #endif
173
174 as_where (&fixP->fx_file, &fixP->fx_line);
175
176 /* Usually, we want relocs sorted numerically, but while
177 comparing to older versions of gas that have relocs
178 reverse sorted, it is convenient to have this compile
179 time option. xoxorich. */
180 {
181
182 fixS **seg_fix_rootP = (frags_chained
183 ? &seg_info (now_seg)->fix_root
184 : &frchain_now->fix_root);
185 fixS **seg_fix_tailP = (frags_chained
186 ? &seg_info (now_seg)->fix_tail
187 : &frchain_now->fix_tail);
188
189 #ifdef REVERSE_SORT_RELOCS
190
191 fixP->fx_next = *seg_fix_rootP;
192 *seg_fix_rootP = fixP;
193
194 #else /* REVERSE_SORT_RELOCS */
195
196 fixP->fx_next = NULL;
197
198 if (*seg_fix_tailP)
199 (*seg_fix_tailP)->fx_next = fixP;
200 else
201 *seg_fix_rootP = fixP;
202 *seg_fix_tailP = fixP;
203
204 #endif /* REVERSE_SORT_RELOCS */
205 }
206
207 return fixP;
208 }
209
210 /* Create a fixup relative to a symbol (plus a constant). */
211
212 fixS *
213 fix_new (fragS *frag, /* Which frag? */
214 int where, /* Where in that frag? */
215 int size, /* 1, 2, or 4 usually. */
216 symbolS *add_symbol, /* X_add_symbol. */
217 offsetT offset, /* X_add_number. */
218 int pcrel, /* TRUE if PC-relative relocation. */
219 RELOC_ENUM r_type /* Relocation type. */)
220 {
221 return fix_new_internal (frag, where, size, add_symbol,
222 (symbolS *) NULL, offset, pcrel, r_type);
223 }
224
225 /* Create a fixup for an expression. Currently we only support fixups
226 for difference expressions. That is itself more than most object
227 file formats support anyhow. */
228
229 fixS *
230 fix_new_exp (fragS *frag, /* Which frag? */
231 int where, /* Where in that frag? */
232 int size, /* 1, 2, or 4 usually. */
233 expressionS *exp, /* Expression. */
234 int pcrel, /* TRUE if PC-relative relocation. */
235 RELOC_ENUM r_type /* Relocation type. */)
236 {
237 symbolS *add = NULL;
238 symbolS *sub = NULL;
239 offsetT off = 0;
240
241 switch (exp->X_op)
242 {
243 case O_absent:
244 break;
245
246 case O_register:
247 as_bad (_("register value used as expression"));
248 break;
249
250 case O_add:
251 /* This comes up when _GLOBAL_OFFSET_TABLE_+(.-L0) is read, if
252 the difference expression cannot immediately be reduced. */
253 {
254 symbolS *stmp = make_expr_symbol (exp);
255
256 exp->X_op = O_symbol;
257 exp->X_op_symbol = 0;
258 exp->X_add_symbol = stmp;
259 exp->X_add_number = 0;
260
261 return fix_new_exp (frag, where, size, exp, pcrel, r_type);
262 }
263
264 case O_symbol_rva:
265 add = exp->X_add_symbol;
266 off = exp->X_add_number;
267 r_type = BFD_RELOC_RVA;
268 break;
269
270 case O_uminus:
271 sub = exp->X_add_symbol;
272 off = exp->X_add_number;
273 break;
274
275 case O_subtract:
276 sub = exp->X_op_symbol;
277 /* Fall through. */
278 case O_symbol:
279 add = exp->X_add_symbol;
280 /* Fall through. */
281 case O_constant:
282 off = exp->X_add_number;
283 break;
284
285 default:
286 add = make_expr_symbol (exp);
287 break;
288 }
289
290 return fix_new_internal (frag, where, size, add, sub, off, pcrel, r_type);
291 }
292
293 /* Generic function to determine whether a fixup requires a relocation. */
294 int
295 generic_force_reloc (fixS *fix)
296 {
297 if (fix->fx_r_type == BFD_RELOC_VTABLE_INHERIT
298 || fix->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
299 return 1;
300
301 if (fix->fx_addsy == NULL)
302 return 0;
303
304 return S_FORCE_RELOC (fix->fx_addsy, fix->fx_subsy == NULL);
305 }
306
307 /* Append a string onto another string, bumping the pointer along. */
308 void
309 append (char **charPP, char *fromP, unsigned long length)
310 {
311 /* Don't trust memcpy() of 0 chars. */
312 if (length == 0)
313 return;
314
315 memcpy (*charPP, fromP, length);
316 *charPP += length;
317 }
318
319 /* This routine records the largest alignment seen for each segment.
320 If the beginning of the segment is aligned on the worst-case
321 boundary, all of the other alignments within it will work. At
322 least one object format really uses this info. */
323
324 void
325 record_alignment (/* Segment to which alignment pertains. */
326 segT seg,
327 /* Alignment, as a power of 2 (e.g., 1 => 2-byte
328 boundary, 2 => 4-byte boundary, etc.) */
329 int align)
330 {
331 if (seg == absolute_section)
332 return;
333
334 if ((unsigned int) align > bfd_get_section_alignment (stdoutput, seg))
335 bfd_set_section_alignment (stdoutput, seg, align);
336 }
337
338 int
339 get_recorded_alignment (segT seg)
340 {
341 if (seg == absolute_section)
342 return 0;
343
344 return bfd_get_section_alignment (stdoutput, seg);
345 }
346
347 /* Reset the section indices after removing the gas created sections. */
348
349 static void
350 renumber_sections (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *countparg)
351 {
352 int *countp = (int *) countparg;
353
354 sec->index = *countp;
355 ++*countp;
356 }
357
358 static fragS *
359 chain_frchains_together_1 (segT section, struct frchain *frchp)
360 {
361 fragS dummy, *prev_frag = &dummy;
362 fixS fix_dummy, *prev_fix = &fix_dummy;
363
364 for (; frchp; frchp = frchp->frch_next)
365 {
366 prev_frag->fr_next = frchp->frch_root;
367 prev_frag = frchp->frch_last;
368 assert (prev_frag->fr_type != 0);
369 if (frchp->fix_root != (fixS *) NULL)
370 {
371 if (seg_info (section)->fix_root == (fixS *) NULL)
372 seg_info (section)->fix_root = frchp->fix_root;
373 prev_fix->fx_next = frchp->fix_root;
374 seg_info (section)->fix_tail = frchp->fix_tail;
375 prev_fix = frchp->fix_tail;
376 }
377 }
378 assert (prev_frag->fr_type != 0);
379 assert (prev_frag != &dummy);
380 prev_frag->fr_next = 0;
381 return prev_frag;
382 }
383
384 static void
385 chain_frchains_together (bfd *abfd ATTRIBUTE_UNUSED,
386 segT section,
387 void *xxx ATTRIBUTE_UNUSED)
388 {
389 segment_info_type *info;
390
391 /* BFD may have introduced its own sections without using
392 subseg_new, so it is possible that seg_info is NULL. */
393 info = seg_info (section);
394 if (info != (segment_info_type *) NULL)
395 info->frchainP->frch_last
396 = chain_frchains_together_1 (section, info->frchainP);
397
398 /* Now that we've chained the frags together, we must add new fixups
399 to the segment, not to the frag chain. */
400 frags_chained = 1;
401 }
402
403 static void
404 cvt_frag_to_fill (segT sec ATTRIBUTE_UNUSED, fragS *fragP)
405 {
406 switch (fragP->fr_type)
407 {
408 case rs_align:
409 case rs_align_code:
410 case rs_align_test:
411 case rs_org:
412 case rs_space:
413 #ifdef HANDLE_ALIGN
414 HANDLE_ALIGN (fragP);
415 #endif
416 know (fragP->fr_next != NULL);
417 fragP->fr_offset = (fragP->fr_next->fr_address
418 - fragP->fr_address
419 - fragP->fr_fix) / fragP->fr_var;
420 if (fragP->fr_offset < 0)
421 {
422 as_bad_where (fragP->fr_file, fragP->fr_line,
423 _("attempt to .org/.space backwards? (%ld)"),
424 (long) fragP->fr_offset);
425 fragP->fr_offset = 0;
426 }
427 fragP->fr_type = rs_fill;
428 break;
429
430 case rs_fill:
431 break;
432
433 case rs_leb128:
434 {
435 valueT value = S_GET_VALUE (fragP->fr_symbol);
436 int size;
437
438 size = output_leb128 (fragP->fr_literal + fragP->fr_fix, value,
439 fragP->fr_subtype);
440
441 fragP->fr_fix += size;
442 fragP->fr_type = rs_fill;
443 fragP->fr_var = 0;
444 fragP->fr_offset = 0;
445 fragP->fr_symbol = NULL;
446 }
447 break;
448
449 case rs_cfa:
450 eh_frame_convert_frag (fragP);
451 break;
452
453 case rs_dwarf2dbg:
454 dwarf2dbg_convert_frag (fragP);
455 break;
456
457 case rs_machine_dependent:
458 md_convert_frag (stdoutput, sec, fragP);
459
460 assert (fragP->fr_next == NULL
461 || ((offsetT) (fragP->fr_next->fr_address - fragP->fr_address)
462 == fragP->fr_fix));
463
464 /* After md_convert_frag, we make the frag into a ".space 0".
465 md_convert_frag() should set up any fixSs and constants
466 required. */
467 frag_wane (fragP);
468 break;
469
470 #ifndef WORKING_DOT_WORD
471 case rs_broken_word:
472 {
473 struct broken_word *lie;
474
475 if (fragP->fr_subtype)
476 {
477 fragP->fr_fix += md_short_jump_size;
478 for (lie = (struct broken_word *) (fragP->fr_symbol);
479 lie && lie->dispfrag == fragP;
480 lie = lie->next_broken_word)
481 if (lie->added == 1)
482 fragP->fr_fix += md_long_jump_size;
483 }
484 frag_wane (fragP);
485 }
486 break;
487 #endif
488
489 default:
490 BAD_CASE (fragP->fr_type);
491 break;
492 }
493 #ifdef md_frag_check
494 md_frag_check (fragP);
495 #endif
496 }
497
498 struct relax_seg_info
499 {
500 int pass;
501 int changed;
502 };
503
504 static void
505 relax_seg (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, void *xxx)
506 {
507 segment_info_type *seginfo = seg_info (sec);
508 struct relax_seg_info *info = (struct relax_seg_info *) xxx;
509
510 if (seginfo && seginfo->frchainP
511 && relax_segment (seginfo->frchainP->frch_root, sec, info->pass))
512 info->changed = 1;
513 }
514
515 static void
516 size_seg (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
517 {
518 flagword flags;
519 fragS *fragp;
520 segment_info_type *seginfo;
521 int x;
522 valueT size, newsize;
523
524 subseg_change (sec, 0);
525
526 seginfo = seg_info (sec);
527 if (seginfo && seginfo->frchainP)
528 {
529 for (fragp = seginfo->frchainP->frch_root; fragp; fragp = fragp->fr_next)
530 cvt_frag_to_fill (sec, fragp);
531 for (fragp = seginfo->frchainP->frch_root;
532 fragp->fr_next;
533 fragp = fragp->fr_next)
534 /* Walk to last elt. */
535 ;
536 size = fragp->fr_address + fragp->fr_fix;
537 }
538 else
539 size = 0;
540
541 flags = bfd_get_section_flags (abfd, sec);
542
543 if (size > 0 && ! seginfo->bss)
544 flags |= SEC_HAS_CONTENTS;
545
546 /* @@ This is just an approximation. */
547 if (seginfo && seginfo->fix_root)
548 flags |= SEC_RELOC;
549 else
550 flags &= ~SEC_RELOC;
551 x = bfd_set_section_flags (abfd, sec, flags);
552 assert (x);
553
554 newsize = md_section_align (sec, size);
555 x = bfd_set_section_size (abfd, sec, newsize);
556 assert (x);
557
558 /* If the size had to be rounded up, add some padding in the last
559 non-empty frag. */
560 assert (newsize >= size);
561 if (size != newsize)
562 {
563 fragS *last = seginfo->frchainP->frch_last;
564 fragp = seginfo->frchainP->frch_root;
565 while (fragp->fr_next != last)
566 fragp = fragp->fr_next;
567 last->fr_address = size;
568 if ((newsize - size) % fragp->fr_var == 0)
569 fragp->fr_offset += (newsize - size) / fragp->fr_var;
570 else
571 /* If we hit this abort, it's likely due to subsegs_finish not
572 providing sufficient alignment on the last frag, and the
573 machine dependent code using alignment frags with fr_var
574 greater than 1. */
575 abort ();
576 }
577
578 #ifdef tc_frob_section
579 tc_frob_section (sec);
580 #endif
581 #ifdef obj_frob_section
582 obj_frob_section (sec);
583 #endif
584 }
585
586 #ifdef DEBUG2
587 static void
588 dump_section_relocs (bfd *abfd ATTRIBUTE_UNUSED, asection *sec, FILE *stream)
589 {
590 segment_info_type *seginfo = seg_info (sec);
591 fixS *fixp = seginfo->fix_root;
592
593 if (!fixp)
594 return;
595
596 fprintf (stream, "sec %s relocs:\n", sec->name);
597 while (fixp)
598 {
599 symbolS *s = fixp->fx_addsy;
600
601 fprintf (stream, " %08lx: type %d ", (unsigned long) fixp,
602 (int) fixp->fx_r_type);
603 if (s == NULL)
604 fprintf (stream, "no sym\n");
605 else
606 {
607 print_symbol_value_1 (stream, s);
608 fprintf (stream, "\n");
609 }
610 fixp = fixp->fx_next;
611 }
612 }
613 #else
614 #define dump_section_relocs(ABFD,SEC,STREAM) ((void) 0)
615 #endif
616
617 #ifndef EMIT_SECTION_SYMBOLS
618 #define EMIT_SECTION_SYMBOLS 1
619 #endif
620
621 /* This pass over fixups decides whether symbols can be replaced with
622 section symbols. */
623
624 static void
625 adjust_reloc_syms (bfd *abfd ATTRIBUTE_UNUSED,
626 asection *sec,
627 void *xxx ATTRIBUTE_UNUSED)
628 {
629 segment_info_type *seginfo = seg_info (sec);
630 fixS *fixp;
631
632 if (seginfo == NULL)
633 return;
634
635 dump_section_relocs (abfd, sec, stderr);
636
637 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
638 if (fixp->fx_done)
639 /* Ignore it. */
640 ;
641 else if (fixp->fx_addsy)
642 {
643 symbolS *sym;
644 asection *symsec;
645
646 #ifdef DEBUG5
647 fprintf (stderr, "\n\nadjusting fixup:\n");
648 print_fixup (fixp);
649 #endif
650
651 sym = fixp->fx_addsy;
652
653 /* All symbols should have already been resolved at this
654 point. It is possible to see unresolved expression
655 symbols, though, since they are not in the regular symbol
656 table. */
657 resolve_symbol_value (sym);
658
659 if (fixp->fx_subsy != NULL)
660 resolve_symbol_value (fixp->fx_subsy);
661
662 /* If this symbol is equated to an undefined or common symbol,
663 convert the fixup to being against that symbol. */
664 while (symbol_equated_reloc_p (sym)
665 || S_IS_WEAKREFR (sym))
666 {
667 symbolS *newsym = symbol_get_value_expression (sym)->X_add_symbol;
668 if (sym == newsym)
669 break;
670 fixp->fx_offset += symbol_get_value_expression (sym)->X_add_number;
671 fixp->fx_addsy = newsym;
672 sym = newsym;
673 }
674
675 if (symbol_mri_common_p (sym))
676 {
677 fixp->fx_offset += S_GET_VALUE (sym);
678 fixp->fx_addsy = symbol_get_value_expression (sym)->X_add_symbol;
679 continue;
680 }
681
682 /* If the symbol is undefined, common, weak, or global (ELF
683 shared libs), we can't replace it with the section symbol. */
684 if (S_FORCE_RELOC (fixp->fx_addsy, 1))
685 continue;
686
687 /* Is there some other (target cpu dependent) reason we can't adjust
688 this one? (E.g. relocations involving function addresses on
689 the PA. */
690 #ifdef tc_fix_adjustable
691 if (! tc_fix_adjustable (fixp))
692 continue;
693 #endif
694
695 /* Since we're reducing to section symbols, don't attempt to reduce
696 anything that's already using one. */
697 if (symbol_section_p (sym))
698 continue;
699
700 symsec = S_GET_SEGMENT (sym);
701 if (symsec == NULL)
702 abort ();
703
704 if (bfd_is_abs_section (symsec))
705 {
706 /* The fixup_segment routine normally will not use this
707 symbol in a relocation. */
708 continue;
709 }
710
711 /* Don't try to reduce relocs which refer to non-local symbols
712 in .linkonce sections. It can lead to confusion when a
713 debugging section refers to a .linkonce section. I hope
714 this will always be correct. */
715 if (symsec != sec && ! S_IS_LOCAL (sym))
716 {
717 if ((symsec->flags & SEC_LINK_ONCE) != 0
718 || (IS_ELF
719 /* The GNU toolchain uses an extension for ELF: a
720 section beginning with the magic string
721 .gnu.linkonce is a linkonce section. */
722 && strncmp (segment_name (symsec), ".gnu.linkonce",
723 sizeof ".gnu.linkonce" - 1) == 0))
724 continue;
725 }
726
727 /* Never adjust a reloc against local symbol in a merge section
728 with non-zero addend. */
729 if ((symsec->flags & SEC_MERGE) != 0
730 && (fixp->fx_offset != 0 || fixp->fx_subsy != NULL))
731 continue;
732
733 /* Never adjust a reloc against TLS local symbol. */
734 if ((symsec->flags & SEC_THREAD_LOCAL) != 0)
735 continue;
736
737 /* We refetch the segment when calling section_symbol, rather
738 than using symsec, because S_GET_VALUE may wind up changing
739 the section when it calls resolve_symbol_value. */
740 fixp->fx_offset += S_GET_VALUE (sym);
741 fixp->fx_addsy = section_symbol (S_GET_SEGMENT (sym));
742 #ifdef DEBUG5
743 fprintf (stderr, "\nadjusted fixup:\n");
744 print_fixup (fixp);
745 #endif
746 }
747
748 dump_section_relocs (abfd, sec, stderr);
749 }
750
751 /* fixup_segment()
752
753 Go through all the fixS's in a segment and see which ones can be
754 handled now. (These consist of fixS where we have since discovered
755 the value of a symbol, or the address of the frag involved.)
756 For each one, call md_apply_fix to put the fix into the frag data.
757
758 Result is a count of how many relocation structs will be needed to
759 handle the remaining fixS's that we couldn't completely handle here.
760 These will be output later by emit_relocations(). */
761
762 static long
763 fixup_segment (fixS *fixP, segT this_segment)
764 {
765 long seg_reloc_count = 0;
766 valueT add_number;
767 fragS *fragP;
768 segT add_symbol_segment = absolute_section;
769
770 if (fixP != NULL && abs_section_sym == NULL)
771 abs_section_sym = section_symbol (absolute_section);
772
773 /* If the linker is doing the relaxing, we must not do any fixups.
774
775 Well, strictly speaking that's not true -- we could do any that
776 are PC-relative and don't cross regions that could change size.
777 And for the i960 we might be able to turn callx/callj into bal
778 anyways in cases where we know the maximum displacement. */
779 if (linkrelax && TC_LINKRELAX_FIXUP (this_segment))
780 {
781 for (; fixP; fixP = fixP->fx_next)
782 if (!fixP->fx_done)
783 {
784 if (fixP->fx_addsy == NULL)
785 {
786 /* There was no symbol required by this relocation.
787 However, BFD doesn't really handle relocations
788 without symbols well. So fake up a local symbol in
789 the absolute section. */
790 fixP->fx_addsy = abs_section_sym;
791 }
792 symbol_mark_used_in_reloc (fixP->fx_addsy);
793 if (fixP->fx_subsy != NULL)
794 symbol_mark_used_in_reloc (fixP->fx_subsy);
795 seg_reloc_count++;
796 }
797 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
798 return seg_reloc_count;
799 }
800
801 for (; fixP; fixP = fixP->fx_next)
802 {
803 #ifdef DEBUG5
804 fprintf (stderr, "\nprocessing fixup:\n");
805 print_fixup (fixP);
806 #endif
807
808 fragP = fixP->fx_frag;
809 know (fragP);
810 #ifdef TC_VALIDATE_FIX
811 TC_VALIDATE_FIX (fixP, this_segment, skip);
812 #endif
813 add_number = fixP->fx_offset;
814
815 if (fixP->fx_addsy != NULL)
816 add_symbol_segment = S_GET_SEGMENT (fixP->fx_addsy);
817
818 if (fixP->fx_subsy != NULL)
819 {
820 segT sub_symbol_segment;
821 resolve_symbol_value (fixP->fx_subsy);
822 sub_symbol_segment = S_GET_SEGMENT (fixP->fx_subsy);
823 if (fixP->fx_addsy != NULL
824 && sub_symbol_segment == add_symbol_segment
825 && !TC_FORCE_RELOCATION_SUB_SAME (fixP, add_symbol_segment))
826 {
827 add_number += S_GET_VALUE (fixP->fx_addsy);
828 add_number -= S_GET_VALUE (fixP->fx_subsy);
829 fixP->fx_offset = add_number;
830 fixP->fx_addsy = NULL;
831 fixP->fx_subsy = NULL;
832 #ifdef TC_M68K
833 /* See the comment below about 68k weirdness. */
834 fixP->fx_pcrel = 0;
835 #endif
836 }
837 else if (sub_symbol_segment == absolute_section
838 && !TC_FORCE_RELOCATION_SUB_ABS (fixP))
839 {
840 add_number -= S_GET_VALUE (fixP->fx_subsy);
841 fixP->fx_offset = add_number;
842 fixP->fx_subsy = NULL;
843 }
844 else if (sub_symbol_segment == this_segment
845 && !TC_FORCE_RELOCATION_SUB_LOCAL (fixP))
846 {
847 add_number -= S_GET_VALUE (fixP->fx_subsy);
848 fixP->fx_offset = (add_number + fixP->fx_dot_value
849 + fixP->fx_frag->fr_address);
850
851 /* Make it pc-relative. If the back-end code has not
852 selected a pc-relative reloc, cancel the adjustment
853 we do later on all pc-relative relocs. */
854 if (0
855 #ifdef TC_M68K
856 /* Do this for m68k even if it's already described
857 as pc-relative. On the m68k, an operand of
858 "pc@(foo-.-2)" should address "foo" in a
859 pc-relative mode. */
860 || 1
861 #endif
862 || !fixP->fx_pcrel)
863 add_number += MD_PCREL_FROM_SECTION (fixP, this_segment);
864 fixP->fx_subsy = NULL;
865 fixP->fx_pcrel = 1;
866 }
867 else if (!TC_VALIDATE_FIX_SUB (fixP))
868 {
869 as_bad_where (fixP->fx_file, fixP->fx_line,
870 _("can't resolve `%s' {%s section} - `%s' {%s section}"),
871 fixP->fx_addsy ? S_GET_NAME (fixP->fx_addsy) : "0",
872 segment_name (add_symbol_segment),
873 S_GET_NAME (fixP->fx_subsy),
874 segment_name (sub_symbol_segment));
875 }
876 }
877
878 if (fixP->fx_addsy)
879 {
880 if (add_symbol_segment == this_segment
881 && !TC_FORCE_RELOCATION_LOCAL (fixP))
882 {
883 /* This fixup was made when the symbol's segment was
884 SEG_UNKNOWN, but it is now in the local segment.
885 So we know how to do the address without relocation. */
886 add_number += S_GET_VALUE (fixP->fx_addsy);
887 fixP->fx_offset = add_number;
888 if (fixP->fx_pcrel)
889 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment);
890 fixP->fx_addsy = NULL;
891 fixP->fx_pcrel = 0;
892 }
893 else if (add_symbol_segment == absolute_section
894 && !TC_FORCE_RELOCATION_ABS (fixP))
895 {
896 add_number += S_GET_VALUE (fixP->fx_addsy);
897 fixP->fx_offset = add_number;
898 fixP->fx_addsy = NULL;
899 }
900 else if (add_symbol_segment != undefined_section
901 && ! bfd_is_com_section (add_symbol_segment)
902 && MD_APPLY_SYM_VALUE (fixP))
903 add_number += S_GET_VALUE (fixP->fx_addsy);
904 }
905
906 if (fixP->fx_pcrel)
907 {
908 add_number -= MD_PCREL_FROM_SECTION (fixP, this_segment);
909 if (!fixP->fx_done && fixP->fx_addsy == NULL)
910 {
911 /* There was no symbol required by this relocation.
912 However, BFD doesn't really handle relocations
913 without symbols well. So fake up a local symbol in
914 the absolute section. */
915 fixP->fx_addsy = abs_section_sym;
916 }
917 }
918
919 if (!fixP->fx_done)
920 md_apply_fix (fixP, &add_number, this_segment);
921
922 if (!fixP->fx_done)
923 {
924 ++seg_reloc_count;
925 if (fixP->fx_addsy == NULL)
926 fixP->fx_addsy = abs_section_sym;
927 symbol_mark_used_in_reloc (fixP->fx_addsy);
928 if (fixP->fx_subsy != NULL)
929 symbol_mark_used_in_reloc (fixP->fx_subsy);
930 }
931
932 if (!fixP->fx_bit_fixP && !fixP->fx_no_overflow && fixP->fx_size != 0)
933 {
934 if (fixP->fx_size < sizeof (valueT))
935 {
936 valueT mask;
937
938 mask = 0;
939 mask--; /* Set all bits to one. */
940 mask <<= fixP->fx_size * 8 - (fixP->fx_signed ? 1 : 0);
941 if ((add_number & mask) != 0 && (add_number & mask) != mask)
942 {
943 char buf[50], buf2[50];
944 sprint_value (buf, fragP->fr_address + fixP->fx_where);
945 if (add_number > 1000)
946 sprint_value (buf2, add_number);
947 else
948 sprintf (buf2, "%ld", (long) add_number);
949 as_bad_where (fixP->fx_file, fixP->fx_line,
950 _("value of %s too large for field of %d bytes at %s"),
951 buf2, fixP->fx_size, buf);
952 } /* Generic error checking. */
953 }
954 #ifdef WARN_SIGNED_OVERFLOW_WORD
955 /* Warn if a .word value is too large when treated as a signed
956 number. We already know it is not too negative. This is to
957 catch over-large switches generated by gcc on the 68k. */
958 if (!flag_signed_overflow_ok
959 && fixP->fx_size == 2
960 && add_number > 0x7fff)
961 as_bad_where (fixP->fx_file, fixP->fx_line,
962 _("signed .word overflow; switch may be too large; %ld at 0x%lx"),
963 (long) add_number,
964 (long) (fragP->fr_address + fixP->fx_where));
965 #endif
966 } /* Not a bit fix. */
967
968 #ifdef TC_VALIDATE_FIX
969 skip: ATTRIBUTE_UNUSED_LABEL
970 ;
971 #endif
972 #ifdef DEBUG5
973 fprintf (stderr, "result:\n");
974 print_fixup (fixP);
975 #endif
976 } /* For each fixS in this segment. */
977
978 TC_ADJUST_RELOC_COUNT (fixP, seg_reloc_count);
979 return seg_reloc_count;
980 }
981
982 static void
983 fix_segment (bfd *abfd ATTRIBUTE_UNUSED,
984 asection *sec,
985 void *xxx ATTRIBUTE_UNUSED)
986 {
987 segment_info_type *seginfo = seg_info (sec);
988
989 fixup_segment (seginfo->fix_root, sec);
990 }
991
992 static void
993 write_relocs (bfd *abfd, asection *sec, void *xxx ATTRIBUTE_UNUSED)
994 {
995 segment_info_type *seginfo = seg_info (sec);
996 unsigned int i;
997 unsigned int n;
998 arelent **relocs;
999 fixS *fixp;
1000 char *err;
1001
1002 /* If seginfo is NULL, we did not create this section; don't do
1003 anything with it. */
1004 if (seginfo == NULL)
1005 return;
1006
1007 n = 0;
1008 for (fixp = seginfo->fix_root; fixp; fixp = fixp->fx_next)
1009 n++;
1010
1011 #ifndef RELOC_EXPANSION_POSSIBLE
1012 /* Set up reloc information as well. */
1013 relocs = xcalloc (n, sizeof (arelent *));
1014
1015 i = 0;
1016 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
1017 {
1018 arelent *reloc;
1019 bfd_reloc_status_type s;
1020
1021 if (fixp->fx_done)
1022 {
1023 n--;
1024 continue;
1025 }
1026
1027 reloc = tc_gen_reloc (sec, fixp);
1028 if (!reloc)
1029 {
1030 n--;
1031 continue;
1032 }
1033
1034 /*
1035 This test is triggered inappropriately for the SH:
1036 if (fixp->fx_where + fixp->fx_size
1037 > fixp->fx_frag->fr_fix + fixp->fx_frag->fr_offset)
1038 abort ();
1039 */
1040
1041 s = bfd_install_relocation (stdoutput, reloc,
1042 fixp->fx_frag->fr_literal,
1043 fixp->fx_frag->fr_address,
1044 sec, &err);
1045 switch (s)
1046 {
1047 case bfd_reloc_ok:
1048 break;
1049 case bfd_reloc_overflow:
1050 as_bad_where (fixp->fx_file, fixp->fx_line,
1051 _("relocation overflow"));
1052 break;
1053 case bfd_reloc_outofrange:
1054 as_bad_where (fixp->fx_file, fixp->fx_line,
1055 _("relocation out of range"));
1056 break;
1057 default:
1058 as_fatal (_("%s:%u: bad return from bfd_install_relocation: %x"),
1059 fixp->fx_file, fixp->fx_line, s);
1060 }
1061 relocs[i++] = reloc;
1062 }
1063 #else
1064 n = n * MAX_RELOC_EXPANSION;
1065 /* Set up reloc information as well. */
1066 relocs = xcalloc (n, sizeof (arelent *));
1067
1068 i = 0;
1069 for (fixp = seginfo->fix_root; fixp != (fixS *) NULL; fixp = fixp->fx_next)
1070 {
1071 arelent **reloc;
1072 bfd_reloc_status_type s;
1073 symbolS *sym;
1074 int j;
1075
1076 if (fixp->fx_done)
1077 {
1078 n--;
1079 continue;
1080 }
1081
1082 reloc = tc_gen_reloc (sec, fixp);
1083
1084 for (j = 0; reloc[j]; j++)
1085 {
1086 relocs[i++] = reloc[j];
1087 assert (i <= n);
1088 }
1089 if (fixp->fx_where + fixp->fx_size
1090 > fixp->fx_frag->fr_fix + fixp->fx_frag->fr_offset)
1091 as_bad_where (fixp->fx_file, fixp->fx_line,
1092 _("internal error: fixup not contained within frag"));
1093 for (j = 0; reloc[j]; j++)
1094 {
1095 s = bfd_install_relocation (stdoutput, reloc[j],
1096 fixp->fx_frag->fr_literal,
1097 fixp->fx_frag->fr_address,
1098 sec, &err);
1099 switch (s)
1100 {
1101 case bfd_reloc_ok:
1102 break;
1103 case bfd_reloc_overflow:
1104 as_bad_where (fixp->fx_file, fixp->fx_line,
1105 _("relocation overflow"));
1106 break;
1107 case bfd_reloc_outofrange:
1108 as_bad_where (fixp->fx_file, fixp->fx_line,
1109 _("relocation out of range"));
1110 break;
1111 default:
1112 as_fatal (_("%s:%u: bad return from bfd_install_relocation: %x"),
1113 fixp->fx_file, fixp->fx_line, s);
1114 }
1115 }
1116 }
1117 n = i;
1118 #endif
1119
1120 #ifdef DEBUG4
1121 {
1122 unsigned int i, j, nsyms;
1123 asymbol **sympp;
1124 sympp = bfd_get_outsymbols (stdoutput);
1125 nsyms = bfd_get_symcount (stdoutput);
1126 for (i = 0; i < n; i++)
1127 if (((*relocs[i]->sym_ptr_ptr)->flags & BSF_SECTION_SYM) == 0)
1128 {
1129 for (j = 0; j < nsyms; j++)
1130 if (sympp[j] == *relocs[i]->sym_ptr_ptr)
1131 break;
1132 if (j == nsyms)
1133 abort ();
1134 }
1135 }
1136 #endif
1137
1138 if (n)
1139 bfd_set_reloc (stdoutput, sec, relocs, n);
1140 else
1141 bfd_set_section_flags (abfd, sec,
1142 (bfd_get_section_flags (abfd, sec)
1143 & (flagword) ~SEC_RELOC));
1144
1145 #ifdef SET_SECTION_RELOCS
1146 SET_SECTION_RELOCS (sec, relocs, n);
1147 #endif
1148
1149 #ifdef DEBUG3
1150 {
1151 unsigned int i;
1152 arelent *r;
1153 asymbol *s;
1154 fprintf (stderr, "relocs for sec %s\n", sec->name);
1155 for (i = 0; i < n; i++)
1156 {
1157 r = relocs[i];
1158 s = *r->sym_ptr_ptr;
1159 fprintf (stderr, " reloc %2d @%p off %4lx : sym %-10s addend %lx\n",
1160 i, r, (unsigned long)r->address, s->name, (unsigned long)r->addend);
1161 }
1162 }
1163 #endif
1164 }
1165
1166 static void
1167 write_contents (bfd *abfd ATTRIBUTE_UNUSED,
1168 asection *sec,
1169 void *xxx ATTRIBUTE_UNUSED)
1170 {
1171 segment_info_type *seginfo = seg_info (sec);
1172 addressT offset = 0;
1173 fragS *f;
1174
1175 /* Write out the frags. */
1176 if (seginfo == NULL
1177 || !(bfd_get_section_flags (abfd, sec) & SEC_HAS_CONTENTS))
1178 return;
1179
1180 for (f = seginfo->frchainP->frch_root;
1181 f;
1182 f = f->fr_next)
1183 {
1184 int x;
1185 addressT fill_size;
1186 char *fill_literal;
1187 offsetT count;
1188
1189 assert (f->fr_type == rs_fill);
1190 if (f->fr_fix)
1191 {
1192 x = bfd_set_section_contents (stdoutput, sec,
1193 f->fr_literal, (file_ptr) offset,
1194 (bfd_size_type) f->fr_fix);
1195 if (!x)
1196 as_fatal (_("can't write %s: %s"), stdoutput->filename,
1197 bfd_errmsg (bfd_get_error ()));
1198 offset += f->fr_fix;
1199 }
1200 fill_literal = f->fr_literal + f->fr_fix;
1201 fill_size = f->fr_var;
1202 count = f->fr_offset;
1203 assert (count >= 0);
1204 if (fill_size && count)
1205 {
1206 char buf[256];
1207 if (fill_size > sizeof (buf))
1208 {
1209 /* Do it the old way. Can this ever happen? */
1210 while (count--)
1211 {
1212 x = bfd_set_section_contents (stdoutput, sec,
1213 fill_literal,
1214 (file_ptr) offset,
1215 (bfd_size_type) fill_size);
1216 if (!x)
1217 as_fatal (_("can't write %s: %s"), stdoutput->filename,
1218 bfd_errmsg (bfd_get_error ()));
1219 offset += fill_size;
1220 }
1221 }
1222 else
1223 {
1224 /* Build a buffer full of fill objects and output it as
1225 often as necessary. This saves on the overhead of
1226 potentially lots of bfd_set_section_contents calls. */
1227 int n_per_buf, i;
1228 if (fill_size == 1)
1229 {
1230 n_per_buf = sizeof (buf);
1231 memset (buf, *fill_literal, n_per_buf);
1232 }
1233 else
1234 {
1235 char *bufp;
1236 n_per_buf = sizeof (buf) / fill_size;
1237 for (i = n_per_buf, bufp = buf; i; i--, bufp += fill_size)
1238 memcpy (bufp, fill_literal, fill_size);
1239 }
1240 for (; count > 0; count -= n_per_buf)
1241 {
1242 n_per_buf = n_per_buf > count ? count : n_per_buf;
1243 x = bfd_set_section_contents
1244 (stdoutput, sec, buf, (file_ptr) offset,
1245 (bfd_size_type) n_per_buf * fill_size);
1246 if (!x)
1247 as_fatal (_("cannot write to output file"));
1248 offset += n_per_buf * fill_size;
1249 }
1250 }
1251 }
1252 }
1253 }
1254
1255 static void
1256 merge_data_into_text (void)
1257 {
1258 seg_info (text_section)->frchainP->frch_last->fr_next =
1259 seg_info (data_section)->frchainP->frch_root;
1260 seg_info (text_section)->frchainP->frch_last =
1261 seg_info (data_section)->frchainP->frch_last;
1262 seg_info (data_section)->frchainP = 0;
1263 }
1264
1265 static void
1266 set_symtab (void)
1267 {
1268 int nsyms;
1269 asymbol **asympp;
1270 symbolS *symp;
1271 bfd_boolean result;
1272
1273 /* Count symbols. We can't rely on a count made by the loop in
1274 write_object_file, because *_frob_file may add a new symbol or
1275 two. */
1276 nsyms = 0;
1277 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1278 nsyms++;
1279
1280 if (nsyms)
1281 {
1282 int i;
1283 bfd_size_type amt = (bfd_size_type) nsyms * sizeof (asymbol *);
1284
1285 asympp = bfd_alloc (stdoutput, amt);
1286 symp = symbol_rootP;
1287 for (i = 0; i < nsyms; i++, symp = symbol_next (symp))
1288 {
1289 asympp[i] = symbol_get_bfdsym (symp);
1290 symbol_mark_written (symp);
1291 }
1292 }
1293 else
1294 asympp = 0;
1295 result = bfd_set_symtab (stdoutput, asympp, nsyms);
1296 assert (result);
1297 symbol_table_frozen = 1;
1298 }
1299
1300 /* Finish the subsegments. After every sub-segment, we fake an
1301 ".align ...". This conforms to BSD4.2 brane-damage. We then fake
1302 ".fill 0" because that is the kind of frag that requires least
1303 thought. ".align" frags like to have a following frag since that
1304 makes calculating their intended length trivial. */
1305
1306 #ifndef SUB_SEGMENT_ALIGN
1307 #ifdef HANDLE_ALIGN
1308 /* The last subsegment gets an alignment corresponding to the alignment
1309 of the section. This allows proper nop-filling at the end of
1310 code-bearing sections. */
1311 #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) \
1312 (!(FRCHAIN)->frch_next ? get_recorded_alignment (SEG) : 0)
1313 #else
1314 #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0
1315 #endif
1316 #endif
1317
1318 void
1319 subsegs_finish (void)
1320 {
1321 struct frchain *frchainP;
1322 asection *s;
1323
1324 for (s = stdoutput->sections; s; s = s->next)
1325 {
1326 segment_info_type *seginfo = seg_info (s);
1327 if (!seginfo)
1328 continue;
1329
1330 for (frchainP = seginfo->frchainP;
1331 frchainP != NULL;
1332 frchainP = frchainP->frch_next)
1333 {
1334 int alignment = 0;
1335
1336 subseg_set (s, frchainP->frch_subseg);
1337
1338 /* This now gets called even if we had errors. In that case,
1339 any alignment is meaningless, and, moreover, will look weird
1340 if we are generating a listing. */
1341 if (!had_errors ())
1342 {
1343 alignment = SUB_SEGMENT_ALIGN (now_seg, frchainP);
1344 if ((bfd_get_section_flags (now_seg->owner, now_seg) & SEC_MERGE)
1345 && now_seg->entsize)
1346 {
1347 unsigned int entsize = now_seg->entsize;
1348 int entalign = 0;
1349
1350 while ((entsize & 1) == 0)
1351 {
1352 ++entalign;
1353 entsize >>= 1;
1354 }
1355 if (entalign > alignment)
1356 alignment = entalign;
1357 }
1358 }
1359
1360 if (subseg_text_p (now_seg))
1361 frag_align_code (alignment, 0);
1362 else
1363 frag_align (alignment, 0, 0);
1364
1365 /* frag_align will have left a new frag.
1366 Use this last frag for an empty ".fill".
1367
1368 For this segment ...
1369 Create a last frag. Do not leave a "being filled in frag". */
1370 frag_wane (frag_now);
1371 frag_now->fr_fix = 0;
1372 know (frag_now->fr_next == NULL);
1373 }
1374 }
1375 }
1376
1377 /* Write the object file. */
1378
1379 void
1380 write_object_file (void)
1381 {
1382 struct relax_seg_info rsi;
1383 #ifndef WORKING_DOT_WORD
1384 fragS *fragP; /* Track along all frags. */
1385 #endif
1386
1387 /* Do we really want to write it? */
1388 {
1389 int n_warns, n_errs;
1390 n_warns = had_warnings ();
1391 n_errs = had_errors ();
1392 /* The -Z flag indicates that an object file should be generated,
1393 regardless of warnings and errors. */
1394 if (flag_always_generate_output)
1395 {
1396 if (n_warns || n_errs)
1397 as_warn (_("%d error%s, %d warning%s, generating bad object file"),
1398 n_errs, n_errs == 1 ? "" : "s",
1399 n_warns, n_warns == 1 ? "" : "s");
1400 }
1401 else
1402 {
1403 if (n_errs)
1404 as_fatal (_("%d error%s, %d warning%s, no object file generated"),
1405 n_errs, n_errs == 1 ? "" : "s",
1406 n_warns, n_warns == 1 ? "" : "s");
1407 }
1408 }
1409
1410 #ifdef OBJ_VMS
1411 /* Under VMS we try to be compatible with VAX-11 "C". Thus, we call
1412 a routine to check for the definition of the procedure "_main",
1413 and if so -- fix it up so that it can be program entry point. */
1414 vms_check_for_main ();
1415 #endif /* OBJ_VMS */
1416
1417 /* From now on, we don't care about sub-segments. Build one frag chain
1418 for each segment. Linked thru fr_next. */
1419
1420 /* Remove the sections created by gas for its own purposes. */
1421 {
1422 int i;
1423
1424 bfd_section_list_remove (stdoutput, reg_section);
1425 bfd_section_list_remove (stdoutput, expr_section);
1426 stdoutput->section_count -= 2;
1427 i = 0;
1428 bfd_map_over_sections (stdoutput, renumber_sections, &i);
1429 }
1430
1431 bfd_map_over_sections (stdoutput, chain_frchains_together, (char *) 0);
1432
1433 /* We have two segments. If user gave -R flag, then we must put the
1434 data frags into the text segment. Do this before relaxing so
1435 we know to take advantage of -R and make shorter addresses. */
1436 if (flag_readonly_data_in_text)
1437 {
1438 merge_data_into_text ();
1439 }
1440
1441 rsi.pass = 0;
1442 while (1)
1443 {
1444 #ifndef WORKING_DOT_WORD
1445 /* We need to reset the markers in the broken word list and
1446 associated frags between calls to relax_segment (via
1447 relax_seg). Since the broken word list is global, we do it
1448 once per round, rather than locally in relax_segment for each
1449 segment. */
1450 struct broken_word *brokp;
1451
1452 for (brokp = broken_words;
1453 brokp != (struct broken_word *) NULL;
1454 brokp = brokp->next_broken_word)
1455 {
1456 brokp->added = 0;
1457
1458 if (brokp->dispfrag != (fragS *) NULL
1459 && brokp->dispfrag->fr_type == rs_broken_word)
1460 brokp->dispfrag->fr_subtype = 0;
1461 }
1462 #endif
1463
1464 rsi.changed = 0;
1465 bfd_map_over_sections (stdoutput, relax_seg, &rsi);
1466 rsi.pass++;
1467 if (!rsi.changed)
1468 break;
1469 }
1470
1471 /* Note - Most ports will use the default value of
1472 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG, which 1. This will force
1473 local symbols to be resolved, removing their frag information.
1474 Some ports however, will not have finished relaxing all of
1475 their frags and will still need the local symbol frag
1476 information. These ports can set
1477 TC_FINALIZE_SYMS_BEFORE_SIZE_SEG to 0. */
1478 finalize_syms = TC_FINALIZE_SYMS_BEFORE_SIZE_SEG;
1479
1480 bfd_map_over_sections (stdoutput, size_seg, (char *) 0);
1481
1482 /* Relaxation has completed. Freeze all syms. */
1483 finalize_syms = 1;
1484
1485 #ifdef md_post_relax_hook
1486 md_post_relax_hook;
1487 #endif
1488
1489 #ifndef WORKING_DOT_WORD
1490 {
1491 struct broken_word *lie;
1492 struct broken_word **prevP;
1493
1494 prevP = &broken_words;
1495 for (lie = broken_words; lie; lie = lie->next_broken_word)
1496 if (!lie->added)
1497 {
1498 expressionS exp;
1499
1500 subseg_change (lie->seg, lie->subseg);
1501 exp.X_op = O_subtract;
1502 exp.X_add_symbol = lie->add;
1503 exp.X_op_symbol = lie->sub;
1504 exp.X_add_number = lie->addnum;
1505 #ifdef TC_CONS_FIX_NEW
1506 TC_CONS_FIX_NEW (lie->frag,
1507 lie->word_goes_here - lie->frag->fr_literal,
1508 2, &exp);
1509 #else
1510 fix_new_exp (lie->frag,
1511 lie->word_goes_here - lie->frag->fr_literal,
1512 2, &exp, 0, BFD_RELOC_16);
1513 #endif
1514 *prevP = lie->next_broken_word;
1515 }
1516 else
1517 prevP = &(lie->next_broken_word);
1518
1519 for (lie = broken_words; lie;)
1520 {
1521 struct broken_word *untruth;
1522 char *table_ptr;
1523 addressT table_addr;
1524 addressT from_addr, to_addr;
1525 int n, m;
1526
1527 subseg_change (lie->seg, lie->subseg);
1528 fragP = lie->dispfrag;
1529
1530 /* Find out how many broken_words go here. */
1531 n = 0;
1532 for (untruth = lie;
1533 untruth && untruth->dispfrag == fragP;
1534 untruth = untruth->next_broken_word)
1535 if (untruth->added == 1)
1536 n++;
1537
1538 table_ptr = lie->dispfrag->fr_opcode;
1539 table_addr = (lie->dispfrag->fr_address
1540 + (table_ptr - lie->dispfrag->fr_literal));
1541 /* Create the jump around the long jumps. This is a short
1542 jump from table_ptr+0 to table_ptr+n*long_jump_size. */
1543 from_addr = table_addr;
1544 to_addr = table_addr + md_short_jump_size + n * md_long_jump_size;
1545 md_create_short_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1546 lie->add);
1547 table_ptr += md_short_jump_size;
1548 table_addr += md_short_jump_size;
1549
1550 for (m = 0;
1551 lie && lie->dispfrag == fragP;
1552 m++, lie = lie->next_broken_word)
1553 {
1554 if (lie->added == 2)
1555 continue;
1556 /* Patch the jump table. */
1557 /* This is the offset from ??? to table_ptr+0. */
1558 to_addr = table_addr - S_GET_VALUE (lie->sub);
1559 #ifdef TC_CHECK_ADJUSTED_BROKEN_DOT_WORD
1560 TC_CHECK_ADJUSTED_BROKEN_DOT_WORD (to_addr, lie);
1561 #endif
1562 md_number_to_chars (lie->word_goes_here, to_addr, 2);
1563 for (untruth = lie->next_broken_word;
1564 untruth && untruth->dispfrag == fragP;
1565 untruth = untruth->next_broken_word)
1566 {
1567 if (untruth->use_jump == lie)
1568 md_number_to_chars (untruth->word_goes_here, to_addr, 2);
1569 }
1570
1571 /* Install the long jump. */
1572 /* This is a long jump from table_ptr+0 to the final target. */
1573 from_addr = table_addr;
1574 to_addr = S_GET_VALUE (lie->add) + lie->addnum;
1575 md_create_long_jump (table_ptr, from_addr, to_addr, lie->dispfrag,
1576 lie->add);
1577 table_ptr += md_long_jump_size;
1578 table_addr += md_long_jump_size;
1579 }
1580 }
1581 }
1582 #endif /* not WORKING_DOT_WORD */
1583
1584 /* Resolve symbol values. This needs to be done before processing
1585 the relocations. */
1586 if (symbol_rootP)
1587 {
1588 symbolS *symp;
1589
1590 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1591 resolve_symbol_value (symp);
1592 }
1593 resolve_local_symbol_values ();
1594
1595 PROGRESS (1);
1596
1597 #ifdef tc_frob_file_before_adjust
1598 tc_frob_file_before_adjust ();
1599 #endif
1600 #ifdef obj_frob_file_before_adjust
1601 obj_frob_file_before_adjust ();
1602 #endif
1603
1604 bfd_map_over_sections (stdoutput, adjust_reloc_syms, (char *) 0);
1605
1606 #ifdef tc_frob_file_before_fix
1607 tc_frob_file_before_fix ();
1608 #endif
1609 #ifdef obj_frob_file_before_fix
1610 obj_frob_file_before_fix ();
1611 #endif
1612
1613 bfd_map_over_sections (stdoutput, fix_segment, (char *) 0);
1614
1615 /* Set up symbol table, and write it out. */
1616 if (symbol_rootP)
1617 {
1618 symbolS *symp;
1619 bfd_boolean skip_next_symbol = FALSE;
1620
1621 for (symp = symbol_rootP; symp; symp = symbol_next (symp))
1622 {
1623 int punt = 0;
1624 const char *name;
1625
1626 if (skip_next_symbol)
1627 {
1628 /* Don't do anything besides moving the value of the
1629 symbol from the GAS value-field to the BFD value-field. */
1630 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
1631 skip_next_symbol = FALSE;
1632 continue;
1633 }
1634
1635 if (symbol_mri_common_p (symp))
1636 {
1637 if (S_IS_EXTERNAL (symp))
1638 as_bad (_("%s: global symbols not supported in common sections"),
1639 S_GET_NAME (symp));
1640 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1641 continue;
1642 }
1643
1644 name = S_GET_NAME (symp);
1645 if (name)
1646 {
1647 const char *name2 =
1648 decode_local_label_name ((char *) S_GET_NAME (symp));
1649 /* They only differ if `name' is a fb or dollar local
1650 label name. */
1651 if (name2 != name && ! S_IS_DEFINED (symp))
1652 as_bad (_("local label `%s' is not defined"), name2);
1653 }
1654
1655 /* Do it again, because adjust_reloc_syms might introduce
1656 more symbols. They'll probably only be section symbols,
1657 but they'll still need to have the values computed. */
1658 resolve_symbol_value (symp);
1659
1660 /* Skip symbols which were equated to undefined or common
1661 symbols. */
1662 if (symbol_equated_reloc_p (symp)
1663 || S_IS_WEAKREFR (symp))
1664 {
1665 const char *name = S_GET_NAME (symp);
1666 if (S_IS_COMMON (symp)
1667 && !TC_FAKE_LABEL (name)
1668 && !S_IS_WEAKREFR (symp)
1669 && (!S_IS_EXTERNAL (symp) || S_IS_LOCAL (symp)))
1670 {
1671 expressionS *e = symbol_get_value_expression (symp);
1672 as_bad (_("Local symbol `%s' can't be equated to common symbol `%s'"),
1673 name, S_GET_NAME (e->X_add_symbol));
1674 }
1675 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1676 continue;
1677 }
1678
1679 #ifdef obj_frob_symbol
1680 obj_frob_symbol (symp, punt);
1681 #endif
1682 #ifdef tc_frob_symbol
1683 if (! punt || symbol_used_in_reloc_p (symp))
1684 tc_frob_symbol (symp, punt);
1685 #endif
1686
1687 /* If we don't want to keep this symbol, splice it out of
1688 the chain now. If EMIT_SECTION_SYMBOLS is 0, we never
1689 want section symbols. Otherwise, we skip local symbols
1690 and symbols that the frob_symbol macros told us to punt,
1691 but we keep such symbols if they are used in relocs. */
1692 if (symp == abs_section_sym
1693 || (! EMIT_SECTION_SYMBOLS
1694 && symbol_section_p (symp))
1695 /* Note that S_IS_EXTERNAL and S_IS_LOCAL are not always
1696 opposites. Sometimes the former checks flags and the
1697 latter examines the name... */
1698 || (!S_IS_EXTERNAL (symp)
1699 && (punt || S_IS_LOCAL (symp) ||
1700 (S_IS_WEAKREFD (symp) && ! symbol_used_p (symp)))
1701 && ! symbol_used_in_reloc_p (symp)))
1702 {
1703 symbol_remove (symp, &symbol_rootP, &symbol_lastP);
1704
1705 /* After symbol_remove, symbol_next(symp) still returns
1706 the one that came after it in the chain. So we don't
1707 need to do any extra cleanup work here. */
1708 continue;
1709 }
1710
1711 /* Make sure we really got a value for the symbol. */
1712 if (! symbol_resolved_p (symp))
1713 {
1714 as_bad (_("can't resolve value for symbol `%s'"),
1715 S_GET_NAME (symp));
1716 symbol_mark_resolved (symp);
1717 }
1718
1719 /* Set the value into the BFD symbol. Up til now the value
1720 has only been kept in the gas symbolS struct. */
1721 symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp);
1722
1723 /* A warning construct is a warning symbol followed by the
1724 symbol warned about. Don't let anything object-format or
1725 target-specific muck with it; it's ready for output. */
1726 if (symbol_get_bfdsym (symp)->flags & BSF_WARNING)
1727 skip_next_symbol = TRUE;
1728 }
1729 }
1730
1731 PROGRESS (1);
1732
1733 /* Now do any format-specific adjustments to the symbol table, such
1734 as adding file symbols. */
1735 #ifdef tc_adjust_symtab
1736 tc_adjust_symtab ();
1737 #endif
1738 #ifdef obj_adjust_symtab
1739 obj_adjust_symtab ();
1740 #endif
1741
1742 /* Now that all the sizes are known, and contents correct, we can
1743 start writing to the file. */
1744 set_symtab ();
1745
1746 /* If *_frob_file changes the symbol value at this point, it is
1747 responsible for moving the changed value into symp->bsym->value
1748 as well. Hopefully all symbol value changing can be done in
1749 *_frob_symbol. */
1750 #ifdef tc_frob_file
1751 tc_frob_file ();
1752 #endif
1753 #ifdef obj_frob_file
1754 obj_frob_file ();
1755 #endif
1756
1757 bfd_map_over_sections (stdoutput, write_relocs, (char *) 0);
1758
1759 #ifdef tc_frob_file_after_relocs
1760 tc_frob_file_after_relocs ();
1761 #endif
1762 #ifdef obj_frob_file_after_relocs
1763 obj_frob_file_after_relocs ();
1764 #endif
1765
1766 bfd_map_over_sections (stdoutput, write_contents, (char *) 0);
1767 }
1768
1769 #ifdef TC_GENERIC_RELAX_TABLE
1770 /* Relax a fragment by scanning TC_GENERIC_RELAX_TABLE. */
1771
1772 long
1773 relax_frag (segT segment, fragS *fragP, long stretch)
1774 {
1775 const relax_typeS *this_type;
1776 const relax_typeS *start_type;
1777 relax_substateT next_state;
1778 relax_substateT this_state;
1779 offsetT growth;
1780 offsetT aim;
1781 addressT target;
1782 addressT address;
1783 symbolS *symbolP;
1784 const relax_typeS *table;
1785
1786 target = fragP->fr_offset;
1787 address = fragP->fr_address;
1788 table = TC_GENERIC_RELAX_TABLE;
1789 this_state = fragP->fr_subtype;
1790 start_type = this_type = table + this_state;
1791 symbolP = fragP->fr_symbol;
1792
1793 if (symbolP)
1794 {
1795 fragS *sym_frag;
1796
1797 sym_frag = symbol_get_frag (symbolP);
1798
1799 #ifndef DIFF_EXPR_OK
1800 know (sym_frag != NULL);
1801 #endif
1802 know (S_GET_SEGMENT (symbolP) != absolute_section
1803 || sym_frag == &zero_address_frag);
1804 target += S_GET_VALUE (symbolP);
1805
1806 /* If frag has yet to be reached on this pass,
1807 assume it will move by STRETCH just as we did.
1808 If this is not so, it will be because some frag
1809 between grows, and that will force another pass. */
1810
1811 if (stretch != 0
1812 && sym_frag->relax_marker != fragP->relax_marker
1813 && S_GET_SEGMENT (symbolP) == segment)
1814 {
1815 target += stretch;
1816 }
1817 }
1818
1819 aim = target - address - fragP->fr_fix;
1820 #ifdef TC_PCREL_ADJUST
1821 /* Currently only the ns32k family needs this. */
1822 aim += TC_PCREL_ADJUST (fragP);
1823 #endif
1824
1825 #ifdef md_prepare_relax_scan
1826 /* Formerly called M68K_AIM_KLUDGE. */
1827 md_prepare_relax_scan (fragP, address, aim, this_state, this_type);
1828 #endif
1829
1830 if (aim < 0)
1831 {
1832 /* Look backwards. */
1833 for (next_state = this_type->rlx_more; next_state;)
1834 if (aim >= this_type->rlx_backward)
1835 next_state = 0;
1836 else
1837 {
1838 /* Grow to next state. */
1839 this_state = next_state;
1840 this_type = table + this_state;
1841 next_state = this_type->rlx_more;
1842 }
1843 }
1844 else
1845 {
1846 /* Look forwards. */
1847 for (next_state = this_type->rlx_more; next_state;)
1848 if (aim <= this_type->rlx_forward)
1849 next_state = 0;
1850 else
1851 {
1852 /* Grow to next state. */
1853 this_state = next_state;
1854 this_type = table + this_state;
1855 next_state = this_type->rlx_more;
1856 }
1857 }
1858
1859 growth = this_type->rlx_length - start_type->rlx_length;
1860 if (growth != 0)
1861 fragP->fr_subtype = this_state;
1862 return growth;
1863 }
1864
1865 #endif /* defined (TC_GENERIC_RELAX_TABLE) */
1866
1867 /* Relax_align. Advance location counter to next address that has 'alignment'
1868 lowest order bits all 0s, return size of adjustment made. */
1869 static relax_addressT
1870 relax_align (register relax_addressT address, /* Address now. */
1871 register int alignment /* Alignment (binary). */)
1872 {
1873 relax_addressT mask;
1874 relax_addressT new_address;
1875
1876 mask = ~((~0) << alignment);
1877 new_address = (address + mask) & (~mask);
1878 #ifdef LINKER_RELAXING_SHRINKS_ONLY
1879 if (linkrelax)
1880 /* We must provide lots of padding, so the linker can discard it
1881 when needed. The linker will not add extra space, ever. */
1882 new_address += (1 << alignment);
1883 #endif
1884 return (new_address - address);
1885 }
1886
1887 /* Now we have a segment, not a crowd of sub-segments, we can make
1888 fr_address values.
1889
1890 Relax the frags.
1891
1892 After this, all frags in this segment have addresses that are correct
1893 within the segment. Since segments live in different file addresses,
1894 these frag addresses may not be the same as final object-file
1895 addresses. */
1896
1897 int
1898 relax_segment (struct frag *segment_frag_root, segT segment, int pass)
1899 {
1900 unsigned long frag_count;
1901 struct frag *fragP;
1902 relax_addressT address;
1903 int ret;
1904
1905 /* In case md_estimate_size_before_relax() wants to make fixSs. */
1906 subseg_change (segment, 0);
1907
1908 /* For each frag in segment: count and store (a 1st guess of)
1909 fr_address. */
1910 address = 0;
1911 for (frag_count = 0, fragP = segment_frag_root;
1912 fragP;
1913 fragP = fragP->fr_next, frag_count ++)
1914 {
1915 fragP->relax_marker = 0;
1916 fragP->fr_address = address;
1917 address += fragP->fr_fix;
1918
1919 switch (fragP->fr_type)
1920 {
1921 case rs_fill:
1922 address += fragP->fr_offset * fragP->fr_var;
1923 break;
1924
1925 case rs_align:
1926 case rs_align_code:
1927 case rs_align_test:
1928 {
1929 addressT offset = relax_align (address, (int) fragP->fr_offset);
1930
1931 if (fragP->fr_subtype != 0 && offset > fragP->fr_subtype)
1932 offset = 0;
1933
1934 if (offset % fragP->fr_var != 0)
1935 {
1936 as_bad_where (fragP->fr_file, fragP->fr_line,
1937 _("alignment padding (%lu bytes) not a multiple of %ld"),
1938 (unsigned long) offset, (long) fragP->fr_var);
1939 offset -= (offset % fragP->fr_var);
1940 }
1941
1942 address += offset;
1943 }
1944 break;
1945
1946 case rs_org:
1947 case rs_space:
1948 /* Assume .org is nugatory. It will grow with 1st relax. */
1949 break;
1950
1951 case rs_machine_dependent:
1952 /* If fr_symbol is an expression, this call to
1953 resolve_symbol_value sets up the correct segment, which will
1954 likely be needed in md_estimate_size_before_relax. */
1955 if (fragP->fr_symbol)
1956 resolve_symbol_value (fragP->fr_symbol);
1957
1958 address += md_estimate_size_before_relax (fragP, segment);
1959 break;
1960
1961 #ifndef WORKING_DOT_WORD
1962 /* Broken words don't concern us yet. */
1963 case rs_broken_word:
1964 break;
1965 #endif
1966
1967 case rs_leb128:
1968 /* Initial guess is always 1; doing otherwise can result in
1969 stable solutions that are larger than the minimum. */
1970 address += fragP->fr_offset = 1;
1971 break;
1972
1973 case rs_cfa:
1974 address += eh_frame_estimate_size_before_relax (fragP);
1975 break;
1976
1977 case rs_dwarf2dbg:
1978 address += dwarf2dbg_estimate_size_before_relax (fragP);
1979 break;
1980
1981 default:
1982 BAD_CASE (fragP->fr_type);
1983 break;
1984 }
1985 }
1986
1987 /* Do relax(). */
1988 {
1989 unsigned long max_iterations;
1990 offsetT stretch; /* May be any size, 0 or negative. */
1991 /* Cumulative number of addresses we have relaxed this pass.
1992 We may have relaxed more than one address. */
1993 int stretched; /* Have we stretched on this pass? */
1994 /* This is 'cuz stretch may be zero, when, in fact some piece of code
1995 grew, and another shrank. If a branch instruction doesn't fit anymore,
1996 we could be scrod. */
1997
1998 /* We want to prevent going into an infinite loop where one frag grows
1999 depending upon the location of a symbol which is in turn moved by
2000 the growing frag. eg:
2001
2002 foo = .
2003 .org foo+16
2004 foo = .
2005
2006 So we dictate that this algorithm can be at most O2. */
2007 max_iterations = frag_count * frag_count;
2008 /* Check for overflow. */
2009 if (max_iterations < frag_count)
2010 max_iterations = frag_count;
2011
2012 ret = 0;
2013 do
2014 {
2015 stretch = 0;
2016 stretched = 0;
2017
2018 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2019 {
2020 offsetT growth = 0;
2021 addressT was_address;
2022 offsetT offset;
2023 symbolS *symbolP;
2024
2025 fragP->relax_marker ^= 1;
2026 was_address = fragP->fr_address;
2027 address = fragP->fr_address += stretch;
2028 symbolP = fragP->fr_symbol;
2029 offset = fragP->fr_offset;
2030
2031 switch (fragP->fr_type)
2032 {
2033 case rs_fill: /* .fill never relaxes. */
2034 growth = 0;
2035 break;
2036
2037 #ifndef WORKING_DOT_WORD
2038 /* JF: This is RMS's idea. I do *NOT* want to be blamed
2039 for it I do not want to write it. I do not want to have
2040 anything to do with it. This is not the proper way to
2041 implement this misfeature. */
2042 case rs_broken_word:
2043 {
2044 struct broken_word *lie;
2045 struct broken_word *untruth;
2046
2047 /* Yes this is ugly (storing the broken_word pointer
2048 in the symbol slot). Still, this whole chunk of
2049 code is ugly, and I don't feel like doing anything
2050 about it. Think of it as stubbornness in action. */
2051 growth = 0;
2052 for (lie = (struct broken_word *) (fragP->fr_symbol);
2053 lie && lie->dispfrag == fragP;
2054 lie = lie->next_broken_word)
2055 {
2056
2057 if (lie->added)
2058 continue;
2059
2060 offset = (S_GET_VALUE (lie->add)
2061 + lie->addnum
2062 - S_GET_VALUE (lie->sub));
2063 if (offset <= -32768 || offset >= 32767)
2064 {
2065 if (flag_warn_displacement)
2066 {
2067 char buf[50];
2068 sprint_value (buf, (addressT) lie->addnum);
2069 as_warn_where (fragP->fr_file, fragP->fr_line,
2070 _(".word %s-%s+%s didn't fit"),
2071 S_GET_NAME (lie->add),
2072 S_GET_NAME (lie->sub),
2073 buf);
2074 }
2075 lie->added = 1;
2076 if (fragP->fr_subtype == 0)
2077 {
2078 fragP->fr_subtype++;
2079 growth += md_short_jump_size;
2080 }
2081 for (untruth = lie->next_broken_word;
2082 untruth && untruth->dispfrag == lie->dispfrag;
2083 untruth = untruth->next_broken_word)
2084 if ((symbol_get_frag (untruth->add)
2085 == symbol_get_frag (lie->add))
2086 && (S_GET_VALUE (untruth->add)
2087 == S_GET_VALUE (lie->add)))
2088 {
2089 untruth->added = 2;
2090 untruth->use_jump = lie;
2091 }
2092 growth += md_long_jump_size;
2093 }
2094 }
2095
2096 break;
2097 } /* case rs_broken_word */
2098 #endif
2099 case rs_align:
2100 case rs_align_code:
2101 case rs_align_test:
2102 {
2103 addressT oldoff, newoff;
2104
2105 oldoff = relax_align (was_address + fragP->fr_fix,
2106 (int) offset);
2107 newoff = relax_align (address + fragP->fr_fix,
2108 (int) offset);
2109
2110 if (fragP->fr_subtype != 0)
2111 {
2112 if (oldoff > fragP->fr_subtype)
2113 oldoff = 0;
2114 if (newoff > fragP->fr_subtype)
2115 newoff = 0;
2116 }
2117
2118 growth = newoff - oldoff;
2119 }
2120 break;
2121
2122 case rs_org:
2123 {
2124 addressT target = offset;
2125 addressT after;
2126
2127 if (symbolP)
2128 {
2129 /* Convert from an actual address to an octet offset
2130 into the section. Here it is assumed that the
2131 section's VMA is zero, and can omit subtracting it
2132 from the symbol's value to get the address offset. */
2133 know (S_GET_SEGMENT (symbolP)->vma == 0);
2134 target += S_GET_VALUE (symbolP) * OCTETS_PER_BYTE;
2135 }
2136
2137 know (fragP->fr_next);
2138 after = fragP->fr_next->fr_address;
2139 growth = target - after;
2140 if (growth < 0)
2141 {
2142 growth = 0;
2143
2144 /* Don't error on first few frag relax passes.
2145 The symbol might be an expression involving
2146 symbol values from other sections. If those
2147 sections have not yet been processed their
2148 frags will all have zero addresses, so we
2149 will calculate incorrect values for them. The
2150 number of passes we allow before giving an
2151 error is somewhat arbitrary. It should be at
2152 least one, with larger values requiring
2153 increasingly contrived dependencies between
2154 frags to trigger a false error. */
2155 if (pass < 2)
2156 {
2157 /* Force another pass. */
2158 ret = 1;
2159 break;
2160 }
2161
2162 /* Growth may be negative, but variable part of frag
2163 cannot have fewer than 0 chars. That is, we can't
2164 .org backwards. */
2165 as_bad_where (fragP->fr_file, fragP->fr_line,
2166 _("attempt to move .org backwards"));
2167
2168 /* We've issued an error message. Change the
2169 frag to avoid cascading errors. */
2170 fragP->fr_type = rs_align;
2171 fragP->fr_subtype = 0;
2172 fragP->fr_offset = 0;
2173 fragP->fr_fix = after - was_address;
2174 break;
2175 }
2176
2177 /* This is an absolute growth factor */
2178 growth -= stretch;
2179 break;
2180 }
2181
2182 case rs_space:
2183 growth = 0;
2184 if (symbolP)
2185 {
2186 offsetT amount;
2187
2188 amount = S_GET_VALUE (symbolP);
2189 if (S_GET_SEGMENT (symbolP) != absolute_section
2190 || S_IS_COMMON (symbolP)
2191 || ! S_IS_DEFINED (symbolP))
2192 {
2193 as_bad_where (fragP->fr_file, fragP->fr_line,
2194 _(".space specifies non-absolute value"));
2195 /* Prevent repeat of this error message. */
2196 fragP->fr_symbol = 0;
2197 }
2198 else if (amount < 0)
2199 {
2200 /* Don't error on first few frag relax passes.
2201 See rs_org comment for a longer explanation. */
2202 if (pass < 2)
2203 {
2204 ret = 1;
2205 break;
2206 }
2207
2208 as_warn_where (fragP->fr_file, fragP->fr_line,
2209 _(".space or .fill with negative value, ignored"));
2210 fragP->fr_symbol = 0;
2211 }
2212 else
2213 growth = (was_address + fragP->fr_fix + amount
2214 - fragP->fr_next->fr_address);
2215 }
2216 break;
2217
2218 case rs_machine_dependent:
2219 #ifdef md_relax_frag
2220 growth = md_relax_frag (segment, fragP, stretch);
2221 #else
2222 #ifdef TC_GENERIC_RELAX_TABLE
2223 /* The default way to relax a frag is to look through
2224 TC_GENERIC_RELAX_TABLE. */
2225 growth = relax_frag (segment, fragP, stretch);
2226 #endif /* TC_GENERIC_RELAX_TABLE */
2227 #endif
2228 break;
2229
2230 case rs_leb128:
2231 {
2232 valueT value;
2233 offsetT size;
2234
2235 value = resolve_symbol_value (fragP->fr_symbol);
2236 size = sizeof_leb128 (value, fragP->fr_subtype);
2237 growth = size - fragP->fr_offset;
2238 fragP->fr_offset = size;
2239 }
2240 break;
2241
2242 case rs_cfa:
2243 growth = eh_frame_relax_frag (fragP);
2244 break;
2245
2246 case rs_dwarf2dbg:
2247 growth = dwarf2dbg_relax_frag (fragP);
2248 break;
2249
2250 default:
2251 BAD_CASE (fragP->fr_type);
2252 break;
2253 }
2254 if (growth)
2255 {
2256 stretch += growth;
2257 stretched = 1;
2258 }
2259 }
2260 }
2261 /* Until nothing further to relax. */
2262 while (stretched && -- max_iterations);
2263
2264 if (stretched)
2265 as_fatal (_("Infinite loop encountered whilst attempting to compute the addresses of symbols in section %s"),
2266 segment_name (segment));
2267 }
2268
2269 for (fragP = segment_frag_root; fragP; fragP = fragP->fr_next)
2270 if (fragP->last_fr_address != fragP->fr_address)
2271 {
2272 fragP->last_fr_address = fragP->fr_address;
2273 ret = 1;
2274 }
2275 return ret;
2276 }
2277
2278 void
2279 number_to_chars_bigendian (char *buf, valueT val, int n)
2280 {
2281 if (n <= 0)
2282 abort ();
2283 while (n--)
2284 {
2285 buf[n] = val & 0xff;
2286 val >>= 8;
2287 }
2288 }
2289
2290 void
2291 number_to_chars_littleendian (char *buf, valueT val, int n)
2292 {
2293 if (n <= 0)
2294 abort ();
2295 while (n--)
2296 {
2297 *buf++ = val & 0xff;
2298 val >>= 8;
2299 }
2300 }
2301
2302 void
2303 write_print_statistics (FILE *file)
2304 {
2305 fprintf (file, "fixups: %d\n", n_fixups);
2306 }
2307
2308 /* For debugging. */
2309 extern int indent_level;
2310
2311 void
2312 print_fixup (fixS *fixp)
2313 {
2314 indent_level = 1;
2315 fprintf (stderr, "fix %lx %s:%d", (long) fixp, fixp->fx_file, fixp->fx_line);
2316 if (fixp->fx_pcrel)
2317 fprintf (stderr, " pcrel");
2318 if (fixp->fx_pcrel_adjust)
2319 fprintf (stderr, " pcrel_adjust=%d", fixp->fx_pcrel_adjust);
2320 if (fixp->fx_im_disp)
2321 {
2322 #ifdef TC_NS32K
2323 fprintf (stderr, " im_disp=%d", fixp->fx_im_disp);
2324 #else
2325 fprintf (stderr, " im_disp");
2326 #endif
2327 }
2328 if (fixp->fx_tcbit)
2329 fprintf (stderr, " tcbit");
2330 if (fixp->fx_done)
2331 fprintf (stderr, " done");
2332 fprintf (stderr, "\n size=%d frag=%lx where=%ld offset=%lx addnumber=%lx",
2333 fixp->fx_size, (long) fixp->fx_frag, (long) fixp->fx_where,
2334 (long) fixp->fx_offset, (long) fixp->fx_addnumber);
2335 fprintf (stderr, "\n %s (%d)", bfd_get_reloc_code_name (fixp->fx_r_type),
2336 fixp->fx_r_type);
2337 if (fixp->fx_addsy)
2338 {
2339 fprintf (stderr, "\n +<");
2340 print_symbol_value_1 (stderr, fixp->fx_addsy);
2341 fprintf (stderr, ">");
2342 }
2343 if (fixp->fx_subsy)
2344 {
2345 fprintf (stderr, "\n -<");
2346 print_symbol_value_1 (stderr, fixp->fx_subsy);
2347 fprintf (stderr, ">");
2348 }
2349 fprintf (stderr, "\n");
2350 #ifdef TC_FIX_DATA_PRINT
2351 TC_FIX_DATA_PRINT (stderr, fixp);
2352 #endif
2353 }
This page took 0.078544 seconds and 5 git commands to generate.