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