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