1999-04-16 03:35:26 +02:00
|
|
|
|
/* Variables that describe the inferior process running under GDB:
|
|
|
|
|
Where it is, why it stopped, and how to step it.
|
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
* demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
* elfread.c, eval.c, expprint.c, expression.h: Update copyright.
* f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
* gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
* language.c, language.h, m32r-tdep.c: Update copyright.
* mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
* somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
* thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
* values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
* x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
* cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
Index: mi/ChangeLog
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-env.c: Update copyright.
2003-01-14 01:49:06 +01:00
|
|
|
|
|
2007-01-09 18:59:20 +01:00
|
|
|
|
Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
|
2009-01-03 06:58:08 +01:00
|
|
|
|
1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
2005-03-08 23:17:34 +01:00
|
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#if !defined (INFERIOR_H)
|
|
|
|
|
#define INFERIOR_H 1
|
|
|
|
|
|
2003-04-12 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh: Add missing opaque declarations.
* gdbarch.h: Regnerate.
* symtab.h: Add missing opaque declarations.
* value.h, target.h, symfile.h, stabsread.h: Ditto.
* x86-64-tdep.h, xmodem.h, monitor.h, typeprint.h: Ditto.
* srec.h, solib-svr4.h, source.h, inferior.h: Ditto.
* ser-unix.h, serial.h, remote-utils.h, gdbcore.h: Ditto.
* ppc-tdep.h, ocd.h, mips-tdep.h, gdbtypes.h: Ditto.
* buildsym.h, builtin-regs.h, linespec.h, language.h: Ditto.
* i387-tdep.h, gdbthread.h, event-top.h, gdb.h: Ditto.
* dwarf2cfi.h, doublest.h, disasm.h, cp-abi.h: Ditto.
* cli-out.h, c-lang.h, ax-gdb.h, arch-utils.h: Ditto.
* ada-lang.h, config/nm-lynx.h, config/nm-linux.h: Ditto.
* config/sparc/tm-sp64.h, config/rs6000/tm-rs6000.h: Ditto.
* config/pa/tm-hppah.h, config/m68k/tm-delta68.h: Ditto.
* cli/cli-setshow.h, cli/cli-script.h: Ditto.
2003-04-12 19:41:26 +02:00
|
|
|
|
struct target_waitstatus;
|
|
|
|
|
struct frame_info;
|
|
|
|
|
struct ui_file;
|
|
|
|
|
struct type;
|
2002-04-11 00:00:20 +02:00
|
|
|
|
struct gdbarch;
|
2002-06-25 20:38:57 +02:00
|
|
|
|
struct regcache;
|
2008-09-22 17:12:19 +02:00
|
|
|
|
struct ui_out;
|
2002-04-11 00:00:20 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* For bpstat. */
|
|
|
|
|
#include "breakpoint.h"
|
|
|
|
|
|
|
|
|
|
/* For enum target_signal. */
|
|
|
|
|
#include "target.h"
|
|
|
|
|
|
2002-12-06 08:35:55 +01:00
|
|
|
|
/* For struct frame_id. */
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
/* Two structures are used to record inferior state.
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
inferior_thread_state contains state about the program itself like its
|
|
|
|
|
registers and any signal it received when it last stopped.
|
|
|
|
|
This state must be restored regardless of how the inferior function call
|
|
|
|
|
ends (either successfully, or after it hits a breakpoint or signal)
|
|
|
|
|
if the program is to properly continue where it left off.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
inferior_status contains state regarding gdb's control of the inferior
|
|
|
|
|
itself like stepping control. It also contains session state like the
|
|
|
|
|
user's currently selected frame.
|
|
|
|
|
|
|
|
|
|
Call these routines around hand called functions, including function calls
|
|
|
|
|
in conditional breakpoints for example. */
|
|
|
|
|
|
|
|
|
|
struct inferior_thread_state;
|
1999-04-26 20:34:20 +02:00
|
|
|
|
struct inferior_status;
|
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
extern struct inferior_thread_state *save_inferior_thread_state (void);
|
|
|
|
|
extern struct inferior_status *save_inferior_status (void);
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
extern void restore_inferior_thread_state (struct inferior_thread_state *);
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void restore_inferior_status (struct inferior_status *);
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
extern struct cleanup *make_cleanup_restore_inferior_thread_state (struct inferior_thread_state *);
|
2000-05-22 11:02:23 +02:00
|
|
|
|
extern struct cleanup *make_cleanup_restore_inferior_status (struct inferior_status *);
|
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
extern void discard_inferior_thread_state (struct inferior_thread_state *);
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void discard_inferior_status (struct inferior_status *);
|
1999-04-26 20:34:20 +02:00
|
|
|
|
|
* dummy-frame.c (dummy_frame): Replace regcache member with
caller_state.
(dummy_frame_push): Replace caller_regcache arg with caller_state.
All callers updated.
(remove_dummy_frame,pop_dummy_frame,lookup_dummy_frame): New fns.
(dummy_frame_pop): Rewrite. Verify requested frame is in the
dummy frame stack. Restore program state.
(cleanup_dummy_frames): Rewrite.
(dummy_frame_sniffer): Update. Make static.
* dummy-frame.h (regcache,frame_info): Delete forward decls.
(inferior_thread_state): New forward decl.
(dummy_frame_push): Update prototype.
* frame.c (frame_pop): dummy_frame_pop now does all the work for
DUMMY_FRAMEs.
* infcall.c (breakpoint_auto_delete_contents): Delete.
(get_function_name,run_inferior_call): New fns.
(call_function_by_hand): Simplify by moving some code to
get_function_name, run_inferior_call. Inferior function call wrapped
in TRY_CATCH so there's less need for cleanups and all exits from
proceed are handled similarily. Detect program exit.
Detect program stopping in a different thread.
Make error messages more consistent.
* inferior.h (inferior_thread_state): Declare (opaque type).
(save_inferior_thread_state,restore_inferior_thread_state,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state, get_inferior_thread_state_regcache):
Declare.
(save_inferior_status): Update prototype.
* infrun.c: (normal_stop): When stopped for the completion of an
inferior function call, verify the expected stack frame kind.
(inferior_thread_state): New struct.
(save_inferior_thread_state,restore_inferior_thread_state,
do_restore_inferior_thread_state_cleanup,
make_cleanup_restore_inferior_thread_state,
discard_inferior_thread_state,
get_inferior_thread_state_regcache): New functions.
(inferior_status): Move stop_signal, stop_pc, registers to
inferior_thread_state. Remove restore_stack_info.
(save_inferior_status): Remove arg restore_stack_info.
All callers updated. Remove saving of state now saved by
save_inferior_thread_state.
(restore_inferior_status): Remove restoration of state now done by
restore_inferior_thread_state.
(discard_inferior_status): Remove freeing of registers, now done by
discard_inferior_thread_state.
* gdb.base/break.exp: Update expected gdb output.
* gdb.base/sepdebug.exp: Ditto.
* gdb.mi/mi-syn-frame.exp: Ditto.
* gdb.mi/mi2-syn-frame.exp: Ditto.
* gdb.base/call-signal-resume.exp: New file.
* gdb.base/call-signals.c: New file.
* gdb.base/unwindonsignal.exp: New file.
* gdb.base/unwindonsignal.c: New file.
* gdb.threads/interrupted-hand-call.exp: New file.
* gdb.threads/interrupted-hand-call.c: New file.
* gdb.threads/thread-unwindonsignal.exp: New file.
2009-01-19 20:05:01 +01:00
|
|
|
|
extern struct regcache *get_inferior_thread_state_regcache (struct inferior_thread_state *);
|
|
|
|
|
|
2001-05-15 02:03:38 +02:00
|
|
|
|
/* The -1 ptid, often used to indicate either an error condition
|
|
|
|
|
or a "don't care" condition, i.e, "run all threads." */
|
|
|
|
|
extern ptid_t minus_one_ptid;
|
|
|
|
|
|
|
|
|
|
/* The null or zero ptid, often used to indicate no process. */
|
|
|
|
|
extern ptid_t null_ptid;
|
|
|
|
|
|
|
|
|
|
/* Attempt to find and return an existing ptid with the given PID, LWP,
|
|
|
|
|
and TID components. If none exists, create a new one and return
|
|
|
|
|
that. */
|
|
|
|
|
ptid_t ptid_build (int pid, long lwp, long tid);
|
|
|
|
|
|
|
|
|
|
/* Find/Create a ptid from just a pid. */
|
|
|
|
|
ptid_t pid_to_ptid (int pid);
|
|
|
|
|
|
|
|
|
|
/* Fetch the pid (process id) component from a ptid. */
|
|
|
|
|
int ptid_get_pid (ptid_t ptid);
|
|
|
|
|
|
|
|
|
|
/* Fetch the lwp (lightweight process) component from a ptid. */
|
|
|
|
|
long ptid_get_lwp (ptid_t ptid);
|
|
|
|
|
|
|
|
|
|
/* Fetch the tid (thread id) component from a ptid. */
|
|
|
|
|
long ptid_get_tid (ptid_t ptid);
|
|
|
|
|
|
|
|
|
|
/* Compare two ptids to see if they are equal */
|
|
|
|
|
extern int ptid_equal (ptid_t p1, ptid_t p2);
|
|
|
|
|
|
2008-10-24 01:11:21 +02:00
|
|
|
|
/* Return true if PTID represents a process id. */
|
|
|
|
|
extern int ptid_is_pid (ptid_t ptid);
|
|
|
|
|
|
2001-05-07 00:22:03 +02:00
|
|
|
|
/* Save value of inferior_ptid so that it may be restored by
|
|
|
|
|
a later call to do_cleanups(). Returns the struct cleanup
|
|
|
|
|
pointer needed for later doing the cleanup. */
|
|
|
|
|
extern struct cleanup * save_inferior_ptid (void);
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void set_sigint_trap (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void clear_sigint_trap (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2005-07-06 16:54:37 +02:00
|
|
|
|
/* Set/get file name for default use for standard in/out in the inferior. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2005-07-06 16:54:37 +02:00
|
|
|
|
extern void set_inferior_io_terminal (const char *terminal_name);
|
|
|
|
|
extern const char *get_inferior_io_terminal (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
/* Collected pid, tid, etc. of the debugged inferior. When there's
|
|
|
|
|
no inferior, PIDGET (inferior_ptid) will be 0. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
extern ptid_t inferior_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-05 19:58:44 +02:00
|
|
|
|
/* Are we simulating synchronous execution? This is used in async gdb
|
|
|
|
|
to implement the 'run', 'continue' etc commands, which will not
|
|
|
|
|
redisplay the prompt until the execution is actually over. */
|
|
|
|
|
extern int sync_execution;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Inferior environment. */
|
|
|
|
|
|
2005-03-08 23:17:34 +01:00
|
|
|
|
extern struct gdb_environ *inferior_environ;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void clear_proceed_status (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void proceed (CORE_ADDR, enum target_signal, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-11-10 20:27:45 +01:00
|
|
|
|
/* When set, stop the 'step' command if we enter a function which has
|
|
|
|
|
no line number information. The normal behavior is that we step
|
|
|
|
|
over such function. */
|
|
|
|
|
extern int step_stop_if_no_debug;
|
|
|
|
|
|
2008-07-10 00:27:13 +02:00
|
|
|
|
/* If set, the inferior should be controlled in non-stop mode. In
|
|
|
|
|
this mode, each thread is controlled independently. Execution
|
|
|
|
|
commands apply only to the the selected thread by default, and stop
|
|
|
|
|
events stop only the thread that had the event -- the other threads
|
|
|
|
|
are kept running freely. */
|
|
|
|
|
extern int non_stop;
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void generic_mourn_inferior (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2002-08-26 21:18:33 +02:00
|
|
|
|
extern void terminal_save_ours (void);
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void terminal_ours (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern CORE_ADDR read_pc (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void write_pc (CORE_ADDR);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2005-05-14 08:07:42 +02:00
|
|
|
|
extern CORE_ADDR unsigned_pointer_to_address (struct type *type,
|
|
|
|
|
const gdb_byte *buf);
|
|
|
|
|
extern void unsigned_address_to_pointer (struct type *type, gdb_byte *buf,
|
2000-06-04 15:46:37 +02:00
|
|
|
|
CORE_ADDR addr);
|
2003-01-06 19:49:09 +01:00
|
|
|
|
extern CORE_ADDR signed_pointer_to_address (struct type *type,
|
2005-05-14 08:07:42 +02:00
|
|
|
|
const gdb_byte *buf);
|
|
|
|
|
extern void address_to_signed_pointer (struct type *type, gdb_byte *buf,
|
2000-06-04 15:46:37 +02:00
|
|
|
|
CORE_ADDR addr);
|
* gdbarch.sh (POINTER_TO_ADDRESS, ADDRESS_TO_POINTER): Two new
functions which architectures can redefine, defaulting to
generic_pointer_to_address and generic_address_to_pointer.
* findvar.c (extract_typed_address, store_typed_address,
generic_pointer_to_address, generic_address_to_pointer): New
functions.
(POINTER_TO_ADDRESS, ADDRESS_TO_POINTER): Provide default
definitions.
(extract_address, store_address): Doc fixes.
* values.c (value_as_pointer): Doc fix.
(value_from_pointer): New function.
* defs.h (extract_typed_address, store_typed_address): New
declarations.
* inferior.h (generic_address_to_pointer,
generic_pointer_to_address): New declarations.
* value.h (value_from_pointer): New declaration.
* ax-gdb.c (const_var_ref): Use value_from_pointer, not
value_from_longest.
* blockframe.c (generic_push_dummy_frame): Use read_pc and
read_sp, not read_register.
* c-valprint.c (c_val_print): Use extract_typed_address instead of
extract_address to extract vtable entries and references.
* cp-valprint.c (cp_print_value_fields): Use value_from_pointer
instead of value_from_longest to extract the vtable's address.
* eval.c (evaluate_subexp_standard): Use value_from_pointer
instead of value_from_longest to compute `this', and for doing
pointer-to-member dereferencing.
* findvar.c (read_register): Use extract_unsigned_integer, not
extract_address.
(read_var_value): Use store_typed_address instead of store_address
for building label values.
(locate_var_value): Use value_from_pointer instead of
value_from_longest.
* hppa-tdep.c (find_stub_with_shl_get): Use value_from_pointer,
instead of value_from_longest, to build arguments to __d_shl_get.
* printcmd.c (set_next_address): Use value_from_pointer, not
value_from_longest.
(x_command): Use value_from_pointer, not value_from_longest.
* tracepoint.c (set_traceframe_context): Use value_from_pointer,
not value_from_longest.
* valarith.c (value_add, value_sub): Use value_from_pointer, not
value_from_longest.
* valops.c (find_function_in_inferior, value_coerce_array,
value_coerce_function, value_addr, hand_function_call): Same.
* value.h (COERCE_REF): Use unpack_pointer, not unpack_long.
* values.c (unpack_long): Use extract_typed_address to produce
addresses from pointers and references, not extract_address.
(value_from_longest): Use store_typed_address instead of
store_address to produce pointer and reference values.
2000-04-14 20:43:41 +02:00
|
|
|
|
|
2008-01-29 22:11:24 +01:00
|
|
|
|
extern void wait_for_inferior (int treat_exec_as_sigtrap);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void fetch_inferior_event (void *);
|
1999-07-05 19:58:44 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void init_wait_for_inferior (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void close_exec_file (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void reopen_exec_file (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* The `resume' routine should only be called in special circumstances.
|
|
|
|
|
Normally, use `proceed', which handles a lot of bookkeeping. */
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void resume (int, enum target_signal);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* From misc files */
|
|
|
|
|
|
2002-08-21 18:34:10 +02:00
|
|
|
|
extern void default_print_registers_info (struct gdbarch *gdbarch,
|
|
|
|
|
struct ui_file *file,
|
|
|
|
|
struct frame_info *frame,
|
|
|
|
|
int regnum, int all);
|
2000-08-01 16:48:01 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void child_terminal_info (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void term_info (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void terminal_ours_for_output (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void terminal_inferior (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void terminal_init_inferior (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void terminal_init_inferior_with_pgrp (int pgrp);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* From procfs.c */
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int proc_iterate_over_mappings (int (*)(int, CORE_ADDR));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
extern ptid_t procfs_first_available (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* From fork-child.c */
|
|
|
|
|
|
Kill pthread_ops_hack
* target.h (struct target_ops): Make to_attach, to_detach,
to_create_inferior and to_mourn_inferior accept a pointer
to struct target_ops.
(target_attach, target_create_inferior, target_create_inferior):
Convert from macros to function. Find the right target to
invoke a method of.
(find_default_attach, find_default_create_inferior): New parameter
ops.
* corefile.c (core_file_command): Pass target to to_detach.
* corelow.c (core_detach): Add 'ops' parameter.
* fork-child.c (fork_inferior): Return the pid. Allow
init_trace_fun to be NULL.
* inf-ptrace (ptrace_ops_hack): Remove.
(inf_ptrace_him): Remove, moving all logic into....
(inf_ptrace_create_inferior): ... here. Push the target
passed as parameter.
(inf_ptrace_mourn_inferior, inf_ptrace_attach, inf_ptrace_detach):
Push/pop target passed as parameter, no ptrace_ops_hack.
(inf_ptrace_target): Don't remember result.
* inferior.h (fork_inferior): Adjust prototype.
* linux-nat.c (linux_nat_create_inferior, linux_nat_attach)
(linux_nat_detach, linux_nat_mourn_inferior): New parameter ops.
Pass it to linux_ops target.
* linux-thread-db.c (thread_db_detach, thread_db_mourn_inferior):
New parameter ops. Pass it to the target beneath.
* remote.c (remote_mourn, extended_remote_mourn, remote_detach)
(extended_remote_create_inferior): New parameter ops. Pass it
further.
* target.c (debug_to_attach, debug_to_detach)
(debug_to_mourn_inferior): New parameter ops.
(target_create_inferior): New.
(update_current_target): Do not inherit to_attach, to_detach,
to_create_inferiour, to_mourn_inferior. Do not default
to_detach and to_mourn_inferior.
(target_detach): Find the right target to use.
(target_mourn_inferior): New.
(find_default_attach, find_default_create_inferior): New parameter
ops. Pass the found target when calling its method.
(init_dummy_target): Provide fallback definition of to_detach.
(target_attach): New.
(debug_to_attach, debug_to_detach, debug_to_create_inferior)
(debug_to_mourn_inferiour): New parameter ops.
* aix-thread.c: Adjust.
* bsd-uthread.c: Adjust.
* gnu-nat.c: Adjust.
* go32-nat.c: Adjust.
* hpux-thread.c: Adjust.
* inf-ttrace.c: Ajust.
* monitor.c: Adjust.
* nto-procfs.c: Adjust.
* procfs.c: Adjust.
* remote-m32r-sdi.c: Adjust.
* remote-mips.c: Adjust.
* remote-sim.c: Adjust.
* rs6000-nat.c: Adjust.
* sol-thread.c: Adjust.
* win32-nat.c: Adjust.
* dec-thread.c: Adjust.
2008-11-09 12:27:18 +01:00
|
|
|
|
extern int fork_inferior (char *, char *, char **,
|
|
|
|
|
void (*)(void),
|
|
|
|
|
void (*)(int), void (*)(void), char *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void startup_inferior (int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-11-22 01:23:13 +01:00
|
|
|
|
extern char *construct_inferior_arguments (struct gdbarch *, int, char **);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* From inflow.c */
|
|
|
|
|
|
2005-07-06 16:54:37 +02:00
|
|
|
|
extern void new_tty_prefork (const char *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int gdb_has_a_terminal (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* From infrun.c */
|
|
|
|
|
|
2006-10-18 18:56:13 +02:00
|
|
|
|
extern void start_remote (int from_tty);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void normal_stop (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int signal_stop_state (int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int signal_print_state (int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int signal_pass_state (int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int signal_stop_update (int, int);
|
1999-09-09 02:02:17 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int signal_print_update (int, int);
|
1999-09-09 02:02:17 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int signal_pass_update (int, int);
|
1999-09-09 02:02:17 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
extern void get_last_target_status(ptid_t *ptid,
|
|
|
|
|
struct target_waitstatus *status);
|
2001-04-06 19:53:39 +02:00
|
|
|
|
|
2002-12-11 03:04:45 +01:00
|
|
|
|
extern void follow_inferior_reset_breakpoints (void);
|
|
|
|
|
|
Non-stop inferior control.
* infrun.c (resume): In non-stop mode, always resume just one
thread.
(proceed): Don't call prepare_to_proceed in non-stop mode.
(fetch_inferior_event): In non-stop mode, switch context before
handling the event.
(error_is_running, ensure_not_running): New.
(handle_inferior_event): In non-stop mode: Mark only the event
thread as stopped. Require that the target module manages adding
threads to the thread list. Assert that there isn't a
deferred_step_ptid set. Don't switch to infwait_thread_hop_state.
(normal_stop): Only mark not-running if inferior hasn't exited.
In non-stop mode, only mark the event thread.
* thread.c:Include "cli/cli-decode.h".
(print_thread_info): Don't read from a running thread.
Output "(running)" if thread is running.
(switch_to_thread): Don't read stop_pc if thread is executing.
(do_restore_current_thread_cleanup): Don't write to a running
thread.
(thread_apply_all_command): Don't read from a running thread. In
non-stop mode, do a full context-switch instead of just switching
threads.
(thread_apply_command): In non-stop mode, do a full context-switch
instead of just switching threads.
(do_captured_thread_select): Likewise. Inform user if selected
thread is running.
(_initialize_thread): Mark "info threads" and "thread" and
async_ok.
* inf-loop.c (inferior_event_handler): In non-stop mode, don't
unregister the target from the event loop.
* infcmd.c (continue_command, step_1, jump_command)
(signal_command): Ensure the selected thread isn't running.
(interrupt_target_command): In non-stop mode, interrupt only the
selected thread.
* inferior.h (error_is_running, ensure_not_running): Declare.
* target.h (struct target_ops): Add ptid argument to the to_stop
member.
(target_stop): Add ptid_t argument.
* target.c (update_current_target): Add ptid argument to to_stop's
type.
(debug_to_stop): Add ptid_t argument.
(debug_to_rcmd): Set to_stop_ptid.
* remote.c (remote_stop): Add ptid_t argument.
(async_remote_interrupt): Add inferior_ptid to target_stop.
* inf-ptrace.c (inf_ptrace_stop): Add ptid argument.
* Makefile.in (thread.o): Depend on $(cli_decode_h).
2008-07-10 00:42:43 +02:00
|
|
|
|
/* Throw an error indicating the current thread is running. */
|
|
|
|
|
extern void error_is_running (void);
|
|
|
|
|
|
|
|
|
|
/* Calls error_is_running if the current thread is running. */
|
|
|
|
|
extern void ensure_not_running (void);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* From infcmd.c */
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void tty_command (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2006-01-24 23:09:28 +01:00
|
|
|
|
extern void post_create_inferior (struct target_ops *, int);
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void attach_command (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-04-06 14:09:30 +02:00
|
|
|
|
extern char *get_inferior_args (void);
|
2001-01-24 17:28:20 +01:00
|
|
|
|
|
2001-04-06 14:09:30 +02:00
|
|
|
|
extern char *set_inferior_args (char *);
|
2001-01-24 17:28:20 +01:00
|
|
|
|
|
2001-11-22 01:23:13 +01:00
|
|
|
|
extern void set_inferior_args_vector (int, char **);
|
|
|
|
|
|
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* inferior.h (registers_info, stepi_command, nexti_command,
continue_command, interrupt_target_command): Export from infcmd.c.
* frame.h (args_info, selected_frame_level_changed_hook,
return_command): Export from stack.c.
* v850ice.c (stepi_command, nexti_command, continue_command): use
prototypes from inferior.h.
* tracepoint.c (registers_info, args_info, locals_info): Use
prototypes from frame.h and inferior.h.
* Makefile.in (mi-main.o): Add dependency on frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* mi-main.c (mi_cmd_exec_return): Don't use
return_command_wrapper, use return_command instead.
(mi_cmd_exec_interrupt): Don't use
interrupt_target_command_wrapper, use interrupt_target_command
instead.
(return_command_wrapper, interrupt_target_command_wrapper):
Delete.
Include frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* tui-hooks.c (selected_frame_level_changed_hook): Use the one
exported from frame.h.
2002-10-02 23:33:59 +02:00
|
|
|
|
extern void registers_info (char *, int);
|
|
|
|
|
|
|
|
|
|
extern void nexti_command (char *, int);
|
|
|
|
|
|
|
|
|
|
extern void stepi_command (char *, int);
|
|
|
|
|
|
2008-07-12 19:10:59 +02:00
|
|
|
|
extern void continue_1 (int all_threads);
|
|
|
|
|
|
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* inferior.h (registers_info, stepi_command, nexti_command,
continue_command, interrupt_target_command): Export from infcmd.c.
* frame.h (args_info, selected_frame_level_changed_hook,
return_command): Export from stack.c.
* v850ice.c (stepi_command, nexti_command, continue_command): use
prototypes from inferior.h.
* tracepoint.c (registers_info, args_info, locals_info): Use
prototypes from frame.h and inferior.h.
* Makefile.in (mi-main.o): Add dependency on frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* mi-main.c (mi_cmd_exec_return): Don't use
return_command_wrapper, use return_command instead.
(mi_cmd_exec_interrupt): Don't use
interrupt_target_command_wrapper, use interrupt_target_command
instead.
(return_command_wrapper, interrupt_target_command_wrapper):
Delete.
Include frame.h.
2002-10-02 Elena Zannoni <ezannoni@redhat.com>
* tui-hooks.c (selected_frame_level_changed_hook): Use the one
exported from frame.h.
2002-10-02 23:33:59 +02:00
|
|
|
|
extern void continue_command (char *, int);
|
|
|
|
|
|
|
|
|
|
extern void interrupt_target_command (char *args, int from_tty);
|
|
|
|
|
|
2008-07-12 19:10:59 +02:00
|
|
|
|
extern void interrupt_target_1 (int all_threads);
|
|
|
|
|
|
2008-11-17 17:37:35 +01:00
|
|
|
|
extern void detach_command (char *, int);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Address at which inferior stopped. */
|
|
|
|
|
|
|
|
|
|
extern CORE_ADDR stop_pc;
|
|
|
|
|
|
|
|
|
|
/* Flag indicating that a command has proceeded the inferior past the
|
|
|
|
|
current breakpoint. */
|
|
|
|
|
|
|
|
|
|
extern int breakpoint_proceeded;
|
|
|
|
|
|
|
|
|
|
/* Nonzero if stopped due to completion of a stack dummy routine. */
|
|
|
|
|
|
|
|
|
|
extern int stop_stack_dummy;
|
|
|
|
|
|
|
|
|
|
/* Nonzero if program stopped due to a random (unexpected) signal in
|
|
|
|
|
inferior process. */
|
|
|
|
|
|
|
|
|
|
extern int stopped_by_random_signal;
|
|
|
|
|
|
|
|
|
|
/* 1 means step over all subroutine calls.
|
|
|
|
|
-1 means step over calls to undebuggable functions. */
|
|
|
|
|
|
2000-11-10 20:27:45 +01:00
|
|
|
|
enum step_over_calls_kind
|
|
|
|
|
{
|
|
|
|
|
STEP_OVER_NONE,
|
|
|
|
|
STEP_OVER_ALL,
|
2001-02-06 05:03:23 +01:00
|
|
|
|
STEP_OVER_UNDEBUGGABLE
|
|
|
|
|
};
|
|
|
|
|
|
2007-07-02 23:29:28 +02:00
|
|
|
|
/* Anything but NO_STOP_QUIETLY means we expect a trap and the caller
|
|
|
|
|
will handle it themselves. STOP_QUIETLY is used when running in
|
|
|
|
|
the shell before the child program has been exec'd and when running
|
|
|
|
|
through shared library loading. STOP_QUIETLY_REMOTE is used when
|
|
|
|
|
setting up a remote connection; it is like STOP_QUIETLY_NO_SIGSTOP
|
|
|
|
|
except that there is no need to hide a signal. */
|
2003-04-08 20:52:04 +02:00
|
|
|
|
|
|
|
|
|
/* It is also used after attach, due to attaching to a process. This
|
|
|
|
|
is a bit trickier. When doing an attach, the kernel stops the
|
|
|
|
|
debuggee with a SIGSTOP. On newer GNU/Linux kernels (>= 2.5.61)
|
|
|
|
|
the handling of SIGSTOP for a ptraced process has changed. Earlier
|
|
|
|
|
versions of the kernel would ignore these SIGSTOPs, while now
|
|
|
|
|
SIGSTOP is treated like any other signal, i.e. it is not muffled.
|
|
|
|
|
|
|
|
|
|
If the gdb user does a 'continue' after the 'attach', gdb passes
|
|
|
|
|
the global variable stop_signal (which stores the signal from the
|
|
|
|
|
attach, SIGSTOP) to the ptrace(PTRACE_CONT,...) call. This is
|
|
|
|
|
problematic, because the kernel doesn't ignore such SIGSTOP
|
|
|
|
|
now. I.e. it is reported back to gdb, which in turn presents it
|
|
|
|
|
back to the user.
|
|
|
|
|
|
|
|
|
|
To avoid the problem, we use STOP_QUIETLY_NO_SIGSTOP, which allows
|
|
|
|
|
gdb to clear the value of stop_signal after the attach, so that it
|
|
|
|
|
is not passed back down to the kernel. */
|
|
|
|
|
|
|
|
|
|
enum stop_kind
|
|
|
|
|
{
|
|
|
|
|
NO_STOP_QUIETLY = 0,
|
|
|
|
|
STOP_QUIETLY,
|
2007-07-02 23:29:28 +02:00
|
|
|
|
STOP_QUIETLY_REMOTE,
|
2003-04-08 20:52:04 +02:00
|
|
|
|
STOP_QUIETLY_NO_SIGSTOP
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2008-10-17 21:43:47 +02:00
|
|
|
|
/* Reverse execution. */
|
|
|
|
|
enum exec_direction_kind
|
|
|
|
|
{
|
|
|
|
|
EXEC_FORWARD,
|
|
|
|
|
EXEC_REVERSE,
|
|
|
|
|
EXEC_ERROR
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern enum exec_direction_kind execution_direction;
|
|
|
|
|
|
2008-11-20 01:35:23 +01:00
|
|
|
|
/* Save register contents here when executing a "finish" command or are
|
|
|
|
|
about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
Thus this contains the return value from the called function (assuming
|
|
|
|
|
values are returned in a register). */
|
|
|
|
|
|
2002-06-25 20:38:57 +02:00
|
|
|
|
extern struct regcache *stop_registers;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
Implement displaced stepping.
gdb/
* gdbarch.sh (max_insn_length): New 'variable'.
(displaced_step_copy, displaced_step_fixup)
(displaced_step_free_closure, displaced_step_location): New
functions.
(struct displaced_step_closure): Add forward declaration.
* gdbarch.c, gdbarch.h: Regenerated.
* arch-utils.c: #include "objfiles.h".
(simple_displaced_step_copy_insn)
(simple_displaced_step_free_closure)
(displaced_step_at_entry_point): New functions.
* arch-utils.h (simple_displaced_step_copy_insn)
(simple_displaced_step_free_closure)
(displaced_step_at_entry_point): New prototypes.
* i386-tdep.c (I386_MAX_INSN_LEN): Rename to...
(I386_MAX_MATCHED_INSN_LEN): ... this.
(i386_absolute_jmp_p, i386_absolute_call_p)
(i386_ret_p, i386_call_p, i386_breakpoint_p, i386_syscall_p)
(i386_displaced_step_fixup): New functions.
(struct i386_insn, i386_match_insn): Update.
(i386_gdbarch_init): Set gdbarch_max_insn_length.
* i386-tdep.h (I386_MAX_INSN_LEN): New.
(i386_displaced_step_fixup): New prototype.
* i386-linux-tdep.c (i386_linux_init_abi): Include "arch-utils.h".
Register gdbarch_displaced_step_copy,
gdbarch_displaced_step_fixup, gdbarch_displaced_step_free_closure,
and gdbarch_displaced_step_location functions.
* infrun.c (debug_displaced): New variable.
(show_debug_displaced): New function.
(struct displaced_step_request): New struct.
(displaced_step_request_queue, displaced_step_ptid)
(displaced_step_gdbarch, displaced_step_closure)
(displaced_step_original, displaced_step_copy)
(displaced_step_saved_copy, can_use_displaced_stepping): New
variables.
(show_can_use_displaced_stepping, use_displaced_stepping)
(displaced_step_clear, cleanup_displaced_step_closure)
(displaced_step_dump_bytes, displaced_step_prepare)
(displaced_step_clear_cleanup, write_memory_ptid)
(displaced_step_fixup): New functions.
(resume): Call displaced_step_prepare.
(proceed): Call read_pc once, and remember the value. If using
displaced stepping, don't remove breakpoints.
(handle_inferior_event): Call displaced_step_fixup. Add some
debugging output. When we try to step over a breakpoint, but get
a signal to deliver to the thread instead, ensure the step-resume
breakpoint is actually inserted. If a thread hop is needed, and
displaced stepping is enabled, don't remove breakpoints.
(init_wait_for_inferior): Call displaced_step_clear.
(_initialize_infrun): Add "set debug displaced" command. Add
"maint set can-use-displaced-stepping" command. Clear
displaced_step_ptid.
* inferior.h (debug_displaced): Declare variable.
(displaced_step_dump_bytes): Declare function.
* Makefile.in (arch-utils.o, i386-linux-tdep.o): Update
dependencies.
gdb/testsuite/
* gdb.asm/asmsrc1.s: Add scratch space.
gdb/doc/
* gdb.texinfo (Debugging Output): Document "set/show debug
displaced".
(Maintenance Commands): Document "maint set/show
can-use-displaced-stepping".
2008-05-02 18:49:54 +02:00
|
|
|
|
/* True if we are debugging displaced stepping. */
|
|
|
|
|
extern int debug_displaced;
|
|
|
|
|
|
|
|
|
|
/* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
|
|
|
|
|
void displaced_step_dump_bytes (struct ui_file *file,
|
|
|
|
|
const gdb_byte *buf, size_t len);
|
|
|
|
|
|
2008-06-10 11:32:05 +02:00
|
|
|
|
|
|
|
|
|
/* When set, normal_stop will not call the normal_stop observer. */
|
2008-06-13 22:19:19 +02:00
|
|
|
|
extern int suppress_stop_observer;
|
|
|
|
|
|
|
|
|
|
/* When set, no calls to target_resumed observer will be made. */
|
|
|
|
|
extern int suppress_resume_observer;
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2007-05-31 18:57:30 +02:00
|
|
|
|
/* Possible values for gdbarch_call_dummy_location. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#define ON_STACK 1
|
|
|
|
|
#define AT_ENTRY_POINT 4
|
2003-08-08 01:41:57 +02:00
|
|
|
|
#define AT_SYMBOL 5
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* If STARTUP_WITH_SHELL is set, GDB's "run"
|
|
|
|
|
will attempts to start up the debugee under a shell.
|
|
|
|
|
This is in order for argument-expansion to occur. E.g.,
|
|
|
|
|
(gdb) run *
|
|
|
|
|
The "*" gets expanded by the shell into a list of files.
|
|
|
|
|
While this is a nice feature, it turns out to interact badly
|
|
|
|
|
with some of the catch-fork/catch-exec features we have added.
|
|
|
|
|
In particular, if the shell does any fork/exec's before
|
|
|
|
|
the exec of the target program, that can confuse GDB.
|
|
|
|
|
To disable this feature, set STARTUP_WITH_SHELL to 0.
|
|
|
|
|
To enable this feature, set STARTUP_WITH_SHELL to 1.
|
|
|
|
|
The catch-exec traps expected during start-up will
|
|
|
|
|
be 1 if target is not started up with a shell, 2 if it is.
|
|
|
|
|
- RT
|
|
|
|
|
If you disable this, you need to decrement
|
|
|
|
|
START_INFERIOR_TRAPS_EXPECTED in tm.h. */
|
|
|
|
|
#define STARTUP_WITH_SHELL 1
|
|
|
|
|
#if !defined(START_INFERIOR_TRAPS_EXPECTED)
|
|
|
|
|
#define START_INFERIOR_TRAPS_EXPECTED 2
|
|
|
|
|
#endif
|
2008-09-22 17:12:19 +02:00
|
|
|
|
|
|
|
|
|
struct private_inferior;
|
|
|
|
|
|
|
|
|
|
/* GDB represents the state of each program execution with an object
|
|
|
|
|
called an inferior. An inferior typically corresponds to a process
|
|
|
|
|
but is more general and applies also to targets that do not have a
|
|
|
|
|
notion of processes. Each run of an executable creates a new
|
|
|
|
|
inferior, as does each attachment to an existing process.
|
|
|
|
|
Inferiors have unique internal identifiers that are different from
|
|
|
|
|
target process ids. Each inferior may in turn have multiple
|
|
|
|
|
threads running in it. */
|
|
|
|
|
|
|
|
|
|
struct inferior
|
|
|
|
|
{
|
|
|
|
|
/* Pointer to next inferior in singly-linked list of inferiors. */
|
|
|
|
|
struct inferior *next;
|
|
|
|
|
|
|
|
|
|
/* Convenient handle (GDB inferior id). Unique across all
|
|
|
|
|
inferiors. */
|
|
|
|
|
int num;
|
|
|
|
|
|
|
|
|
|
/* Actual target inferior id, usually, a process id. This matches
|
|
|
|
|
the ptid_t.pid member of threads of this inferior. */
|
|
|
|
|
int pid;
|
|
|
|
|
|
2008-09-22 17:20:08 +02:00
|
|
|
|
/* See the definition of stop_kind above. */
|
|
|
|
|
enum stop_kind stop_soon;
|
|
|
|
|
|
2008-09-22 17:21:30 +02:00
|
|
|
|
/* Nonzero if this child process was attached rather than
|
|
|
|
|
forked. */
|
|
|
|
|
int attach_flag;
|
|
|
|
|
|
2008-11-05 21:23:07 +01:00
|
|
|
|
/* What is left to do for an execution command after any thread of
|
|
|
|
|
this inferior stops. For continuations associated with a
|
|
|
|
|
specific thread, see `struct thread_info'. */
|
|
|
|
|
struct continuation *continuations;
|
|
|
|
|
|
2008-09-22 17:12:19 +02:00
|
|
|
|
/* Private data used by the target vector implementation. */
|
|
|
|
|
struct private_inferior *private;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Create an empty inferior list, or empty the existing one. */
|
|
|
|
|
extern void init_inferior_list (void);
|
|
|
|
|
|
|
|
|
|
/* Add an inferior to the inferior list, print a message that a new
|
|
|
|
|
inferior is found, and return the pointer to the new inferior.
|
|
|
|
|
Caller may use this pointer to initialize the private inferior
|
|
|
|
|
data. */
|
|
|
|
|
extern struct inferior *add_inferior (int pid);
|
|
|
|
|
|
|
|
|
|
/* Same as add_inferior, but don't print new inferior notifications to
|
|
|
|
|
the CLI. */
|
|
|
|
|
extern struct inferior *add_inferior_silent (int pid);
|
|
|
|
|
|
|
|
|
|
/* Delete an existing inferior list entry, due to inferior exit. */
|
|
|
|
|
extern void delete_inferior (int pid);
|
|
|
|
|
|
|
|
|
|
/* Same as delete_inferior, but don't print new inferior notifications
|
|
|
|
|
to the CLI. */
|
|
|
|
|
extern void delete_inferior_silent (int pid);
|
|
|
|
|
|
|
|
|
|
/* Delete an existing inferior list entry, due to inferior detaching. */
|
|
|
|
|
extern void detach_inferior (int pid);
|
|
|
|
|
|
2008-09-22 17:18:30 +02:00
|
|
|
|
/* Get rid of all inferiors. */
|
|
|
|
|
extern void discard_all_inferiors (void);
|
|
|
|
|
|
2008-09-22 17:12:19 +02:00
|
|
|
|
/* Translate the integer inferior id (GDB's homegrown id, not the system's)
|
|
|
|
|
into a "pid" (which may be overloaded with extra inferior information). */
|
|
|
|
|
extern int gdb_inferior_id_to_pid (int);
|
|
|
|
|
|
|
|
|
|
/* Translate a target 'pid' into the integer inferior id (GDB's
|
|
|
|
|
homegrown id, not the system's). */
|
|
|
|
|
extern int pid_to_gdb_inferior_id (int pid);
|
|
|
|
|
|
|
|
|
|
/* Boolean test for an already-known pid. */
|
|
|
|
|
extern int in_inferior_list (int pid);
|
|
|
|
|
|
|
|
|
|
/* Boolean test for an already-known inferior id (GDB's homegrown id,
|
|
|
|
|
not the system's). */
|
|
|
|
|
extern int valid_inferior_id (int num);
|
|
|
|
|
|
|
|
|
|
/* Search function to lookup a inferior by target 'pid'. */
|
|
|
|
|
extern struct inferior *find_inferior_pid (int pid);
|
|
|
|
|
|
|
|
|
|
/* Inferior iterator function.
|
|
|
|
|
|
|
|
|
|
Calls a callback function once for each inferior, so long as the
|
|
|
|
|
callback function returns false. If the callback function returns
|
|
|
|
|
true, the iteration will end and the current inferior will be
|
|
|
|
|
returned. This can be useful for implementing a search for a
|
|
|
|
|
inferior with arbitrary attributes, or for applying some operation
|
|
|
|
|
to every inferior.
|
|
|
|
|
|
|
|
|
|
It is safe to delete the iterated inferior from the callback. */
|
|
|
|
|
extern struct inferior *iterate_over_inferiors (int (*) (struct inferior *,
|
|
|
|
|
void *),
|
|
|
|
|
void *);
|
|
|
|
|
|
|
|
|
|
/* Prints the list of inferiors and their details on UIOUT.
|
|
|
|
|
|
|
|
|
|
If REQUESTED_INFERIOR is not -1, it's the GDB id of the inferior
|
|
|
|
|
that should be printed. Otherwise, all inferiors are printed. */
|
|
|
|
|
extern void print_inferior (struct ui_out *uiout, int requested_inferior);
|
|
|
|
|
|
|
|
|
|
/* Returns true if the inferior list is not empty. */
|
|
|
|
|
extern int have_inferiors (void);
|
|
|
|
|
|
|
|
|
|
/* Return a pointer to the current inferior. It is an error to call
|
|
|
|
|
this if there is no current inferior. */
|
|
|
|
|
extern struct inferior *current_inferior (void);
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#endif /* !defined (INFERIOR_H) */
|