]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/cli/cli-dump.c
update copyright year range in GDB files
[thirdparty/binutils-gdb.git] / gdb / cli / cli-dump.c
CommitLineData
f02df580
MS
1/* Dump-to-file commands, for GDB, the GNU debugger.
2
61baf725 3 Copyright (C) 2002-2017 Free Software Foundation, Inc.
f02df580
MS
4
5 Contributed by Red Hat.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
f02df580
MS
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
f02df580
MS
21
22#include "defs.h"
f02df580
MS
23#include "cli/cli-decode.h"
24#include "cli/cli-cmds.h"
25#include "value.h"
26#include "completer.h"
f02df580
MS
27#include <ctype.h>
28#include "target.h"
dbda9972 29#include "readline/readline.h"
c0ac0ec7 30#include "gdbcore.h"
e9cafbcc 31#include "cli/cli-utils.h"
cbb099e8 32#include "gdb_bfd.h"
614c279d 33#include "filestuff.h"
f02df580 34
f02df580 35
93db0d79
TT
36static const char *
37scan_expression_with_cleanup (const char **cmd, const char *def)
f02df580
MS
38{
39 if ((*cmd) == NULL || (**cmd) == '\0')
40 {
41 char *exp = xstrdup (def);
cdb27c12 42
f02df580
MS
43 make_cleanup (xfree, exp);
44 return exp;
45 }
46 else
47 {
48 char *exp;
93db0d79 49 const char *end;
f02df580
MS
50
51 end = (*cmd) + strcspn (*cmd, " \t");
52 exp = savestring ((*cmd), end - (*cmd));
53 make_cleanup (xfree, exp);
93db0d79 54 (*cmd) = skip_spaces_const (end);
f02df580
MS
55 return exp;
56 }
57}
58
59
db229724 60static char *
93db0d79 61scan_filename_with_cleanup (const char **cmd, const char *defname)
f02df580
MS
62{
63 char *filename;
64 char *fullname;
65
66 /* FIXME: Need to get the ``/a(ppend)'' flag from somewhere. */
67
68 /* File. */
69 if ((*cmd) == NULL)
70 {
71 if (defname == NULL)
8a3fe4f8 72 error (_("Missing filename."));
f02df580
MS
73 filename = xstrdup (defname);
74 make_cleanup (xfree, filename);
75 }
76 else
77 {
78 /* FIXME: should parse a possibly quoted string. */
93db0d79 79 const char *end;
f02df580 80
93db0d79 81 (*cmd) = skip_spaces_const (*cmd);
f02df580
MS
82 end = *cmd + strcspn (*cmd, " \t");
83 filename = savestring ((*cmd), end - (*cmd));
84 make_cleanup (xfree, filename);
93db0d79 85 (*cmd) = skip_spaces_const (end);
f02df580
MS
86 }
87 gdb_assert (filename != NULL);
88
89 fullname = tilde_expand (filename);
90 make_cleanup (xfree, fullname);
91
92 return fullname;
93}
94
db229724 95static FILE *
c26b8e3b 96fopen_with_cleanup (const char *filename, const char *mode)
f02df580 97{
614c279d 98 FILE *file = gdb_fopen_cloexec (filename, mode);
cdb27c12 99
f02df580
MS
100 if (file == NULL)
101 perror_with_name (filename);
102 make_cleanup_fclose (file);
103 return file;
104}
105
106static bfd *
107bfd_openr_with_cleanup (const char *filename, const char *target)
108{
109 bfd *ibfd;
110
64c31149 111 ibfd = gdb_bfd_openr (filename, target);
5cb316ef 112 if (ibfd == NULL)
8a3fe4f8 113 error (_("Failed to open %s: %s."), filename,
f02df580
MS
114 bfd_errmsg (bfd_get_error ()));
115
f9a062ff 116 make_cleanup_bfd_unref (ibfd);
f02df580 117 if (!bfd_check_format (ibfd, bfd_object))
8a3fe4f8 118 error (_("'%s' is not a recognized file format."), filename);
f02df580
MS
119
120 return ibfd;
121}
122
123static bfd *
c26b8e3b
AC
124bfd_openw_with_cleanup (const char *filename, const char *target,
125 const char *mode)
f02df580
MS
126{
127 bfd *obfd;
128
129 if (*mode == 'w') /* Write: create new file */
130 {
64c31149 131 obfd = gdb_bfd_openw (filename, target);
5cb316ef 132 if (obfd == NULL)
8a3fe4f8 133 error (_("Failed to open %s: %s."), filename,
f02df580 134 bfd_errmsg (bfd_get_error ()));
f9a062ff 135 make_cleanup_bfd_unref (obfd);
f02df580 136 if (!bfd_set_format (obfd, bfd_object))
8a3fe4f8 137 error (_("bfd_openw_with_cleanup: %s."), bfd_errmsg (bfd_get_error ()));
f02df580 138 }
ebcd3b23
MS
139 else if (*mode == 'a') /* Append to existing file. */
140 { /* FIXME -- doesn't work... */
8a3fe4f8 141 error (_("bfd_openw does not work with append."));
f02df580
MS
142 }
143 else
8a3fe4f8 144 error (_("bfd_openw_with_cleanup: unknown mode %s."), mode);
f02df580
MS
145
146 return obfd;
147}
148
28578e6b
YQ
149static struct cmd_list_element *dump_cmdlist;
150static struct cmd_list_element *append_cmdlist;
151static struct cmd_list_element *srec_cmdlist;
152static struct cmd_list_element *ihex_cmdlist;
cf75d6c3 153static struct cmd_list_element *verilog_cmdlist;
28578e6b
YQ
154static struct cmd_list_element *tekhex_cmdlist;
155static struct cmd_list_element *binary_dump_cmdlist;
156static struct cmd_list_element *binary_append_cmdlist;
f02df580
MS
157
158static void
159dump_command (char *cmd, int from_tty)
160{
a3f17187 161 printf_unfiltered (_("\"dump\" must be followed by a subcommand.\n\n"));
635c7e8a 162 help_list (dump_cmdlist, "dump ", all_commands, gdb_stdout);
f02df580
MS
163}
164
165static void
166append_command (char *cmd, int from_tty)
167{
a3f17187 168 printf_unfiltered (_("\"append\" must be followed by a subcommand.\n\n"));
635c7e8a 169 help_list (dump_cmdlist, "append ", all_commands, gdb_stdout);
f02df580
MS
170}
171
172static void
c26b8e3b 173dump_binary_file (const char *filename, const char *mode,
5005c8a9 174 const bfd_byte *buf, ULONGEST len)
f02df580
MS
175{
176 FILE *file;
177 int status;
178
179 file = fopen_with_cleanup (filename, mode);
180 status = fwrite (buf, len, 1, file);
181 if (status != 1)
182 perror_with_name (filename);
183}
184
185static void
c26b8e3b
AC
186dump_bfd_file (const char *filename, const char *mode,
187 const char *target, CORE_ADDR vaddr,
5005c8a9 188 const bfd_byte *buf, ULONGEST len)
f02df580
MS
189{
190 bfd *obfd;
191 asection *osection;
192
193 obfd = bfd_openw_with_cleanup (filename, target, mode);
194 osection = bfd_make_section_anyway (obfd, ".newsec");
195 bfd_set_section_size (obfd, osection, len);
196 bfd_set_section_vma (obfd, osection, vaddr);
197 bfd_set_section_alignment (obfd, osection, 0);
e9c55a7b
AC
198 bfd_set_section_flags (obfd, osection, (SEC_HAS_CONTENTS
199 | SEC_ALLOC
200 | SEC_LOAD));
f02df580 201 osection->entsize = 0;
53624a93
MS
202 if (!bfd_set_section_contents (obfd, osection, buf, 0, len))
203 warning (_("writing dump file '%s' (%s)"), filename,
204 bfd_errmsg (bfd_get_error ()));
f02df580
MS
205}
206
207static void
93db0d79 208dump_memory_to_file (const char *cmd, const char *mode, const char *file_format)
f02df580
MS
209{
210 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
211 CORE_ADDR lo;
212 CORE_ADDR hi;
213 ULONGEST count;
93db0d79 214 const char *filename;
93db0d79
TT
215 const char *lo_exp;
216 const char *hi_exp;
f02df580
MS
217
218 /* Open the file. */
219 filename = scan_filename_with_cleanup (&cmd, NULL);
220
221 /* Find the low address. */
222 if (cmd == NULL || *cmd == '\0')
8a3fe4f8 223 error (_("Missing start address."));
f02df580
MS
224 lo_exp = scan_expression_with_cleanup (&cmd, NULL);
225
226 /* Find the second address - rest of line. */
227 if (cmd == NULL || *cmd == '\0')
8a3fe4f8 228 error (_("Missing stop address."));
f02df580
MS
229 hi_exp = cmd;
230
231 lo = parse_and_eval_address (lo_exp);
232 hi = parse_and_eval_address (hi_exp);
233 if (hi <= lo)
8a3fe4f8 234 error (_("Invalid memory address range (start >= end)."));
f02df580
MS
235 count = hi - lo;
236
237 /* FIXME: Should use read_memory_partial() and a magic blocking
238 value. */
b22e99fd 239 std::unique_ptr<gdb_byte[]> buf (new gdb_byte[count]);
cd9da5b0 240 read_memory (lo, buf.get (), count);
f02df580
MS
241
242 /* Have everything. Open/write the data. */
243 if (file_format == NULL || strcmp (file_format, "binary") == 0)
244 {
cd9da5b0 245 dump_binary_file (filename, mode, buf.get (), count);
f02df580
MS
246 }
247 else
248 {
cd9da5b0 249 dump_bfd_file (filename, mode, file_format, lo, buf.get (), count);
f02df580
MS
250 }
251
252 do_cleanups (old_cleanups);
253}
254
255static void
256dump_memory_command (char *cmd, char *mode)
257{
258 dump_memory_to_file (cmd, mode, "binary");
259}
260
261static void
93db0d79 262dump_value_to_file (const char *cmd, const char *mode, const char *file_format)
f02df580
MS
263{
264 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
265 struct value *val;
93db0d79 266 const char *filename;
f02df580
MS
267
268 /* Open the file. */
269 filename = scan_filename_with_cleanup (&cmd, NULL);
270
271 /* Find the value. */
272 if (cmd == NULL || *cmd == '\0')
8a3fe4f8 273 error (_("No value to %s."), *mode == 'a' ? "append" : "dump");
f02df580
MS
274 val = parse_and_eval (cmd);
275 if (val == NULL)
8a3fe4f8 276 error (_("Invalid expression."));
f02df580
MS
277
278 /* Have everything. Open/write the data. */
279 if (file_format == NULL || strcmp (file_format, "binary") == 0)
280 {
0fd88904 281 dump_binary_file (filename, mode, value_contents (val),
df407dfe 282 TYPE_LENGTH (value_type (val)));
f02df580
MS
283 }
284 else
285 {
286 CORE_ADDR vaddr;
287
288 if (VALUE_LVAL (val))
289 {
42ae5230 290 vaddr = value_address (val);
f02df580
MS
291 }
292 else
293 {
294 vaddr = 0;
8a3fe4f8 295 warning (_("value is not an lval: address assumed to be zero"));
f02df580
MS
296 }
297
298 dump_bfd_file (filename, mode, file_format, vaddr,
0fd88904 299 value_contents (val),
df407dfe 300 TYPE_LENGTH (value_type (val)));
f02df580
MS
301 }
302
303 do_cleanups (old_cleanups);
304}
305
306static void
307dump_value_command (char *cmd, char *mode)
308{
309 dump_value_to_file (cmd, mode, "binary");
310}
311
f02df580
MS
312static void
313dump_srec_memory (char *args, int from_tty)
314{
5d1d95de 315 dump_memory_to_file (args, FOPEN_WB, "srec");
f02df580
MS
316}
317
318static void
319dump_srec_value (char *args, int from_tty)
320{
5d1d95de 321 dump_value_to_file (args, FOPEN_WB, "srec");
f02df580
MS
322}
323
324static void
325dump_ihex_memory (char *args, int from_tty)
326{
5d1d95de 327 dump_memory_to_file (args, FOPEN_WB, "ihex");
f02df580
MS
328}
329
330static void
331dump_ihex_value (char *args, int from_tty)
332{
5d1d95de 333 dump_value_to_file (args, FOPEN_WB, "ihex");
f02df580
MS
334}
335
cf75d6c3
AB
336static void
337dump_verilog_memory (char *args, int from_tty)
338{
339 dump_memory_to_file (args, FOPEN_WB, "verilog");
340}
341
342static void
343dump_verilog_value (char *args, int from_tty)
344{
345 dump_value_to_file (args, FOPEN_WB, "verilog");
346}
347
f02df580
MS
348static void
349dump_tekhex_memory (char *args, int from_tty)
350{
5d1d95de 351 dump_memory_to_file (args, FOPEN_WB, "tekhex");
f02df580
MS
352}
353
354static void
355dump_tekhex_value (char *args, int from_tty)
356{
5d1d95de 357 dump_value_to_file (args, FOPEN_WB, "tekhex");
f02df580
MS
358}
359
360static void
361dump_binary_memory (char *args, int from_tty)
362{
5d1d95de 363 dump_memory_to_file (args, FOPEN_WB, "binary");
f02df580
MS
364}
365
366static void
367dump_binary_value (char *args, int from_tty)
368{
5d1d95de 369 dump_value_to_file (args, FOPEN_WB, "binary");
f02df580
MS
370}
371
372static void
373append_binary_memory (char *args, int from_tty)
374{
5d1d95de 375 dump_memory_to_file (args, FOPEN_AB, "binary");
f02df580
MS
376}
377
378static void
379append_binary_value (char *args, int from_tty)
380{
5d1d95de 381 dump_value_to_file (args, FOPEN_AB, "binary");
f02df580
MS
382}
383
384struct dump_context
385{
386 void (*func) (char *cmd, char *mode);
387 char *mode;
388};
389
390static void
391call_dump_func (struct cmd_list_element *c, char *args, int from_tty)
392{
9a3c8263 393 struct dump_context *d = (struct dump_context *) get_cmd_context (c);
cdb27c12 394
f02df580
MS
395 d->func (args, d->mode);
396}
397
db229724 398static void
f02df580
MS
399add_dump_command (char *name, void (*func) (char *args, char *mode),
400 char *descr)
401
402{
403 struct cmd_list_element *c;
404 struct dump_context *d;
405
406 c = add_cmd (name, all_commands, NULL, descr, &dump_cmdlist);
407 c->completer = filename_completer;
70ba0933 408 d = XNEW (struct dump_context);
f02df580 409 d->func = func;
5d1d95de 410 d->mode = FOPEN_WB;
f02df580
MS
411 set_cmd_context (c, d);
412 c->func = call_dump_func;
413
414 c = add_cmd (name, all_commands, NULL, descr, &append_cmdlist);
415 c->completer = filename_completer;
70ba0933 416 d = XNEW (struct dump_context);
f02df580 417 d->func = func;
5d1d95de 418 d->mode = FOPEN_AB;
f02df580
MS
419 set_cmd_context (c, d);
420 c->func = call_dump_func;
421
cb1a6d5f 422 /* Replace "Dump " at start of docstring with "Append " (borrowed
eefe576e 423 from [deleted] deprecated_add_show_from_set). */
f02df580
MS
424 if ( c->doc[0] == 'W'
425 && c->doc[1] == 'r'
426 && c->doc[2] == 'i'
427 && c->doc[3] == 't'
428 && c->doc[4] == 'e'
429 && c->doc[5] == ' ')
1754f103 430 c->doc = concat ("Append ", c->doc + 6, (char *)NULL);
f02df580
MS
431}
432
ebcd3b23 433/* Opaque data for restore_section_callback. */
f02df580 434struct callback_data {
1fac167a 435 CORE_ADDR load_offset;
f02df580
MS
436 CORE_ADDR load_start;
437 CORE_ADDR load_end;
438};
439
440/* Function: restore_section_callback.
441
442 Callback function for bfd_map_over_sections.
443 Selectively loads the sections into memory. */
444
445static void
446restore_section_callback (bfd *ibfd, asection *isec, void *args)
447{
9a3c8263 448 struct callback_data *data = (struct callback_data *) args;
f02df580
MS
449 bfd_vma sec_start = bfd_section_vma (ibfd, isec);
450 bfd_size_type size = bfd_section_size (ibfd, isec);
451 bfd_vma sec_end = sec_start + size;
452 bfd_size_type sec_offset = 0;
453 bfd_size_type sec_load_count = size;
454 struct cleanup *old_chain;
47b667de 455 gdb_byte *buf;
f02df580
MS
456 int ret;
457
ebcd3b23 458 /* Ignore non-loadable sections, eg. from elf files. */
f02df580
MS
459 if (!(bfd_get_section_flags (ibfd, isec) & SEC_LOAD))
460 return;
461
462 /* Does the section overlap with the desired restore range? */
463 if (sec_end <= data->load_start
464 || (data->load_end > 0 && sec_start >= data->load_end))
465 {
ebcd3b23 466 /* No, no useable data in this section. */
a3f17187 467 printf_filtered (_("skipping section %s...\n"),
f02df580
MS
468 bfd_section_name (ibfd, isec));
469 return;
470 }
471
472 /* Compare section address range with user-requested
473 address range (if any). Compute where the actual
474 transfer should start and end. */
475 if (sec_start < data->load_start)
476 sec_offset = data->load_start - sec_start;
ebcd3b23 477 /* Size of a partial transfer. */
f02df580
MS
478 sec_load_count -= sec_offset;
479 if (data->load_end > 0 && sec_end > data->load_end)
480 sec_load_count -= sec_end - data->load_end;
481
482 /* Get the data. */
224c3ddb 483 buf = (gdb_byte *) xmalloc (size);
f02df580
MS
484 old_chain = make_cleanup (xfree, buf);
485 if (!bfd_get_section_contents (ibfd, isec, buf, 0, size))
8a3fe4f8 486 error (_("Failed to read bfd file %s: '%s'."), bfd_get_filename (ibfd),
f02df580
MS
487 bfd_errmsg (bfd_get_error ()));
488
489 printf_filtered ("Restoring section %s (0x%lx to 0x%lx)",
490 bfd_section_name (ibfd, isec),
491 (unsigned long) sec_start,
492 (unsigned long) sec_end);
493
494 if (data->load_offset != 0 || data->load_start != 0 || data->load_end != 0)
5af949e3 495 printf_filtered (" into memory (%s to %s)\n",
f5656ead 496 paddress (target_gdbarch (),
5af949e3 497 (unsigned long) sec_start
f5db4da3 498 + sec_offset + data->load_offset),
f5656ead 499 paddress (target_gdbarch (),
5af949e3
UW
500 (unsigned long) sec_start + sec_offset
501 + data->load_offset + sec_load_count));
f02df580
MS
502 else
503 puts_filtered ("\n");
504
505 /* Write the data. */
506 ret = target_write_memory (sec_start + sec_offset + data->load_offset,
507 buf + sec_offset, sec_load_count);
508 if (ret != 0)
8a3fe4f8 509 warning (_("restore: memory write failed (%s)."), safe_strerror (ret));
f02df580
MS
510 do_cleanups (old_chain);
511 return;
512}
513
514static void
93db0d79 515restore_binary_file (const char *filename, struct callback_data *data)
f02df580 516{
5b3fca71 517 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
5d1d95de 518 FILE *file = fopen_with_cleanup (filename, FOPEN_RB);
f02df580
MS
519 long len;
520
521 /* Get the file size for reading. */
522 if (fseek (file, 0, SEEK_END) == 0)
5e9e105f
MS
523 {
524 len = ftell (file);
525 if (len < 0)
526 perror_with_name (filename);
527 }
f02df580
MS
528 else
529 perror_with_name (filename);
530
531 if (len <= data->load_start)
8a3fe4f8 532 error (_("Start address is greater than length of binary file %s."),
f02df580
MS
533 filename);
534
ebcd3b23 535 /* Chop off "len" if it exceeds the requested load_end addr. */
f02df580
MS
536 if (data->load_end != 0 && data->load_end < len)
537 len = data->load_end;
ebcd3b23 538 /* Chop off "len" if the requested load_start addr skips some bytes. */
f02df580
MS
539 if (data->load_start > 0)
540 len -= data->load_start;
541
542 printf_filtered
543 ("Restoring binary file %s into memory (0x%lx to 0x%lx)\n",
544 filename,
1fac167a
UW
545 (unsigned long) (data->load_start + data->load_offset),
546 (unsigned long) (data->load_start + data->load_offset + len));
f02df580
MS
547
548 /* Now set the file pos to the requested load start pos. */
549 if (fseek (file, data->load_start, SEEK_SET) != 0)
550 perror_with_name (filename);
551
552 /* Now allocate a buffer and read the file contents. */
b22e99fd 553 std::unique_ptr<gdb_byte[]> buf (new gdb_byte[len]);
cd9da5b0 554 if (fread (buf.get (), 1, len, file) != len)
f02df580
MS
555 perror_with_name (filename);
556
ebcd3b23 557 /* Now write the buffer into target memory. */
cd9da5b0
TT
558 len = target_write_memory (data->load_start + data->load_offset,
559 buf.get (), len);
f02df580 560 if (len != 0)
8a3fe4f8 561 warning (_("restore: memory write failed (%s)."), safe_strerror (len));
5b3fca71 562 do_cleanups (cleanup);
f02df580
MS
563}
564
565static void
93db0d79 566restore_command (char *args_in, int from_tty)
f02df580
MS
567{
568 char *filename;
569 struct callback_data data;
570 bfd *ibfd;
571 int binary_flag = 0;
93db0d79 572 const char *args = args_in;
f02df580
MS
573
574 if (!target_has_execution)
575 noprocess ();
576
577 data.load_offset = 0;
578 data.load_start = 0;
579 data.load_end = 0;
580
ebcd3b23 581 /* Parse the input arguments. First is filename (required). */
f02df580
MS
582 filename = scan_filename_with_cleanup (&args, NULL);
583 if (args != NULL && *args != '\0')
584 {
585 char *binary_string = "binary";
586
587 /* Look for optional "binary" flag. */
61012eef 588 if (startswith (args, binary_string))
f02df580
MS
589 {
590 binary_flag = 1;
591 args += strlen (binary_string);
93db0d79 592 args = skip_spaces_const (args);
f02df580 593 }
ebcd3b23 594 /* Parse offset (optional). */
f02df580 595 if (args != NULL && *args != '\0')
cbd641ed
PS
596 data.load_offset = binary_flag ?
597 parse_and_eval_address (scan_expression_with_cleanup (&args, NULL)) :
598 parse_and_eval_long (scan_expression_with_cleanup (&args, NULL));
f02df580
MS
599 if (args != NULL && *args != '\0')
600 {
ebcd3b23 601 /* Parse start address (optional). */
f02df580 602 data.load_start =
de530e84 603 parse_and_eval_long (scan_expression_with_cleanup (&args, NULL));
f02df580
MS
604 if (args != NULL && *args != '\0')
605 {
ebcd3b23 606 /* Parse end address (optional). */
de530e84 607 data.load_end = parse_and_eval_long (args);
f02df580 608 if (data.load_end <= data.load_start)
8a3fe4f8 609 error (_("Start must be less than end."));
f02df580
MS
610 }
611 }
612 }
613
614 if (info_verbose)
615 printf_filtered ("Restore file %s offset 0x%lx start 0x%lx end 0x%lx\n",
616 filename, (unsigned long) data.load_offset,
617 (unsigned long) data.load_start,
618 (unsigned long) data.load_end);
619
620 if (binary_flag)
621 {
622 restore_binary_file (filename, &data);
623 }
624 else
625 {
ebcd3b23 626 /* Open the file for loading. */
f02df580
MS
627 ibfd = bfd_openr_with_cleanup (filename, NULL);
628
ebcd3b23 629 /* Process the sections. */
f02df580
MS
630 bfd_map_over_sections (ibfd, restore_section_callback, &data);
631 }
632 return;
633}
634
635static void
636srec_dump_command (char *cmd, int from_tty)
637{
6faec16b 638 printf_unfiltered (_("\"dump srec\" must be followed by a subcommand.\n"));
635c7e8a 639 help_list (srec_cmdlist, "dump srec ", all_commands, gdb_stdout);
f02df580
MS
640}
641
642static void
643ihex_dump_command (char *cmd, int from_tty)
644{
6faec16b 645 printf_unfiltered (_("\"dump ihex\" must be followed by a subcommand.\n"));
635c7e8a 646 help_list (ihex_cmdlist, "dump ihex ", all_commands, gdb_stdout);
f02df580
MS
647}
648
cf75d6c3
AB
649static void
650verilog_dump_command (char *cmd, int from_tty)
651{
652 printf_unfiltered (_("\"dump verilog\" must be followed by a subcommand.\n"));
653 help_list (verilog_cmdlist, "dump verilog ", all_commands, gdb_stdout);
654}
655
f02df580
MS
656static void
657tekhex_dump_command (char *cmd, int from_tty)
658{
6faec16b 659 printf_unfiltered (_("\"dump tekhex\" must be followed by a subcommand.\n"));
635c7e8a 660 help_list (tekhex_cmdlist, "dump tekhex ", all_commands, gdb_stdout);
f02df580
MS
661}
662
663static void
664binary_dump_command (char *cmd, int from_tty)
665{
6faec16b 666 printf_unfiltered (_("\"dump binary\" must be followed by a subcommand.\n"));
635c7e8a 667 help_list (binary_dump_cmdlist, "dump binary ", all_commands, gdb_stdout);
f02df580
MS
668}
669
670static void
671binary_append_command (char *cmd, int from_tty)
672{
6faec16b 673 printf_unfiltered (_("\"append binary\" must be followed by a subcommand.\n"));
635c7e8a
TT
674 help_list (binary_append_cmdlist, "append binary ", all_commands,
675 gdb_stdout);
f02df580
MS
676}
677
b9362cc7
AC
678extern initialize_file_ftype _initialize_cli_dump; /* -Wmissing-prototypes */
679
f02df580
MS
680void
681_initialize_cli_dump (void)
682{
683 struct cmd_list_element *c;
cdb27c12 684
9a2b4c1b
MS
685 add_prefix_cmd ("dump", class_vars, dump_command,
686 _("Dump target code/data to a local file."),
f02df580
MS
687 &dump_cmdlist, "dump ",
688 0/*allow-unknown*/,
689 &cmdlist);
9a2b4c1b
MS
690 add_prefix_cmd ("append", class_vars, append_command,
691 _("Append target code/data to a local file."),
f02df580
MS
692 &append_cmdlist, "append ",
693 0/*allow-unknown*/,
694 &cmdlist);
695
696 add_dump_command ("memory", dump_memory_command, "\
697Write contents of memory to a raw binary file.\n\
698Arguments are FILE START STOP. Writes the contents of memory within the\n\
64b9b334 699range [START .. STOP) to the specified FILE in raw target ordered bytes.");
f02df580
MS
700
701 add_dump_command ("value", dump_value_command, "\
702Write the value of an expression to a raw binary file.\n\
703Arguments are FILE EXPRESSION. Writes the value of EXPRESSION to\n\
704the specified FILE in raw target ordered bytes.");
705
9a2b4c1b
MS
706 add_prefix_cmd ("srec", all_commands, srec_dump_command,
707 _("Write target code/data to an srec file."),
f02df580
MS
708 &srec_cmdlist, "dump srec ",
709 0 /*allow-unknown*/,
710 &dump_cmdlist);
711
9a2b4c1b
MS
712 add_prefix_cmd ("ihex", all_commands, ihex_dump_command,
713 _("Write target code/data to an intel hex file."),
f02df580
MS
714 &ihex_cmdlist, "dump ihex ",
715 0 /*allow-unknown*/,
716 &dump_cmdlist);
717
cf75d6c3
AB
718 add_prefix_cmd ("verilog", all_commands, verilog_dump_command,
719 _("Write target code/data to a verilog hex file."),
720 &verilog_cmdlist, "dump verilog ",
721 0 /*allow-unknown*/,
722 &dump_cmdlist);
723
9a2b4c1b
MS
724 add_prefix_cmd ("tekhex", all_commands, tekhex_dump_command,
725 _("Write target code/data to a tekhex file."),
f02df580
MS
726 &tekhex_cmdlist, "dump tekhex ",
727 0 /*allow-unknown*/,
728 &dump_cmdlist);
729
9a2b4c1b
MS
730 add_prefix_cmd ("binary", all_commands, binary_dump_command,
731 _("Write target code/data to a raw binary file."),
f02df580
MS
732 &binary_dump_cmdlist, "dump binary ",
733 0 /*allow-unknown*/,
734 &dump_cmdlist);
735
9a2b4c1b
MS
736 add_prefix_cmd ("binary", all_commands, binary_append_command,
737 _("Append target code/data to a raw binary file."),
f02df580
MS
738 &binary_append_cmdlist, "append binary ",
739 0 /*allow-unknown*/,
740 &append_cmdlist);
741
1a966eab 742 add_cmd ("memory", all_commands, dump_srec_memory, _("\
f02df580
MS
743Write contents of memory to an srec file.\n\
744Arguments are FILE START STOP. Writes the contents of memory\n\
64b9b334 745within the range [START .. STOP) to the specified FILE in srec format."),
f02df580
MS
746 &srec_cmdlist);
747
1a966eab 748 add_cmd ("value", all_commands, dump_srec_value, _("\
f02df580
MS
749Write the value of an expression to an srec file.\n\
750Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\
1a966eab 751to the specified FILE in srec format."),
f02df580
MS
752 &srec_cmdlist);
753
1a966eab 754 add_cmd ("memory", all_commands, dump_ihex_memory, _("\
f02df580
MS
755Write contents of memory to an ihex file.\n\
756Arguments are FILE START STOP. Writes the contents of memory within\n\
64b9b334 757the range [START .. STOP) to the specified FILE in intel hex format."),
f02df580
MS
758 &ihex_cmdlist);
759
1a966eab 760 add_cmd ("value", all_commands, dump_ihex_value, _("\
f02df580
MS
761Write the value of an expression to an ihex file.\n\
762Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\
1a966eab 763to the specified FILE in intel hex format."),
f02df580
MS
764 &ihex_cmdlist);
765
cf75d6c3
AB
766 add_cmd ("memory", all_commands, dump_verilog_memory, _("\
767Write contents of memory to a verilog hex file.\n\
768Arguments are FILE START STOP. Writes the contents of memory within\n\
769the range [START .. STOP) to the specified FILE in verilog hex format."),
770 &verilog_cmdlist);
771
772 add_cmd ("value", all_commands, dump_verilog_value, _("\
773Write the value of an expression to a verilog hex file.\n\
774Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\
775to the specified FILE in verilog hex format."),
776 &verilog_cmdlist);
777
1a966eab 778 add_cmd ("memory", all_commands, dump_tekhex_memory, _("\
f02df580
MS
779Write contents of memory to a tekhex file.\n\
780Arguments are FILE START STOP. Writes the contents of memory\n\
64b9b334 781within the range [START .. STOP) to the specified FILE in tekhex format."),
f02df580
MS
782 &tekhex_cmdlist);
783
1a966eab 784 add_cmd ("value", all_commands, dump_tekhex_value, _("\
f02df580
MS
785Write the value of an expression to a tekhex file.\n\
786Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\
1a966eab 787to the specified FILE in tekhex format."),
f02df580
MS
788 &tekhex_cmdlist);
789
1a966eab 790 add_cmd ("memory", all_commands, dump_binary_memory, _("\
f02df580
MS
791Write contents of memory to a raw binary file.\n\
792Arguments are FILE START STOP. Writes the contents of memory\n\
64b9b334 793within the range [START .. STOP) to the specified FILE in binary format."),
f02df580
MS
794 &binary_dump_cmdlist);
795
1a966eab 796 add_cmd ("value", all_commands, dump_binary_value, _("\
f02df580
MS
797Write the value of an expression to a raw binary file.\n\
798Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\
1a966eab 799to the specified FILE in raw target ordered bytes."),
f02df580
MS
800 &binary_dump_cmdlist);
801
1a966eab 802 add_cmd ("memory", all_commands, append_binary_memory, _("\
f02df580
MS
803Append contents of memory to a raw binary file.\n\
804Arguments are FILE START STOP. Writes the contents of memory within the\n\
64b9b334 805range [START .. STOP) to the specified FILE in raw target ordered bytes."),
f02df580
MS
806 &binary_append_cmdlist);
807
1a966eab 808 add_cmd ("value", all_commands, append_binary_value, _("\
f02df580
MS
809Append the value of an expression to a raw binary file.\n\
810Arguments are FILE EXPRESSION. Writes the value of EXPRESSION\n\
1a966eab 811to the specified FILE in raw target ordered bytes."),
f02df580
MS
812 &binary_append_cmdlist);
813
1bedd215
AC
814 c = add_com ("restore", class_vars, restore_command, _("\
815Restore the contents of FILE to target memory.\n\
f02df580
MS
816Arguments are FILE OFFSET START END where all except FILE are optional.\n\
817OFFSET will be added to the base address of the file (default zero).\n\
9eb6e5a1 818If START and END are given, only the file contents within that range\n\
1bedd215 819(file relative) will be restored to target memory."));
f02df580 820 c->completer = filename_completer;
ebcd3b23 821 /* FIXME: completers for other commands. */
f02df580 822}