]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/tekhex.c
Update copyright years
[thirdparty/binutils-gdb.git] / bfd / tekhex.c
CommitLineData
252b5132 1/* BFD backend for Extended Tektronix Hex Format objects.
4b95cf5c 2 Copyright (C) 1992-2014 Free Software Foundation, Inc.
252b5132
RH
3 Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
4
116c20d2 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
116c20d2
NC
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
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
116c20d2 10 (at your option) any later version.
252b5132 11
116c20d2
NC
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.
252b5132 16
116c20d2
NC
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
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
21
252b5132 22
116c20d2 23/* SUBSECTION
252b5132
RH
24 Tektronix Hex Format handling
25
116c20d2 26 DESCRIPTION
5bff4f56 27
252b5132
RH
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.
5bff4f56 31
7dee875e 32 It seems that the sections are described as being really big,
252b5132
RH
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
35 read in the file.
36
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.
41
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
45 create.
46 We read in the data into pages of CHUNK_MASK+1 size and read
47 them out from that whenever we need to.
48
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.
51
252b5132 52 A TekHex record looks like:
116c20d2 53 EXAMPLE
252b5132 54 %<block length><type><checksum><stuff><cr>
5bff4f56 55
116c20d2 56 DESCRIPTION
252b5132
RH
57 Where
58 o length
59 is the number of bytes in the record not including the % sign.
60 o type
61 is one of:
62 3) symbol record
63 6) data record
64 8) termination record
252b5132 65
116c20d2
NC
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. */
252b5132 68
252b5132 69#include "sysdep.h"
3db64b00 70#include "bfd.h"
252b5132
RH
71#include "libbfd.h"
72#include "libiberty.h"
73
74typedef struct
116c20d2
NC
75{
76 bfd_vma low;
77 bfd_vma high;
78} addr_range_type;
252b5132
RH
79
80typedef struct tekhex_symbol_struct
116c20d2
NC
81{
82 asymbol symbol;
83 struct tekhex_symbol_struct *prev;
84} tekhex_symbol_type;
252b5132
RH
85
86static const char digs[] = "0123456789ABCDEF";
87
88static char sum_block[256];
89
116c20d2
NC
90#define NOT_HEX 20
91#define NIBBLE(x) hex_value(x)
92#define HEX(buffer) ((NIBBLE ((buffer)[0]) << 4) + NIBBLE ((buffer)[1]))
93#define ISHEX(x) hex_p(x)
94#define TOHEX(d, x) \
95 (d)[1] = digs[(x) & 0xf]; \
96 (d)[0] = digs[((x)>>4)&0xf];
97
98/* Here's an example
99 %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
100 %1B3709T_SEGMENT1108FFFFFFFF
101 %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
102 %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
103 %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
104 %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
105 %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
106 %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
107 %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
108 %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
109 %2734D9T_SEGMENT8Bvoid$t15$151035_main10
110 %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
111 %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
112 %07 8 10 10
113
114 explanation:
115 %3A6C6480004E56FFFC4E717063B0AEFFFC6D0652AEFFFC60F24E5E4E75
116 ^ ^^ ^ ^-data
117 | || +------ 4 char integer 0x8000
118 | |+-------- checksum
119 | +--------- type 6 (data record)
120 +----------- length 3a chars
121 <---------------------- 3a (58 chars) ------------------->
122
123 %1B3709T_SEGMENT1108FFFFFFFF
124 ^ ^^ ^- 8 character integer 0xffffffff
125 | |+- 1 character integer 0
126 | +-- type 1 symbol (section definition)
127 +------------ 9 char symbol T_SEGMENT
128
129 %2B3AB9T_SEGMENT7Dgcc_compiled$1087hello$c10
130 %373829T_SEGMENT80int$t1$r1$$214741080char$t2$r2$0$12710
131 %373769T_SEGMENT80long$int$t3$r1$$1080unsigned$int$t4$10
132 %373CA9T_SEGMENT80long$unsigned$in1080short$int$t6$r1$10
133 %373049T_SEGMENT80long$long$int$t71080short$unsigned$i10
134 %373A29T_SEGMENT80long$long$unsign1080signed$char$t10$10
135 %373D69T_SEGMENT80unsigned$char$t11080float$t12$r1$4$010
136 %373D19T_SEGMENT80double$t13$r1$8$1080long$double$t14$10
137 %2734D9T_SEGMENT8Bvoid$t15$151035_main10
138 %2F3CA9T_SEGMENT81$1081$1681$1E81$21487main$F110
139 %2832F9T_SEGMENT83i$18FFFFFFFC81$1481$214
140 %0781010
141
142 Turns into
143 sac@thepub$ ./objdump -dx -m m68k f
144
145 f: file format tekhex
146 -----x--- 9/55728 -134219416 Sep 29 15:13 1995 f
147 architecture: UNKNOWN!, flags 0x00000010:
148 HAS_SYMS
149 start address 0x00000000
150 SECTION 0 [D00000000] : size 00020000 vma 00000000 align 2**0
151 ALLOC, LOAD
152 SECTION 1 [D00008000] : size 00002001 vma 00008000 align 2**0
153
154 SECTION 2 [T_SEGMENT] : size ffffffff vma 00000000 align 2**0
155
156 SYMBOL TABLE:
157 00000000 g T_SEGMENT gcc_compiled$
158 00000000 g T_SEGMENT hello$c
159 00000000 g T_SEGMENT int$t1$r1$$21474
160 00000000 g T_SEGMENT char$t2$r2$0$127
161 00000000 g T_SEGMENT long$int$t3$r1$$
162 00000000 g T_SEGMENT unsigned$int$t4$
163 00000000 g T_SEGMENT long$unsigned$in
164 00000000 g T_SEGMENT short$int$t6$r1$
165 00000000 g T_SEGMENT long$long$int$t7
166 00000000 g T_SEGMENT short$unsigned$i
167 00000000 g T_SEGMENT long$long$unsign
168 00000000 g T_SEGMENT signed$char$t10$
169 00000000 g T_SEGMENT unsigned$char$t1
170 00000000 g T_SEGMENT float$t12$r1$4$0
171 00000000 g T_SEGMENT double$t13$r1$8$
172 00000000 g T_SEGMENT long$double$t14$
173 00000000 g T_SEGMENT void$t15$15
174 00000000 g T_SEGMENT _main
175 00000000 g T_SEGMENT $
176 00000000 g T_SEGMENT $
177 00000000 g T_SEGMENT $
178 00000010 g T_SEGMENT $
179 00000000 g T_SEGMENT main$F1
180 fcffffff g T_SEGMENT i$1
181 00000000 g T_SEGMENT $
182 00000010 g T_SEGMENT $
183
184 RELOCATION RECORDS FOR [D00000000]: (none)
185
186 RELOCATION RECORDS FOR [D00008000]: (none)
187
188 RELOCATION RECORDS FOR [T_SEGMENT]: (none)
189
190 Disassembly of section D00000000:
191 ...
192 00008000 ($+)7ff0 linkw fp,#-4
193 00008004 ($+)7ff4 nop
194 00008006 ($+)7ff6 movel #99,d0
195 00008008 ($+)7ff8 cmpl fp@(-4),d0
196 0000800c ($+)7ffc blts 00008014 ($+)8004
197 0000800e ($+)7ffe addql #1,fp@(-4)
198 00008012 ($+)8002 bras 00008006 ($+)7ff6
199 00008014 ($+)8004 unlk fp
200 00008016 ($+)8006 rts
201 ... */
252b5132
RH
202
203static void
116c20d2 204tekhex_init (void)
252b5132
RH
205{
206 unsigned int i;
b34976b6 207 static bfd_boolean inited = FALSE;
252b5132
RH
208 int val;
209
82e51918 210 if (! inited)
252b5132 211 {
b34976b6 212 inited = TRUE;
252b5132
RH
213 hex_init ();
214 val = 0;
215 for (i = 0; i < 10; i++)
116c20d2
NC
216 sum_block[i + '0'] = val++;
217
252b5132 218 for (i = 'A'; i <= 'Z'; i++)
116c20d2
NC
219 sum_block[i] = val++;
220
252b5132
RH
221 sum_block['$'] = val++;
222 sum_block['%'] = val++;
223 sum_block['.'] = val++;
224 sum_block['_'] = val++;
225 for (i = 'a'; i <= 'z'; i++)
116c20d2 226 sum_block[i] = val++;
252b5132
RH
227 }
228}
229
116c20d2 230/* The maximum number of bytes on a line is FF. */
252b5132 231#define MAXCHUNK 0xff
116c20d2 232/* The number of bytes we fit onto a line on output. */
252b5132
RH
233#define CHUNK 21
234
235/* We cannot output our tekhexords as we see them, we have to glue them
236 together, this is done in this structure : */
237
238struct tekhex_data_list_struct
239{
240 unsigned char *data;
241 bfd_vma where;
242 bfd_size_type size;
243 struct tekhex_data_list_struct *next;
244
245};
246typedef struct tekhex_data_list_struct tekhex_data_list_type;
247
248#define CHUNK_MASK 0x1fff
249
250struct data_struct
116c20d2
NC
251{
252 char chunk_data[CHUNK_MASK + 1];
253 char chunk_init[CHUNK_MASK + 1];
254 bfd_vma vma;
255 struct data_struct *next;
256};
252b5132
RH
257
258typedef struct tekhex_data_struct
259{
260 tekhex_data_list_type *head;
261 unsigned int type;
262 struct tekhex_symbol_struct *symbols;
263 struct data_struct *data;
264} tdata_type;
265
266#define enda(x) (x->vma + x->size)
267
75b8939e
KK
268static bfd_boolean
269getvalue (char **srcp, bfd_vma *valuep)
252b5132
RH
270{
271 char *src = *srcp;
272 bfd_vma value = 0;
75b8939e
KK
273 unsigned int len;
274
275 if (!ISHEX (*src))
276 return FALSE;
252b5132 277
75b8939e 278 len = hex_value (*src++);
252b5132
RH
279 if (len == 0)
280 len = 16;
281 while (len--)
75b8939e
KK
282 {
283 if (!ISHEX (*src))
284 return FALSE;
285 value = value << 4 | hex_value (*src++);
286 }
116c20d2 287
252b5132 288 *srcp = src;
75b8939e
KK
289 *valuep = value;
290 return TRUE;
252b5132
RH
291}
292
75b8939e
KK
293static bfd_boolean
294getsym (char *dstp, char **srcp, unsigned int *lenp)
252b5132
RH
295{
296 char *src = *srcp;
297 unsigned int i;
75b8939e 298 unsigned int len;
68ffbac6 299
75b8939e
KK
300 if (!ISHEX (*src))
301 return FALSE;
252b5132 302
75b8939e 303 len = hex_value (*src++);
252b5132
RH
304 if (len == 0)
305 len = 16;
306 for (i = 0; i < len; i++)
307 dstp[i] = src[i];
308 dstp[i] = 0;
309 *srcp = src + i;
75b8939e
KK
310 *lenp = len;
311 return TRUE;
252b5132
RH
312}
313
314static struct data_struct *
116c20d2 315find_chunk (bfd *abfd, bfd_vma vma)
252b5132
RH
316{
317 struct data_struct *d = abfd->tdata.tekhex_data->data;
318
319 vma &= ~CHUNK_MASK;
320 while (d && (d->vma) != vma)
116c20d2
NC
321 d = d->next;
322
252b5132
RH
323 if (!d)
324 {
116c20d2 325 /* No chunk for this address, so make one up. */
a50b1753
NC
326 d = (struct data_struct *)
327 bfd_zalloc (abfd, (bfd_size_type) sizeof (struct data_struct));
252b5132 328
9bab7074 329 if (!d)
252b5132
RH
330 return NULL;
331
252b5132
RH
332 d->next = abfd->tdata.tekhex_data->data;
333 d->vma = vma;
334 abfd->tdata.tekhex_data->data = d;
335 }
336 return d;
337}
338
339static void
116c20d2 340insert_byte (bfd *abfd, int value, bfd_vma addr)
252b5132 341{
116c20d2 342 /* Find the chunk that this byte needs and put it in. */
252b5132
RH
343 struct data_struct *d = find_chunk (abfd, addr);
344
345 d->chunk_data[addr & CHUNK_MASK] = value;
346 d->chunk_init[addr & CHUNK_MASK] = 1;
347}
348
349/* The first pass is to find the names of all the sections, and see
116c20d2
NC
350 how big the data is. */
351
75b8939e 352static bfd_boolean
116c20d2 353first_phase (bfd *abfd, int type, char *src)
252b5132
RH
354{
355 asection *section = bfd_abs_section_ptr;
dc810e39 356 unsigned int len;
75b8939e 357 bfd_vma val;
116c20d2 358 char sym[17]; /* A symbol can only be 16chars long. */
252b5132
RH
359
360 switch (type)
361 {
362 case '6':
116c20d2 363 /* Data record - read it and store it. */
252b5132 364 {
75b8939e
KK
365 bfd_vma addr;
366
367 if (!getvalue (&src, &addr))
368 return FALSE;
252b5132
RH
369
370 while (*src)
371 {
372 insert_byte (abfd, HEX (src), addr);
373 src += 2;
374 addr++;
375 }
376 }
377
75b8939e 378 return TRUE;
252b5132 379 case '3':
116c20d2 380 /* Symbol record, read the segment. */
75b8939e
KK
381 if (!getsym (sym, &src, &len))
382 return FALSE;
252b5132 383 section = bfd_get_section_by_name (abfd, sym);
116c20d2 384 if (section == NULL)
252b5132 385 {
a50b1753 386 char *n = (char *) bfd_alloc (abfd, (bfd_size_type) len + 1);
252b5132
RH
387
388 if (!n)
75b8939e 389 return FALSE;
252b5132
RH
390 memcpy (n, sym, len + 1);
391 section = bfd_make_section (abfd, n);
814b5378
MS
392 if (section == NULL)
393 return FALSE;
252b5132
RH
394 }
395 while (*src)
396 {
397 switch (*src)
398 {
116c20d2 399 case '1': /* Section range. */
252b5132 400 src++;
75b8939e
KK
401 if (!getvalue (&src, &section->vma))
402 return FALSE;
403 if (!getvalue (&src, &val))
404 return FALSE;
405 section->size = val - section->vma;
252b5132
RH
406 section->flags = SEC_HAS_CONTENTS | SEC_LOAD | SEC_ALLOC;
407 break;
408 case '0':
409 case '2':
410 case '3':
411 case '4':
412 case '6':
413 case '7':
414 case '8':
116c20d2 415 /* Symbols, add to section. */
252b5132 416 {
dc810e39 417 bfd_size_type amt = sizeof (tekhex_symbol_type);
d3ce72d0
NC
418 tekhex_symbol_type *new_symbol = (tekhex_symbol_type *)
419 bfd_alloc (abfd, amt);
dc810e39 420 char stype = (*src);
252b5132 421
d3ce72d0 422 if (!new_symbol)
75b8939e 423 return FALSE;
d3ce72d0 424 new_symbol->symbol.the_bfd = abfd;
252b5132
RH
425 src++;
426 abfd->symcount++;
427 abfd->flags |= HAS_SYMS;
d3ce72d0
NC
428 new_symbol->prev = abfd->tdata.tekhex_data->symbols;
429 abfd->tdata.tekhex_data->symbols = new_symbol;
75b8939e
KK
430 if (!getsym (sym, &src, &len))
431 return FALSE;
d3ce72d0
NC
432 new_symbol->symbol.name = (const char *)
433 bfd_alloc (abfd, (bfd_size_type) len + 1);
434 if (!new_symbol->symbol.name)
75b8939e 435 return FALSE;
d3ce72d0
NC
436 memcpy ((char *) (new_symbol->symbol.name), sym, len + 1);
437 new_symbol->symbol.section = section;
dc810e39 438 if (stype <= '4')
d3ce72d0 439 new_symbol->symbol.flags = (BSF_GLOBAL | BSF_EXPORT);
252b5132 440 else
d3ce72d0 441 new_symbol->symbol.flags = BSF_LOCAL;
75b8939e
KK
442 if (!getvalue (&src, &val))
443 return FALSE;
d3ce72d0 444 new_symbol->symbol.value = val - section->vma;
ebe8b991 445 break;
252b5132 446 }
75b8939e
KK
447 default:
448 return FALSE;
252b5132
RH
449 }
450 }
451 }
75b8939e
KK
452
453 return TRUE;
252b5132
RH
454}
455
19852a2a 456/* Pass over a tekhex, calling one of the above functions on each
252b5132
RH
457 record. */
458
75b8939e
KK
459static bfd_boolean
460pass_over (bfd *abfd, bfd_boolean (*func) (bfd *, int, char *))
252b5132
RH
461{
462 unsigned int chars_on_line;
662e4701 463 bfd_boolean is_eof = FALSE;
252b5132 464
116c20d2 465 /* To the front of the file. */
252b5132 466 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
ebe8b991 467 return FALSE;
662e4701 468 while (! is_eof)
252b5132 469 {
ebe8b991 470 char src[MAXCHUNK];
252b5132
RH
471 char type;
472
116c20d2 473 /* Find first '%'. */
662e4701
L
474 is_eof = (bfd_boolean) (bfd_bread (src, (bfd_size_type) 1, abfd) != 1);
475 while (*src != '%' && !is_eof)
476 is_eof = (bfd_boolean) (bfd_bread (src, (bfd_size_type) 1, abfd) != 1);
116c20d2 477
662e4701 478 if (is_eof)
252b5132 479 break;
252b5132 480
116c20d2 481 /* Fetch the type and the length and the checksum. */
dc810e39 482 if (bfd_bread (src, (bfd_size_type) 5, abfd) != 5)
ebe8b991 483 return FALSE;
252b5132
RH
484
485 type = src[2];
486
487 if (!ISHEX (src[0]) || !ISHEX (src[1]))
488 break;
489
ebe8b991 490 /* Already read five chars. */
116c20d2 491 chars_on_line = HEX (src) - 5;
252b5132 492
ebe8b991
JJ
493 if (chars_on_line >= MAXCHUNK)
494 return FALSE;
495
dc810e39 496 if (bfd_bread (src, (bfd_size_type) chars_on_line, abfd) != chars_on_line)
ebe8b991 497 return FALSE;
116c20d2
NC
498
499 /* Put a null at the end. */
500 src[chars_on_line] = 0;
252b5132 501
75b8939e
KK
502 if (!func (abfd, type, src))
503 return FALSE;
252b5132 504 }
75b8939e
KK
505
506 return TRUE;
252b5132
RH
507}
508
509static long
116c20d2 510tekhex_canonicalize_symtab (bfd *abfd, asymbol **table)
252b5132
RH
511{
512 tekhex_symbol_type *p = abfd->tdata.tekhex_data->symbols;
513 unsigned int c = bfd_get_symcount (abfd);
514
515 table[c] = 0;
516 while (p)
517 {
518 table[--c] = &(p->symbol);
519 p = p->prev;
520 }
521
522 return bfd_get_symcount (abfd);
523}
524
525static long
116c20d2 526tekhex_get_symtab_upper_bound (bfd *abfd)
252b5132
RH
527{
528 return (abfd->symcount + 1) * (sizeof (struct tekhex_asymbol_struct *));
529
530}
531
b34976b6 532static bfd_boolean
116c20d2 533tekhex_mkobject (bfd *abfd)
252b5132 534{
dc810e39 535 tdata_type *tdata;
252b5132 536
a50b1753 537 tdata = (tdata_type *) bfd_alloc (abfd, (bfd_size_type) sizeof (tdata_type));
252b5132 538 if (!tdata)
b34976b6 539 return FALSE;
252b5132
RH
540 abfd->tdata.tekhex_data = tdata;
541 tdata->type = 1;
116c20d2
NC
542 tdata->head = NULL;
543 tdata->symbols = NULL;
544 tdata->data = NULL;
b34976b6 545 return TRUE;
252b5132
RH
546}
547
116c20d2
NC
548/* Return TRUE if the file looks like it's in TekHex format. Just look
549 for a percent sign and some hex digits. */
252b5132
RH
550
551static const bfd_target *
116c20d2 552tekhex_object_p (bfd *abfd)
252b5132
RH
553{
554 char b[4];
555
556 tekhex_init ();
557
558 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0
dc810e39 559 || bfd_bread (b, (bfd_size_type) 4, abfd) != 4)
252b5132
RH
560 return NULL;
561
562 if (b[0] != '%' || !ISHEX (b[1]) || !ISHEX (b[2]) || !ISHEX (b[3]))
116c20d2 563 return NULL;
252b5132
RH
564
565 tekhex_mkobject (abfd);
566
75b8939e
KK
567 if (!pass_over (abfd, first_phase))
568 return NULL;
569
252b5132
RH
570 return abfd->xvec;
571}
572
573static void
116c20d2
NC
574move_section_contents (bfd *abfd,
575 asection *section,
576 const void * locationp,
577 file_ptr offset,
578 bfd_size_type count,
579 bfd_boolean get)
252b5132
RH
580{
581 bfd_vma addr;
582 char *location = (char *) locationp;
116c20d2
NC
583 bfd_vma prev_number = 1; /* Nothing can have this as a high bit. */
584 struct data_struct *d = NULL;
252b5132 585
dc810e39 586 BFD_ASSERT (offset == 0);
252b5132
RH
587 for (addr = section->vma; count != 0; count--, addr++)
588 {
dc810e39
AM
589 /* Get high bits of address. */
590 bfd_vma chunk_number = addr & ~(bfd_vma) CHUNK_MASK;
252b5132
RH
591 bfd_vma low_bits = addr & CHUNK_MASK;
592
593 if (chunk_number != prev_number)
116c20d2
NC
594 /* Different chunk, so move pointer. */
595 d = find_chunk (abfd, chunk_number);
252b5132
RH
596
597 if (get)
598 {
599 if (d->chunk_init[low_bits])
116c20d2 600 *location = d->chunk_data[low_bits];
252b5132 601 else
116c20d2 602 *location = 0;
252b5132
RH
603 }
604 else
605 {
606 d->chunk_data[low_bits] = *location;
607 d->chunk_init[low_bits] = (*location != 0);
608 }
609
610 location++;
252b5132 611 }
252b5132
RH
612}
613
b34976b6 614static bfd_boolean
116c20d2
NC
615tekhex_get_section_contents (bfd *abfd,
616 asection *section,
617 void * locationp,
618 file_ptr offset,
619 bfd_size_type count)
252b5132
RH
620{
621 if (section->flags & (SEC_LOAD | SEC_ALLOC))
622 {
b34976b6
AM
623 move_section_contents (abfd, section, locationp, offset, count, TRUE);
624 return TRUE;
252b5132 625 }
116c20d2
NC
626
627 return FALSE;
252b5132
RH
628}
629
b34976b6 630static bfd_boolean
116c20d2
NC
631tekhex_set_arch_mach (bfd *abfd,
632 enum bfd_architecture arch,
633 unsigned long machine)
252b5132
RH
634{
635 return bfd_default_set_arch_mach (abfd, arch, machine);
636}
637
116c20d2 638/* We have to save up all the Tekhexords for a splurge before output. */
252b5132 639
b34976b6 640static bfd_boolean
116c20d2
NC
641tekhex_set_section_contents (bfd *abfd,
642 sec_ptr section,
643 const void * locationp,
644 file_ptr offset,
645 bfd_size_type bytes_to_do)
252b5132 646{
82e51918 647 if (! abfd->output_has_begun)
252b5132 648 {
116c20d2 649 /* The first time around, allocate enough sections to hold all the chunks. */
252b5132
RH
650 asection *s = abfd->sections;
651 bfd_vma vma;
652
653 for (s = abfd->sections; s; s = s->next)
654 {
655 if (s->flags & SEC_LOAD)
656 {
dc810e39 657 for (vma = s->vma & ~(bfd_vma) CHUNK_MASK;
eea6121a 658 vma < s->vma + s->size;
252b5132
RH
659 vma += CHUNK_MASK)
660 find_chunk (abfd, vma);
661 }
662 }
252b5132 663 }
116c20d2 664
252b5132
RH
665 if (section->flags & (SEC_LOAD | SEC_ALLOC))
666 {
dc810e39 667 move_section_contents (abfd, section, locationp, offset, bytes_to_do,
b34976b6
AM
668 FALSE);
669 return TRUE;
252b5132 670 }
252b5132 671
116c20d2 672 return FALSE;
252b5132
RH
673}
674
675static void
116c20d2 676writevalue (char **dst, bfd_vma value)
252b5132
RH
677{
678 char *p = *dst;
679 int len;
680 int shift;
681
682 for (len = 8, shift = 28; shift; shift -= 4, len--)
683 {
684 if ((value >> shift) & 0xf)
685 {
686 *p++ = len + '0';
687 while (len)
688 {
689 *p++ = digs[(value >> shift) & 0xf];
690 shift -= 4;
691 len--;
692 }
693 *dst = p;
694 return;
695
696 }
697 }
698 *p++ = '1';
699 *p++ = '0';
700 *dst = p;
701}
702
703static void
116c20d2 704writesym (char **dst, const char *sym)
252b5132
RH
705{
706 char *p = *dst;
707 int len = (sym ? strlen (sym) : 0);
708
709 if (len >= 16)
710 {
711 *p++ = '0';
712 len = 16;
713 }
252b5132
RH
714 else
715 {
716 if (len == 0)
717 {
718 *p++ = '1';
719 sym = "$";
720 len = 1;
721 }
722 else
116c20d2 723 *p++ = digs[len];
252b5132
RH
724 }
725
726 while (len--)
116c20d2
NC
727 *p++ = *sym++;
728
252b5132
RH
729 *dst = p;
730}
731
732static void
116c20d2 733out (bfd *abfd, int type, char *start, char *end)
252b5132
RH
734{
735 int sum = 0;
736 char *s;
737 char front[6];
738 bfd_size_type wrlen;
739
740 front[0] = '%';
741 TOHEX (front + 1, end - start + 5);
742 front[3] = type;
743
744 for (s = start; s < end; s++)
116c20d2 745 sum += sum_block[(unsigned char) *s];
252b5132 746
116c20d2 747 sum += sum_block[(unsigned char) front[1]]; /* Length. */
252b5132 748 sum += sum_block[(unsigned char) front[2]];
116c20d2 749 sum += sum_block[(unsigned char) front[3]]; /* Type. */
252b5132 750 TOHEX (front + 4, sum);
dc810e39 751 if (bfd_bwrite (front, (bfd_size_type) 6, abfd) != 6)
252b5132
RH
752 abort ();
753 end[0] = '\n';
754 wrlen = end - start + 1;
dc810e39 755 if (bfd_bwrite (start, wrlen, abfd) != wrlen)
252b5132
RH
756 abort ();
757}
758
b34976b6 759static bfd_boolean
116c20d2 760tekhex_write_object_contents (bfd *abfd)
252b5132 761{
252b5132
RH
762 char buffer[100];
763 asymbol **p;
764 asection *s;
765 struct data_struct *d;
766
767 tekhex_init ();
768
116c20d2 769 /* And the raw data. */
252b5132 770 for (d = abfd->tdata.tekhex_data->data;
116c20d2 771 d != NULL;
252b5132
RH
772 d = d->next)
773 {
774 int low;
775
dc810e39 776 const int span = 32;
252b5132
RH
777 int addr;
778
116c20d2 779 /* Write it in blocks of 32 bytes. */
252b5132
RH
780 for (addr = 0; addr < CHUNK_MASK + 1; addr += span)
781 {
782 int need = 0;
783
116c20d2 784 /* Check to see if necessary. */
252b5132 785 for (low = 0; !need && low < span; low++)
116c20d2
NC
786 if (d->chunk_init[addr + low])
787 need = 1;
788
252b5132
RH
789 if (need)
790 {
791 char *dst = buffer;
792
793 writevalue (&dst, addr + d->vma);
794 for (low = 0; low < span; low++)
795 {
796 TOHEX (dst, d->chunk_data[addr + low]);
797 dst += 2;
798 }
799 out (abfd, '6', buffer, dst);
800 }
801 }
802 }
116c20d2
NC
803
804 /* Write all the section headers for the sections. */
805 for (s = abfd->sections; s != NULL; s = s->next)
252b5132
RH
806 {
807 char *dst = buffer;
808
809 writesym (&dst, s->name);
810 *dst++ = '1';
811 writevalue (&dst, s->vma);
eea6121a 812 writevalue (&dst, s->vma + s->size);
252b5132
RH
813 out (abfd, '3', buffer, dst);
814 }
815
116c20d2 816 /* And the symbols. */
252b5132
RH
817 if (abfd->outsymbols)
818 {
819 for (p = abfd->outsymbols; *p; p++)
820 {
821 int section_code = bfd_decode_symclass (*p);
822
823 if (section_code != '?')
116c20d2
NC
824 {
825 /* Do not include debug symbols. */
dc810e39 826 asymbol *sym = *p;
252b5132
RH
827 char *dst = buffer;
828
dc810e39 829 writesym (&dst, sym->section->name);
252b5132
RH
830
831 switch (section_code)
832 {
833 case 'A':
834 *dst++ = '2';
835 break;
836 case 'a':
837 *dst++ = '6';
838 break;
839 case 'D':
840 case 'B':
841 case 'O':
842 *dst++ = '4';
843 break;
844 case 'd':
845 case 'b':
846 case 'o':
847 *dst++ = '8';
848 break;
849 case 'T':
850 *dst++ = '3';
851 break;
852 case 't':
853 *dst++ = '7';
854 break;
855 case 'C':
856 case 'U':
857 bfd_set_error (bfd_error_wrong_format);
b34976b6 858 return FALSE;
252b5132
RH
859 }
860
dc810e39
AM
861 writesym (&dst, sym->name);
862 writevalue (&dst, sym->value + sym->section->vma);
252b5132
RH
863 out (abfd, '3', buffer, dst);
864 }
865 }
866 }
867
116c20d2 868 /* And the terminator. */
dc810e39 869 if (bfd_bwrite ("%0781010\n", (bfd_size_type) 9, abfd) != 9)
252b5132 870 abort ();
b34976b6 871 return TRUE;
252b5132
RH
872}
873
874static int
116c20d2 875tekhex_sizeof_headers (bfd *abfd ATTRIBUTE_UNUSED,
a6b96beb 876 struct bfd_link_info *info ATTRIBUTE_UNUSED)
252b5132
RH
877{
878 return 0;
879}
880
881static asymbol *
116c20d2 882tekhex_make_empty_symbol (bfd *abfd)
252b5132 883{
dc810e39 884 bfd_size_type amt = sizeof (struct tekhex_symbol_struct);
d3ce72d0
NC
885 tekhex_symbol_type *new_symbol = (tekhex_symbol_type *) bfd_zalloc (abfd,
886 amt);
252b5132 887
d3ce72d0 888 if (!new_symbol)
252b5132 889 return NULL;
d3ce72d0
NC
890 new_symbol->symbol.the_bfd = abfd;
891 new_symbol->prev = NULL;
892 return &(new_symbol->symbol);
252b5132
RH
893}
894
895static void
116c20d2
NC
896tekhex_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
897 asymbol *symbol,
898 symbol_info *ret)
252b5132
RH
899{
900 bfd_symbol_info (symbol, ret);
901}
902
903static void
116c20d2
NC
904tekhex_print_symbol (bfd *abfd,
905 void * filep,
906 asymbol *symbol,
907 bfd_print_symbol_type how)
252b5132
RH
908{
909 FILE *file = (FILE *) filep;
910
911 switch (how)
912 {
913 case bfd_print_symbol_name:
914 fprintf (file, "%s", symbol->name);
915 break;
916 case bfd_print_symbol_more:
917 break;
918
919 case bfd_print_symbol_all:
920 {
dc810e39 921 const char *section_name = symbol->section->name;
252b5132 922
116c20d2 923 bfd_print_symbol_vandf (abfd, (void *) file, symbol);
252b5132
RH
924
925 fprintf (file, " %-5s %s",
116c20d2 926 section_name, symbol->name);
252b5132
RH
927 }
928 }
929}
930
116c20d2
NC
931#define tekhex_close_and_cleanup _bfd_generic_close_and_cleanup
932#define tekhex_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
933#define tekhex_new_section_hook _bfd_generic_new_section_hook
3c9458e9 934#define tekhex_bfd_is_target_special_symbol ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
116c20d2
NC
935#define tekhex_bfd_is_local_label_name bfd_generic_is_local_label_name
936#define tekhex_get_lineno _bfd_nosymbols_get_lineno
937#define tekhex_find_nearest_line _bfd_nosymbols_find_nearest_line
4ab527b0 938#define tekhex_find_inliner_info _bfd_nosymbols_find_inliner_info
116c20d2
NC
939#define tekhex_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
940#define tekhex_read_minisymbols _bfd_generic_read_minisymbols
941#define tekhex_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
942#define tekhex_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
943#define tekhex_bfd_relax_section bfd_generic_relax_section
944#define tekhex_bfd_gc_sections bfd_generic_gc_sections
ae17ab41 945#define tekhex_bfd_lookup_section_flags bfd_generic_lookup_section_flags
116c20d2
NC
946#define tekhex_bfd_merge_sections bfd_generic_merge_sections
947#define tekhex_bfd_is_group_section bfd_generic_is_group_section
948#define tekhex_bfd_discard_group bfd_generic_discard_group
949#define tekhex_section_already_linked _bfd_generic_section_already_linked
3023e3f6 950#define tekhex_bfd_define_common_symbol bfd_generic_define_common_symbol
116c20d2
NC
951#define tekhex_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
952#define tekhex_bfd_link_hash_table_free _bfd_generic_link_hash_table_free
953#define tekhex_bfd_link_add_symbols _bfd_generic_link_add_symbols
954#define tekhex_bfd_link_just_syms _bfd_generic_link_just_syms
1338dd10
PB
955#define tekhex_bfd_copy_link_hash_symbol_type \
956 _bfd_generic_copy_link_hash_symbol_type
116c20d2
NC
957#define tekhex_bfd_final_link _bfd_generic_final_link
958#define tekhex_bfd_link_split_section _bfd_generic_link_split_section
959#define tekhex_get_section_contents_in_window _bfd_generic_get_section_contents_in_window
252b5132
RH
960
961const bfd_target tekhex_vec =
962{
116c20d2 963 "tekhex", /* Name. */
252b5132 964 bfd_target_tekhex_flavour,
116c20d2
NC
965 BFD_ENDIAN_UNKNOWN, /* Target byte order. */
966 BFD_ENDIAN_UNKNOWN, /* Target headers byte order. */
967 (EXEC_P | /* Object flags. */
968 HAS_SYMS | HAS_LINENO | HAS_DEBUG |
969 HAS_RELOC | HAS_LOCALS | WP_TEXT | D_PAGED),
252b5132 970 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
116c20d2
NC
971 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* Section flags. */
972 0, /* Leading underscore. */
973 ' ', /* AR_pad_char. */
974 16, /* AR_max_namelen. */
0aabe54e 975 0, /* match priority. */
252b5132
RH
976 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
977 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
116c20d2 978 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Data. */
252b5132
RH
979 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
980 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
116c20d2 981 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Headers. */
252b5132
RH
982
983 {
984 _bfd_dummy_target,
116c20d2 985 tekhex_object_p, /* bfd_check_format. */
252b5132
RH
986 _bfd_dummy_target,
987 _bfd_dummy_target,
988 },
989 {
990 bfd_false,
991 tekhex_mkobject,
992 _bfd_generic_mkarchive,
993 bfd_false,
994 },
116c20d2 995 { /* bfd_write_contents. */
252b5132
RH
996 bfd_false,
997 tekhex_write_object_contents,
998 _bfd_write_archive_contents,
999 bfd_false,
1000 },
1001
1002 BFD_JUMP_TABLE_GENERIC (tekhex),
1003 BFD_JUMP_TABLE_COPY (_bfd_generic),
1004 BFD_JUMP_TABLE_CORE (_bfd_nocore),
1005 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
1006 BFD_JUMP_TABLE_SYMBOLS (tekhex),
1007 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
1008 BFD_JUMP_TABLE_WRITE (tekhex),
1009 BFD_JUMP_TABLE_LINK (tekhex),
1010 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
1011
c3c89269 1012 NULL,
5bff4f56 1013
116c20d2 1014 NULL
252b5132 1015};