1 /* BFD backend for Extended Tektronix Hex Format objects.
2 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000
3 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.
52 A TekHex record looks like:
54 %<block length><type><checksum><stuff><cr>
59 is the number of bytes in the record not including the % sign.
66 The data can come out of order, and may be discontigous. This is a
67 serial protocol, so big files are unlikely, so we keep a list of 8k chunks
73 #include "libiberty.h"
81 typedef struct tekhex_symbol_struct
85 struct tekhex_symbol_struct *prev;
89 static const char digs[] = "0123456789ABCDEF";
91 static char sum_block[256];
94 #define NIBBLE(x) hex_value(x)
95 #define HEX(buffer) ((NIBBLE((buffer)[0])<<4) + NIBBLE((buffer)[1]))
97 (d)[1] = digs[(x) & 0xf]; \
98 (d)[0] = digs[((x)>>4)&0xf];
99 #define ISHEX(x) hex_p(x)
101 static void tekhex_init PARAMS ((void));
102 static bfd_vma getvalue PARAMS ((char **));
103 static void tekhex_print_symbol
104 PARAMS ((bfd *, PTR, asymbol *, bfd_print_symbol_type));
105 static void tekhex_get_symbol_info PARAMS ((bfd *, asymbol *, symbol_info *));
106 static asymbol *tekhex_make_empty_symbol PARAMS ((bfd *));
107 static int tekhex_sizeof_headers PARAMS ((bfd *, boolean));
108 static boolean tekhex_write_object_contents PARAMS ((bfd *));
109 static void out PARAMS ((bfd *, int, char *, char *));
110 static void writesym PARAMS ((char **, CONST char *));
111 static void writevalue PARAMS ((char **, bfd_vma));
112 static boolean tekhex_set_section_contents
113 PARAMS ((bfd*, sec_ptr, PTR, file_ptr, bfd_size_type));
114 static boolean tekhex_set_arch_mach
115 PARAMS ((bfd *, enum bfd_architecture, unsigned long));
116 static boolean tekhex_get_section_contents
117 PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
118 static void move_section_contents
119 PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type, boolean));
120 static const bfd_target *tekhex_object_p PARAMS ((bfd *));
121 static boolean tekhex_mkobject PARAMS ((bfd *));
122 static long tekhex_get_symtab_upper_bound PARAMS ((bfd *));
123 static long tekhex_get_symtab PARAMS ((bfd *, asymbol **));
124 static void pass_over PARAMS ((bfd *, void (*) (bfd*, int, char *)));
125 static void first_phase PARAMS ((bfd *, int, char *));
126 static void insert_byte PARAMS ((bfd *, int, bfd_vma));
127 static struct data_struct *find_chunk PARAMS ((bfd *, bfd_vma));
128 static unsigned int getsym PARAMS ((char *, char **));
132 %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
133 %1B3709T_SEGMENT1108FFFFFFFF
134 %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
135 %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
136 %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
137 %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
138 %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
139 %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
140 %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
141 %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
142 %2734D9T_SEGMENT8Bvoid$t15$151035_main10
143 %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
144 %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
148 %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
150 | || +------ 4 char integer 0x8000
151 | |+-------- checksum
152 | +--------- type 6 (data record)
153 +----------- length 3a chars
154 <---------------------- 3a (58 chars) ------------------->
156 %1B3709T_SEGMENT1108FFFFFFFF
157 ^ ^^ ^- 8 character integer 0xffffffff
158 | |+- 1 character integer 0
159 | +-- type 1 symbol (section definition)
160 +------------ 9 char symbol T_SEGMENT
162 %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
163 %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
164 %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
165 %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
166 %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
167 %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
168 %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
169 %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
170 %2734D9T_SEGMENT8Bvoid$t15$151035_main10
171 %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
172 %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
176 sac@thepub$ ./objdump -dx -m m68k f
178 f: file format tekhex
179 -----x--- 9/55728 -134219416 Sep 29 15:13 1995 f
180 architecture: UNKNOWN!, flags 0x00000010:
182 start address 0x00000000
183 SECTION 0 [D00000000] : size 00020000 vma 00000000 align 2**0
185 SECTION 1 [D00008000] : size 00002001 vma 00008000 align 2**0
187 SECTION 2 [T_SEGMENT] : size ffffffff vma 00000000 align 2**0
190 00000000 g T_SEGMENT gcc_compiled$
191 00000000 g T_SEGMENT hello$c
192 00000000 g T_SEGMENT int$t1$r1$$21474
193 00000000 g T_SEGMENT char$t2$r2$0$127
194 00000000 g T_SEGMENT long$int$t3$r1$$
195 00000000 g T_SEGMENT unsigned$int$t4$
196 00000000 g T_SEGMENT long$unsigned$in
197 00000000 g T_SEGMENT short$int$t6$r1$
198 00000000 g T_SEGMENT long$long$int$t7
199 00000000 g T_SEGMENT short$unsigned$i
200 00000000 g T_SEGMENT long$long$unsign
201 00000000 g T_SEGMENT signed$char$t10$
202 00000000 g T_SEGMENT unsigned$char$t1
203 00000000 g T_SEGMENT float$t12$r1$4$0
204 00000000 g T_SEGMENT double$t13$r1$8$
205 00000000 g T_SEGMENT long$double$t14$
206 00000000 g T_SEGMENT void$t15$15
207 00000000 g T_SEGMENT _main
208 00000000 g T_SEGMENT $
209 00000000 g T_SEGMENT $
210 00000000 g T_SEGMENT $
211 00000010 g T_SEGMENT $
212 00000000 g T_SEGMENT main$F1
213 fcffffff g T_SEGMENT i$1
214 00000000 g T_SEGMENT $
215 00000010 g T_SEGMENT $
217 RELOCATION RECORDS FOR [D00000000]: (none)
219 RELOCATION RECORDS FOR [D00008000]: (none)
221 RELOCATION RECORDS FOR [T_SEGMENT]: (none)
223 Disassembly of section D00000000:
225 00008000 ($+)7ff0 linkw fp,#-4
226 00008004 ($+)7ff4 nop
227 00008006 ($+)7ff6 movel #99,d0
228 00008008 ($+)7ff8 cmpl fp@(-4),d0
229 0000800c ($+)7ffc blts 00008014 ($+)8004
230 0000800e ($+)7ffe addql #1,fp@(-4)
231 00008012 ($+)8002 bras 00008006 ($+)7ff6
232 00008014 ($+)8004 unlk fp
233 00008016 ($+)8006 rts
242 static boolean inited = false;
250 for (i = 0; i < 10; i++)
252 sum_block[i + '0'] = val++;
254 for (i = 'A'; i <= 'Z'; i++)
256 sum_block[i] = val++;
258 sum_block['$'] = val++;
259 sum_block['%'] = val++;
260 sum_block['.'] = val++;
261 sum_block['_'] = val++;
262 for (i = 'a'; i <= 'z'; i++)
264 sum_block[i] = val++;
269 /* The maximum number of bytes on a line is FF */
270 #define MAXCHUNK 0xff
271 /* The number of bytes we fit onto a line on output */
274 /* We cannot output our tekhexords as we see them, we have to glue them
275 together, this is done in this structure : */
277 struct tekhex_data_list_struct
282 struct tekhex_data_list_struct *next;
285 typedef struct tekhex_data_list_struct tekhex_data_list_type;
287 #define CHUNK_MASK 0x1fff
291 char chunk_data[CHUNK_MASK + 1];
292 char chunk_init[CHUNK_MASK + 1];
294 struct data_struct *next;
297 typedef struct tekhex_data_struct
299 tekhex_data_list_type *head;
301 struct tekhex_symbol_struct *symbols;
302 struct data_struct *data;
305 #define enda(x) (x->vma + x->size)
313 unsigned int len = hex_value(*src++);
319 value = value << 4 | hex_value(*src++);
332 unsigned int len = hex_value(*src++);
336 for (i = 0; i < len; i++)
343 static struct data_struct *
344 find_chunk (abfd, vma)
348 struct data_struct *d = abfd->tdata.tekhex_data->data;
351 while (d && (d->vma) != vma)
357 char *sname = bfd_alloc (abfd, 12);
359 /* No chunk for this address, so make one up */
360 d = (struct data_struct *)
361 bfd_alloc (abfd, sizeof (struct data_struct));
366 memset (d->chunk_init, 0, CHUNK_MASK + 1);
367 memset (d->chunk_data, 0, CHUNK_MASK + 1);
368 d->next = abfd->tdata.tekhex_data->data;
370 abfd->tdata.tekhex_data->data = d;
376 insert_byte (abfd, value, addr)
381 /* Find the chunk that this byte needs and put it in */
382 struct data_struct *d = find_chunk (abfd, addr);
384 d->chunk_data[addr & CHUNK_MASK] = value;
385 d->chunk_init[addr & CHUNK_MASK] = 1;
388 /* The first pass is to find the names of all the sections, and see
389 how big the data is */
391 first_phase (abfd, type, src)
396 asection *section = bfd_abs_section_ptr;
398 char sym[17]; /* A symbol can only be 16chars long */
403 /* Data record - read it and store it */
405 bfd_vma addr = getvalue (&src);
409 insert_byte (abfd, HEX (src), addr);
417 /* Symbol record, read the segment */
418 len = getsym (sym, &src);
419 section = bfd_get_section_by_name (abfd, sym);
420 if (section == (asection *) NULL)
422 char *n = bfd_alloc (abfd, len + 1);
425 abort (); /* FIXME */
426 memcpy (n, sym, len + 1);
427 section = bfd_make_section (abfd, n);
433 case '1': /* section range */
435 section->vma = getvalue (&src);
436 section->_raw_size = getvalue (&src) - section->vma;
437 section->flags = SEC_HAS_CONTENTS | SEC_LOAD | SEC_ALLOC;
446 /* Symbols, add to section */
448 tekhex_symbol_type *new =
449 (tekhex_symbol_type *) bfd_alloc (abfd,
450 sizeof (tekhex_symbol_type));
454 abort (); /* FIXME */
455 new->symbol.the_bfd = abfd;
458 abfd->flags |= HAS_SYMS;
459 new->prev = abfd->tdata.tekhex_data->symbols;
460 abfd->tdata.tekhex_data->symbols = new;
461 len = getsym (sym, &src);
462 new->symbol.name = bfd_alloc (abfd, len + 1);
463 if (!new->symbol.name)
464 abort (); /* FIXME */
465 memcpy ((char *) (new->symbol.name), sym, len + 1);
466 new->symbol.section = section;
468 new->symbol.flags = (BSF_GLOBAL | BSF_EXPORT);
470 new->symbol.flags = BSF_LOCAL;
471 new->symbol.value = getvalue (&src) - section->vma;
478 /* Pass over an tekhex, calling one of the above functions on each
482 pass_over (abfd, func)
484 void (*func) PARAMS ((bfd *, int, char *));
486 unsigned int chars_on_line;
489 /* To the front of the file */
490 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
494 char buffer[MAXCHUNK];
499 eof = (boolean) (bfd_read (src, 1, 1, abfd) != 1);
500 while (*src != '%' && !eof)
502 eof = (boolean) (bfd_read (src, 1, 1, abfd) != 1);
508 /* Fetch the type and the length and the checksum */
509 if (bfd_read (src, 1, 5, abfd) != 5)
510 abort (); /* FIXME */
514 if (!ISHEX (src[0]) || !ISHEX (src[1]))
517 chars_on_line = HEX (src) - 5; /* Already read five char */
519 if (bfd_read (src, 1, chars_on_line, abfd) != chars_on_line)
520 abort (); /* FIXME */
521 src[chars_on_line] = 0; /* put a null at the end */
523 func (abfd, type, src);
529 tekhex_get_symtab (abfd, table)
533 tekhex_symbol_type *p = abfd->tdata.tekhex_data->symbols;
534 unsigned int c = bfd_get_symcount (abfd);
539 table[--c] = &(p->symbol);
543 return bfd_get_symcount (abfd);
547 tekhex_get_symtab_upper_bound (abfd)
550 return (abfd->symcount + 1) * (sizeof (struct tekhex_asymbol_struct *));
555 tekhex_mkobject (abfd)
558 tdata_type *tdata = (tdata_type *) bfd_alloc (abfd, sizeof (tdata_type));
562 abfd->tdata.tekhex_data = tdata;
564 tdata->head = (tekhex_data_list_type *) NULL;
565 tdata->symbols = (struct tekhex_symbol_struct *) NULL;
566 tdata->data = (struct data_struct *) NULL;
571 Return true if the file looks like it's in TekHex format. Just look
572 for a percent sign and some hex digits */
574 static const bfd_target *
575 tekhex_object_p (abfd)
582 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0
583 || bfd_read (b, 1, 4, abfd) != 4)
586 if (b[0] != '%' || !ISHEX (b[1]) || !ISHEX (b[2]) || !ISHEX (b[3]))
587 return (const bfd_target *) NULL;
589 tekhex_mkobject (abfd);
591 pass_over (abfd, first_phase);
596 move_section_contents (abfd, section, locationp, offset, count, get)
600 file_ptr offset ATTRIBUTE_UNUSED;
605 char *location = (char *) locationp;
606 bfd_vma prev_number = 1; /* Nothing can have this as a high bit*/
607 struct data_struct *d = (struct data_struct *) NULL;
609 for (addr = section->vma; count != 0; count--, addr++)
612 bfd_vma chunk_number = addr & ~CHUNK_MASK; /* Get high bits of address */
613 bfd_vma low_bits = addr & CHUNK_MASK;
615 if (chunk_number != prev_number)
617 /* Different chunk, so move pointer */
618 d = find_chunk (abfd, chunk_number);
623 if (d->chunk_init[low_bits])
625 *location = d->chunk_data[low_bits];
634 d->chunk_data[low_bits] = *location;
635 d->chunk_init[low_bits] = (*location != 0);
645 tekhex_get_section_contents (abfd, section, locationp, offset, count)
652 if (section->flags & (SEC_LOAD | SEC_ALLOC))
654 move_section_contents (abfd, section, locationp, offset, count, true);
662 tekhex_set_arch_mach (abfd, arch, machine)
664 enum bfd_architecture arch;
665 unsigned long machine;
667 return bfd_default_set_arch_mach (abfd, arch, machine);
670 /* we have to save up all the Tekhexords for a splurge before output,
674 tekhex_set_section_contents (abfd, section, locationp, offset, bytes_to_do)
679 bfd_size_type bytes_to_do;
682 if (abfd->output_has_begun == false)
684 /* The first time around, allocate enough sections to hold all the chunks */
685 asection *s = abfd->sections;
688 for (s = abfd->sections; s; s = s->next)
690 if (s->flags & SEC_LOAD)
692 for (vma = s->vma & ~CHUNK_MASK;
693 vma < s->vma + s->_raw_size;
695 find_chunk (abfd, vma);
700 if (section->flags & (SEC_LOAD | SEC_ALLOC))
702 move_section_contents (abfd, section, locationp, offset, bytes_to_do, false);
711 writevalue (dst, value)
719 for (len = 8, shift = 28; shift; shift -= 4, len--)
721 if ((value >> shift) & 0xf)
726 *p++ = digs[(value >> shift) & 0xf];
746 int len = (sym ? strlen (sym) : 0);
776 out (abfd, type, start, end)
788 TOHEX (front + 1, end - start + 5);
791 for (s = start; s < end; s++)
793 sum += sum_block[(unsigned char) *s];
796 sum += sum_block[(unsigned char) front[1]]; /* length */
797 sum += sum_block[(unsigned char) front[2]];
798 sum += sum_block[(unsigned char) front[3]]; /* type */
799 TOHEX (front + 4, sum);
800 if (bfd_write (front, 1, 6, abfd) != 6)
803 wrlen = end - start + 1;
804 if (bfd_write (start, 1, wrlen, abfd) != wrlen)
809 tekhex_write_object_contents (abfd)
816 struct data_struct *d;
822 /* And the raw data */
823 for (d = abfd->tdata.tekhex_data->data;
824 d != (struct data_struct *) NULL;
832 /* Write it in blocks of 32 bytes */
834 for (addr = 0; addr < CHUNK_MASK + 1; addr += span)
838 /* Check to see if necessary */
839 for (low = 0; !need && low < span; low++)
841 if (d->chunk_init[addr + low])
848 writevalue (&dst, addr + d->vma);
849 for (low = 0; low < span; low++)
851 TOHEX (dst, d->chunk_data[addr + low]);
854 out (abfd, '6', buffer, dst);
858 /* write all the section headers for the sections */
859 for (s = abfd->sections; s != (asection *) NULL; s = s->next)
863 writesym (&dst, s->name);
865 writevalue (&dst, s->vma);
866 writevalue (&dst, s->vma + s->_raw_size);
867 out (abfd, '3', buffer, dst);
870 /* And the symbols */
871 if (abfd->outsymbols)
873 for (p = abfd->outsymbols; *p; p++)
875 int section_code = bfd_decode_symclass (*p);
877 if (section_code != '?')
878 { /* do not include debug symbols */
882 writesym (&dst, s->section->name);
884 switch (section_code)
910 bfd_set_error (bfd_error_wrong_format);
914 writesym (&dst, s->name);
915 writevalue (&dst, s->value + s->section->vma);
916 out (abfd, '3', buffer, dst);
921 /* And the terminator */
922 if (bfd_write ("%0781010\n", 1, 9, abfd) != 9)
928 tekhex_sizeof_headers (abfd, exec)
929 bfd *abfd ATTRIBUTE_UNUSED;
930 boolean exec ATTRIBUTE_UNUSED;
937 tekhex_make_empty_symbol (abfd)
940 tekhex_symbol_type *new =
941 (tekhex_symbol_type *) bfd_zalloc (abfd, sizeof (struct tekhex_symbol_struct));
945 new->symbol.the_bfd = abfd;
946 new->prev = (struct tekhex_symbol_struct *) NULL;
947 return &(new->symbol);
951 tekhex_get_symbol_info (ignore_abfd, symbol, ret)
952 bfd *ignore_abfd ATTRIBUTE_UNUSED;
956 bfd_symbol_info (symbol, ret);
960 tekhex_print_symbol (ignore_abfd, filep, symbol, how)
961 bfd *ignore_abfd ATTRIBUTE_UNUSED;
964 bfd_print_symbol_type how;
966 FILE *file = (FILE *) filep;
970 case bfd_print_symbol_name:
971 fprintf (file, "%s", symbol->name);
973 case bfd_print_symbol_more:
976 case bfd_print_symbol_all:
978 CONST char *section_name = symbol->section->name;
980 bfd_print_symbol_vandf ((PTR) file, symbol);
982 fprintf (file, " %-5s %s",
989 #define tekhex_close_and_cleanup _bfd_generic_close_and_cleanup
990 #define tekhex_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
991 #define tekhex_new_section_hook _bfd_generic_new_section_hook
993 #define tekhex_bfd_is_local_label_name bfd_generic_is_local_label_name
994 #define tekhex_get_lineno _bfd_nosymbols_get_lineno
995 #define tekhex_find_nearest_line _bfd_nosymbols_find_nearest_line
996 #define tekhex_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
997 #define tekhex_read_minisymbols _bfd_generic_read_minisymbols
998 #define tekhex_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
1000 #define tekhex_bfd_get_relocated_section_contents \
1001 bfd_generic_get_relocated_section_contents
1002 #define tekhex_bfd_relax_section bfd_generic_relax_section
1003 #define tekhex_bfd_gc_sections bfd_generic_gc_sections
1004 #define tekhex_bfd_merge_sections bfd_generic_merge_sections
1005 #define tekhex_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
1006 #define tekhex_bfd_link_add_symbols _bfd_generic_link_add_symbols
1007 #define tekhex_bfd_final_link _bfd_generic_final_link
1008 #define tekhex_bfd_link_split_section _bfd_generic_link_split_section
1010 #define tekhex_get_section_contents_in_window \
1011 _bfd_generic_get_section_contents_in_window
1013 const bfd_target tekhex_vec =
1015 "tekhex", /* name */
1016 bfd_target_tekhex_flavour,
1017 BFD_ENDIAN_UNKNOWN, /* target byte order */
1018 BFD_ENDIAN_UNKNOWN, /* target headers byte order */
1019 (EXEC_P | /* object flags */
1020 HAS_SYMS | HAS_LINENO | HAS_DEBUG | HAS_RELOC | HAS_LOCALS |
1022 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
1023 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
1024 0, /* leading underscore */
1025 ' ', /* ar_pad_char */
1026 16, /* ar_max_namelen */
1027 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
1028 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
1029 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* data */
1030 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
1031 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
1032 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* hdrs */
1036 tekhex_object_p, /* bfd_check_format */
1043 _bfd_generic_mkarchive,
1046 { /* bfd_write_contents */
1048 tekhex_write_object_contents,
1049 _bfd_write_archive_contents,
1053 BFD_JUMP_TABLE_GENERIC (tekhex),
1054 BFD_JUMP_TABLE_COPY (_bfd_generic),
1055 BFD_JUMP_TABLE_CORE (_bfd_nocore),
1056 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
1057 BFD_JUMP_TABLE_SYMBOLS (tekhex),
1058 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
1059 BFD_JUMP_TABLE_WRITE (tekhex),
1060 BFD_JUMP_TABLE_LINK (tekhex),
1061 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),