Protoization.
[deliverable/binutils-gdb.git] / gdb / exec.c
CommitLineData
c906108c
SS
1/* Work with executable files, for GDB.
2 Copyright 1988, 1989, 1991, 1992, 1993, 1994, 1997, 1998
c5aa993b 3 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
c906108c
SS
21
22#include "defs.h"
23#include "frame.h"
24#include "inferior.h"
25#include "target.h"
26#include "gdbcmd.h"
27#include "language.h"
28#include "symfile.h"
29#include "objfiles.h"
30
31#ifdef USG
32#include <sys/types.h>
33#endif
34
35#include <fcntl.h>
36#include "gdb_string.h"
37
38#include "gdbcore.h"
39
40#include <ctype.h>
41#include "gdb_stat.h"
42#ifndef O_BINARY
43#define O_BINARY 0
44#endif
45
46#include "xcoffsolib.h"
47
a14ed312 48struct vmap *map_vmap (bfd *, bfd *);
c906108c 49
507f3c78 50void (*file_changed_hook) (char *);
c906108c
SS
51
52/* Prototypes for local functions */
53
a14ed312 54static void add_to_section_table (bfd *, sec_ptr, PTR);
c906108c 55
a14ed312 56static void exec_close (int);
c906108c 57
a14ed312 58static void file_command (char *, int);
c906108c 59
a14ed312 60static void set_section_command (char *, int);
c906108c 61
a14ed312 62static void exec_files_info (struct target_ops *);
c906108c 63
a14ed312 64static void bfdsec_to_vmap (bfd *, sec_ptr, PTR);
c906108c 65
a14ed312 66static int ignore (CORE_ADDR, char *);
c906108c 67
a14ed312 68static void init_exec_ops (void);
c906108c 69
a14ed312 70void _initialize_exec (void);
c906108c
SS
71
72extern int info_verbose;
73
74/* The target vector for executable files. */
75
76struct target_ops exec_ops;
77
78/* The Binary File Descriptor handle for the executable file. */
79
80bfd *exec_bfd = NULL;
81
82/* Whether to open exec and core files read-only or read-write. */
83
84int write_files = 0;
85
86/* Text start and end addresses (KLUDGE) if needed */
87
88#ifndef NEED_TEXT_START_END
89#define NEED_TEXT_START_END (0)
90#endif
91CORE_ADDR text_start = 0;
c5aa993b 92CORE_ADDR text_end = 0;
c906108c
SS
93
94struct vmap *vmap;
95
96/* ARGSUSED */
97static void
fba45db2 98exec_close (int quitting)
c906108c
SS
99{
100 int need_symtab_cleanup = 0;
101 struct vmap *vp, *nxt;
c5aa993b
JM
102
103 for (nxt = vmap; nxt != NULL;)
c906108c
SS
104 {
105 vp = nxt;
106 nxt = vp->nxt;
107
108 /* if there is an objfile associated with this bfd,
c5aa993b
JM
109 free_objfile() will do proper cleanup of objfile *and* bfd. */
110
c906108c
SS
111 if (vp->objfile)
112 {
113 free_objfile (vp->objfile);
114 need_symtab_cleanup = 1;
115 }
116 else if (vp->bfd != exec_bfd)
117 /* FIXME-leak: We should be freeing vp->name too, I think. */
118 if (!bfd_close (vp->bfd))
119 warning ("cannot close \"%s\": %s",
120 vp->name, bfd_errmsg (bfd_get_error ()));
121
122 /* FIXME: This routine is #if 0'd in symfile.c. What should we
c5aa993b
JM
123 be doing here? Should we just free everything in
124 vp->objfile->symtabs? Should free_objfile do that?
125 FIXME-as-well: free_objfile already free'd vp->name, so it isn't
126 valid here. */
c906108c
SS
127 free_named_symtabs (vp->name);
128 free (vp);
129 }
130
131 vmap = NULL;
132
133 if (exec_bfd)
134 {
135 char *name = bfd_get_filename (exec_bfd);
136
137 if (!bfd_close (exec_bfd))
138 warning ("cannot close \"%s\": %s",
139 name, bfd_errmsg (bfd_get_error ()));
140 free (name);
141 exec_bfd = NULL;
142 }
143
144 if (exec_ops.to_sections)
145 {
c5aa993b 146 free ((PTR) exec_ops.to_sections);
c906108c
SS
147 exec_ops.to_sections = NULL;
148 exec_ops.to_sections_end = NULL;
149 }
150}
151
152/* Process the first arg in ARGS as the new exec file.
153
c5aa993b
JM
154 This function is intended to be behave essentially the same
155 as exec_file_command, except that the latter will detect when
156 a target is being debugged, and will ask the user whether it
157 should be shut down first. (If the answer is "no", then the
158 new file is ignored.)
c906108c 159
c5aa993b
JM
160 This file is used by exec_file_command, to do the work of opening
161 and processing the exec file after any prompting has happened.
c906108c 162
c5aa993b
JM
163 And, it is used by child_attach, when the attach command was
164 given a pid but not a exec pathname, and the attach command could
165 figure out the pathname from the pid. (In this case, we shouldn't
166 ask the user whether the current target should be shut down --
167 we're supplying the exec pathname late for good reason.) */
c906108c
SS
168
169void
fba45db2 170exec_file_attach (char *args, int from_tty)
c906108c
SS
171{
172 char **argv;
173 char *filename;
174
175 /* Remove any previous exec file. */
176 unpush_target (&exec_ops);
177
178 /* Now open and digest the file the user requested, if any. */
179
180 if (args)
181 {
182 char *scratch_pathname;
183 int scratch_chan;
c5aa993b 184
c906108c 185 /* Scan through the args and pick up the first non option arg
c5aa993b 186 as the filename. */
c906108c
SS
187
188 argv = buildargv (args);
189 if (argv == NULL)
190 nomem (0);
191
7a292a7a 192 make_cleanup_freeargv (argv);
c906108c 193
c5aa993b
JM
194 for (; (*argv != NULL) && (**argv == '-'); argv++)
195 {;
196 }
c906108c 197 if (*argv == NULL)
4ce44c66 198 error ("No executable file name was specified");
c906108c
SS
199
200 filename = tilde_expand (*argv);
201 make_cleanup (free, filename);
c5aa993b
JM
202
203 scratch_chan = openp (getenv ("PATH"), 1, filename,
204 write_files ? O_RDWR | O_BINARY : O_RDONLY | O_BINARY, 0,
c906108c 205 &scratch_pathname);
cfc3008e 206#if defined(__GO32__) || defined(_WIN32) || defined(__CYGWIN__)
c906108c 207 if (scratch_chan < 0)
c5aa993b
JM
208 {
209 char *exename = alloca (strlen (filename) + 5);
210 strcat (strcpy (exename, filename), ".exe");
211 scratch_chan = openp (getenv ("PATH"), 1, exename, write_files ?
212 O_RDWR | O_BINARY : O_RDONLY | O_BINARY, 0, &scratch_pathname);
213 }
c906108c
SS
214#endif
215 if (scratch_chan < 0)
216 perror_with_name (filename);
217 exec_bfd = bfd_fdopenr (scratch_pathname, gnutarget, scratch_chan);
218
219 if (!exec_bfd)
220 error ("\"%s\": could not open as an executable file: %s",
221 scratch_pathname, bfd_errmsg (bfd_get_error ()));
222
223 /* At this point, scratch_pathname and exec_bfd->name both point to the
c5aa993b
JM
224 same malloc'd string. However exec_close() will attempt to free it
225 via the exec_bfd->name pointer, so we need to make another copy and
226 leave exec_bfd as the new owner of the original copy. */
c2d11a7d 227 scratch_pathname = xstrdup (scratch_pathname);
c906108c 228 make_cleanup (free, scratch_pathname);
c5aa993b 229
c906108c
SS
230 if (!bfd_check_format (exec_bfd, bfd_object))
231 {
232 /* Make sure to close exec_bfd, or else "run" might try to use
233 it. */
234 exec_close (0);
235 error ("\"%s\": not in executable format: %s",
236 scratch_pathname, bfd_errmsg (bfd_get_error ()));
237 }
238
239 /* FIXME - This should only be run for RS6000, but the ifdef is a poor
c5aa993b 240 way to accomplish. */
c906108c
SS
241#ifdef IBM6000_TARGET
242 /* Setup initial vmap. */
243
244 map_vmap (exec_bfd, 0);
245 if (vmap == NULL)
246 {
247 /* Make sure to close exec_bfd, or else "run" might try to use
248 it. */
249 exec_close (0);
250 error ("\"%s\": can't find the file sections: %s",
251 scratch_pathname, bfd_errmsg (bfd_get_error ()));
252 }
253#endif /* IBM6000_TARGET */
254
255 if (build_section_table (exec_bfd, &exec_ops.to_sections,
c5aa993b 256 &exec_ops.to_sections_end))
c906108c
SS
257 {
258 /* Make sure to close exec_bfd, or else "run" might try to use
259 it. */
260 exec_close (0);
c5aa993b 261 error ("\"%s\": can't find the file sections: %s",
c906108c
SS
262 scratch_pathname, bfd_errmsg (bfd_get_error ()));
263 }
264
265 /* text_end is sometimes used for where to put call dummies. A
c5aa993b 266 few ports use these for other purposes too. */
c906108c
SS
267 if (NEED_TEXT_START_END)
268 {
269 struct section_table *p;
c5aa993b 270
c906108c
SS
271 /* Set text_start to the lowest address of the start of any
272 readonly code section and set text_end to the highest
273 address of the end of any readonly code section. */
274 /* FIXME: The comment above does not match the code. The
275 code checks for sections with are either code *or*
276 readonly. */
c5aa993b
JM
277 text_start = ~(CORE_ADDR) 0;
278 text_end = (CORE_ADDR) 0;
c906108c
SS
279 for (p = exec_ops.to_sections; p < exec_ops.to_sections_end; p++)
280 if (bfd_get_section_flags (p->bfd, p->the_bfd_section)
281 & (SEC_CODE | SEC_READONLY))
282 {
c5aa993b 283 if (text_start > p->addr)
c906108c
SS
284 text_start = p->addr;
285 if (text_end < p->endaddr)
286 text_end = p->endaddr;
287 }
288 }
289
290 validate_files ();
291
292 set_gdbarch_from_file (exec_bfd);
293
294 push_target (&exec_ops);
295
296 /* Tell display code (if any) about the changed file name. */
297 if (exec_file_display_hook)
298 (*exec_file_display_hook) (filename);
299 }
300 else if (from_tty)
301 printf_unfiltered ("No executable file now.\n");
302}
303
304/* Process the first arg in ARGS as the new exec file.
305
c5aa993b
JM
306 Note that we have to explicitly ignore additional args, since we can
307 be called from file_command(), which also calls symbol_file_command()
308 which can take multiple args. */
c906108c
SS
309
310void
fba45db2 311exec_file_command (char *args, int from_tty)
c906108c 312{
c906108c 313 target_preopen (from_tty);
c906108c
SS
314 exec_file_attach (args, from_tty);
315}
316
317/* Set both the exec file and the symbol file, in one command.
318 What a novelty. Why did GDB go through four major releases before this
319 command was added? */
320
321static void
fba45db2 322file_command (char *arg, int from_tty)
c906108c
SS
323{
324 /* FIXME, if we lose on reading the symbol file, we should revert
325 the exec file, but that's rough. */
326 exec_file_command (arg, from_tty);
327 symbol_file_command (arg, from_tty);
328 if (file_changed_hook)
329 file_changed_hook (arg);
330}
c906108c 331\f
c5aa993b 332
c906108c
SS
333/* Locate all mappable sections of a BFD file.
334 table_pp_char is a char * to get it through bfd_map_over_sections;
335 we cast it back to its proper type. */
336
337static void
fba45db2 338add_to_section_table (bfd *abfd, sec_ptr asect, PTR table_pp_char)
c906108c 339{
c5aa993b 340 struct section_table **table_pp = (struct section_table **) table_pp_char;
c906108c
SS
341 flagword aflag;
342
343 aflag = bfd_get_section_flags (abfd, asect);
344 if (!(aflag & SEC_ALLOC))
345 return;
346 if (0 == bfd_section_size (abfd, asect))
347 return;
348 (*table_pp)->bfd = abfd;
349 (*table_pp)->the_bfd_section = asect;
350 (*table_pp)->addr = bfd_section_vma (abfd, asect);
351 (*table_pp)->endaddr = (*table_pp)->addr + bfd_section_size (abfd, asect);
352 (*table_pp)++;
353}
354
355/* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
356 Returns 0 if OK, 1 on error. */
357
358int
fba45db2
KB
359build_section_table (bfd *some_bfd, struct section_table **start,
360 struct section_table **end)
c906108c
SS
361{
362 unsigned count;
363
364 count = bfd_count_sections (some_bfd);
365 if (*start)
c5aa993b 366 free ((PTR) * start);
c906108c
SS
367 *start = (struct section_table *) xmalloc (count * sizeof (**start));
368 *end = *start;
c5aa993b 369 bfd_map_over_sections (some_bfd, add_to_section_table, (char *) end);
c906108c 370 if (*end > *start + count)
c5aa993b 371 abort ();
c906108c
SS
372 /* We could realloc the table, but it probably loses for most files. */
373 return 0;
374}
375\f
376static void
fba45db2 377bfdsec_to_vmap (bfd *abfd, sec_ptr sect, PTR arg3)
c906108c
SS
378{
379 struct vmap_and_bfd *vmap_bfd = (struct vmap_and_bfd *) arg3;
380 struct vmap *vp;
381
382 vp = vmap_bfd->pvmap;
383
384 if ((bfd_get_section_flags (abfd, sect) & SEC_LOAD) == 0)
385 return;
386
387 if (STREQ (bfd_section_name (abfd, sect), ".text"))
388 {
389 vp->tstart = bfd_section_vma (abfd, sect);
390 vp->tend = vp->tstart + bfd_section_size (abfd, sect);
391 vp->tvma = bfd_section_vma (abfd, sect);
392 vp->toffs = sect->filepos;
393 }
394 else if (STREQ (bfd_section_name (abfd, sect), ".data"))
395 {
396 vp->dstart = bfd_section_vma (abfd, sect);
397 vp->dend = vp->dstart + bfd_section_size (abfd, sect);
398 vp->dvma = bfd_section_vma (abfd, sect);
399 }
400 /* Silently ignore other types of sections. (FIXME?) */
401}
402
403/* Make a vmap for ABFD which might be a member of the archive ARCH.
404 Return the new vmap. */
405
406struct vmap *
fba45db2 407map_vmap (bfd *abfd, bfd *arch)
c906108c
SS
408{
409 struct vmap_and_bfd vmap_bfd;
410 struct vmap *vp, **vpp;
411
412 vp = (struct vmap *) xmalloc (sizeof (*vp));
413 memset ((char *) vp, '\0', sizeof (*vp));
414 vp->nxt = 0;
415 vp->bfd = abfd;
416 vp->name = bfd_get_filename (arch ? arch : abfd);
417 vp->member = arch ? bfd_get_filename (abfd) : "";
c5aa993b 418
c906108c
SS
419 vmap_bfd.pbfd = arch;
420 vmap_bfd.pvmap = vp;
421 bfd_map_over_sections (abfd, bfdsec_to_vmap, &vmap_bfd);
422
423 /* Find the end of the list and append. */
424 for (vpp = &vmap; *vpp; vpp = &(*vpp)->nxt)
425 ;
426 *vpp = vp;
427
428 return vp;
429}
430\f
431/* Read or write the exec file.
432
433 Args are address within a BFD file, address within gdb address-space,
434 length, and a flag indicating whether to read or write.
435
436 Result is a length:
437
c5aa993b
JM
438 0: We cannot handle this address and length.
439 > 0: We have handled N bytes starting at this address.
440 (If N == length, we did it all.) We might be able
441 to handle more bytes beyond this length, but no
442 promises.
443 < 0: We cannot handle this address, but if somebody
444 else handles (-N) bytes, we can start from there.
c906108c 445
c5aa993b
JM
446 The same routine is used to handle both core and exec files;
447 we just tail-call it with more arguments to select between them. */
c906108c
SS
448
449int
fba45db2
KB
450xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
451 struct target_ops *target)
c906108c
SS
452{
453 boolean res;
454 struct section_table *p;
455 CORE_ADDR nextsectaddr, memend;
507f3c78 456 boolean (*xfer_fn) (bfd *, sec_ptr, PTR, file_ptr, bfd_size_type);
c906108c
SS
457 asection *section;
458
459 if (len <= 0)
c5aa993b 460 abort ();
c906108c
SS
461
462 if (overlay_debugging)
463 {
464 section = find_pc_overlay (memaddr);
465 if (pc_in_unmapped_range (memaddr, section))
466 memaddr = overlay_mapped_address (memaddr, section);
467 }
468
469 memend = memaddr + len;
470 xfer_fn = write ? bfd_set_section_contents : bfd_get_section_contents;
471 nextsectaddr = memend;
472
c906108c
SS
473 for (p = target->to_sections; p < target->to_sections_end; p++)
474 {
475 if (overlay_debugging && section && p->the_bfd_section &&
476 strcmp (section->name, p->the_bfd_section->name) != 0)
c5aa993b 477 continue; /* not the section we need */
c906108c 478 if (memaddr >= p->addr)
c5aa993b 479 if (memend <= p->endaddr)
c906108c
SS
480 {
481 /* Entire transfer is within this section. */
482 res = xfer_fn (p->bfd, p->the_bfd_section, myaddr,
483 memaddr - p->addr, len);
484 return (res != 0) ? len : 0;
485 }
486 else if (memaddr >= p->endaddr)
487 {
488 /* This section ends before the transfer starts. */
489 continue;
490 }
c5aa993b 491 else
c906108c
SS
492 {
493 /* This section overlaps the transfer. Just do half. */
494 len = p->endaddr - memaddr;
495 res = xfer_fn (p->bfd, p->the_bfd_section, myaddr,
496 memaddr - p->addr, len);
497 return (res != 0) ? len : 0;
498 }
499 else
500 nextsectaddr = min (nextsectaddr, p->addr);
501 }
502
503 if (nextsectaddr >= memend)
c5aa993b 504 return 0; /* We can't help */
c906108c 505 else
c5aa993b 506 return -(nextsectaddr - memaddr); /* Next boundary where we can help */
c906108c 507}
c906108c 508\f
c5aa993b 509
c906108c 510void
fba45db2 511print_section_info (struct target_ops *t, bfd *abfd)
c906108c
SS
512{
513 struct section_table *p;
514
c5aa993b 515 printf_filtered ("\t`%s', ", bfd_get_filename (abfd));
c906108c 516 wrap_here (" ");
c5aa993b 517 printf_filtered ("file type %s.\n", bfd_get_target (abfd));
c906108c
SS
518 if (abfd == exec_bfd)
519 {
520 printf_filtered ("\tEntry point: ");
521 print_address_numeric (bfd_get_start_address (abfd), 1, gdb_stdout);
522 printf_filtered ("\n");
523 }
524 for (p = t->to_sections; p < t->to_sections_end; p++)
525 {
526 /* FIXME-32x64 need a print_address_numeric with field width */
527 printf_filtered ("\t%s", local_hex_string_custom ((unsigned long) p->addr, "08l"));
528 printf_filtered (" - %s", local_hex_string_custom ((unsigned long) p->endaddr, "08l"));
529 if (info_verbose)
530 printf_filtered (" @ %s",
531 local_hex_string_custom ((unsigned long) p->the_bfd_section->filepos, "08l"));
532 printf_filtered (" is %s", bfd_section_name (p->bfd, p->the_bfd_section));
533 if (p->bfd != abfd)
534 {
535 printf_filtered (" in %s", bfd_get_filename (p->bfd));
536 }
537 printf_filtered ("\n");
538 }
539}
540
541static void
fba45db2 542exec_files_info (struct target_ops *t)
c906108c
SS
543{
544 print_section_info (t, exec_bfd);
545
546 if (vmap)
547 {
548 struct vmap *vp;
549
550 printf_unfiltered ("\tMapping info for file `%s'.\n", vmap->name);
d4f3574e
SS
551 printf_unfiltered ("\t %*s %*s %*s %*s %8.8s %s\n",
552 strlen_paddr (), "tstart",
553 strlen_paddr (), "tend",
554 strlen_paddr (), "dstart",
555 strlen_paddr (), "dend",
556 "section",
c5aa993b
JM
557 "file(member)");
558
559 for (vp = vmap; vp; vp = vp->nxt)
d4f3574e
SS
560 printf_unfiltered ("\t0x%s 0x%s 0x%s 0x%s %s%s%s%s\n",
561 paddr (vp->tstart),
562 paddr (vp->tend),
563 paddr (vp->dstart),
564 paddr (vp->dend),
565 vp->name,
c5aa993b
JM
566 *vp->member ? "(" : "", vp->member,
567 *vp->member ? ")" : "");
c906108c
SS
568 }
569}
570
0f71a2f6
JM
571/* msnyder 5/21/99:
572 exec_set_section_offsets sets the offsets of all the sections
573 in the exec objfile. */
574
575void
fba45db2
KB
576exec_set_section_offsets (bfd_signed_vma text_off, bfd_signed_vma data_off,
577 bfd_signed_vma bss_off)
0f71a2f6
JM
578{
579 struct section_table *sect;
c5aa993b
JM
580
581 for (sect = exec_ops.to_sections;
582 sect < exec_ops.to_sections_end;
0f71a2f6
JM
583 sect++)
584 {
585 flagword flags;
586
587 flags = bfd_get_section_flags (exec_bfd, sect->the_bfd_section);
588
589 if (flags & SEC_CODE)
590 {
c5aa993b 591 sect->addr += text_off;
0f71a2f6
JM
592 sect->endaddr += text_off;
593 }
594 else if (flags & (SEC_DATA | SEC_LOAD))
595 {
c5aa993b 596 sect->addr += data_off;
0f71a2f6
JM
597 sect->endaddr += data_off;
598 }
599 else if (flags & SEC_ALLOC)
600 {
c5aa993b 601 sect->addr += bss_off;
0f71a2f6
JM
602 sect->endaddr += bss_off;
603 }
604 }
605}
606
c906108c 607static void
fba45db2 608set_section_command (char *args, int from_tty)
c906108c
SS
609{
610 struct section_table *p;
611 char *secname;
612 unsigned seclen;
613 unsigned long secaddr;
614 char secprint[100];
615 long offset;
616
617 if (args == 0)
618 error ("Must specify section name and its virtual address");
619
620 /* Parse out section name */
c5aa993b 621 for (secname = args; !isspace (*args); args++);
c906108c
SS
622 seclen = args - secname;
623
624 /* Parse out new virtual address */
625 secaddr = parse_and_eval_address (args);
626
c5aa993b
JM
627 for (p = exec_ops.to_sections; p < exec_ops.to_sections_end; p++)
628 {
629 if (!strncmp (secname, bfd_section_name (exec_bfd, p->the_bfd_section), seclen)
630 && bfd_section_name (exec_bfd, p->the_bfd_section)[seclen] == '\0')
631 {
632 offset = secaddr - p->addr;
633 p->addr += offset;
634 p->endaddr += offset;
635 if (from_tty)
636 exec_files_info (&exec_ops);
637 return;
638 }
c906108c 639 }
c906108c
SS
640 if (seclen >= sizeof (secprint))
641 seclen = sizeof (secprint) - 1;
642 strncpy (secprint, secname, seclen);
643 secprint[seclen] = '\0';
644 error ("Section %s not found", secprint);
645}
646
647/* If mourn is being called in all the right places, this could be say
648 `gdb internal error' (since generic_mourn calls
649 breakpoint_init_inferior). */
650
651static int
fba45db2 652ignore (CORE_ADDR addr, char *contents)
c906108c
SS
653{
654 return 0;
655}
656
657/* Fill in the exec file target vector. Very few entries need to be
658 defined. */
659
660void
fba45db2 661init_exec_ops (void)
c906108c
SS
662{
663 exec_ops.to_shortname = "exec";
664 exec_ops.to_longname = "Local exec file";
665 exec_ops.to_doc = "Use an executable file as a target.\n\
666Specify the filename of the executable file.";
667 exec_ops.to_open = exec_file_command;
668 exec_ops.to_close = exec_close;
669 exec_ops.to_attach = find_default_attach;
670 exec_ops.to_require_attach = find_default_require_attach;
671 exec_ops.to_require_detach = find_default_require_detach;
672 exec_ops.to_xfer_memory = xfer_memory;
673 exec_ops.to_files_info = exec_files_info;
674 exec_ops.to_insert_breakpoint = ignore;
675 exec_ops.to_remove_breakpoint = ignore;
676 exec_ops.to_create_inferior = find_default_create_inferior;
677 exec_ops.to_clone_and_follow_inferior = find_default_clone_and_follow_inferior;
678 exec_ops.to_stratum = file_stratum;
679 exec_ops.to_has_memory = 1;
c5aa993b 680 exec_ops.to_magic = OPS_MAGIC;
c906108c
SS
681}
682
683void
fba45db2 684_initialize_exec (void)
c906108c
SS
685{
686 struct cmd_list_element *c;
687
688 init_exec_ops ();
689
690 if (!dbx_commands)
691 {
692 c = add_cmd ("file", class_files, file_command,
693 "Use FILE as program to be debugged.\n\
694It is read for its symbols, for getting the contents of pure memory,\n\
695and it is the program executed when you use the `run' command.\n\
696If FILE cannot be found as specified, your execution directory path\n\
697($PATH) is searched for a command of that name.\n\
698No arg means to have no executable file and no symbols.", &cmdlist);
699 c->completer = filename_completer;
700 }
701
702 c = add_cmd ("exec-file", class_files, exec_file_command,
c5aa993b 703 "Use FILE as program for getting contents of pure memory.\n\
c906108c
SS
704If FILE cannot be found as specified, your execution directory path\n\
705is searched for a command of that name.\n\
706No arg means have no executable file.", &cmdlist);
707 c->completer = filename_completer;
708
709 add_com ("section", class_files, set_section_command,
c5aa993b 710 "Change the base address of section SECTION of the exec file to ADDR.\n\
c906108c
SS
711This can be used if the exec file does not contain section addresses,\n\
712(such as in the a.out format), or when the addresses specified in the\n\
713file itself are wrong. Each section must be changed separately. The\n\
714``info files'' command lists all the sections and their addresses.");
715
716 add_show_from_set
c5aa993b 717 (add_set_cmd ("write", class_support, var_boolean, (char *) &write_files,
c906108c
SS
718 "Set writing into executable and core files.",
719 &setlist),
720 &showlist);
c5aa993b 721
c906108c
SS
722 add_target (&exec_ops);
723}
This page took 0.0906 seconds and 4 git commands to generate.