Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* BFD back-end for PowerPC Microsoft Portable Executable files. |
7898deda | 2 | Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
c7e2358a | 3 | 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
252b5132 RH |
4 | Free Software Foundation, Inc. |
5 | ||
6 | Original version pieced together by Kim Knuttila (krk@cygnus.com) | |
7 | ||
8 | There is nothing new under the sun. This file draws a lot on other | |
43646c9d | 9 | coff files, in particular, those for the rs/6000, alpha, mips, and |
252b5132 RH |
10 | intel backends, and the PE work for the arm. |
11 | ||
2ab1486e | 12 | This file is part of BFD, the Binary File Descriptor library. |
252b5132 | 13 | |
2ab1486e NC |
14 | This program is free software; you can redistribute it and/or modify |
15 | it under the terms of the GNU General Public License as published by | |
cd123cb7 | 16 | the Free Software Foundation; either version 3 of the License, or |
2ab1486e | 17 | (at your option) any later version. |
252b5132 | 18 | |
2ab1486e NC |
19 | This program is distributed in the hope that it will be useful, |
20 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 | GNU General Public License for more details. | |
252b5132 | 23 | |
2ab1486e NC |
24 | You should have received a copy of the GNU General Public License |
25 | along with this program; if not, write to the Free Software | |
3e110533 | 26 | Foundation, 51 Franklin Street - Fifth Floor, |
53e09e0a | 27 | Boston, MA 02110-1301, USA. */ |
252b5132 RH |
28 | |
29 | /* Current State: | |
30 | - objdump works | |
31 | - relocs generated by gas | |
32 | - ld will link files, but they do not run. | |
43646c9d | 33 | - dlltool will not produce correct output in some .reloc cases, and will |
2ab1486e | 34 | not produce the right glue code for dll function calls. */ |
252b5132 | 35 | |
252b5132 | 36 | #include "sysdep.h" |
3db64b00 | 37 | #include "bfd.h" |
252b5132 RH |
38 | #include "libbfd.h" |
39 | ||
40 | #include "coff/powerpc.h" | |
41 | #include "coff/internal.h" | |
42 | ||
43 | #include "coff/pe.h" | |
44 | ||
45 | #ifdef BADMAG | |
46 | #undef BADMAG | |
47 | #endif | |
48 | ||
49 | #define BADMAG(x) PPCBADMAG(x) | |
50 | ||
51 | #include "libcoff.h" | |
52 | ||
53 | /* This file is compiled more than once, but we only compile the | |
54 | final_link routine once. */ | |
b34976b6 | 55 | extern bfd_boolean ppc_bfd_coff_final_link |
252b5132 RH |
56 | PARAMS ((bfd *, struct bfd_link_info *)); |
57 | extern void dump_toc PARAMS ((PTR)); | |
58 | ||
2ab1486e NC |
59 | /* The toc is a set of bfd_vma fields. We use the fact that valid |
60 | addresses are even (i.e. the bit representing "1" is off) to allow | |
61 | us to encode a little extra information in the field | |
62 | - Unallocated addresses are initialized to 1. | |
63 | - Allocated addresses are even numbers. | |
64 | The first time we actually write a reference to the toc in the bfd, | |
65 | we want to record that fact in a fixup file (if it is asked for), so | |
66 | we keep track of whether or not an address has been written by marking | |
67 | the low order bit with a "1" upon writing. */ | |
252b5132 RH |
68 | |
69 | #define SET_UNALLOCATED(x) ((x) = 1) | |
70 | #define IS_UNALLOCATED(x) ((x) == 1) | |
71 | ||
72 | #define IS_WRITTEN(x) ((x) & 1) | |
73 | #define MARK_AS_WRITTEN(x) ((x) |= 1) | |
74 | #define MAKE_ADDR_AGAIN(x) ((x) &= ~1) | |
75 | ||
2ab1486e | 76 | /* Turn on this check if you suspect something amiss in the hash tables. */ |
252b5132 RH |
77 | #ifdef DEBUG_HASH |
78 | ||
2ab1486e | 79 | /* Need a 7 char string for an eye catcher. */ |
252b5132 RH |
80 | #define EYE "krkjunk" |
81 | ||
82 | #define HASH_CHECK_DCL char eye_catcher[8]; | |
83 | #define HASH_CHECK_INIT(ret) strcpy(ret->eye_catcher, EYE) | |
84 | #define HASH_CHECK(addr) \ | |
85 | if (strcmp(addr->eye_catcher, EYE) != 0) \ | |
86 | { \ | |
6e301b2b | 87 | fprintf (stderr,\ |
252b5132 RH |
88 | _("File %s, line %d, Hash check failure, bad eye %8s\n"), \ |
89 | __FILE__, __LINE__, addr->eye_catcher); \ | |
c5930ee6 | 90 | abort (); \ |
252b5132 RH |
91 | } |
92 | ||
252b5132 RH |
93 | #else |
94 | ||
95 | #define HASH_CHECK_DCL | |
96 | #define HASH_CHECK_INIT(ret) | |
97 | #define HASH_CHECK(addr) | |
98 | ||
99 | #endif | |
100 | ||
101 | /* In order not to add an int to every hash table item for every coff | |
2ab1486e | 102 | linker, we define our own hash table, derived from the coff one. */ |
252b5132 | 103 | |
43646c9d | 104 | /* PE linker hash table entries. */ |
252b5132 RH |
105 | |
106 | struct ppc_coff_link_hash_entry | |
107 | { | |
2ab1486e | 108 | struct coff_link_hash_entry root; /* First entry, as required. */ |
252b5132 RH |
109 | |
110 | /* As we wonder around the relocs, we'll keep the assigned toc_offset | |
2ab1486e NC |
111 | here. */ |
112 | bfd_vma toc_offset; /* Our addition, as required. */ | |
252b5132 RH |
113 | int symbol_is_glue; |
114 | unsigned long int glue_insn; | |
115 | ||
116 | HASH_CHECK_DCL | |
117 | }; | |
118 | ||
252b5132 RH |
119 | /* PE linker hash table. */ |
120 | ||
121 | struct ppc_coff_link_hash_table | |
122 | { | |
2ab1486e | 123 | struct coff_link_hash_table root; /* First entry, as required. */ |
252b5132 RH |
124 | }; |
125 | ||
126 | static struct bfd_hash_entry *ppc_coff_link_hash_newfunc | |
127 | PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, | |
128 | const char *)); | |
252b5132 RH |
129 | static struct bfd_link_hash_table *ppc_coff_link_hash_table_create |
130 | PARAMS ((bfd *)); | |
b34976b6 | 131 | static bfd_boolean coff_ppc_relocate_section |
252b5132 RH |
132 | PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *, |
133 | struct internal_reloc *, struct internal_syment *, asection **)); | |
134 | static reloc_howto_type *coff_ppc_rtype_to_howto | |
135 | PARAMS ((bfd *, asection *, struct internal_reloc *, | |
136 | struct coff_link_hash_entry *, struct internal_syment *, | |
137 | bfd_vma *)); | |
138 | ||
139 | /* Routine to create an entry in the link hash table. */ | |
140 | ||
141 | static struct bfd_hash_entry * | |
142 | ppc_coff_link_hash_newfunc (entry, table, string) | |
143 | struct bfd_hash_entry *entry; | |
144 | struct bfd_hash_table *table; | |
145 | const char *string; | |
146 | { | |
43646c9d | 147 | struct ppc_coff_link_hash_entry *ret = |
252b5132 RH |
148 | (struct ppc_coff_link_hash_entry *) entry; |
149 | ||
150 | /* Allocate the structure if it has not already been allocated by a | |
151 | subclass. */ | |
152 | if (ret == (struct ppc_coff_link_hash_entry *) NULL) | |
153 | ret = (struct ppc_coff_link_hash_entry *) | |
43646c9d | 154 | bfd_hash_allocate (table, |
252b5132 RH |
155 | sizeof (struct ppc_coff_link_hash_entry)); |
156 | ||
157 | if (ret == (struct ppc_coff_link_hash_entry *) NULL) | |
158 | return NULL; | |
159 | ||
160 | /* Call the allocation method of the superclass. */ | |
161 | ret = ((struct ppc_coff_link_hash_entry *) | |
43646c9d | 162 | _bfd_coff_link_hash_newfunc ((struct bfd_hash_entry *) ret, |
252b5132 RH |
163 | table, string)); |
164 | ||
165 | if (ret) | |
166 | { | |
167 | /* Initialize the local fields. */ | |
2ab1486e | 168 | SET_UNALLOCATED (ret->toc_offset); |
252b5132 RH |
169 | ret->symbol_is_glue = 0; |
170 | ret->glue_insn = 0; | |
171 | ||
2ab1486e | 172 | HASH_CHECK_INIT (ret); |
252b5132 RH |
173 | } |
174 | ||
175 | return (struct bfd_hash_entry *) ret; | |
176 | } | |
177 | ||
178 | /* Initialize a PE linker hash table. */ | |
179 | ||
b34976b6 | 180 | static bfd_boolean |
66eb6687 AM |
181 | ppc_coff_link_hash_table_init (struct ppc_coff_link_hash_table *table, |
182 | bfd *abfd, | |
183 | struct bfd_hash_entry *(*newfunc) (struct bfd_hash_entry *, | |
184 | struct bfd_hash_table *, | |
185 | const char *), | |
186 | unsigned int entsize) | |
252b5132 | 187 | { |
66eb6687 | 188 | return _bfd_coff_link_hash_table_init (&table->root, abfd, newfunc, entsize); |
252b5132 RH |
189 | } |
190 | ||
191 | /* Create a PE linker hash table. */ | |
192 | ||
193 | static struct bfd_link_hash_table * | |
194 | ppc_coff_link_hash_table_create (abfd) | |
195 | bfd *abfd; | |
196 | { | |
197 | struct ppc_coff_link_hash_table *ret; | |
dc810e39 | 198 | bfd_size_type amt = sizeof (struct ppc_coff_link_hash_table); |
252b5132 | 199 | |
e2d34d7d | 200 | ret = (struct ppc_coff_link_hash_table *) bfd_malloc (amt); |
252b5132 RH |
201 | if (ret == NULL) |
202 | return NULL; | |
66eb6687 AM |
203 | if (!ppc_coff_link_hash_table_init (ret, abfd, |
204 | ppc_coff_link_hash_newfunc, | |
205 | sizeof (struct ppc_coff_link_hash_entry))) | |
252b5132 | 206 | { |
e2d34d7d | 207 | free (ret); |
252b5132 RH |
208 | return (struct bfd_link_hash_table *) NULL; |
209 | } | |
210 | return &ret->root.root; | |
211 | } | |
212 | ||
2ab1486e | 213 | /* Now, tailor coffcode.h to use our hash stuff. */ |
252b5132 RH |
214 | |
215 | #define coff_bfd_link_hash_table_create ppc_coff_link_hash_table_create | |
252b5132 | 216 | \f |
2ab1486e NC |
217 | /* The nt loader points the toc register to &toc + 32768, in order to |
218 | use the complete range of a 16-bit displacement. We have to adjust | |
219 | for this when we fix up loads displaced off the toc reg. */ | |
252b5132 RH |
220 | #define TOC_LOAD_ADJUSTMENT (-32768) |
221 | #define TOC_SECTION_NAME ".private.toc" | |
222 | ||
223 | /* The main body of code is in coffcode.h. */ | |
224 | ||
225 | #define COFF_DEFAULT_SECTION_ALIGNMENT_POWER (3) | |
226 | ||
227 | /* In case we're on a 32-bit machine, construct a 64-bit "-1" value | |
228 | from smaller values. Start with zero, widen, *then* decrement. */ | |
229 | #define MINUS_ONE (((bfd_vma)0) - 1) | |
230 | ||
2ab1486e | 231 | /* These should definitely go in a header file somewhere... */ |
252b5132 RH |
232 | |
233 | /* NOP */ | |
234 | #define IMAGE_REL_PPC_ABSOLUTE 0x0000 | |
235 | ||
236 | /* 64-bit address */ | |
237 | #define IMAGE_REL_PPC_ADDR64 0x0001 | |
238 | ||
239 | /* 32-bit address */ | |
240 | #define IMAGE_REL_PPC_ADDR32 0x0002 | |
241 | ||
242 | /* 26-bit address, shifted left 2 (branch absolute) */ | |
243 | #define IMAGE_REL_PPC_ADDR24 0x0003 | |
244 | ||
245 | /* 16-bit address */ | |
246 | #define IMAGE_REL_PPC_ADDR16 0x0004 | |
247 | ||
248 | /* 16-bit address, shifted left 2 (load doubleword) */ | |
249 | #define IMAGE_REL_PPC_ADDR14 0x0005 | |
250 | ||
251 | /* 26-bit PC-relative offset, shifted left 2 (branch relative) */ | |
252 | #define IMAGE_REL_PPC_REL24 0x0006 | |
253 | ||
254 | /* 16-bit PC-relative offset, shifted left 2 (br cond relative) */ | |
255 | #define IMAGE_REL_PPC_REL14 0x0007 | |
256 | ||
257 | /* 16-bit offset from TOC base */ | |
258 | #define IMAGE_REL_PPC_TOCREL16 0x0008 | |
259 | ||
260 | /* 16-bit offset from TOC base, shifted left 2 (load doubleword) */ | |
261 | #define IMAGE_REL_PPC_TOCREL14 0x0009 | |
262 | ||
263 | /* 32-bit addr w/o image base */ | |
264 | #define IMAGE_REL_PPC_ADDR32NB 0x000A | |
265 | ||
266 | /* va of containing section (as in an image sectionhdr) */ | |
267 | #define IMAGE_REL_PPC_SECREL 0x000B | |
268 | ||
269 | /* sectionheader number */ | |
270 | #define IMAGE_REL_PPC_SECTION 0x000C | |
271 | ||
272 | /* substitute TOC restore instruction iff symbol is glue code */ | |
273 | #define IMAGE_REL_PPC_IFGLUE 0x000D | |
274 | ||
275 | /* symbol is glue code; virtual address is TOC restore instruction */ | |
276 | #define IMAGE_REL_PPC_IMGLUE 0x000E | |
277 | ||
278 | /* va of containing section (limited to 16 bits) */ | |
279 | #define IMAGE_REL_PPC_SECREL16 0x000F | |
280 | ||
2ab1486e NC |
281 | /* Stuff to handle immediate data when the number of bits in the |
282 | data is greater than the number of bits in the immediate field | |
283 | We need to do (usually) 32 bit arithmetic on 16 bit chunks. */ | |
252b5132 RH |
284 | #define IMAGE_REL_PPC_REFHI 0x0010 |
285 | #define IMAGE_REL_PPC_REFLO 0x0011 | |
286 | #define IMAGE_REL_PPC_PAIR 0x0012 | |
287 | ||
2ab1486e | 288 | /* This is essentially the same as tocrel16, with TOCDEFN assumed. */ |
252b5132 RH |
289 | #define IMAGE_REL_PPC_TOCREL16_DEFN 0x0013 |
290 | ||
2ab1486e | 291 | /* Flag bits in IMAGE_RELOCATION.TYPE. */ |
252b5132 | 292 | |
2ab1486e | 293 | /* Subtract reloc value rather than adding it. */ |
252b5132 RH |
294 | #define IMAGE_REL_PPC_NEG 0x0100 |
295 | ||
2ab1486e | 296 | /* Fix branch prediction bit to predict branch taken. */ |
252b5132 RH |
297 | #define IMAGE_REL_PPC_BRTAKEN 0x0200 |
298 | ||
2ab1486e | 299 | /* Fix branch prediction bit to predict branch not taken. */ |
252b5132 RH |
300 | #define IMAGE_REL_PPC_BRNTAKEN 0x0400 |
301 | ||
2ab1486e | 302 | /* TOC slot defined in file (or, data in toc). */ |
252b5132 RH |
303 | #define IMAGE_REL_PPC_TOCDEFN 0x0800 |
304 | ||
2ab1486e | 305 | /* Masks to isolate above values in IMAGE_RELOCATION.Type. */ |
252b5132 RH |
306 | #define IMAGE_REL_PPC_TYPEMASK 0x00FF |
307 | #define IMAGE_REL_PPC_FLAGMASK 0x0F00 | |
308 | ||
309 | #define EXTRACT_TYPE(x) ((x) & IMAGE_REL_PPC_TYPEMASK) | |
310 | #define EXTRACT_FLAGS(x) ((x) & IMAGE_REL_PPC_FLAGMASK) | |
311 | #define EXTRACT_JUNK(x) \ | |
312 | ((x) & ~(IMAGE_REL_PPC_TYPEMASK | IMAGE_REL_PPC_FLAGMASK)) | |
252b5132 | 313 | \f |
2ab1486e | 314 | /* Static helper functions to make relocation work. */ |
252b5132 RH |
315 | /* (Work In Progress) */ |
316 | ||
317 | static bfd_reloc_status_type ppc_refhi_reloc PARAMS ((bfd *abfd, | |
318 | arelent *reloc, | |
319 | asymbol *symbol, | |
320 | PTR data, | |
321 | asection *section, | |
322 | bfd *output_bfd, | |
323 | char **error)); | |
252b5132 RH |
324 | static bfd_reloc_status_type ppc_pair_reloc PARAMS ((bfd *abfd, |
325 | arelent *reloc, | |
326 | asymbol *symbol, | |
327 | PTR data, | |
328 | asection *section, | |
329 | bfd *output_bfd, | |
330 | char **error)); | |
252b5132 RH |
331 | \f |
332 | static bfd_reloc_status_type ppc_toc16_reloc PARAMS ((bfd *abfd, | |
333 | arelent *reloc, | |
334 | asymbol *symbol, | |
335 | PTR data, | |
336 | asection *section, | |
337 | bfd *output_bfd, | |
338 | char **error)); | |
339 | ||
252b5132 RH |
340 | static bfd_reloc_status_type ppc_section_reloc PARAMS ((bfd *abfd, |
341 | arelent *reloc, | |
342 | asymbol *symbol, | |
343 | PTR data, | |
344 | asection *section, | |
345 | bfd *output_bfd, | |
346 | char **error)); | |
347 | ||
348 | static bfd_reloc_status_type ppc_secrel_reloc PARAMS ((bfd *abfd, | |
349 | arelent *reloc, | |
350 | asymbol *symbol, | |
351 | PTR data, | |
352 | asection *section, | |
353 | bfd *output_bfd, | |
354 | char **error)); | |
355 | ||
356 | static bfd_reloc_status_type ppc_imglue_reloc PARAMS ((bfd *abfd, | |
357 | arelent *reloc, | |
358 | asymbol *symbol, | |
359 | PTR data, | |
360 | asection *section, | |
361 | bfd *output_bfd, | |
362 | char **error)); | |
363 | ||
b34976b6 | 364 | static bfd_boolean in_reloc_p PARAMS((bfd *abfd, reloc_howto_type *howto)); |
252b5132 RH |
365 | \f |
366 | /* FIXME: It'll take a while to get through all of these. I only need a few to | |
367 | get us started, so those I'll make sure work. Those marked FIXME are either | |
2ab1486e NC |
368 | completely unverified or have a specific unknown marked in the comment. */ |
369 | ||
370 | /* Relocation entries for Windows/NT on PowerPC. | |
371 | ||
372 | From the document "" we find the following listed as used relocs: | |
373 | ||
374 | ABSOLUTE : The noop | |
375 | ADDR[64|32|16] : fields that hold addresses in data fields or the | |
376 | 16 bit displacement field on a load/store. | |
377 | ADDR[24|14] : fields that hold addresses in branch and cond | |
378 | branches. These represent [26|16] bit addresses. | |
379 | The low order 2 bits are preserved. | |
380 | REL[24|14] : branches relative to the Instruction Address | |
381 | register. These represent [26|16] bit addresses, | |
382 | as before. The instruction field will be zero, and | |
383 | the address of the SYM will be inserted at link time. | |
384 | TOCREL16 : 16 bit displacement field referring to a slot in | |
385 | toc. | |
386 | TOCREL14 : 16 bit displacement field, similar to REL14 or ADDR14. | |
387 | ADDR32NB : 32 bit address relative to the virtual origin. | |
388 | (On the alpha, this is always a linker generated thunk) | |
389 | (i.e. 32bit addr relative to the image base) | |
390 | SECREL : The value is relative to the start of the section | |
391 | containing the symbol. | |
392 | SECTION : access to the header containing the item. Supports the | |
393 | codeview debugger. | |
394 | ||
395 | In particular, note that the document does not indicate that the | |
396 | relocations listed in the header file are used. */ | |
397 | ||
252b5132 RH |
398 | |
399 | static reloc_howto_type ppc_coff_howto_table[] = | |
400 | { | |
401 | /* IMAGE_REL_PPC_ABSOLUTE 0x0000 NOP */ | |
402 | /* Unused: */ | |
43646c9d KH |
403 | HOWTO (IMAGE_REL_PPC_ABSOLUTE, /* type */ |
404 | 0, /* rightshift */ | |
405 | 0, /* size (0 = byte, 1 = short, 2 = long) */ | |
406 | 0, /* bitsize */ | |
b34976b6 | 407 | FALSE, /* pc_relative */ |
43646c9d | 408 | 0, /* bitpos */ |
252b5132 | 409 | complain_overflow_dont, /* dont complain_on_overflow */ |
43646c9d | 410 | 0, /* special_function */ |
252b5132 | 411 | "ABSOLUTE", /* name */ |
b34976b6 | 412 | FALSE, /* partial_inplace */ |
43646c9d KH |
413 | 0x00, /* src_mask */ |
414 | 0x00, /* dst_mask */ | |
b34976b6 | 415 | FALSE), /* pcrel_offset */ |
43646c9d | 416 | |
252b5132 RH |
417 | /* IMAGE_REL_PPC_ADDR64 0x0001 64-bit address */ |
418 | /* Unused: */ | |
43646c9d KH |
419 | HOWTO(IMAGE_REL_PPC_ADDR64, /* type */ |
420 | 0, /* rightshift */ | |
421 | 3, /* size (0 = byte, 1 = short, 2 = long) */ | |
422 | 64, /* bitsize */ | |
b34976b6 | 423 | FALSE, /* pc_relative */ |
43646c9d | 424 | 0, /* bitpos */ |
252b5132 | 425 | complain_overflow_bitfield, /* complain_on_overflow */ |
43646c9d | 426 | 0, /* special_function */ |
252b5132 | 427 | "ADDR64", /* name */ |
b34976b6 | 428 | TRUE, /* partial_inplace */ |
252b5132 RH |
429 | MINUS_ONE, /* src_mask */ |
430 | MINUS_ONE, /* dst_mask */ | |
b34976b6 | 431 | FALSE), /* pcrel_offset */ |
252b5132 RH |
432 | |
433 | /* IMAGE_REL_PPC_ADDR32 0x0002 32-bit address */ | |
434 | /* Used: */ | |
435 | HOWTO (IMAGE_REL_PPC_ADDR32, /* type */ | |
43646c9d KH |
436 | 0, /* rightshift */ |
437 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
438 | 32, /* bitsize */ | |
b34976b6 | 439 | FALSE, /* pc_relative */ |
43646c9d | 440 | 0, /* bitpos */ |
252b5132 | 441 | complain_overflow_bitfield, /* complain_on_overflow */ |
43646c9d | 442 | 0, /* special_function */ |
252b5132 | 443 | "ADDR32", /* name */ |
b34976b6 | 444 | TRUE, /* partial_inplace */ |
43646c9d KH |
445 | 0xffffffff, /* src_mask */ |
446 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 447 | FALSE), /* pcrel_offset */ |
43646c9d | 448 | |
252b5132 RH |
449 | /* IMAGE_REL_PPC_ADDR24 0x0003 26-bit address, shifted left 2 (branch absolute) */ |
450 | /* the LI field is in bit 6 through bit 29 is 24 bits, + 2 for the shift */ | |
451 | /* Of course, That's the IBM approved bit numbering, which is not what */ | |
43646c9d | 452 | /* anyone else uses.... The li field is in bit 2 thru 25 */ |
252b5132 RH |
453 | /* Used: */ |
454 | HOWTO (IMAGE_REL_PPC_ADDR24, /* type */ | |
43646c9d KH |
455 | 0, /* rightshift */ |
456 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
252b5132 | 457 | 26, /* bitsize */ |
b34976b6 | 458 | FALSE, /* pc_relative */ |
43646c9d | 459 | 0, /* bitpos */ |
252b5132 | 460 | complain_overflow_bitfield, /* complain_on_overflow */ |
43646c9d | 461 | 0, /* special_function */ |
252b5132 | 462 | "ADDR24", /* name */ |
b34976b6 | 463 | TRUE, /* partial_inplace */ |
43646c9d KH |
464 | 0x07fffffc, /* src_mask */ |
465 | 0x07fffffc, /* dst_mask */ | |
b34976b6 | 466 | FALSE), /* pcrel_offset */ |
43646c9d | 467 | |
252b5132 RH |
468 | /* IMAGE_REL_PPC_ADDR16 0x0004 16-bit address */ |
469 | /* Used: */ | |
43646c9d KH |
470 | HOWTO (IMAGE_REL_PPC_ADDR16, /* type */ |
471 | 0, /* rightshift */ | |
472 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
473 | 16, /* bitsize */ | |
b34976b6 | 474 | FALSE, /* pc_relative */ |
43646c9d | 475 | 0, /* bitpos */ |
252b5132 | 476 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 477 | 0, /* special_function */ |
252b5132 | 478 | "ADDR16", /* name */ |
b34976b6 | 479 | TRUE, /* partial_inplace */ |
43646c9d KH |
480 | 0xffff, /* src_mask */ |
481 | 0xffff, /* dst_mask */ | |
b34976b6 | 482 | FALSE), /* pcrel_offset */ |
43646c9d | 483 | |
252b5132 RH |
484 | /* IMAGE_REL_PPC_ADDR14 0x0005 */ |
485 | /* 16-bit address, shifted left 2 (load doubleword) */ | |
486 | /* FIXME: the mask is likely wrong, and the bit position may be as well */ | |
487 | /* Unused: */ | |
43646c9d KH |
488 | HOWTO (IMAGE_REL_PPC_ADDR14, /* type */ |
489 | 1, /* rightshift */ | |
490 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
491 | 16, /* bitsize */ | |
b34976b6 | 492 | FALSE, /* pc_relative */ |
43646c9d | 493 | 0, /* bitpos */ |
252b5132 | 494 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 495 | 0, /* special_function */ |
252b5132 | 496 | "ADDR16", /* name */ |
b34976b6 | 497 | TRUE, /* partial_inplace */ |
43646c9d KH |
498 | 0xffff, /* src_mask */ |
499 | 0xffff, /* dst_mask */ | |
b34976b6 | 500 | FALSE), /* pcrel_offset */ |
43646c9d | 501 | |
252b5132 RH |
502 | /* IMAGE_REL_PPC_REL24 0x0006 */ |
503 | /* 26-bit PC-relative offset, shifted left 2 (branch relative) */ | |
504 | /* Used: */ | |
505 | HOWTO (IMAGE_REL_PPC_REL24, /* type */ | |
43646c9d KH |
506 | 0, /* rightshift */ |
507 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
508 | 26, /* bitsize */ | |
b34976b6 | 509 | TRUE, /* pc_relative */ |
43646c9d | 510 | 0, /* bitpos */ |
252b5132 | 511 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 512 | 0, /* special_function */ |
252b5132 | 513 | "REL24", /* name */ |
b34976b6 | 514 | TRUE, /* partial_inplace */ |
43646c9d KH |
515 | 0x3fffffc, /* src_mask */ |
516 | 0x3fffffc, /* dst_mask */ | |
b34976b6 | 517 | FALSE), /* pcrel_offset */ |
43646c9d | 518 | |
252b5132 RH |
519 | /* IMAGE_REL_PPC_REL14 0x0007 */ |
520 | /* 16-bit PC-relative offset, shifted left 2 (br cond relative) */ | |
521 | /* FIXME: the mask is likely wrong, and the bit position may be as well */ | |
522 | /* FIXME: how does it know how far to shift? */ | |
523 | /* Unused: */ | |
43646c9d KH |
524 | HOWTO (IMAGE_REL_PPC_ADDR14, /* type */ |
525 | 1, /* rightshift */ | |
526 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
527 | 16, /* bitsize */ | |
b34976b6 | 528 | FALSE, /* pc_relative */ |
43646c9d | 529 | 0, /* bitpos */ |
252b5132 | 530 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 531 | 0, /* special_function */ |
252b5132 | 532 | "ADDR16", /* name */ |
b34976b6 | 533 | TRUE, /* partial_inplace */ |
43646c9d KH |
534 | 0xffff, /* src_mask */ |
535 | 0xffff, /* dst_mask */ | |
b34976b6 | 536 | TRUE), /* pcrel_offset */ |
43646c9d | 537 | |
252b5132 RH |
538 | /* IMAGE_REL_PPC_TOCREL16 0x0008 */ |
539 | /* 16-bit offset from TOC base */ | |
540 | /* Used: */ | |
43646c9d KH |
541 | HOWTO (IMAGE_REL_PPC_TOCREL16,/* type */ |
542 | 0, /* rightshift */ | |
543 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
544 | 16, /* bitsize */ | |
b34976b6 | 545 | FALSE, /* pc_relative */ |
43646c9d | 546 | 0, /* bitpos */ |
252b5132 | 547 | complain_overflow_dont, /* complain_on_overflow */ |
43646c9d | 548 | ppc_toc16_reloc, /* special_function */ |
252b5132 | 549 | "TOCREL16", /* name */ |
b34976b6 | 550 | FALSE, /* partial_inplace */ |
43646c9d KH |
551 | 0xffff, /* src_mask */ |
552 | 0xffff, /* dst_mask */ | |
b34976b6 | 553 | FALSE), /* pcrel_offset */ |
43646c9d | 554 | |
252b5132 RH |
555 | /* IMAGE_REL_PPC_TOCREL14 0x0009 */ |
556 | /* 16-bit offset from TOC base, shifted left 2 (load doubleword) */ | |
557 | /* Unused: */ | |
43646c9d KH |
558 | HOWTO (IMAGE_REL_PPC_TOCREL14,/* type */ |
559 | 1, /* rightshift */ | |
560 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
561 | 16, /* bitsize */ | |
b34976b6 | 562 | FALSE, /* pc_relative */ |
43646c9d | 563 | 0, /* bitpos */ |
252b5132 | 564 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 565 | 0, /* special_function */ |
252b5132 | 566 | "TOCREL14", /* name */ |
b34976b6 | 567 | FALSE, /* partial_inplace */ |
43646c9d KH |
568 | 0xffff, /* src_mask */ |
569 | 0xffff, /* dst_mask */ | |
b34976b6 | 570 | FALSE), /* pcrel_offset */ |
43646c9d | 571 | |
252b5132 RH |
572 | /* IMAGE_REL_PPC_ADDR32NB 0x000A */ |
573 | /* 32-bit addr w/ image base */ | |
574 | /* Unused: */ | |
43646c9d KH |
575 | HOWTO (IMAGE_REL_PPC_ADDR32NB,/* type */ |
576 | 0, /* rightshift */ | |
577 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
578 | 32, /* bitsize */ | |
b34976b6 | 579 | FALSE, /* pc_relative */ |
43646c9d | 580 | 0, /* bitpos */ |
252b5132 | 581 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 582 | 0, /* special_function */ |
252b5132 | 583 | "ADDR32NB", /* name */ |
b34976b6 | 584 | TRUE, /* partial_inplace */ |
43646c9d KH |
585 | 0xffffffff, /* src_mask */ |
586 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 587 | FALSE), /* pcrel_offset */ |
43646c9d | 588 | |
252b5132 RH |
589 | /* IMAGE_REL_PPC_SECREL 0x000B */ |
590 | /* va of containing section (as in an image sectionhdr) */ | |
591 | /* Unused: */ | |
43646c9d KH |
592 | HOWTO (IMAGE_REL_PPC_SECREL,/* type */ |
593 | 0, /* rightshift */ | |
594 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
595 | 32, /* bitsize */ | |
b34976b6 | 596 | FALSE, /* pc_relative */ |
43646c9d | 597 | 0, /* bitpos */ |
252b5132 | 598 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 599 | ppc_secrel_reloc, /* special_function */ |
252b5132 | 600 | "SECREL", /* name */ |
b34976b6 | 601 | TRUE, /* partial_inplace */ |
43646c9d KH |
602 | 0xffffffff, /* src_mask */ |
603 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 604 | TRUE), /* pcrel_offset */ |
252b5132 RH |
605 | |
606 | /* IMAGE_REL_PPC_SECTION 0x000C */ | |
607 | /* sectionheader number */ | |
608 | /* Unused: */ | |
43646c9d KH |
609 | HOWTO (IMAGE_REL_PPC_SECTION,/* type */ |
610 | 0, /* rightshift */ | |
611 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
612 | 32, /* bitsize */ | |
b34976b6 | 613 | FALSE, /* pc_relative */ |
43646c9d | 614 | 0, /* bitpos */ |
252b5132 | 615 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 616 | ppc_section_reloc, /* special_function */ |
252b5132 | 617 | "SECTION", /* name */ |
b34976b6 | 618 | TRUE, /* partial_inplace */ |
43646c9d KH |
619 | 0xffffffff, /* src_mask */ |
620 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 621 | TRUE), /* pcrel_offset */ |
252b5132 RH |
622 | |
623 | /* IMAGE_REL_PPC_IFGLUE 0x000D */ | |
624 | /* substitute TOC restore instruction iff symbol is glue code */ | |
625 | /* Used: */ | |
43646c9d KH |
626 | HOWTO (IMAGE_REL_PPC_IFGLUE,/* type */ |
627 | 0, /* rightshift */ | |
628 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
629 | 32, /* bitsize */ | |
b34976b6 | 630 | FALSE, /* pc_relative */ |
43646c9d | 631 | 0, /* bitpos */ |
252b5132 | 632 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 633 | 0, /* special_function */ |
252b5132 | 634 | "IFGLUE", /* name */ |
b34976b6 | 635 | TRUE, /* partial_inplace */ |
43646c9d KH |
636 | 0xffffffff, /* src_mask */ |
637 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 638 | FALSE), /* pcrel_offset */ |
252b5132 RH |
639 | |
640 | /* IMAGE_REL_PPC_IMGLUE 0x000E */ | |
641 | /* symbol is glue code; virtual address is TOC restore instruction */ | |
642 | /* Unused: */ | |
43646c9d KH |
643 | HOWTO (IMAGE_REL_PPC_IMGLUE,/* type */ |
644 | 0, /* rightshift */ | |
645 | 2, /* size (0 = byte, 1 = short, 2 = long) */ | |
646 | 32, /* bitsize */ | |
b34976b6 | 647 | FALSE, /* pc_relative */ |
43646c9d | 648 | 0, /* bitpos */ |
252b5132 | 649 | complain_overflow_dont, /* complain_on_overflow */ |
43646c9d | 650 | ppc_imglue_reloc, /* special_function */ |
252b5132 | 651 | "IMGLUE", /* name */ |
b34976b6 | 652 | FALSE, /* partial_inplace */ |
43646c9d KH |
653 | 0xffffffff, /* src_mask */ |
654 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 655 | FALSE), /* pcrel_offset */ |
252b5132 RH |
656 | |
657 | /* IMAGE_REL_PPC_SECREL16 0x000F */ | |
658 | /* va of containing section (limited to 16 bits) */ | |
659 | /* Unused: */ | |
43646c9d KH |
660 | HOWTO (IMAGE_REL_PPC_SECREL16,/* type */ |
661 | 0, /* rightshift */ | |
662 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
663 | 16, /* bitsize */ | |
b34976b6 | 664 | FALSE, /* pc_relative */ |
43646c9d | 665 | 0, /* bitpos */ |
252b5132 | 666 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 667 | 0, /* special_function */ |
252b5132 | 668 | "SECREL16", /* name */ |
b34976b6 | 669 | TRUE, /* partial_inplace */ |
43646c9d KH |
670 | 0xffff, /* src_mask */ |
671 | 0xffff, /* dst_mask */ | |
b34976b6 | 672 | TRUE), /* pcrel_offset */ |
252b5132 RH |
673 | |
674 | /* IMAGE_REL_PPC_REFHI 0x0010 */ | |
675 | /* Unused: */ | |
43646c9d KH |
676 | HOWTO (IMAGE_REL_PPC_REFHI, /* type */ |
677 | 0, /* rightshift */ | |
678 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
679 | 16, /* bitsize */ | |
b34976b6 | 680 | FALSE, /* pc_relative */ |
43646c9d | 681 | 0, /* bitpos */ |
252b5132 | 682 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 683 | ppc_refhi_reloc, /* special_function */ |
252b5132 | 684 | "REFHI", /* name */ |
b34976b6 | 685 | TRUE, /* partial_inplace */ |
43646c9d KH |
686 | 0xffffffff, /* src_mask */ |
687 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 688 | FALSE), /* pcrel_offset */ |
252b5132 RH |
689 | |
690 | /* IMAGE_REL_PPC_REFLO 0x0011 */ | |
691 | /* Unused: */ | |
43646c9d KH |
692 | HOWTO (IMAGE_REL_PPC_REFLO, /* type */ |
693 | 0, /* rightshift */ | |
694 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
695 | 16, /* bitsize */ | |
b34976b6 | 696 | FALSE, /* pc_relative */ |
43646c9d | 697 | 0, /* bitpos */ |
252b5132 | 698 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 699 | ppc_refhi_reloc, /* special_function */ |
252b5132 | 700 | "REFLO", /* name */ |
b34976b6 | 701 | TRUE, /* partial_inplace */ |
43646c9d KH |
702 | 0xffffffff, /* src_mask */ |
703 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 704 | FALSE), /* pcrel_offset */ |
252b5132 RH |
705 | |
706 | /* IMAGE_REL_PPC_PAIR 0x0012 */ | |
707 | /* Unused: */ | |
43646c9d KH |
708 | HOWTO (IMAGE_REL_PPC_PAIR, /* type */ |
709 | 0, /* rightshift */ | |
710 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
711 | 16, /* bitsize */ | |
b34976b6 | 712 | FALSE, /* pc_relative */ |
43646c9d | 713 | 0, /* bitpos */ |
252b5132 | 714 | complain_overflow_signed, /* complain_on_overflow */ |
43646c9d | 715 | ppc_pair_reloc, /* special_function */ |
252b5132 | 716 | "PAIR", /* name */ |
b34976b6 | 717 | TRUE, /* partial_inplace */ |
43646c9d KH |
718 | 0xffffffff, /* src_mask */ |
719 | 0xffffffff, /* dst_mask */ | |
b34976b6 | 720 | FALSE), /* pcrel_offset */ |
252b5132 RH |
721 | |
722 | /* IMAGE_REL_PPC_TOCREL16_DEFN 0x0013 */ | |
723 | /* 16-bit offset from TOC base, without causing a definition */ | |
724 | /* Used: */ | |
43646c9d KH |
725 | HOWTO ( (IMAGE_REL_PPC_TOCREL16 | IMAGE_REL_PPC_TOCDEFN), /* type */ |
726 | 0, /* rightshift */ | |
727 | 1, /* size (0 = byte, 1 = short, 2 = long) */ | |
728 | 16, /* bitsize */ | |
b34976b6 | 729 | FALSE, /* pc_relative */ |
43646c9d | 730 | 0, /* bitpos */ |
252b5132 | 731 | complain_overflow_dont, /* complain_on_overflow */ |
43646c9d | 732 | 0, /* special_function */ |
252b5132 | 733 | "TOCREL16, TOCDEFN", /* name */ |
b34976b6 | 734 | FALSE, /* partial_inplace */ |
43646c9d KH |
735 | 0xffff, /* src_mask */ |
736 | 0xffff, /* dst_mask */ | |
b34976b6 | 737 | FALSE), /* pcrel_offset */ |
252b5132 RH |
738 | |
739 | }; | |
252b5132 | 740 | \f |
2ab1486e | 741 | /* Some really cheezy macros that can be turned on to test stderr :-) */ |
252b5132 RH |
742 | |
743 | #ifdef DEBUG_RELOC | |
744 | #define UN_IMPL(x) \ | |
745 | { \ | |
746 | static int i; \ | |
747 | if (i == 0) \ | |
748 | { \ | |
749 | i = 1; \ | |
6e301b2b | 750 | fprintf (stderr,_("Unimplemented Relocation -- %s\n"),x); \ |
252b5132 RH |
751 | } \ |
752 | } | |
753 | ||
754 | #define DUMP_RELOC(n,r) \ | |
755 | { \ | |
6e301b2b | 756 | fprintf (stderr,"%s sym %d, addr %d, addend %d\n", \ |
252b5132 RH |
757 | n, (*(r->sym_ptr_ptr))->name, \ |
758 | r->address, r->addend); \ | |
759 | } | |
760 | ||
43646c9d KH |
761 | /* Given a reloc name, n, and a pointer to an internal_reloc, |
762 | dump out interesting information on the contents | |
252b5132 RH |
763 | |
764 | #define n_name _n._n_name | |
765 | #define n_zeroes _n._n_n._n_zeroes | |
2ab1486e | 766 | #define n_offset _n._n_n._n_offset */ |
252b5132 | 767 | |
2ab1486e NC |
768 | #define DUMP_RELOC2(n,r) \ |
769 | { \ | |
770 | fprintf (stderr,"%s sym %d, r_vaddr %d %s\n", \ | |
771 | n, r->r_symndx, r->r_vaddr, \ | |
252b5132 | 772 | (((r->r_type) & IMAGE_REL_PPC_TOCDEFN) == 0) \ |
2ab1486e | 773 | ?" ":" TOCDEFN" ); \ |
252b5132 RH |
774 | } |
775 | ||
776 | #else | |
777 | #define UN_IMPL(x) | |
778 | #define DUMP_RELOC(n,r) | |
779 | #define DUMP_RELOC2(n,r) | |
780 | #endif | |
252b5132 | 781 | \f |
2ab1486e | 782 | /* TOC construction and management routines. */ |
252b5132 RH |
783 | |
784 | /* This file is compiled twice, and these variables are defined in one | |
785 | of the compilations. FIXME: This is confusing and weird. Also, | |
786 | BFD should not use global variables. */ | |
2ab1486e | 787 | extern bfd * bfd_of_toc_owner; |
252b5132 | 788 | extern long int global_toc_size; |
252b5132 RH |
789 | extern long int import_table_size; |
790 | extern long int first_thunk_address; | |
791 | extern long int thunk_size; | |
792 | ||
793 | enum toc_type | |
794 | { | |
795 | default_toc, | |
796 | toc_32, | |
797 | toc_64 | |
798 | }; | |
799 | ||
800 | enum ref_category | |
801 | { | |
802 | priv, | |
803 | pub, | |
dc810e39 | 804 | tocdata |
252b5132 RH |
805 | }; |
806 | ||
807 | struct list_ele | |
808 | { | |
809 | struct list_ele *next; | |
810 | bfd_vma addr; | |
811 | enum ref_category cat; | |
812 | int offset; | |
813 | const char *name; | |
814 | }; | |
815 | ||
816 | extern struct list_ele *head; | |
817 | extern struct list_ele *tail; | |
818 | ||
819 | static void record_toc | |
dc810e39 | 820 | PARAMS ((asection *, bfd_signed_vma, enum ref_category, const char *)); |
252b5132 RH |
821 | |
822 | static void | |
823 | record_toc (toc_section, our_toc_offset, cat, name) | |
824 | asection *toc_section; | |
dc810e39 | 825 | bfd_signed_vma our_toc_offset; |
252b5132 RH |
826 | enum ref_category cat; |
827 | const char *name; | |
828 | { | |
2ab1486e | 829 | /* Add this entry to our toc addr-offset-name list. */ |
dc810e39 AM |
830 | bfd_size_type amt = sizeof (struct list_ele); |
831 | struct list_ele *t = (struct list_ele *) bfd_malloc (amt); | |
832 | ||
252b5132 RH |
833 | if (t == NULL) |
834 | abort (); | |
835 | t->next = 0; | |
836 | t->offset = our_toc_offset; | |
837 | t->name = name; | |
838 | t->cat = cat; | |
839 | t->addr = toc_section->output_offset + our_toc_offset; | |
840 | ||
841 | if (head == 0) | |
842 | { | |
843 | head = t; | |
844 | tail = t; | |
845 | } | |
846 | else | |
847 | { | |
848 | tail->next = t; | |
849 | tail = t; | |
850 | } | |
851 | } | |
852 | ||
853 | #ifdef COFF_IMAGE_WITH_PE | |
854 | ||
b34976b6 | 855 | static bfd_boolean ppc_record_toc_entry |
252b5132 RH |
856 | PARAMS ((bfd *, struct bfd_link_info *, asection *, int, enum toc_type)); |
857 | static void ppc_mark_symbol_as_glue | |
858 | PARAMS ((bfd *, int, struct internal_reloc *)); | |
859 | ||
2ab1486e | 860 | /* Record a toc offset against a symbol. */ |
b34976b6 | 861 | static bfd_boolean |
252b5132 RH |
862 | ppc_record_toc_entry(abfd, info, sec, sym, toc_kind) |
863 | bfd *abfd; | |
5f771d47 ILT |
864 | struct bfd_link_info *info ATTRIBUTE_UNUSED; |
865 | asection *sec ATTRIBUTE_UNUSED; | |
252b5132 | 866 | int sym; |
5f771d47 | 867 | enum toc_type toc_kind ATTRIBUTE_UNUSED; |
252b5132 RH |
868 | { |
869 | struct ppc_coff_link_hash_entry *h; | |
252b5132 RH |
870 | int *local_syms; |
871 | ||
872 | h = 0; | |
873 | ||
874 | h = (struct ppc_coff_link_hash_entry *) (obj_coff_sym_hashes (abfd)[sym]); | |
875 | if (h != 0) | |
876 | { | |
877 | HASH_CHECK(h); | |
878 | } | |
879 | ||
43646c9d KH |
880 | if (h == 0) |
881 | { | |
252b5132 | 882 | local_syms = obj_coff_local_toc_table(abfd); |
2ab1486e | 883 | |
252b5132 RH |
884 | if (local_syms == 0) |
885 | { | |
886 | unsigned int i; | |
dc810e39 | 887 | bfd_size_type amt; |
2ab1486e | 888 | |
252b5132 | 889 | /* allocate a table */ |
dc810e39 AM |
890 | amt = (bfd_size_type) obj_raw_syment_count (abfd) * sizeof (int); |
891 | local_syms = (int *) bfd_zalloc (abfd, amt); | |
252b5132 | 892 | if (local_syms == 0) |
b34976b6 | 893 | return FALSE; |
dc810e39 | 894 | obj_coff_local_toc_table (abfd) = local_syms; |
2ab1486e | 895 | |
dc810e39 | 896 | for (i = 0; i < obj_raw_syment_count (abfd); ++i) |
252b5132 | 897 | { |
dc810e39 | 898 | SET_UNALLOCATED (local_syms[i]); |
252b5132 RH |
899 | } |
900 | } | |
901 | ||
43646c9d | 902 | if (IS_UNALLOCATED(local_syms[sym])) |
252b5132 RH |
903 | { |
904 | local_syms[sym] = global_toc_size; | |
905 | global_toc_size += 4; | |
906 | ||
5c4491d3 | 907 | /* The size must fit in a 16-bit displacement. */ |
252b5132 RH |
908 | if (global_toc_size > 65535) |
909 | { | |
910 | (*_bfd_error_handler) (_("TOC overflow")); | |
911 | bfd_set_error (bfd_error_file_too_big); | |
b34976b6 | 912 | return FALSE; |
252b5132 RH |
913 | } |
914 | } | |
915 | } | |
916 | else | |
917 | { | |
2ab1486e NC |
918 | /* Check to see if there's a toc slot allocated. If not, do it |
919 | here. It will be used in relocate_section. */ | |
252b5132 RH |
920 | if (IS_UNALLOCATED(h->toc_offset)) |
921 | { | |
922 | h->toc_offset = global_toc_size; | |
923 | global_toc_size += 4; | |
924 | ||
5c4491d3 | 925 | /* The size must fit in a 16-bit displacement. */ |
252b5132 RH |
926 | if (global_toc_size >= 65535) |
927 | { | |
928 | (*_bfd_error_handler) (_("TOC overflow")); | |
929 | bfd_set_error (bfd_error_file_too_big); | |
b34976b6 | 930 | return FALSE; |
252b5132 RH |
931 | } |
932 | } | |
933 | } | |
934 | ||
b34976b6 | 935 | return TRUE; |
252b5132 RH |
936 | } |
937 | ||
2ab1486e | 938 | /* Record a toc offset against a symbol. */ |
252b5132 RH |
939 | static void |
940 | ppc_mark_symbol_as_glue(abfd, sym, rel) | |
941 | bfd *abfd; | |
942 | int sym; | |
943 | struct internal_reloc *rel; | |
944 | { | |
945 | struct ppc_coff_link_hash_entry *h; | |
946 | ||
947 | h = (struct ppc_coff_link_hash_entry *) (obj_coff_sym_hashes (abfd)[sym]); | |
948 | ||
949 | HASH_CHECK(h); | |
950 | ||
951 | h->symbol_is_glue = 1; | |
952 | h->glue_insn = bfd_get_32 (abfd, (bfd_byte *) &rel->r_vaddr); | |
953 | ||
954 | return; | |
955 | } | |
956 | ||
957 | #endif /* COFF_IMAGE_WITH_PE */ | |
958 | \f | |
b34976b6 | 959 | /* Return TRUE if this relocation should |
43646c9d | 960 | appear in the output .reloc section. */ |
252b5132 | 961 | |
b34976b6 | 962 | static bfd_boolean in_reloc_p(abfd, howto) |
5f771d47 | 963 | bfd * abfd ATTRIBUTE_UNUSED; |
252b5132 RH |
964 | reloc_howto_type *howto; |
965 | { | |
43646c9d KH |
966 | return |
967 | (! howto->pc_relative) | |
252b5132 RH |
968 | && (howto->type != IMAGE_REL_PPC_ADDR32NB) |
969 | && (howto->type != IMAGE_REL_PPC_TOCREL16) | |
970 | && (howto->type != IMAGE_REL_PPC_IMGLUE) | |
43646c9d | 971 | && (howto->type != IMAGE_REL_PPC_IFGLUE) |
252b5132 RH |
972 | && (howto->type != IMAGE_REL_PPC_SECREL) |
973 | && (howto->type != IMAGE_REL_PPC_SECTION) | |
974 | && (howto->type != IMAGE_REL_PPC_SECREL16) | |
975 | && (howto->type != IMAGE_REL_PPC_REFHI) | |
976 | && (howto->type != IMAGE_REL_PPC_REFLO) | |
977 | && (howto->type != IMAGE_REL_PPC_PAIR) | |
978 | && (howto->type != IMAGE_REL_PPC_TOCREL16_DEFN) ; | |
43646c9d | 979 | } |
252b5132 | 980 | |
b1657152 AM |
981 | static bfd_boolean |
982 | write_base_file_entry (bfd *obfd, struct bfd_link_info *info, bfd_vma addr) | |
983 | { | |
984 | if (coff_data (obfd)->pe) | |
985 | addr -= pe_data (obfd)->pe_opthdr.ImageBase; | |
986 | if (fwrite (&addr, sizeof (addr), 1, (FILE *) info->base_file) == 1) | |
987 | return TRUE; | |
988 | ||
989 | bfd_set_error (bfd_error_system_call); | |
990 | return FALSE; | |
991 | } | |
992 | ||
252b5132 RH |
993 | /* The reloc processing routine for the optimized COFF linker. */ |
994 | ||
b34976b6 | 995 | static bfd_boolean |
252b5132 RH |
996 | coff_ppc_relocate_section (output_bfd, info, input_bfd, input_section, |
997 | contents, relocs, syms, sections) | |
998 | bfd *output_bfd; | |
999 | struct bfd_link_info *info; | |
1000 | bfd *input_bfd; | |
1001 | asection *input_section; | |
1002 | bfd_byte *contents; | |
1003 | struct internal_reloc *relocs; | |
1004 | struct internal_syment *syms; | |
1005 | asection **sections; | |
1006 | { | |
1007 | struct internal_reloc *rel; | |
1008 | struct internal_reloc *relend; | |
252b5132 RH |
1009 | asection *toc_section = 0; |
1010 | bfd_vma relocation; | |
1011 | reloc_howto_type *howto = 0; | |
43646c9d | 1012 | |
1049f94e | 1013 | /* If we are performing a relocatable link, we don't need to do a |
252b5132 RH |
1014 | thing. The caller will take care of adjusting the reloc |
1015 | addresses and symbol indices. */ | |
1049f94e | 1016 | if (info->relocatable) |
b34976b6 | 1017 | return TRUE; |
43646c9d | 1018 | |
252b5132 RH |
1019 | rel = relocs; |
1020 | relend = rel + input_section->reloc_count; | |
1021 | for (; rel < relend; rel++) | |
1022 | { | |
1023 | long symndx; | |
1024 | struct ppc_coff_link_hash_entry *h; | |
1025 | struct internal_syment *sym; | |
1026 | bfd_vma val; | |
1027 | ||
1028 | asection *sec; | |
1029 | bfd_reloc_status_type rstat; | |
1030 | bfd_byte *loc; | |
1031 | ||
1032 | unsigned short r_type = EXTRACT_TYPE (rel->r_type); | |
1033 | unsigned short r_flags = EXTRACT_FLAGS(rel->r_type); | |
43646c9d | 1034 | |
252b5132 RH |
1035 | symndx = rel->r_symndx; |
1036 | loc = contents + rel->r_vaddr - input_section->vma; | |
1037 | ||
1038 | /* FIXME: check bounds on r_type */ | |
1039 | howto = ppc_coff_howto_table + r_type; | |
1040 | ||
1041 | if (symndx == -1) | |
1042 | { | |
1043 | h = NULL; | |
1044 | sym = NULL; | |
1045 | } | |
1046 | else | |
1047 | { | |
43646c9d | 1048 | h = (struct ppc_coff_link_hash_entry *) |
252b5132 | 1049 | (obj_coff_sym_hashes (input_bfd)[symndx]); |
43646c9d | 1050 | if (h != 0) |
252b5132 RH |
1051 | { |
1052 | HASH_CHECK(h); | |
1053 | } | |
1054 | ||
1055 | sym = syms + symndx; | |
1056 | } | |
1057 | ||
1058 | if (r_type == IMAGE_REL_PPC_IMGLUE && h == 0) | |
1059 | { | |
43646c9d | 1060 | /* An IMGLUE reloc must have a name. Something is very wrong. */ |
c5930ee6 | 1061 | abort (); |
252b5132 RH |
1062 | } |
1063 | ||
1064 | sec = NULL; | |
1065 | val = 0; | |
1066 | ||
2ab1486e | 1067 | /* FIXME: PAIR unsupported in the following code. */ |
252b5132 RH |
1068 | if (h == NULL) |
1069 | { | |
1070 | if (symndx == -1) | |
1071 | sec = bfd_abs_section_ptr; | |
1072 | else | |
1073 | { | |
1074 | sec = sections[symndx]; | |
1075 | val = (sec->output_section->vma | |
1076 | + sec->output_offset | |
1077 | + sym->n_value); | |
1078 | if (! obj_pe (output_bfd)) | |
1079 | val -= sec->vma; | |
1080 | } | |
1081 | } | |
1082 | else | |
1083 | { | |
1084 | HASH_CHECK(h); | |
1085 | ||
1086 | if (h->root.root.type == bfd_link_hash_defined | |
1087 | || h->root.root.type == bfd_link_hash_defweak) | |
1088 | { | |
1089 | sec = h->root.root.u.def.section; | |
1090 | val = (h->root.root.u.def.value | |
1091 | + sec->output_section->vma | |
1092 | + sec->output_offset); | |
1093 | } | |
1094 | else | |
1095 | { | |
1096 | if (! ((*info->callbacks->undefined_symbol) | |
1097 | (info, h->root.root.root.string, input_bfd, input_section, | |
b34976b6 AM |
1098 | rel->r_vaddr - input_section->vma, TRUE))) |
1099 | return FALSE; | |
252b5132 RH |
1100 | } |
1101 | } | |
1102 | ||
1103 | rstat = bfd_reloc_ok; | |
43646c9d | 1104 | |
2ab1486e | 1105 | /* Each case must do its own relocation, setting rstat appropriately. */ |
252b5132 RH |
1106 | switch (r_type) |
1107 | { | |
1108 | default: | |
1109 | (*_bfd_error_handler) | |
d003868e | 1110 | (_("%B: unsupported relocation type 0x%02x"), input_bfd, r_type); |
252b5132 | 1111 | bfd_set_error (bfd_error_bad_value); |
b34976b6 | 1112 | return FALSE; |
252b5132 RH |
1113 | case IMAGE_REL_PPC_TOCREL16: |
1114 | { | |
dc810e39 | 1115 | bfd_signed_vma our_toc_offset; |
252b5132 RH |
1116 | int fixit; |
1117 | ||
1118 | DUMP_RELOC2(howto->name, rel); | |
1119 | ||
43646c9d | 1120 | if (toc_section == 0) |
252b5132 | 1121 | { |
43646c9d | 1122 | toc_section = bfd_get_section_by_name (bfd_of_toc_owner, |
252b5132 RH |
1123 | TOC_SECTION_NAME); |
1124 | ||
43646c9d | 1125 | if ( toc_section == NULL ) |
252b5132 | 1126 | { |
43646c9d | 1127 | /* There is no toc section. Something is very wrong. */ |
c5930ee6 | 1128 | abort (); |
252b5132 RH |
1129 | } |
1130 | } | |
1131 | ||
2ab1486e NC |
1132 | /* Amazing bit tricks present. As we may have seen earlier, we |
1133 | use the 1 bit to tell us whether or not a toc offset has been | |
1134 | allocated. Now that they've all been allocated, we will use | |
1135 | the 1 bit to tell us if we've written this particular toc | |
1136 | entry out. */ | |
b34976b6 | 1137 | fixit = FALSE; |
252b5132 | 1138 | if (h == 0) |
2ab1486e NC |
1139 | { |
1140 | /* It is a file local symbol. */ | |
252b5132 RH |
1141 | int *local_toc_table; |
1142 | const char *name; | |
1143 | ||
1144 | sym = syms + symndx; | |
1145 | name = sym->_n._n_name; | |
1146 | ||
1147 | local_toc_table = obj_coff_local_toc_table(input_bfd); | |
1148 | our_toc_offset = local_toc_table[symndx]; | |
1149 | ||
1150 | if (IS_WRITTEN(our_toc_offset)) | |
1151 | { | |
2ab1486e | 1152 | /* If it has been written out, it is marked with the |
252b5132 | 1153 | 1 bit. Fix up our offset, but do not write it out |
2ab1486e | 1154 | again. */ |
252b5132 RH |
1155 | MAKE_ADDR_AGAIN(our_toc_offset); |
1156 | } | |
1157 | else | |
1158 | { | |
2ab1486e | 1159 | /* Write out the toc entry. */ |
dc810e39 AM |
1160 | record_toc (toc_section, our_toc_offset, priv, |
1161 | strdup (name)); | |
252b5132 | 1162 | |
dc810e39 | 1163 | bfd_put_32 (output_bfd, val, |
252b5132 RH |
1164 | toc_section->contents + our_toc_offset); |
1165 | ||
1166 | MARK_AS_WRITTEN(local_toc_table[symndx]); | |
b34976b6 | 1167 | fixit = TRUE; |
252b5132 RH |
1168 | } |
1169 | } | |
1170 | else | |
1171 | { | |
1172 | const char *name = h->root.root.root.string; | |
1173 | our_toc_offset = h->toc_offset; | |
1174 | ||
43646c9d | 1175 | if ((r_flags & IMAGE_REL_PPC_TOCDEFN) |
252b5132 RH |
1176 | == IMAGE_REL_PPC_TOCDEFN ) |
1177 | { | |
43646c9d KH |
1178 | /* This is unbelievable cheese. Some knowledgable asm |
1179 | hacker has decided to use r2 as a base for loading | |
1180 | a value. He/She does this by setting the tocdefn bit, | |
1181 | and not supplying a toc definition. The behaviour is | |
1182 | then to use the difference between the value of the | |
1183 | symbol and the actual location of the toc as the toc | |
1184 | index. | |
252b5132 RH |
1185 | |
1186 | In fact, what is usually happening is, because the | |
1187 | Import Address Table is mapped immediately following | |
1188 | the toc, some trippy library code trying for speed on | |
43646c9d | 1189 | dll linkage, takes advantage of that and considers |
2ab1486e | 1190 | the IAT to be part of the toc, thus saving a load. */ |
252b5132 | 1191 | |
dc810e39 AM |
1192 | our_toc_offset = val - (toc_section->output_section->vma |
1193 | + toc_section->output_offset); | |
252b5132 | 1194 | |
5c4491d3 | 1195 | /* The size must still fit in a 16-bit displacement. */ |
dc810e39 | 1196 | if ((bfd_vma) our_toc_offset >= 65535) |
252b5132 RH |
1197 | { |
1198 | (*_bfd_error_handler) | |
d003868e AM |
1199 | (_("%B: Relocation for %s of %lx exceeds Toc size limit"), |
1200 | input_bfd, name, | |
dc810e39 | 1201 | (unsigned long) our_toc_offset); |
252b5132 | 1202 | bfd_set_error (bfd_error_bad_value); |
b34976b6 | 1203 | return FALSE; |
252b5132 RH |
1204 | } |
1205 | ||
dc810e39 AM |
1206 | record_toc (toc_section, our_toc_offset, pub, |
1207 | strdup (name)); | |
252b5132 | 1208 | } |
2ab1486e | 1209 | else if (IS_WRITTEN (our_toc_offset)) |
252b5132 | 1210 | { |
2ab1486e | 1211 | /* If it has been written out, it is marked with the |
252b5132 | 1212 | 1 bit. Fix up our offset, but do not write it out |
2ab1486e | 1213 | again. */ |
252b5132 RH |
1214 | MAKE_ADDR_AGAIN(our_toc_offset); |
1215 | } | |
1216 | else | |
1217 | { | |
dc810e39 AM |
1218 | record_toc(toc_section, our_toc_offset, pub, |
1219 | strdup (name)); | |
252b5132 | 1220 | |
2ab1486e | 1221 | /* Write out the toc entry. */ |
dc810e39 | 1222 | bfd_put_32 (output_bfd, val, |
252b5132 RH |
1223 | toc_section->contents + our_toc_offset); |
1224 | ||
1225 | MARK_AS_WRITTEN(h->toc_offset); | |
2ab1486e NC |
1226 | /* The tricky part is that this is the address that |
1227 | needs a .reloc entry for it. */ | |
b34976b6 | 1228 | fixit = TRUE; |
252b5132 RH |
1229 | } |
1230 | } | |
1231 | ||
43646c9d | 1232 | if (fixit && info->base_file) |
252b5132 RH |
1233 | { |
1234 | /* So if this is non pcrelative, and is referenced | |
2ab1486e | 1235 | to a section or a common symbol, then it needs a reloc. */ |
252b5132 | 1236 | |
2ab1486e | 1237 | /* Relocation to a symbol in a section which |
43646c9d | 1238 | isn't absolute - we output the address here |
2ab1486e | 1239 | to a file. */ |
dc810e39 AM |
1240 | bfd_vma addr = (toc_section->output_section->vma |
1241 | + toc_section->output_offset + our_toc_offset); | |
43646c9d | 1242 | |
b1657152 AM |
1243 | if (!write_base_file_entry (output_bfd, info, addr)) |
1244 | return FALSE; | |
252b5132 RH |
1245 | } |
1246 | ||
2ab1486e | 1247 | /* FIXME: this test is conservative. */ |
dc810e39 | 1248 | if ((r_flags & IMAGE_REL_PPC_TOCDEFN) != IMAGE_REL_PPC_TOCDEFN |
eea6121a | 1249 | && (bfd_vma) our_toc_offset > toc_section->size) |
252b5132 RH |
1250 | { |
1251 | (*_bfd_error_handler) | |
d003868e AM |
1252 | (_("%B: Relocation exceeds allocated TOC (%lx)"), |
1253 | input_bfd, (unsigned long) toc_section->size); | |
252b5132 | 1254 | bfd_set_error (bfd_error_bad_value); |
b34976b6 | 1255 | return FALSE; |
252b5132 RH |
1256 | } |
1257 | ||
2ab1486e | 1258 | /* Now we know the relocation for this toc reference. */ |
252b5132 | 1259 | relocation = our_toc_offset + TOC_LOAD_ADJUSTMENT; |
dc810e39 | 1260 | rstat = _bfd_relocate_contents (howto, input_bfd, relocation, loc); |
252b5132 RH |
1261 | } |
1262 | break; | |
1263 | case IMAGE_REL_PPC_IFGLUE: | |
1264 | { | |
2ab1486e NC |
1265 | /* To solve this, we need to know whether or not the symbol |
1266 | appearing on the call instruction is a glue function or not. | |
1267 | A glue function must announce itself via a IMGLUE reloc, and | |
1268 | the reloc contains the required toc restore instruction. */ | |
2ab1486e | 1269 | DUMP_RELOC2 (howto->name, rel); |
252b5132 RH |
1270 | |
1271 | if (h != 0) | |
1272 | { | |
43646c9d | 1273 | if (h->symbol_is_glue == 1) |
252b5132 | 1274 | { |
dc810e39 | 1275 | bfd_put_32 (input_bfd, (bfd_vma) h->glue_insn, loc); |
252b5132 RH |
1276 | } |
1277 | } | |
1278 | } | |
1279 | break; | |
1280 | case IMAGE_REL_PPC_SECREL: | |
2ab1486e | 1281 | /* Unimplemented: codeview debugging information. */ |
43646c9d KH |
1282 | /* For fast access to the header of the section |
1283 | containing the item. */ | |
252b5132 RH |
1284 | break; |
1285 | case IMAGE_REL_PPC_SECTION: | |
2ab1486e | 1286 | /* Unimplemented: codeview debugging information. */ |
252b5132 RH |
1287 | /* Is used to indicate that the value should be relative |
1288 | to the beginning of the section that contains the | |
2ab1486e | 1289 | symbol. */ |
252b5132 RH |
1290 | break; |
1291 | case IMAGE_REL_PPC_ABSOLUTE: | |
1292 | { | |
1293 | const char *my_name; | |
2ab1486e | 1294 | |
252b5132 | 1295 | if (h == 0) |
2ab1486e | 1296 | my_name = (syms+symndx)->_n._n_name; |
252b5132 | 1297 | else |
2ab1486e | 1298 | my_name = h->root.root.root.string; |
252b5132 | 1299 | |
d003868e AM |
1300 | (*_bfd_error_handler) |
1301 | (_("Warning: unsupported reloc %s <file %B, section %A>\n" | |
1302 | "sym %ld (%s), r_vaddr %ld (%lx)"), | |
1303 | input_bfd, input_section, howto->name, | |
1304 | rel->r_symndx, my_name, (long) rel->r_vaddr, | |
1305 | (unsigned long) rel->r_vaddr); | |
252b5132 RH |
1306 | } |
1307 | break; | |
1308 | case IMAGE_REL_PPC_IMGLUE: | |
1309 | { | |
1310 | /* There is nothing to do now. This reloc was noted in the first | |
2ab1486e | 1311 | pass over the relocs, and the glue instruction extracted. */ |
252b5132 | 1312 | const char *my_name; |
2ab1486e | 1313 | |
43646c9d | 1314 | if (h->symbol_is_glue == 1) |
252b5132 RH |
1315 | break; |
1316 | my_name = h->root.root.root.string; | |
1317 | ||
1318 | (*_bfd_error_handler) | |
d003868e | 1319 | (_("%B: Out of order IMGLUE reloc for %s"), input_bfd, my_name); |
252b5132 | 1320 | bfd_set_error (bfd_error_bad_value); |
b34976b6 | 1321 | return FALSE; |
252b5132 RH |
1322 | } |
1323 | ||
1324 | case IMAGE_REL_PPC_ADDR32NB: | |
1325 | { | |
252b5132 | 1326 | const char *name = 0; |
2ab1486e NC |
1327 | |
1328 | DUMP_RELOC2 (howto->name, rel); | |
252b5132 | 1329 | |
0112cd26 | 1330 | if (CONST_STRNEQ (input_section->name, ".idata$2") && first_thunk_address == 0) |
252b5132 | 1331 | { |
2ab1486e | 1332 | /* Set magic values. */ |
252b5132 | 1333 | int idata5offset; |
dc810e39 | 1334 | struct coff_link_hash_entry *myh; |
2ab1486e | 1335 | |
252b5132 RH |
1336 | myh = coff_link_hash_lookup (coff_hash_table (info), |
1337 | "__idata5_magic__", | |
b34976b6 | 1338 | FALSE, FALSE, TRUE); |
43646c9d KH |
1339 | first_thunk_address = myh->root.u.def.value + |
1340 | sec->output_section->vma + | |
1341 | sec->output_offset - | |
252b5132 | 1342 | pe_data(output_bfd)->pe_opthdr.ImageBase; |
43646c9d | 1343 | |
252b5132 RH |
1344 | idata5offset = myh->root.u.def.value; |
1345 | myh = coff_link_hash_lookup (coff_hash_table (info), | |
1346 | "__idata6_magic__", | |
b34976b6 | 1347 | FALSE, FALSE, TRUE); |
43646c9d | 1348 | |
252b5132 RH |
1349 | thunk_size = myh->root.u.def.value - idata5offset; |
1350 | myh = coff_link_hash_lookup (coff_hash_table (info), | |
1351 | "__idata4_magic__", | |
b34976b6 | 1352 | FALSE, FALSE, TRUE); |
252b5132 RH |
1353 | import_table_size = myh->root.u.def.value; |
1354 | } | |
1355 | ||
1356 | if (h == 0) | |
2ab1486e NC |
1357 | { |
1358 | /* It is a file local symbol. */ | |
252b5132 RH |
1359 | sym = syms + symndx; |
1360 | name = sym->_n._n_name; | |
1361 | } | |
1362 | else | |
1363 | { | |
1364 | char *target = 0; | |
1365 | ||
1366 | name = h->root.root.root.string; | |
2ab1486e | 1367 | if (strcmp (".idata$2", name) == 0) |
252b5132 | 1368 | target = "__idata2_magic__"; |
2ab1486e | 1369 | else if (strcmp (".idata$4", name) == 0) |
252b5132 | 1370 | target = "__idata4_magic__"; |
2ab1486e | 1371 | else if (strcmp (".idata$5", name) == 0) |
252b5132 RH |
1372 | target = "__idata5_magic__"; |
1373 | ||
1374 | if (target != 0) | |
1375 | { | |
dc810e39 | 1376 | struct coff_link_hash_entry *myh; |
252b5132 RH |
1377 | |
1378 | myh = coff_link_hash_lookup (coff_hash_table (info), | |
1379 | target, | |
b34976b6 | 1380 | FALSE, FALSE, TRUE); |
43646c9d | 1381 | if (myh == 0) |
252b5132 | 1382 | { |
43646c9d | 1383 | /* Missing magic cookies. Something is very wrong. */ |
c5930ee6 | 1384 | abort (); |
252b5132 | 1385 | } |
43646c9d KH |
1386 | |
1387 | val = myh->root.u.def.value + | |
252b5132 RH |
1388 | sec->output_section->vma + sec->output_offset; |
1389 | if (first_thunk_address == 0) | |
1390 | { | |
1391 | int idata5offset; | |
1392 | myh = coff_link_hash_lookup (coff_hash_table (info), | |
1393 | "__idata5_magic__", | |
b34976b6 | 1394 | FALSE, FALSE, TRUE); |
43646c9d KH |
1395 | first_thunk_address = myh->root.u.def.value + |
1396 | sec->output_section->vma + | |
1397 | sec->output_offset - | |
252b5132 | 1398 | pe_data(output_bfd)->pe_opthdr.ImageBase; |
43646c9d | 1399 | |
252b5132 RH |
1400 | idata5offset = myh->root.u.def.value; |
1401 | myh = coff_link_hash_lookup (coff_hash_table (info), | |
1402 | "__idata6_magic__", | |
b34976b6 | 1403 | FALSE, FALSE, TRUE); |
43646c9d | 1404 | |
252b5132 RH |
1405 | thunk_size = myh->root.u.def.value - idata5offset; |
1406 | myh = coff_link_hash_lookup (coff_hash_table (info), | |
1407 | "__idata4_magic__", | |
b34976b6 | 1408 | FALSE, FALSE, TRUE); |
252b5132 RH |
1409 | import_table_size = myh->root.u.def.value; |
1410 | } | |
1411 | } | |
1412 | } | |
1413 | ||
1414 | rstat = _bfd_relocate_contents (howto, | |
2ab1486e NC |
1415 | input_bfd, |
1416 | val - | |
1417 | pe_data (output_bfd)->pe_opthdr.ImageBase, | |
1418 | loc); | |
252b5132 RH |
1419 | } |
1420 | break; | |
1421 | ||
1422 | case IMAGE_REL_PPC_REL24: | |
1423 | DUMP_RELOC2(howto->name, rel); | |
1424 | val -= (input_section->output_section->vma | |
1425 | + input_section->output_offset); | |
1426 | ||
1427 | rstat = _bfd_relocate_contents (howto, | |
43646c9d KH |
1428 | input_bfd, |
1429 | val, | |
252b5132 RH |
1430 | loc); |
1431 | break; | |
1432 | case IMAGE_REL_PPC_ADDR16: | |
1433 | case IMAGE_REL_PPC_ADDR24: | |
1434 | case IMAGE_REL_PPC_ADDR32: | |
1435 | DUMP_RELOC2(howto->name, rel); | |
1436 | rstat = _bfd_relocate_contents (howto, | |
43646c9d KH |
1437 | input_bfd, |
1438 | val, | |
252b5132 RH |
1439 | loc); |
1440 | break; | |
1441 | } | |
1442 | ||
2ab1486e | 1443 | if (info->base_file) |
252b5132 RH |
1444 | { |
1445 | /* So if this is non pcrelative, and is referenced | |
2ab1486e NC |
1446 | to a section or a common symbol, then it needs a reloc. */ |
1447 | if (sym && pe_data(output_bfd)->in_reloc_p (output_bfd, howto)) | |
252b5132 | 1448 | { |
2ab1486e | 1449 | /* Relocation to a symbol in a section which |
43646c9d | 1450 | isn't absolute - we output the address here |
2ab1486e | 1451 | to a file. */ |
b1657152 AM |
1452 | bfd_vma addr = (rel->r_vaddr |
1453 | - input_section->vma | |
1454 | + input_section->output_offset | |
1455 | + input_section->output_section->vma); | |
252b5132 | 1456 | |
b1657152 AM |
1457 | if (!write_base_file_entry (output_bfd, info, addr)) |
1458 | return FALSE; | |
252b5132 RH |
1459 | } |
1460 | } | |
1461 | ||
1462 | switch (rstat) | |
1463 | { | |
1464 | default: | |
1465 | abort (); | |
1466 | case bfd_reloc_ok: | |
1467 | break; | |
1468 | case bfd_reloc_overflow: | |
1469 | { | |
1470 | const char *name; | |
1471 | char buf[SYMNMLEN + 1]; | |
1472 | ||
1473 | if (symndx == -1) | |
1474 | name = "*ABS*"; | |
1475 | else if (h != NULL) | |
dfeffb9f | 1476 | name = NULL; |
252b5132 RH |
1477 | else if (sym == NULL) |
1478 | name = "*unknown*"; | |
1479 | else if (sym->_n._n_n._n_zeroes == 0 | |
1480 | && sym->_n._n_n._n_offset != 0) | |
1481 | name = obj_coff_strings (input_bfd) + sym->_n._n_n._n_offset; | |
1482 | else | |
1483 | { | |
1484 | strncpy (buf, sym->_n._n_name, SYMNMLEN); | |
1485 | buf[SYMNMLEN] = '\0'; | |
1486 | name = buf; | |
1487 | } | |
1488 | ||
1489 | if (! ((*info->callbacks->reloc_overflow) | |
dfeffb9f | 1490 | (info, (h ? &h->root.root : NULL), name, howto->name, |
252b5132 RH |
1491 | (bfd_vma) 0, input_bfd, |
1492 | input_section, rel->r_vaddr - input_section->vma))) | |
2ab1486e | 1493 | return FALSE; |
252b5132 RH |
1494 | } |
1495 | } | |
43646c9d | 1496 | } |
252b5132 | 1497 | |
b34976b6 | 1498 | return TRUE; |
252b5132 RH |
1499 | } |
1500 | ||
1501 | #ifdef COFF_IMAGE_WITH_PE | |
1502 | ||
1503 | /* FIXME: BFD should not use global variables. This file is compiled | |
1504 | twice, and these variables are shared. This is confusing and | |
1505 | weird. */ | |
1506 | ||
1507 | long int global_toc_size = 4; | |
1508 | ||
1509 | bfd* bfd_of_toc_owner = 0; | |
1510 | ||
1511 | long int import_table_size; | |
1512 | long int first_thunk_address; | |
1513 | long int thunk_size; | |
1514 | ||
1515 | struct list_ele *head; | |
1516 | struct list_ele *tail; | |
1517 | ||
1518 | static char * | |
1519 | h1 = N_("\n\t\t\tTOC MAPPING\n\n"); | |
1520 | static char * | |
1521 | h2 = N_(" TOC disassembly Comments Name\n"); | |
1522 | static char * | |
1523 | h3 = N_(" Offset spelling (if present)\n"); | |
1524 | ||
1525 | void | |
1526 | dump_toc (vfile) | |
1527 | PTR vfile; | |
1528 | { | |
1529 | FILE *file = (FILE *) vfile; | |
1530 | struct list_ele *t; | |
1531 | ||
b70b5c14 NC |
1532 | fputs (_(h1), file); |
1533 | fputs (_(h2), file); | |
1534 | fputs (_(h3), file); | |
252b5132 | 1535 | |
6e301b2b | 1536 | for (t = head; t != 0; t=t->next) |
252b5132 RH |
1537 | { |
1538 | const char *cat = ""; | |
1539 | ||
1540 | if (t->cat == priv) | |
1541 | cat = _("private "); | |
1542 | else if (t->cat == pub) | |
1543 | cat = _("public "); | |
dc810e39 | 1544 | else if (t->cat == tocdata) |
252b5132 RH |
1545 | cat = _("data-in-toc "); |
1546 | ||
1547 | if (t->offset > global_toc_size) | |
1548 | { | |
1549 | if (t->offset <= global_toc_size + thunk_size) | |
1550 | cat = _("IAT reference "); | |
1551 | else | |
1552 | { | |
6e301b2b | 1553 | fprintf (file, |
252b5132 | 1554 | _("**** global_toc_size %ld(%lx), thunk_size %ld(%lx)\n"), |
0af1713e AM |
1555 | global_toc_size, (unsigned long) global_toc_size, |
1556 | thunk_size, (unsigned long) thunk_size); | |
252b5132 RH |
1557 | cat = _("Out of bounds!"); |
1558 | } | |
1559 | } | |
1560 | ||
6e301b2b | 1561 | fprintf (file, |
252b5132 | 1562 | " %04lx (%d)", (unsigned long) t->offset, t->offset - 32768); |
6e301b2b | 1563 | fprintf (file, |
252b5132 RH |
1564 | " %s %s\n", |
1565 | cat, t->name); | |
1566 | ||
1567 | } | |
1568 | ||
6e301b2b | 1569 | fprintf (file, "\n"); |
252b5132 RH |
1570 | } |
1571 | ||
b34976b6 | 1572 | bfd_boolean |
43646c9d | 1573 | ppc_allocate_toc_section (info) |
5f771d47 | 1574 | struct bfd_link_info *info ATTRIBUTE_UNUSED; |
252b5132 RH |
1575 | { |
1576 | asection *s; | |
1577 | bfd_byte *foo; | |
dc810e39 | 1578 | bfd_size_type amt; |
252b5132 RH |
1579 | static char test_char = '1'; |
1580 | ||
2ab1486e | 1581 | if ( global_toc_size == 0 ) /* FIXME: does this get me in trouble? */ |
b34976b6 | 1582 | return TRUE; |
252b5132 RH |
1583 | |
1584 | if (bfd_of_toc_owner == 0) | |
2ab1486e NC |
1585 | /* No toc owner? Something is very wrong. */ |
1586 | abort (); | |
252b5132 RH |
1587 | |
1588 | s = bfd_get_section_by_name ( bfd_of_toc_owner , TOC_SECTION_NAME); | |
43646c9d | 1589 | if (s == NULL) |
2ab1486e NC |
1590 | /* No toc section? Something is very wrong. */ |
1591 | abort (); | |
252b5132 | 1592 | |
dc810e39 AM |
1593 | amt = global_toc_size; |
1594 | foo = (bfd_byte *) bfd_alloc (bfd_of_toc_owner, amt); | |
1595 | memset(foo, test_char, (size_t) global_toc_size); | |
252b5132 | 1596 | |
eea6121a | 1597 | s->size = global_toc_size; |
252b5132 RH |
1598 | s->contents = foo; |
1599 | ||
b34976b6 | 1600 | return TRUE; |
252b5132 RH |
1601 | } |
1602 | ||
b34976b6 | 1603 | bfd_boolean |
252b5132 RH |
1604 | ppc_process_before_allocation (abfd, info) |
1605 | bfd *abfd; | |
1606 | struct bfd_link_info *info; | |
1607 | { | |
1608 | asection *sec; | |
1609 | struct internal_reloc *i, *rel; | |
1610 | ||
2ab1486e | 1611 | /* Here we have a bfd that is to be included on the link. We have a hook |
43646c9d | 1612 | to do reloc rummaging, before section sizes are nailed down. */ |
2ab1486e | 1613 | _bfd_coff_get_external_symbols (abfd); |
252b5132 | 1614 | |
2ab1486e | 1615 | /* Rummage around all the relocs and map the toc. */ |
252b5132 RH |
1616 | sec = abfd->sections; |
1617 | ||
1618 | if (sec == 0) | |
2ab1486e | 1619 | return TRUE; |
252b5132 RH |
1620 | |
1621 | for (; sec != 0; sec = sec->next) | |
2ab1486e NC |
1622 | { |
1623 | if (sec->reloc_count == 0) | |
1624 | continue; | |
252b5132 | 1625 | |
2ab1486e NC |
1626 | /* load the relocs */ |
1627 | /* FIXME: there may be a storage leak here */ | |
1628 | i=_bfd_coff_read_internal_relocs(abfd,sec,1,0,0,0); | |
43646c9d | 1629 | |
2ab1486e NC |
1630 | if (i == 0) |
1631 | abort (); | |
252b5132 | 1632 | |
2ab1486e NC |
1633 | for (rel = i; rel < i + sec->reloc_count; ++rel) |
1634 | { | |
1635 | unsigned short r_type = EXTRACT_TYPE (rel->r_type); | |
1636 | unsigned short r_flags = EXTRACT_FLAGS (rel->r_type); | |
1637 | bfd_boolean ok = TRUE; | |
252b5132 | 1638 | |
2ab1486e | 1639 | DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, rel); |
252b5132 | 1640 | |
2ab1486e NC |
1641 | switch(r_type) |
1642 | { | |
1643 | case IMAGE_REL_PPC_TOCREL16: | |
1644 | /* If TOCDEFN is on, ignore as someone else has allocated the | |
1645 | toc entry. */ | |
1646 | if ((r_flags & IMAGE_REL_PPC_TOCDEFN) != IMAGE_REL_PPC_TOCDEFN) | |
1647 | ok = ppc_record_toc_entry(abfd, info, sec, | |
1648 | rel->r_symndx, default_toc); | |
1649 | if (!ok) | |
1650 | return FALSE; | |
1651 | break; | |
1652 | case IMAGE_REL_PPC_IMGLUE: | |
1653 | ppc_mark_symbol_as_glue (abfd, rel->r_symndx, rel); | |
1654 | break; | |
1655 | default: | |
1656 | break; | |
1657 | } | |
1658 | } | |
1659 | } | |
252b5132 | 1660 | |
b34976b6 | 1661 | return TRUE; |
252b5132 RH |
1662 | } |
1663 | ||
1664 | #endif | |
1665 | ||
252b5132 | 1666 | static bfd_reloc_status_type |
2ab1486e NC |
1667 | ppc_refhi_reloc (abfd, reloc_entry, symbol, data, |
1668 | input_section, output_bfd, error_message) | |
5f771d47 ILT |
1669 | bfd *abfd ATTRIBUTE_UNUSED; |
1670 | arelent *reloc_entry ATTRIBUTE_UNUSED; | |
1671 | asymbol *symbol ATTRIBUTE_UNUSED; | |
1672 | PTR data ATTRIBUTE_UNUSED; | |
1673 | asection *input_section ATTRIBUTE_UNUSED; | |
252b5132 | 1674 | bfd *output_bfd; |
5f771d47 | 1675 | char **error_message ATTRIBUTE_UNUSED; |
252b5132 RH |
1676 | { |
1677 | UN_IMPL("REFHI"); | |
1678 | DUMP_RELOC("REFHI",reloc_entry); | |
1679 | ||
1680 | if (output_bfd == (bfd *) NULL) | |
1681 | return bfd_reloc_continue; | |
1682 | ||
1683 | return bfd_reloc_undefined; | |
1684 | } | |
1685 | ||
252b5132 | 1686 | static bfd_reloc_status_type |
2ab1486e NC |
1687 | ppc_pair_reloc (abfd, reloc_entry, symbol, data, |
1688 | input_section, output_bfd, error_message) | |
5f771d47 ILT |
1689 | bfd *abfd ATTRIBUTE_UNUSED; |
1690 | arelent *reloc_entry ATTRIBUTE_UNUSED; | |
1691 | asymbol *symbol ATTRIBUTE_UNUSED; | |
1692 | PTR data ATTRIBUTE_UNUSED; | |
1693 | asection *input_section ATTRIBUTE_UNUSED; | |
252b5132 | 1694 | bfd *output_bfd; |
5f771d47 | 1695 | char **error_message ATTRIBUTE_UNUSED; |
252b5132 RH |
1696 | { |
1697 | UN_IMPL("PAIR"); | |
1698 | DUMP_RELOC("PAIR",reloc_entry); | |
1699 | ||
1700 | if (output_bfd == (bfd *) NULL) | |
1701 | return bfd_reloc_continue; | |
1702 | ||
1703 | return bfd_reloc_undefined; | |
1704 | } | |
252b5132 RH |
1705 | \f |
1706 | static bfd_reloc_status_type | |
2ab1486e NC |
1707 | ppc_toc16_reloc (abfd, reloc_entry, symbol, data, |
1708 | input_section, output_bfd, error_message) | |
5f771d47 ILT |
1709 | bfd *abfd ATTRIBUTE_UNUSED; |
1710 | arelent *reloc_entry ATTRIBUTE_UNUSED; | |
1711 | asymbol *symbol ATTRIBUTE_UNUSED; | |
1712 | PTR data ATTRIBUTE_UNUSED; | |
1713 | asection *input_section ATTRIBUTE_UNUSED; | |
252b5132 | 1714 | bfd *output_bfd; |
5f771d47 | 1715 | char **error_message ATTRIBUTE_UNUSED; |
252b5132 | 1716 | { |
2ab1486e NC |
1717 | UN_IMPL ("TOCREL16"); |
1718 | DUMP_RELOC ("TOCREL16",reloc_entry); | |
252b5132 RH |
1719 | |
1720 | if (output_bfd == (bfd *) NULL) | |
2ab1486e | 1721 | return bfd_reloc_continue; |
252b5132 RH |
1722 | |
1723 | return bfd_reloc_ok; | |
1724 | } | |
1725 | ||
252b5132 | 1726 | static bfd_reloc_status_type |
2ab1486e NC |
1727 | ppc_secrel_reloc (abfd, reloc_entry, symbol, data, |
1728 | input_section, output_bfd, error_message) | |
5f771d47 ILT |
1729 | bfd *abfd ATTRIBUTE_UNUSED; |
1730 | arelent *reloc_entry ATTRIBUTE_UNUSED; | |
1731 | asymbol *symbol ATTRIBUTE_UNUSED; | |
1732 | PTR data ATTRIBUTE_UNUSED; | |
1733 | asection *input_section ATTRIBUTE_UNUSED; | |
252b5132 | 1734 | bfd *output_bfd; |
5f771d47 | 1735 | char **error_message ATTRIBUTE_UNUSED; |
252b5132 RH |
1736 | { |
1737 | UN_IMPL("SECREL"); | |
1738 | DUMP_RELOC("SECREL",reloc_entry); | |
1739 | ||
1740 | if (output_bfd == (bfd *) NULL) | |
1741 | return bfd_reloc_continue; | |
1742 | ||
1743 | return bfd_reloc_ok; | |
1744 | } | |
1745 | ||
1746 | static bfd_reloc_status_type | |
2ab1486e NC |
1747 | ppc_section_reloc (abfd, reloc_entry, symbol, data, |
1748 | input_section, output_bfd, error_message) | |
5f771d47 ILT |
1749 | bfd *abfd ATTRIBUTE_UNUSED; |
1750 | arelent *reloc_entry ATTRIBUTE_UNUSED; | |
1751 | asymbol *symbol ATTRIBUTE_UNUSED; | |
1752 | PTR data ATTRIBUTE_UNUSED; | |
1753 | asection *input_section ATTRIBUTE_UNUSED; | |
252b5132 | 1754 | bfd *output_bfd; |
5f771d47 | 1755 | char **error_message ATTRIBUTE_UNUSED; |
252b5132 RH |
1756 | { |
1757 | UN_IMPL("SECTION"); | |
1758 | DUMP_RELOC("SECTION",reloc_entry); | |
1759 | ||
1760 | if (output_bfd == (bfd *) NULL) | |
1761 | return bfd_reloc_continue; | |
1762 | ||
1763 | return bfd_reloc_ok; | |
1764 | } | |
1765 | ||
1766 | static bfd_reloc_status_type | |
2ab1486e NC |
1767 | ppc_imglue_reloc (abfd, reloc_entry, symbol, data, |
1768 | input_section, output_bfd, error_message) | |
5f771d47 ILT |
1769 | bfd *abfd ATTRIBUTE_UNUSED; |
1770 | arelent *reloc_entry ATTRIBUTE_UNUSED; | |
1771 | asymbol *symbol ATTRIBUTE_UNUSED; | |
1772 | PTR data ATTRIBUTE_UNUSED; | |
1773 | asection *input_section ATTRIBUTE_UNUSED; | |
252b5132 | 1774 | bfd *output_bfd; |
5f771d47 | 1775 | char **error_message ATTRIBUTE_UNUSED; |
252b5132 RH |
1776 | { |
1777 | UN_IMPL("IMGLUE"); | |
1778 | DUMP_RELOC("IMGLUE",reloc_entry); | |
1779 | ||
1780 | if (output_bfd == (bfd *) NULL) | |
1781 | return bfd_reloc_continue; | |
1782 | ||
1783 | return bfd_reloc_ok; | |
1784 | } | |
252b5132 | 1785 | \f |
252b5132 | 1786 | #define MAX_RELOC_INDEX \ |
c5930ee6 | 1787 | (sizeof (ppc_coff_howto_table) / sizeof (ppc_coff_howto_table[0]) - 1) |
252b5132 | 1788 | |
5c4491d3 | 1789 | /* FIXME: There is a possibility that when we read in a reloc from a file, |
43646c9d | 1790 | that there are some bits encoded in the upper portion of the |
2ab1486e NC |
1791 | type field. Not yet implemented. */ |
1792 | static void ppc_coff_rtype2howto PARAMS ((arelent *, struct internal_reloc *)); | |
252b5132 RH |
1793 | |
1794 | static void | |
1795 | ppc_coff_rtype2howto (relent, internal) | |
1796 | arelent *relent; | |
1797 | struct internal_reloc *internal; | |
43646c9d | 1798 | { |
252b5132 RH |
1799 | /* We can encode one of three things in the type field, aside from the |
1800 | type: | |
1801 | 1. IMAGE_REL_PPC_NEG - indicates the value field is a subtraction | |
1802 | value, rather than an addition value | |
1803 | 2. IMAGE_REL_PPC_BRTAKEN, IMAGE_REL_PPC_BRNTAKEN - indicates that | |
1804 | the branch is expected to be taken or not. | |
1805 | 3. IMAGE_REL_PPC_TOCDEFN - toc slot definition in the file | |
1806 | For now, we just strip this stuff to find the type, and ignore it other | |
2ab1486e | 1807 | than that. */ |
252b5132 RH |
1808 | reloc_howto_type *howto; |
1809 | unsigned short r_type = EXTRACT_TYPE (internal->r_type); | |
1810 | unsigned short r_flags = EXTRACT_FLAGS(internal->r_type); | |
1811 | unsigned short junk = EXTRACT_JUNK (internal->r_type); | |
1812 | ||
2ab1486e | 1813 | /* The masking process only slices off the bottom byte for r_type. */ |
43646c9d | 1814 | if ( r_type > MAX_RELOC_INDEX ) |
c5930ee6 | 1815 | abort (); |
252b5132 | 1816 | |
2ab1486e NC |
1817 | /* Check for absolute crap. */ |
1818 | if (junk != 0) | |
c5930ee6 | 1819 | abort (); |
252b5132 | 1820 | |
43646c9d | 1821 | switch(r_type) |
252b5132 RH |
1822 | { |
1823 | case IMAGE_REL_PPC_ADDR16: | |
1824 | case IMAGE_REL_PPC_REL24: | |
1825 | case IMAGE_REL_PPC_ADDR24: | |
1826 | case IMAGE_REL_PPC_ADDR32: | |
1827 | case IMAGE_REL_PPC_IFGLUE: | |
1828 | case IMAGE_REL_PPC_ADDR32NB: | |
1829 | case IMAGE_REL_PPC_SECTION: | |
1830 | case IMAGE_REL_PPC_SECREL: | |
2ab1486e | 1831 | DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, internal); |
252b5132 RH |
1832 | howto = ppc_coff_howto_table + r_type; |
1833 | break; | |
1834 | case IMAGE_REL_PPC_IMGLUE: | |
2ab1486e | 1835 | DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, internal); |
252b5132 RH |
1836 | howto = ppc_coff_howto_table + r_type; |
1837 | break; | |
1838 | case IMAGE_REL_PPC_TOCREL16: | |
2ab1486e | 1839 | DUMP_RELOC2 (ppc_coff_howto_table[r_type].name, internal); |
252b5132 RH |
1840 | if (r_flags & IMAGE_REL_PPC_TOCDEFN) |
1841 | howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16_DEFN; | |
1842 | else | |
1843 | howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16; | |
1844 | break; | |
1845 | default: | |
6e301b2b | 1846 | fprintf (stderr, |
252b5132 RH |
1847 | _("Warning: Unsupported reloc %s [%d] used -- it may not work.\n"), |
1848 | ppc_coff_howto_table[r_type].name, | |
1849 | r_type); | |
43646c9d | 1850 | howto = ppc_coff_howto_table + r_type; |
252b5132 RH |
1851 | break; |
1852 | } | |
43646c9d | 1853 | |
252b5132 | 1854 | relent->howto = howto; |
252b5132 RH |
1855 | } |
1856 | ||
1857 | static reloc_howto_type * | |
1858 | coff_ppc_rtype_to_howto (abfd, sec, rel, h, sym, addendp) | |
5f771d47 | 1859 | bfd *abfd ATTRIBUTE_UNUSED; |
252b5132 RH |
1860 | asection *sec; |
1861 | struct internal_reloc *rel; | |
5f771d47 ILT |
1862 | struct coff_link_hash_entry *h ATTRIBUTE_UNUSED; |
1863 | struct internal_syment *sym ATTRIBUTE_UNUSED; | |
252b5132 RH |
1864 | bfd_vma *addendp; |
1865 | { | |
1866 | reloc_howto_type *howto; | |
1867 | ||
1868 | /* We can encode one of three things in the type field, aside from the | |
1869 | type: | |
1870 | 1. IMAGE_REL_PPC_NEG - indicates the value field is a subtraction | |
1871 | value, rather than an addition value | |
1872 | 2. IMAGE_REL_PPC_BRTAKEN, IMAGE_REL_PPC_BRNTAKEN - indicates that | |
1873 | the branch is expected to be taken or not. | |
1874 | 3. IMAGE_REL_PPC_TOCDEFN - toc slot definition in the file | |
1875 | For now, we just strip this stuff to find the type, and ignore it other | |
2ab1486e | 1876 | than that. */ |
252b5132 | 1877 | |
2ab1486e NC |
1878 | unsigned short r_type = EXTRACT_TYPE (rel->r_type); |
1879 | unsigned short r_flags = EXTRACT_FLAGS (rel->r_type); | |
1880 | unsigned short junk = EXTRACT_JUNK (rel->r_type); | |
252b5132 | 1881 | |
2ab1486e NC |
1882 | /* The masking process only slices off the bottom byte for r_type. */ |
1883 | if (r_type > MAX_RELOC_INDEX) | |
c5930ee6 | 1884 | abort (); |
43646c9d | 1885 | |
2ab1486e NC |
1886 | /* Check for absolute crap. */ |
1887 | if (junk != 0) | |
c5930ee6 | 1888 | abort (); |
43646c9d KH |
1889 | |
1890 | switch(r_type) | |
252b5132 RH |
1891 | { |
1892 | case IMAGE_REL_PPC_ADDR32NB: | |
1893 | DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel); | |
1894 | *addendp -= pe_data(sec->output_section->owner)->pe_opthdr.ImageBase; | |
1895 | howto = ppc_coff_howto_table + r_type; | |
1896 | break; | |
1897 | case IMAGE_REL_PPC_TOCREL16: | |
1898 | DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel); | |
1899 | if (r_flags & IMAGE_REL_PPC_TOCDEFN) | |
1900 | howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16_DEFN; | |
1901 | else | |
1902 | howto = ppc_coff_howto_table + IMAGE_REL_PPC_TOCREL16; | |
1903 | break; | |
1904 | case IMAGE_REL_PPC_ADDR16: | |
1905 | case IMAGE_REL_PPC_REL24: | |
1906 | case IMAGE_REL_PPC_ADDR24: | |
1907 | case IMAGE_REL_PPC_ADDR32: | |
1908 | case IMAGE_REL_PPC_IFGLUE: | |
1909 | case IMAGE_REL_PPC_SECTION: | |
1910 | case IMAGE_REL_PPC_SECREL: | |
1911 | DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel); | |
1912 | howto = ppc_coff_howto_table + r_type; | |
1913 | break; | |
1914 | case IMAGE_REL_PPC_IMGLUE: | |
1915 | DUMP_RELOC2(ppc_coff_howto_table[r_type].name, rel); | |
1916 | howto = ppc_coff_howto_table + r_type; | |
1917 | break; | |
1918 | default: | |
6e301b2b | 1919 | fprintf (stderr, |
252b5132 RH |
1920 | _("Warning: Unsupported reloc %s [%d] used -- it may not work.\n"), |
1921 | ppc_coff_howto_table[r_type].name, | |
1922 | r_type); | |
1923 | howto = ppc_coff_howto_table + r_type; | |
1924 | break; | |
1925 | } | |
43646c9d | 1926 | |
252b5132 RH |
1927 | return howto; |
1928 | } | |
1929 | ||
2ab1486e | 1930 | /* A cheesy little macro to make the code a little more readable. */ |
252b5132 RH |
1931 | #define HOW2MAP(bfd_rtype,ppc_rtype) \ |
1932 | case bfd_rtype: return &ppc_coff_howto_table[ppc_rtype] | |
1933 | ||
1934 | static reloc_howto_type *ppc_coff_reloc_type_lookup | |
1935 | PARAMS ((bfd *, bfd_reloc_code_real_type)); | |
1936 | ||
1937 | static reloc_howto_type * | |
1938 | ppc_coff_reloc_type_lookup (abfd, code) | |
5f771d47 | 1939 | bfd *abfd ATTRIBUTE_UNUSED; |
252b5132 RH |
1940 | bfd_reloc_code_real_type code; |
1941 | { | |
1942 | switch (code) | |
1943 | { | |
1944 | HOW2MAP(BFD_RELOC_32_GOTOFF, IMAGE_REL_PPC_IMGLUE); | |
1945 | HOW2MAP(BFD_RELOC_16_GOT_PCREL, IMAGE_REL_PPC_IFGLUE); | |
1946 | HOW2MAP(BFD_RELOC_16, IMAGE_REL_PPC_ADDR16); | |
1947 | HOW2MAP(BFD_RELOC_PPC_B26, IMAGE_REL_PPC_REL24); | |
1948 | HOW2MAP(BFD_RELOC_PPC_BA26, IMAGE_REL_PPC_ADDR24); | |
1949 | HOW2MAP(BFD_RELOC_PPC_TOC16, IMAGE_REL_PPC_TOCREL16); | |
1950 | HOW2MAP(BFD_RELOC_16_GOTOFF, IMAGE_REL_PPC_TOCREL16_DEFN); | |
1951 | HOW2MAP(BFD_RELOC_32, IMAGE_REL_PPC_ADDR32); | |
1952 | HOW2MAP(BFD_RELOC_RVA, IMAGE_REL_PPC_ADDR32NB); | |
43646c9d | 1953 | default: |
252b5132 RH |
1954 | return NULL; |
1955 | } | |
252b5132 | 1956 | } |
252b5132 | 1957 | #undef HOW2MAP |
157090f7 AM |
1958 | |
1959 | static reloc_howto_type * | |
1960 | ppc_coff_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED, | |
1961 | const char *r_name) | |
1962 | { | |
1963 | unsigned int i; | |
1964 | ||
1965 | for (i = 0; | |
1966 | i < sizeof (ppc_coff_howto_table) / sizeof (ppc_coff_howto_table[0]); | |
1967 | i++) | |
1968 | if (ppc_coff_howto_table[i].name != NULL | |
1969 | && strcasecmp (ppc_coff_howto_table[i].name, r_name) == 0) | |
1970 | return &ppc_coff_howto_table[i]; | |
1971 | ||
1972 | return NULL; | |
1973 | } | |
252b5132 | 1974 | \f |
43646c9d | 1975 | /* Tailor coffcode.h -- macro heaven. */ |
252b5132 RH |
1976 | |
1977 | #define RTYPE2HOWTO(cache_ptr, dst) ppc_coff_rtype2howto (cache_ptr, dst) | |
1978 | ||
252b5132 RH |
1979 | /* We use the special COFF backend linker, with our own special touch. */ |
1980 | ||
1981 | #define coff_bfd_reloc_type_lookup ppc_coff_reloc_type_lookup | |
157090f7 | 1982 | #define coff_bfd_reloc_name_lookup ppc_coff_reloc_name_lookup |
252b5132 RH |
1983 | #define coff_rtype_to_howto coff_ppc_rtype_to_howto |
1984 | #define coff_relocate_section coff_ppc_relocate_section | |
43646c9d | 1985 | #define coff_bfd_final_link ppc_bfd_coff_final_link |
252b5132 RH |
1986 | |
1987 | #ifndef COFF_IMAGE_WITH_PE | |
1e738b87 | 1988 | #endif |
252b5132 RH |
1989 | |
1990 | #define SELECT_RELOC(internal, howto) {internal.r_type=howto->type;} | |
1991 | ||
1992 | #define COFF_PAGE_SIZE 0x1000 | |
1993 | ||
650f5dd8 ILT |
1994 | /* FIXME: This controls some code that used to be in peicode.h and is |
1995 | now in peigen.c. It will not control the code in peigen.c. If | |
1996 | anybody wants to get this working, you will need to fix that. */ | |
252b5132 RH |
1997 | #define POWERPC_LE_PE |
1998 | ||
a50f8417 ILT |
1999 | #define COFF_SECTION_ALIGNMENT_ENTRIES \ |
2000 | { COFF_SECTION_NAME_EXACT_MATCH (".idata$2"), \ | |
2001 | COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }, \ | |
2002 | { COFF_SECTION_NAME_EXACT_MATCH (".idata$3"), \ | |
2003 | COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 0 }, \ | |
2004 | { COFF_SECTION_NAME_EXACT_MATCH (".idata$4"), \ | |
2005 | COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \ | |
2006 | { COFF_SECTION_NAME_EXACT_MATCH (".idata$5"), \ | |
2007 | COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 2 }, \ | |
2008 | { COFF_SECTION_NAME_EXACT_MATCH (".idata$6"), \ | |
2009 | COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 1 }, \ | |
2010 | { COFF_SECTION_NAME_EXACT_MATCH (".reloc"), \ | |
2011 | COFF_ALIGNMENT_FIELD_EMPTY, COFF_ALIGNMENT_FIELD_EMPTY, 1 } | |
2012 | ||
252b5132 | 2013 | #include "coffcode.h" |
252b5132 | 2014 | \f |
252b5132 RH |
2015 | #ifndef COFF_IMAGE_WITH_PE |
2016 | ||
b34976b6 | 2017 | static bfd_boolean ppc_do_last PARAMS ((bfd *)); |
252b5132 RH |
2018 | static bfd *ppc_get_last PARAMS ((void)); |
2019 | ||
b34976b6 | 2020 | static bfd_boolean |
252b5132 RH |
2021 | ppc_do_last (abfd) |
2022 | bfd *abfd; | |
2023 | { | |
2024 | if (abfd == bfd_of_toc_owner) | |
b34976b6 | 2025 | return TRUE; |
252b5132 | 2026 | else |
b34976b6 | 2027 | return FALSE; |
252b5132 RH |
2028 | } |
2029 | ||
2030 | static bfd * | |
2031 | ppc_get_last() | |
2032 | { | |
2033 | return bfd_of_toc_owner; | |
2034 | } | |
2035 | ||
2ab1486e | 2036 | /* This piece of machinery exists only to guarantee that the bfd that holds |
43646c9d | 2037 | the toc section is written last. |
252b5132 RH |
2038 | |
2039 | This does depend on bfd_make_section attaching a new section to the | |
43646c9d | 2040 | end of the section list for the bfd. |
252b5132 | 2041 | |
43646c9d KH |
2042 | This is otherwise intended to be functionally the same as |
2043 | cofflink.c:_bfd_coff_final_link(). It is specifically different only | |
2044 | where the POWERPC_LE_PE macro modifies the code. It is left in as a | |
2ab1486e | 2045 | precise form of comment. krk@cygnus.com */ |
252b5132 | 2046 | |
252b5132 RH |
2047 | /* Do the final link step. */ |
2048 | ||
b34976b6 | 2049 | bfd_boolean |
252b5132 RH |
2050 | ppc_bfd_coff_final_link (abfd, info) |
2051 | bfd *abfd; | |
2052 | struct bfd_link_info *info; | |
2053 | { | |
2054 | bfd_size_type symesz; | |
2055 | struct coff_final_link_info finfo; | |
b34976b6 | 2056 | bfd_boolean debug_merge_allocated; |
252b5132 RH |
2057 | asection *o; |
2058 | struct bfd_link_order *p; | |
dc810e39 AM |
2059 | bfd_size_type max_sym_count; |
2060 | bfd_size_type max_lineno_count; | |
2061 | bfd_size_type max_reloc_count; | |
2062 | bfd_size_type max_output_reloc_count; | |
2063 | bfd_size_type max_contents_size; | |
252b5132 RH |
2064 | file_ptr rel_filepos; |
2065 | unsigned int relsz; | |
2066 | file_ptr line_filepos; | |
2067 | unsigned int linesz; | |
2068 | bfd *sub; | |
2069 | bfd_byte *external_relocs = NULL; | |
2070 | char strbuf[STRING_SIZE_SIZE]; | |
dc810e39 | 2071 | bfd_size_type amt; |
252b5132 RH |
2072 | |
2073 | symesz = bfd_coff_symesz (abfd); | |
2074 | ||
2075 | finfo.info = info; | |
2076 | finfo.output_bfd = abfd; | |
2077 | finfo.strtab = NULL; | |
2078 | finfo.section_info = NULL; | |
2079 | finfo.last_file_index = -1; | |
2080 | finfo.last_bf_index = -1; | |
2081 | finfo.internal_syms = NULL; | |
2082 | finfo.sec_ptrs = NULL; | |
2083 | finfo.sym_indices = NULL; | |
2084 | finfo.outsyms = NULL; | |
2085 | finfo.linenos = NULL; | |
2086 | finfo.contents = NULL; | |
2087 | finfo.external_relocs = NULL; | |
2088 | finfo.internal_relocs = NULL; | |
b34976b6 | 2089 | debug_merge_allocated = FALSE; |
252b5132 RH |
2090 | |
2091 | coff_data (abfd)->link_info = info; | |
2092 | ||
2093 | finfo.strtab = _bfd_stringtab_init (); | |
2094 | if (finfo.strtab == NULL) | |
2095 | goto error_return; | |
2096 | ||
2097 | if (! coff_debug_merge_hash_table_init (&finfo.debug_merge)) | |
2098 | goto error_return; | |
b34976b6 | 2099 | debug_merge_allocated = TRUE; |
252b5132 RH |
2100 | |
2101 | /* Compute the file positions for all the sections. */ | |
2102 | if (! abfd->output_has_begun) | |
2103 | { | |
2104 | if (! bfd_coff_compute_section_file_positions (abfd)) | |
b34976b6 | 2105 | return FALSE; |
252b5132 RH |
2106 | } |
2107 | ||
2108 | /* Count the line numbers and relocation entries required for the | |
2109 | output file. Set the file positions for the relocs. */ | |
2110 | rel_filepos = obj_relocbase (abfd); | |
2111 | relsz = bfd_coff_relsz (abfd); | |
2112 | max_contents_size = 0; | |
2113 | max_lineno_count = 0; | |
2114 | max_reloc_count = 0; | |
2115 | ||
2116 | for (o = abfd->sections; o != NULL; o = o->next) | |
2117 | { | |
2118 | o->reloc_count = 0; | |
2119 | o->lineno_count = 0; | |
2ab1486e | 2120 | |
8423293d | 2121 | for (p = o->map_head.link_order; p != NULL; p = p->next) |
252b5132 | 2122 | { |
252b5132 RH |
2123 | if (p->type == bfd_indirect_link_order) |
2124 | { | |
2125 | asection *sec; | |
2126 | ||
2127 | sec = p->u.indirect.section; | |
2128 | ||
2129 | /* Mark all sections which are to be included in the | |
2130 | link. This will normally be every section. We need | |
2131 | to do this so that we can identify any sections which | |
2132 | the linker has decided to not include. */ | |
b34976b6 | 2133 | sec->linker_mark = TRUE; |
252b5132 RH |
2134 | |
2135 | if (info->strip == strip_none | |
2136 | || info->strip == strip_some) | |
2137 | o->lineno_count += sec->lineno_count; | |
2138 | ||
1049f94e | 2139 | if (info->relocatable) |
252b5132 RH |
2140 | o->reloc_count += sec->reloc_count; |
2141 | ||
3722b82f AM |
2142 | if (sec->rawsize > max_contents_size) |
2143 | max_contents_size = sec->rawsize; | |
eea6121a AM |
2144 | if (sec->size > max_contents_size) |
2145 | max_contents_size = sec->size; | |
252b5132 RH |
2146 | if (sec->lineno_count > max_lineno_count) |
2147 | max_lineno_count = sec->lineno_count; | |
2148 | if (sec->reloc_count > max_reloc_count) | |
2149 | max_reloc_count = sec->reloc_count; | |
2150 | } | |
1049f94e | 2151 | else if (info->relocatable |
252b5132 RH |
2152 | && (p->type == bfd_section_reloc_link_order |
2153 | || p->type == bfd_symbol_reloc_link_order)) | |
2154 | ++o->reloc_count; | |
2155 | } | |
2156 | if (o->reloc_count == 0) | |
2157 | o->rel_filepos = 0; | |
2158 | else | |
2159 | { | |
2160 | o->flags |= SEC_RELOC; | |
2161 | o->rel_filepos = rel_filepos; | |
2162 | rel_filepos += o->reloc_count * relsz; | |
2163 | } | |
2164 | } | |
2165 | ||
1049f94e | 2166 | /* If doing a relocatable link, allocate space for the pointers we |
252b5132 | 2167 | need to keep. */ |
1049f94e | 2168 | if (info->relocatable) |
252b5132 RH |
2169 | { |
2170 | unsigned int i; | |
2171 | ||
2172 | /* We use section_count + 1, rather than section_count, because | |
2173 | the target_index fields are 1 based. */ | |
dc810e39 AM |
2174 | amt = abfd->section_count + 1; |
2175 | amt *= sizeof (struct coff_link_section_info); | |
2176 | finfo.section_info = (struct coff_link_section_info *) bfd_malloc (amt); | |
2ab1486e | 2177 | |
252b5132 RH |
2178 | if (finfo.section_info == NULL) |
2179 | goto error_return; | |
2ab1486e | 2180 | |
252b5132 RH |
2181 | for (i = 0; i <= abfd->section_count; i++) |
2182 | { | |
2183 | finfo.section_info[i].relocs = NULL; | |
2184 | finfo.section_info[i].rel_hashes = NULL; | |
2185 | } | |
2186 | } | |
2187 | ||
2188 | /* We now know the size of the relocs, so we can determine the file | |
2189 | positions of the line numbers. */ | |
2190 | line_filepos = rel_filepos; | |
2191 | linesz = bfd_coff_linesz (abfd); | |
2192 | max_output_reloc_count = 0; | |
2ab1486e | 2193 | |
252b5132 RH |
2194 | for (o = abfd->sections; o != NULL; o = o->next) |
2195 | { | |
2196 | if (o->lineno_count == 0) | |
2197 | o->line_filepos = 0; | |
2198 | else | |
2199 | { | |
2200 | o->line_filepos = line_filepos; | |
2201 | line_filepos += o->lineno_count * linesz; | |
2202 | } | |
2203 | ||
2204 | if (o->reloc_count != 0) | |
2205 | { | |
2206 | /* We don't know the indices of global symbols until we have | |
2207 | written out all the local symbols. For each section in | |
2208 | the output file, we keep an array of pointers to hash | |
2209 | table entries. Each entry in the array corresponds to a | |
2210 | reloc. When we find a reloc against a global symbol, we | |
2211 | set the corresponding entry in this array so that we can | |
2212 | fix up the symbol index after we have written out all the | |
2213 | local symbols. | |
2214 | ||
2215 | Because of this problem, we also keep the relocs in | |
2216 | memory until the end of the link. This wastes memory, | |
1049f94e | 2217 | but only when doing a relocatable link, which is not the |
252b5132 | 2218 | common case. */ |
1049f94e | 2219 | BFD_ASSERT (info->relocatable); |
dc810e39 AM |
2220 | amt = o->reloc_count; |
2221 | amt *= sizeof (struct internal_reloc); | |
252b5132 | 2222 | finfo.section_info[o->target_index].relocs = |
dc810e39 AM |
2223 | (struct internal_reloc *) bfd_malloc (amt); |
2224 | amt = o->reloc_count; | |
2225 | amt *= sizeof (struct coff_link_hash_entry *); | |
252b5132 | 2226 | finfo.section_info[o->target_index].rel_hashes = |
dc810e39 | 2227 | (struct coff_link_hash_entry **) bfd_malloc (amt); |
252b5132 RH |
2228 | if (finfo.section_info[o->target_index].relocs == NULL |
2229 | || finfo.section_info[o->target_index].rel_hashes == NULL) | |
2230 | goto error_return; | |
2231 | ||
2232 | if (o->reloc_count > max_output_reloc_count) | |
2233 | max_output_reloc_count = o->reloc_count; | |
2234 | } | |
2235 | ||
2236 | /* Reset the reloc and lineno counts, so that we can use them to | |
2237 | count the number of entries we have output so far. */ | |
2238 | o->reloc_count = 0; | |
2239 | o->lineno_count = 0; | |
2240 | } | |
2241 | ||
2242 | obj_sym_filepos (abfd) = line_filepos; | |
2243 | ||
2244 | /* Figure out the largest number of symbols in an input BFD. Take | |
2245 | the opportunity to clear the output_has_begun fields of all the | |
2246 | input BFD's. */ | |
2247 | max_sym_count = 0; | |
2248 | for (sub = info->input_bfds; sub != NULL; sub = sub->link_next) | |
2249 | { | |
dc810e39 | 2250 | bfd_size_type sz; |
252b5132 | 2251 | |
b34976b6 | 2252 | sub->output_has_begun = FALSE; |
252b5132 RH |
2253 | sz = obj_raw_syment_count (sub); |
2254 | if (sz > max_sym_count) | |
2255 | max_sym_count = sz; | |
2256 | } | |
2257 | ||
2258 | /* Allocate some buffers used while linking. */ | |
dc810e39 AM |
2259 | amt = max_sym_count * sizeof (struct internal_syment); |
2260 | finfo.internal_syms = (struct internal_syment *) bfd_malloc (amt); | |
2261 | amt = max_sym_count * sizeof (asection *); | |
2262 | finfo.sec_ptrs = (asection **) bfd_malloc (amt); | |
2263 | amt = max_sym_count * sizeof (long); | |
2264 | finfo.sym_indices = (long *) bfd_malloc (amt); | |
2265 | amt = (max_sym_count + 1) * symesz; | |
2266 | finfo.outsyms = (bfd_byte *) bfd_malloc (amt); | |
2267 | amt = max_lineno_count * bfd_coff_linesz (abfd); | |
2268 | finfo.linenos = (bfd_byte *) bfd_malloc (amt); | |
252b5132 RH |
2269 | finfo.contents = (bfd_byte *) bfd_malloc (max_contents_size); |
2270 | finfo.external_relocs = (bfd_byte *) bfd_malloc (max_reloc_count * relsz); | |
1049f94e | 2271 | if (! info->relocatable) |
dc810e39 AM |
2272 | { |
2273 | amt = max_reloc_count * sizeof (struct internal_reloc); | |
2274 | finfo.internal_relocs = (struct internal_reloc *) bfd_malloc (amt); | |
2275 | } | |
252b5132 RH |
2276 | if ((finfo.internal_syms == NULL && max_sym_count > 0) |
2277 | || (finfo.sec_ptrs == NULL && max_sym_count > 0) | |
2278 | || (finfo.sym_indices == NULL && max_sym_count > 0) | |
2279 | || finfo.outsyms == NULL | |
2280 | || (finfo.linenos == NULL && max_lineno_count > 0) | |
2281 | || (finfo.contents == NULL && max_contents_size > 0) | |
2282 | || (finfo.external_relocs == NULL && max_reloc_count > 0) | |
1049f94e | 2283 | || (! info->relocatable |
252b5132 RH |
2284 | && finfo.internal_relocs == NULL |
2285 | && max_reloc_count > 0)) | |
2286 | goto error_return; | |
2287 | ||
2288 | /* We now know the position of everything in the file, except that | |
2289 | we don't know the size of the symbol table and therefore we don't | |
2290 | know where the string table starts. We just build the string | |
2291 | table in memory as we go along. We process all the relocations | |
2292 | for a single input file at once. */ | |
2293 | obj_raw_syment_count (abfd) = 0; | |
2294 | ||
2295 | if (coff_backend_info (abfd)->_bfd_coff_start_final_link) | |
2296 | { | |
2297 | if (! bfd_coff_start_final_link (abfd, info)) | |
2298 | goto error_return; | |
2299 | } | |
2300 | ||
2301 | for (o = abfd->sections; o != NULL; o = o->next) | |
2302 | { | |
8423293d | 2303 | for (p = o->map_head.link_order; p != NULL; p = p->next) |
252b5132 RH |
2304 | { |
2305 | if (p->type == bfd_indirect_link_order | |
2306 | && (bfd_get_flavour (p->u.indirect.section->owner) | |
2307 | == bfd_target_coff_flavour)) | |
2308 | { | |
2309 | sub = p->u.indirect.section->owner; | |
2310 | #ifdef POWERPC_LE_PE | |
2311 | if (! sub->output_has_begun && !ppc_do_last(sub)) | |
2312 | #else | |
2313 | if (! sub->output_has_begun) | |
2314 | #endif | |
2315 | { | |
2316 | if (! _bfd_coff_link_input_bfd (&finfo, sub)) | |
2317 | goto error_return; | |
b34976b6 | 2318 | sub->output_has_begun = TRUE; |
252b5132 RH |
2319 | } |
2320 | } | |
2321 | else if (p->type == bfd_section_reloc_link_order | |
2322 | || p->type == bfd_symbol_reloc_link_order) | |
2323 | { | |
2324 | if (! _bfd_coff_reloc_link_order (abfd, &finfo, o, p)) | |
2325 | goto error_return; | |
2326 | } | |
2327 | else | |
2328 | { | |
2329 | if (! _bfd_default_link_order (abfd, info, o, p)) | |
2330 | goto error_return; | |
2331 | } | |
2332 | } | |
2333 | } | |
2334 | ||
2335 | #ifdef POWERPC_LE_PE | |
2336 | { | |
2337 | bfd* last_one = ppc_get_last(); | |
2338 | if (last_one) | |
2339 | { | |
2340 | if (! _bfd_coff_link_input_bfd (&finfo, last_one)) | |
2341 | goto error_return; | |
2342 | } | |
b34976b6 | 2343 | last_one->output_has_begun = TRUE; |
252b5132 RH |
2344 | } |
2345 | #endif | |
2346 | ||
2347 | /* Free up the buffers used by _bfd_coff_link_input_bfd. */ | |
252b5132 | 2348 | coff_debug_merge_hash_table_free (&finfo.debug_merge); |
b34976b6 | 2349 | debug_merge_allocated = FALSE; |
252b5132 RH |
2350 | |
2351 | if (finfo.internal_syms != NULL) | |
2352 | { | |
2353 | free (finfo.internal_syms); | |
2354 | finfo.internal_syms = NULL; | |
2355 | } | |
2356 | if (finfo.sec_ptrs != NULL) | |
2357 | { | |
2358 | free (finfo.sec_ptrs); | |
2359 | finfo.sec_ptrs = NULL; | |
2360 | } | |
2361 | if (finfo.sym_indices != NULL) | |
2362 | { | |
2363 | free (finfo.sym_indices); | |
2364 | finfo.sym_indices = NULL; | |
2365 | } | |
2366 | if (finfo.linenos != NULL) | |
2367 | { | |
2368 | free (finfo.linenos); | |
2369 | finfo.linenos = NULL; | |
2370 | } | |
2371 | if (finfo.contents != NULL) | |
2372 | { | |
2373 | free (finfo.contents); | |
2374 | finfo.contents = NULL; | |
2375 | } | |
2376 | if (finfo.external_relocs != NULL) | |
2377 | { | |
2378 | free (finfo.external_relocs); | |
2379 | finfo.external_relocs = NULL; | |
2380 | } | |
2381 | if (finfo.internal_relocs != NULL) | |
2382 | { | |
2383 | free (finfo.internal_relocs); | |
2384 | finfo.internal_relocs = NULL; | |
2385 | } | |
2386 | ||
2387 | /* The value of the last C_FILE symbol is supposed to be the symbol | |
2388 | index of the first external symbol. Write it out again if | |
2389 | necessary. */ | |
2390 | if (finfo.last_file_index != -1 | |
2391 | && (unsigned int) finfo.last_file.n_value != obj_raw_syment_count (abfd)) | |
2392 | { | |
dc810e39 AM |
2393 | file_ptr pos; |
2394 | ||
252b5132 RH |
2395 | finfo.last_file.n_value = obj_raw_syment_count (abfd); |
2396 | bfd_coff_swap_sym_out (abfd, (PTR) &finfo.last_file, | |
2397 | (PTR) finfo.outsyms); | |
dc810e39 AM |
2398 | pos = obj_sym_filepos (abfd) + finfo.last_file_index * symesz; |
2399 | if (bfd_seek (abfd, pos, SEEK_SET) != 0 | |
2400 | || bfd_bwrite (finfo.outsyms, symesz, abfd) != symesz) | |
b34976b6 | 2401 | return FALSE; |
252b5132 RH |
2402 | } |
2403 | ||
2404 | /* Write out the global symbols. */ | |
b34976b6 | 2405 | finfo.failed = FALSE; |
252b5132 RH |
2406 | coff_link_hash_traverse (coff_hash_table (info), _bfd_coff_write_global_sym, |
2407 | (PTR) &finfo); | |
2408 | if (finfo.failed) | |
2409 | goto error_return; | |
2410 | ||
2411 | /* The outsyms buffer is used by _bfd_coff_write_global_sym. */ | |
2412 | if (finfo.outsyms != NULL) | |
2413 | { | |
2414 | free (finfo.outsyms); | |
2415 | finfo.outsyms = NULL; | |
2416 | } | |
2417 | ||
1049f94e | 2418 | if (info->relocatable) |
252b5132 RH |
2419 | { |
2420 | /* Now that we have written out all the global symbols, we know | |
2421 | the symbol indices to use for relocs against them, and we can | |
2422 | finally write out the relocs. */ | |
dc810e39 AM |
2423 | amt = max_output_reloc_count * relsz; |
2424 | external_relocs = (bfd_byte *) bfd_malloc (amt); | |
252b5132 RH |
2425 | if (external_relocs == NULL) |
2426 | goto error_return; | |
2427 | ||
2428 | for (o = abfd->sections; o != NULL; o = o->next) | |
2429 | { | |
2430 | struct internal_reloc *irel; | |
2431 | struct internal_reloc *irelend; | |
2432 | struct coff_link_hash_entry **rel_hash; | |
2433 | bfd_byte *erel; | |
2434 | ||
2435 | if (o->reloc_count == 0) | |
2436 | continue; | |
2437 | ||
2438 | irel = finfo.section_info[o->target_index].relocs; | |
2439 | irelend = irel + o->reloc_count; | |
2440 | rel_hash = finfo.section_info[o->target_index].rel_hashes; | |
2441 | erel = external_relocs; | |
2442 | for (; irel < irelend; irel++, rel_hash++, erel += relsz) | |
2443 | { | |
2444 | if (*rel_hash != NULL) | |
2445 | { | |
2446 | BFD_ASSERT ((*rel_hash)->indx >= 0); | |
2447 | irel->r_symndx = (*rel_hash)->indx; | |
2448 | } | |
2449 | bfd_coff_swap_reloc_out (abfd, (PTR) irel, (PTR) erel); | |
2450 | } | |
2451 | ||
dc810e39 | 2452 | amt = relsz * o->reloc_count; |
252b5132 | 2453 | if (bfd_seek (abfd, o->rel_filepos, SEEK_SET) != 0 |
dc810e39 | 2454 | || bfd_bwrite ((PTR) external_relocs, amt, abfd) != amt) |
252b5132 RH |
2455 | goto error_return; |
2456 | } | |
2457 | ||
2458 | free (external_relocs); | |
2459 | external_relocs = NULL; | |
2460 | } | |
2461 | ||
2462 | /* Free up the section information. */ | |
2463 | if (finfo.section_info != NULL) | |
2464 | { | |
2465 | unsigned int i; | |
2466 | ||
2467 | for (i = 0; i < abfd->section_count; i++) | |
2468 | { | |
2469 | if (finfo.section_info[i].relocs != NULL) | |
2470 | free (finfo.section_info[i].relocs); | |
2471 | if (finfo.section_info[i].rel_hashes != NULL) | |
2472 | free (finfo.section_info[i].rel_hashes); | |
2473 | } | |
2474 | free (finfo.section_info); | |
2475 | finfo.section_info = NULL; | |
2476 | } | |
2477 | ||
2478 | /* If we have optimized stabs strings, output them. */ | |
3722b82f | 2479 | if (coff_hash_table (info)->stab_info.stabstr != NULL) |
252b5132 RH |
2480 | { |
2481 | if (! _bfd_write_stab_strings (abfd, &coff_hash_table (info)->stab_info)) | |
b34976b6 | 2482 | return FALSE; |
252b5132 RH |
2483 | } |
2484 | ||
2485 | /* Write out the string table. */ | |
2486 | if (obj_raw_syment_count (abfd) != 0) | |
2487 | { | |
dc810e39 AM |
2488 | file_ptr pos; |
2489 | ||
2490 | pos = obj_sym_filepos (abfd) + obj_raw_syment_count (abfd) * symesz; | |
2491 | if (bfd_seek (abfd, pos, SEEK_SET) != 0) | |
b34976b6 | 2492 | return FALSE; |
252b5132 RH |
2493 | |
2494 | #if STRING_SIZE_SIZE == 4 | |
dc810e39 AM |
2495 | H_PUT_32 (abfd, |
2496 | _bfd_stringtab_size (finfo.strtab) + STRING_SIZE_SIZE, | |
2497 | strbuf); | |
252b5132 | 2498 | #else |
dc810e39 | 2499 | #error Change H_PUT_32 above |
252b5132 RH |
2500 | #endif |
2501 | ||
dc810e39 AM |
2502 | if (bfd_bwrite (strbuf, (bfd_size_type) STRING_SIZE_SIZE, abfd) |
2503 | != STRING_SIZE_SIZE) | |
b34976b6 | 2504 | return FALSE; |
252b5132 RH |
2505 | |
2506 | if (! _bfd_stringtab_emit (abfd, finfo.strtab)) | |
b34976b6 | 2507 | return FALSE; |
252b5132 RH |
2508 | } |
2509 | ||
2510 | _bfd_stringtab_free (finfo.strtab); | |
2511 | ||
2512 | /* Setting bfd_get_symcount to 0 will cause write_object_contents to | |
2513 | not try to write out the symbols. */ | |
2514 | bfd_get_symcount (abfd) = 0; | |
2515 | ||
b34976b6 | 2516 | return TRUE; |
252b5132 RH |
2517 | |
2518 | error_return: | |
2519 | if (debug_merge_allocated) | |
2520 | coff_debug_merge_hash_table_free (&finfo.debug_merge); | |
2521 | if (finfo.strtab != NULL) | |
2522 | _bfd_stringtab_free (finfo.strtab); | |
2523 | if (finfo.section_info != NULL) | |
2524 | { | |
2525 | unsigned int i; | |
2526 | ||
2527 | for (i = 0; i < abfd->section_count; i++) | |
2528 | { | |
2529 | if (finfo.section_info[i].relocs != NULL) | |
2530 | free (finfo.section_info[i].relocs); | |
2531 | if (finfo.section_info[i].rel_hashes != NULL) | |
2532 | free (finfo.section_info[i].rel_hashes); | |
2533 | } | |
2534 | free (finfo.section_info); | |
2535 | } | |
2536 | if (finfo.internal_syms != NULL) | |
2537 | free (finfo.internal_syms); | |
2538 | if (finfo.sec_ptrs != NULL) | |
2539 | free (finfo.sec_ptrs); | |
2540 | if (finfo.sym_indices != NULL) | |
2541 | free (finfo.sym_indices); | |
2542 | if (finfo.outsyms != NULL) | |
2543 | free (finfo.outsyms); | |
2544 | if (finfo.linenos != NULL) | |
2545 | free (finfo.linenos); | |
2546 | if (finfo.contents != NULL) | |
2547 | free (finfo.contents); | |
2548 | if (finfo.external_relocs != NULL) | |
2549 | free (finfo.external_relocs); | |
2550 | if (finfo.internal_relocs != NULL) | |
2551 | free (finfo.internal_relocs); | |
2552 | if (external_relocs != NULL) | |
2553 | free (external_relocs); | |
b34976b6 | 2554 | return FALSE; |
252b5132 RH |
2555 | } |
2556 | #endif | |
2557 | \f | |
c3c89269 NC |
2558 | /* Forward declaration for use by alternative_target field. */ |
2559 | #ifdef TARGET_BIG_SYM | |
2560 | extern const bfd_target TARGET_BIG_SYM; | |
2561 | #endif | |
2562 | ||
43646c9d | 2563 | /* The transfer vectors that lead the outside world to all of the above. */ |
252b5132 RH |
2564 | |
2565 | #ifdef TARGET_LITTLE_SYM | |
c3c89269 | 2566 | const bfd_target TARGET_LITTLE_SYM = |
252b5132 RH |
2567 | { |
2568 | TARGET_LITTLE_NAME, /* name or coff-arm-little */ | |
2569 | bfd_target_coff_flavour, | |
2570 | BFD_ENDIAN_LITTLE, /* data byte order is little */ | |
2571 | BFD_ENDIAN_LITTLE, /* header byte order is little */ | |
2572 | ||
2573 | (HAS_RELOC | EXEC_P | /* FIXME: object flags */ | |
2574 | HAS_LINENO | HAS_DEBUG | | |
2575 | HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED), | |
43646c9d | 2576 | |
252b5132 RH |
2577 | #ifndef COFF_WITH_PE |
2578 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
2579 | #else | |
2580 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC /* section flags */ | |
2581 | | SEC_LINK_ONCE | SEC_LINK_DUPLICATES), | |
2582 | #endif | |
2583 | ||
2584 | 0, /* leading char */ | |
2585 | '/', /* ar_pad_char */ | |
2586 | 15, /* ar_max_namelen??? FIXMEmgo */ | |
2587 | ||
2588 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
2589 | bfd_getl32, bfd_getl_signed_32, bfd_putl32, | |
2590 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */ | |
2591 | ||
2592 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
2593 | bfd_getl32, bfd_getl_signed_32, bfd_putl32, | |
2594 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */ | |
43646c9d | 2595 | |
252b5132 RH |
2596 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ |
2597 | bfd_generic_archive_p, /* _bfd_dummy_target */ coff_object_p }, | |
2598 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
2599 | bfd_false}, | |
2600 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
2601 | _bfd_write_archive_contents, bfd_false}, | |
43646c9d | 2602 | |
252b5132 RH |
2603 | BFD_JUMP_TABLE_GENERIC (coff), |
2604 | BFD_JUMP_TABLE_COPY (coff), | |
2605 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
2606 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
2607 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
2608 | BFD_JUMP_TABLE_RELOCS (coff), | |
2609 | BFD_JUMP_TABLE_WRITE (coff), | |
2610 | BFD_JUMP_TABLE_LINK (coff), | |
2611 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
c3c89269 NC |
2612 | |
2613 | /* Alternative_target. */ | |
2614 | #ifdef TARGET_BIG_SYM | |
2615 | & TARGET_BIG_SYM, | |
2616 | #else | |
2617 | NULL, | |
2618 | #endif | |
43646c9d | 2619 | |
c3c89269 | 2620 | COFF_SWAP_TABLE |
252b5132 RH |
2621 | }; |
2622 | #endif | |
2623 | ||
2624 | #ifdef TARGET_BIG_SYM | |
c3c89269 | 2625 | const bfd_target TARGET_BIG_SYM = |
252b5132 RH |
2626 | { |
2627 | TARGET_BIG_NAME, | |
43646c9d | 2628 | bfd_target_coff_flavour, |
252b5132 RH |
2629 | BFD_ENDIAN_BIG, /* data byte order is big */ |
2630 | BFD_ENDIAN_BIG, /* header byte order is big */ | |
2631 | ||
2632 | (HAS_RELOC | EXEC_P | /* FIXME: object flags */ | |
2633 | HAS_LINENO | HAS_DEBUG | | |
2634 | HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED), | |
2635 | ||
2636 | #ifndef COFF_WITH_PE | |
2637 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
2638 | #else | |
2639 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC /* section flags */ | |
2640 | | SEC_LINK_ONCE | SEC_LINK_DUPLICATES), | |
2641 | #endif | |
2642 | ||
2643 | 0, /* leading char */ | |
2644 | '/', /* ar_pad_char */ | |
2645 | 15, /* ar_max_namelen??? FIXMEmgo */ | |
2646 | ||
2647 | bfd_getb64, bfd_getb_signed_64, bfd_putb64, | |
2648 | bfd_getb32, bfd_getb_signed_32, bfd_putb32, | |
2649 | bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* data */ | |
2650 | ||
2651 | bfd_getb64, bfd_getb_signed_64, bfd_putb64, | |
2652 | bfd_getb32, bfd_getb_signed_32, bfd_putb32, | |
2653 | bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */ | |
2654 | ||
2655 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ | |
2656 | bfd_generic_archive_p, /* _bfd_dummy_target */ coff_object_p }, | |
2657 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
2658 | bfd_false}, | |
2659 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
2660 | _bfd_write_archive_contents, bfd_false}, | |
2661 | ||
2662 | BFD_JUMP_TABLE_GENERIC (coff), | |
2663 | BFD_JUMP_TABLE_COPY (coff), | |
2664 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
2665 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
2666 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
2667 | BFD_JUMP_TABLE_RELOCS (coff), | |
2668 | BFD_JUMP_TABLE_WRITE (coff), | |
2669 | BFD_JUMP_TABLE_LINK (coff), | |
2670 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
2671 | ||
c3c89269 NC |
2672 | /* Alternative_target. */ |
2673 | #ifdef TARGET_LITTLE_SYM | |
2674 | & TARGET_LITTLE_SYM, | |
2675 | #else | |
2676 | NULL, | |
2677 | #endif | |
43646c9d | 2678 | |
c3c89269 | 2679 | COFF_SWAP_TABLE |
252b5132 RH |
2680 | }; |
2681 | ||
2682 | #endif |