]>
Commit | Line | Data |
---|---|---|
81635ce4 | 1 | /* BFD back-end for TMS320C54X coff binaries. |
0f867abe | 2 | Copyright 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. |
a44f2895 | 3 | Contributed by Timothy Wall ([email protected]) |
81635ce4 TW |
4 | |
5 | This file is part of BFD, the Binary File Descriptor library. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2 of the License, or | |
10 | (at your option) any later version. | |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with this program; if not, write to the Free Software | |
19 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
20 | 02111-1307, USA. */ | |
21 | ||
22 | #include "bfd.h" | |
23 | #include "sysdep.h" | |
24 | #include "libbfd.h" | |
25 | #include "bfdlink.h" | |
26 | #include "coff/tic54x.h" | |
27 | #include "coff/internal.h" | |
28 | #include "libcoff.h" | |
29 | ||
f4ffd778 | 30 | #undef F_LSYMS |
81635ce4 TW |
31 | #define F_LSYMS F_LSYMS_TICOFF |
32 | ||
b34976b6 AM |
33 | static void tic54x_reloc_processing |
34 | PARAMS ((arelent *, struct internal_reloc *, asymbol **, bfd *, asection *)); | |
35 | static bfd_reloc_status_type tic54x_relocation | |
36 | PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); | |
37 | static bfd_boolean tic54x_set_section_contents | |
0f867abe | 38 | PARAMS ((bfd *, sec_ptr, const PTR, file_ptr, bfd_size_type)); |
b34976b6 AM |
39 | static reloc_howto_type *coff_tic54x_rtype_to_howto |
40 | PARAMS ((bfd *, asection *, struct internal_reloc *, struct coff_link_hash_entry *, struct internal_syment *, bfd_vma *)); | |
b34976b6 AM |
41 | static bfd_boolean tic54x_set_arch_mach |
42 | PARAMS ((bfd *, enum bfd_architecture, unsigned long)); | |
43 | static reloc_howto_type * tic54x_coff_reloc_type_lookup | |
44 | PARAMS ((bfd *, bfd_reloc_code_real_type)); | |
45 | static void tic54x_lookup_howto | |
46 | PARAMS ((arelent *, struct internal_reloc *)); | |
b34976b6 AM |
47 | static bfd_boolean ticoff_bfd_is_local_label_name |
48 | PARAMS ((bfd *, const char *)); | |
f4ffd778 NC |
49 | |
50 | /* 32-bit operations | |
51 | The octet order is screwy. words are LSB first (LS octet, actually), but | |
52 | longwords are MSW first. For example, 0x12345678 is encoded 0x5678 in the | |
53 | first word and 0x1234 in the second. When looking at the data as stored in | |
54 | the COFF file, you would see the octets ordered as 0x78, 0x56, 0x34, 0x12. | |
55 | Don't bother with 64-bits, as there aren't any. */ | |
56 | ||
81635ce4 | 57 | static bfd_vma |
edeb6e24 | 58 | tic54x_getl32 (const void *p) |
81635ce4 | 59 | { |
edeb6e24 | 60 | const bfd_byte *addr = p; |
81635ce4 | 61 | unsigned long v; |
f4ffd778 NC |
62 | |
63 | v = (unsigned long) addr[2]; | |
81635ce4 TW |
64 | v |= (unsigned long) addr[3] << 8; |
65 | v |= (unsigned long) addr[0] << 16; | |
66 | v |= (unsigned long) addr[1] << 24; | |
edeb6e24 | 67 | return v; |
81635ce4 TW |
68 | } |
69 | ||
70 | static void | |
edeb6e24 | 71 | tic54x_putl32 (bfd_vma data, void *p) |
81635ce4 | 72 | { |
edeb6e24 AM |
73 | bfd_byte *addr = p; |
74 | addr[2] = data & 0xff; | |
75 | addr[3] = (data >> 8) & 0xff; | |
76 | addr[0] = (data >> 16) & 0xff; | |
77 | addr[1] = (data >> 24) & 0xff; | |
81635ce4 TW |
78 | } |
79 | ||
edeb6e24 AM |
80 | static bfd_signed_vma |
81 | tic54x_getl_signed_32 (const void *p) | |
81635ce4 | 82 | { |
edeb6e24 | 83 | const bfd_byte *addr = p; |
81635ce4 TW |
84 | unsigned long v; |
85 | ||
f4ffd778 | 86 | v = (unsigned long) addr[2]; |
81635ce4 TW |
87 | v |= (unsigned long) addr[3] << 8; |
88 | v |= (unsigned long) addr[0] << 16; | |
89 | v |= (unsigned long) addr[1] << 24; | |
90 | #define COERCE32(x) \ | |
91 | ((bfd_signed_vma) (long) (((unsigned long) (x) ^ 0x80000000) - 0x80000000)) | |
92 | return COERCE32 (v); | |
93 | } | |
94 | ||
b9af77f5 TW |
95 | #define coff_get_section_load_page bfd_ticoff_get_section_load_page |
96 | #define coff_set_section_load_page bfd_ticoff_set_section_load_page | |
97 | ||
cbfe05c4 | 98 | void |
b9af77f5 TW |
99 | bfd_ticoff_set_section_load_page (sect, page) |
100 | asection *sect; | |
101 | int page; | |
102 | { | |
103 | sect->lma = (sect->lma & ADDR_MASK) | PG_TO_FLAG(page); | |
104 | } | |
105 | ||
b9af77f5 TW |
106 | int |
107 | bfd_ticoff_get_section_load_page (sect) | |
108 | asection *sect; | |
109 | { | |
110 | int page; | |
111 | ||
cbfe05c4 | 112 | /* Provide meaningful defaults for predefined sections. */ |
b9af77f5 TW |
113 | if (sect == &bfd_com_section) |
114 | page = PG_DATA; | |
115 | ||
116 | else if (sect == &bfd_und_section | |
117 | || sect == &bfd_abs_section | |
118 | || sect == &bfd_ind_section) | |
119 | page = PG_PROG; | |
120 | ||
121 | else | |
122 | page = FLAG_TO_PG (sect->lma); | |
123 | ||
124 | return page; | |
125 | } | |
126 | ||
127 | /* Set the architecture appropriately. Allow unkown architectures | |
cbfe05c4 | 128 | (e.g. binary). */ |
f4ffd778 | 129 | |
b34976b6 | 130 | static bfd_boolean |
b9af77f5 TW |
131 | tic54x_set_arch_mach (abfd, arch, machine) |
132 | bfd *abfd; | |
133 | enum bfd_architecture arch; | |
134 | unsigned long machine; | |
135 | { | |
136 | if (arch == bfd_arch_unknown) | |
137 | arch = bfd_arch_tic54x; | |
138 | ||
139 | else if (arch != bfd_arch_tic54x) | |
b34976b6 | 140 | return FALSE; |
b9af77f5 TW |
141 | |
142 | return bfd_default_set_arch_mach (abfd, arch, machine); | |
143 | } | |
144 | ||
81635ce4 | 145 | static bfd_reloc_status_type |
cbfe05c4 | 146 | tic54x_relocation (abfd, reloc_entry, symbol, data, input_section, |
81635ce4 TW |
147 | output_bfd, error_message) |
148 | bfd *abfd ATTRIBUTE_UNUSED; | |
149 | arelent *reloc_entry; | |
150 | asymbol *symbol ATTRIBUTE_UNUSED; | |
151 | PTR data ATTRIBUTE_UNUSED; | |
152 | asection *input_section; | |
153 | bfd *output_bfd; | |
154 | char **error_message ATTRIBUTE_UNUSED; | |
155 | { | |
81635ce4 TW |
156 | if (output_bfd != (bfd *) NULL) |
157 | { | |
158 | /* This is a partial relocation, and we want to apply the | |
159 | relocation to the reloc entry rather than the raw data. | |
160 | Modify the reloc inplace to reflect what we now know. */ | |
161 | reloc_entry->address += input_section->output_offset; | |
162 | return bfd_reloc_ok; | |
163 | } | |
164 | return bfd_reloc_continue; | |
165 | } | |
166 | ||
167 | reloc_howto_type tic54x_howto_table[] = | |
f4ffd778 NC |
168 | { |
169 | /* type,rightshift,size (0=byte, 1=short, 2=long), | |
170 | bit size, pc_relative, bitpos, dont complain_on_overflow, | |
171 | special_function, name, partial_inplace, src_mask, dst_mask, pcrel_offset. */ | |
172 | ||
173 | /* NORMAL BANK */ | |
174 | /* 16-bit direct reference to symbol's address. */ | |
b34976b6 AM |
175 | HOWTO (R_RELWORD,0,1,16,FALSE,0,complain_overflow_dont, |
176 | tic54x_relocation,"REL16",FALSE,0xFFFF,0xFFFF,FALSE), | |
f4ffd778 NC |
177 | |
178 | /* 7 LSBs of an address */ | |
b34976b6 AM |
179 | HOWTO (R_PARTLS7,0,1,7,FALSE,0,complain_overflow_dont, |
180 | tic54x_relocation,"LS7",FALSE,0x007F,0x007F,FALSE), | |
f4ffd778 NC |
181 | |
182 | /* 9 MSBs of an address */ | |
183 | /* TI assembler doesn't shift its encoding, and is thus incompatible */ | |
b34976b6 AM |
184 | HOWTO (R_PARTMS9,7,1,9,FALSE,0,complain_overflow_dont, |
185 | tic54x_relocation,"MS9",FALSE,0x01FF,0x01FF,FALSE), | |
f4ffd778 NC |
186 | |
187 | /* 23-bit relocation */ | |
b34976b6 AM |
188 | HOWTO (R_EXTWORD,0,2,23,FALSE,0,complain_overflow_dont, |
189 | tic54x_relocation,"RELEXT",FALSE,0x7FFFFF,0x7FFFFF,FALSE), | |
f4ffd778 NC |
190 | |
191 | /* 16 bits of 23-bit extended address */ | |
b34976b6 AM |
192 | HOWTO (R_EXTWORD16,0,1,16,FALSE,0,complain_overflow_dont, |
193 | tic54x_relocation,"RELEXT16",FALSE,0x7FFFFF,0x7FFFFF,FALSE), | |
f4ffd778 NC |
194 | |
195 | /* upper 7 bits of 23-bit extended address */ | |
b34976b6 AM |
196 | HOWTO (R_EXTWORDMS7,16,1,7,FALSE,0,complain_overflow_dont, |
197 | tic54x_relocation,"RELEXTMS7",FALSE,0x7F,0x7F,FALSE), | |
f4ffd778 NC |
198 | |
199 | /* ABSOLUTE BANK */ | |
200 | /* 16-bit direct reference to symbol's address, absolute */ | |
b34976b6 AM |
201 | HOWTO (R_RELWORD,0,1,16,FALSE,0,complain_overflow_dont, |
202 | tic54x_relocation,"AREL16",FALSE,0xFFFF,0xFFFF,FALSE), | |
f4ffd778 NC |
203 | |
204 | /* 7 LSBs of an address, absolute */ | |
b34976b6 AM |
205 | HOWTO (R_PARTLS7,0,1,7,FALSE,0,complain_overflow_dont, |
206 | tic54x_relocation,"ALS7",FALSE,0x007F,0x007F,FALSE), | |
f4ffd778 NC |
207 | |
208 | /* 9 MSBs of an address, absolute */ | |
209 | /* TI assembler doesn't shift its encoding, and is thus incompatible */ | |
b34976b6 AM |
210 | HOWTO (R_PARTMS9,7,1,9,FALSE,0,complain_overflow_dont, |
211 | tic54x_relocation,"AMS9",FALSE,0x01FF,0x01FF,FALSE), | |
f4ffd778 NC |
212 | |
213 | /* 23-bit direct reference, absolute */ | |
b34976b6 AM |
214 | HOWTO (R_EXTWORD,0,2,23,FALSE,0,complain_overflow_dont, |
215 | tic54x_relocation,"ARELEXT",FALSE,0x7FFFFF,0x7FFFFF,FALSE), | |
f4ffd778 NC |
216 | |
217 | /* 16 bits of 23-bit extended address, absolute */ | |
b34976b6 AM |
218 | HOWTO (R_EXTWORD16,0,1,16,FALSE,0,complain_overflow_dont, |
219 | tic54x_relocation,"ARELEXT16",FALSE,0x7FFFFF,0x7FFFFF,FALSE), | |
f4ffd778 NC |
220 | |
221 | /* upper 7 bits of 23-bit extended address, absolute */ | |
b34976b6 AM |
222 | HOWTO (R_EXTWORDMS7,16,1,7,FALSE,0,complain_overflow_dont, |
223 | tic54x_relocation,"ARELEXTMS7",FALSE,0x7F,0x7F,FALSE), | |
f4ffd778 NC |
224 | |
225 | /* 32-bit relocation exclusively for stabs */ | |
b34976b6 AM |
226 | HOWTO (R_RELLONG,0,2,32,FALSE,0,complain_overflow_dont, |
227 | tic54x_relocation,"STAB",FALSE,0xFFFFFFFF,0xFFFFFFFF,FALSE), | |
f4ffd778 | 228 | }; |
81635ce4 TW |
229 | |
230 | #define coff_bfd_reloc_type_lookup tic54x_coff_reloc_type_lookup | |
231 | ||
232 | /* For the case statement use the code values used tc_gen_reloc (defined in | |
f4ffd778 NC |
233 | bfd/reloc.c) to map to the howto table entries. */ |
234 | ||
81635ce4 TW |
235 | reloc_howto_type * |
236 | tic54x_coff_reloc_type_lookup (abfd, code) | |
237 | bfd *abfd ATTRIBUTE_UNUSED; | |
238 | bfd_reloc_code_real_type code; | |
239 | { | |
240 | switch (code) | |
241 | { | |
242 | case BFD_RELOC_16: | |
243 | return &tic54x_howto_table[0]; | |
244 | case BFD_RELOC_TIC54X_PARTLS7: | |
245 | return &tic54x_howto_table[1]; | |
246 | case BFD_RELOC_TIC54X_PARTMS9: | |
247 | return &tic54x_howto_table[2]; | |
248 | case BFD_RELOC_TIC54X_23: | |
249 | return &tic54x_howto_table[3]; | |
250 | case BFD_RELOC_TIC54X_16_OF_23: | |
251 | return &tic54x_howto_table[4]; | |
252 | case BFD_RELOC_TIC54X_MS7_OF_23: | |
253 | return &tic54x_howto_table[5]; | |
254 | case BFD_RELOC_32: | |
255 | return &tic54x_howto_table[12]; | |
256 | default: | |
257 | return (reloc_howto_type *) NULL; | |
258 | } | |
259 | } | |
260 | ||
cbfe05c4 | 261 | /* Code to turn a r_type into a howto ptr, uses the above howto table. |
f4ffd778 NC |
262 | Called after some initial checking by the tic54x_rtype_to_howto fn below. */ |
263 | ||
81635ce4 TW |
264 | static void |
265 | tic54x_lookup_howto (internal, dst) | |
266 | arelent *internal; | |
267 | struct internal_reloc *dst; | |
268 | { | |
269 | unsigned i; | |
270 | int bank = (dst->r_symndx == -1) ? HOWTO_BANK : 0; | |
f4ffd778 | 271 | |
81635ce4 TW |
272 | for (i = 0; i < sizeof tic54x_howto_table/sizeof tic54x_howto_table[0]; i++) |
273 | { | |
274 | if (tic54x_howto_table[i].type == dst->r_type) | |
275 | { | |
276 | internal->howto = tic54x_howto_table + i + bank; | |
277 | return; | |
278 | } | |
279 | } | |
280 | ||
281 | (*_bfd_error_handler) (_("Unrecognized reloc type 0x%x"), | |
282 | (unsigned int) dst->r_type); | |
cbfe05c4 | 283 | abort (); |
81635ce4 TW |
284 | } |
285 | ||
286 | #define RELOC_PROCESSING(RELENT,RELOC,SYMS,ABFD,SECT)\ | |
287 | tic54x_reloc_processing(RELENT,RELOC,SYMS,ABFD,SECT) | |
288 | ||
81635ce4 TW |
289 | #define coff_rtype_to_howto coff_tic54x_rtype_to_howto |
290 | ||
291 | static reloc_howto_type * | |
292 | coff_tic54x_rtype_to_howto (abfd, sec, rel, h, sym, addendp) | |
293 | bfd *abfd ATTRIBUTE_UNUSED; | |
294 | asection *sec; | |
295 | struct internal_reloc *rel; | |
296 | struct coff_link_hash_entry *h ATTRIBUTE_UNUSED; | |
297 | struct internal_syment *sym ATTRIBUTE_UNUSED; | |
298 | bfd_vma *addendp; | |
299 | { | |
300 | arelent genrel; | |
301 | ||
302 | if (rel->r_symndx == -1 && addendp != NULL) | |
303 | { | |
304 | /* This is a TI "internal relocation", which means that the relocation | |
305 | amount is the amount by which the current section is being relocated | |
cbfe05c4 | 306 | in the output section. */ |
81635ce4 TW |
307 | *addendp = (sec->output_section->vma + sec->output_offset) - sec->vma; |
308 | } | |
309 | ||
310 | tic54x_lookup_howto (&genrel, rel); | |
311 | ||
312 | return genrel.howto; | |
313 | } | |
314 | ||
f4ffd778 NC |
315 | /* Replace the stock _bfd_coff_is_local_label_name to recognize TI COFF local |
316 | labels. */ | |
317 | ||
b34976b6 | 318 | static bfd_boolean |
81635ce4 TW |
319 | ticoff_bfd_is_local_label_name (abfd, name) |
320 | bfd *abfd ATTRIBUTE_UNUSED; | |
321 | const char *name; | |
322 | { | |
323 | if (TICOFF_LOCAL_LABEL_P(name)) | |
b34976b6 AM |
324 | return TRUE; |
325 | return FALSE; | |
81635ce4 TW |
326 | } |
327 | ||
328 | #define coff_bfd_is_local_label_name ticoff_bfd_is_local_label_name | |
329 | ||
cbfe05c4 | 330 | /* Customize coffcode.h; the default coff_ functions are set up to use COFF2; |
81635ce4 TW |
331 | coff_bad_format_hook uses BADMAG, so set that for COFF2. The COFF1 |
332 | and COFF0 vectors use custom _bad_format_hook procs instead of setting | |
f4ffd778 | 333 | BADMAG. */ |
81635ce4 TW |
334 | #define BADMAG(x) COFF2_BADMAG(x) |
335 | #include "coffcode.h" | |
336 | ||
b34976b6 | 337 | static bfd_boolean |
b9af77f5 TW |
338 | tic54x_set_section_contents (abfd, section, location, offset, bytes_to_do) |
339 | bfd *abfd; | |
340 | sec_ptr section; | |
0f867abe | 341 | const PTR location; |
b9af77f5 TW |
342 | file_ptr offset; |
343 | bfd_size_type bytes_to_do; | |
344 | { | |
cbfe05c4 | 345 | return coff_set_section_contents (abfd, section, location, |
b9af77f5 TW |
346 | offset, bytes_to_do); |
347 | } | |
348 | ||
81635ce4 TW |
349 | static void |
350 | tic54x_reloc_processing (relent, reloc, symbols, abfd, section) | |
351 | arelent *relent; | |
352 | struct internal_reloc *reloc; | |
353 | asymbol **symbols; | |
354 | bfd *abfd; | |
355 | asection *section; | |
356 | { | |
357 | asymbol *ptr; | |
358 | ||
359 | relent->address = reloc->r_vaddr; | |
cbfe05c4 | 360 | |
81635ce4 TW |
361 | if (reloc->r_symndx != -1) |
362 | { | |
363 | if (reloc->r_symndx < 0 || reloc->r_symndx >= obj_conv_table_size (abfd)) | |
364 | { | |
365 | (*_bfd_error_handler) | |
366 | (_("%s: warning: illegal symbol index %ld in relocs"), | |
8f615d07 | 367 | bfd_archive_filename (abfd), reloc->r_symndx); |
81635ce4 TW |
368 | relent->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; |
369 | ptr = NULL; | |
370 | } | |
371 | else | |
372 | { | |
373 | relent->sym_ptr_ptr = (symbols | |
374 | + obj_convert (abfd)[reloc->r_symndx]); | |
375 | ptr = *(relent->sym_ptr_ptr); | |
376 | } | |
377 | } | |
378 | else | |
379 | { | |
380 | relent->sym_ptr_ptr = section->symbol_ptr_ptr; | |
381 | ptr = *(relent->sym_ptr_ptr); | |
382 | } | |
cbfe05c4 | 383 | |
81635ce4 TW |
384 | /* The symbols definitions that we have read in have been |
385 | relocated as if their sections started at 0. But the offsets | |
386 | refering to the symbols in the raw data have not been | |
387 | modified, so we have to have a negative addend to compensate. | |
cbfe05c4 | 388 | |
f4ffd778 | 389 | Note that symbols which used to be common must be left alone. */ |
cbfe05c4 | 390 | |
f4ffd778 | 391 | /* Calculate any reloc addend by looking at the symbol. */ |
81635ce4 | 392 | CALC_ADDEND (abfd, ptr, *reloc, relent); |
cbfe05c4 | 393 | |
81635ce4 TW |
394 | relent->address -= section->vma; |
395 | /* !! relent->section = (asection *) NULL;*/ | |
cbfe05c4 | 396 | |
f4ffd778 | 397 | /* Fill in the relent->howto field from reloc->r_type. */ |
81635ce4 TW |
398 | tic54x_lookup_howto (relent, reloc); |
399 | } | |
400 | ||
f4ffd778 | 401 | /* TI COFF v0, DOS tools (little-endian headers). */ |
81635ce4 | 402 | const bfd_target tic54x_coff0_vec = |
f4ffd778 NC |
403 | { |
404 | "coff0-c54x", /* name */ | |
405 | bfd_target_coff_flavour, | |
406 | BFD_ENDIAN_LITTLE, /* data byte order is little */ | |
407 | BFD_ENDIAN_LITTLE, /* header byte order is little (DOS tools) */ | |
408 | ||
409 | (HAS_RELOC | EXEC_P | /* object flags */ | |
410 | HAS_LINENO | HAS_DEBUG | | |
411 | HAS_SYMS | HAS_LOCALS | WP_TEXT ), | |
412 | ||
413 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
414 | '_', /* leading symbol underscore */ | |
415 | '/', /* ar_pad_char */ | |
416 | 15, /* ar_max_namelen */ | |
417 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
418 | tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32, | |
419 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */ | |
420 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
421 | bfd_getl32, bfd_getl_signed_32, bfd_putl32, | |
422 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */ | |
423 | ||
424 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ | |
425 | bfd_generic_archive_p, _bfd_dummy_target}, | |
426 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
427 | bfd_false}, | |
428 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
429 | _bfd_write_archive_contents, bfd_false}, | |
430 | ||
431 | BFD_JUMP_TABLE_GENERIC (coff), | |
432 | BFD_JUMP_TABLE_COPY (coff), | |
433 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
434 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
435 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
436 | BFD_JUMP_TABLE_RELOCS (coff), | |
437 | BFD_JUMP_TABLE_WRITE (tic54x), | |
438 | BFD_JUMP_TABLE_LINK (coff), | |
439 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
440 | NULL, | |
441 | ||
442 | (PTR) & ticoff0_swap_table | |
443 | }; | |
444 | ||
445 | /* TI COFF v0, SPARC tools (big-endian headers). */ | |
81635ce4 | 446 | const bfd_target tic54x_coff0_beh_vec = |
f4ffd778 NC |
447 | { |
448 | "coff0-beh-c54x", /* name */ | |
449 | bfd_target_coff_flavour, | |
450 | BFD_ENDIAN_LITTLE, /* data byte order is little */ | |
451 | BFD_ENDIAN_BIG, /* header byte order is big */ | |
452 | ||
453 | (HAS_RELOC | EXEC_P | /* object flags */ | |
454 | HAS_LINENO | HAS_DEBUG | | |
455 | HAS_SYMS | HAS_LOCALS | WP_TEXT ), | |
456 | ||
457 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
458 | '_', /* leading symbol underscore */ | |
459 | '/', /* ar_pad_char */ | |
460 | 15, /* ar_max_namelen */ | |
461 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
462 | tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32, | |
463 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */ | |
464 | bfd_getb64, bfd_getb_signed_64, bfd_putb64, | |
465 | bfd_getb32, bfd_getb_signed_32, bfd_putb32, | |
466 | bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */ | |
467 | ||
468 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ | |
469 | bfd_generic_archive_p, _bfd_dummy_target}, | |
470 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
471 | bfd_false}, | |
472 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
473 | _bfd_write_archive_contents, bfd_false}, | |
474 | ||
475 | BFD_JUMP_TABLE_GENERIC (coff), | |
476 | BFD_JUMP_TABLE_COPY (coff), | |
477 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
478 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
479 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
480 | BFD_JUMP_TABLE_RELOCS (coff), | |
481 | BFD_JUMP_TABLE_WRITE (tic54x), | |
482 | BFD_JUMP_TABLE_LINK (coff), | |
483 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
484 | ||
485 | & tic54x_coff0_vec, | |
486 | ||
487 | (PTR) & ticoff0_swap_table | |
488 | }; | |
489 | ||
490 | /* TI COFF v1, DOS tools (little-endian headers). */ | |
81635ce4 | 491 | const bfd_target tic54x_coff1_vec = |
f4ffd778 NC |
492 | { |
493 | "coff1-c54x", /* name */ | |
494 | bfd_target_coff_flavour, | |
495 | BFD_ENDIAN_LITTLE, /* data byte order is little */ | |
496 | BFD_ENDIAN_LITTLE, /* header byte order is little (DOS tools) */ | |
497 | ||
498 | (HAS_RELOC | EXEC_P | /* object flags */ | |
499 | HAS_LINENO | HAS_DEBUG | | |
500 | HAS_SYMS | HAS_LOCALS | WP_TEXT ), | |
501 | ||
502 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
503 | '_', /* leading symbol underscore */ | |
504 | '/', /* ar_pad_char */ | |
505 | 15, /* ar_max_namelen */ | |
506 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
507 | tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32, | |
508 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */ | |
509 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
510 | bfd_getl32, bfd_getl_signed_32, bfd_putl32, | |
511 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */ | |
512 | ||
513 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ | |
514 | bfd_generic_archive_p, _bfd_dummy_target}, | |
515 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
516 | bfd_false}, | |
517 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
518 | _bfd_write_archive_contents, bfd_false}, | |
519 | ||
520 | BFD_JUMP_TABLE_GENERIC (coff), | |
521 | BFD_JUMP_TABLE_COPY (coff), | |
522 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
523 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
524 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
525 | BFD_JUMP_TABLE_RELOCS (coff), | |
526 | BFD_JUMP_TABLE_WRITE (tic54x), | |
527 | BFD_JUMP_TABLE_LINK (coff), | |
528 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
529 | ||
530 | & tic54x_coff0_beh_vec, | |
531 | ||
532 | (PTR) & ticoff1_swap_table | |
81635ce4 TW |
533 | }; |
534 | ||
f4ffd778 | 535 | /* TI COFF v1, SPARC tools (big-endian headers). */ |
81635ce4 | 536 | const bfd_target tic54x_coff1_beh_vec = |
f4ffd778 NC |
537 | { |
538 | "coff1-beh-c54x", /* name */ | |
539 | bfd_target_coff_flavour, | |
540 | BFD_ENDIAN_LITTLE, /* data byte order is little */ | |
541 | BFD_ENDIAN_BIG, /* header byte order is big */ | |
542 | ||
543 | (HAS_RELOC | EXEC_P | /* object flags */ | |
544 | HAS_LINENO | HAS_DEBUG | | |
545 | HAS_SYMS | HAS_LOCALS | WP_TEXT ), | |
546 | ||
547 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
548 | '_', /* leading symbol underscore */ | |
549 | '/', /* ar_pad_char */ | |
550 | 15, /* ar_max_namelen */ | |
551 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
552 | tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32, | |
553 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */ | |
554 | bfd_getb64, bfd_getb_signed_64, bfd_putb64, | |
555 | bfd_getb32, bfd_getb_signed_32, bfd_putb32, | |
556 | bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */ | |
557 | ||
558 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ | |
559 | bfd_generic_archive_p, _bfd_dummy_target}, | |
560 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
561 | bfd_false}, | |
562 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
563 | _bfd_write_archive_contents, bfd_false}, | |
564 | ||
565 | BFD_JUMP_TABLE_GENERIC (coff), | |
566 | BFD_JUMP_TABLE_COPY (coff), | |
567 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
568 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
569 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
570 | BFD_JUMP_TABLE_RELOCS (coff), | |
571 | BFD_JUMP_TABLE_WRITE (tic54x), | |
572 | BFD_JUMP_TABLE_LINK (coff), | |
573 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
574 | ||
575 | & tic54x_coff1_vec, | |
576 | ||
577 | (PTR) & ticoff1_swap_table | |
578 | }; | |
579 | ||
580 | /* TI COFF v2, TI DOS tools output (little-endian headers). */ | |
81635ce4 | 581 | const bfd_target tic54x_coff2_vec = |
f4ffd778 NC |
582 | { |
583 | "coff2-c54x", /* name */ | |
584 | bfd_target_coff_flavour, | |
585 | BFD_ENDIAN_LITTLE, /* data byte order is little */ | |
586 | BFD_ENDIAN_LITTLE, /* header byte order is little (DOS tools) */ | |
587 | ||
588 | (HAS_RELOC | EXEC_P | /* object flags */ | |
589 | HAS_LINENO | HAS_DEBUG | | |
590 | HAS_SYMS | HAS_LOCALS | WP_TEXT ), | |
591 | ||
592 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
593 | '_', /* leading symbol underscore */ | |
594 | '/', /* ar_pad_char */ | |
595 | 15, /* ar_max_namelen */ | |
596 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
597 | tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32, | |
598 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */ | |
599 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
600 | bfd_getl32, bfd_getl_signed_32, bfd_putl32, | |
601 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* hdrs */ | |
602 | ||
603 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ | |
604 | bfd_generic_archive_p, _bfd_dummy_target}, | |
605 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
606 | bfd_false}, | |
607 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
608 | _bfd_write_archive_contents, bfd_false}, | |
609 | ||
610 | BFD_JUMP_TABLE_GENERIC (coff), | |
611 | BFD_JUMP_TABLE_COPY (coff), | |
612 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
613 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
614 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
615 | BFD_JUMP_TABLE_RELOCS (coff), | |
616 | BFD_JUMP_TABLE_WRITE (tic54x), | |
617 | BFD_JUMP_TABLE_LINK (coff), | |
618 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
619 | ||
620 | & tic54x_coff1_beh_vec, | |
621 | ||
622 | COFF_SWAP_TABLE | |
623 | }; | |
624 | ||
625 | /* TI COFF v2, TI SPARC tools output (big-endian headers). */ | |
81635ce4 | 626 | const bfd_target tic54x_coff2_beh_vec = |
f4ffd778 NC |
627 | { |
628 | "coff2-beh-c54x", /* name */ | |
629 | bfd_target_coff_flavour, | |
630 | BFD_ENDIAN_LITTLE, /* data byte order is little */ | |
631 | BFD_ENDIAN_BIG, /* header byte order is big */ | |
632 | ||
633 | (HAS_RELOC | EXEC_P | /* object flags */ | |
634 | HAS_LINENO | HAS_DEBUG | | |
635 | HAS_SYMS | HAS_LOCALS | WP_TEXT ), | |
636 | ||
637 | (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ | |
638 | '_', /* leading symbol underscore */ | |
639 | '/', /* ar_pad_char */ | |
640 | 15, /* ar_max_namelen */ | |
641 | bfd_getl64, bfd_getl_signed_64, bfd_putl64, | |
642 | tic54x_getl32, tic54x_getl_signed_32, tic54x_putl32, | |
643 | bfd_getl16, bfd_getl_signed_16, bfd_putl16, /* data */ | |
644 | bfd_getb64, bfd_getb_signed_64, bfd_putb64, | |
645 | bfd_getb32, bfd_getb_signed_32, bfd_putb32, | |
646 | bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */ | |
647 | ||
648 | {_bfd_dummy_target, coff_object_p, /* bfd_check_format */ | |
649 | bfd_generic_archive_p, _bfd_dummy_target}, | |
650 | {bfd_false, coff_mkobject, _bfd_generic_mkarchive, /* bfd_set_format */ | |
651 | bfd_false}, | |
652 | {bfd_false, coff_write_object_contents, /* bfd_write_contents */ | |
653 | _bfd_write_archive_contents, bfd_false}, | |
654 | ||
655 | BFD_JUMP_TABLE_GENERIC (coff), | |
656 | BFD_JUMP_TABLE_COPY (coff), | |
657 | BFD_JUMP_TABLE_CORE (_bfd_nocore), | |
658 | BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), | |
659 | BFD_JUMP_TABLE_SYMBOLS (coff), | |
660 | BFD_JUMP_TABLE_RELOCS (coff), | |
661 | BFD_JUMP_TABLE_WRITE (tic54x), | |
662 | BFD_JUMP_TABLE_LINK (coff), | |
663 | BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), | |
664 | ||
665 | & tic54x_coff2_vec, | |
666 | ||
667 | COFF_SWAP_TABLE | |
668 | }; |