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