1 /* BFD backend for Extended Tektronix Hex Format objects.
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
4 Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
24 Tektronix Hex Format handling
28 Tek Hex records can hold symbols and data, but not
29 relocations. Their main application is communication with
30 devices like PROM programmers and ICE equipment.
32 It seems that the sections are descibed as being really big,
33 the example I have says that the text section is 0..ffffffff.
34 BFD would barf with this, many apps would try to alloc 4GB to
37 Tex Hex may contain many sections, but the data which comes in
38 has no tag saying which section it belongs to, so we create
39 one section for each block of data, called "blknnnn" which we
40 stick all the data into.
42 TekHex may come out of order and there is no header, so an
43 initial scan is required to discover the minimum and maximum
44 addresses used to create the vma and size of the sections we
46 We read in the data into pages of CHUNK_MASK+1 size and read
47 them out from that whenever we need to.
49 Any number of sections may be created for output, we save them
50 up and output them when it's time to close the bfd.
53 A TekHex record looks like:
55 %<block length><type><checksum><stuff><cr>
60 is the number of bytes in the record not including the % sign.
68 The data can come out of order, and may be discontigous. This is a
69 serial protocol, so big files are unlikely, so we keep a list of 8k chunks
82 typedef struct tekhex_symbol_struct
86 struct tekhex_symbol_struct
*prev
;
90 static char digs
[] = "0123456789ABCDEF";
92 static char sum_block
[256];
94 /* Horrible ascii dependent macros for converting between hex and
97 #define CHARS_IN_SET 256
98 static char hex_value
[CHARS_IN_SET
];
101 #define NIBBLE(x) hex_value[x]
102 #define HEX(buffer) ((NIBBLE((buffer)[0])<<4) + NIBBLE((buffer)[1]))
104 (d)[1] = digs[(x) & 0xf]; \
105 (d)[0] = digs[((x)>>4)&0xf];
106 #define ISHEX(x) (hex_value[x] != NOT_HEX)
110 %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
111 %1B3709T_SEGMENT1108FFFFFFFF
112 %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
113 %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
114 %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
115 %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
116 %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
117 %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
118 %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
119 %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
120 %2734D9T_SEGMENT8Bvoid$t15$151035_main10
121 %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
122 %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
126 %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
128 | || +------ 4 char integer 0x8000
129 | |+-------- checksum
130 | +--------- type 6 (data record)
131 +----------- length 3a chars
132 <---------------------- 3a (58 chars) ------------------->
134 %1B3709T_SEGMENT1108FFFFFFFF
135 ^ ^^ ^- 8 character integer 0xffffffff
136 | |+- 1 character integer 0
137 | +-- type 1 symbol (section definition)
138 +------------ 9 char symbol T_SEGMENT
140 %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
141 %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
142 %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
143 %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
144 %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
145 %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
146 %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
147 %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
148 %2734D9T_SEGMENT8Bvoid$t15$151035_main10
149 %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
150 %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
154 sac@thepub$ ./objdump -dx -m m68k f
156 f: file format tekhex
157 -----x--- 9/55728 -134219416 Sep 29 15:13 1995 f
158 architecture: UNKNOWN!, flags 0x00000010:
160 start address 0x00000000
161 SECTION 0 [D00000000] : size 00020000 vma 00000000 align 2**0
163 SECTION 1 [D00008000] : size 00002001 vma 00008000 align 2**0
165 SECTION 2 [T_SEGMENT] : size ffffffff vma 00000000 align 2**0
168 00000000 g T_SEGMENT gcc_compiled$
169 00000000 g T_SEGMENT hello$c
170 00000000 g T_SEGMENT int$t1$r1$$21474
171 00000000 g T_SEGMENT char$t2$r2$0$127
172 00000000 g T_SEGMENT long$int$t3$r1$$
173 00000000 g T_SEGMENT unsigned$int$t4$
174 00000000 g T_SEGMENT long$unsigned$in
175 00000000 g T_SEGMENT short$int$t6$r1$
176 00000000 g T_SEGMENT long$long$int$t7
177 00000000 g T_SEGMENT short$unsigned$i
178 00000000 g T_SEGMENT long$long$unsign
179 00000000 g T_SEGMENT signed$char$t10$
180 00000000 g T_SEGMENT unsigned$char$t1
181 00000000 g T_SEGMENT float$t12$r1$4$0
182 00000000 g T_SEGMENT double$t13$r1$8$
183 00000000 g T_SEGMENT long$double$t14$
184 00000000 g T_SEGMENT void$t15$15
185 00000000 g T_SEGMENT _main
186 00000000 g T_SEGMENT $
187 00000000 g T_SEGMENT $
188 00000000 g T_SEGMENT $
189 00000010 g T_SEGMENT $
190 00000000 g T_SEGMENT main$F1
191 fcffffff g T_SEGMENT i$1
192 00000000 g T_SEGMENT $
193 00000010 g T_SEGMENT $
196 RELOCATION RECORDS FOR [D00000000]: (none)
198 RELOCATION RECORDS FOR [D00008000]: (none)
200 RELOCATION RECORDS FOR [T_SEGMENT]: (none)
202 Disassembly of section D00000000:
204 00008000 ($+)7ff0 linkw fp,#-4
205 00008004 ($+)7ff4 nop
206 00008006 ($+)7ff6 movel #99,d0
207 00008008 ($+)7ff8 cmpl fp@(-4),d0
208 0000800c ($+)7ffc blts 00008014 ($+)8004
209 0000800e ($+)7ffe addql #1,fp@(-4)
210 00008012 ($+)8002 bras 00008006 ($+)7ff6
211 00008014 ($+)8004 unlk fp
212 00008016 ($+)8006 rts
221 static boolean inited
= false;
229 for (i
= 0; i
< CHARS_IN_SET
; i
++)
231 hex_value
[i
] = NOT_HEX
;
234 for (i
= 0; i
< 10; i
++)
236 hex_value
[i
+ '0'] = i
;
239 for (i
= 0; i
< 6; i
++)
241 hex_value
[i
+ 'a'] = i
+ 10;
242 hex_value
[i
+ 'A'] = i
+ 10;
245 for (i
= 0; i
< 10; i
++)
247 sum_block
[i
+ '0'] = val
++;
249 for (i
= 'A'; i
<= 'Z'; i
++)
251 sum_block
[i
] = val
++;
253 sum_block
['$'] = val
++;
254 sum_block
['%'] = val
++;
255 sum_block
['.'] = val
++;
256 sum_block
['_'] = val
++;
257 for (i
= 'a'; i
<= 'z'; i
++)
259 sum_block
[i
] = val
++;
264 /* The maximum number of bytes on a line is FF */
265 #define MAXCHUNK 0xff
266 /* The number of bytes we fit onto a line on output */
269 /* We cannot output our tekhexords as we see them, we have to glue them
270 together, this is done in this structure : */
272 struct tekhex_data_list_struct
277 struct tekhex_data_list_struct
*next
;
280 typedef struct tekhex_data_list_struct tekhex_data_list_type
;
282 #define CHUNK_MASK 0x1fff
286 char chunk_data
[CHUNK_MASK
+ 1];
287 char chunk_init
[CHUNK_MASK
+ 1];
289 struct data_struct
*next
;
292 typedef struct tekhex_data_struct
294 tekhex_data_list_type
*head
;
296 struct tekhex_symbol_struct
*symbols
;
297 struct data_struct
*data
;
300 #define enda(x) (x->vma + x->size)
308 unsigned int len
= hex_value
[*src
++];
314 value
= value
<< 4 | hex_value
[*src
++];
327 unsigned int len
= hex_value
[*src
++];
331 for (i
= 0; i
< len
; i
++)
339 find_chunk (abfd
, vma
)
343 struct data_struct
*d
= abfd
->tdata
.tekhex_data
->data
;
346 while (d
&& (d
->vma
) != vma
)
352 char *sname
= bfd_alloc (abfd
, 12);
355 /* No chunk for this address, so make one up */
356 d
= (struct data_struct
*)
357 bfd_alloc (abfd
, sizeof (struct data_struct
));
361 bfd_set_error (bfd_error_no_memory
);
365 memset (d
->chunk_init
, 0, CHUNK_MASK
+ 1);
366 memset (d
->chunk_data
, 0, CHUNK_MASK
+ 1);
367 d
->next
= abfd
->tdata
.tekhex_data
->data
;
369 abfd
->tdata
.tekhex_data
->data
= d
;
375 insert_byte (abfd
, value
, addr
)
380 /* Find the chunk that this byte needs and put it in */
381 struct data_struct
*d
= find_chunk (abfd
, addr
);
383 d
->chunk_data
[addr
& CHUNK_MASK
] = value
;
384 d
->chunk_init
[addr
& CHUNK_MASK
] = 1;
387 /* The first pass is to find the names of all the sections, and see
388 how big the data is */
390 first_phase (abfd
, type
, src
)
395 asection
*section
= &bfd_abs_section
;
397 char sym
[17]; /* A symbol can only be 16chars long */
402 /* Data record - read it and store it */
404 bfd_vma addr
= getvalue (&src
);
408 insert_byte (abfd
, HEX (src
), addr
);
416 /* Symbol record, read the segment */
417 len
= getsym (sym
, &src
);
418 section
= bfd_get_section_by_name (abfd
, sym
);
419 if (section
== (asection
*) NULL
)
421 char *n
= bfd_alloc (abfd
, len
+ 1);
425 bfd_set_error (bfd_error_no_memory
);
428 memcpy (n
, sym
, len
+ 1);
429 section
= bfd_make_section (abfd
, n
);
437 case '1': /* section range */
439 section
->vma
= getvalue (&src
);
440 section
->_raw_size
= getvalue (&src
) - section
->vma
;
441 section
->flags
= SEC_HAS_CONTENTS
| SEC_LOAD
| SEC_ALLOC
;
450 /* Symbols, add to section */
452 tekhex_symbol_type
*new =
453 (tekhex_symbol_type
*) bfd_alloc (abfd
,
454 sizeof (tekhex_symbol_type
));
459 bfd_set_error (bfd_error_no_memory
);
462 new->symbol
.the_bfd
= abfd
;
465 abfd
->flags
|= HAS_SYMS
;
466 new->prev
= abfd
->tdata
.tekhex_data
->symbols
;
467 abfd
->tdata
.tekhex_data
->symbols
= new;
468 len
= getsym (sym
, &src
);
469 new->symbol
.name
= bfd_alloc (abfd
, len
+ 1);
470 if (!new->symbol
.name
)
472 bfd_set_error (bfd_error_no_memory
);
475 memcpy ((char *) (new->symbol
.name
), sym
, len
+ 1);
476 new->symbol
.section
= section
;
478 new->symbol
.flags
= (BSF_GLOBAL
| BSF_EXPORT
);
480 new->symbol
.flags
= BSF_LOCAL
;
481 new->symbol
.value
= getvalue (&src
) - section
->vma
;
488 /* Pass over an tekhex, calling one of the above functions on each
492 pass_over (abfd
, func
)
496 unsigned int chars_on_line
;
499 /* To the front of the file */
500 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0)
504 char buffer
[MAXCHUNK
];
510 eof
= (boolean
) (bfd_read (src
, 1, 1, abfd
) != 1);
511 while (*src
!= '%' && !eof
)
513 eof
= (boolean
) (bfd_read (src
, 1, 1, abfd
) != 1);
519 /* Fetch the type and the length and the checksum */
520 if (bfd_read (src
, 1, 5, abfd
) != 5)
521 abort (); /* FIXME */
525 if (!ISHEX (src
[0]) || !ISHEX (src
[1]))
528 chars_on_line
= HEX (src
) - 5; /* Already read five char */
530 if (bfd_read (src
, 1, chars_on_line
, abfd
) != chars_on_line
)
531 abort (); /* FIXME */
532 src
[chars_on_line
] = 0; /* put a null at the end */
534 func (abfd
, type
, src
);
540 tekhex_get_symtab (abfd
, table
)
545 tekhex_symbol_type
*p
= abfd
->tdata
.tekhex_data
->symbols
;
546 unsigned int c
= bfd_get_symcount (abfd
);
551 table
[--c
] = &(p
->symbol
);
555 return bfd_get_symcount (abfd
);
559 tekhex_get_symtab_upper_bound (abfd
)
562 return (abfd
->symcount
+ 1) * (sizeof (struct tekhex_asymbol_struct
*));
567 tekhex_mkobject (abfd
)
570 tdata_type
*tdata
= (tdata_type
*) bfd_alloc (abfd
, sizeof (tdata_type
));
574 bfd_set_error (bfd_error_no_memory
);
577 abfd
->tdata
.tekhex_data
= tdata
;
579 tdata
->head
= (tekhex_data_list_type
*) NULL
;
580 tdata
->symbols
= (struct tekhex_symbol_struct
*) NULL
;
581 tdata
->data
= (struct data_struct
*) NULL
;
586 Return true if the file looks like it's in TekHex format. Just look
587 for a percent sign and some hex digits */
589 static const bfd_target
*
590 tekhex_object_p (abfd
)
598 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0
599 || bfd_read (b
, 1, 4, abfd
) != 4)
602 if (b
[0] != '%' || !ISHEX (b
[1]) || !ISHEX (b
[2]) || !ISHEX (b
[3]))
603 return (const bfd_target
*) NULL
;
605 tekhex_mkobject (abfd
);
607 pass_over (abfd
, first_phase
);
612 move_section_contents (abfd
, section
, locationp
, offset
, count
, get
)
621 char *location
= (char *) locationp
;
622 bfd_vma prev_number
= 1; /* Nothing can have this as a high bit*/
623 struct data_struct
*d
= (struct data_struct
*) NULL
;
625 for (addr
= section
->vma
; count
!= 0; count
--, addr
++)
628 bfd_vma chunk_number
= addr
& ~CHUNK_MASK
; /* Get high bits of address */
629 bfd_vma low_bits
= addr
& CHUNK_MASK
;
631 if (chunk_number
!= prev_number
)
633 /* Different chunk, so move pointer */
634 d
= find_chunk (abfd
, chunk_number
);
639 if (d
->chunk_init
[low_bits
])
641 *location
= d
->chunk_data
[low_bits
];
650 d
->chunk_data
[low_bits
] = *location
;
651 d
->chunk_init
[low_bits
] = (*location
!= 0);
660 tekhex_get_section_contents (abfd
, section
, locationp
, offset
, count
)
667 if (section
->flags
& (SEC_LOAD
| SEC_ALLOC
))
669 move_section_contents (abfd
, section
, locationp
, offset
, count
, true);
677 tekhex_set_arch_mach (abfd
, arch
, machine
)
679 enum bfd_architecture arch
;
680 unsigned long machine
;
682 return bfd_default_set_arch_mach (abfd
, arch
, machine
);
685 /* we have to save up all the Tekhexords for a splurge before output,
689 tekhex_set_section_contents (abfd
, section
, locationp
, offset
, bytes_to_do
)
694 bfd_size_type bytes_to_do
;
697 if (abfd
->output_has_begun
== false)
699 /* The first time around, allocate enough sections to hold all the chunks */
700 asection
*s
= abfd
->sections
;
703 for (s
= abfd
->sections
; s
; s
= s
->next
)
705 if (s
->flags
& SEC_LOAD
)
707 for (vma
= s
->vma
& ~CHUNK_MASK
;
708 vma
< s
->vma
+ s
->_raw_size
;
710 find_chunk (abfd
, vma
);
715 if (section
->flags
& (SEC_LOAD
| SEC_ALLOC
))
717 move_section_contents (abfd
, section
, locationp
, offset
, bytes_to_do
, false);
726 writevalue (dst
, value
)
734 for (len
= 8, shift
= 28; shift
; shift
-= 4, len
--)
736 if ((value
>> shift
) & 0xf)
741 *p
++ = digs
[(value
>> shift
) & 0xf];
761 int len
= (sym
? strlen (sym
) : 0);
791 out (abfd
, type
, start
, end
)
802 TOHEX (front
+ 1, end
- start
+ 5);
805 for (s
= start
; s
< end
; s
++)
807 sum
+= sum_block
[*s
];
810 sum
+= sum_block
[front
[1]]; /* length */
811 sum
+= sum_block
[front
[2]];
812 sum
+= sum_block
[front
[3]]; /* type */
813 TOHEX (front
+ 4, sum
);
814 if (bfd_write (front
, 1, 6, abfd
) != 6)
817 if (bfd_write (start
, 1, end
- start
+ 1, abfd
) != end
- start
+ 1)
822 tekhex_write_object_contents (abfd
)
828 tdata_type
*tdata
= abfd
->tdata
.tekhex_data
;
829 tekhex_data_list_type
*list
;
831 struct data_struct
*d
;
835 /* And the raw data */
836 for (d
= abfd
->tdata
.tekhex_data
->data
;
837 d
!= (struct data_struct
*) NULL
;
845 /* Write it in blocks of 32 bytes */
847 for (addr
= 0; addr
< CHUNK_MASK
+ 1; addr
+= span
)
851 /* Check to see if necessary */
852 for (low
= 0; !need
&& low
< span
; low
++)
854 if (d
->chunk_init
[addr
+ low
])
861 writevalue (&dst
, addr
+ d
->vma
);
862 for (low
= 0; low
< span
; low
++)
864 TOHEX (dst
, d
->chunk_data
[addr
+ low
]);
867 out (abfd
, '6', buffer
, dst
);
871 /* write all the section headers for the sections */
872 for (s
= abfd
->sections
; s
!= (asection
*) NULL
; s
= s
->next
)
876 writesym (&dst
, s
->name
);
878 writevalue (&dst
, s
->vma
);
879 writevalue (&dst
, s
->vma
+ s
->_raw_size
);
880 out (abfd
, '3', buffer
, dst
);
883 /* And the symbols */
884 for (p
= abfd
->outsymbols
; *p
; p
++)
886 int section_code
= bfd_decode_symclass (*p
);
888 if (section_code
!= '?')
889 { /* do not include debug symbols */
893 writesym (&dst
, s
->section
->name
);
895 switch (section_code
)
921 bfd_set_error (bfd_error_wrong_format
);
925 writesym (&dst
, s
->name
);
926 writevalue (&dst
, s
->value
+ s
->section
->vma
);
927 out (abfd
, '3', buffer
, dst
);
931 /* And the terminator */
932 if (bfd_write ("%7081010\n", 1, 9, abfd
) != 9)
938 tekhex_sizeof_headers (abfd
, exec
)
947 tekhex_make_empty_symbol (abfd
)
950 tekhex_symbol_type
*new =
951 (tekhex_symbol_type
*) bfd_zalloc (abfd
, sizeof (struct tekhex_symbol_struct
));
955 bfd_set_error (bfd_error_no_memory
);
958 new->symbol
.the_bfd
= abfd
;
959 new->prev
= (struct tekhex_symbol_struct
*) NULL
;
960 return &(new->symbol
);
964 tekhex_get_symbol_info (ignore_abfd
, symbol
, ret
)
969 bfd_symbol_info (symbol
, ret
);
973 tekhex_print_symbol (ignore_abfd
, filep
, symbol
, how
)
977 bfd_print_symbol_type how
;
979 FILE *file
= (FILE *) filep
;
983 case bfd_print_symbol_name
:
984 fprintf (file
, "%s", symbol
->name
);
986 case bfd_print_symbol_more
:
989 case bfd_print_symbol_all
:
991 CONST
char *section_name
= symbol
->section
->name
;
993 bfd_print_symbol_vandf ((PTR
) file
, symbol
);
995 fprintf (file
, " %-5s %s",
1002 #define tekhex_close_and_cleanup _bfd_generic_close_and_cleanup
1003 #define tekhex_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
1004 #define tekhex_new_section_hook _bfd_generic_new_section_hook
1006 #define tekhex_bfd_is_local_label bfd_generic_is_local_label
1007 #define tekhex_get_lineno _bfd_nosymbols_get_lineno
1008 #define tekhex_find_nearest_line _bfd_nosymbols_find_nearest_line
1009 #define tekhex_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
1011 #define tekhex_bfd_get_relocated_section_contents \
1012 bfd_generic_get_relocated_section_contents
1013 #define tekhex_bfd_relax_section bfd_generic_relax_section
1014 #define tekhex_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
1015 #define tekhex_bfd_link_add_symbols _bfd_generic_link_add_symbols
1016 #define tekhex_bfd_final_link _bfd_generic_final_link
1018 const bfd_target tekhex_vec
=
1020 "tekhex", /* name */
1021 bfd_target_tekhex_flavour
,
1022 true, /* target byte order */
1023 true, /* target headers byte order */
1024 (EXEC_P
| /* object flags */
1025 HAS_SYMS
| HAS_LINENO
| HAS_DEBUG
| HAS_RELOC
| HAS_LOCALS
|
1027 (SEC_CODE
| SEC_DATA
| SEC_ROM
| SEC_HAS_CONTENTS
1028 | SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
), /* section flags */
1029 0, /* leading underscore */
1030 ' ', /* ar_pad_char */
1031 16, /* ar_max_namelen */
1032 1, /* minimum alignment */
1033 bfd_getb64
, bfd_getb_signed_64
, bfd_putb64
,
1034 bfd_getb32
, bfd_getb_signed_32
, bfd_putb32
,
1035 bfd_getb16
, bfd_getb_signed_16
, bfd_putb16
, /* data */
1036 bfd_getb64
, bfd_getb_signed_64
, bfd_putb64
,
1037 bfd_getb32
, bfd_getb_signed_32
, bfd_putb32
,
1038 bfd_getb16
, bfd_getb_signed_16
, bfd_putb16
, /* hdrs */
1042 tekhex_object_p
, /* bfd_check_format */
1049 _bfd_generic_mkarchive
,
1052 { /* bfd_write_contents */
1054 tekhex_write_object_contents
,
1055 _bfd_write_archive_contents
,
1059 BFD_JUMP_TABLE_GENERIC (tekhex
),
1060 BFD_JUMP_TABLE_COPY (_bfd_generic
),
1061 BFD_JUMP_TABLE_CORE (_bfd_nocore
),
1062 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive
),
1063 BFD_JUMP_TABLE_SYMBOLS (tekhex
),
1064 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs
),
1065 BFD_JUMP_TABLE_WRITE (tekhex
),
1066 BFD_JUMP_TABLE_LINK (tekhex
),
1067 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),