PR ld/11843
[binutils.git] / bfd / verilog.c
blob551e5c42803f97b8f0c87dd68da7e265e07f5fde
1 /* BFD back-end for verilog hex memory dump files.
2 Copyright 2009, 2010
3 Free Software Foundation, Inc.
4 Written by Anthony Green <green@moxielogic.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 3 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., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
24 /* SUBSECTION
25 Verilog hex memory file handling
27 DESCRIPTION
29 Verilog hex memory files cannot hold anything but addresses
30 and data, so that's all that we implement.
32 The syntax of the text file is described in the IEEE standard
33 for Verilog. Briefly, the file contains two types of tokens:
34 data and optional addresses. The tokens are separated by
35 whitespace and comments. Comments may be single line or
36 multiline, using syntax similar to C++. Addresses are
37 specified by a leading "at" character (@) and are always
38 hexadecimal strings. Data and addresses may contain
39 underscore (_) characters.
41 If no address is specified, the data is assumed to start at
42 address 0. Similarly, if data exists before the first
43 specified address, then that data is assumed to start at
44 address 0.
47 EXAMPLE
48 @1000
49 01 ae 3f 45 12
51 DESCRIPTION
52 @1000 specifies the starting address for the memory data.
53 The following characters describe the 5 bytes at 0x1000. */
56 #include "sysdep.h"
57 #include "bfd.h"
58 #include "libbfd.h"
59 #include "libiberty.h"
60 #include "safe-ctype.h"
62 /* Macros for converting between hex and binary. */
64 static const char digs[] = "0123456789ABCDEF";
66 #define NIBBLE(x) hex_value(x)
67 #define HEX(buffer) ((NIBBLE ((buffer)[0])<<4) + NIBBLE ((buffer)[1]))
68 #define TOHEX(d, x) \
69 d[1] = digs[(x) & 0xf]; \
70 d[0] = digs[((x) >> 4) & 0xf];
72 /* When writing a verilog memory dump file, we write them in the order
73 in which they appear in memory. This structure is used to hold them
74 in memory. */
76 struct verilog_data_list_struct
78 struct verilog_data_list_struct *next;
79 bfd_byte * data;
80 bfd_vma where;
81 bfd_size_type size;
84 typedef struct verilog_data_list_struct verilog_data_list_type;
86 /* The verilog tdata information. */
88 typedef struct verilog_data_struct
90 verilog_data_list_type *head;
91 verilog_data_list_type *tail;
93 tdata_type;
95 static bfd_boolean
96 verilog_set_arch_mach (bfd *abfd, enum bfd_architecture arch, unsigned long mach)
98 if (arch != bfd_arch_unknown)
99 return bfd_default_set_arch_mach (abfd, arch, mach);
101 abfd->arch_info = & bfd_default_arch_struct;
102 return TRUE;
105 /* We have to save up all the outpu for a splurge before output. */
107 static bfd_boolean
108 verilog_set_section_contents (bfd *abfd,
109 sec_ptr section,
110 const void * location,
111 file_ptr offset,
112 bfd_size_type bytes_to_do)
114 tdata_type *tdata = abfd->tdata.verilog_data;
115 verilog_data_list_type *entry;
117 entry = (verilog_data_list_type *) bfd_alloc (abfd, sizeof (* entry));
118 if (entry == NULL)
119 return FALSE;
121 if (bytes_to_do
122 && (section->flags & SEC_ALLOC)
123 && (section->flags & SEC_LOAD))
125 bfd_byte *data;
127 data = (bfd_byte *) bfd_alloc (abfd, bytes_to_do);
128 if (data == NULL)
129 return FALSE;
130 memcpy ((void *) data, location, (size_t) bytes_to_do);
132 entry->data = data;
133 entry->where = section->lma + offset;
134 entry->size = bytes_to_do;
136 /* Sort the records by address. Optimize for the common case of
137 adding a record to the end of the list. */
138 if (tdata->tail != NULL
139 && entry->where >= tdata->tail->where)
141 tdata->tail->next = entry;
142 entry->next = NULL;
143 tdata->tail = entry;
145 else
147 verilog_data_list_type **look;
149 for (look = &tdata->head;
150 *look != NULL && (*look)->where < entry->where;
151 look = &(*look)->next)
153 entry->next = *look;
154 *look = entry;
155 if (entry->next == NULL)
156 tdata->tail = entry;
159 return TRUE;
162 static bfd_boolean
163 verilog_write_address (bfd *abfd, bfd_vma address)
165 char buffer[12];
166 char *dst = buffer;
167 bfd_size_type wrlen;
169 /* Write the address. */
170 *dst++ = '@';
171 TOHEX (dst, (address >> 24));
172 dst += 2;
173 TOHEX (dst, (address >> 16));
174 dst += 2;
175 TOHEX (dst, (address >> 8));
176 dst += 2;
177 TOHEX (dst, (address));
178 dst += 2;
179 *dst++ = '\r';
180 *dst++ = '\n';
181 wrlen = dst - buffer;
183 return bfd_bwrite ((void *) buffer, wrlen, abfd) == wrlen;
186 /* Write a record of type, of the supplied number of bytes. The
187 supplied bytes and length don't have a checksum. That's worked out
188 here. */
190 static bfd_boolean
191 verilog_write_record (bfd *abfd,
192 const bfd_byte *data,
193 const bfd_byte *end)
195 char buffer[48];
196 const bfd_byte *src = data;
197 char *dst = buffer;
198 bfd_size_type wrlen;
200 /* Write the data. */
201 for (src = data; src < end; src++)
203 TOHEX (dst, *src);
204 dst += 2;
205 *dst++ = ' ';
207 *dst++ = '\r';
208 *dst++ = '\n';
209 wrlen = dst - buffer;
211 return bfd_bwrite ((void *) buffer, wrlen, abfd) == wrlen;
214 static bfd_boolean
215 verilog_write_section (bfd *abfd,
216 tdata_type *tdata ATTRIBUTE_UNUSED,
217 verilog_data_list_type *list)
219 unsigned int octets_written = 0;
220 bfd_byte *location = list->data;
222 verilog_write_address (abfd, list->where);
223 while (octets_written < list->size)
225 unsigned int octets_this_chunk = list->size - octets_written;
227 if (octets_this_chunk > 16)
228 octets_this_chunk = 16;
230 if (! verilog_write_record (abfd,
231 location,
232 location + octets_this_chunk))
233 return FALSE;
235 octets_written += octets_this_chunk;
236 location += octets_this_chunk;
239 return TRUE;
242 static bfd_boolean
243 verilog_write_object_contents (bfd *abfd)
245 tdata_type *tdata = abfd->tdata.verilog_data;
246 verilog_data_list_type *list;
248 /* Now wander though all the sections provided and output them. */
249 list = tdata->head;
251 while (list != (verilog_data_list_type *) NULL)
253 if (! verilog_write_section (abfd, tdata, list))
254 return FALSE;
255 list = list->next;
257 return TRUE;
260 /* Initialize by filling in the hex conversion array. */
262 static void
263 verilog_init (void)
265 static bfd_boolean inited = FALSE;
267 if (! inited)
269 inited = TRUE;
270 hex_init ();
274 /* Set up the verilog tdata information. */
276 static bfd_boolean
277 verilog_mkobject (bfd *abfd)
279 tdata_type *tdata;
281 verilog_init ();
283 tdata = (tdata_type *) bfd_alloc (abfd, sizeof (tdata_type));
284 if (tdata == NULL)
285 return FALSE;
287 abfd->tdata.verilog_data = tdata;
288 tdata->head = NULL;
289 tdata->tail = NULL;
291 return TRUE;
294 #define verilog_close_and_cleanup _bfd_generic_close_and_cleanup
295 #define verilog_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
296 #define verilog_new_section_hook _bfd_generic_new_section_hook
297 #define verilog_bfd_is_target_special_symbol ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
298 #define verilog_bfd_is_local_label_name bfd_generic_is_local_label_name
299 #define verilog_get_lineno _bfd_nosymbols_get_lineno
300 #define verilog_find_nearest_line _bfd_nosymbols_find_nearest_line
301 #define verilog_find_inliner_info _bfd_nosymbols_find_inliner_info
302 #define verilog_make_empty_symbol _bfd_generic_make_empty_symbol
303 #define verilog_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
304 #define verilog_read_minisymbols _bfd_generic_read_minisymbols
305 #define verilog_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
306 #define verilog_get_section_contents_in_window _bfd_generic_get_section_contents_in_window
307 #define verilog_bfd_get_relocated_section_contents bfd_generic_get_relocated_section_contents
308 #define verilog_bfd_relax_section bfd_generic_relax_section
309 #define verilog_bfd_gc_sections bfd_generic_gc_sections
310 #define verilog_bfd_merge_sections bfd_generic_merge_sections
311 #define verilog_bfd_is_group_section bfd_generic_is_group_section
312 #define verilog_bfd_discard_group bfd_generic_discard_group
313 #define verilog_section_already_linked _bfd_generic_section_already_linked
314 #define verilog_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
315 #define verilog_bfd_link_hash_table_free _bfd_generic_link_hash_table_free
316 #define verilog_bfd_link_add_symbols _bfd_generic_link_add_symbols
317 #define verilog_bfd_link_just_syms _bfd_generic_link_just_syms
318 #define verilog_bfd_final_link _bfd_generic_final_link
319 #define verilog_bfd_link_split_section _bfd_generic_link_split_section
321 const bfd_target verilog_vec =
323 "verilog", /* Name. */
324 bfd_target_verilog_flavour,
325 BFD_ENDIAN_UNKNOWN, /* Target byte order. */
326 BFD_ENDIAN_UNKNOWN, /* Target headers byte order. */
327 (HAS_RELOC | EXEC_P | /* Object flags. */
328 HAS_LINENO | HAS_DEBUG |
329 HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),
330 (SEC_CODE | SEC_DATA | SEC_ROM | SEC_HAS_CONTENTS
331 | SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* Section flags. */
332 0, /* Leading underscore. */
333 ' ', /* AR_pad_char. */
334 16, /* AR_max_namelen. */
335 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
336 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
337 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Data. */
338 bfd_getb64, bfd_getb_signed_64, bfd_putb64,
339 bfd_getb32, bfd_getb_signed_32, bfd_putb32,
340 bfd_getb16, bfd_getb_signed_16, bfd_putb16, /* Hdrs. */
343 _bfd_dummy_target,
344 _bfd_dummy_target,
345 _bfd_dummy_target,
346 _bfd_dummy_target,
349 bfd_false,
350 verilog_mkobject,
351 bfd_false,
352 bfd_false,
354 { /* bfd_write_contents. */
355 bfd_false,
356 verilog_write_object_contents,
357 bfd_false,
358 bfd_false,
361 BFD_JUMP_TABLE_GENERIC (_bfd_generic),
362 BFD_JUMP_TABLE_COPY (_bfd_generic),
363 BFD_JUMP_TABLE_CORE (_bfd_nocore),
364 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive),
365 BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols),
366 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs),
367 BFD_JUMP_TABLE_WRITE (verilog),
368 BFD_JUMP_TABLE_LINK (_bfd_nolink),
369 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
371 NULL,
373 NULL