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