1 /* Core dump and executable file functions above target vector, for GDB.
2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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, Boston, MA 02111-1307, USA. */
22 #include "gdb_string.h"
26 #include "frame.h" /* required by inferior.h */
38 extern char registers
[];
40 /* Local function declarations. */
42 static void call_extra_exec_file_hooks
PARAMS ((char *filename
));
44 /* You can have any number of hooks for `exec_file_command' command to call.
45 If there's only one hook, it is set in exec_file_display hook.
46 If there are two or more hooks, they are set in exec_file_extra_hooks[],
47 and exec_file_display_hook is set to a function that calls all of them.
48 This extra complexity is needed to preserve compatibility with
49 old code that assumed that only one hook could be set, and which called
50 exec_file_display_hook directly. */
52 typedef void (*hook_type
) PARAMS ((char *));
54 hook_type exec_file_display_hook
; /* the original hook */
55 static hook_type
*exec_file_extra_hooks
; /* array of additional hooks */
56 static int exec_file_hook_count
= 0; /* size of array */
58 /* Binary file diddling handle for the core file. */
63 /* Backward compatability with old way of specifying core files. */
66 core_file_command (filename
, from_tty
)
72 dont_repeat (); /* Either way, seems bogus. */
74 t
= find_core_target ();
77 (t
->to_detach
) (filename
, from_tty
);
79 (t
->to_open
) (filename
, from_tty
);
81 error ("GDB can't read core files on this machine.");
85 /* If there are two or more functions that wish to hook into exec_file_command,
86 * this function will call all of the hook functions. */
89 call_extra_exec_file_hooks (filename
)
94 for (i
= 0; i
< exec_file_hook_count
; i
++)
95 (*exec_file_extra_hooks
[i
])(filename
);
98 /* Call this to specify the hook for exec_file_command to call back.
99 This is called from the x-window display code. */
102 specify_exec_file_hook (hook
)
103 void (*hook
) PARAMS ((char *));
105 hook_type
*new_array
;
107 if (exec_file_display_hook
!= NULL
)
109 /* There's already a hook installed. Arrange to have both it
110 * and the subsequent hooks called. */
111 if (exec_file_hook_count
== 0)
113 /* If this is the first extra hook, initialize the hook array. */
114 exec_file_extra_hooks
= (hook_type
*) xmalloc (sizeof(hook_type
));
115 exec_file_extra_hooks
[0] = exec_file_display_hook
;
116 exec_file_display_hook
= call_extra_exec_file_hooks
;
117 exec_file_hook_count
= 1;
120 /* Grow the hook array by one and add the new hook to the end.
121 Yes, it's inefficient to grow it by one each time but since
122 this is hardly ever called it's not a big deal. */
123 exec_file_hook_count
++;
125 (hook_type
*) xrealloc (exec_file_extra_hooks
,
126 exec_file_hook_count
* sizeof(hook_type
));
127 exec_file_extra_hooks
= new_array
;
128 exec_file_extra_hooks
[exec_file_hook_count
- 1] = hook
;
131 exec_file_display_hook
= hook
;
134 /* The exec file must be closed before running an inferior.
135 If it is needed again after the inferior dies, it must
143 bfd_tempclose (exec_bfd
);
152 bfd_reopen (exec_bfd
);
159 /* Don't do anything if the current target isn't exec. */
160 if (exec_bfd
== NULL
|| strcmp (target_shortname
, "exec") != 0)
163 /* If the timestamp of the exec file has changed, reopen it. */
164 filename
= strdup (bfd_get_filename (exec_bfd
));
165 make_cleanup (free
, filename
);
166 mtime
= bfd_get_mtime(exec_bfd
);
167 res
= stat (filename
, &st
);
169 if (mtime
&& mtime
!= st
.st_mtime
)
170 exec_file_command (filename
, 0);
174 /* If we have both a core file and an exec file,
175 print a warning if they don't go together. */
180 if (exec_bfd
&& core_bfd
)
182 if (!core_file_matches_executable_p (core_bfd
, exec_bfd
))
183 warning ("core file may not match specified executable file.");
184 else if (bfd_get_mtime(exec_bfd
) > bfd_get_mtime(core_bfd
))
185 warning ("exec file is newer than core file.");
189 /* Return the name of the executable file as a string.
190 ERR nonzero means get error if there is none specified;
191 otherwise return 0 in that case. */
197 if (exec_bfd
) return bfd_get_filename(exec_bfd
);
198 if (!err
) return NULL
;
200 error ("No executable file specified.\n\
201 Use the \"file\" or \"exec-file\" command.");
206 /* Report a memory error with error(). */
209 memory_error (status
, memaddr
)
215 /* Actually, address between memaddr and memaddr + len
216 was out of bounds. */
218 printf_filtered ("Cannot access memory at address ");
219 print_address_numeric (memaddr
, 1, gdb_stdout
);
220 printf_filtered (".\n");
221 return_to_top_level (RETURN_ERROR
);
226 printf_filtered ("Error accessing memory address ");
227 print_address_numeric (memaddr
, 1, gdb_stdout
);
228 printf_filtered (": %s.\n",
229 safe_strerror (status
));
230 return_to_top_level (RETURN_ERROR
);
234 /* Same as target_read_memory, but report an error if can't read. */
236 read_memory (memaddr
, myaddr
, len
)
242 status
= target_read_memory (memaddr
, myaddr
, len
);
244 memory_error (status
, memaddr
);
248 read_memory_section (memaddr
, myaddr
, len
, bfd_section
)
252 asection
*bfd_section
;
255 status
= target_read_memory_section (memaddr
, myaddr
, len
, bfd_section
);
257 memory_error (status
, memaddr
);
260 /* Like target_read_memory, but slightly different parameters. */
263 dis_asm_read_memory (memaddr
, myaddr
, len
, info
)
267 disassemble_info
*info
;
269 return target_read_memory (memaddr
, (char *) myaddr
, len
);
272 /* Like memory_error with slightly different parameters. */
274 dis_asm_memory_error (status
, memaddr
, info
)
277 disassemble_info
*info
;
279 memory_error (status
, memaddr
);
282 /* Like print_address with slightly different parameters. */
284 dis_asm_print_address (addr
, info
)
286 struct disassemble_info
*info
;
288 print_address (addr
, info
->stream
);
291 /* Same as target_write_memory, but report an error if can't write. */
293 write_memory (memaddr
, myaddr
, len
)
300 status
= target_write_memory (memaddr
, myaddr
, len
);
302 memory_error (status
, memaddr
);
305 /* Read an integer from debugged memory, given address and number of bytes. */
308 read_memory_integer (memaddr
, len
)
312 char buf
[sizeof (LONGEST
)];
314 read_memory (memaddr
, buf
, len
);
315 return extract_signed_integer (buf
, len
);
319 read_memory_unsigned_integer (memaddr
, len
)
323 char buf
[sizeof (ULONGEST
)];
325 read_memory (memaddr
, buf
, len
);
326 return extract_unsigned_integer (buf
, len
);
330 /* Enable after 4.12. It is not tested. */
332 /* Search code. Targets can just make this their search function, or
333 if the protocol has a less general search function, they can call this
334 in the cases it can't handle. */
336 generic_search (len
, data
, mask
, startaddr
, increment
, lorange
, hirange
337 addr_found
, data_found
)
345 CORE_ADDR
*addr_found
;
349 CORE_ADDR curaddr
= startaddr
;
351 while (curaddr
>= lorange
&& curaddr
< hirange
)
353 read_memory (curaddr
, data_found
, len
);
354 for (i
= 0; i
< len
; ++i
)
355 if ((data_found
[i
] & mask
[i
]) != data
[i
])
358 *addr_found
= curaddr
;
362 curaddr
+= increment
;
364 *addr_found
= (CORE_ADDR
)0;
369 /* The current default bfd target. Points to storage allocated for
373 /* Same thing, except it is "auto" not NULL for the default case. */
374 static char *gnutarget_string
;
376 static void set_gnutarget_command
377 PARAMS ((char *, int, struct cmd_list_element
*));
380 set_gnutarget_command (ignore
, from_tty
, c
)
383 struct cmd_list_element
*c
;
385 if (STREQ (gnutarget_string
, "auto"))
388 gnutarget
= gnutarget_string
;
391 /* Set the gnutarget. */
393 set_gnutarget (newtarget
)
396 if (gnutarget_string
!= NULL
)
397 free (gnutarget_string
);
398 gnutarget_string
= savestring (newtarget
, strlen (newtarget
));
399 set_gnutarget_command (NULL
, 0, NULL
);
405 struct cmd_list_element
*c
;
406 c
= add_cmd ("core-file", class_files
, core_file_command
,
407 "Use FILE as core dump for examining memory and registers.\n\
408 No arg means have no core file. This command has been superseded by the\n\
409 `target core' and `detach' commands.", &cmdlist
);
410 c
->completer
= filename_completer
;
412 c
= add_set_cmd ("gnutarget", class_files
, var_string_noescape
,
413 (char *) &gnutarget_string
,
414 "Set the current BFD target.\n\
415 Use `set gnutarget auto' to specify automatic detection.",
417 c
->function
.sfunc
= set_gnutarget_command
;
418 add_show_from_set (c
, &showlist
);
420 if (getenv ("GNUTARGET"))
421 set_gnutarget (getenv ("GNUTARGET"));
423 set_gnutarget ("auto");