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