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