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