2009-01-13 05:14:07 +01:00
|
|
|
/* Target-vector operations for controlling windows child processes, for GDB.
|
2002-01-19 04:32:43 +01:00
|
|
|
|
2015-01-01 10:32:14 +01:00
|
|
|
Copyright (C) 1995-2015 Free Software Foundation, Inc.
|
2002-01-19 04:32:43 +01:00
|
|
|
|
2000-02-28 07:31:36 +01:00
|
|
|
Contributed by Cygnus Solutions, A Red Hat Company.
|
1996-06-24 09:11:35 +02:00
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
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
|
1995-10-09 22:54:26 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2007-08-23 20:08:50 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1995-10-09 22:54:26 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
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/>. */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2002-02-16 03:33:24 +01:00
|
|
|
/* Originally by Steve Chamberlain, sac@cygnus.com */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "frame.h" /* required by inferior.h */
|
|
|
|
#include "inferior.h"
|
Add new infrun.h header.
Move infrun.c declarations out of inferior.h to a new infrun.h file.
Tested by building on:
i686-w64-mingw32, enable-targets=all
x86_64-linux, enable-targets=all
i586-pc-msdosdjgpp
And also grepped the whole tree for each symbol moved to find where
infrun.h might be necessary.
gdb/
2014-05-22 Pedro Alves <palves@redhat.com>
* inferior.h (debug_infrun, debug_displaced, stop_on_solib_events)
(sync_execution, sched_multi, step_stop_if_no_debug, non_stop)
(disable_randomization, enum exec_direction_kind)
(execution_direction, stop_registers, start_remote)
(clear_proceed_status, proceed, resume, user_visible_resume_ptid)
(wait_for_inferior, normal_stop, get_last_target_status)
(prepare_for_detach, fetch_inferior_event, init_wait_for_inferior)
(insert_step_resume_breakpoint_at_sal)
(follow_inferior_reset_breakpoints, stepping_past_instruction_at)
(set_step_info, print_stop_event, signal_stop_state)
(signal_print_state, signal_pass_state, signal_stop_update)
(signal_print_update, signal_pass_update)
(update_signals_program_target, clear_exit_convenience_vars)
(displaced_step_dump_bytes, update_observer_mode)
(signal_catch_update, gdb_signal_from_command): Move
declarations ...
* infrun.h: ... to this new file.
* amd64-tdep.c: Include infrun.h.
* annotate.c: Include infrun.h.
* arch-utils.c: Include infrun.h.
* arm-linux-tdep.c: Include infrun.h.
* arm-tdep.c: Include infrun.h.
* break-catch-sig.c: Include infrun.h.
* breakpoint.c: Include infrun.h.
* common/agent.c: Include infrun.h instead of inferior.h.
* corelow.c: Include infrun.h.
* event-top.c: Include infrun.h.
* go32-nat.c: Include infrun.h.
* i386-tdep.c: Include infrun.h.
* inf-loop.c: Include infrun.h.
* infcall.c: Include infrun.h.
* infcmd.c: Include infrun.h.
* infrun.c: Include infrun.h.
* linux-fork.c: Include infrun.h.
* linux-nat.c: Include infrun.h.
* linux-thread-db.c: Include infrun.h.
* monitor.c: Include infrun.h.
* nto-tdep.c: Include infrun.h.
* procfs.c: Include infrun.h.
* record-btrace.c: Include infrun.h.
* record-full.c: Include infrun.h.
* remote-m32r-sdi.c: Include infrun.h.
* remote-mips.c: Include infrun.h.
* remote-notif.c: Include infrun.h.
* remote-sim.c: Include infrun.h.
* remote.c: Include infrun.h.
* reverse.c: Include infrun.h.
* rs6000-tdep.c: Include infrun.h.
* s390-linux-tdep.c: Include infrun.h.
* solib-irix.c: Include infrun.h.
* solib-osf.c: Include infrun.h.
* solib-svr4.c: Include infrun.h.
* target.c: Include infrun.h.
* top.c: Include infrun.h.
* windows-nat.c: Include infrun.h.
* mi/mi-interp.c: Include infrun.h.
* mi/mi-main.c: Include infrun.h.
* python/py-threadevent.c: Include infrun.h.
2014-05-22 13:29:11 +02:00
|
|
|
#include "infrun.h"
|
1995-10-09 22:54:26 +01:00
|
|
|
#include "target.h"
|
|
|
|
#include "gdbcore.h"
|
|
|
|
#include "command.h"
|
2001-02-19 12:47:16 +01:00
|
|
|
#include "completer.h"
|
2001-03-01 02:39:22 +01:00
|
|
|
#include "regcache.h"
|
2001-11-24 19:21:27 +01:00
|
|
|
#include "top.h"
|
2003-09-13 18:46:21 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <imagehlp.h>
|
2009-03-22 22:27:30 +01:00
|
|
|
#include <psapi.h>
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2011-10-07 15:52:11 +02:00
|
|
|
#include <wchar.h>
|
2003-09-13 18:46:21 +02:00
|
|
|
#include <sys/cygwin.h>
|
2011-10-07 15:52:11 +02:00
|
|
|
#include <cygwin/version.h>
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
1996-11-12 03:19:25 +01:00
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
#include "buildsym.h"
|
2011-03-23 19:23:56 +01:00
|
|
|
#include "filenames.h"
|
1996-03-11 20:08:57 +01:00
|
|
|
#include "symfile.h"
|
|
|
|
#include "objfiles.h"
|
2012-09-26 23:23:11 +02:00
|
|
|
#include "gdb_bfd.h"
|
2007-09-04 03:12:18 +02:00
|
|
|
#include "gdb_obstack.h"
|
* Makefile.in, breakpoint.c, corelow.c, fork-child.c, inflow.c,
infrun.c, mac-nat.c, procfs.c, remote.c, sol-thread.c, thread.c,
win32-nat.c, config/nm-lynx.h: Rename thread.h to gdbthread.h to
avoid conflict with Solaris /usr/include/thread.h.
1996-05-09 23:24:20 +02:00
|
|
|
#include "gdbthread.h"
|
1995-10-09 22:54:26 +01:00
|
|
|
#include "gdbcmd.h"
|
1999-12-07 04:56:07 +01:00
|
|
|
#include <unistd.h>
|
2003-10-23 05:01:55 +02:00
|
|
|
#include "exec.h"
|
2005-10-31 23:50:58 +01:00
|
|
|
#include "solist.h"
|
2005-11-01 06:08:29 +01:00
|
|
|
#include "solib.h"
|
2007-09-04 03:12:18 +02:00
|
|
|
#include "xml-support.h"
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2003-10-26 16:03:42 +01:00
|
|
|
#include "i386-tdep.h"
|
|
|
|
#include "i387-tdep.h"
|
|
|
|
|
2009-01-12 02:10:28 +01:00
|
|
|
#include "windows-tdep.h"
|
|
|
|
#include "windows-nat.h"
|
Rename 32- and 64-bit Intel files from "i386" to "x86"
This commit renames nine files that contain code used by both 32- and
64-bit Intel ports such that their names are prefixed with "x86"
rather than "i386". All types, functions and variables within these
files are likewise renamed such that their names are prefixed with
"x86" rather than "i386". This makes GDB follow the convention used
by gdbserver such that 32-bit Intel code lives in files called
"i386-*", 64-bit Intel code lives in files called "amd64-*", and code
for both 32- and 64-bit Intel lives in files called "x86-*".
This commit only renames OS-independent files. The Linux ports of
both GDB and gdbserver now follow the i386/amd64/x86 convention fully.
Some ports still use the old convention where "i386" in file/function/
type/variable names can mean "32-bit only" or "32- and 64-bit" but I
don't want to touch ports I can't fully test except where absolutely
necessary.
gdb/ChangeLog:
* i386-nat.h: Renamed as...
* x86-nat.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-nat.c: Renamed as...
* x86-nat.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* common/i386-xstate.h: Renamed as...
* common/x86-xstate.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-cpuid.h: Renamed as...
* nat/x86-cpuid.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-gcc-cpuid.h: Renamed as...
* nat/x86-gcc-cpuid.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-dregs.h: Renamed as...
* nat/x86-dregs.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-dregs.c: Renamed as...
* nat/x86-dregs.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
gdb/gdbserver/ChangeLog:
* i386-low.h: Renamed as...
* x86-low.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-low.c: Renamed as...
* x86-low.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
2014-08-19 16:16:11 +02:00
|
|
|
#include "x86-nat.h"
|
2010-02-12 05:55:15 +01:00
|
|
|
#include "complaints.h"
|
2014-03-12 12:21:36 +01:00
|
|
|
#include "inf-child.h"
|
2007-09-04 03:12:18 +02:00
|
|
|
|
2009-03-22 23:13:21 +01:00
|
|
|
#define AdjustTokenPrivileges dyn_AdjustTokenPrivileges
|
2009-03-22 22:27:30 +01:00
|
|
|
#define DebugActiveProcessStop dyn_DebugActiveProcessStop
|
|
|
|
#define DebugBreakProcess dyn_DebugBreakProcess
|
|
|
|
#define DebugSetProcessKillOnExit dyn_DebugSetProcessKillOnExit
|
|
|
|
#define EnumProcessModules dyn_EnumProcessModules
|
|
|
|
#define GetModuleInformation dyn_GetModuleInformation
|
2009-03-22 23:13:21 +01:00
|
|
|
#define LookupPrivilegeValueA dyn_LookupPrivilegeValueA
|
|
|
|
#define OpenProcessToken dyn_OpenProcessToken
|
2010-05-31 09:00:41 +02:00
|
|
|
#define GetConsoleFontSize dyn_GetConsoleFontSize
|
|
|
|
#define GetCurrentConsoleFont dyn_GetCurrentConsoleFont
|
2009-03-22 22:27:30 +01:00
|
|
|
|
2009-03-22 23:13:21 +01:00
|
|
|
static BOOL WINAPI (*AdjustTokenPrivileges)(HANDLE, BOOL, PTOKEN_PRIVILEGES,
|
|
|
|
DWORD, PTOKEN_PRIVILEGES, PDWORD);
|
2009-03-22 22:27:30 +01:00
|
|
|
static BOOL WINAPI (*DebugActiveProcessStop) (DWORD);
|
|
|
|
static BOOL WINAPI (*DebugBreakProcess) (HANDLE);
|
|
|
|
static BOOL WINAPI (*DebugSetProcessKillOnExit) (BOOL);
|
|
|
|
static BOOL WINAPI (*EnumProcessModules) (HANDLE, HMODULE *, DWORD,
|
|
|
|
LPDWORD);
|
|
|
|
static BOOL WINAPI (*GetModuleInformation) (HANDLE, HMODULE, LPMODULEINFO,
|
|
|
|
DWORD);
|
2009-03-22 23:13:21 +01:00
|
|
|
static BOOL WINAPI (*LookupPrivilegeValueA)(LPCSTR, LPCSTR, PLUID);
|
|
|
|
static BOOL WINAPI (*OpenProcessToken)(HANDLE, DWORD, PHANDLE);
|
2011-01-12 02:23:29 +01:00
|
|
|
static BOOL WINAPI (*GetCurrentConsoleFont) (HANDLE, BOOL,
|
|
|
|
CONSOLE_FONT_INFO *);
|
2010-05-31 09:00:41 +02:00
|
|
|
static COORD WINAPI (*GetConsoleFontSize) (HANDLE, DWORD);
|
2009-03-22 22:27:30 +01:00
|
|
|
|
2010-03-06 20:27:09 +01:00
|
|
|
#undef STARTUPINFO
|
|
|
|
#undef CreateProcess
|
|
|
|
#undef GetModuleFileNameEx
|
|
|
|
|
|
|
|
#ifndef __CYGWIN__
|
|
|
|
# define __PMAX (MAX_PATH + 1)
|
|
|
|
static DWORD WINAPI (*GetModuleFileNameEx) (HANDLE, HMODULE, LPSTR, DWORD);
|
|
|
|
# define STARTUPINFO STARTUPINFOA
|
|
|
|
# define CreateProcess CreateProcessA
|
|
|
|
# define GetModuleFileNameEx_name "GetModuleFileNameExA"
|
|
|
|
# define bad_GetModuleFileNameEx bad_GetModuleFileNameExA
|
|
|
|
#else
|
|
|
|
# define __PMAX PATH_MAX
|
2011-01-12 02:23:29 +01:00
|
|
|
/* The starting and ending address of the cygwin1.dll text segment. */
|
2010-03-06 20:27:09 +01:00
|
|
|
static CORE_ADDR cygwin_load_start;
|
|
|
|
static CORE_ADDR cygwin_load_end;
|
|
|
|
# define __USEWIDE
|
|
|
|
typedef wchar_t cygwin_buf_t;
|
2011-01-12 02:23:29 +01:00
|
|
|
static DWORD WINAPI (*GetModuleFileNameEx) (HANDLE, HMODULE,
|
|
|
|
LPWSTR, DWORD);
|
2010-03-06 20:27:09 +01:00
|
|
|
# define STARTUPINFO STARTUPINFOW
|
|
|
|
# define CreateProcess CreateProcessW
|
|
|
|
# define GetModuleFileNameEx_name "GetModuleFileNameExW"
|
|
|
|
# define bad_GetModuleFileNameEx bad_GetModuleFileNameExW
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
2006-02-20 06:10:51 +01:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
static int have_saved_context; /* True if we've saved context from a
|
|
|
|
cygwin signal. */
|
|
|
|
static CONTEXT saved_context; /* Containes the saved context from a
|
|
|
|
cygwin signal. */
|
2006-02-20 06:10:51 +01:00
|
|
|
|
1999-04-26 20:25:51 +02:00
|
|
|
/* If we're not using the old Cygwin header file set, define the
|
|
|
|
following which never should have been in the generic Win32 API
|
2011-01-12 02:23:29 +01:00
|
|
|
headers in the first place since they were our own invention... */
|
1999-04-26 20:25:51 +02:00
|
|
|
#ifndef _GNU_H_WINDOWS_H
|
2000-08-07 01:25:32 +02:00
|
|
|
enum
|
2000-08-27 06:21:35 +02:00
|
|
|
{
|
|
|
|
FLAG_TRACE_BIT = 0x100,
|
|
|
|
};
|
1999-04-26 20:25:51 +02:00
|
|
|
#endif
|
|
|
|
|
2009-01-09 11:45:42 +01:00
|
|
|
#ifndef CONTEXT_EXTENDED_REGISTERS
|
|
|
|
/* This macro is only defined on ia32. It only makes sense on this target,
|
|
|
|
so define it as zero if not already defined. */
|
|
|
|
#define CONTEXT_EXTENDED_REGISTERS 0
|
|
|
|
#endif
|
|
|
|
|
2015-02-19 00:13:47 +01:00
|
|
|
#define CONTEXT_DEBUGGER_DR CONTEXT_FULL | CONTEXT_FLOATING_POINT \
|
|
|
|
| CONTEXT_SEGMENTS | CONTEXT_DEBUG_REGISTERS \
|
|
|
|
| CONTEXT_EXTENDED_REGISTERS
|
2001-11-27 06:15:58 +01:00
|
|
|
|
2009-03-08 22:01:52 +01:00
|
|
|
static uintptr_t dr[8];
|
2003-12-26 01:39:04 +01:00
|
|
|
static int debug_registers_changed;
|
|
|
|
static int debug_registers_used;
|
2010-01-27 20:57:54 +01:00
|
|
|
|
|
|
|
static int windows_initialization_done;
|
2007-11-24 13:13:28 +01:00
|
|
|
#define DR6_CLEAR_VALUE 0xffff0ff0
|
2001-11-27 06:15:58 +01:00
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
/* The string sent by cygwin when it processes a signal.
|
2011-01-12 02:23:29 +01:00
|
|
|
FIXME: This should be in a cygwin include file. */
|
2005-11-01 15:07:00 +01:00
|
|
|
#ifndef _CYGWIN_SIGNAL_STRING
|
|
|
|
#define _CYGWIN_SIGNAL_STRING "cYgSiGw00f"
|
|
|
|
#endif
|
1998-11-05 15:08:48 +01:00
|
|
|
|
2000-06-03 07:04:14 +02:00
|
|
|
#define CHECK(x) check (x, __FILE__,__LINE__)
|
2002-02-16 03:33:24 +01:00
|
|
|
#define DEBUG_EXEC(x) if (debug_exec) printf_unfiltered x
|
2002-02-08 20:31:38 +01:00
|
|
|
#define DEBUG_EVENTS(x) if (debug_events) printf_unfiltered x
|
|
|
|
#define DEBUG_MEM(x) if (debug_memory) printf_unfiltered x
|
|
|
|
#define DEBUG_EXCEPT(x) if (debug_exceptions) printf_unfiltered x
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2013-12-18 05:34:36 +01:00
|
|
|
static void windows_stop (struct target_ops *self, ptid_t);
|
2009-02-24 16:27:58 +01:00
|
|
|
static int windows_thread_alive (struct target_ops *, ptid_t);
|
Add a target_ops parameter to the to_kill method in struct target_ops.
* target.h (struct target_ops): Add a "target_ops *" parameter to
method to_kill.
(target_kill): Remove macro. Add declaration.
* target.c (debug_to_kill): Delete, no longer necessary.
(target_kill): New function.
(update_current_target): Stop inheriting the to_kill method.
Do not de_fault it to no_process either.
(setup_target_debug): Do not set current_target.to_kill.
* gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
accordingly.
2009-03-17 20:28:09 +01:00
|
|
|
static void windows_kill_inferior (struct target_ops *);
|
1998-11-05 15:08:48 +01:00
|
|
|
|
2009-05-14 11:37:00 +02:00
|
|
|
static void cygwin_set_dr (int i, CORE_ADDR addr);
|
|
|
|
static void cygwin_set_dr7 (unsigned long val);
|
2011-12-16 20:55:26 +01:00
|
|
|
static CORE_ADDR cygwin_get_dr (int i);
|
2009-05-14 11:37:00 +02:00
|
|
|
static unsigned long cygwin_get_dr6 (void);
|
2011-12-16 20:55:26 +01:00
|
|
|
static unsigned long cygwin_get_dr7 (void);
|
2009-05-14 11:37:00 +02:00
|
|
|
|
2012-05-24 18:51:47 +02:00
|
|
|
static enum gdb_signal last_sig = GDB_SIGNAL_0;
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Set if a signal was received from the debugged process. */
|
2002-02-06 10:14:50 +01:00
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
/* Thread information structure used to track information that is
|
2007-11-24 13:13:28 +01:00
|
|
|
not available in gdb's thread structure. */
|
2015-03-16 12:31:31 +01:00
|
|
|
typedef struct windows_thread_info_struct
|
1999-07-07 22:11:14 +02:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
struct windows_thread_info_struct *next;
|
1999-07-07 22:11:14 +02:00
|
|
|
DWORD id;
|
|
|
|
HANDLE h;
|
2010-04-16 09:49:37 +02:00
|
|
|
CORE_ADDR thread_local_base;
|
1999-07-07 22:11:14 +02:00
|
|
|
char *name;
|
2007-11-24 13:13:28 +01:00
|
|
|
int suspended;
|
2003-12-26 05:29:22 +01:00
|
|
|
int reload_context;
|
1999-07-07 22:11:14 +02:00
|
|
|
CONTEXT context;
|
1999-12-07 04:56:07 +01:00
|
|
|
STACKFRAME sf;
|
2000-08-27 06:21:35 +02:00
|
|
|
}
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info;
|
1999-12-07 04:56:07 +01:00
|
|
|
|
2015-03-16 12:31:31 +01:00
|
|
|
static windows_thread_info thread_head;
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* The process and thread handles for the above context. */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
static DEBUG_EVENT current_event; /* The current debug event from
|
|
|
|
WaitForDebugEvent */
|
|
|
|
static HANDLE current_process_handle; /* Currently executing process */
|
2015-03-16 12:31:31 +01:00
|
|
|
static windows_thread_info *current_thread; /* Info on currently selected thread */
|
2002-03-22 06:03:22 +01:00
|
|
|
static DWORD main_thread_id; /* Thread ID of the main thread */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Counts of things. */
|
1995-10-09 22:54:26 +01:00
|
|
|
static int exception_count = 0;
|
|
|
|
static int event_count = 0;
|
2002-02-16 03:33:24 +01:00
|
|
|
static int saw_create;
|
2007-12-02 06:45:08 +01:00
|
|
|
static int open_process_used = 0;
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* User options. */
|
1995-10-09 22:54:26 +01:00
|
|
|
static int new_console = 0;
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2006-05-22 01:04:39 +02:00
|
|
|
static int cygwin_exceptions = 0;
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
1999-12-07 04:56:07 +01:00
|
|
|
static int new_group = 1;
|
2002-02-16 03:33:24 +01:00
|
|
|
static int debug_exec = 0; /* show execution */
|
|
|
|
static int debug_events = 0; /* show events from kernel */
|
|
|
|
static int debug_memory = 0; /* show target memory accesses */
|
1996-03-11 20:08:57 +01:00
|
|
|
static int debug_exceptions = 0; /* show target exceptions */
|
2002-02-16 03:33:24 +01:00
|
|
|
static int useshell = 0; /* use shell for subprocesses */
|
|
|
|
|
2009-01-11 05:13:57 +01:00
|
|
|
/* This vector maps GDB's idea of a register's number into an offset
|
2009-01-13 05:14:07 +01:00
|
|
|
in the windows exception context vector.
|
1995-10-09 22:54:26 +01:00
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
It also contains the bit mask needed to load the register in question.
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2009-01-11 05:13:57 +01:00
|
|
|
The contents of this table can only be computed by the units
|
|
|
|
that provide CPU-specific support for Windows native debugging.
|
|
|
|
These units should set the table by calling
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_set_context_register_offsets.
|
2009-01-11 05:13:57 +01:00
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
One day we could read a reg, we could inspect the context we
|
|
|
|
already have loaded, if it doesn't have the bit set that we need,
|
|
|
|
we read that set of registers in using GetThreadContext. If the
|
2011-01-12 02:23:29 +01:00
|
|
|
context already contains what we need, we just unpack it. Then to
|
1995-10-09 22:54:26 +01:00
|
|
|
write a register, first we have to ensure that the context contains
|
|
|
|
the other regs of the group, and then we copy the info in and set
|
2011-01-12 02:23:29 +01:00
|
|
|
out bit. */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2009-01-11 05:13:57 +01:00
|
|
|
static const int *mappings;
|
1999-12-22 22:45:11 +01:00
|
|
|
|
2012-05-04 20:36:30 +02:00
|
|
|
/* The function to use in order to determine whether a register is
|
|
|
|
a segment register or not. */
|
|
|
|
static segment_register_p_ftype *segment_register_p;
|
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
/* This vector maps the target's idea of an exception (extracted
|
2011-01-12 02:23:29 +01:00
|
|
|
from the DEBUG_EVENT structure) to GDB's idea. */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
|
|
|
struct xlate_exception
|
|
|
|
{
|
|
|
|
int them;
|
2012-05-24 18:39:15 +02:00
|
|
|
enum gdb_signal us;
|
1995-10-09 22:54:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct xlate_exception
|
|
|
|
xlate[] =
|
|
|
|
{
|
2012-05-24 18:51:47 +02:00
|
|
|
{EXCEPTION_ACCESS_VIOLATION, GDB_SIGNAL_SEGV},
|
|
|
|
{STATUS_STACK_OVERFLOW, GDB_SIGNAL_SEGV},
|
|
|
|
{EXCEPTION_BREAKPOINT, GDB_SIGNAL_TRAP},
|
|
|
|
{DBG_CONTROL_C, GDB_SIGNAL_INT},
|
|
|
|
{EXCEPTION_SINGLE_STEP, GDB_SIGNAL_TRAP},
|
|
|
|
{STATUS_FLOAT_DIVIDE_BY_ZERO, GDB_SIGNAL_FPE},
|
1995-10-09 22:54:26 +01:00
|
|
|
{-1, -1}};
|
|
|
|
|
2009-01-11 05:13:57 +01:00
|
|
|
/* Set the MAPPINGS static global to OFFSETS.
|
|
|
|
See the description of MAPPINGS for more details. */
|
|
|
|
|
|
|
|
void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_set_context_register_offsets (const int *offsets)
|
2009-01-11 05:13:57 +01:00
|
|
|
{
|
|
|
|
mappings = offsets;
|
|
|
|
}
|
|
|
|
|
2012-05-04 20:36:30 +02:00
|
|
|
/* See windows-nat.h. */
|
|
|
|
|
|
|
|
void
|
|
|
|
windows_set_segment_register_p (segment_register_p_ftype *fun)
|
|
|
|
{
|
|
|
|
segment_register_p = fun;
|
|
|
|
}
|
|
|
|
|
2002-02-04 12:00:10 +01:00
|
|
|
static void
|
|
|
|
check (BOOL ok, const char *file, int line)
|
|
|
|
{
|
|
|
|
if (!ok)
|
2013-02-27 20:42:26 +01:00
|
|
|
printf_filtered ("error return %s:%d was %u\n", file, line,
|
|
|
|
(unsigned) GetLastError ());
|
2002-02-04 12:00:10 +01:00
|
|
|
}
|
|
|
|
|
2007-11-24 13:13:28 +01:00
|
|
|
/* Find a thread record given a thread id. If GET_CONTEXT is not 0,
|
|
|
|
then also retrieve the context for this thread. If GET_CONTEXT is
|
|
|
|
negative, then don't suspend the thread. */
|
2015-03-16 12:31:31 +01:00
|
|
|
static windows_thread_info *
|
1998-11-05 15:08:48 +01:00
|
|
|
thread_rec (DWORD id, int get_context)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
1998-11-05 15:08:48 +01:00
|
|
|
|
1999-07-07 22:11:14 +02:00
|
|
|
for (th = &thread_head; (th = th->next) != NULL;)
|
1998-11-05 15:08:48 +01:00
|
|
|
if (th->id == id)
|
|
|
|
{
|
2007-11-24 13:13:28 +01:00
|
|
|
if (!th->suspended && get_context)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2000-04-21 04:26:14 +02:00
|
|
|
if (get_context > 0 && id != current_event.dwThreadId)
|
2007-11-24 13:13:28 +01:00
|
|
|
{
|
|
|
|
if (SuspendThread (th->h) == (DWORD) -1)
|
|
|
|
{
|
|
|
|
DWORD err = GetLastError ();
|
2013-06-11 13:03:42 +02:00
|
|
|
|
2014-04-19 10:12:19 +02:00
|
|
|
/* We get Access Denied (5) when trying to suspend
|
|
|
|
threads that Windows started on behalf of the
|
|
|
|
debuggee, usually when those threads are just
|
2015-06-03 15:28:29 +02:00
|
|
|
about to exit.
|
|
|
|
We can get Invalid Handle (6) if the main thread
|
|
|
|
has exited. */
|
|
|
|
if (err != ERROR_INVALID_HANDLE
|
|
|
|
&& err != ERROR_ACCESS_DENIED)
|
2014-04-19 10:12:19 +02:00
|
|
|
warning (_("SuspendThread (tid=0x%x) failed."
|
|
|
|
" (winerr %u)"),
|
|
|
|
(unsigned) id, (unsigned) err);
|
|
|
|
th->suspended = -1;
|
2007-11-24 13:13:28 +01:00
|
|
|
}
|
2014-04-19 10:12:19 +02:00
|
|
|
else
|
|
|
|
th->suspended = 1;
|
2007-11-24 13:13:28 +01:00
|
|
|
}
|
1998-11-05 15:08:48 +01:00
|
|
|
else if (get_context < 0)
|
2007-11-24 13:13:28 +01:00
|
|
|
th->suspended = -1;
|
2003-12-26 05:29:22 +01:00
|
|
|
th->reload_context = 1;
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
|
|
|
return th;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-08-08 15:16:17 +02:00
|
|
|
/* Add a thread to the thread list. */
|
2015-03-16 12:31:31 +01:00
|
|
|
static windows_thread_info *
|
2010-04-16 09:49:37 +02:00
|
|
|
windows_add_thread (ptid_t ptid, HANDLE h, void *tlb)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
2008-08-08 15:16:17 +02:00
|
|
|
DWORD id;
|
|
|
|
|
|
|
|
gdb_assert (ptid_get_tid (ptid) != 0);
|
|
|
|
|
|
|
|
id = ptid_get_tid (ptid);
|
1998-11-05 15:08:48 +01:00
|
|
|
|
|
|
|
if ((th = thread_rec (id, FALSE)))
|
|
|
|
return th;
|
|
|
|
|
2015-03-16 12:31:31 +01:00
|
|
|
th = XCNEW (windows_thread_info);
|
1998-11-05 15:08:48 +01:00
|
|
|
th->id = id;
|
|
|
|
th->h = h;
|
2010-04-16 09:49:37 +02:00
|
|
|
th->thread_local_base = (CORE_ADDR) (uintptr_t) tlb;
|
1998-11-05 15:08:48 +01:00
|
|
|
th->next = thread_head.next;
|
|
|
|
thread_head.next = th;
|
2008-08-08 15:16:17 +02:00
|
|
|
add_thread (ptid);
|
|
|
|
/* Set the debug registers for the new thread if they are used. */
|
2002-02-04 12:00:10 +01:00
|
|
|
if (debug_registers_used)
|
|
|
|
{
|
|
|
|
/* Only change the value of the debug registers. */
|
|
|
|
th->context.ContextFlags = CONTEXT_DEBUG_REGISTERS;
|
|
|
|
CHECK (GetThreadContext (th->h, &th->context));
|
|
|
|
th->context.Dr0 = dr[0];
|
|
|
|
th->context.Dr1 = dr[1];
|
|
|
|
th->context.Dr2 = dr[2];
|
|
|
|
th->context.Dr3 = dr[3];
|
2007-11-24 13:13:28 +01:00
|
|
|
th->context.Dr6 = DR6_CLEAR_VALUE;
|
2002-02-04 12:00:10 +01:00
|
|
|
th->context.Dr7 = dr[7];
|
|
|
|
CHECK (SetThreadContext (th->h, &th->context));
|
|
|
|
th->context.ContextFlags = 0;
|
|
|
|
}
|
1998-11-05 15:08:48 +01:00
|
|
|
return th;
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
/* Clear out any old thread list and reintialize it to a
|
2011-01-12 02:23:29 +01:00
|
|
|
pristine state. */
|
1995-10-09 22:54:26 +01:00
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_init_thread_list (void)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th = &thread_head;
|
1998-11-05 15:08:48 +01:00
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
DEBUG_EVENTS (("gdb: windows_init_thread_list\n"));
|
1998-11-05 15:08:48 +01:00
|
|
|
init_thread_list ();
|
|
|
|
while (th->next != NULL)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *here = th->next;
|
1998-11-05 15:08:48 +01:00
|
|
|
th->next = here->next;
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (here);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
2005-01-23 06:09:46 +01:00
|
|
|
thread_head.next = NULL;
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Delete a thread from the list of threads. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static void
|
2013-05-04 15:36:18 +02:00
|
|
|
windows_delete_thread (ptid_t ptid, DWORD exit_code)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
2008-08-08 15:16:17 +02:00
|
|
|
DWORD id;
|
|
|
|
|
|
|
|
gdb_assert (ptid_get_tid (ptid) != 0);
|
|
|
|
|
|
|
|
id = ptid_get_tid (ptid);
|
1998-11-05 15:08:48 +01:00
|
|
|
|
|
|
|
if (info_verbose)
|
2008-08-08 15:16:17 +02:00
|
|
|
printf_unfiltered ("[Deleting %s]\n", target_pid_to_str (ptid));
|
2013-05-04 15:36:18 +02:00
|
|
|
else if (print_thread_events && id != main_thread_id)
|
|
|
|
printf_unfiltered (_("[%s exited with code %u]\n"),
|
2013-05-30 15:52:31 +02:00
|
|
|
target_pid_to_str (ptid), (unsigned) exit_code);
|
2008-08-08 15:16:17 +02:00
|
|
|
delete_thread (ptid);
|
1998-11-05 15:08:48 +01:00
|
|
|
|
|
|
|
for (th = &thread_head;
|
|
|
|
th->next != NULL && th->next->id != id;
|
|
|
|
th = th->next)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (th->next != NULL)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *here = th->next;
|
1998-11-05 15:08:48 +01:00
|
|
|
th->next = here->next;
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (here);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
do_windows_fetch_inferior_registers (struct regcache *regcache, int r)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
1999-12-07 04:56:07 +01:00
|
|
|
char *context_offset = ((char *) ¤t_thread->context) + mappings[r];
|
* win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
to get at the current architecture and at the target specific vector.
Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
remove define of I387_ST0_REGNUM.
* amd64-tdep.c (I387_ST0_REGNUM): Remove define.
(amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
get at the current architecture
(I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
parameter.
* i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
I387_NUM_XMM_REGS and I387_MM0_REGNUM.
(I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
(I387_FSTAT_REGNUM): Add target specific vector as parameter.
(i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
at the target specific vector.
(i386_get_longjmp_target): Use get_frame_arch to get at the current
architecture. Use gdbarch_tdep to get at the target specific vector.
(i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
update caller. Use gdbarch_tdep to get at the target specific vector.
(i386_register_to_value: Use get_frame_arch to get at the current
architecture.
* i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
parameter.
* i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
undef's.
(i387_convert_register_p, i387_register_to_value,
i387_value_to_register): Update call for i386_fp_regnum_p.
* i387-tdep.h: Remove comment.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
(I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
I387_MXCSR_REGNUM): Add target specific vector as parameter.
2008-03-11 06:21:38 +01:00
|
|
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
1999-12-07 04:56:07 +01:00
|
|
|
long l;
|
2003-10-26 16:03:42 +01:00
|
|
|
|
2003-12-26 05:29:22 +01:00
|
|
|
if (!current_thread)
|
2003-12-26 15:56:45 +01:00
|
|
|
return; /* Windows sometimes uses a non-existent thread id in its
|
2011-01-12 02:23:29 +01:00
|
|
|
events. */
|
2003-12-26 05:29:22 +01:00
|
|
|
|
|
|
|
if (current_thread->reload_context)
|
|
|
|
{
|
2006-04-10 18:13:01 +02:00
|
|
|
#ifdef __COPY_CONTEXT_SIZE
|
2006-02-20 06:10:51 +01:00
|
|
|
if (have_saved_context)
|
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Lie about where the program actually is stopped since
|
|
|
|
cygwin has informed us that we should consider the signal
|
|
|
|
to have occurred at another location which is stored in
|
|
|
|
"saved_context. */
|
|
|
|
memcpy (¤t_thread->context, &saved_context,
|
|
|
|
__COPY_CONTEXT_SIZE);
|
2006-02-20 06:10:51 +01:00
|
|
|
have_saved_context = 0;
|
|
|
|
}
|
|
|
|
else
|
2006-04-10 18:13:01 +02:00
|
|
|
#endif
|
2006-02-20 06:10:51 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th = current_thread;
|
2006-02-20 06:10:51 +01:00
|
|
|
th->context.ContextFlags = CONTEXT_DEBUGGER_DR;
|
2014-04-19 10:12:19 +02:00
|
|
|
CHECK (GetThreadContext (th->h, &th->context));
|
2009-03-22 22:27:30 +01:00
|
|
|
/* Copy dr values from that thread.
|
2011-01-12 02:23:29 +01:00
|
|
|
But only if there were not modified since last stop.
|
|
|
|
PR gdb/2388 */
|
2007-12-22 23:09:56 +01:00
|
|
|
if (!debug_registers_changed)
|
|
|
|
{
|
|
|
|
dr[0] = th->context.Dr0;
|
|
|
|
dr[1] = th->context.Dr1;
|
|
|
|
dr[2] = th->context.Dr2;
|
|
|
|
dr[3] = th->context.Dr3;
|
|
|
|
dr[6] = th->context.Dr6;
|
|
|
|
dr[7] = th->context.Dr7;
|
|
|
|
}
|
2006-02-20 06:10:51 +01:00
|
|
|
}
|
2003-12-26 05:29:22 +01:00
|
|
|
current_thread->reload_context = 0;
|
|
|
|
}
|
|
|
|
|
* win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
to get at the current architecture and at the target specific vector.
Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
remove define of I387_ST0_REGNUM.
* amd64-tdep.c (I387_ST0_REGNUM): Remove define.
(amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
get at the current architecture
(I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
parameter.
* i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
I387_NUM_XMM_REGS and I387_MM0_REGNUM.
(I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
(I387_FSTAT_REGNUM): Add target specific vector as parameter.
(i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
at the target specific vector.
(i386_get_longjmp_target): Use get_frame_arch to get at the current
architecture. Use gdbarch_tdep to get at the target specific vector.
(i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
update caller. Use gdbarch_tdep to get at the target specific vector.
(i386_register_to_value: Use get_frame_arch to get at the current
architecture.
* i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
parameter.
* i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
undef's.
(i387_convert_register_p, i387_register_to_value,
i387_value_to_register): Update call for i386_fp_regnum_p.
* i387-tdep.h: Remove comment.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
(I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
I387_MXCSR_REGNUM): Add target specific vector as parameter.
2008-03-11 06:21:38 +01:00
|
|
|
if (r == I387_FISEG_REGNUM (tdep))
|
1999-12-07 04:56:07 +01:00
|
|
|
{
|
2000-08-27 06:21:35 +02:00
|
|
|
l = *((long *) context_offset) & 0xffff;
|
* target.h (struct regcache): Add forward declaration.
(struct target_ops): Add REGCACHE parameter to to_fetch_registers
and to_store_registers target operations.
(target_fetch_registers, target_store_registers): Update.
* regcache.c (regcache_raw_read): Replace register_cached by
regcache_valid_p. Pass regcache to target_fetch_registers.
(regcache_raw_write): Pass regcache to target_store_registers.
* arm-linux-nat.c (store_fpregister, store_fpregs, store_register,
store_regs, store_wmmx_regs): Replace register_cached by
regcache_valid_p.
* bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd): Pass current_regcache
to target_fetch_registers calls.
* corelow.c (core_open): Likewise.
* linux-nat.c (linux_nat_corefile_thread_callback): Likewise.
* proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* win32-nat.c (win32_resume): Likewise.
* ia64-tdep.c (ia64_store_return_value): Pass current_regcache
to target_store_registers call.
* rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
* inferior.h (store_inferior_registers): Update prototype.
(fetch_inferior_registers): Likewise.
* gnu-nat.c (gnu_store_registers, gnu_fetch_registers): Likewise.
* mips-linux-nat.c (super_fetch_registers, super_store_registers):
Update function pointer signatures.
* aix-thread.c (aix_thread_fetch_registers): Add REGCACHE parameter,
use it instead of current_regcache, update calls.
(aix_thread_store_registers): Likewise.
* alphabsd-nat.c (alphabsd_fetch_inferior_registers): Likewise.
(alphabsd_store_inferior_registers): Likewise.
* amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Likewise.
(amd64bsd_store_inferior_registers): Likewise.
* amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): Likewise.
(amd64_linux_store_inferior_registers): Likewise.
* arm-linux-nat.c (fetch_fpregister, fetch_fpregs, store_fpregister,
store_fpregs, fetch_register, fetch_regs, store_register, store_regs,
fetch_wmmx_regs, store_wmmx_regs): Likewise.
(arm_linux_fetch_inferior_registers): Likewise.
(arm_linux_store_inferior_registers): Likewise.
* armnbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
fetch_fp_regs, armnbsd_fetch_registers): Likewise.
(store_register, store_regs, store_fp_register, store_fp_regs,
armnbsd_store_registers): Likewise.
* bsd-kvm.c (bsd_kvm_fetch_pcb, bsd_kvm_fetch_registers): Likewise.
* bsd-uthread.c (bsd_uthread_fetch_registers): Likewise.
(bsd_uthread_store_registers): Likewise.
* corelow.c (get_core_registers): Likewise.
* go32-nat.c (fetch_register, go32_fetch_registers, store_register,
go32_store_registers): Likewise.
* hppabsd-nat.c (hppabsd_fetch_registers): Likewise.
(hppabsd_store_registers): Likewise.
* hppa-hpux-nat.c (hppa_hpux_fetch_register): Likewise.
(hppa_hpux_fetch_inferior_registers): Likewise.
(hppa_hpux_store_register): Likewise.
(hppa_hpux_store_inferior_registers): Likewise.
* hppa-linux-nat.c (fetch_register, store_register): Likewise.
(hppa_linux_fetch_inferior_registers): Likewise.
(hppa_linux_store_inferior_registers): Likewise.
* hpux-thread.c (hpux_thread_fetch_registers): Likewise.
(hpux_thread_store_registers): Likewise.
* i386bsd-nat.c (i386bsd_fetch_inferior_registers): Likewise.
(i386bsd_store_inferior_registers): Likewise.
* i386gnu-nat.c (fetch_fpregs, gnu_fetch_registers, store_fpregs,
gnu_store_registers): Likewise.
* i386-linux-nat.c (fetch_register, store_register, fetch_regs,
store_regs, fetch_fpregs, store_fpregs, fetch_fpxregs, store_fpxregs):
Likewise.
(i386_linux_fetch_inferior_registers): Likewise.
(i386_linux_store_inferior_registers): Likewise.
* ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
(ia64_linux_fetch_registers): Likewise.
(ia64_linux_store_register): Likewise.
(ia64_linux_store_registers): Likewise.
* inf-child.c (inf_child_fetch_inferior_registers): Likewise.
(inf_child_store_inferior_registers): Likewise.
* inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
(inf_ptrace_fetch_registers): Likewise.
(inf_ptrace_store_register): Likewise.
(inf_ptrace_store_registers): Likewise.
* infptrace.c (fetch_register, store_register): Likewise.
(fetch_inferior_registers, store_inferior_registers): Likewise.
* m32r-linux-nat.c (fetch_regs, store_regs): Likewise.
(m32r_linux_fetch_inferior_registers): Likewise.
(m32r_linux_store_inferior_registers): Likewise.
* m68kbsd-nat.c (m68kbsd_fetch_inferior_registers): Likewise.
(m68kbsd_store_inferior_registers): Likewise.
* m68klinux-nat.c (fetch_register, old_fetch_inferior_registers,
store_register, old_store_inferior_registers, fetch_regs, store_regs,
fetch_fpregs, store_fpregs): Likewise.
(m68k_linux_fetch_inferior_registers): Likewise.
(m68k_linux_store_inferior_registers): Likewise.
* m88kbsd-nat.c (m88kbsd_fetch_inferior_registers): Likewise.
(m88kbsd_store_inferior_registers): Likewise.
* mips64obsd-nat.c (mips64obsd_fetch_inferior_registers): Likewise.
(mips64obsd_store_inferior_registers): Likewise.
* mips-linux-nat.c (mips64_linux_regsets_fetch_registers): Likewise.
(mips64_linux_regsets_store_registers): Likewise.
(mips64_linux_fetch_registers): Likewise.
(mips64_linux_store_registers): Likewise.
* mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers): Likewise.
(mipsnbsd_store_inferior_registers): Likewise.
* monitor.c (monitor_fetch_register, monitor_store_register): Likewise.
(monitor_fetch_registers, monitor_store_registers): Likewise.
* nto-procfs.c (procfs_fetch_registers): Likewise.
(procfs_store_registers): Likewise.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register,
fetch_register, supply_vrregset, fetch_altivec_registers,
fetch_ppc_registers, ppc_linux_fetch_inferior_registers): Likewise.
(store_altivec_register, store_spe_register, store_register,
fill_vrregset, store_altivec_registers, store_ppc_registers,
ppc_linux_store_inferior_registers): Likewise.
* ppcnbsd-nat.c (ppcnbsd_fetch_inferior_registers): Likewise.
(ppcnbsd_store_inferior_registers): Likewise.
* ppcobsd-nat.c (ppcobsd_fetch_registers): Likewise.
(ppcobsd_store_registers): Likewise.
* procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
* remote.c (fetch_register_using_p, process_g_packet,
fetch_registers_using_g, remote_fetch_registers): Likewise.
(store_register_using_P, store_registers_using_G,
remote_store_registers): Likewise.
* remote-m32r-sdi.c (m32r_fetch_registers, m32r_fetch_register,
m32r_store_register, m32r_store_register): Likewise.
* remote-mips.c (mips_fetch_registers, mips_store_registers): Likewise.
* remote-sim.c (gdbsim_fetch_register): Likewise.
(gdbsim_store_register): Likewise.
* rs6000-nat.c (fetch_register, store_register): Likewise.
(rs6000_fetch_inferior_registers): Likewise.
(rs6000_store_inferior_registers): Likewise.
* s390-nat.c (fetch_regs, store_regs): Likewise.
(fetch_fpregs, store_fpregs): Likewise.
(s390_linux_fetch_inferior_registers): Likewise.
(s390_linux_store_inferior_registers): Likewise.
* shnbsd-nat.c (shnbsd_fetch_inferior_registers): Likewise.
(shnbsd_store_inferior_registers): Likewise.
* sol-thread.c (sol_thread_fetch_registers): Likewise.
(sol_thread_store_registers): Likewise.
* sparc-nat.c (fetch_inferior_registers): Likewise.
(store_inferior_registers): Likewise.
* spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
(spu_store_inferior_registers): Likewise.
* target.c (debug_print_register): Likewise.
(debug_to_fetch_registers, debug_to_store_registers): Likewise.
* vaxbsd-nat.c (vaxbsd_fetch_inferior_registers): Likewise.
(vaxbsd_store_inferior_registers): Likewise.
* win32-nat.c (do_win32_fetch_inferior_registers): Likewise.
(win32_fetch_inferior_registers): Likewise.
(win32_store_inferior_registers): Likewise.
2007-05-06 16:34:38 +02:00
|
|
|
regcache_raw_supply (regcache, r, (char *) &l);
|
1999-12-07 04:56:07 +01:00
|
|
|
}
|
* win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
to get at the current architecture and at the target specific vector.
Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
remove define of I387_ST0_REGNUM.
* amd64-tdep.c (I387_ST0_REGNUM): Remove define.
(amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
get at the current architecture
(I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
parameter.
* i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
I387_NUM_XMM_REGS and I387_MM0_REGNUM.
(I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
(I387_FSTAT_REGNUM): Add target specific vector as parameter.
(i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
at the target specific vector.
(i386_get_longjmp_target): Use get_frame_arch to get at the current
architecture. Use gdbarch_tdep to get at the target specific vector.
(i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
update caller. Use gdbarch_tdep to get at the target specific vector.
(i386_register_to_value: Use get_frame_arch to get at the current
architecture.
* i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
parameter.
* i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
undef's.
(i387_convert_register_p, i387_register_to_value,
i387_value_to_register): Update call for i386_fp_regnum_p.
* i387-tdep.h: Remove comment.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
(I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
I387_MXCSR_REGNUM): Add target specific vector as parameter.
2008-03-11 06:21:38 +01:00
|
|
|
else if (r == I387_FOP_REGNUM (tdep))
|
1999-12-07 04:56:07 +01:00
|
|
|
{
|
2000-08-27 06:21:35 +02:00
|
|
|
l = (*((long *) context_offset) >> 16) & ((1 << 11) - 1);
|
* target.h (struct regcache): Add forward declaration.
(struct target_ops): Add REGCACHE parameter to to_fetch_registers
and to_store_registers target operations.
(target_fetch_registers, target_store_registers): Update.
* regcache.c (regcache_raw_read): Replace register_cached by
regcache_valid_p. Pass regcache to target_fetch_registers.
(regcache_raw_write): Pass regcache to target_store_registers.
* arm-linux-nat.c (store_fpregister, store_fpregs, store_register,
store_regs, store_wmmx_regs): Replace register_cached by
regcache_valid_p.
* bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd): Pass current_regcache
to target_fetch_registers calls.
* corelow.c (core_open): Likewise.
* linux-nat.c (linux_nat_corefile_thread_callback): Likewise.
* proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* win32-nat.c (win32_resume): Likewise.
* ia64-tdep.c (ia64_store_return_value): Pass current_regcache
to target_store_registers call.
* rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
* inferior.h (store_inferior_registers): Update prototype.
(fetch_inferior_registers): Likewise.
* gnu-nat.c (gnu_store_registers, gnu_fetch_registers): Likewise.
* mips-linux-nat.c (super_fetch_registers, super_store_registers):
Update function pointer signatures.
* aix-thread.c (aix_thread_fetch_registers): Add REGCACHE parameter,
use it instead of current_regcache, update calls.
(aix_thread_store_registers): Likewise.
* alphabsd-nat.c (alphabsd_fetch_inferior_registers): Likewise.
(alphabsd_store_inferior_registers): Likewise.
* amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Likewise.
(amd64bsd_store_inferior_registers): Likewise.
* amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): Likewise.
(amd64_linux_store_inferior_registers): Likewise.
* arm-linux-nat.c (fetch_fpregister, fetch_fpregs, store_fpregister,
store_fpregs, fetch_register, fetch_regs, store_register, store_regs,
fetch_wmmx_regs, store_wmmx_regs): Likewise.
(arm_linux_fetch_inferior_registers): Likewise.
(arm_linux_store_inferior_registers): Likewise.
* armnbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
fetch_fp_regs, armnbsd_fetch_registers): Likewise.
(store_register, store_regs, store_fp_register, store_fp_regs,
armnbsd_store_registers): Likewise.
* bsd-kvm.c (bsd_kvm_fetch_pcb, bsd_kvm_fetch_registers): Likewise.
* bsd-uthread.c (bsd_uthread_fetch_registers): Likewise.
(bsd_uthread_store_registers): Likewise.
* corelow.c (get_core_registers): Likewise.
* go32-nat.c (fetch_register, go32_fetch_registers, store_register,
go32_store_registers): Likewise.
* hppabsd-nat.c (hppabsd_fetch_registers): Likewise.
(hppabsd_store_registers): Likewise.
* hppa-hpux-nat.c (hppa_hpux_fetch_register): Likewise.
(hppa_hpux_fetch_inferior_registers): Likewise.
(hppa_hpux_store_register): Likewise.
(hppa_hpux_store_inferior_registers): Likewise.
* hppa-linux-nat.c (fetch_register, store_register): Likewise.
(hppa_linux_fetch_inferior_registers): Likewise.
(hppa_linux_store_inferior_registers): Likewise.
* hpux-thread.c (hpux_thread_fetch_registers): Likewise.
(hpux_thread_store_registers): Likewise.
* i386bsd-nat.c (i386bsd_fetch_inferior_registers): Likewise.
(i386bsd_store_inferior_registers): Likewise.
* i386gnu-nat.c (fetch_fpregs, gnu_fetch_registers, store_fpregs,
gnu_store_registers): Likewise.
* i386-linux-nat.c (fetch_register, store_register, fetch_regs,
store_regs, fetch_fpregs, store_fpregs, fetch_fpxregs, store_fpxregs):
Likewise.
(i386_linux_fetch_inferior_registers): Likewise.
(i386_linux_store_inferior_registers): Likewise.
* ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
(ia64_linux_fetch_registers): Likewise.
(ia64_linux_store_register): Likewise.
(ia64_linux_store_registers): Likewise.
* inf-child.c (inf_child_fetch_inferior_registers): Likewise.
(inf_child_store_inferior_registers): Likewise.
* inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
(inf_ptrace_fetch_registers): Likewise.
(inf_ptrace_store_register): Likewise.
(inf_ptrace_store_registers): Likewise.
* infptrace.c (fetch_register, store_register): Likewise.
(fetch_inferior_registers, store_inferior_registers): Likewise.
* m32r-linux-nat.c (fetch_regs, store_regs): Likewise.
(m32r_linux_fetch_inferior_registers): Likewise.
(m32r_linux_store_inferior_registers): Likewise.
* m68kbsd-nat.c (m68kbsd_fetch_inferior_registers): Likewise.
(m68kbsd_store_inferior_registers): Likewise.
* m68klinux-nat.c (fetch_register, old_fetch_inferior_registers,
store_register, old_store_inferior_registers, fetch_regs, store_regs,
fetch_fpregs, store_fpregs): Likewise.
(m68k_linux_fetch_inferior_registers): Likewise.
(m68k_linux_store_inferior_registers): Likewise.
* m88kbsd-nat.c (m88kbsd_fetch_inferior_registers): Likewise.
(m88kbsd_store_inferior_registers): Likewise.
* mips64obsd-nat.c (mips64obsd_fetch_inferior_registers): Likewise.
(mips64obsd_store_inferior_registers): Likewise.
* mips-linux-nat.c (mips64_linux_regsets_fetch_registers): Likewise.
(mips64_linux_regsets_store_registers): Likewise.
(mips64_linux_fetch_registers): Likewise.
(mips64_linux_store_registers): Likewise.
* mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers): Likewise.
(mipsnbsd_store_inferior_registers): Likewise.
* monitor.c (monitor_fetch_register, monitor_store_register): Likewise.
(monitor_fetch_registers, monitor_store_registers): Likewise.
* nto-procfs.c (procfs_fetch_registers): Likewise.
(procfs_store_registers): Likewise.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register,
fetch_register, supply_vrregset, fetch_altivec_registers,
fetch_ppc_registers, ppc_linux_fetch_inferior_registers): Likewise.
(store_altivec_register, store_spe_register, store_register,
fill_vrregset, store_altivec_registers, store_ppc_registers,
ppc_linux_store_inferior_registers): Likewise.
* ppcnbsd-nat.c (ppcnbsd_fetch_inferior_registers): Likewise.
(ppcnbsd_store_inferior_registers): Likewise.
* ppcobsd-nat.c (ppcobsd_fetch_registers): Likewise.
(ppcobsd_store_registers): Likewise.
* procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
* remote.c (fetch_register_using_p, process_g_packet,
fetch_registers_using_g, remote_fetch_registers): Likewise.
(store_register_using_P, store_registers_using_G,
remote_store_registers): Likewise.
* remote-m32r-sdi.c (m32r_fetch_registers, m32r_fetch_register,
m32r_store_register, m32r_store_register): Likewise.
* remote-mips.c (mips_fetch_registers, mips_store_registers): Likewise.
* remote-sim.c (gdbsim_fetch_register): Likewise.
(gdbsim_store_register): Likewise.
* rs6000-nat.c (fetch_register, store_register): Likewise.
(rs6000_fetch_inferior_registers): Likewise.
(rs6000_store_inferior_registers): Likewise.
* s390-nat.c (fetch_regs, store_regs): Likewise.
(fetch_fpregs, store_fpregs): Likewise.
(s390_linux_fetch_inferior_registers): Likewise.
(s390_linux_store_inferior_registers): Likewise.
* shnbsd-nat.c (shnbsd_fetch_inferior_registers): Likewise.
(shnbsd_store_inferior_registers): Likewise.
* sol-thread.c (sol_thread_fetch_registers): Likewise.
(sol_thread_store_registers): Likewise.
* sparc-nat.c (fetch_inferior_registers): Likewise.
(store_inferior_registers): Likewise.
* spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
(spu_store_inferior_registers): Likewise.
* target.c (debug_print_register): Likewise.
(debug_to_fetch_registers, debug_to_store_registers): Likewise.
* vaxbsd-nat.c (vaxbsd_fetch_inferior_registers): Likewise.
(vaxbsd_store_inferior_registers): Likewise.
* win32-nat.c (do_win32_fetch_inferior_registers): Likewise.
(win32_fetch_inferior_registers): Likewise.
(win32_store_inferior_registers): Likewise.
2007-05-06 16:34:38 +02:00
|
|
|
regcache_raw_supply (regcache, r, (char *) &l);
|
1999-12-07 04:56:07 +01:00
|
|
|
}
|
2012-05-04 20:36:30 +02:00
|
|
|
else if (segment_register_p (r))
|
|
|
|
{
|
|
|
|
/* GDB treats segment registers as 32bit registers, but they are
|
|
|
|
in fact only 16 bits long. Make sure we do not read extra
|
|
|
|
bits from our source buffer. */
|
|
|
|
l = *((long *) context_offset) & 0xffff;
|
|
|
|
regcache_raw_supply (regcache, r, (char *) &l);
|
|
|
|
}
|
1999-12-07 04:56:07 +01:00
|
|
|
else if (r >= 0)
|
* target.h (struct regcache): Add forward declaration.
(struct target_ops): Add REGCACHE parameter to to_fetch_registers
and to_store_registers target operations.
(target_fetch_registers, target_store_registers): Update.
* regcache.c (regcache_raw_read): Replace register_cached by
regcache_valid_p. Pass regcache to target_fetch_registers.
(regcache_raw_write): Pass regcache to target_store_registers.
* arm-linux-nat.c (store_fpregister, store_fpregs, store_register,
store_regs, store_wmmx_regs): Replace register_cached by
regcache_valid_p.
* bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd): Pass current_regcache
to target_fetch_registers calls.
* corelow.c (core_open): Likewise.
* linux-nat.c (linux_nat_corefile_thread_callback): Likewise.
* proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* win32-nat.c (win32_resume): Likewise.
* ia64-tdep.c (ia64_store_return_value): Pass current_regcache
to target_store_registers call.
* rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
* inferior.h (store_inferior_registers): Update prototype.
(fetch_inferior_registers): Likewise.
* gnu-nat.c (gnu_store_registers, gnu_fetch_registers): Likewise.
* mips-linux-nat.c (super_fetch_registers, super_store_registers):
Update function pointer signatures.
* aix-thread.c (aix_thread_fetch_registers): Add REGCACHE parameter,
use it instead of current_regcache, update calls.
(aix_thread_store_registers): Likewise.
* alphabsd-nat.c (alphabsd_fetch_inferior_registers): Likewise.
(alphabsd_store_inferior_registers): Likewise.
* amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Likewise.
(amd64bsd_store_inferior_registers): Likewise.
* amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): Likewise.
(amd64_linux_store_inferior_registers): Likewise.
* arm-linux-nat.c (fetch_fpregister, fetch_fpregs, store_fpregister,
store_fpregs, fetch_register, fetch_regs, store_register, store_regs,
fetch_wmmx_regs, store_wmmx_regs): Likewise.
(arm_linux_fetch_inferior_registers): Likewise.
(arm_linux_store_inferior_registers): Likewise.
* armnbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
fetch_fp_regs, armnbsd_fetch_registers): Likewise.
(store_register, store_regs, store_fp_register, store_fp_regs,
armnbsd_store_registers): Likewise.
* bsd-kvm.c (bsd_kvm_fetch_pcb, bsd_kvm_fetch_registers): Likewise.
* bsd-uthread.c (bsd_uthread_fetch_registers): Likewise.
(bsd_uthread_store_registers): Likewise.
* corelow.c (get_core_registers): Likewise.
* go32-nat.c (fetch_register, go32_fetch_registers, store_register,
go32_store_registers): Likewise.
* hppabsd-nat.c (hppabsd_fetch_registers): Likewise.
(hppabsd_store_registers): Likewise.
* hppa-hpux-nat.c (hppa_hpux_fetch_register): Likewise.
(hppa_hpux_fetch_inferior_registers): Likewise.
(hppa_hpux_store_register): Likewise.
(hppa_hpux_store_inferior_registers): Likewise.
* hppa-linux-nat.c (fetch_register, store_register): Likewise.
(hppa_linux_fetch_inferior_registers): Likewise.
(hppa_linux_store_inferior_registers): Likewise.
* hpux-thread.c (hpux_thread_fetch_registers): Likewise.
(hpux_thread_store_registers): Likewise.
* i386bsd-nat.c (i386bsd_fetch_inferior_registers): Likewise.
(i386bsd_store_inferior_registers): Likewise.
* i386gnu-nat.c (fetch_fpregs, gnu_fetch_registers, store_fpregs,
gnu_store_registers): Likewise.
* i386-linux-nat.c (fetch_register, store_register, fetch_regs,
store_regs, fetch_fpregs, store_fpregs, fetch_fpxregs, store_fpxregs):
Likewise.
(i386_linux_fetch_inferior_registers): Likewise.
(i386_linux_store_inferior_registers): Likewise.
* ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
(ia64_linux_fetch_registers): Likewise.
(ia64_linux_store_register): Likewise.
(ia64_linux_store_registers): Likewise.
* inf-child.c (inf_child_fetch_inferior_registers): Likewise.
(inf_child_store_inferior_registers): Likewise.
* inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
(inf_ptrace_fetch_registers): Likewise.
(inf_ptrace_store_register): Likewise.
(inf_ptrace_store_registers): Likewise.
* infptrace.c (fetch_register, store_register): Likewise.
(fetch_inferior_registers, store_inferior_registers): Likewise.
* m32r-linux-nat.c (fetch_regs, store_regs): Likewise.
(m32r_linux_fetch_inferior_registers): Likewise.
(m32r_linux_store_inferior_registers): Likewise.
* m68kbsd-nat.c (m68kbsd_fetch_inferior_registers): Likewise.
(m68kbsd_store_inferior_registers): Likewise.
* m68klinux-nat.c (fetch_register, old_fetch_inferior_registers,
store_register, old_store_inferior_registers, fetch_regs, store_regs,
fetch_fpregs, store_fpregs): Likewise.
(m68k_linux_fetch_inferior_registers): Likewise.
(m68k_linux_store_inferior_registers): Likewise.
* m88kbsd-nat.c (m88kbsd_fetch_inferior_registers): Likewise.
(m88kbsd_store_inferior_registers): Likewise.
* mips64obsd-nat.c (mips64obsd_fetch_inferior_registers): Likewise.
(mips64obsd_store_inferior_registers): Likewise.
* mips-linux-nat.c (mips64_linux_regsets_fetch_registers): Likewise.
(mips64_linux_regsets_store_registers): Likewise.
(mips64_linux_fetch_registers): Likewise.
(mips64_linux_store_registers): Likewise.
* mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers): Likewise.
(mipsnbsd_store_inferior_registers): Likewise.
* monitor.c (monitor_fetch_register, monitor_store_register): Likewise.
(monitor_fetch_registers, monitor_store_registers): Likewise.
* nto-procfs.c (procfs_fetch_registers): Likewise.
(procfs_store_registers): Likewise.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register,
fetch_register, supply_vrregset, fetch_altivec_registers,
fetch_ppc_registers, ppc_linux_fetch_inferior_registers): Likewise.
(store_altivec_register, store_spe_register, store_register,
fill_vrregset, store_altivec_registers, store_ppc_registers,
ppc_linux_store_inferior_registers): Likewise.
* ppcnbsd-nat.c (ppcnbsd_fetch_inferior_registers): Likewise.
(ppcnbsd_store_inferior_registers): Likewise.
* ppcobsd-nat.c (ppcobsd_fetch_registers): Likewise.
(ppcobsd_store_registers): Likewise.
* procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
* remote.c (fetch_register_using_p, process_g_packet,
fetch_registers_using_g, remote_fetch_registers): Likewise.
(store_register_using_P, store_registers_using_G,
remote_store_registers): Likewise.
* remote-m32r-sdi.c (m32r_fetch_registers, m32r_fetch_register,
m32r_store_register, m32r_store_register): Likewise.
* remote-mips.c (mips_fetch_registers, mips_store_registers): Likewise.
* remote-sim.c (gdbsim_fetch_register): Likewise.
(gdbsim_store_register): Likewise.
* rs6000-nat.c (fetch_register, store_register): Likewise.
(rs6000_fetch_inferior_registers): Likewise.
(rs6000_store_inferior_registers): Likewise.
* s390-nat.c (fetch_regs, store_regs): Likewise.
(fetch_fpregs, store_fpregs): Likewise.
(s390_linux_fetch_inferior_registers): Likewise.
(s390_linux_store_inferior_registers): Likewise.
* shnbsd-nat.c (shnbsd_fetch_inferior_registers): Likewise.
(shnbsd_store_inferior_registers): Likewise.
* sol-thread.c (sol_thread_fetch_registers): Likewise.
(sol_thread_store_registers): Likewise.
* sparc-nat.c (fetch_inferior_registers): Likewise.
(store_inferior_registers): Likewise.
* spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
(spu_store_inferior_registers): Likewise.
* target.c (debug_print_register): Likewise.
(debug_to_fetch_registers, debug_to_store_registers): Likewise.
* vaxbsd-nat.c (vaxbsd_fetch_inferior_registers): Likewise.
(vaxbsd_store_inferior_registers): Likewise.
* win32-nat.c (do_win32_fetch_inferior_registers): Likewise.
(win32_fetch_inferior_registers): Likewise.
(win32_store_inferior_registers): Likewise.
2007-05-06 16:34:38 +02:00
|
|
|
regcache_raw_supply (regcache, r, context_offset);
|
1998-11-05 15:08:48 +01:00
|
|
|
else
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
* win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
to get at the current architecture and at the target specific vector.
Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
remove define of I387_ST0_REGNUM.
* amd64-tdep.c (I387_ST0_REGNUM): Remove define.
(amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
get at the current architecture
(I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
parameter.
* i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
I387_NUM_XMM_REGS and I387_MM0_REGNUM.
(I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
(I387_FSTAT_REGNUM): Add target specific vector as parameter.
(i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
at the target specific vector.
(i386_get_longjmp_target): Use get_frame_arch to get at the current
architecture. Use gdbarch_tdep to get at the target specific vector.
(i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
update caller. Use gdbarch_tdep to get at the target specific vector.
(i386_register_to_value: Use get_frame_arch to get at the current
architecture.
* i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
parameter.
* i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
undef's.
(i387_convert_register_p, i387_register_to_value,
i387_value_to_register): Update call for i386_fp_regnum_p.
* i387-tdep.h: Remove comment.
(I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
(I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
I387_MXCSR_REGNUM): Add target specific vector as parameter.
2008-03-11 06:21:38 +01:00
|
|
|
for (r = 0; r < gdbarch_num_regs (gdbarch); r++)
|
2009-01-13 05:14:07 +01:00
|
|
|
do_windows_fetch_inferior_registers (regcache, r);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
* corelow.c (get_core_registers): Adjust.
(core_file_thread_alive): Rename to...
(core_thread_alive): ... this.
(core_pid_to_str): Try gdbarch_core_pid_to_str first.
(init_core_ops): Adjust.
(coreops_suppress_target): Delete.
(_initialize_corelow): Unconditionally add core_ops.
* procfs.c: Include "inf-child.h".
(procfs_ops): Delete.
(init_procfs_ops): Delete. Reimplement as...
(procfs_target): ... this, inheriting from inf-child.
(procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
(procfs_prepare_to_store): Delete.
(procfs_store_registers, procfs_resume): Adjust.
(procfs_open): Delete.
(procfs_suppress_run): Delete.
(procfs_can_run): Delete.
(procfs_mourn_inferior): Adjust.
(procfs_init_inferior): Add target_ops parameter. Adjust.
(procfs_create_inferior): Don't pass procfs_init_inferior to
fork_inferior. Instead call it after fork_inferior returns.
(procfs_find_new_threads): Adjust.
(_initialize_procfs): Adjust to use procfs_target instead of
init_procfs_ops.
* sol-thread.c (orig_core_ops, sol_core_ops): Delete.
(lwp_to_thread): Use target_thread_alive.
(sol_thread_open): Delete.
(sol_thread_attach): Delete.
(sol_thread_detach, sol_thread_resume, sol_thread_wait)
(sol_thread_fetch_registers, sol_thread_store_registers): Adjust
to use find_target_beneath.
(sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
(sol_thread_xfer_partial): Adjust to use find_target_beneath.
(sol_thread_files_info, sol_thread_kill_inferior): Delete.
(check_for_thread_db): New.
(sol_thread_notice_signals, sol_thread_create_inferior): Delete.
(sol_thread_new_objfile): Call check_for_thread_db.
(sol_thread_mourn_inferior): Adjust to use find_target_beneath.
(sol_thread_can_run): Delete.
(sol_thread_alive): Adjust to use find_target_beneath.
(sol_thread_stop): Delete.
(rw_common): Use target_write_memory or target_read_memory.
(ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
(ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
(solaris_pid_to_str): Remove check for libthread_db initialization
failing.
(sol_find_new_threads): Remove check for libthread_db
initialization failing, or for an invalid inferior_ptid. Adjust
to use find_target_beneath.
(sol_core_open, sol_core_close, sol_core_detach,
sol_core_files_info, sol_find_memory_regions,
sol_make_note_section, ignore): Delete.
(init_sol_thread_ops): Make it a thread_stratum target. Remove
unneeded callback settings.
(init_sol_core_ops): Delete.
(_initialize_sol_thread): No longer call init_sol_core_ops, set
procfs_suppress_run, or hack with core_ops.
* target.h (struct target_ops): Add a target_ops * parameter to
to_resume, to_fetch_registers, to_store_registers, to_thread_alive
and to_find_new_threads.
(target_fetch_registers, target_store_registers)
(target_thread_alive, target_find_new_threads): Redeclare as
function.
* target.c (update_current_target): Do not inherit or de_fault
to_resume, to_fetch_registers, to_store_registers,
to_thread_alive, to_find_new_threads.
(target_resume): Adjust.
(target_thread_alive, target_find_new_threads): New.
(debug_to_resume, debug_to_fetch_registers): Delete.
(target_fetch_registers): New.
(debug_to_store_registers): Delete.
(target_store_registers): New.
(debug_to_thread_alive, debug_to_find_new_threads): Delete.
(setup_target_debug): Adjust.
* gdbcore.h (core_ops): Delete declaration.
* inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
* gdbarch.sh (core_pid_to_str): New gdbarch callback.
* gdbarch.h, gdbarch.c: Regenerate.
* sol2-tdep.c: Include "inferior.h".
(sol2_core_pid_to_str): New.
* sol2-tdep.h (sol2_core_pid_to_str): Declare.
* amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
* sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
* sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
* i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2009-02-23 01:03:50 +01:00
|
|
|
windows_fetch_inferior_registers (struct target_ops *ops,
|
|
|
|
struct regcache *regcache, int r)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2008-08-08 15:16:17 +02:00
|
|
|
current_thread = thread_rec (ptid_get_tid (inferior_ptid), TRUE);
|
2003-12-26 15:56:45 +01:00
|
|
|
/* Check if current_thread exists. Windows sometimes uses a non-existent
|
2011-01-12 02:23:29 +01:00
|
|
|
thread id in its events. */
|
2003-12-26 05:29:22 +01:00
|
|
|
if (current_thread)
|
2009-01-13 05:14:07 +01:00
|
|
|
do_windows_fetch_inferior_registers (regcache, r);
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
do_windows_store_inferior_registers (const struct regcache *regcache, int r)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2003-12-26 05:29:22 +01:00
|
|
|
if (!current_thread)
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Windows sometimes uses a non-existent thread id in its events. */;
|
2003-12-26 05:29:22 +01:00
|
|
|
else if (r >= 0)
|
* target.h (struct regcache): Add forward declaration.
(struct target_ops): Add REGCACHE parameter to to_fetch_registers
and to_store_registers target operations.
(target_fetch_registers, target_store_registers): Update.
* regcache.c (regcache_raw_read): Replace register_cached by
regcache_valid_p. Pass regcache to target_fetch_registers.
(regcache_raw_write): Pass regcache to target_store_registers.
* arm-linux-nat.c (store_fpregister, store_fpregs, store_register,
store_regs, store_wmmx_regs): Replace register_cached by
regcache_valid_p.
* bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd): Pass current_regcache
to target_fetch_registers calls.
* corelow.c (core_open): Likewise.
* linux-nat.c (linux_nat_corefile_thread_callback): Likewise.
* proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
ps_lsetfpregs): Likewise.
* win32-nat.c (win32_resume): Likewise.
* ia64-tdep.c (ia64_store_return_value): Pass current_regcache
to target_store_registers call.
* rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
* inferior.h (store_inferior_registers): Update prototype.
(fetch_inferior_registers): Likewise.
* gnu-nat.c (gnu_store_registers, gnu_fetch_registers): Likewise.
* mips-linux-nat.c (super_fetch_registers, super_store_registers):
Update function pointer signatures.
* aix-thread.c (aix_thread_fetch_registers): Add REGCACHE parameter,
use it instead of current_regcache, update calls.
(aix_thread_store_registers): Likewise.
* alphabsd-nat.c (alphabsd_fetch_inferior_registers): Likewise.
(alphabsd_store_inferior_registers): Likewise.
* amd64bsd-nat.c (amd64bsd_fetch_inferior_registers): Likewise.
(amd64bsd_store_inferior_registers): Likewise.
* amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): Likewise.
(amd64_linux_store_inferior_registers): Likewise.
* arm-linux-nat.c (fetch_fpregister, fetch_fpregs, store_fpregister,
store_fpregs, fetch_register, fetch_regs, store_register, store_regs,
fetch_wmmx_regs, store_wmmx_regs): Likewise.
(arm_linux_fetch_inferior_registers): Likewise.
(arm_linux_store_inferior_registers): Likewise.
* armnbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
fetch_fp_regs, armnbsd_fetch_registers): Likewise.
(store_register, store_regs, store_fp_register, store_fp_regs,
armnbsd_store_registers): Likewise.
* bsd-kvm.c (bsd_kvm_fetch_pcb, bsd_kvm_fetch_registers): Likewise.
* bsd-uthread.c (bsd_uthread_fetch_registers): Likewise.
(bsd_uthread_store_registers): Likewise.
* corelow.c (get_core_registers): Likewise.
* go32-nat.c (fetch_register, go32_fetch_registers, store_register,
go32_store_registers): Likewise.
* hppabsd-nat.c (hppabsd_fetch_registers): Likewise.
(hppabsd_store_registers): Likewise.
* hppa-hpux-nat.c (hppa_hpux_fetch_register): Likewise.
(hppa_hpux_fetch_inferior_registers): Likewise.
(hppa_hpux_store_register): Likewise.
(hppa_hpux_store_inferior_registers): Likewise.
* hppa-linux-nat.c (fetch_register, store_register): Likewise.
(hppa_linux_fetch_inferior_registers): Likewise.
(hppa_linux_store_inferior_registers): Likewise.
* hpux-thread.c (hpux_thread_fetch_registers): Likewise.
(hpux_thread_store_registers): Likewise.
* i386bsd-nat.c (i386bsd_fetch_inferior_registers): Likewise.
(i386bsd_store_inferior_registers): Likewise.
* i386gnu-nat.c (fetch_fpregs, gnu_fetch_registers, store_fpregs,
gnu_store_registers): Likewise.
* i386-linux-nat.c (fetch_register, store_register, fetch_regs,
store_regs, fetch_fpregs, store_fpregs, fetch_fpxregs, store_fpxregs):
Likewise.
(i386_linux_fetch_inferior_registers): Likewise.
(i386_linux_store_inferior_registers): Likewise.
* ia64-linux-nat.c (ia64_linux_fetch_register): Likewise.
(ia64_linux_fetch_registers): Likewise.
(ia64_linux_store_register): Likewise.
(ia64_linux_store_registers): Likewise.
* inf-child.c (inf_child_fetch_inferior_registers): Likewise.
(inf_child_store_inferior_registers): Likewise.
* inf-ptrace.c (inf_ptrace_fetch_register): Likewise.
(inf_ptrace_fetch_registers): Likewise.
(inf_ptrace_store_register): Likewise.
(inf_ptrace_store_registers): Likewise.
* infptrace.c (fetch_register, store_register): Likewise.
(fetch_inferior_registers, store_inferior_registers): Likewise.
* m32r-linux-nat.c (fetch_regs, store_regs): Likewise.
(m32r_linux_fetch_inferior_registers): Likewise.
(m32r_linux_store_inferior_registers): Likewise.
* m68kbsd-nat.c (m68kbsd_fetch_inferior_registers): Likewise.
(m68kbsd_store_inferior_registers): Likewise.
* m68klinux-nat.c (fetch_register, old_fetch_inferior_registers,
store_register, old_store_inferior_registers, fetch_regs, store_regs,
fetch_fpregs, store_fpregs): Likewise.
(m68k_linux_fetch_inferior_registers): Likewise.
(m68k_linux_store_inferior_registers): Likewise.
* m88kbsd-nat.c (m88kbsd_fetch_inferior_registers): Likewise.
(m88kbsd_store_inferior_registers): Likewise.
* mips64obsd-nat.c (mips64obsd_fetch_inferior_registers): Likewise.
(mips64obsd_store_inferior_registers): Likewise.
* mips-linux-nat.c (mips64_linux_regsets_fetch_registers): Likewise.
(mips64_linux_regsets_store_registers): Likewise.
(mips64_linux_fetch_registers): Likewise.
(mips64_linux_store_registers): Likewise.
* mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers): Likewise.
(mipsnbsd_store_inferior_registers): Likewise.
* monitor.c (monitor_fetch_register, monitor_store_register): Likewise.
(monitor_fetch_registers, monitor_store_registers): Likewise.
* nto-procfs.c (procfs_fetch_registers): Likewise.
(procfs_store_registers): Likewise.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register,
fetch_register, supply_vrregset, fetch_altivec_registers,
fetch_ppc_registers, ppc_linux_fetch_inferior_registers): Likewise.
(store_altivec_register, store_spe_register, store_register,
fill_vrregset, store_altivec_registers, store_ppc_registers,
ppc_linux_store_inferior_registers): Likewise.
* ppcnbsd-nat.c (ppcnbsd_fetch_inferior_registers): Likewise.
(ppcnbsd_store_inferior_registers): Likewise.
* ppcobsd-nat.c (ppcobsd_fetch_registers): Likewise.
(ppcobsd_store_registers): Likewise.
* procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
* remote.c (fetch_register_using_p, process_g_packet,
fetch_registers_using_g, remote_fetch_registers): Likewise.
(store_register_using_P, store_registers_using_G,
remote_store_registers): Likewise.
* remote-m32r-sdi.c (m32r_fetch_registers, m32r_fetch_register,
m32r_store_register, m32r_store_register): Likewise.
* remote-mips.c (mips_fetch_registers, mips_store_registers): Likewise.
* remote-sim.c (gdbsim_fetch_register): Likewise.
(gdbsim_store_register): Likewise.
* rs6000-nat.c (fetch_register, store_register): Likewise.
(rs6000_fetch_inferior_registers): Likewise.
(rs6000_store_inferior_registers): Likewise.
* s390-nat.c (fetch_regs, store_regs): Likewise.
(fetch_fpregs, store_fpregs): Likewise.
(s390_linux_fetch_inferior_registers): Likewise.
(s390_linux_store_inferior_registers): Likewise.
* shnbsd-nat.c (shnbsd_fetch_inferior_registers): Likewise.
(shnbsd_store_inferior_registers): Likewise.
* sol-thread.c (sol_thread_fetch_registers): Likewise.
(sol_thread_store_registers): Likewise.
* sparc-nat.c (fetch_inferior_registers): Likewise.
(store_inferior_registers): Likewise.
* spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
(spu_store_inferior_registers): Likewise.
* target.c (debug_print_register): Likewise.
(debug_to_fetch_registers, debug_to_store_registers): Likewise.
* vaxbsd-nat.c (vaxbsd_fetch_inferior_registers): Likewise.
(vaxbsd_store_inferior_registers): Likewise.
* win32-nat.c (do_win32_fetch_inferior_registers): Likewise.
(win32_fetch_inferior_registers): Likewise.
(win32_store_inferior_registers): Likewise.
2007-05-06 16:34:38 +02:00
|
|
|
regcache_raw_collect (regcache, r,
|
2004-07-23 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_collect instead of regcache_collect.
* regcache.h (regcache_collect): Delete declaration.
* regcache.c (regcache_colect): Delete function.
* win32-nat.c (do_child_store_inferior_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_fill_reg): Update.
* rs6000-nat.c (store_register): Update.
* remote.c (store_register_using_P, remote_store_registers): Update.
* ppcnbsd-tdep.c (ppcnbsd_fill_reg): Update.
* ppc-linux-nat.c (store_altivec_register, store_spe_register)
(fill_vrregset, store_spe_registers, fill_gregset)
(fill_gregset): Update.
* nto-procfs.c (procfs_store_registers): Update.
* mipsnbsd-tdep.c (mipsnbsd_fill_reg): Update.
* mips-linux-tdep.c (fill_gregset, mips64_fill_gregset): Update.
* m68klinux-nat.c (store_register, fill_gregset): Update.
* m68k-tdep.c (fill_gregset): Update.
* infptrace.c (store_register): Update.
* i386-nto-tdep.c (i386nto_regset_fill): Update.
* i386-linux-nat.c (store_register, fill_gregset): Update.
* hppa-linux-nat.c (fill_gregset): Update.
* go32-nat.c (store_register): Update.
* armnbsd-nat.c (store_register, store_regs, store_fp_register)
(store_fp_regs): Update.
* arm-linux-nat.c (store_nwfpe_single, store_nwfpe_double)
(store_nwfpe_extended, store_fpregister, store_fpregs)
(store_register, store_regs, fill_gregset, fill_fpregset): Update.
* alpha-tdep.c (alpha_fill_int_regs, alpha_fill_fp_regs): Update.
* aix-thread.c (fill_gprs64, fill_fprs, fill_sprs64, fill_sprs32)
(store_regs_user_thread, store_regs_kernel_thread): Update.
2004-07-24 03:00:21 +02:00
|
|
|
((char *) ¤t_thread->context) + mappings[r]);
|
1995-10-09 22:54:26 +01:00
|
|
|
else
|
|
|
|
{
|
2007-11-16 Markus Deuling <deuling@de.ibm.com>
* m32r-rom.c (m32r_supply_register): Use get_regcache_arch to get at
the current architecture by regcache.
* ppcnbsd-nat.c (ppcnbsd_supply_pcb): Likewise.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, fetch_ppc_registers)
(store_altivec_register, store_spe_register, store_register)
(fill_vrregset, store_ppc_registers): Likewise.
* ppcobsd-nat.c (ppcobsd_supply_pcb): Likewise.
* win32-nat.c (do_win32_fetch_inferior_registers)
(do_win32_store_inferior_registers): Likewise.
* procfs.c (procfs_fetch_registers, procfs_store_registers): Likewise.
* remote-m32r-sdi.c (m32r_fetch_registers)
(m32r_store_registers): Likewise.
* remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Likewise.
* trad-frame.c (trad_frame_alloc_saved_regs): Replace current_gdbarch by
gdbarch.
* user-regs.c (user_reg_map_name_to_regnum): Likewise.
* ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
(do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call)
(ppc64_sysv_abi_return_value): Likewise.
* m32c-tdep.c (m32c_register_reggroup_p): Likewise.
* m2-lang.c (build_m2_types): Likewise.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache
* ppcnbsd-tdep.c (ppcnbsd_sigtramp_cache_init): Likewise.
* ppcobsd-tdep.c (ppcobsd_sigtramp_frame_cache): Likewise.
* rs6000-tdep.c (ppc_dwarf2_frame_init_reg): Likewise.
* m68hc11-tdep.c (m68hc11_frame_unwind_cache): Use get_frame_arch to
get at the current architecture by frame_info.
* gcore.c (derive_stack_segment): Likewise.
* shnbsd-nat.c (GETREGS_SUPPLIES): Add gdbarch parameter.
(shnbsd_fetch_inferior_registers, shnbsd_store_inferior_registers): Add
gdbarch to GETREGS_SUPPLIES call.
2007-11-16 05:53:46 +01:00
|
|
|
for (r = 0; r < gdbarch_num_regs (get_regcache_arch (regcache)); r++)
|
2009-01-13 05:14:07 +01:00
|
|
|
do_windows_store_inferior_registers (regcache, r);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Store a new register value into the current thread context. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static void
|
* corelow.c (get_core_registers): Adjust.
(core_file_thread_alive): Rename to...
(core_thread_alive): ... this.
(core_pid_to_str): Try gdbarch_core_pid_to_str first.
(init_core_ops): Adjust.
(coreops_suppress_target): Delete.
(_initialize_corelow): Unconditionally add core_ops.
* procfs.c: Include "inf-child.h".
(procfs_ops): Delete.
(init_procfs_ops): Delete. Reimplement as...
(procfs_target): ... this, inheriting from inf-child.
(procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
(procfs_prepare_to_store): Delete.
(procfs_store_registers, procfs_resume): Adjust.
(procfs_open): Delete.
(procfs_suppress_run): Delete.
(procfs_can_run): Delete.
(procfs_mourn_inferior): Adjust.
(procfs_init_inferior): Add target_ops parameter. Adjust.
(procfs_create_inferior): Don't pass procfs_init_inferior to
fork_inferior. Instead call it after fork_inferior returns.
(procfs_find_new_threads): Adjust.
(_initialize_procfs): Adjust to use procfs_target instead of
init_procfs_ops.
* sol-thread.c (orig_core_ops, sol_core_ops): Delete.
(lwp_to_thread): Use target_thread_alive.
(sol_thread_open): Delete.
(sol_thread_attach): Delete.
(sol_thread_detach, sol_thread_resume, sol_thread_wait)
(sol_thread_fetch_registers, sol_thread_store_registers): Adjust
to use find_target_beneath.
(sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
(sol_thread_xfer_partial): Adjust to use find_target_beneath.
(sol_thread_files_info, sol_thread_kill_inferior): Delete.
(check_for_thread_db): New.
(sol_thread_notice_signals, sol_thread_create_inferior): Delete.
(sol_thread_new_objfile): Call check_for_thread_db.
(sol_thread_mourn_inferior): Adjust to use find_target_beneath.
(sol_thread_can_run): Delete.
(sol_thread_alive): Adjust to use find_target_beneath.
(sol_thread_stop): Delete.
(rw_common): Use target_write_memory or target_read_memory.
(ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
(ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
(solaris_pid_to_str): Remove check for libthread_db initialization
failing.
(sol_find_new_threads): Remove check for libthread_db
initialization failing, or for an invalid inferior_ptid. Adjust
to use find_target_beneath.
(sol_core_open, sol_core_close, sol_core_detach,
sol_core_files_info, sol_find_memory_regions,
sol_make_note_section, ignore): Delete.
(init_sol_thread_ops): Make it a thread_stratum target. Remove
unneeded callback settings.
(init_sol_core_ops): Delete.
(_initialize_sol_thread): No longer call init_sol_core_ops, set
procfs_suppress_run, or hack with core_ops.
* target.h (struct target_ops): Add a target_ops * parameter to
to_resume, to_fetch_registers, to_store_registers, to_thread_alive
and to_find_new_threads.
(target_fetch_registers, target_store_registers)
(target_thread_alive, target_find_new_threads): Redeclare as
function.
* target.c (update_current_target): Do not inherit or de_fault
to_resume, to_fetch_registers, to_store_registers,
to_thread_alive, to_find_new_threads.
(target_resume): Adjust.
(target_thread_alive, target_find_new_threads): New.
(debug_to_resume, debug_to_fetch_registers): Delete.
(target_fetch_registers): New.
(debug_to_store_registers): Delete.
(target_store_registers): New.
(debug_to_thread_alive, debug_to_find_new_threads): Delete.
(setup_target_debug): Adjust.
* gdbcore.h (core_ops): Delete declaration.
* inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
* gdbarch.sh (core_pid_to_str): New gdbarch callback.
* gdbarch.h, gdbarch.c: Regenerate.
* sol2-tdep.c: Include "inferior.h".
(sol2_core_pid_to_str): New.
* sol2-tdep.h (sol2_core_pid_to_str): Declare.
* amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
* sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
* sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
* i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2009-02-23 01:03:50 +01:00
|
|
|
windows_store_inferior_registers (struct target_ops *ops,
|
|
|
|
struct regcache *regcache, int r)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2008-08-08 15:16:17 +02:00
|
|
|
current_thread = thread_rec (ptid_get_tid (inferior_ptid), TRUE);
|
2003-12-26 15:56:45 +01:00
|
|
|
/* Check if current_thread exists. Windows sometimes uses a non-existent
|
2011-01-12 02:23:29 +01:00
|
|
|
thread id in its events. */
|
2003-12-26 05:29:22 +01:00
|
|
|
if (current_thread)
|
2009-01-13 05:14:07 +01:00
|
|
|
do_windows_store_inferior_registers (regcache, r);
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2000-06-04 02:28:17 +02:00
|
|
|
/* Encapsulate the information required in a call to
|
2011-01-12 02:23:29 +01:00
|
|
|
symbol_file_add_args. */
|
2000-04-21 04:26:14 +02:00
|
|
|
struct safe_symbol_file_add_args
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
int from_tty;
|
|
|
|
struct section_addr_info *addrs;
|
|
|
|
int mainline;
|
|
|
|
int flags;
|
2000-06-11 04:34:40 +02:00
|
|
|
struct ui_file *err, *out;
|
2000-04-21 04:26:14 +02:00
|
|
|
struct objfile *ret;
|
|
|
|
};
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Maintain a linked list of "so" information. */
|
2005-10-31 23:50:58 +01:00
|
|
|
struct lm_info
|
2001-10-12 06:32:16 +02:00
|
|
|
{
|
2009-01-09 11:58:26 +01:00
|
|
|
LPVOID load_addr;
|
2005-10-31 23:50:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct so_list solib_start, *solib_end;
|
2001-10-12 06:32:16 +02:00
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
static struct so_list *
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_make_so (const char *name, LPVOID load_addr)
|
2000-08-27 06:21:35 +02:00
|
|
|
{
|
2005-10-31 23:50:58 +01:00
|
|
|
struct so_list *so;
|
2010-03-01 10:09:24 +01:00
|
|
|
char *p;
|
|
|
|
#ifndef __CYGWIN__
|
2010-03-06 20:27:09 +01:00
|
|
|
char buf[__PMAX];
|
|
|
|
char cwd[__PMAX];
|
2001-10-31 20:05:35 +01:00
|
|
|
WIN32_FIND_DATA w32_fd;
|
|
|
|
HANDLE h = FindFirstFile(name, &w32_fd);
|
|
|
|
|
2002-02-22 02:35:59 +01:00
|
|
|
if (h == INVALID_HANDLE_VALUE)
|
|
|
|
strcpy (buf, name);
|
|
|
|
else
|
2001-10-31 20:05:35 +01:00
|
|
|
{
|
2002-02-21 05:59:36 +01:00
|
|
|
FindClose (h);
|
|
|
|
strcpy (buf, name);
|
|
|
|
if (GetCurrentDirectory (MAX_PATH + 1, cwd))
|
|
|
|
{
|
|
|
|
p = strrchr (buf, '\\');
|
|
|
|
if (p)
|
|
|
|
p[1] = '\0';
|
|
|
|
SetCurrentDirectory (buf);
|
|
|
|
GetFullPathName (w32_fd.cFileName, MAX_PATH, buf, &p);
|
|
|
|
SetCurrentDirectory (cwd);
|
|
|
|
}
|
2001-10-31 20:05:35 +01:00
|
|
|
}
|
2005-10-31 23:50:58 +01:00
|
|
|
if (strcasecmp (buf, "ntdll.dll") == 0)
|
|
|
|
{
|
|
|
|
GetSystemDirectory (buf, sizeof (buf));
|
|
|
|
strcat (buf, "\\ntdll.dll");
|
|
|
|
}
|
2010-03-01 10:09:24 +01:00
|
|
|
#else
|
2010-03-06 20:27:09 +01:00
|
|
|
cygwin_buf_t buf[__PMAX];
|
2010-03-01 10:09:24 +01:00
|
|
|
|
2010-03-06 20:27:09 +01:00
|
|
|
buf[0] = 0;
|
2010-03-01 10:09:24 +01:00
|
|
|
if (access (name, F_OK) != 0)
|
|
|
|
{
|
|
|
|
if (strcasecmp (name, "ntdll.dll") == 0)
|
2010-03-06 20:27:09 +01:00
|
|
|
#ifdef __USEWIDE
|
2010-03-01 10:09:24 +01:00
|
|
|
{
|
|
|
|
GetSystemDirectoryW (buf, sizeof (buf) / sizeof (wchar_t));
|
|
|
|
wcscat (buf, L"\\ntdll.dll");
|
|
|
|
}
|
2010-03-06 20:27:09 +01:00
|
|
|
#else
|
|
|
|
{
|
|
|
|
GetSystemDirectoryA (buf, sizeof (buf) / sizeof (wchar_t));
|
|
|
|
strcat (buf, "\\ntdll.dll");
|
|
|
|
}
|
|
|
|
#endif
|
2010-03-01 10:09:24 +01:00
|
|
|
}
|
|
|
|
#endif
|
2013-12-28 23:31:01 +01:00
|
|
|
so = XCNEW (struct so_list);
|
2005-10-31 23:50:58 +01:00
|
|
|
so->lm_info = (struct lm_info *) xmalloc (sizeof (struct lm_info));
|
|
|
|
so->lm_info->load_addr = load_addr;
|
2007-09-04 03:12:18 +02:00
|
|
|
strcpy (so->so_original_name, name);
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifndef __CYGWIN__
|
|
|
|
strcpy (so->so_name, buf);
|
|
|
|
#else
|
2010-03-01 10:09:24 +01:00
|
|
|
if (buf[0])
|
|
|
|
cygwin_conv_path (CCP_WIN_W_TO_POSIX, buf, so->so_name,
|
|
|
|
SO_NAME_MAX_PATH_SIZE);
|
|
|
|
else
|
|
|
|
{
|
2010-03-09 20:10:39 +01:00
|
|
|
char *rname = realpath (name, NULL);
|
2010-03-01 10:09:24 +01:00
|
|
|
if (rname && strlen (rname) < SO_NAME_MAX_PATH_SIZE)
|
|
|
|
{
|
|
|
|
strcpy (so->so_name, rname);
|
|
|
|
free (rname);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
error (_("dll path too long"));
|
|
|
|
}
|
2007-09-04 03:12:18 +02:00
|
|
|
/* Record cygwin1.dll .text start/end. */
|
|
|
|
p = strchr (so->so_name, '\0') - (sizeof ("/cygwin1.dll") - 1);
|
|
|
|
if (p >= so->so_name && strcasecmp (p, "/cygwin1.dll") == 0)
|
|
|
|
{
|
|
|
|
bfd *abfd;
|
|
|
|
asection *text = NULL;
|
|
|
|
CORE_ADDR text_vma;
|
2000-08-27 06:21:35 +02:00
|
|
|
|
2012-08-22 18:24:39 +02:00
|
|
|
abfd = gdb_bfd_open (so->so_name, "pei-i386", -1);
|
2006-02-20 06:10:51 +01:00
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
if (!abfd)
|
|
|
|
return so;
|
|
|
|
|
|
|
|
if (bfd_check_format (abfd, bfd_object))
|
|
|
|
text = bfd_get_section_by_name (abfd, ".text");
|
|
|
|
|
|
|
|
if (!text)
|
|
|
|
{
|
* dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
gdb_bfd_unref.
(free_dwo_file): Use gdb_bfd_unref.
* cli/cli-dump.c: Include gdb_bfd.h.
(bfd_openw_with_cleanup): Use gdb_bfd_ref.
(bfd_openr_with_cleanup): Likewise.
* windows-nat.c (windows_make_so): Use gdb_bfd_ref,
gdb_bfd_unref.
* utils.c: Include gdb_bfd.h.
(do_bfd_close_cleanup): Use gdb_bfd_unref.
* symfile.c: Include gdb_bfd.h.
(separate_debug_file_exists): Use gdb_bfd_unref.
(bfd_open_maybe_remote): Use gdb_bfd_ref.
(symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
(generic_load): Use gdb_bfd_ref.
(reread_symbols): Use gdb_bfd_unref.
* symfile-mem.c: Include gdb_bfd.h.
(symbol_file_add_from_memory): Use make_cleanup_bfd_close.
* spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
* solib.c: Include gdb_bfd.h.
(solib_bfd_fopen): Use gdb_bfd_ref.
(solib_bfd_open): Use gdb_bfd_unref.
(free_so_symbols): Use gdb_bfd_unref.
(reload_shared_libraries_1): Use gdb_bfd_unref.
* solib-spu.c: Include gdb_bfd.h.
(spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
* solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
gdb_bfd_unref.
* solib-frv.c: Include gdb_bfd.h.
(enable_break2): Use gdb_bfd_unref.
* solib-dsbt.c: Include gdb_bfd.h.
(enable_break2): Use gdb_bfd_unref.
* solib-darwin.c: Include gdb_bfd.h.
(darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
gdb_bfd_unref.
(darwin_bfd_open): Use gdb_bfd_unref.
* rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
* remote-mips.c: Include gdb_bfd.h.
(mips_load_srec): Use gdb_bfd_ref.
(pmon_load_fast): Use gdb_bfd_ref.
* remote-m32r-sdi.c: Include gdb_bfd.h.
(m32r_load): Use gdb_bfd_ref.
* record.c: Include gdb_bfd.h.
(record_save_cleanups): Use gdb_bfd_unref.
(cmd_record_save): Use gdb_bfd_unref.
* procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
gdb_bfd_unref.
* objfiles.h (gdb_bfd_close_or_warn): Remove.
(gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
* objfiles.c: Include gdb_bfd.h.
(free_objfile): Use gdb_bfd_unref.
(gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
gdb_bfd.c.
* machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
(macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
(macho_check_dsym): Likewise.
* m32r-rom.c: Include gdb_bfd.h.
(m32r_load): Use gdb_bfd_ref.
(m32r_upload_command): Use gdb_bfd_ref.
* jit.c: Include gdb_bfd.h.
(jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
* gdb_bfd.h: New file.
* gdb_bfd.c: New file.
* gcore.c: Include gdb_bfd.h.
(create_gcore_bfd): Use gdb_bfd_ref.
(do_bfd_delete_cleanup): Use gdb_bfd_unref.
(gcore_command): Use gdb_bfd_unref.
* exec.c: Include gdb_bfd.h.
(exec_close): Use gdb_bfd_unref.
(exec_close_1): Use gdb_bfd_unref.
(exec_file_attach): Use gdb_bfd_ref.
* elfread.c: Include gdb_bfd.h.
(build_id_verify): Use gdb_bfd_unref.
* dsrec.c: Include gdb_bfd.h.
(load_srec): Use gdb_bfd_ref.
* corelow.c: Include gdb_bfd.h.
(core_close): Use gdb_bfd_unref.
(core_open): Use gdb_bfd_ref.
* bfd-target.c: Include gdb_bfd.h.
(target_bfd_xclose): Use gdb_bfd_unref.
(target_bfd_reopen): Use gdb_bfd_ref.
* Makefile.in (SFILES): Add gdb_bfd.c.
(HFILES_NO_SRCDIR): Add gdb_bfd.h.
(COMMON_OBS): Add gdb_bfd.o.
2012-07-18 21:33:34 +02:00
|
|
|
gdb_bfd_unref (abfd);
|
2007-09-04 03:12:18 +02:00
|
|
|
return so;
|
|
|
|
}
|
|
|
|
|
2011-04-19 20:04:11 +02:00
|
|
|
/* The symbols in a dll are offset by 0x1000, which is the
|
2007-09-04 03:12:18 +02:00
|
|
|
offset from 0 of the first byte in an image - because of the
|
2011-01-12 02:23:29 +01:00
|
|
|
file header and the section alignment. */
|
|
|
|
cygwin_load_start = (CORE_ADDR) (uintptr_t) ((char *)
|
|
|
|
load_addr + 0x1000);
|
2009-01-13 05:14:07 +01:00
|
|
|
cygwin_load_end = cygwin_load_start + bfd_section_size (abfd, text);
|
2007-09-04 03:12:18 +02:00
|
|
|
|
* dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
gdb_bfd_unref.
(free_dwo_file): Use gdb_bfd_unref.
* cli/cli-dump.c: Include gdb_bfd.h.
(bfd_openw_with_cleanup): Use gdb_bfd_ref.
(bfd_openr_with_cleanup): Likewise.
* windows-nat.c (windows_make_so): Use gdb_bfd_ref,
gdb_bfd_unref.
* utils.c: Include gdb_bfd.h.
(do_bfd_close_cleanup): Use gdb_bfd_unref.
* symfile.c: Include gdb_bfd.h.
(separate_debug_file_exists): Use gdb_bfd_unref.
(bfd_open_maybe_remote): Use gdb_bfd_ref.
(symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
(generic_load): Use gdb_bfd_ref.
(reread_symbols): Use gdb_bfd_unref.
* symfile-mem.c: Include gdb_bfd.h.
(symbol_file_add_from_memory): Use make_cleanup_bfd_close.
* spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
* solib.c: Include gdb_bfd.h.
(solib_bfd_fopen): Use gdb_bfd_ref.
(solib_bfd_open): Use gdb_bfd_unref.
(free_so_symbols): Use gdb_bfd_unref.
(reload_shared_libraries_1): Use gdb_bfd_unref.
* solib-spu.c: Include gdb_bfd.h.
(spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
* solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
gdb_bfd_unref.
* solib-frv.c: Include gdb_bfd.h.
(enable_break2): Use gdb_bfd_unref.
* solib-dsbt.c: Include gdb_bfd.h.
(enable_break2): Use gdb_bfd_unref.
* solib-darwin.c: Include gdb_bfd.h.
(darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
gdb_bfd_unref.
(darwin_bfd_open): Use gdb_bfd_unref.
* rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
* remote-mips.c: Include gdb_bfd.h.
(mips_load_srec): Use gdb_bfd_ref.
(pmon_load_fast): Use gdb_bfd_ref.
* remote-m32r-sdi.c: Include gdb_bfd.h.
(m32r_load): Use gdb_bfd_ref.
* record.c: Include gdb_bfd.h.
(record_save_cleanups): Use gdb_bfd_unref.
(cmd_record_save): Use gdb_bfd_unref.
* procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
gdb_bfd_unref.
* objfiles.h (gdb_bfd_close_or_warn): Remove.
(gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
* objfiles.c: Include gdb_bfd.h.
(free_objfile): Use gdb_bfd_unref.
(gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
gdb_bfd.c.
* machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
(macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
(macho_check_dsym): Likewise.
* m32r-rom.c: Include gdb_bfd.h.
(m32r_load): Use gdb_bfd_ref.
(m32r_upload_command): Use gdb_bfd_ref.
* jit.c: Include gdb_bfd.h.
(jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
* gdb_bfd.h: New file.
* gdb_bfd.c: New file.
* gcore.c: Include gdb_bfd.h.
(create_gcore_bfd): Use gdb_bfd_ref.
(do_bfd_delete_cleanup): Use gdb_bfd_unref.
(gcore_command): Use gdb_bfd_unref.
* exec.c: Include gdb_bfd.h.
(exec_close): Use gdb_bfd_unref.
(exec_close_1): Use gdb_bfd_unref.
(exec_file_attach): Use gdb_bfd_ref.
* elfread.c: Include gdb_bfd.h.
(build_id_verify): Use gdb_bfd_unref.
* dsrec.c: Include gdb_bfd.h.
(load_srec): Use gdb_bfd_ref.
* corelow.c: Include gdb_bfd.h.
(core_close): Use gdb_bfd_unref.
(core_open): Use gdb_bfd_ref.
* bfd-target.c: Include gdb_bfd.h.
(target_bfd_xclose): Use gdb_bfd_unref.
(target_bfd_reopen): Use gdb_bfd_ref.
* Makefile.in (SFILES): Add gdb_bfd.c.
(HFILES_NO_SRCDIR): Add gdb_bfd.h.
(COMMON_OBS): Add gdb_bfd.o.
2012-07-18 21:33:34 +02:00
|
|
|
gdb_bfd_unref (abfd);
|
2007-09-04 03:12:18 +02:00
|
|
|
}
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
2007-09-04 03:12:18 +02:00
|
|
|
|
|
|
|
return so;
|
2000-08-27 06:21:35 +02:00
|
|
|
}
|
|
|
|
|
2005-10-31 23:50:58 +01:00
|
|
|
static char *
|
2002-02-16 03:33:24 +01:00
|
|
|
get_image_name (HANDLE h, void *address, int unicode)
|
|
|
|
{
|
2010-03-01 10:09:24 +01:00
|
|
|
#ifdef __CYGWIN__
|
2010-03-06 20:27:09 +01:00
|
|
|
static char buf[__PMAX];
|
2010-03-01 10:09:24 +01:00
|
|
|
#else
|
2010-03-06 20:27:09 +01:00
|
|
|
static char buf[(2 * __PMAX) + 1];
|
2010-03-01 10:09:24 +01:00
|
|
|
#endif
|
2002-02-16 03:33:24 +01:00
|
|
|
DWORD size = unicode ? sizeof (WCHAR) : sizeof (char);
|
|
|
|
char *address_ptr;
|
|
|
|
int len = 0;
|
|
|
|
char b[2];
|
2009-01-09 11:43:37 +01:00
|
|
|
SIZE_T done;
|
2002-02-16 03:33:24 +01:00
|
|
|
|
|
|
|
/* Attempt to read the name of the dll that was detected.
|
|
|
|
This is documented to work only when actively debugging
|
2011-01-12 02:23:29 +01:00
|
|
|
a program. It will not work for attached processes. */
|
2002-02-16 03:33:24 +01:00
|
|
|
if (address == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* See if we could read the address of a string, and that the
|
2011-01-12 02:23:29 +01:00
|
|
|
address isn't null. */
|
|
|
|
if (!ReadProcessMemory (h, address, &address_ptr,
|
|
|
|
sizeof (address_ptr), &done)
|
2003-02-21 03:29:18 +01:00
|
|
|
|| done != sizeof (address_ptr) || !address_ptr)
|
2002-02-16 03:33:24 +01:00
|
|
|
return NULL;
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Find the length of the string. */
|
2003-02-21 03:29:18 +01:00
|
|
|
while (ReadProcessMemory (h, address_ptr + len++ * size, &b, size, &done)
|
|
|
|
&& (b[0] != 0 || b[size - 1] != 0) && done == size)
|
|
|
|
continue;
|
2002-02-16 03:33:24 +01:00
|
|
|
|
|
|
|
if (!unicode)
|
|
|
|
ReadProcessMemory (h, address_ptr, buf, len, &done);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WCHAR *unicode_address = (WCHAR *) alloca (len * sizeof (WCHAR));
|
|
|
|
ReadProcessMemory (h, address_ptr, unicode_address, len * sizeof (WCHAR),
|
|
|
|
&done);
|
2010-03-01 10:09:24 +01:00
|
|
|
#ifdef __CYGWIN__
|
2010-03-06 20:27:09 +01:00
|
|
|
wcstombs (buf, unicode_address, __PMAX);
|
2010-03-01 10:09:24 +01:00
|
|
|
#else
|
|
|
|
WideCharToMultiByte (CP_ACP, 0, unicode_address, len, buf, sizeof buf,
|
|
|
|
0, 0);
|
|
|
|
#endif
|
2002-02-16 03:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2014-02-03 09:03:39 +01:00
|
|
|
/* Handle a DLL load event, and return 1.
|
|
|
|
|
|
|
|
This function assumes that this event did not occur during inferior
|
|
|
|
initialization, where their event info may be incomplete (see
|
|
|
|
do_initial_windows_stuff and windows_add_all_dlls for more info
|
|
|
|
on how we handle DLL loading during that phase). */
|
|
|
|
|
1996-01-04 20:07:28 +01:00
|
|
|
static int
|
2002-01-19 04:32:43 +01:00
|
|
|
handle_load_dll (void *dummy)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
1999-07-07 22:11:14 +02:00
|
|
|
LOAD_DLL_DEBUG_INFO *event = ¤t_event.u.LoadDll;
|
2014-02-03 09:03:39 +01:00
|
|
|
char *dll_name;
|
1995-10-09 22:54:26 +01:00
|
|
|
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
/* Try getting the DLL name via the lpImageName field of the event.
|
|
|
|
Note that Microsoft documents this fields as strictly optional,
|
|
|
|
in the sense that it might be NULL. And the first DLL event in
|
|
|
|
particular is explicitly documented as "likely not pass[ed]"
|
|
|
|
(source: MSDN LOAD_DLL_DEBUG_INFO structure). */
|
2014-02-03 09:03:39 +01:00
|
|
|
dll_name = get_image_name (current_process_handle,
|
|
|
|
event->lpImageName, event->fUnicode);
|
1998-11-05 15:08:48 +01:00
|
|
|
if (!dll_name)
|
|
|
|
return 1;
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
solib_end->next = windows_make_so (dll_name, event->lpBaseOfDll);
|
2007-09-04 03:12:18 +02:00
|
|
|
solib_end = solib_end->next;
|
2000-06-04 02:28:17 +02:00
|
|
|
|
2009-04-17 17:44:28 +02:00
|
|
|
DEBUG_EVENTS (("gdb: Loading dll \"%s\" at %s.\n", solib_end->so_name,
|
|
|
|
host_address_to_string (solib_end->lm_info->load_addr)));
|
2008-06-18 08:27:34 +02:00
|
|
|
|
2000-06-04 02:28:17 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-10-31 23:50:58 +01:00
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_free_so (struct so_list *so)
|
2005-10-31 23:50:58 +01:00
|
|
|
{
|
|
|
|
if (so->lm_info)
|
|
|
|
xfree (so->lm_info);
|
2007-09-04 03:12:18 +02:00
|
|
|
xfree (so);
|
2005-11-01 06:08:29 +01:00
|
|
|
}
|
|
|
|
|
2014-02-20 17:18:47 +01:00
|
|
|
/* Handle a DLL unload event.
|
|
|
|
Return 1 if successful, or zero otherwise.
|
|
|
|
|
|
|
|
This function assumes that this event did not occur during inferior
|
|
|
|
initialization, where their event info may be incomplete (see
|
|
|
|
do_initial_windows_stuff and windows_add_all_dlls for more info
|
|
|
|
on how we handle DLL loading during that phase). */
|
|
|
|
|
2001-11-24 20:00:03 +01:00
|
|
|
static int
|
2002-01-19 04:32:43 +01:00
|
|
|
handle_unload_dll (void *dummy)
|
2001-11-24 20:00:03 +01:00
|
|
|
{
|
2009-01-09 11:58:26 +01:00
|
|
|
LPVOID lpBaseOfDll = current_event.u.UnloadDll.lpBaseOfDll;
|
2005-10-31 23:50:58 +01:00
|
|
|
struct so_list *so;
|
2001-11-24 20:00:03 +01:00
|
|
|
|
|
|
|
for (so = &solib_start; so->next != NULL; so = so->next)
|
2005-10-31 23:50:58 +01:00
|
|
|
if (so->next->lm_info->load_addr == lpBaseOfDll)
|
2001-11-24 20:00:03 +01:00
|
|
|
{
|
2005-10-31 23:50:58 +01:00
|
|
|
struct so_list *sodel = so->next;
|
2013-05-20 12:27:26 +02:00
|
|
|
|
2001-11-24 20:00:03 +01:00
|
|
|
so->next = sodel->next;
|
|
|
|
if (!so->next)
|
|
|
|
solib_end = so;
|
2008-06-18 08:27:34 +02:00
|
|
|
DEBUG_EVENTS (("gdb: Unloading dll \"%s\".\n", sodel->so_name));
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_free_so (sodel);
|
2001-11-24 20:00:03 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2005-11-01 15:07:00 +01:00
|
|
|
|
2010-02-12 05:55:15 +01:00
|
|
|
/* We did not find any DLL that was previously loaded at this address,
|
|
|
|
so register a complaint. We do not report an error, because we have
|
|
|
|
observed that this may be happening under some circumstances. For
|
|
|
|
instance, running 32bit applications on x64 Windows causes us to receive
|
|
|
|
4 mysterious UNLOAD_DLL_DEBUG_EVENTs during the startup phase (these
|
|
|
|
events are apparently caused by the WOW layer, the interface between
|
|
|
|
32bit and 64bit worlds). */
|
|
|
|
complaint (&symfile_complaints, _("dll starting at %s not found."),
|
|
|
|
host_address_to_string (lpBaseOfDll));
|
2001-11-24 20:00:03 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Clear list of loaded DLLs. */
|
2005-10-31 23:50:58 +01:00
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_clear_solib (void)
|
2000-06-04 02:28:17 +02:00
|
|
|
{
|
|
|
|
solib_start.next = NULL;
|
|
|
|
solib_end = &solib_start;
|
|
|
|
}
|
2003-02-06 21:37:55 +01:00
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
/* Handle DEBUG_STRING output from child process.
|
|
|
|
Cygwin prepends its messages with a "cygwin:". Interpret this as
|
2011-01-12 02:23:29 +01:00
|
|
|
a Cygwin signal. Otherwise just print the string as a warning. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static int
|
|
|
|
handle_output_debug_string (struct target_waitstatus *ourstatus)
|
|
|
|
{
|
2006-02-20 06:10:51 +01:00
|
|
|
char *s = NULL;
|
|
|
|
int retval = 0;
|
1998-11-05 15:08:48 +01:00
|
|
|
|
|
|
|
if (!target_read_string
|
2007-12-06 12:17:03 +01:00
|
|
|
((CORE_ADDR) (uintptr_t) current_event.u.DebugString.lpDebugStringData,
|
|
|
|
&s, 1024, 0)
|
1998-11-05 15:08:48 +01:00
|
|
|
|| !s || !*s)
|
2006-02-20 06:10:51 +01:00
|
|
|
/* nothing to do */;
|
2015-03-06 10:42:06 +01:00
|
|
|
else if (!startswith (s, _CYGWIN_SIGNAL_STRING))
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2015-03-06 10:42:06 +01:00
|
|
|
if (!startswith (s, "cYg"))
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
2015-06-03 15:03:50 +02:00
|
|
|
{
|
|
|
|
char *p = strchr (s, '\0');
|
|
|
|
|
|
|
|
if (p > s && *--p == '\n')
|
|
|
|
*p = '\0';
|
|
|
|
warning (("%s"), s);
|
|
|
|
}
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
2006-04-10 18:13:01 +02:00
|
|
|
#ifdef __COPY_CONTEXT_SIZE
|
1999-12-22 22:45:11 +01:00
|
|
|
else
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Got a cygwin signal marker. A cygwin signal is followed by
|
|
|
|
the signal number itself and then optionally followed by the
|
|
|
|
thread id and address to saved context within the DLL. If
|
|
|
|
these are supplied, then the given thread is assumed to have
|
|
|
|
issued the signal and the context from the thread is assumed
|
|
|
|
to be stored at the given address in the inferior. Tell gdb
|
|
|
|
to treat this like a real signal. */
|
1998-11-05 15:08:48 +01:00
|
|
|
char *p;
|
2005-11-01 15:07:00 +01:00
|
|
|
int sig = strtol (s + sizeof (_CYGWIN_SIGNAL_STRING) - 1, &p, 0);
|
2012-05-24 18:39:15 +02:00
|
|
|
int gotasig = gdb_signal_from_host (sig);
|
2013-03-27 00:40:08 +01:00
|
|
|
|
1999-04-26 20:25:51 +02:00
|
|
|
ourstatus->value.sig = gotasig;
|
|
|
|
if (gotasig)
|
2006-02-20 06:10:51 +01:00
|
|
|
{
|
|
|
|
LPCVOID x;
|
2013-03-19 16:06:26 +01:00
|
|
|
SIZE_T n;
|
2013-03-27 00:40:08 +01:00
|
|
|
|
2006-02-20 06:10:51 +01:00
|
|
|
ourstatus->kind = TARGET_WAITKIND_STOPPED;
|
|
|
|
retval = strtoul (p, &p, 0);
|
|
|
|
if (!retval)
|
|
|
|
retval = main_thread_id;
|
2013-03-27 09:57:09 +01:00
|
|
|
else if ((x = (LPCVOID) (uintptr_t) strtoull (p, NULL, 0))
|
2006-02-20 06:10:51 +01:00
|
|
|
&& ReadProcessMemory (current_process_handle, x,
|
2011-01-12 02:23:29 +01:00
|
|
|
&saved_context,
|
|
|
|
__COPY_CONTEXT_SIZE, &n)
|
2006-02-20 06:10:51 +01:00
|
|
|
&& n == __COPY_CONTEXT_SIZE)
|
|
|
|
have_saved_context = 1;
|
|
|
|
}
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
2006-04-10 18:13:01 +02:00
|
|
|
#endif
|
1998-11-05 15:08:48 +01:00
|
|
|
|
2006-02-20 06:10:51 +01:00
|
|
|
if (s)
|
|
|
|
xfree (s);
|
|
|
|
return retval;
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2002-02-19 09:49:42 +01:00
|
|
|
static int
|
|
|
|
display_selector (HANDLE thread, DWORD sel)
|
|
|
|
{
|
|
|
|
LDT_ENTRY info;
|
|
|
|
if (GetThreadSelectorEntry (thread, sel, &info))
|
|
|
|
{
|
|
|
|
int base, limit;
|
2013-02-27 20:42:26 +01:00
|
|
|
printf_filtered ("0x%03x: ", (unsigned) sel);
|
2002-02-19 09:49:42 +01:00
|
|
|
if (!info.HighWord.Bits.Pres)
|
2003-01-30 02:39:52 +01:00
|
|
|
{
|
|
|
|
puts_filtered ("Segment not present\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2002-02-19 09:49:42 +01:00
|
|
|
base = (info.HighWord.Bits.BaseHi << 24) +
|
|
|
|
(info.HighWord.Bits.BaseMid << 16)
|
|
|
|
+ info.BaseLow;
|
|
|
|
limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
|
|
|
|
if (info.HighWord.Bits.Granularity)
|
2003-02-15 04:24:54 +01:00
|
|
|
limit = (limit << 12) | 0xfff;
|
2002-02-19 09:49:42 +01:00
|
|
|
printf_filtered ("base=0x%08x limit=0x%08x", base, limit);
|
|
|
|
if (info.HighWord.Bits.Default_Big)
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered(" 32-bit ");
|
2002-02-19 09:49:42 +01:00
|
|
|
else
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered(" 16-bit ");
|
2002-02-19 09:49:42 +01:00
|
|
|
switch ((info.HighWord.Bits.Type & 0xf) >> 1)
|
|
|
|
{
|
|
|
|
case 0:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Data (Read-Only, Exp-up");
|
|
|
|
break;
|
2002-02-19 09:49:42 +01:00
|
|
|
case 1:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Data (Read/Write, Exp-up");
|
|
|
|
break;
|
2002-02-19 09:49:42 +01:00
|
|
|
case 2:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Unused segment (");
|
|
|
|
break;
|
2002-02-19 09:49:42 +01:00
|
|
|
case 3:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Data (Read/Write, Exp-down");
|
|
|
|
break;
|
2002-02-19 09:49:42 +01:00
|
|
|
case 4:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Code (Exec-Only, N.Conf");
|
|
|
|
break;
|
2002-02-19 09:49:42 +01:00
|
|
|
case 5:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Code (Exec/Read, N.Conf");
|
2002-02-19 09:49:42 +01:00
|
|
|
break;
|
|
|
|
case 6:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Code (Exec-Only, Conf");
|
2002-02-19 09:49:42 +01:00
|
|
|
break;
|
|
|
|
case 7:
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Code (Exec/Read, Conf");
|
2002-02-19 09:49:42 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf_filtered ("Unknown type 0x%x",info.HighWord.Bits.Type);
|
|
|
|
}
|
|
|
|
if ((info.HighWord.Bits.Type & 0x1) == 0)
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered(", N.Acc");
|
2002-02-19 09:49:42 +01:00
|
|
|
puts_filtered (")\n");
|
|
|
|
if ((info.HighWord.Bits.Type & 0x10) == 0)
|
|
|
|
puts_filtered("System selector ");
|
|
|
|
printf_filtered ("Priviledge level = %d. ", info.HighWord.Bits.Dpl);
|
|
|
|
if (info.HighWord.Bits.Granularity)
|
2003-01-30 02:39:52 +01:00
|
|
|
puts_filtered ("Page granular.\n");
|
2002-02-19 09:49:42 +01:00
|
|
|
else
|
|
|
|
puts_filtered ("Byte granular.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-25 09:38:18 +02:00
|
|
|
DWORD err = GetLastError ();
|
|
|
|
if (err == ERROR_NOT_SUPPORTED)
|
|
|
|
printf_filtered ("Function not supported\n");
|
|
|
|
else
|
2013-02-27 20:42:26 +01:00
|
|
|
printf_filtered ("Invalid selector 0x%x.\n", (unsigned) sel);
|
2002-02-19 09:49:42 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
display_selectors (char * args, int from_tty)
|
|
|
|
{
|
|
|
|
if (!current_thread)
|
|
|
|
{
|
|
|
|
puts_filtered ("Impossible to display selectors now.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!args)
|
|
|
|
{
|
|
|
|
|
|
|
|
puts_filtered ("Selector $cs\n");
|
|
|
|
display_selector (current_thread->h,
|
2003-01-30 02:39:52 +01:00
|
|
|
current_thread->context.SegCs);
|
2002-02-19 09:49:42 +01:00
|
|
|
puts_filtered ("Selector $ds\n");
|
|
|
|
display_selector (current_thread->h,
|
2003-01-30 02:39:52 +01:00
|
|
|
current_thread->context.SegDs);
|
2002-02-19 09:49:42 +01:00
|
|
|
puts_filtered ("Selector $es\n");
|
|
|
|
display_selector (current_thread->h,
|
2003-01-30 02:39:52 +01:00
|
|
|
current_thread->context.SegEs);
|
2002-02-19 09:49:42 +01:00
|
|
|
puts_filtered ("Selector $ss\n");
|
|
|
|
display_selector (current_thread->h,
|
2003-01-30 02:39:52 +01:00
|
|
|
current_thread->context.SegSs);
|
2002-02-19 09:49:42 +01:00
|
|
|
puts_filtered ("Selector $fs\n");
|
|
|
|
display_selector (current_thread->h,
|
|
|
|
current_thread->context.SegFs);
|
|
|
|
puts_filtered ("Selector $gs\n");
|
|
|
|
display_selector (current_thread->h,
|
2003-01-30 02:39:52 +01:00
|
|
|
current_thread->context.SegGs);
|
2002-02-19 09:49:42 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int sel;
|
|
|
|
sel = parse_and_eval_long (args);
|
|
|
|
printf_filtered ("Selector \"%s\"\n",args);
|
|
|
|
display_selector (current_thread->h, sel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-06 10:14:50 +01:00
|
|
|
#define DEBUG_EXCEPTION_SIMPLE(x) if (debug_exceptions) \
|
2009-04-17 17:44:28 +02:00
|
|
|
printf_unfiltered ("gdb: Target exception %s at %s\n", x, \
|
|
|
|
host_address_to_string (\
|
|
|
|
current_event.u.Exception.ExceptionRecord.ExceptionAddress))
|
2002-02-06 10:14:50 +01:00
|
|
|
|
1997-08-18 23:31:51 +02:00
|
|
|
static int
|
2000-06-04 02:28:17 +02:00
|
|
|
handle_exception (struct target_waitstatus *ourstatus)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
2000-06-03 07:04:14 +02:00
|
|
|
DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
|
1998-11-05 15:08:48 +01:00
|
|
|
|
2000-06-03 07:04:14 +02:00
|
|
|
ourstatus->kind = TARGET_WAITKIND_STOPPED;
|
2000-04-21 04:26:14 +02:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Record the context of the current thread. */
|
1998-11-05 15:08:48 +01:00
|
|
|
th = thread_rec (current_event.dwThreadId, -1);
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2000-06-03 07:04:14 +02:00
|
|
|
switch (code)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
1996-03-11 20:08:57 +01:00
|
|
|
case EXCEPTION_ACCESS_VIOLATION:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ACCESS_VIOLATION");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_SEGV;
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2005-03-27 07:21:12 +02:00
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* See if the access violation happened within the cygwin DLL
|
|
|
|
itself. Cygwin uses a kind of exception handling to deal
|
|
|
|
with passed-in invalid addresses. gdb should not treat
|
|
|
|
these as real SEGVs since they will be silently handled by
|
|
|
|
cygwin. A real SEGV will (theoretically) be caught by
|
|
|
|
cygwin later in the process and will be sent as a
|
|
|
|
cygwin-specific-signal. So, ignore SEGVs if they show up
|
|
|
|
within the text segment of the DLL itself. */
|
2012-02-02 21:19:17 +01:00
|
|
|
const char *fn;
|
2011-01-12 02:23:29 +01:00
|
|
|
CORE_ADDR addr = (CORE_ADDR) (uintptr_t)
|
|
|
|
current_event.u.Exception.ExceptionRecord.ExceptionAddress;
|
|
|
|
|
|
|
|
if ((!cygwin_exceptions && (addr >= cygwin_load_start
|
|
|
|
&& addr < cygwin_load_end))
|
2006-02-20 06:10:51 +01:00
|
|
|
|| (find_pc_partial_function (addr, &fn, NULL, NULL)
|
2015-03-06 10:42:06 +01:00
|
|
|
&& startswith (fn, "KERNEL32!IsBad")))
|
2005-03-27 07:21:12 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case STATUS_STACK_OVERFLOW:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_STACK_OVERFLOW");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_SEGV;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case STATUS_FLOAT_DENORMAL_OPERAND:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DENORMAL_OPERAND");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ARRAY_BOUNDS_EXCEEDED");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case STATUS_FLOAT_INEXACT_RESULT:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INEXACT_RESULT");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case STATUS_FLOAT_INVALID_OPERATION:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_INVALID_OPERATION");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case STATUS_FLOAT_OVERFLOW:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_OVERFLOW");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case STATUS_FLOAT_STACK_CHECK:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_STACK_CHECK");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
1996-03-11 20:08:57 +01:00
|
|
|
break;
|
2000-01-11 04:07:26 +01:00
|
|
|
case STATUS_FLOAT_UNDERFLOW:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_UNDERFLOW");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
2000-01-11 04:07:26 +01:00
|
|
|
case STATUS_FLOAT_DIVIDE_BY_ZERO:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_FLOAT_DIVIDE_BY_ZERO");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
2000-01-11 04:07:26 +01:00
|
|
|
case STATUS_INTEGER_DIVIDE_BY_ZERO:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_DIVIDE_BY_ZERO");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
2000-01-11 04:07:26 +01:00
|
|
|
break;
|
2002-02-06 10:14:50 +01:00
|
|
|
case STATUS_INTEGER_OVERFLOW:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("STATUS_INTEGER_OVERFLOW");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_FPE;
|
1996-03-11 20:08:57 +01:00
|
|
|
break;
|
|
|
|
case EXCEPTION_BREAKPOINT:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_BREAKPOINT");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_TRAP;
|
1996-03-11 20:08:57 +01:00
|
|
|
break;
|
|
|
|
case DBG_CONTROL_C:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_C");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_INT;
|
2002-02-05 09:04:22 +01:00
|
|
|
break;
|
|
|
|
case DBG_CONTROL_BREAK:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("DBG_CONTROL_BREAK");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_INT;
|
1996-03-11 20:08:57 +01:00
|
|
|
break;
|
|
|
|
case EXCEPTION_SINGLE_STEP:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_SINGLE_STEP");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_TRAP;
|
1996-03-11 20:08:57 +01:00
|
|
|
break;
|
2000-03-25 03:26:21 +01:00
|
|
|
case EXCEPTION_ILLEGAL_INSTRUCTION:
|
2002-02-06 10:14:50 +01:00
|
|
|
DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_ILLEGAL_INSTRUCTION");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_ILL;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case EXCEPTION_PRIV_INSTRUCTION:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_PRIV_INSTRUCTION");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_ILL;
|
2002-02-06 10:14:50 +01:00
|
|
|
break;
|
|
|
|
case EXCEPTION_NONCONTINUABLE_EXCEPTION:
|
|
|
|
DEBUG_EXCEPTION_SIMPLE ("EXCEPTION_NONCONTINUABLE_EXCEPTION");
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_ILL;
|
2000-03-25 03:26:21 +01:00
|
|
|
break;
|
1996-03-11 20:08:57 +01:00
|
|
|
default:
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Treat unhandled first chance exceptions specially. */
|
2001-10-12 06:32:16 +02:00
|
|
|
if (current_event.u.Exception.dwFirstChance)
|
2006-02-20 06:10:51 +01:00
|
|
|
return -1;
|
2013-02-27 20:42:26 +01:00
|
|
|
printf_unfiltered ("gdb: unknown target exception 0x%08x at %s\n",
|
|
|
|
(unsigned) current_event.u.Exception.ExceptionRecord.ExceptionCode,
|
2009-04-17 17:44:28 +02:00
|
|
|
host_address_to_string (
|
|
|
|
current_event.u.Exception.ExceptionRecord.ExceptionAddress));
|
2012-05-24 18:51:47 +02:00
|
|
|
ourstatus->value.sig = GDB_SIGNAL_UNKNOWN;
|
1996-03-11 20:08:57 +01:00
|
|
|
break;
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
exception_count++;
|
2002-02-06 10:14:50 +01:00
|
|
|
last_sig = ourstatus->value.sig;
|
1997-08-18 23:31:51 +02:00
|
|
|
return 1;
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
2014-04-19 10:12:19 +02:00
|
|
|
/* Resume thread specified by ID, or all artificially suspended
|
|
|
|
threads, if we are continuing execution. KILLED non-zero means we
|
|
|
|
have killed the inferior, so we should ignore weird errors due to
|
|
|
|
threads shutting down. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static BOOL
|
2014-04-19 10:12:19 +02:00
|
|
|
windows_continue (DWORD continue_status, int id, int killed)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
|
|
|
int i;
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
1998-11-05 15:08:48 +01:00
|
|
|
BOOL res;
|
|
|
|
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("ContinueDebugEvent (cpid=%d, ctid=0x%x, %s);\n",
|
2013-02-27 20:42:26 +01:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
2002-02-16 03:33:24 +01:00
|
|
|
continue_status == DBG_CONTINUE ?
|
2002-02-06 10:14:50 +01:00
|
|
|
"DBG_CONTINUE" : "DBG_EXCEPTION_NOT_HANDLED"));
|
2007-11-24 13:13:28 +01:00
|
|
|
|
|
|
|
for (th = &thread_head; (th = th->next) != NULL;)
|
|
|
|
if ((id == -1 || id == (int) th->id)
|
|
|
|
&& th->suspended)
|
|
|
|
{
|
|
|
|
if (debug_registers_changed)
|
|
|
|
{
|
|
|
|
th->context.ContextFlags |= CONTEXT_DEBUG_REGISTERS;
|
|
|
|
th->context.Dr0 = dr[0];
|
|
|
|
th->context.Dr1 = dr[1];
|
|
|
|
th->context.Dr2 = dr[2];
|
|
|
|
th->context.Dr3 = dr[3];
|
|
|
|
th->context.Dr6 = DR6_CLEAR_VALUE;
|
|
|
|
th->context.Dr7 = dr[7];
|
|
|
|
}
|
|
|
|
if (th->context.ContextFlags)
|
|
|
|
{
|
2014-04-19 10:12:19 +02:00
|
|
|
DWORD ec = 0;
|
|
|
|
|
|
|
|
if (GetExitCodeThread (th->h, &ec)
|
|
|
|
&& ec == STILL_ACTIVE)
|
|
|
|
{
|
|
|
|
BOOL status = SetThreadContext (th->h, &th->context);
|
|
|
|
|
|
|
|
if (!killed)
|
|
|
|
CHECK (status);
|
|
|
|
}
|
2007-11-24 13:13:28 +01:00
|
|
|
th->context.ContextFlags = 0;
|
|
|
|
}
|
|
|
|
if (th->suspended > 0)
|
|
|
|
(void) ResumeThread (th->h);
|
|
|
|
th->suspended = 0;
|
|
|
|
}
|
|
|
|
|
1999-04-26 20:25:51 +02:00
|
|
|
res = ContinueDebugEvent (current_event.dwProcessId,
|
|
|
|
current_event.dwThreadId,
|
|
|
|
continue_status);
|
1998-11-05 15:08:48 +01:00
|
|
|
|
windows-nat: Report an error if ContinueDebugEvent() fails
Using the 'catch-signal' test from the testsuite, on x86_64 Cygwin:
$ ./gdb testsuite/outputs/gdb.base/catch-signal/catch-signal.exe
[...]
(gdb) catch signal
Catchpoint 1 (standard signals)
(gdb) r
[...]
Catchpoint 1 (signal SIGHUP), main () at
../../../gdb/testsuite/gdb.base/catch-signal.c:40
40 raise (SIGHUP); /* second HUP */
(gdb) c
Continuing.
[hangs]
This is due to a defect in the way Cygwin signals are handled: When
handle_output_debug_string processes a Cygwin signal message, it re-writes
current_event.dwThreadId to reflect the thread that the signal will be delivered
to.
Subsequently, the call to ContinueDebugEvent will fail, because we're trying to
resume the wrong thread. GDB is then stuck waiting forever for another event
that will never come.
This patch doesn't fix the problem, it just adds appropriate error handling.
Using error() seems appropriate here, if ContinueDebugEvent() fails, the
inferior is in an unknown state and we will probably not be debugging it
anymore.
With this patch applied, resuming the execution of the program now yields:
$ ./gdb testsuite/outputs/gdb.base/catch-signal/catch-signal.exe
[...]
(gdb) catch signal
Catchpoint 1 (standard signals)
(gdb) r
[...]
Catchpoint 1 (signal SIGHUP), main () at
../../../gdb/testsuite/gdb.base/catch-signal.c:40
40 raise (SIGHUP); /* second HUP */
(gdb) c
Continuing.
main () at ../../../gdb/testsuite/gdb.base/catch-signal.c:40
40 raise (SIGHUP); /* second HUP */
Failed to resume program execution (ContinueDebugEvent failed, error 87)
(gdb)
gdb/ChangeLog:
2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
* windows-nat.c (windows_continue): Report an error if
ContinueDebugEvent() fails.
2015-04-15 22:37:11 +02:00
|
|
|
if (!res)
|
|
|
|
error (_("Failed to resume program execution"
|
|
|
|
" (ContinueDebugEvent failed, error %u)"),
|
|
|
|
(unsigned int) GetLastError ());
|
|
|
|
|
2002-02-04 12:00:10 +01:00
|
|
|
debug_registers_changed = 0;
|
1998-11-05 15:08:48 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2003-12-26 15:56:45 +01:00
|
|
|
/* Called in pathological case where Windows fails to send a
|
|
|
|
CREATE_PROCESS_DEBUG_EVENT after an attach. */
|
2005-10-31 23:50:58 +01:00
|
|
|
static DWORD
|
2004-01-05 20:53:08 +01:00
|
|
|
fake_create_process (void)
|
2003-12-26 05:29:22 +01:00
|
|
|
{
|
|
|
|
current_process_handle = OpenProcess (PROCESS_ALL_ACCESS, FALSE,
|
|
|
|
current_event.dwProcessId);
|
2007-12-02 06:45:08 +01:00
|
|
|
if (current_process_handle != NULL)
|
|
|
|
open_process_used = 1;
|
|
|
|
else
|
|
|
|
{
|
2013-02-27 20:42:26 +01:00
|
|
|
error (_("OpenProcess call failed, GetLastError = %u"),
|
|
|
|
(unsigned) GetLastError ());
|
2007-12-02 06:45:08 +01:00
|
|
|
/* We can not debug anything in that case. */
|
|
|
|
}
|
2003-12-26 05:29:22 +01:00
|
|
|
main_thread_id = current_event.dwThreadId;
|
2010-04-16 09:49:37 +02:00
|
|
|
current_thread = windows_add_thread (
|
|
|
|
ptid_build (current_event.dwProcessId, 0,
|
|
|
|
current_event.dwThreadId),
|
|
|
|
current_event.u.CreateThread.hThread,
|
|
|
|
current_event.u.CreateThread.lpThreadLocalBase);
|
2003-12-26 05:29:22 +01:00
|
|
|
return main_thread_id;
|
|
|
|
}
|
|
|
|
|
2006-02-20 06:10:51 +01:00
|
|
|
static void
|
* corelow.c (get_core_registers): Adjust.
(core_file_thread_alive): Rename to...
(core_thread_alive): ... this.
(core_pid_to_str): Try gdbarch_core_pid_to_str first.
(init_core_ops): Adjust.
(coreops_suppress_target): Delete.
(_initialize_corelow): Unconditionally add core_ops.
* procfs.c: Include "inf-child.h".
(procfs_ops): Delete.
(init_procfs_ops): Delete. Reimplement as...
(procfs_target): ... this, inheriting from inf-child.
(procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
(procfs_prepare_to_store): Delete.
(procfs_store_registers, procfs_resume): Adjust.
(procfs_open): Delete.
(procfs_suppress_run): Delete.
(procfs_can_run): Delete.
(procfs_mourn_inferior): Adjust.
(procfs_init_inferior): Add target_ops parameter. Adjust.
(procfs_create_inferior): Don't pass procfs_init_inferior to
fork_inferior. Instead call it after fork_inferior returns.
(procfs_find_new_threads): Adjust.
(_initialize_procfs): Adjust to use procfs_target instead of
init_procfs_ops.
* sol-thread.c (orig_core_ops, sol_core_ops): Delete.
(lwp_to_thread): Use target_thread_alive.
(sol_thread_open): Delete.
(sol_thread_attach): Delete.
(sol_thread_detach, sol_thread_resume, sol_thread_wait)
(sol_thread_fetch_registers, sol_thread_store_registers): Adjust
to use find_target_beneath.
(sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
(sol_thread_xfer_partial): Adjust to use find_target_beneath.
(sol_thread_files_info, sol_thread_kill_inferior): Delete.
(check_for_thread_db): New.
(sol_thread_notice_signals, sol_thread_create_inferior): Delete.
(sol_thread_new_objfile): Call check_for_thread_db.
(sol_thread_mourn_inferior): Adjust to use find_target_beneath.
(sol_thread_can_run): Delete.
(sol_thread_alive): Adjust to use find_target_beneath.
(sol_thread_stop): Delete.
(rw_common): Use target_write_memory or target_read_memory.
(ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
(ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
(solaris_pid_to_str): Remove check for libthread_db initialization
failing.
(sol_find_new_threads): Remove check for libthread_db
initialization failing, or for an invalid inferior_ptid. Adjust
to use find_target_beneath.
(sol_core_open, sol_core_close, sol_core_detach,
sol_core_files_info, sol_find_memory_regions,
sol_make_note_section, ignore): Delete.
(init_sol_thread_ops): Make it a thread_stratum target. Remove
unneeded callback settings.
(init_sol_core_ops): Delete.
(_initialize_sol_thread): No longer call init_sol_core_ops, set
procfs_suppress_run, or hack with core_ops.
* target.h (struct target_ops): Add a target_ops * parameter to
to_resume, to_fetch_registers, to_store_registers, to_thread_alive
and to_find_new_threads.
(target_fetch_registers, target_store_registers)
(target_thread_alive, target_find_new_threads): Redeclare as
function.
* target.c (update_current_target): Do not inherit or de_fault
to_resume, to_fetch_registers, to_store_registers,
to_thread_alive, to_find_new_threads.
(target_resume): Adjust.
(target_thread_alive, target_find_new_threads): New.
(debug_to_resume, debug_to_fetch_registers): Delete.
(target_fetch_registers): New.
(debug_to_store_registers): Delete.
(target_store_registers): New.
(debug_to_thread_alive, debug_to_find_new_threads): Delete.
(setup_target_debug): Adjust.
* gdbcore.h (core_ops): Delete declaration.
* inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
* gdbarch.sh (core_pid_to_str): New gdbarch callback.
* gdbarch.h, gdbarch.c: Regenerate.
* sol2-tdep.c: Include "inferior.h".
(sol2_core_pid_to_str): New.
* sol2-tdep.h (sol2_core_pid_to_str): Declare.
* amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
* sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
* sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
* i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2009-02-23 01:03:50 +01:00
|
|
|
windows_resume (struct target_ops *ops,
|
2012-05-24 18:39:15 +02:00
|
|
|
ptid_t ptid, int step, enum gdb_signal sig)
|
2006-02-20 06:10:51 +01:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
2006-02-20 06:10:51 +01:00
|
|
|
DWORD continue_status = DBG_CONTINUE;
|
|
|
|
|
2008-08-08 15:16:17 +02:00
|
|
|
/* A specific PTID means `step only this thread id'. */
|
|
|
|
int resume_all = ptid_equal (ptid, minus_one_ptid);
|
|
|
|
|
|
|
|
/* If we're continuing all threads, it's the current inferior that
|
|
|
|
should be handled specially. */
|
|
|
|
if (resume_all)
|
|
|
|
ptid = inferior_ptid;
|
2006-02-20 06:10:51 +01:00
|
|
|
|
2012-05-24 18:51:47 +02:00
|
|
|
if (sig != GDB_SIGNAL_0)
|
2006-02-20 06:10:51 +01:00
|
|
|
{
|
|
|
|
if (current_event.dwDebugEventCode != EXCEPTION_DEBUG_EVENT)
|
|
|
|
{
|
|
|
|
DEBUG_EXCEPT(("Cannot continue with signal %d here.\n",sig));
|
|
|
|
}
|
|
|
|
else if (sig == last_sig)
|
|
|
|
continue_status = DBG_EXCEPTION_NOT_HANDLED;
|
|
|
|
else
|
|
|
|
#if 0
|
|
|
|
/* This code does not seem to work, because
|
|
|
|
the kernel does probably not consider changes in the ExceptionRecord
|
|
|
|
structure when passing the exception to the inferior.
|
|
|
|
Note that this seems possible in the exception handler itself. */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; xlate[i].them != -1; i++)
|
|
|
|
if (xlate[i].us == sig)
|
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
current_event.u.Exception.ExceptionRecord.ExceptionCode
|
|
|
|
= xlate[i].them;
|
2006-02-20 06:10:51 +01:00
|
|
|
continue_status = DBG_EXCEPTION_NOT_HANDLED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (continue_status == DBG_CONTINUE)
|
|
|
|
{
|
|
|
|
DEBUG_EXCEPT(("Cannot continue with signal %d.\n",sig));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2015-04-14 22:05:21 +02:00
|
|
|
DEBUG_EXCEPT(("Can only continue with received signal %d.\n",
|
2006-02-20 06:10:51 +01:00
|
|
|
last_sig));
|
|
|
|
}
|
|
|
|
|
2012-05-24 18:51:47 +02:00
|
|
|
last_sig = GDB_SIGNAL_0;
|
2006-02-20 06:10:51 +01:00
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
DEBUG_EXEC (("gdb: windows_resume (pid=%d, tid=%ld, step=%d, sig=%d);\n",
|
2008-08-08 15:16:17 +02:00
|
|
|
ptid_get_pid (ptid), ptid_get_tid (ptid), step, sig));
|
2006-02-20 06:10:51 +01:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Get context for currently selected thread. */
|
2008-08-08 15:16:17 +02:00
|
|
|
th = thread_rec (ptid_get_tid (inferior_ptid), FALSE);
|
2006-02-20 06:10:51 +01:00
|
|
|
if (th)
|
|
|
|
{
|
|
|
|
if (step)
|
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Single step by setting t bit. */
|
2009-06-17 20:44:23 +02:00
|
|
|
struct regcache *regcache = get_current_regcache ();
|
|
|
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
|
|
|
windows_fetch_inferior_registers (ops, regcache,
|
|
|
|
gdbarch_ps_regnum (gdbarch));
|
2006-02-20 06:10:51 +01:00
|
|
|
th->context.EFlags |= FLAG_TRACE_BIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (th->context.ContextFlags)
|
|
|
|
{
|
|
|
|
if (debug_registers_changed)
|
|
|
|
{
|
|
|
|
th->context.Dr0 = dr[0];
|
|
|
|
th->context.Dr1 = dr[1];
|
|
|
|
th->context.Dr2 = dr[2];
|
|
|
|
th->context.Dr3 = dr[3];
|
2007-11-24 13:13:28 +01:00
|
|
|
th->context.Dr6 = DR6_CLEAR_VALUE;
|
2006-02-20 06:10:51 +01:00
|
|
|
th->context.Dr7 = dr[7];
|
|
|
|
}
|
|
|
|
CHECK (SetThreadContext (th->h, &th->context));
|
|
|
|
th->context.ContextFlags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allow continuing with the same signal that interrupted us.
|
2011-01-12 02:23:29 +01:00
|
|
|
Otherwise complain. */
|
2006-02-20 06:10:51 +01:00
|
|
|
|
2008-08-08 15:16:17 +02:00
|
|
|
if (resume_all)
|
2014-04-19 10:12:19 +02:00
|
|
|
windows_continue (continue_status, -1, 0);
|
2008-08-08 15:16:17 +02:00
|
|
|
else
|
2014-04-19 10:12:19 +02:00
|
|
|
windows_continue (continue_status, ptid_get_tid (ptid), 0);
|
2006-02-20 06:10:51 +01:00
|
|
|
}
|
|
|
|
|
2009-03-22 22:43:56 +01:00
|
|
|
/* Ctrl-C handler used when the inferior is not run in the same console. The
|
|
|
|
handler is in charge of interrupting the inferior using DebugBreakProcess.
|
|
|
|
Note that this function is not available prior to Windows XP. In this case
|
|
|
|
we emit a warning. */
|
2012-03-02 06:38:51 +01:00
|
|
|
static BOOL WINAPI
|
2009-03-22 22:43:56 +01:00
|
|
|
ctrl_c_handler (DWORD event_type)
|
|
|
|
{
|
|
|
|
const int attach_flag = current_inferior ()->attach_flag;
|
|
|
|
|
2009-09-22 00:37:59 +02:00
|
|
|
/* Only handle Ctrl-C and Ctrl-Break events. Ignore others. */
|
|
|
|
if (event_type != CTRL_C_EVENT && event_type != CTRL_BREAK_EVENT)
|
2009-03-22 22:43:56 +01:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* If the inferior and the debugger share the same console, do nothing as
|
|
|
|
the inferior has also received the Ctrl-C event. */
|
|
|
|
if (!new_console && !attach_flag)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (!DebugBreakProcess (current_process_handle))
|
2011-01-12 02:23:29 +01:00
|
|
|
warning (_("Could not interrupt program. "
|
|
|
|
"Press Ctrl-c in the program console."));
|
2009-03-22 22:43:56 +01:00
|
|
|
|
|
|
|
/* Return true to tell that Ctrl-C has been handled. */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-04-14 20:28:44 +02:00
|
|
|
/* Get the next event from the child. Returns a non-zero thread id if the event
|
|
|
|
requires handling by WFI (or whatever). */
|
1999-12-07 04:56:07 +01:00
|
|
|
static int
|
* corelow.c (get_core_registers): Adjust.
(core_file_thread_alive): Rename to...
(core_thread_alive): ... this.
(core_pid_to_str): Try gdbarch_core_pid_to_str first.
(init_core_ops): Adjust.
(coreops_suppress_target): Delete.
(_initialize_corelow): Unconditionally add core_ops.
* procfs.c: Include "inf-child.h".
(procfs_ops): Delete.
(init_procfs_ops): Delete. Reimplement as...
(procfs_target): ... this, inheriting from inf-child.
(procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
(procfs_prepare_to_store): Delete.
(procfs_store_registers, procfs_resume): Adjust.
(procfs_open): Delete.
(procfs_suppress_run): Delete.
(procfs_can_run): Delete.
(procfs_mourn_inferior): Adjust.
(procfs_init_inferior): Add target_ops parameter. Adjust.
(procfs_create_inferior): Don't pass procfs_init_inferior to
fork_inferior. Instead call it after fork_inferior returns.
(procfs_find_new_threads): Adjust.
(_initialize_procfs): Adjust to use procfs_target instead of
init_procfs_ops.
* sol-thread.c (orig_core_ops, sol_core_ops): Delete.
(lwp_to_thread): Use target_thread_alive.
(sol_thread_open): Delete.
(sol_thread_attach): Delete.
(sol_thread_detach, sol_thread_resume, sol_thread_wait)
(sol_thread_fetch_registers, sol_thread_store_registers): Adjust
to use find_target_beneath.
(sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
(sol_thread_xfer_partial): Adjust to use find_target_beneath.
(sol_thread_files_info, sol_thread_kill_inferior): Delete.
(check_for_thread_db): New.
(sol_thread_notice_signals, sol_thread_create_inferior): Delete.
(sol_thread_new_objfile): Call check_for_thread_db.
(sol_thread_mourn_inferior): Adjust to use find_target_beneath.
(sol_thread_can_run): Delete.
(sol_thread_alive): Adjust to use find_target_beneath.
(sol_thread_stop): Delete.
(rw_common): Use target_write_memory or target_read_memory.
(ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
(ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
(solaris_pid_to_str): Remove check for libthread_db initialization
failing.
(sol_find_new_threads): Remove check for libthread_db
initialization failing, or for an invalid inferior_ptid. Adjust
to use find_target_beneath.
(sol_core_open, sol_core_close, sol_core_detach,
sol_core_files_info, sol_find_memory_regions,
sol_make_note_section, ignore): Delete.
(init_sol_thread_ops): Make it a thread_stratum target. Remove
unneeded callback settings.
(init_sol_core_ops): Delete.
(_initialize_sol_thread): No longer call init_sol_core_ops, set
procfs_suppress_run, or hack with core_ops.
* target.h (struct target_ops): Add a target_ops * parameter to
to_resume, to_fetch_registers, to_store_registers, to_thread_alive
and to_find_new_threads.
(target_fetch_registers, target_store_registers)
(target_thread_alive, target_find_new_threads): Redeclare as
function.
* target.c (update_current_target): Do not inherit or de_fault
to_resume, to_fetch_registers, to_store_registers,
to_thread_alive, to_find_new_threads.
(target_resume): Adjust.
(target_thread_alive, target_find_new_threads): New.
(debug_to_resume, debug_to_fetch_registers): Delete.
(target_fetch_registers): New.
(debug_to_store_registers): Delete.
(target_store_registers): New.
(debug_to_thread_alive, debug_to_find_new_threads): Delete.
(setup_target_debug): Adjust.
* gdbcore.h (core_ops): Delete declaration.
* inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
* gdbarch.sh (core_pid_to_str): New gdbarch callback.
* gdbarch.h, gdbarch.c: Regenerate.
* sol2-tdep.c: Include "inferior.h".
(sol2_core_pid_to_str): New.
* sol2-tdep.h (sol2_core_pid_to_str): Declare.
* amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
* sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
* sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
* i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2009-02-23 01:03:50 +01:00
|
|
|
get_windows_debug_event (struct target_ops *ops,
|
|
|
|
int pid, struct target_waitstatus *ourstatus)
|
1999-12-07 04:56:07 +01:00
|
|
|
{
|
|
|
|
BOOL debug_event;
|
2000-04-21 04:26:14 +02:00
|
|
|
DWORD continue_status, event_code;
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
|
|
|
static windows_thread_info dummy_thread_info;
|
2015-04-14 20:28:44 +02:00
|
|
|
DWORD thread_id = 0;
|
1999-12-07 04:56:07 +01:00
|
|
|
|
2012-05-24 18:51:47 +02:00
|
|
|
last_sig = GDB_SIGNAL_0;
|
2000-08-07 01:25:32 +02:00
|
|
|
|
2000-04-21 04:26:14 +02:00
|
|
|
if (!(debug_event = WaitForDebugEvent (¤t_event, 1000)))
|
2000-06-03 07:04:14 +02:00
|
|
|
goto out;
|
1999-12-07 04:56:07 +01:00
|
|
|
|
|
|
|
event_count++;
|
|
|
|
continue_status = DBG_CONTINUE;
|
|
|
|
|
2000-04-21 04:26:14 +02:00
|
|
|
event_code = current_event.dwDebugEventCode;
|
2000-06-04 02:28:17 +02:00
|
|
|
ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
|
2003-12-26 01:39:04 +01:00
|
|
|
th = NULL;
|
2006-02-20 06:10:51 +01:00
|
|
|
have_saved_context = 0;
|
2000-04-21 04:26:14 +02:00
|
|
|
|
|
|
|
switch (event_code)
|
1999-12-07 04:56:07 +01:00
|
|
|
{
|
|
|
|
case CREATE_THREAD_DEBUG_EVENT:
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"CREATE_THREAD_DEBUG_EVENT"));
|
2002-02-16 03:33:24 +01:00
|
|
|
if (saw_create != 1)
|
2003-12-26 05:29:22 +01:00
|
|
|
{
|
2008-09-22 17:21:30 +02:00
|
|
|
struct inferior *inf;
|
|
|
|
inf = find_inferior_pid (current_event.dwProcessId);
|
|
|
|
if (!saw_create && inf->attach_flag)
|
2003-12-26 05:29:22 +01:00
|
|
|
{
|
2003-12-26 15:56:45 +01:00
|
|
|
/* Kludge around a Windows bug where first event is a create
|
|
|
|
thread event. Caused when attached process does not have
|
2011-01-12 02:23:29 +01:00
|
|
|
a main thread. */
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = fake_create_process ();
|
|
|
|
if (thread_id)
|
2008-09-22 17:21:30 +02:00
|
|
|
saw_create++;
|
2003-12-26 05:29:22 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Record the existence of this thread. */
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = current_event.dwThreadId;
|
2009-01-13 05:14:07 +01:00
|
|
|
th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
|
2008-08-08 15:16:17 +02:00
|
|
|
current_event.dwThreadId),
|
2010-04-16 09:49:37 +02:00
|
|
|
current_event.u.CreateThread.hThread,
|
|
|
|
current_event.u.CreateThread.lpThreadLocalBase);
|
|
|
|
|
1999-12-07 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EXIT_THREAD_DEBUG_EVENT:
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"EXIT_THREAD_DEBUG_EVENT"));
|
2010-03-06 20:27:09 +01:00
|
|
|
|
2003-12-26 01:39:04 +01:00
|
|
|
if (current_event.dwThreadId != main_thread_id)
|
|
|
|
{
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
|
2013-05-04 15:36:18 +02:00
|
|
|
current_event.dwThreadId),
|
|
|
|
current_event.u.ExitThread.dwExitCode);
|
2003-12-26 01:39:04 +01:00
|
|
|
th = &dummy_thread_info;
|
|
|
|
}
|
1999-12-07 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CREATE_PROCESS_DEBUG_EVENT:
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"CREATE_PROCESS_DEBUG_EVENT"));
|
2001-10-11 03:55:58 +02:00
|
|
|
CloseHandle (current_event.u.CreateProcessInfo.hFile);
|
2002-02-16 03:33:24 +01:00
|
|
|
if (++saw_create != 1)
|
2007-12-02 06:45:08 +01:00
|
|
|
break;
|
1999-12-07 04:56:07 +01:00
|
|
|
|
2002-02-16 03:33:24 +01:00
|
|
|
current_process_handle = current_event.u.CreateProcessInfo.hProcess;
|
2003-12-26 01:39:04 +01:00
|
|
|
if (main_thread_id)
|
2009-03-22 22:43:56 +01:00
|
|
|
windows_delete_thread (ptid_build (current_event.dwProcessId, 0,
|
2013-05-04 15:36:18 +02:00
|
|
|
main_thread_id),
|
|
|
|
0);
|
2000-08-07 01:25:32 +02:00
|
|
|
main_thread_id = current_event.dwThreadId;
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Add the main thread. */
|
2009-01-13 05:14:07 +01:00
|
|
|
th = windows_add_thread (ptid_build (current_event.dwProcessId, 0,
|
2009-03-22 22:43:56 +01:00
|
|
|
current_event.dwThreadId),
|
2010-04-16 09:49:37 +02:00
|
|
|
current_event.u.CreateProcessInfo.hThread,
|
|
|
|
current_event.u.CreateProcessInfo.lpThreadLocalBase);
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = current_event.dwThreadId;
|
1999-12-07 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EXIT_PROCESS_DEBUG_EVENT:
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"EXIT_PROCESS_DEBUG_EVENT"));
|
2010-01-27 20:57:54 +01:00
|
|
|
if (!windows_initialization_done)
|
|
|
|
{
|
|
|
|
target_terminal_ours ();
|
|
|
|
target_mourn_inferior ();
|
|
|
|
error (_("During startup program exited with code 0x%x."),
|
|
|
|
(unsigned int) current_event.u.ExitProcess.dwExitCode);
|
|
|
|
}
|
|
|
|
else if (saw_create == 1)
|
|
|
|
{
|
|
|
|
ourstatus->kind = TARGET_WAITKIND_EXITED;
|
|
|
|
ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = main_thread_id;
|
2010-01-27 20:57:54 +01:00
|
|
|
}
|
2000-04-21 04:26:14 +02:00
|
|
|
break;
|
1999-12-07 04:56:07 +01:00
|
|
|
|
|
|
|
case LOAD_DLL_DEBUG_EVENT:
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"LOAD_DLL_DEBUG_EVENT"));
|
2001-10-11 03:55:58 +02:00
|
|
|
CloseHandle (current_event.u.LoadDll.hFile);
|
2014-02-03 08:32:40 +01:00
|
|
|
if (saw_create != 1 || ! windows_initialization_done)
|
2002-02-16 03:33:24 +01:00
|
|
|
break;
|
2000-04-21 04:26:14 +02:00
|
|
|
catch_errors (handle_load_dll, NULL, (char *) "", RETURN_MASK_ALL);
|
2000-06-04 02:28:17 +02:00
|
|
|
ourstatus->kind = TARGET_WAITKIND_LOADED;
|
|
|
|
ourstatus->value.integer = 0;
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = main_thread_id;
|
1999-12-07 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UNLOAD_DLL_DEBUG_EVENT:
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"UNLOAD_DLL_DEBUG_EVENT"));
|
2014-02-03 08:32:40 +01:00
|
|
|
if (saw_create != 1 || ! windows_initialization_done)
|
2002-02-16 03:33:24 +01:00
|
|
|
break;
|
2001-11-24 20:00:03 +01:00
|
|
|
catch_errors (handle_unload_dll, NULL, (char *) "", RETURN_MASK_ALL);
|
2007-09-04 03:12:18 +02:00
|
|
|
ourstatus->kind = TARGET_WAITKIND_LOADED;
|
|
|
|
ourstatus->value.integer = 0;
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = main_thread_id;
|
2001-11-24 20:00:03 +01:00
|
|
|
break;
|
1999-12-07 04:56:07 +01:00
|
|
|
|
|
|
|
case EXCEPTION_DEBUG_EVENT:
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"EXCEPTION_DEBUG_EVENT"));
|
2002-02-16 03:33:24 +01:00
|
|
|
if (saw_create != 1)
|
|
|
|
break;
|
2006-02-20 06:10:51 +01:00
|
|
|
switch (handle_exception (ourstatus))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
continue_status = DBG_EXCEPTION_NOT_HANDLED;
|
|
|
|
break;
|
|
|
|
case 1:
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = current_event.dwThreadId;
|
2006-02-20 06:10:51 +01:00
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
last_sig = 1;
|
|
|
|
continue_status = -1;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-07 04:56:07 +01:00
|
|
|
break;
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
case OUTPUT_DEBUG_STRING_EVENT: /* Message from the kernel. */
|
2013-06-11 12:20:24 +02:00
|
|
|
DEBUG_EVENTS (("gdb: kernel event for pid=%u tid=0x%x code=%s)\n",
|
2000-04-21 04:26:14 +02:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId,
|
|
|
|
"OUTPUT_DEBUG_STRING_EVENT"));
|
2002-02-16 03:33:24 +01:00
|
|
|
if (saw_create != 1)
|
|
|
|
break;
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id = handle_output_debug_string (ourstatus);
|
1999-12-07 04:56:07 +01:00
|
|
|
break;
|
2000-08-07 01:25:32 +02:00
|
|
|
|
1999-12-07 04:56:07 +01:00
|
|
|
default:
|
2002-02-16 03:33:24 +01:00
|
|
|
if (saw_create != 1)
|
|
|
|
break;
|
2013-06-11 12:20:24 +02:00
|
|
|
printf_unfiltered ("gdb: kernel event for pid=%u tid=0x%x\n",
|
2013-02-27 20:42:26 +01:00
|
|
|
(unsigned) current_event.dwProcessId,
|
|
|
|
(unsigned) current_event.dwThreadId);
|
|
|
|
printf_unfiltered (" unknown event code %u\n",
|
|
|
|
(unsigned) current_event.dwDebugEventCode);
|
1999-12-07 04:56:07 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-04-14 20:28:44 +02:00
|
|
|
if (!thread_id || saw_create != 1)
|
2006-02-20 06:10:51 +01:00
|
|
|
{
|
|
|
|
if (continue_status == -1)
|
2009-02-24 16:27:58 +01:00
|
|
|
windows_resume (ops, minus_one_ptid, 0, 1);
|
2006-02-20 06:10:51 +01:00
|
|
|
else
|
2014-04-19 10:12:19 +02:00
|
|
|
CHECK (windows_continue (continue_status, -1, 0));
|
2006-02-20 06:10:51 +01:00
|
|
|
}
|
2000-06-04 02:28:17 +02:00
|
|
|
else
|
2000-08-07 01:25:32 +02:00
|
|
|
{
|
2008-08-08 15:16:17 +02:00
|
|
|
inferior_ptid = ptid_build (current_event.dwProcessId, 0,
|
2015-04-14 20:28:44 +02:00
|
|
|
thread_id);
|
2015-04-14 20:42:07 +02:00
|
|
|
current_thread = th;
|
|
|
|
if (!current_thread)
|
windows-nat: Don't change current_event.dwThreadId in handle_output_debug_string()
Using the 'catch-signal' test from the testsuite, on x86_64 Cygwin:
$ ./gdb testsuite/outputs/gdb.base/catch-signal/catch-signal.exe
[...]
(gdb) catch signal
Catchpoint 1 (standard signals)
(gdb) r
[...]
Catchpoint 1 (signal SIGHUP), main () at
../../../gdb/testsuite/gdb.base/catch-signal.c:40
40 raise (SIGHUP); /* second HUP */
(gdb) c
Continuing.
main () at ../../../gdb/testsuite/gdb.base/catch-signal.c:40
40 raise (SIGHUP); /* second HUP */
Failed to resume program execution (ContinueDebugEvent failed, error 87)
(gdb)
This error occurs because when handle_output_debug_string processes a Cygwin
signal message, it re-writes current_event.dwThreadId to reflect the thread that
the signal will be delivered to, which can be different to the thread reporting
the signal.
Altering current_event.dwThreadId() will cause ContinueDebugEvent() to be
applied to the wrong thread and fail.
So, rather than re-writing the thread id in current_event, use the thread
id by returning it.
With this patch applied this test now yields the expected result:
$ ./gdb testsuite/outputs/gdb.base/catch-signal/catch-signal.exe
[...]
(gdb) catch signal
Catchpoint 1 (standard signals)
(gdb) r
[...]
Catchpoint 1 (signal SIGHUP), main () at
../../../gdb/testsuite/gdb.base/catch-signal.c:40
40 raise (SIGHUP); /* second HUP */
(gdb) c
Continuing.
Catchpoint 1 (signal SIGHUP), main () at
../../../gdb/testsuite/gdb.base/catch-signal.c:42
42 raise (SIGHUP); /* third HUP */
(gdb)
gdb/ChangeLog:
2015-04-22 Jon Turney <jon.turney@dronecode.org.uk>
* windows-nat.c (handle_output_debug_string): Don't change
current_event.dwThreadId.
(get_windows_debug_event): Use thread_id, rather than relying on
current_event.dwThreadId being changed.
2015-04-15 22:41:25 +02:00
|
|
|
current_thread = thread_rec (thread_id, TRUE);
|
2000-08-07 01:25:32 +02:00
|
|
|
}
|
1999-12-07 04:56:07 +01:00
|
|
|
|
|
|
|
out:
|
2015-04-14 20:28:44 +02:00
|
|
|
return thread_id;
|
1999-12-07 04:56:07 +01:00
|
|
|
}
|
|
|
|
|
2008-08-08 15:16:17 +02:00
|
|
|
/* Wait for interesting events to occur in the target process. */
|
2001-05-04 06:15:33 +02:00
|
|
|
static ptid_t
|
* linux-nat.c (linux_nat_wait): Adjust.
(linux_nat_pid_to_str): Adjust. Remove call to thread_db_init.
* linux-nat.h (thread_db_init): Delete declaration.
* linux-thread-db.c (target_beneath): Delete.
(thread_db_init): Delete.
(thread_db_detach): Use find_target_beneath.
(thread_db_wait): Adjust interface. Use find_target_beneath.
(thread_db_mourn_inferior): Use find_target_beneath.
(thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
(thread_db_async_mask): Delete.
(thread_db_pid_to_str): Adjust interface. Use
find_target_beneath.
(thread_db_get_thread_local_address): Adjust interface. Use
find_target_beneath.
(init_thread_db_ops): Delete references to delete functions.
* target.c (update_current_target): Don't inherit or default
to_wait. Don't inherit to_pid_to_str and
to_get_thread_local_address.
(target_translate_tls_address): Look for a pushed target that
implements to_get_thread_local_address, and use it instead of
checking for target_get_thread_local_address_p.
(target_wait, target_pid_to_str): Reimplement as functions.
(dummy_pid_to_str): New.
(init_dummy_target): Register it.
(debug_to_wait): Delete.
* target.h (struct target_ops): Make to_wait, to_pid_to_str and
to_get_thread_local_address accept a pointer to struct target_ops.
(target_wait): Delete macro, and declare as function.
(target_pid_to_str): Likewise.
(target_get_thread_local_address)
(target_get_thread_local_address_p): Delete.
(noprocess): Add NORETURN and ATTR_NORETURN tags.
* inf-ptrace.c (inf_ptrace_wait): Adjust.
(inf_ptrace_pid_to_str): New.
(inf_ptrace_target): Use inf_ptrace_pid_to_str.
* aix-thread.c (aix_thread_wait, aix_thread_pid_to_str): Adjust.
* bsd-kvm.c (bsd_kvm_pid_to_str): Adjust.
* bsd-uthread.c (bsd_uthread_wait, bsd_uthread_pid_to_str):
Adjust.
* corelow.c (core_pid_to_str): Adjust.
* darwin-nat.c (darwin_wait, darwin_pid_to_str): Adjust.
* dec-thread.c (dec_thread_wait, dec_thread_pid_to_str): Adjust.
* gnu-nat.c (gnu_wait, gnu_pid_to_str): Adjust.
* go32-nat.c (go32_wait, go32_pid_to_str): Adjust.
* hpux-thread.c (hpux_thread_wait): Adjust.
* inf-ttrace.c (inf_ttrace_wait, inf_ttrace_pid_to_str): Adjust.
* monitor.c (monitor_wait, monitor_pid_to_str): Adjust.
* nto-procfs.c (procfs_wait, procfs_pid_to_str): Adjust.
* procfs.c (procfs_pid_to_str): Adjust.
* remote-m32r-sdi.c (m32r_wait, m32r_pid_to_str): Adjust.
* remote-mips.c (mips_wait): Adjust.
* remote-sim.c (gdbsim_wait, gdbsim_pid_to_str): Adjust.
* remote.c (remote_wait, remote_pid_to_str)
(remote_get_thread_local_address): Adjust.
* rs6000-nat.c (rs6000_wait): Adjust.
* sol-thread.c (procfs_pid_to_str): Adjust declaration.
(sol_thread_wait, solaris_pid_to_str): Adjust.
* spu-linux-nat.c (spu_child_wait): Adjust.
* windows-nat.c (windows_wait, windows_pid_to_str): Adjust.
2009-02-06 23:21:26 +01:00
|
|
|
windows_wait (struct target_ops *ops,
|
2009-05-21 17:48:42 +02:00
|
|
|
ptid_t ptid, struct target_waitstatus *ourstatus, int options)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2008-08-08 15:16:17 +02:00
|
|
|
int pid = -1;
|
2001-05-04 06:15:33 +02:00
|
|
|
|
2007-02-12 14:04:36 +01:00
|
|
|
target_terminal_ours ();
|
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
/* We loop when we get a non-standard exception rather than return
|
|
|
|
with a SPURIOUS because resume can try and step or modify things,
|
1998-11-05 15:08:48 +01:00
|
|
|
which needs a current_thread->h. But some of these exceptions mark
|
1995-10-09 22:54:26 +01:00
|
|
|
the birth or death of threads, which mean that the current thread
|
2011-01-12 02:23:29 +01:00
|
|
|
isn't necessarily what you think it is. */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
|
|
|
while (1)
|
2000-06-04 02:28:17 +02:00
|
|
|
{
|
2008-05-20 20:36:36 +02:00
|
|
|
int retval;
|
2009-03-22 22:27:30 +01:00
|
|
|
|
2009-03-22 22:43:56 +01:00
|
|
|
/* If the user presses Ctrl-c while the debugger is waiting
|
|
|
|
for an event, he expects the debugger to interrupt his program
|
|
|
|
and to get the prompt back. There are two possible situations:
|
|
|
|
|
|
|
|
- The debugger and the program do not share the console, in
|
|
|
|
which case the Ctrl-c event only reached the debugger.
|
|
|
|
In that case, the ctrl_c handler will take care of interrupting
|
2011-01-12 02:23:29 +01:00
|
|
|
the inferior. Note that this case is working starting with
|
|
|
|
Windows XP. For Windows 2000, Ctrl-C should be pressed in the
|
2009-03-22 22:43:56 +01:00
|
|
|
inferior console.
|
|
|
|
|
|
|
|
- The debugger and the program share the same console, in which
|
|
|
|
case both debugger and inferior will receive the Ctrl-c event.
|
|
|
|
In that case the ctrl_c handler will ignore the event, as the
|
|
|
|
Ctrl-c event generated inside the inferior will trigger the
|
|
|
|
expected debug event.
|
|
|
|
|
|
|
|
FIXME: brobecker/2008-05-20: If the inferior receives the
|
|
|
|
signal first and the delay until GDB receives that signal
|
|
|
|
is sufficiently long, GDB can sometimes receive the SIGINT
|
|
|
|
after we have unblocked the CTRL+C handler. This would
|
|
|
|
lead to the debugger stopping prematurely while handling
|
|
|
|
the new-thread event that comes with the handling of the SIGINT
|
|
|
|
inside the inferior, and then stop again immediately when
|
|
|
|
the user tries to resume the execution in the inferior.
|
|
|
|
This is a classic race that we should try to fix one day. */
|
|
|
|
SetConsoleCtrlHandler (&ctrl_c_handler, TRUE);
|
* corelow.c (get_core_registers): Adjust.
(core_file_thread_alive): Rename to...
(core_thread_alive): ... this.
(core_pid_to_str): Try gdbarch_core_pid_to_str first.
(init_core_ops): Adjust.
(coreops_suppress_target): Delete.
(_initialize_corelow): Unconditionally add core_ops.
* procfs.c: Include "inf-child.h".
(procfs_ops): Delete.
(init_procfs_ops): Delete. Reimplement as...
(procfs_target): ... this, inheriting from inf-child.
(procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
(procfs_prepare_to_store): Delete.
(procfs_store_registers, procfs_resume): Adjust.
(procfs_open): Delete.
(procfs_suppress_run): Delete.
(procfs_can_run): Delete.
(procfs_mourn_inferior): Adjust.
(procfs_init_inferior): Add target_ops parameter. Adjust.
(procfs_create_inferior): Don't pass procfs_init_inferior to
fork_inferior. Instead call it after fork_inferior returns.
(procfs_find_new_threads): Adjust.
(_initialize_procfs): Adjust to use procfs_target instead of
init_procfs_ops.
* sol-thread.c (orig_core_ops, sol_core_ops): Delete.
(lwp_to_thread): Use target_thread_alive.
(sol_thread_open): Delete.
(sol_thread_attach): Delete.
(sol_thread_detach, sol_thread_resume, sol_thread_wait)
(sol_thread_fetch_registers, sol_thread_store_registers): Adjust
to use find_target_beneath.
(sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
(sol_thread_xfer_partial): Adjust to use find_target_beneath.
(sol_thread_files_info, sol_thread_kill_inferior): Delete.
(check_for_thread_db): New.
(sol_thread_notice_signals, sol_thread_create_inferior): Delete.
(sol_thread_new_objfile): Call check_for_thread_db.
(sol_thread_mourn_inferior): Adjust to use find_target_beneath.
(sol_thread_can_run): Delete.
(sol_thread_alive): Adjust to use find_target_beneath.
(sol_thread_stop): Delete.
(rw_common): Use target_write_memory or target_read_memory.
(ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
(ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
(solaris_pid_to_str): Remove check for libthread_db initialization
failing.
(sol_find_new_threads): Remove check for libthread_db
initialization failing, or for an invalid inferior_ptid. Adjust
to use find_target_beneath.
(sol_core_open, sol_core_close, sol_core_detach,
sol_core_files_info, sol_find_memory_regions,
sol_make_note_section, ignore): Delete.
(init_sol_thread_ops): Make it a thread_stratum target. Remove
unneeded callback settings.
(init_sol_core_ops): Delete.
(_initialize_sol_thread): No longer call init_sol_core_ops, set
procfs_suppress_run, or hack with core_ops.
* target.h (struct target_ops): Add a target_ops * parameter to
to_resume, to_fetch_registers, to_store_registers, to_thread_alive
and to_find_new_threads.
(target_fetch_registers, target_store_registers)
(target_thread_alive, target_find_new_threads): Redeclare as
function.
* target.c (update_current_target): Do not inherit or de_fault
to_resume, to_fetch_registers, to_store_registers,
to_thread_alive, to_find_new_threads.
(target_resume): Adjust.
(target_thread_alive, target_find_new_threads): New.
(debug_to_resume, debug_to_fetch_registers): Delete.
(target_fetch_registers): New.
(debug_to_store_registers): Delete.
(target_store_registers): New.
(debug_to_thread_alive, debug_to_find_new_threads): Delete.
(setup_target_debug): Adjust.
* gdbcore.h (core_ops): Delete declaration.
* inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
* gdbarch.sh (core_pid_to_str): New gdbarch callback.
* gdbarch.h, gdbarch.c: Regenerate.
* sol2-tdep.c: Include "inferior.h".
(sol2_core_pid_to_str): New.
* sol2-tdep.h (sol2_core_pid_to_str): Declare.
* amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
* sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
* sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
* i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2009-02-23 01:03:50 +01:00
|
|
|
retval = get_windows_debug_event (ops, pid, ourstatus);
|
2009-03-22 22:43:56 +01:00
|
|
|
SetConsoleCtrlHandler (&ctrl_c_handler, FALSE);
|
2008-05-20 20:36:36 +02:00
|
|
|
|
2000-06-04 02:28:17 +02:00
|
|
|
if (retval)
|
2008-08-08 15:16:17 +02:00
|
|
|
return ptid_build (current_event.dwProcessId, 0, retval);
|
2000-06-04 02:28:17 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
int detach = 0;
|
1998-11-05 15:08:48 +01:00
|
|
|
|
2004-06-25 21:46:08 +02:00
|
|
|
if (deprecated_ui_loop_hook != NULL)
|
|
|
|
detach = deprecated_ui_loop_hook (0);
|
1999-04-26 20:25:51 +02:00
|
|
|
|
2000-06-04 02:28:17 +02:00
|
|
|
if (detach)
|
Add a target_ops parameter to the to_kill method in struct target_ops.
* target.h (struct target_ops): Add a "target_ops *" parameter to
method to_kill.
(target_kill): Remove macro. Add declaration.
* target.c (debug_to_kill): Delete, no longer necessary.
(target_kill): New function.
(update_current_target): Stop inheriting the to_kill method.
Do not de_fault it to no_process either.
(setup_target_debug): Do not set current_target.to_kill.
* gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
accordingly.
2009-03-17 20:28:09 +01:00
|
|
|
windows_kill_inferior (ops);
|
2000-06-04 02:28:17 +02:00
|
|
|
}
|
|
|
|
}
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
2014-02-03 08:32:40 +01:00
|
|
|
/* Iterate over all DLLs currently mapped by our inferior, and
|
|
|
|
add them to our list of solibs. */
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
|
|
|
|
static void
|
2014-02-03 08:32:40 +01:00
|
|
|
windows_add_all_dlls (void)
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
{
|
|
|
|
struct so_list *so;
|
|
|
|
HMODULE dummy_hmodule;
|
|
|
|
DWORD cb_needed;
|
|
|
|
HMODULE *hmodules;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (EnumProcessModules (current_process_handle, &dummy_hmodule,
|
|
|
|
sizeof (HMODULE), &cb_needed) == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (cb_needed < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hmodules = (HMODULE *) alloca (cb_needed);
|
|
|
|
if (EnumProcessModules (current_process_handle, hmodules,
|
|
|
|
cb_needed, &cb_needed) == 0)
|
|
|
|
return;
|
|
|
|
|
2014-02-03 08:32:40 +01:00
|
|
|
for (i = 1; i < (int) (cb_needed / sizeof (HMODULE)); i++)
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
{
|
|
|
|
MODULEINFO mi;
|
2013-12-16 23:44:43 +01:00
|
|
|
#ifdef __USEWIDE
|
|
|
|
wchar_t dll_name[__PMAX];
|
|
|
|
char name[__PMAX];
|
|
|
|
#else
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
char dll_name[__PMAX];
|
2013-12-16 23:44:43 +01:00
|
|
|
char *name;
|
|
|
|
#endif
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
if (GetModuleInformation (current_process_handle, hmodules[i],
|
|
|
|
&mi, sizeof (mi)) == 0)
|
|
|
|
continue;
|
|
|
|
if (GetModuleFileNameEx (current_process_handle, hmodules[i],
|
|
|
|
dll_name, sizeof (dll_name)) == 0)
|
|
|
|
continue;
|
2013-12-16 23:44:43 +01:00
|
|
|
#ifdef __USEWIDE
|
|
|
|
wcstombs (name, dll_name, __PMAX);
|
|
|
|
#else
|
|
|
|
name = dll_name;
|
|
|
|
#endif
|
2014-02-03 08:32:40 +01:00
|
|
|
|
|
|
|
solib_end->next = windows_make_so (name, mi.lpBaseOfDll);
|
|
|
|
solib_end = solib_end->next;
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-07 01:25:32 +02:00
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
do_initial_windows_stuff (struct target_ops *ops, DWORD pid, int attaching)
|
2000-08-07 01:25:32 +02:00
|
|
|
{
|
|
|
|
extern int stop_after_trap;
|
2002-02-04 12:00:10 +01:00
|
|
|
int i;
|
2008-09-22 17:20:08 +02:00
|
|
|
struct inferior *inf;
|
2008-09-08 23:51:18 +02:00
|
|
|
struct thread_info *tp;
|
2000-08-07 01:25:32 +02:00
|
|
|
|
2012-05-24 18:51:47 +02:00
|
|
|
last_sig = GDB_SIGNAL_0;
|
2000-08-07 01:25:32 +02:00
|
|
|
event_count = 0;
|
|
|
|
exception_count = 0;
|
2007-12-02 06:45:08 +01:00
|
|
|
open_process_used = 0;
|
2002-02-04 12:00:10 +01:00
|
|
|
debug_registers_changed = 0;
|
2002-02-16 03:33:24 +01:00
|
|
|
debug_registers_used = 0;
|
2002-02-04 12:00:10 +01:00
|
|
|
for (i = 0; i < sizeof (dr) / sizeof (dr[0]); i++)
|
|
|
|
dr[i] = 0;
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2007-09-04 03:12:18 +02:00
|
|
|
cygwin_load_start = cygwin_load_end = 0;
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
2000-08-07 01:25:32 +02:00
|
|
|
current_event.dwProcessId = pid;
|
|
|
|
memset (¤t_event, 0, sizeof (current_event));
|
Allow making GDB not automatically connect to the native target.
Sometimes it's useful to be able to disable the automatic connection
to the native target. E.g., sometimes GDB disconnects from the
extended-remote target I was debugging, without me noticing it, and
then I do "run". That starts the program locally, and only after a
little head scratch session do I figure out the program is running
locally instead of remotely as intended. Same thing with "attach",
"info os", etc.
With the patch, we now can have this instead:
(gdb) set auto-connect-native-target off
(gdb) target extended-remote :9999
...
*gdb disconnects*
(gdb) run
Don't know how to run. Try "help target".
To still be able to connect to the native target with
auto-connect-native-target set to off, I've made "target native" work
instead of erroring out as today.
Before:
(gdb) target native
Use the "run" command to start a native process.
After:
(gdb) target native
Done. Use the "run" command to start a process.
(gdb) maint print target-stack
The current target stack is:
- native (Native process)
- exec (Local exec file)
- None (None)
(gdb) run
Starting program: ./a.out
...
I've also wanted this for the testsuite, when running against the
native-extended-gdbserver.exp board (runs against gdbserver in
extended-remote mode). With a non-native-target board, it's always a
bug to launch a program with the native target. Turns out we still
have one such case this patch catches:
(gdb) break main
Breakpoint 1 at 0x4009e5: file ../../../src/gdb/testsuite/gdb.base/coremaker.c, line 138.
(gdb) run
Don't know how to run. Try "help target".
(gdb) FAIL: gdb.base/corefile.exp: run: with core
On the patch itself, probably the least obvious bit is the need to go
through all targets, and move the unpush_target call to after the
generic_mourn_inferior call instead of before. This is what
inf-ptrace.c does too, ever since multi-process support was added.
The reason inf-ptrace.c does things in that order is that in the
current multi-process/single-target model, we shouldn't unpush the
target if there are still other live inferiors being debugged. The
check for that is "have_inferiors ()" (a misnomer nowadays...), which
does:
have_inferiors (void)
{
for (inf = inferior_list; inf; inf = inf->next)
if (inf->pid != 0)
return 1;
It's generic_mourn_inferior that ends up clearing inf->pid, so we need
to call it before the have_inferiors check. To make all native
targets behave the same WRT to explicit "target native", I've added an
inf_child_maybe_unpush_target function that targets call instead of
calling unpush_target directly, and as that includes the
have_inferiors check, I needed to adjust the targets.
Tested on x86_64 Fedora 20, native, and also with the
extended-gdbserver board.
Confirmed a cross build of djgpp gdb still builds.
Smoke tested a cross build of Windows gdb under Wine.
Untested otherwise.
gdb/
2014-05-21 Pedro Alves <palves@redhat.com>
* inf-child.c (inf_child_ops, inf_child_explicitly_opened): New
globals.
(inf_child_open_target): New function.
(inf_child_open): Use inf_child_open_target to push the target
instead of erroring out.
(inf_child_disconnect, inf_child_close)
(inf_child_maybe_unpush_target): New functions.
(inf_child_target): Install inf_child_disconnect and
inf_child_close. Store a pointer to the returned object.
* inf-child.h (inf_child_open_target, inf_child_maybe_unpush): New
declarations.
* target.c (auto_connect_native_target): New global.
(show_default_run_target): New function.
(find_default_run_target): Return NULL if automatically connecting
to the native target is disabled.
(_initialize_target): Install set/show auto-connect-native-target.
* NEWS: Mention "set auto-connect-native-target", and "target
native".
* linux-nat.c (super_close): New global.
(linux_nat_close): Call super_close.
(linux_nat_add_target): Store a pointer to the base class's
to_close method.
* inf-ptrace.c (inf_ptrace_mourn_inferior, inf_ptrace_detach): Use
inf_child_maybe_unpush.
* inf-ttrace.c (inf_ttrace_him): Don't push the target if it is
already pushed.
(inf_ttrace_mourn_inferior): Only unpush the target after mourning
the inferior. Use inf_child_maybe_unpush_target.
(inf_ttrace_attach): Don't push the target if it is already
pushed.
(inf_ttrace_detach): Use inf_child_maybe_unpush_target.
* darwin-nat.c (darwin_mourn_inferior): Only unpush the target
after mourning the inferior. Use inf_child_maybe_unpush_target.
(darwin_attach_pid): Don't push the target if it is already
pushed.
* gnu-nat.c (gnu_mourn_inferior): Only unpush the target after
mourning the inferior. Use inf_child_maybe_unpush_target.
(gnu_detach): Use inf_child_maybe_unpush_target.
* go32-nat.c (go32_create_inferior): Don't push the target if it
is already pushed.
(go32_mourn_inferior): Use inf_child_maybe_unpush_target.
* nto-procfs.c (procfs_is_nto_target): Adjust comment.
(procfs_open): Rename to ...
(procfs_open_1): ... this. Add target_ops parameter. Adjust
comments. Can target_preopen before changing node. Call
inf_child_open_target to push the target explicitly.
(procfs_attach): Don't push the target if it is already pushed.
(procfs_detach): Use inf_child_maybe_unpush_target.
(procfs_create_inferior): Don't push the target if it is already
pushed.
(nto_native_ops): New global.
(procfs_open): Reimplement.
(procfs_native_open): New function.
(init_procfs_targets): Install procfs_native_open as to_open of
"target native". Store a pointer to the "native" target in
nto_native_ops.
* procfs.c (procfs_attach): Don't push the target if it is already
pushed.
(procfs_detach): Use inf_child_maybe_unpush_target.
(procfs_mourn_inferior): Only unpush the target after mourning the
inferior. Use inf_child_maybe_unpush_target.
(procfs_init_inferior): Don't push the target if it is already
pushed.
* windows-nat.c (do_initial_windows_stuff): Don't push the target
if it is already pushed.
(windows_detach): Use inf_child_maybe_unpush_target.
(windows_mourn_inferior): Only unpush the target after mourning
the inferior. Use inf_child_maybe_unpush_target.
gdb/doc/
2014-05-21 Pedro Alves <palves@redhat.com>
* gdb.texinfo (Starting): Document "set/show
auto-connect-native-target".
(Target Commands): Document "target native".
gdb/testsuite/
2014-05-21 Pedro Alves <palves@redhat.com>
* boards/gdbserver-base.exp (GDBFLAGS): Set to "set
auto-connect-native-target off".
* gdb.base/auto-connect-native-target.c: New file.
* gdb.base/auto-connect-native-target.exp: New file.
2014-05-21 19:30:47 +02:00
|
|
|
if (!target_is_pushed (ops))
|
|
|
|
push_target (ops);
|
2007-08-14 13:09:45 +02:00
|
|
|
disable_breakpoints_in_shlibs ();
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_clear_solib ();
|
2014-07-25 18:34:05 +02:00
|
|
|
clear_proceed_status (0);
|
2000-08-07 01:25:32 +02:00
|
|
|
init_wait_for_inferior ();
|
|
|
|
|
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
Add base multi-executable/process support to GDB.
gdb/
* Makefile.in (SFILES): Add progspace.c.
(COMMON_OBS): Add progspace.o.
* progspace.h: New.
* progspace.c: New.
* breakpoint.h (struct bp_target_info) <placed_address_space>: New
field.
(struct bp_location) <pspace>: New field.
(struct breakpoint) <pspace>: New field.
(bpstat_stop_status, breakpoint_here_p)
(moribund_breakpoint_here_p, breakpoint_inserted_here_p)
(regular_breakpoint_inserted_here_p)
(software_breakpoint_inserted_here_p, breakpoint_thread_match)
(set_default_breakpoint): Adjust prototypes.
(remove_breakpoints_pid, breakpoint_program_space_exit): Declare.
(insert_single_step_breakpoint, deprecated_insert_raw_breakpoint):
Adjust prototypes.
* breakpoint.c (executing_startup): Delete.
(default_breakpoint_sspace): New.
(breakpoint_restore_shadows): Skip if the address space doesn't
match.
(update_watchpoint): Record the frame's program space in the
breakpoint location.
(insert_bp_location): Record the address space in target_info.
Adjust to pass the symbol space to solib_name_from_address.
(breakpoint_program_space_exit): New.
(insert_breakpoint_locations): Switch the symbol space and thread
when inserting breakpoints. Don't insert breakpoints in a vfork
parent waiting for vfork done if we're not attached to the vfork
child.
(remove_breakpoints_pid): New.
(reattach_breakpoints): Switch to a thread of PID. Ignore
breakpoints of other symbol spaces.
(create_internal_breakpoint): Store the symbol space in the sal.
(create_longjmp_master_breakpoint): Iterate over all symbol
spaces.
(update_breakpoints_after_exec): Ignore breakpoints for other
symbol spaces.
(remove_breakpoint): Rename to ...
(remove_breakpoint_1): ... this. Pass the breakpoints symbol
space to solib_name_from_address.
(remove_breakpoint): New.
(mark_breakpoints_out): Ignore breakpoints from other symbol
spaces.
(breakpoint_init_inferior): Ditto.
(breakpoint_here_p): Add an address space argument and adjust to
use breakpoint_address_match.
(moribund_breakpoint_here_p): Ditto.
(regular_breakpoint_inserted_here_p): Ditto.
(breakpoint_inserted_here_p): Ditto.
(software_breakpoint_inserted_here_p): Ditto.
(breakpoint_thread_match): Ditto.
(bpstat_check_location): Ditto.
(bpstat_stop_status): Ditto.
(print_breakpoint_location): If there's a location to print,
switch the current symbol space.
(print_one_breakpoint_location): Add `allflag' argument.
(print_one_breakpoint): Ditto. Adjust.
(do_captured_breakpoint_query): Adjust.
(breakpoint_1): Adjust.
(breakpoint_has_pc): Also match the symbol space.
(describe_other_breakpoints): Add a symbol space argument and
adjust.
(set_default_breakpoint): Add a symbol space argument. Set
default_breakpoint_sspace.
(breakpoint_address_match): New.
(check_duplicates_for): Add an address space argument, and adjust.
(set_raw_breakpoint): Record the symbol space in the location and
in the breakpoint.
(set_longjmp_breakpoint): Skip longjmp master breakpoints from
other symbol spaces.
(remove_thread_event_breakpoints, remove_solib_event_breakpoints)
(disable_breakpoints_in_shlibs): Skip breakpoints from other
symbol spaces.
(disable_breakpoints_in_unloaded_shlib): Match symbol spaces.
(create_catchpoint): Set the symbol space in the sal.
(disable_breakpoints_before_startup): Skip breakpoints from other
symbol spaces. Set executing_startup in the current symbol space.
(enable_breakpoints_after_startup): Clear executing_startup in the
current symbol space. Skip breakpoints from other symbol spaces.
(clone_momentary_breakpoint): Also copy the symbol space.
(add_location_to_breakpoint): Set the location's symbol space.
(bp_loc_is_permanent): Switch thread and symbol space.
(create_breakpoint): Adjust.
(expand_line_sal_maybe): Expand comment to mention symbol spaces.
Switch thread and symbol space when reading memory.
(parse_breakpoint_sals): Set the symbol space in the sal.
(break_command_really): Ditto.
(skip_prologue_sal): Switch and space.
(resolve_sal_pc): Ditto.
(watch_command_1): Record the symbol space in the sal.
(create_ada_exception_breakpoint): Adjust.
(clear_command): Adjust. Match symbol spaces.
(update_global_location_list): Use breakpoint_address_match.
(breakpoint_re_set_one): Switch thread and space.
(breakpoint_re_set): Save symbol space.
(breakpoint_re_set_thread): Also reset the symbol space.
(deprecated_insert_raw_breakpoint): Add an address space argument.
Adjust.
(insert_single_step_breakpoint): Ditto.
(single_step_breakpoint_inserted_here_p): Ditto.
(clear_syscall_counts): New.
(_initialize_breakpoint): Install it as inferior_exit observer.
* exec.h: Include "progspace.h".
(exec_bfd, exec_bfd_mtime): New defines.
(exec_close): Declare.
* exec.c: Include "gdbthread.h" and "progspace.h".
(exec_bfd, exec_bfd_mtime, current_target_sections_1): Delete.
(using_exec_ops): New.
(exec_close_1): Rename to exec_close, and make public.
(exec_close): Rename to exec_close_1, and adjust all callers. Add
description. Remove target sections and close executables from
all program spaces.
(exec_file_attach): Add comment.
(add_target_sections): Check on `using_exec_ops' to check if the
target should be pushed.
(remove_target_sections): Only unpush the target if there are no
more target sections in any symbol space.
* gdbcore.h: Include "exec.h".
(exec_bfd, exec_bfd_mtime): Remove declarations.
* frame.h (get_frame_program_space, get_frame_address_space)
(frame_unwind_program_space): Declare.
* frame.c (struct frame_info) <pspace, aspace>: New fields.
(create_sentinel_frame): Add program space argument. Set the
pspace and aspace fields of the frame object.
(get_current_frame, create_new_frame): Adjust.
(get_frame_program_space): New.
(frame_unwind_program_space): New.
(get_frame_address_space): New.
* stack.c (print_frame_info): Adjust.
(print_frame): Use the frame's program space.
* gdbthread.h (any_live_thread_of_process): Declare.
* thread.c (any_live_thread_of_process): New.
(switch_to_thread): Switch the program space as well.
(restore_selected_frame): Don't warn if trying to restore frame
level 0.
* inferior.h: Include "progspace.h".
(detach_fork): Declare.
(struct inferior) <removable, aspace, pspace>
<vfork_parent, vfork_child, pending_detach>
<waiting_for_vfork_done>: New fields.
<terminal_info>: Remove field.
<data, num_data>: New fields.
(register_inferior_data, register_inferior_data_with_cleanup)
(clear_inferior_data, set_inferior_data, inferior_data): Declare.
(exit_inferior, exit_inferior_silent, exit_inferior_num_silent)
(inferior_appeared): Declare.
(find_inferior_pid): Typo.
(find_inferior_id, find_inferior_for_program_space): Declare.
(set_current_inferior, save_current_inferior, prune_inferiors)
(number_of_inferiors): Declare.
(inferior_list): Declare.
* inferior.c: Include "gdbcore.h" and "symfile.h".
(inferior_list): Make public.
(delete_inferior_1): Always delete thread silently.
(find_inferior_id): Make public.
(current_inferior_): New.
(current_inferior): Use it.
(set_current_inferior): New.
(restore_inferior): New.
(save_current_inferior): New.
(free_inferior): Free the per-inferior data.
(add_inferior_silent): Allocate per-inferior data.
Call inferior_appeared.
(delete_threads_of_inferior): New.
(delete_inferior_1): Adjust interface to take an inferior pointer.
(delete_inferior): Adjust.
(delete_inferior_silent): Adjust.
(exit_inferior_1): New.
(exit_inferior): New.
(exit_inferior_silent): New.
(exit_inferior_num_silent): New.
(detach_inferior): Adjust.
(inferior_appeared): New.
(discard_all_inferiors): Adjust.
(find_inferior_id): Make public. Assert pid is not zero.
(find_inferior_for_program_space): New.
(have_inferiors): Check if we have any inferior with pid not zero.
(have_live_inferiors): Go over all pushed targets looking for
process_stratum.
(prune_inferiors): New.
(number_of_inferiors): New.
(print_inferior): Add executable column. Print vfork parent/child
relationships.
(inferior_command): Adjust to cope with not running inferiors.
(remove_inferior_command): New.
(add_inferior_command): New.
(clone_inferior_command): New.
(struct inferior_data): New.
(struct inferior_data_registration): New.
(struct inferior_data_registry): New.
(inferior_data_registry): New.
(register_inferior_data_with_cleanup): New.
(register_inferior_data): New.
(inferior_alloc_data): New.
(inferior_free_data): New.
(clear_inferior_data): New.
(set_inferior_data): New.
(inferior_data): New.
(initialize_inferiors): New.
(_initialize_inferiors): Register "add-inferior",
"remove-inferior" and "clone-inferior" commands.
* objfiles.h: Include "progspace.h".
(struct objfile) <pspace>: New field.
(symfile_objfile, object_files): Don't declare.
(ALL_PSPACE_OBJFILES): New.
(ALL_PSPACE_OBJFILES_SAFE): New.
(ALL_OBJFILES, ALL_OBJFILES_SAFE): Adjust.
(ALL_PSPACE_SYMTABS): New.
(ALL_PRIMARY_SYMTABS): Adjust.
(ALL_PSPACE_PRIMARY_SYMTABS): New.
(ALL_PSYMTABS): Adjust.
(ALL_PSPACE_PSYMTABS): New.
* objfiles.c (object_files, symfile_objfile): Delete.
(struct objfile_sspace_info): New.
(objfiles_pspace_data): New.
(objfiles_pspace_data_cleanup): New.
(get_objfile_pspace_data): New.
(objfiles_changed_p): Delete.
(allocate_objfile): Set the objfile's program space. Adjust to
reference objfiles_changed_p in pspace data.
(free_objfile): Adjust to reference objfiles_changed_p in pspace
data.
(objfile_relocate): Ditto.
(update_section_map): Add pspace argument. Adjust to iterate over
objfiles in the passed in pspace.
(find_pc_section): Delete sections and num_sections statics.
Adjust to refer to program space's objfiles_changed_p. Adjust to
refer to sections and num_sections store in the objfile's pspace
data.
(objfiles_changed): Adjust to reference objfiles_changed_p in
pspace data.
(_initialize_objfiles): New.
* linespec.c (decode_all_digits, decode_dollar): Set the sal's
program space.
* source.c (current_source_pspace): New.
(get_current_source_symtab_and_line): Set the sal's program space.
(set_current_source_symtab_and_line): Set current_source_pspace.
(select_source_symtab): Ditto. Use ALL_OBJFILES.
(forget_cached_source_info): Iterate over all program spaces.
* symfile.c (clear_symtab_users): Adjust.
* symmisc.c (print_symbol_bcache_statistics): Iterate over all
program spaces.
(print_objfile_statistics): Ditto.
(maintenance_print_msymbols): Ditto.
(maintenance_print_objfiles): Ditto.
(maintenance_info_symtabs): Ditto.
(maintenance_info_psymtabs): Ditto.
* symtab.h (SYMTAB_PSPACE): New.
(struct symtab_and_line) <pspace>: New field.
* symtab.c (init_sal): Clear the sal's program space.
(find_pc_sect_symtab): Set the sal's program space. Switch thread
and space.
(append_expanded_sal): Add program space argument. Iterate over
all program spaces.
(expand_line_sal): Iterate over all program spaces. Switch
program space.
* target.h (enum target_waitkind) <TARGET_WAITKIND_VFORK_DONE>: New.
(struct target_ops) <to_thread_address_space>: New field.
(target_thread_address_space): Define.
* target.c (target_detach): Only remove breakpoints from the
inferior we're detaching.
(target_thread_address_space): New.
* defs.h (initialize_progspace): Declare.
* top.c (gdb_init): Call it.
* solist.h (struct so_list) <sspace>: New field.
* solib.h (struct program_space): Forward declare.
(solib_name_from_address): Adjust prototype.
* solib.c (so_list_head): Replace with a macro referencing the
program space.
(update_solib_list): Set the so's program space.
(solib_name_from_address): Add a program space argument and adjust.
* solib-svr4.c (struct svr4_info) <pid>: Delete field.
<interp_text_sect_low, interp_text_sect_high, interp_plt_sect_low>
<interp_plt_sect_high>: New fields.
(svr4_info_p, svr4_info): Delete.
(solib_svr4_sspace_data): New.
(get_svr4_info): Rewrite.
(svr4_sspace_data_cleanup): New.
(open_symbol_file_object): Adjust.
(svr4_default_sos): Adjust.
(svr4_fetch_objfile_link_map): Adjust.
(interp_text_sect_low, interp_text_sect_high, interp_plt_sect_low)
(interp_plt_sect_high): Delete.
(svr4_in_dynsym_resolve_code): Adjust.
(enable_break): Adjust.
(svr4_clear_solib): Revert bit that removed the svr4_info here,
and reinstate clearing debug_base, debug_loader_offset_p,
debug_loader_offset and debug_loader_name.
(_initialize_svr4_solib): Register solib_svr4_pspace_data. Don't
install an inferior_exit observer anymore.
* printcmd.c (struct display) <pspace>: New field.
(display_command): Set the display's sspace.
(do_one_display): Match the display's sspace.
(display_uses_solib_p): Ditto.
* linux-fork.c (detach_fork): Moved to infrun.c.
(_initialize_linux_fork): Moved "detach-on-fork" command to
infrun.c.
* infrun.c (detach_fork): Moved from linux-fork.c.
(proceed_after_vfork_done): New.
(handle_vfork_child_exec_or_exit): New.
(follow_exec_mode_replace, follow_exec_mode_keep)
(follow_exec_mode_names, follow_exec_mode_string)
(show_follow_exec_mode_string): New.
(follow_exec): New. Reinstate the mark_breakpoints_out call.
Remove shared libraries before attaching new executable. If user
wants to keep the inferior, keep it.
(displaced_step_fixup): Adjust to pass an address space to the
breakpoints module.
(resume): Ditto.
(clear_proceed_status): In all-stop mode, always clear the proceed
status of all threads.
(prepare_to_proceed): Adjust to pass an address space to the
breakpoints module.
(proceed): Ditto.
(adjust_pc_after_break): Ditto.
(handle_inferior_event): When handling a process exit, switch the
program space to the inferior's that had exited. Call
handle_vfork_child_exec_or_exit. Adjust to pass an address space
to the breakpoints module. In non-stop mode, when following a
fork and detach-fork is off, also resume the other branch. Handle
TARGET_WAITKIND_VFORK_DONE. Set the program space in sals.
(normal_stop): Prune inferiors.
(_initialize_infrun): Install the new "follow-exec-mode" command.
"detach-on-fork" moved here.
* regcache.h (get_regcache_aspace): Declare.
* regcache.c (struct regcache) <aspace>: New field.
(regcache_xmalloc): Clear the aspace.
(get_regcache_aspace): New.
(regcache_cpy): Copy the aspace field.
(regcache_cpy_no_passthrough): Ditto.
(get_thread_regcache): Fetch the thread's address space from the
target, and store it in the regcache.
* infcall.c (call_function_by_hand): Set the sal's pspace.
* arch-utils.c (default_has_shared_address_space): New.
* arch-utils.h (default_has_shared_address_space): Declare.
* gdbarch.sh (has_shared_address_space): New.
* gdbarch.h, gdbarch.c: Regenerate.
* linux-tdep.c: Include auxv.h, target.h, elf/common.h.
(linux_has_shared_address_space): New.
(_initialize_linux_tdep): Declare.
* arm-tdep.c (arm_software_single_step): Pass the frame's address
space to insert_single_step_breakpoint.
* arm-linux-tdep.c (arm_linux_software_single_step): Pass the
frame's pspace to breakpoint functions.
* cris-tdep.c (crisv32_single_step_through_delay): Ditto.
(cris_software_single_step): Ditto.
* mips-tdep.c (deal_with_atomic_sequence): Add frame argument.
Pass the frame's pspace to breakpoint functions.
(mips_software_single_step): Adjust.
(mips_single_step_through_delay): Adjust.
* rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
* rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
* solib-irix.c (enable_break): Adjust to pass the current frame's
address space to breakpoint functions.
* sparc-tdep.c (sparc_software_single_step): Ditto.
* spu-tdep.c (spu_software_single_step): Ditto.
* alpha-tdep.c (alpha_software_single_step): Ditto.
* record.c (record_wait): Adjust to pass an address space to the
breakpoints module.
* fork-child.c (fork_inferior): Set the new inferior's program and
address spaces.
* inf-ptrace.c (inf_ptrace_follow_fork): Copy the parent's program
and address spaces.
(inf_ptrace_attach): Set the inferior's program and address spaces.
* linux-nat.c: Include "solib.h".
(linux_child_follow_fork): Manage parent and child's program and
address spaces. Clone the parent's program space if necessary.
Don't wait for the vfork to be done here. Refuse to resume if
following the vfork parent while leaving the child stopped.
(resume_callback): Don't resume a vfork parent.
(linux_nat_resume): Also check for pending events in the
lp->waitstatus field.
(linux_handle_extended_wait): Report TARGET_WAITKIND_VFORK_DONE
events to the core.
(stop_wait_callback): Don't wait for SIGSTOP on vfork parents.
(cancel_breakpoint): Adjust.
* linux-thread-db.c (thread_db_wait): Don't remove thread event
breakpoints here.
(thread_db_mourn_inferior): Don't mark breakpoints out here.
Remove thread event breakpoints after mourning.
* corelow.c: Include progspace.h.
(core_open): Set the inferior's program and address spaces.
* remote.c (remote_add_inferior): Set the new inferior's program
and address spaces.
(remote_start_remote): Update address spaces.
(extended_remote_create_inferior_1): Don't init the thread list if
we already debugging other inferiors.
* darwin-nat.c (darwin_attach): Set the new inferior's program and
address spaces.
* gnu-nat.c (gnu_attach): Ditto.
* go32-nat.c (go32_create_inferior): Ditto.
* inf-ttrace.c (inf_ttrace_follow_fork, inf_ttrace_attach): Ditto.
* monitor.c (monitor_open): Ditto.
* nto-procfs.c (procfs_attach, procfs_create_inferior): Ditto.
* procfs.c (do_attach): Ditto.
* windows-nat.c (do_initial_windows_stuff): Ditto.
* inflow.c (inferior_process_group)
(terminal_init_inferior_with_pgrp, terminal_inferior,
(terminal_ours_1, inflow_inferior_exit, copy_terminal_info)
(child_terminal_info, new_tty_postfork, set_sigint_trap): Adjust
to use per-inferior data instead of inferior->terminal_info.
(inflow_inferior_data): New.
(inflow_new_inferior): Delete.
(inflow_inferior_data_cleanup): New.
(get_inflow_inferior_data): New.
* mi/mi-interp.c (mi_new_inferior): Rename to...
(mi_inferior_appeared): ... this.
(mi_interpreter_init): Adjust.
* tui/tui-disasm.c: Include "progspace.h".
(tui_set_disassem_content): Pass an address space to
breakpoint_here_p.
* NEWS: Mention multi-program debugging support. Mention new
commands "add-inferior", "clone-inferior", "remove-inferior",
"maint info program-spaces", and new option "set
follow-exec-mode".
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
gdb/doc/
* observer.texi (new_inferior): Rename to...
(inferior_appeared): ... this.
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
gdb/testsuite/
* gdb.base/foll-vfork.exp: Adjust to spell out "follow-fork".
* gdb.base/foll-exec.exp: Adjust to expect a process id before
"Executing new program".
* gdb.base/foll-fork.exp: Adjust to spell out "follow-fork".
* gdb.base/multi-forks.exp: Ditto. Adjust to the inferior being
left listed after having been killed.
* gdb.base/attach.exp: Adjust to spell out "symbol-file".
* gdb.base/maint.exp: Adjust test.
* Makefile.in (ALL_SUBDIRS): Add gdb.multi.
* gdb.multi/Makefile.in: New.
* gdb.multi/base.exp: New.
* gdb.multi/goodbye.c: New.
* gdb.multi/hangout.c: New.
* gdb.multi/hello.c: New.
* gdb.multi/bkpt-multi-exec.c: New.
* gdb.multi/bkpt-multi-exec.exp: New.
* gdb.multi/crashme.c: New.
2009-10-19 Pedro Alves <pedro@codesourcery.com>
Stan Shebs <stan@codesourcery.com>
gdb/doc/
* gdb.texinfo (Inferiors): Rename node to ...
(Inferiors and Programs): ... this. Mention running multiple
programs in the same debug session.
<info inferiors>: Mention the new 'Executable' column if "info
inferiors". Update examples. Document the "add-inferior",
"clone-inferior", "remove-inferior" and "maint info
program-spaces" commands.
(Process): Rename node to...
(Forks): ... this. Document "set|show follow-exec-mode".
2009-10-19 11:51:43 +02:00
|
|
|
inf = current_inferior ();
|
|
|
|
inferior_appeared (inf, pid);
|
2008-09-22 17:21:30 +02:00
|
|
|
inf->attach_flag = attaching;
|
2008-09-22 17:16:51 +02:00
|
|
|
|
2008-10-02 16:20:07 +02:00
|
|
|
/* Make the new process the current inferior, so terminal handling
|
|
|
|
can rely on it. When attaching, we don't know about any thread
|
|
|
|
id here, but that's OK --- nothing should be referencing the
|
2009-01-13 05:14:07 +01:00
|
|
|
current thread until we report an event out of windows_wait. */
|
2008-10-02 16:20:07 +02:00
|
|
|
inferior_ptid = pid_to_ptid (pid);
|
|
|
|
|
2014-10-17 14:31:25 +02:00
|
|
|
target_terminal_init ();
|
2000-08-07 01:25:32 +02:00
|
|
|
target_terminal_inferior ();
|
|
|
|
|
2010-01-27 20:57:54 +01:00
|
|
|
windows_initialization_done = 0;
|
gdb/
Rename and move inferior_thread_state and inferior_status.
* gdbthread.h (struct thread_control_state): New struct, move fields
step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
trap_expected, proceed_to_finish, in_infcall, step_over_calls,
stop_step and stop_bpstat here from struct thread_info.
(struct thread_suspend_state): New struct, move field stop_signal here
from struct thread_info.
(struct thread_info): Move the fields above from this struct.
* inferior.h: Move the inferior_thread_state and inferior_status
declarations comment to their definitions at infrun.c.
(struct inferior_control_state): New struct, move field stop_soon from
struct inferior here.
(struct inferior_suspend_state): New empty struct.
(struct inferior): New fields control and suspend. Move out field
stop_soon.
* infrun.c (struct inferior_thread_state): Rename to ...
(infcall_suspend_state): ... here. Replace field stop_signal by
fields thread_suspend and inferior_suspend.
(save_inferior_thread_state): Rename to ...
(save_infcall_suspend_state): ... here. New variable inf. Update the
code for new fields.
(restore_inferior_thread_state): Rename to ...
(restore_infcall_suspend_state): ... here. New variable inf. Update
the code for new fields.
(do_restore_inferior_thread_state_cleanup): Rename to ...
(do_restore_infcall_suspend_state_cleanup): ... here.
(make_cleanup_restore_inferior_thread_state): Rename to ...
(make_cleanup_restore_infcall_suspend_state): ... here.
(discard_inferior_thread_state): Rename to ...
(discard_infcall_suspend_state): ... here.
(get_inferior_thread_state_regcache): Rename to ...
(get_infcall_suspend_state_regcache): ... here.
(struct inferior_status): Rename to ...
(struct infcall_control_state): ... here. Replace fields
step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
trap_expected, proceed_to_finish, in_infcall, step_over_calls,
stop_step, stop_bpstat and stop_soon by fields thread_control and
inferior_control.
(save_inferior_status): Rename to ...
(save_infcall_control_state): ... here. Update the code for new
fields.
(restore_inferior_status): Rename to ...
(restore_infcall_control_state): ... here. Update the code for new
fields.
(do_restore_inferior_status_cleanup): Rename to ...
(do_restore_infcall_control_state_cleanup): ... here.
(make_cleanup_restore_inferior_status): Rename to ...
(make_cleanup_restore_infcall_control_state): ... here.
(discard_inferior_status): Rename to ...
(discard_infcall_control_state): ... here.
* alpha-tdep.c, breakpoint.c, dummy-frame.c, dummy-frame.h,
exceptions.c, fbsd-nat.c, gdbthread.h, infcall.c, infcmd.c,
inferior.c, inferior.h, infrun.c, linux-nat.c, mi/mi-interp.c,
mips-tdep.c, procfs.c, solib-irix.c, solib-osf.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, thread.c, windows-nat.c: Update all the
references to the moved fields and renamed functions.
2010-11-28 05:31:25 +01:00
|
|
|
inf->control.stop_soon = STOP_QUIETLY;
|
2000-08-07 01:25:32 +02:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
stop_after_trap = 1;
|
2011-05-09 16:25:37 +02:00
|
|
|
wait_for_inferior ();
|
2008-09-08 23:51:18 +02:00
|
|
|
tp = inferior_thread ();
|
2012-05-24 18:51:47 +02:00
|
|
|
if (tp->suspend.stop_signal != GDB_SIGNAL_TRAP)
|
Remove 'step' parameters from 'proceed' and 'resume'
The "step" parameters of 'proceed' and 'resume' aren't really useful
as indication of whether run control wants to single-step the target,
as that information must already be retrievable from
currently_stepping. In fact, if currently_stepping disagrees with
whether we single-stepped the target, then things break. Thus instead
of having the same information in two places, this patch removes those
parameters.
Setting 'step_start_function' is the only user of proceed's 'step'
argument, other than passing the 'step' argument down to 'resume' and
debug log output. Move that instead to set_step_frame, where we
already set other related fields.
clear_proceed_status keeps its "step" parameter for now because it
needs to know which set of threads should have their state cleared,
and is called before the "stepping_command" flag is set.
Tested on x86_64 Fedora 20, native and gdbserver.
gdb/ChangeLog:
2015-03-24 Pedro Alves <palves@redhat.com>
* breakpoint.c (until_break_command): Adjust call to proceed.
* gdbthread.h (struct thread_control_state) <stepping_command>:
New field.
* infcall.c (run_inferior_call): Adjust call to proceed.
* infcmd.c (run_command_1, proceed_thread_callback, continue_1):
Adjust calls to proceed.
(set_step_frame): Set the current thread's step_start_function
here.
(step_once): Adjust calls to proceed.
(jump_command, signal_command, until_next_command)
(finish_backward, finish_forward, proceed_after_attach_callback)
(attach_command_post_wait): Adjust calls to proceed.
* infrun.c (proceed_after_vfork_done): Adjust call to proceed.
(do_target_resume): New function, factored out from ...
(resume): ... here. Remove 'step' parameter. Instead, check
currently_stepping to determine whether the thread should be
single-stepped.
(proceed): Remove 'step' parameter and don't set the thread's
step_start_function here. Adjust call to 'resume'.
(handle_inferior_event): Adjust calls to 'resume'.
(switch_back_to_stepped_thread): Use do_target_resume instead of
'resume'.
(keep_going): Adjust calls to 'resume'.
* infrun.h (proceed): Remove 'step' parameter.
(resume): Likewise.
* windows-nat.c (do_initial_windows_stuff): Adjust call to
'resume'.
* mi/mi-main.c (proceed_thread): Adjust call to 'proceed'.
2015-03-24 18:50:31 +01:00
|
|
|
resume (tp->suspend.stop_signal);
|
2000-08-07 01:25:32 +02:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2008-06-24 04:33:17 +02:00
|
|
|
|
2014-02-03 08:32:40 +01:00
|
|
|
/* Now that the inferior has been started and all DLLs have been mapped,
|
2014-02-20 17:18:47 +01:00
|
|
|
we can iterate over all DLLs and load them in.
|
|
|
|
|
|
|
|
We avoid doing it any earlier because, on certain versions of Windows,
|
|
|
|
LOAD_DLL_DEBUG_EVENTs are sometimes not complete. In particular,
|
|
|
|
we have seen on Windows 8.1 that the ntdll.dll load event does not
|
|
|
|
include the DLL name, preventing us from creating an associated SO.
|
|
|
|
A possible explanation is that ntdll.dll might be mapped before
|
|
|
|
the SO info gets created by the Windows system -- ntdll.dll is
|
|
|
|
the first DLL to be reported via LOAD_DLL_DEBUG_EVENT and other DLLs
|
|
|
|
do not seem to suffer from that problem.
|
|
|
|
|
|
|
|
Rather than try to work around this sort of issue, it is much
|
|
|
|
simpler to just ignore DLL load/unload events during the startup
|
|
|
|
phase, and then process them all in one batch now. */
|
2014-02-03 08:32:40 +01:00
|
|
|
windows_add_all_dlls ();
|
nameless LOAD_DLL_DEBUG_EVENT causes ntdll.dll to be missing
We observed on Windows 2012 that we were unable to unwind past
exception handlers. For instance, with any Ada program raising
an exception that does not get handled:
% gnatmake -g a -bargs -shared
% gdb a
(gdb) start
(gdb) catch exception unhandled
Catchpoint 2: unhandled Ada exceptions
(gdb) c
Catchpoint 2, unhandled CONSTRAINT_ERROR at <__gnat_unhandled_exception> (
e=0x645ff820 <constraint_error>) at s-excdeb.adb:53
53 s-excdeb.adb: No such file or directory.
At this point, we can already see that something went wrong, since
the frame selected by the debugger corresponds to a runtime function
rather than the function in the user code that caused the exception
to be raised (in our case procedure A).
This is further confirmed by the fact that we are unable to unwind
all the way to procedure A:
(gdb) bt
#0 <__gnat_unhandled_exception> (e=0x645ff820 <constraint_error>)
at s-excdeb.adb:53
#1 0x000000006444e9a3 in <__gnat_notify_unhandled_exception> (excep=0x284d2
+0)
at a-exextr.adb:144
#2 0x00000000645f106a in __gnat_personality_imp ()
from C:\[...]\libgnat-7.3.dll
#3 0x000000006144d1b7 in _GCC_specific_handler (ms_exc=0x242fab0,
this_frame=0x242fe60, ms_orig_context=0x242f5c0, ms_disp=0x242ef70,
gcc_per=0x645f0960 <__gnat_personality_imp>)
at ../../../src/libgcc/unwind-seh.c:289
#4 0x00000000645f1211 in __gnat_personality_seh0 ()
from C:\[...]\libgnat-7.3.dll
#5 0x000007fad3879f4d in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
It turns out that the unwinder has been doing its job flawlessly
up until frame #5. The address in frame #5 is correct, but GDB
is not able to associate it with any symbol or unwind record.
And this is because this address is inside ntdll.dll, and when
we received the LOAD_DLL_DEBUG_EVENT for that DLL, the system
was not able to tell us the name of the library, thus causing us
to silently ignoring the event. Because GDB does not know about
ntdll.dll, it is unable to access the unwind information from it.
And because the function at that address does not use a frame
pointer, the unwinding becomes impossible.
This patch helps recovering ntdll.dll at the end of the "run/attach"
phase, simply by trying to locate that specific DLL again.
In terms of our medium to long term planning, it seems to me that
we should be able to simplify the code by ignoring LOAD_DLL_DEBUG_EVENT
during the startup phase, and modify windows_ensure_ntdll_loaded
to then detect and report all shared libraries after we've finished
inferior creation. But for a change just before 7.7 branch creation,
I thought it was safest to just handle ntdll.dll specifically. This
is less intrusive, and ntdll is the only DLL affected by the problem
I know so far.
gdb/ChangeLog:
* windows-nat.c (handle_load_dll): Add comments.
(windows_ensure_ntdll_loaded): New function.
(do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
Add FIXME comment.
2013-11-20 18:43:20 +01:00
|
|
|
|
2010-01-27 20:57:54 +01:00
|
|
|
windows_initialization_done = 1;
|
gdb/
Rename and move inferior_thread_state and inferior_status.
* gdbthread.h (struct thread_control_state): New struct, move fields
step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
trap_expected, proceed_to_finish, in_infcall, step_over_calls,
stop_step and stop_bpstat here from struct thread_info.
(struct thread_suspend_state): New struct, move field stop_signal here
from struct thread_info.
(struct thread_info): Move the fields above from this struct.
* inferior.h: Move the inferior_thread_state and inferior_status
declarations comment to their definitions at infrun.c.
(struct inferior_control_state): New struct, move field stop_soon from
struct inferior here.
(struct inferior_suspend_state): New empty struct.
(struct inferior): New fields control and suspend. Move out field
stop_soon.
* infrun.c (struct inferior_thread_state): Rename to ...
(infcall_suspend_state): ... here. Replace field stop_signal by
fields thread_suspend and inferior_suspend.
(save_inferior_thread_state): Rename to ...
(save_infcall_suspend_state): ... here. New variable inf. Update the
code for new fields.
(restore_inferior_thread_state): Rename to ...
(restore_infcall_suspend_state): ... here. New variable inf. Update
the code for new fields.
(do_restore_inferior_thread_state_cleanup): Rename to ...
(do_restore_infcall_suspend_state_cleanup): ... here.
(make_cleanup_restore_inferior_thread_state): Rename to ...
(make_cleanup_restore_infcall_suspend_state): ... here.
(discard_inferior_thread_state): Rename to ...
(discard_infcall_suspend_state): ... here.
(get_inferior_thread_state_regcache): Rename to ...
(get_infcall_suspend_state_regcache): ... here.
(struct inferior_status): Rename to ...
(struct infcall_control_state): ... here. Replace fields
step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
trap_expected, proceed_to_finish, in_infcall, step_over_calls,
stop_step, stop_bpstat and stop_soon by fields thread_control and
inferior_control.
(save_inferior_status): Rename to ...
(save_infcall_control_state): ... here. Update the code for new
fields.
(restore_inferior_status): Rename to ...
(restore_infcall_control_state): ... here. Update the code for new
fields.
(do_restore_inferior_status_cleanup): Rename to ...
(do_restore_infcall_control_state_cleanup): ... here.
(make_cleanup_restore_inferior_status): Rename to ...
(make_cleanup_restore_infcall_control_state): ... here.
(discard_inferior_status): Rename to ...
(discard_infcall_control_state): ... here.
* alpha-tdep.c, breakpoint.c, dummy-frame.c, dummy-frame.h,
exceptions.c, fbsd-nat.c, gdbthread.h, infcall.c, infcmd.c,
inferior.c, inferior.h, infrun.c, linux-nat.c, mi/mi-interp.c,
mips-tdep.c, procfs.c, solib-irix.c, solib-osf.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, thread.c, windows-nat.c: Update all the
references to the moved fields and renamed functions.
2010-11-28 05:31:25 +01:00
|
|
|
inf->control.stop_soon = NO_STOP_QUIETLY;
|
2000-08-07 01:25:32 +02:00
|
|
|
stop_after_trap = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-01-10 21:14:02 +01:00
|
|
|
/* Try to set or remove a user privilege to the current process. Return -1
|
|
|
|
if that fails, the previous setting of that privilege otherwise.
|
|
|
|
|
|
|
|
This code is copied from the Cygwin source code and rearranged to allow
|
|
|
|
dynamically loading of the needed symbols from advapi32 which is only
|
2011-01-12 02:23:29 +01:00
|
|
|
available on NT/2K/XP. */
|
2003-01-10 21:14:02 +01:00
|
|
|
static int
|
|
|
|
set_process_privilege (const char *privilege, BOOL enable)
|
|
|
|
{
|
|
|
|
HANDLE token_hdl = NULL;
|
|
|
|
LUID restore_priv;
|
|
|
|
TOKEN_PRIVILEGES new_priv, orig_priv;
|
|
|
|
int ret = -1;
|
|
|
|
DWORD size;
|
|
|
|
|
|
|
|
if (!OpenProcessToken (GetCurrentProcess (),
|
|
|
|
TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES,
|
|
|
|
&token_hdl))
|
|
|
|
goto out;
|
|
|
|
|
2009-03-22 23:13:21 +01:00
|
|
|
if (!LookupPrivilegeValueA (NULL, privilege, &restore_priv))
|
2003-01-10 21:14:02 +01:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
new_priv.PrivilegeCount = 1;
|
|
|
|
new_priv.Privileges[0].Luid = restore_priv;
|
|
|
|
new_priv.Privileges[0].Attributes = enable ? SE_PRIVILEGE_ENABLED : 0;
|
|
|
|
|
|
|
|
if (!AdjustTokenPrivileges (token_hdl, FALSE, &new_priv,
|
2003-02-06 21:37:55 +01:00
|
|
|
sizeof orig_priv, &orig_priv, &size))
|
2003-01-10 21:14:02 +01:00
|
|
|
goto out;
|
|
|
|
#if 0
|
|
|
|
/* Disabled, otherwise every `attach' in an unprivileged user session
|
|
|
|
would raise the "Failed to get SE_DEBUG_NAME privilege" warning in
|
2011-01-12 02:23:29 +01:00
|
|
|
windows_attach(). */
|
2003-01-10 21:14:02 +01:00
|
|
|
/* AdjustTokenPrivileges returns TRUE even if the privilege could not
|
2011-01-12 02:23:29 +01:00
|
|
|
be enabled. GetLastError () returns an correct error code, though. */
|
2003-01-10 21:14:02 +01:00
|
|
|
if (enable && GetLastError () == ERROR_NOT_ALL_ASSIGNED)
|
|
|
|
goto out;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ret = orig_priv.Privileges[0].Attributes == SE_PRIVILEGE_ENABLED ? 1 : 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (token_hdl)
|
|
|
|
CloseHandle (token_hdl);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2001-10-26 11:29:31 +02:00
|
|
|
/* Attach to process PID, then initialize for debugging it. */
|
1995-10-09 22:54:26 +01:00
|
|
|
static void
|
2013-04-15 17:40:57 +02:00
|
|
|
windows_attach (struct target_ops *ops, const char *args, int from_tty)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
|
|
|
BOOL ok;
|
2001-03-18 22:35:58 +01:00
|
|
|
DWORD pid;
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2010-02-15 18:35:50 +01:00
|
|
|
pid = parse_pid_to_attach (args);
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2003-01-10 21:14:02 +01:00
|
|
|
if (set_process_privilege (SE_DEBUG_NAME, TRUE) < 0)
|
|
|
|
{
|
|
|
|
printf_unfiltered ("Warning: Failed to get SE_DEBUG_NAME privilege\n");
|
2011-01-12 02:23:29 +01:00
|
|
|
printf_unfiltered ("This can cause attach to "
|
|
|
|
"fail on Windows NT/2K/XP\n");
|
2003-01-10 21:14:02 +01:00
|
|
|
}
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_init_thread_list ();
|
2000-08-07 01:25:32 +02:00
|
|
|
ok = DebugActiveProcess (pid);
|
2002-11-23 03:49:45 +01:00
|
|
|
saw_create = 0;
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
1995-10-09 22:54:26 +01:00
|
|
|
if (!ok)
|
2003-01-30 02:39:52 +01:00
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Try fall back to Cygwin pid. */
|
2003-01-30 02:39:52 +01:00
|
|
|
pid = cygwin_internal (CW_CYGWIN_PID_TO_WINPID, pid);
|
|
|
|
|
|
|
|
if (pid > 0)
|
|
|
|
ok = DebugActiveProcess (pid);
|
2007-10-16 20:43:25 +02:00
|
|
|
}
|
|
|
|
#endif
|
2003-01-30 02:39:52 +01:00
|
|
|
|
2007-10-16 20:43:25 +02:00
|
|
|
if (!ok)
|
|
|
|
error (_("Can't attach to process."));
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
DebugSetProcessKillOnExit (FALSE);
|
2003-12-26 05:29:22 +01:00
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
if (from_tty)
|
|
|
|
{
|
|
|
|
char *exec_file = (char *) get_exec_file (0);
|
|
|
|
|
|
|
|
if (exec_file)
|
|
|
|
printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
|
2001-05-04 06:15:33 +02:00
|
|
|
target_pid_to_str (pid_to_ptid (pid)));
|
1995-10-09 22:54:26 +01:00
|
|
|
else
|
|
|
|
printf_unfiltered ("Attaching to %s\n",
|
2001-05-04 06:15:33 +02:00
|
|
|
target_pid_to_str (pid_to_ptid (pid)));
|
1995-10-09 22:54:26 +01:00
|
|
|
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
}
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
do_initial_windows_stuff (ops, pid, 1);
|
2000-08-07 01:25:32 +02:00
|
|
|
target_terminal_ours ();
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
constify to_detach
This patch constifies the target_ops method to_detach.
This is a small cleanup, but also, I think, a bug-prevention fix,
since gdb already acts as if the "args" argument here was const.
In particular, top.c:quit_force calls kill_or_detach via
iterate_over_inferiors. kill_or_detach calls target_detach, passing
the same argument each time. So, if one of these methods was not
const-correct, then kill_or_detach would change its behavior in a
strange way.
I could not build every target I modified in this patch. I've
inspected them all by hand, though. Many targets do not use the
"args" parameter; a couple pass it to atoi; and a few pass it on to
the to_detach method of the target beneath. The only code that
required a real change was in linux-nat.c, and that only needed the
introduction of a temporary variable for const-correctness.
2013-11-08 Tom Tromey <tromey@redhat.com>
* aix-thread.c (aix_thread_detach): Update.
* corelow.c (core_detach): Update.
* darwin-nat.c (darwin_detach): Update.
* dec-thread.c (dec_thread_detach): Update.
* gnu-nat.c (gnu_detach): Update.
* go32-nat.c (go32_detach): Update.
* inf-ptrace.c (inf_ptrace_detach): Update.
* inf-ttrace.c (inf_ttrace_detach): Update.
* linux-fork.c (linux_fork_detach): Update.
* linux-fork.h (linux_fork_detach): Update.
* linux-nat.c (linux_nat_detach): Update. Introduce "tem"
local for const-correctness.
* linux-thread-db.c (thread_db_detach): Update.
* monitor.c (monitor_detach): Update.
* nto-procfs.c (procfs_detach): Update.
* procfs.c (procfs_detach): Update.
* record.c (record_detach): Update.
* record.h (record_detach): Update.
* remote-m32r-sdi.c (m32r_detach): Update.
* remote-mips.c (mips_detach): Update.
* remote-sim.c (gdbsim_detach): Update.
* remote.c (remote_detach_1, remote_detach)
(extended_remote_detach): Update.
* sol-thread.c (sol_thread_detach): Update.
* target.c (target_detach): Make "args" const.
(init_dummy_target): Update.
* target.h (struct target_ops) <to_detach>: Make argument const.
(target_detach): Likewise.
* windows-nat.c (windows_detach): Update.
2013-03-19 16:23:17 +01:00
|
|
|
windows_detach (struct target_ops *ops, const char *args, int from_tty)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2001-10-26 11:29:31 +02:00
|
|
|
int detached = 1;
|
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
ptid_t ptid = {-1};
|
2012-05-24 18:51:47 +02:00
|
|
|
windows_resume (ops, ptid, 0, GDB_SIGNAL_0);
|
2007-04-19 21:35:24 +02:00
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
if (!DebugActiveProcessStop (current_event.dwProcessId))
|
|
|
|
{
|
2013-02-27 20:42:26 +01:00
|
|
|
error (_("Can't detach process %u (error %u)"),
|
|
|
|
(unsigned) current_event.dwProcessId, (unsigned) GetLastError ());
|
2009-03-22 22:27:30 +01:00
|
|
|
detached = 0;
|
2001-10-26 11:29:31 +02:00
|
|
|
}
|
2009-03-22 22:27:30 +01:00
|
|
|
DebugSetProcessKillOnExit (FALSE);
|
|
|
|
|
2001-10-26 11:29:31 +02:00
|
|
|
if (detached && from_tty)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
|
|
|
char *exec_file = get_exec_file (0);
|
|
|
|
if (exec_file == 0)
|
|
|
|
exec_file = "";
|
2013-02-27 20:42:26 +01:00
|
|
|
printf_unfiltered ("Detaching from program: %s, Pid %u\n", exec_file,
|
|
|
|
(unsigned) current_event.dwProcessId);
|
1995-10-09 22:54:26 +01:00
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
}
|
2008-09-22 17:16:51 +02:00
|
|
|
|
Rename 32- and 64-bit Intel files from "i386" to "x86"
This commit renames nine files that contain code used by both 32- and
64-bit Intel ports such that their names are prefixed with "x86"
rather than "i386". All types, functions and variables within these
files are likewise renamed such that their names are prefixed with
"x86" rather than "i386". This makes GDB follow the convention used
by gdbserver such that 32-bit Intel code lives in files called
"i386-*", 64-bit Intel code lives in files called "amd64-*", and code
for both 32- and 64-bit Intel lives in files called "x86-*".
This commit only renames OS-independent files. The Linux ports of
both GDB and gdbserver now follow the i386/amd64/x86 convention fully.
Some ports still use the old convention where "i386" in file/function/
type/variable names can mean "32-bit only" or "32- and 64-bit" but I
don't want to touch ports I can't fully test except where absolutely
necessary.
gdb/ChangeLog:
* i386-nat.h: Renamed as...
* x86-nat.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-nat.c: Renamed as...
* x86-nat.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* common/i386-xstate.h: Renamed as...
* common/x86-xstate.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-cpuid.h: Renamed as...
* nat/x86-cpuid.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-gcc-cpuid.h: Renamed as...
* nat/x86-gcc-cpuid.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-dregs.h: Renamed as...
* nat/x86-dregs.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-dregs.c: Renamed as...
* nat/x86-dregs.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
gdb/gdbserver/ChangeLog:
* i386-low.h: Renamed as...
* x86-low.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-low.c: Renamed as...
* x86-low.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
2014-08-19 16:16:11 +02:00
|
|
|
x86_cleanup_dregs ();
|
2001-05-04 06:15:33 +02:00
|
|
|
inferior_ptid = null_ptid;
|
2008-09-22 17:16:51 +02:00
|
|
|
detach_inferior (current_event.dwProcessId);
|
|
|
|
|
Allow making GDB not automatically connect to the native target.
Sometimes it's useful to be able to disable the automatic connection
to the native target. E.g., sometimes GDB disconnects from the
extended-remote target I was debugging, without me noticing it, and
then I do "run". That starts the program locally, and only after a
little head scratch session do I figure out the program is running
locally instead of remotely as intended. Same thing with "attach",
"info os", etc.
With the patch, we now can have this instead:
(gdb) set auto-connect-native-target off
(gdb) target extended-remote :9999
...
*gdb disconnects*
(gdb) run
Don't know how to run. Try "help target".
To still be able to connect to the native target with
auto-connect-native-target set to off, I've made "target native" work
instead of erroring out as today.
Before:
(gdb) target native
Use the "run" command to start a native process.
After:
(gdb) target native
Done. Use the "run" command to start a process.
(gdb) maint print target-stack
The current target stack is:
- native (Native process)
- exec (Local exec file)
- None (None)
(gdb) run
Starting program: ./a.out
...
I've also wanted this for the testsuite, when running against the
native-extended-gdbserver.exp board (runs against gdbserver in
extended-remote mode). With a non-native-target board, it's always a
bug to launch a program with the native target. Turns out we still
have one such case this patch catches:
(gdb) break main
Breakpoint 1 at 0x4009e5: file ../../../src/gdb/testsuite/gdb.base/coremaker.c, line 138.
(gdb) run
Don't know how to run. Try "help target".
(gdb) FAIL: gdb.base/corefile.exp: run: with core
On the patch itself, probably the least obvious bit is the need to go
through all targets, and move the unpush_target call to after the
generic_mourn_inferior call instead of before. This is what
inf-ptrace.c does too, ever since multi-process support was added.
The reason inf-ptrace.c does things in that order is that in the
current multi-process/single-target model, we shouldn't unpush the
target if there are still other live inferiors being debugged. The
check for that is "have_inferiors ()" (a misnomer nowadays...), which
does:
have_inferiors (void)
{
for (inf = inferior_list; inf; inf = inf->next)
if (inf->pid != 0)
return 1;
It's generic_mourn_inferior that ends up clearing inf->pid, so we need
to call it before the have_inferiors check. To make all native
targets behave the same WRT to explicit "target native", I've added an
inf_child_maybe_unpush_target function that targets call instead of
calling unpush_target directly, and as that includes the
have_inferiors check, I needed to adjust the targets.
Tested on x86_64 Fedora 20, native, and also with the
extended-gdbserver board.
Confirmed a cross build of djgpp gdb still builds.
Smoke tested a cross build of Windows gdb under Wine.
Untested otherwise.
gdb/
2014-05-21 Pedro Alves <palves@redhat.com>
* inf-child.c (inf_child_ops, inf_child_explicitly_opened): New
globals.
(inf_child_open_target): New function.
(inf_child_open): Use inf_child_open_target to push the target
instead of erroring out.
(inf_child_disconnect, inf_child_close)
(inf_child_maybe_unpush_target): New functions.
(inf_child_target): Install inf_child_disconnect and
inf_child_close. Store a pointer to the returned object.
* inf-child.h (inf_child_open_target, inf_child_maybe_unpush): New
declarations.
* target.c (auto_connect_native_target): New global.
(show_default_run_target): New function.
(find_default_run_target): Return NULL if automatically connecting
to the native target is disabled.
(_initialize_target): Install set/show auto-connect-native-target.
* NEWS: Mention "set auto-connect-native-target", and "target
native".
* linux-nat.c (super_close): New global.
(linux_nat_close): Call super_close.
(linux_nat_add_target): Store a pointer to the base class's
to_close method.
* inf-ptrace.c (inf_ptrace_mourn_inferior, inf_ptrace_detach): Use
inf_child_maybe_unpush.
* inf-ttrace.c (inf_ttrace_him): Don't push the target if it is
already pushed.
(inf_ttrace_mourn_inferior): Only unpush the target after mourning
the inferior. Use inf_child_maybe_unpush_target.
(inf_ttrace_attach): Don't push the target if it is already
pushed.
(inf_ttrace_detach): Use inf_child_maybe_unpush_target.
* darwin-nat.c (darwin_mourn_inferior): Only unpush the target
after mourning the inferior. Use inf_child_maybe_unpush_target.
(darwin_attach_pid): Don't push the target if it is already
pushed.
* gnu-nat.c (gnu_mourn_inferior): Only unpush the target after
mourning the inferior. Use inf_child_maybe_unpush_target.
(gnu_detach): Use inf_child_maybe_unpush_target.
* go32-nat.c (go32_create_inferior): Don't push the target if it
is already pushed.
(go32_mourn_inferior): Use inf_child_maybe_unpush_target.
* nto-procfs.c (procfs_is_nto_target): Adjust comment.
(procfs_open): Rename to ...
(procfs_open_1): ... this. Add target_ops parameter. Adjust
comments. Can target_preopen before changing node. Call
inf_child_open_target to push the target explicitly.
(procfs_attach): Don't push the target if it is already pushed.
(procfs_detach): Use inf_child_maybe_unpush_target.
(procfs_create_inferior): Don't push the target if it is already
pushed.
(nto_native_ops): New global.
(procfs_open): Reimplement.
(procfs_native_open): New function.
(init_procfs_targets): Install procfs_native_open as to_open of
"target native". Store a pointer to the "native" target in
nto_native_ops.
* procfs.c (procfs_attach): Don't push the target if it is already
pushed.
(procfs_detach): Use inf_child_maybe_unpush_target.
(procfs_mourn_inferior): Only unpush the target after mourning the
inferior. Use inf_child_maybe_unpush_target.
(procfs_init_inferior): Don't push the target if it is already
pushed.
* windows-nat.c (do_initial_windows_stuff): Don't push the target
if it is already pushed.
(windows_detach): Use inf_child_maybe_unpush_target.
(windows_mourn_inferior): Only unpush the target after mourning
the inferior. Use inf_child_maybe_unpush_target.
gdb/doc/
2014-05-21 Pedro Alves <palves@redhat.com>
* gdb.texinfo (Starting): Document "set/show
auto-connect-native-target".
(Target Commands): Document "target native".
gdb/testsuite/
2014-05-21 Pedro Alves <palves@redhat.com>
* boards/gdbserver-base.exp (GDBFLAGS): Set to "set
auto-connect-native-target off".
* gdb.base/auto-connect-native-target.c: New file.
* gdb.base/auto-connect-native-target.exp: New file.
2014-05-21 19:30:47 +02:00
|
|
|
inf_child_maybe_unpush_target (ops);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
2014-02-03 12:10:48 +01:00
|
|
|
/* Try to determine the executable filename.
|
|
|
|
|
|
|
|
EXE_NAME_RET is a pointer to a buffer whose size is EXE_NAME_MAX_LEN.
|
|
|
|
|
|
|
|
Upon success, the filename is stored inside EXE_NAME_RET, and
|
|
|
|
this function returns nonzero.
|
|
|
|
|
|
|
|
Otherwise, this function returns zero and the contents of
|
|
|
|
EXE_NAME_RET is undefined. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
windows_get_exec_module_filename (char *exe_name_ret, size_t exe_name_max_len)
|
|
|
|
{
|
|
|
|
DWORD len;
|
|
|
|
HMODULE dh_buf;
|
|
|
|
DWORD cbNeeded;
|
|
|
|
|
|
|
|
cbNeeded = 0;
|
|
|
|
if (!EnumProcessModules (current_process_handle, &dh_buf,
|
|
|
|
sizeof (HMODULE), &cbNeeded) || !cbNeeded)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* We know the executable is always first in the list of modules,
|
|
|
|
which we just fetched. So no need to fetch more. */
|
|
|
|
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
{
|
|
|
|
/* Cygwin prefers that the path be in /x/y/z format, so extract
|
|
|
|
the filename into a temporary buffer first, and then convert it
|
|
|
|
to POSIX format into the destination buffer. */
|
|
|
|
cygwin_buf_t *pathbuf = alloca (exe_name_max_len * sizeof (cygwin_buf_t));
|
|
|
|
|
|
|
|
len = GetModuleFileNameEx (current_process_handle,
|
|
|
|
dh_buf, pathbuf, exe_name_max_len);
|
|
|
|
if (len == 0)
|
|
|
|
error (_("Error getting executable filename: %u."),
|
|
|
|
(unsigned) GetLastError ());
|
|
|
|
if (cygwin_conv_path (CCP_WIN_W_TO_POSIX, pathbuf, exe_name_ret,
|
|
|
|
exe_name_max_len) < 0)
|
|
|
|
error (_("Error converting executable filename to POSIX: %d."), errno);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
len = GetModuleFileNameEx (current_process_handle,
|
|
|
|
dh_buf, exe_name_ret, exe_name_max_len);
|
|
|
|
if (len == 0)
|
|
|
|
error (_("Error getting executable filename: %u."),
|
|
|
|
(unsigned) GetLastError ());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 1; /* success */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The pid_to_exec_file target_ops method for this platform. */
|
|
|
|
|
2005-10-31 23:50:58 +01:00
|
|
|
static char *
|
2013-12-18 05:35:01 +01:00
|
|
|
windows_pid_to_exec_file (struct target_ops *self, int pid)
|
2004-06-29 17:37:31 +02:00
|
|
|
{
|
2010-03-06 20:27:09 +01:00
|
|
|
static char path[__PMAX];
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Try to find exe name as symlink target of /proc/<pid>/exe. */
|
2008-01-01 19:42:08 +01:00
|
|
|
int nchars;
|
|
|
|
char procexe[sizeof ("/proc/4294967295/exe")];
|
2012-11-13 10:46:11 +01:00
|
|
|
|
|
|
|
xsnprintf (procexe, sizeof (procexe), "/proc/%u/exe", pid);
|
2008-01-01 19:42:08 +01:00
|
|
|
nchars = readlink (procexe, path, sizeof(path));
|
|
|
|
if (nchars > 0 && nchars < sizeof (path))
|
2004-06-29 17:37:31 +02:00
|
|
|
{
|
2008-01-01 19:42:08 +01:00
|
|
|
path[nchars] = '\0'; /* Got it */
|
|
|
|
return path;
|
2004-06-29 17:37:31 +02:00
|
|
|
}
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
|
|
|
|
2008-01-01 19:42:08 +01:00
|
|
|
/* If we get here then either Cygwin is hosed, this isn't a Cygwin version
|
2011-01-12 02:23:29 +01:00
|
|
|
of gdb, or we're trying to debug a non-Cygwin windows executable. */
|
2014-02-03 12:10:48 +01:00
|
|
|
if (!windows_get_exec_module_filename (path, sizeof (path)))
|
2008-01-01 19:42:08 +01:00
|
|
|
path[0] = '\0';
|
|
|
|
|
|
|
|
return path;
|
2004-06-29 17:37:31 +02:00
|
|
|
}
|
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
/* Print status information about what we're accessing. */
|
|
|
|
|
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_files_info (struct target_ops *ignore)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2008-09-22 17:21:30 +02:00
|
|
|
struct inferior *inf = current_inferior ();
|
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
printf_unfiltered ("\tUsing the running image of %s %s.\n",
|
2008-09-22 17:21:30 +02:00
|
|
|
inf->attach_flag ? "attached" : "child",
|
|
|
|
target_pid_to_str (inferior_ptid));
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
2010-05-31 09:00:41 +02:00
|
|
|
/* Modify CreateProcess parameters for use of a new separate console.
|
|
|
|
Parameters are:
|
|
|
|
*FLAGS: DWORD parameter for general process creation flags.
|
|
|
|
*SI: STARTUPINFO structure, for which the console window size and
|
|
|
|
console buffer size is filled in if GDB is running in a console.
|
|
|
|
to create the new console.
|
|
|
|
The size of the used font is not available on all versions of
|
|
|
|
Windows OS. Furthermore, the current font might not be the default
|
|
|
|
font, but this is still better than before.
|
|
|
|
If the windows and buffer sizes are computed,
|
|
|
|
SI->DWFLAGS is changed so that this information is used
|
|
|
|
by CreateProcess function. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
windows_set_console_info (STARTUPINFO *si, DWORD *flags)
|
|
|
|
{
|
|
|
|
HANDLE hconsole = CreateFile ("CONOUT$", GENERIC_READ | GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
|
|
|
|
|
|
|
|
if (hconsole != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO sbinfo;
|
|
|
|
COORD font_size;
|
|
|
|
CONSOLE_FONT_INFO cfi;
|
|
|
|
|
|
|
|
GetCurrentConsoleFont (hconsole, FALSE, &cfi);
|
|
|
|
font_size = GetConsoleFontSize (hconsole, cfi.nFont);
|
|
|
|
GetConsoleScreenBufferInfo(hconsole, &sbinfo);
|
|
|
|
si->dwXSize = sbinfo.srWindow.Right - sbinfo.srWindow.Left + 1;
|
|
|
|
si->dwYSize = sbinfo.srWindow.Bottom - sbinfo.srWindow.Top + 1;
|
|
|
|
if (font_size.X)
|
|
|
|
si->dwXSize *= font_size.X;
|
|
|
|
else
|
|
|
|
si->dwXSize *= 8;
|
|
|
|
if (font_size.Y)
|
|
|
|
si->dwYSize *= font_size.Y;
|
|
|
|
else
|
|
|
|
si->dwYSize *= 12;
|
|
|
|
si->dwXCountChars = sbinfo.dwSize.X;
|
|
|
|
si->dwYCountChars = sbinfo.dwSize.Y;
|
|
|
|
si->dwFlags |= STARTF_USESIZE | STARTF_USECOUNTCHARS;
|
|
|
|
}
|
|
|
|
*flags |= CREATE_NEW_CONSOLE;
|
|
|
|
}
|
|
|
|
|
2011-09-28 11:07:54 +02:00
|
|
|
#ifndef __CYGWIN__
|
|
|
|
/* Function called by qsort to sort environment strings. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
envvar_cmp (const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const char **p = (const char **) a;
|
|
|
|
const char **q = (const char **) b;
|
|
|
|
return strcasecmp (*p, *q);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-10-07 15:52:11 +02:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
static void
|
|
|
|
clear_win32_environment (char **env)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
size_t len;
|
|
|
|
wchar_t *copy = NULL, *equalpos;
|
|
|
|
|
|
|
|
for (i = 0; env[i] && *env[i]; i++)
|
|
|
|
{
|
|
|
|
len = mbstowcs (NULL, env[i], 0) + 1;
|
|
|
|
copy = (wchar_t *) xrealloc (copy, len * sizeof (wchar_t));
|
|
|
|
mbstowcs (copy, env[i], len);
|
|
|
|
equalpos = wcschr (copy, L'=');
|
|
|
|
if (equalpos)
|
|
|
|
*equalpos = L'\0';
|
|
|
|
SetEnvironmentVariableW (copy, NULL);
|
|
|
|
}
|
|
|
|
xfree (copy);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
/* Start an inferior windows child process and sets inferior_ptid to its pid.
|
1995-10-09 22:54:26 +01:00
|
|
|
EXEC_FILE is the file to run.
|
|
|
|
ALLARGS is a string containing the arguments to the program.
|
|
|
|
ENV is the environment vector to pass. Errors reported with error(). */
|
|
|
|
|
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_create_inferior (struct target_ops *ops, char *exec_file,
|
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
|
|
|
char *allargs, char **in_env, int from_tty)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2010-03-06 20:27:09 +01:00
|
|
|
STARTUPINFO si;
|
2009-03-08 22:01:52 +01:00
|
|
|
#ifdef __CYGWIN__
|
2010-03-06 20:27:09 +01:00
|
|
|
cygwin_buf_t real_path[__PMAX];
|
|
|
|
cygwin_buf_t shell[__PMAX]; /* Path to shell */
|
2010-03-01 10:09:24 +01:00
|
|
|
const char *sh;
|
2010-03-06 20:27:09 +01:00
|
|
|
cygwin_buf_t *toexec;
|
|
|
|
cygwin_buf_t *cygallargs;
|
|
|
|
cygwin_buf_t *args;
|
2011-10-07 15:52:11 +02:00
|
|
|
char **old_env = NULL;
|
|
|
|
PWCHAR w32_env;
|
2010-03-01 10:09:24 +01:00
|
|
|
size_t len;
|
2002-09-14 05:28:23 +02:00
|
|
|
int tty;
|
|
|
|
int ostdin, ostdout, ostderr;
|
2009-03-08 22:01:52 +01:00
|
|
|
#else
|
2010-03-06 20:27:09 +01:00
|
|
|
char real_path[__PMAX];
|
|
|
|
char shell[__PMAX]; /* Path to shell */
|
2010-03-01 10:09:24 +01:00
|
|
|
char *toexec;
|
|
|
|
char *args;
|
2012-10-24 15:40:16 +02:00
|
|
|
size_t args_len;
|
2009-03-08 22:01:52 +01:00
|
|
|
HANDLE tty;
|
2011-09-28 11:07:54 +02:00
|
|
|
char *w32env;
|
|
|
|
char *temp;
|
|
|
|
size_t envlen;
|
|
|
|
int i;
|
|
|
|
size_t envsize;
|
|
|
|
char **env;
|
2009-03-08 22:01:52 +01:00
|
|
|
#endif
|
2010-03-01 10:09:24 +01:00
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
BOOL ret;
|
|
|
|
DWORD flags = 0;
|
2005-07-06 16:54:37 +02:00
|
|
|
const char *inferior_io_terminal = get_inferior_io_terminal ();
|
1995-10-09 22:54:26 +01:00
|
|
|
|
|
|
|
if (!exec_file)
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
error (_("No executable specified, use `target exec'."));
|
1995-10-09 22:54:26 +01:00
|
|
|
|
|
|
|
memset (&si, 0, sizeof (si));
|
|
|
|
si.cb = sizeof (si);
|
|
|
|
|
2010-03-01 10:09:24 +01:00
|
|
|
if (new_group)
|
|
|
|
flags |= CREATE_NEW_PROCESS_GROUP;
|
|
|
|
|
|
|
|
if (new_console)
|
2010-05-31 09:00:41 +02:00
|
|
|
windows_set_console_info (&si, &flags);
|
2010-03-01 10:09:24 +01:00
|
|
|
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2002-03-22 06:03:22 +01:00
|
|
|
if (!useshell)
|
2002-02-16 03:33:24 +01:00
|
|
|
{
|
2010-03-01 10:09:24 +01:00
|
|
|
flags |= DEBUG_ONLY_THIS_PROCESS;
|
|
|
|
if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, exec_file, real_path,
|
2010-03-06 20:27:09 +01:00
|
|
|
__PMAX * sizeof (cygwin_buf_t)) < 0)
|
2010-03-01 10:09:24 +01:00
|
|
|
error (_("Error starting executable: %d"), errno);
|
2002-02-16 03:33:24 +01:00
|
|
|
toexec = real_path;
|
2010-03-06 20:27:09 +01:00
|
|
|
#ifdef __USEWIDE
|
2010-03-01 10:09:24 +01:00
|
|
|
len = mbstowcs (NULL, allargs, 0) + 1;
|
|
|
|
if (len == (size_t) -1)
|
|
|
|
error (_("Error starting executable: %d"), errno);
|
|
|
|
cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
|
|
|
|
mbstowcs (cygallargs, allargs, len);
|
2010-03-09 20:10:39 +01:00
|
|
|
#else
|
|
|
|
cygallargs = allargs;
|
2010-03-06 20:27:09 +01:00
|
|
|
#endif
|
2002-02-16 03:33:24 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-03-22 06:03:22 +01:00
|
|
|
sh = getenv ("SHELL");
|
|
|
|
if (!sh)
|
|
|
|
sh = "/bin/sh";
|
2010-03-06 20:27:09 +01:00
|
|
|
if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, sh, shell, __PMAX) < 0)
|
2010-03-01 10:09:24 +01:00
|
|
|
error (_("Error starting executable via shell: %d"), errno);
|
2010-03-06 20:27:09 +01:00
|
|
|
#ifdef __USEWIDE
|
2010-03-01 10:09:24 +01:00
|
|
|
len = sizeof (L" -c 'exec '") + mbstowcs (NULL, exec_file, 0)
|
|
|
|
+ mbstowcs (NULL, allargs, 0) + 2;
|
|
|
|
cygallargs = (wchar_t *) alloca (len * sizeof (wchar_t));
|
|
|
|
swprintf (cygallargs, len, L" -c 'exec %s %s'", exec_file, allargs);
|
2010-03-06 20:27:09 +01:00
|
|
|
#else
|
2012-11-13 10:46:11 +01:00
|
|
|
len = (sizeof (" -c 'exec '") + strlen (exec_file)
|
|
|
|
+ strlen (allargs) + 2);
|
|
|
|
cygallargs = (char *) alloca (len);
|
|
|
|
xsnprintf (cygallargs, len, " -c 'exec %s %s'", exec_file, allargs);
|
2010-03-06 20:27:09 +01:00
|
|
|
#endif
|
2002-02-16 03:33:24 +01:00
|
|
|
toexec = shell;
|
2010-03-01 10:09:24 +01:00
|
|
|
flags |= DEBUG_PROCESS;
|
2002-02-16 03:33:24 +01:00
|
|
|
}
|
2010-03-06 20:27:09 +01:00
|
|
|
|
|
|
|
#ifdef __USEWIDE
|
|
|
|
args = (cygwin_buf_t *) alloca ((wcslen (toexec) + wcslen (cygallargs) + 2)
|
|
|
|
* sizeof (wchar_t));
|
2010-03-01 10:09:24 +01:00
|
|
|
wcscpy (args, toexec);
|
|
|
|
wcscat (args, L" ");
|
|
|
|
wcscat (args, cygallargs);
|
2010-03-06 20:27:09 +01:00
|
|
|
#else
|
|
|
|
args = (cygwin_buf_t *) alloca (strlen (toexec) + strlen (cygallargs) + 2);
|
|
|
|
strcpy (args, toexec);
|
|
|
|
strcat (args, " ");
|
|
|
|
strcat (args, cygallargs);
|
|
|
|
#endif
|
|
|
|
|
2011-10-07 15:52:11 +02:00
|
|
|
#ifdef CW_CVT_ENV_TO_WINENV
|
|
|
|
/* First try to create a direct Win32 copy of the POSIX environment. */
|
|
|
|
w32_env = (PWCHAR) cygwin_internal (CW_CVT_ENV_TO_WINENV, in_env);
|
|
|
|
if (w32_env != (PWCHAR) -1)
|
|
|
|
flags |= CREATE_UNICODE_ENVIRONMENT;
|
|
|
|
else
|
|
|
|
/* If that fails, fall back to old method tweaking GDB's environment. */
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Reset all Win32 environment variables to avoid leftover on next run. */
|
|
|
|
clear_win32_environment (environ);
|
|
|
|
/* Prepare the environment vars for CreateProcess. */
|
|
|
|
old_env = environ;
|
|
|
|
environ = in_env;
|
|
|
|
cygwin_internal (CW_SYNC_WINENV);
|
|
|
|
w32_env = NULL;
|
|
|
|
}
|
1996-01-04 20:07:28 +01:00
|
|
|
|
2002-09-14 05:28:23 +02:00
|
|
|
if (!inferior_io_terminal)
|
|
|
|
tty = ostdin = ostdout = ostderr = -1;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tty = open (inferior_io_terminal, O_RDWR | O_NOCTTY);
|
|
|
|
if (tty < 0)
|
|
|
|
{
|
|
|
|
print_sys_errmsg (inferior_io_terminal, errno);
|
|
|
|
ostdin = ostdout = ostderr = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ostdin = dup (0);
|
|
|
|
ostdout = dup (1);
|
|
|
|
ostderr = dup (2);
|
|
|
|
dup2 (tty, 0);
|
|
|
|
dup2 (tty, 1);
|
|
|
|
dup2 (tty, 2);
|
|
|
|
}
|
|
|
|
}
|
2010-03-01 10:09:24 +01:00
|
|
|
|
|
|
|
windows_init_thread_list ();
|
2010-03-06 20:27:09 +01:00
|
|
|
ret = CreateProcess (0,
|
|
|
|
args, /* command line */
|
|
|
|
NULL, /* Security */
|
|
|
|
NULL, /* thread */
|
|
|
|
TRUE, /* inherit handles */
|
|
|
|
flags, /* start flags */
|
2011-10-07 15:52:11 +02:00
|
|
|
w32_env, /* environment */
|
2010-03-06 20:27:09 +01:00
|
|
|
NULL, /* current directory */
|
|
|
|
&si,
|
|
|
|
&pi);
|
2011-10-07 15:52:11 +02:00
|
|
|
if (w32_env)
|
|
|
|
/* Just free the Win32 environment, if it could be created. */
|
|
|
|
free (w32_env);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Reset all environment variables to avoid leftover on next run. */
|
|
|
|
clear_win32_environment (in_env);
|
|
|
|
/* Restore normal GDB environment variables. */
|
|
|
|
environ = old_env;
|
|
|
|
cygwin_internal (CW_SYNC_WINENV);
|
|
|
|
}
|
|
|
|
|
2010-03-01 10:09:24 +01:00
|
|
|
if (tty >= 0)
|
|
|
|
{
|
|
|
|
close (tty);
|
|
|
|
dup2 (ostdin, 0);
|
|
|
|
dup2 (ostdout, 1);
|
|
|
|
dup2 (ostderr, 2);
|
|
|
|
close (ostdin);
|
|
|
|
close (ostdout);
|
|
|
|
close (ostderr);
|
|
|
|
}
|
2009-03-08 22:01:52 +01:00
|
|
|
#else
|
2010-03-06 20:27:09 +01:00
|
|
|
toexec = exec_file;
|
2012-10-24 15:40:16 +02:00
|
|
|
/* Build the command line, a space-separated list of tokens where
|
|
|
|
the first token is the name of the module to be executed.
|
|
|
|
To avoid ambiguities introduced by spaces in the module name,
|
|
|
|
we quote it. */
|
|
|
|
args_len = strlen (toexec) + 2 /* quotes */ + strlen (allargs) + 2;
|
|
|
|
args = alloca (args_len);
|
|
|
|
xsnprintf (args, args_len, "\"%s\" %s", toexec, allargs);
|
2010-03-01 10:09:24 +01:00
|
|
|
|
|
|
|
flags |= DEBUG_ONLY_THIS_PROCESS;
|
|
|
|
|
2009-03-08 22:01:52 +01:00
|
|
|
if (!inferior_io_terminal)
|
|
|
|
tty = INVALID_HANDLE_VALUE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SECURITY_ATTRIBUTES sa;
|
|
|
|
sa.nLength = sizeof(sa);
|
|
|
|
sa.lpSecurityDescriptor = 0;
|
|
|
|
sa.bInheritHandle = TRUE;
|
|
|
|
tty = CreateFileA (inferior_io_terminal, GENERIC_READ | GENERIC_WRITE,
|
|
|
|
0, &sa, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
|
|
|
|
if (tty == INVALID_HANDLE_VALUE)
|
|
|
|
warning (_("Warning: Failed to open TTY %s, error %#x."),
|
|
|
|
inferior_io_terminal, (unsigned) GetLastError ());
|
|
|
|
else
|
|
|
|
{
|
|
|
|
si.hStdInput = tty;
|
|
|
|
si.hStdOutput = tty;
|
|
|
|
si.hStdError = tty;
|
|
|
|
si.dwFlags |= STARTF_USESTDHANDLES;
|
|
|
|
}
|
|
|
|
}
|
2002-09-14 05:28:23 +02:00
|
|
|
|
2011-09-28 11:07:54 +02:00
|
|
|
/* CreateProcess takes the environment list as a null terminated set of
|
|
|
|
strings (i.e. two nulls terminate the list). */
|
|
|
|
|
|
|
|
/* Get total size for env strings. */
|
|
|
|
for (envlen = 0, i = 0; in_env[i] && *in_env[i]; i++)
|
|
|
|
envlen += strlen (in_env[i]) + 1;
|
|
|
|
|
|
|
|
envsize = sizeof (in_env[0]) * (i + 1);
|
|
|
|
env = (char **) alloca (envsize);
|
|
|
|
memcpy (env, in_env, envsize);
|
|
|
|
/* Windows programs expect the environment block to be sorted. */
|
|
|
|
qsort (env, i, sizeof (char *), envvar_cmp);
|
|
|
|
|
|
|
|
w32env = alloca (envlen + 1);
|
|
|
|
|
|
|
|
/* Copy env strings into new buffer. */
|
|
|
|
for (temp = w32env, i = 0; env[i] && *env[i]; i++)
|
|
|
|
{
|
|
|
|
strcpy (temp, env[i]);
|
|
|
|
temp += strlen (temp) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Final nil string to terminate new env. */
|
|
|
|
*temp = 0;
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_init_thread_list ();
|
2010-03-01 10:09:24 +01:00
|
|
|
ret = CreateProcessA (0,
|
|
|
|
args, /* command line */
|
|
|
|
NULL, /* Security */
|
|
|
|
NULL, /* thread */
|
|
|
|
TRUE, /* inherit handles */
|
|
|
|
flags, /* start flags */
|
2011-09-28 11:07:54 +02:00
|
|
|
w32env, /* environment */
|
2010-03-01 10:09:24 +01:00
|
|
|
NULL, /* current directory */
|
|
|
|
&si,
|
|
|
|
&pi);
|
2009-03-08 22:01:52 +01:00
|
|
|
if (tty != INVALID_HANDLE_VALUE)
|
|
|
|
CloseHandle (tty);
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
2002-09-14 05:28:23 +02:00
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
if (!ret)
|
2013-02-27 20:42:26 +01:00
|
|
|
error (_("Error creating process %s, (error %u)."),
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
exec_file, (unsigned) GetLastError ());
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2008-01-14 09:01:15 +01:00
|
|
|
CloseHandle (pi.hThread);
|
|
|
|
CloseHandle (pi.hProcess);
|
|
|
|
|
2002-02-16 03:33:24 +01:00
|
|
|
if (useshell && shell[0] != '\0')
|
|
|
|
saw_create = -1;
|
|
|
|
else
|
|
|
|
saw_create = 0;
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
do_initial_windows_stuff (ops, pi.dwProcessId, 0);
|
1999-12-22 22:45:11 +01:00
|
|
|
|
2014-04-19 10:12:19 +02:00
|
|
|
/* windows_continue (DBG_CONTINUE, -1, 0); */
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_mourn_inferior (struct target_ops *ops)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2014-04-19 10:12:19 +02:00
|
|
|
(void) windows_continue (DBG_CONTINUE, -1, 0);
|
Rename 32- and 64-bit Intel files from "i386" to "x86"
This commit renames nine files that contain code used by both 32- and
64-bit Intel ports such that their names are prefixed with "x86"
rather than "i386". All types, functions and variables within these
files are likewise renamed such that their names are prefixed with
"x86" rather than "i386". This makes GDB follow the convention used
by gdbserver such that 32-bit Intel code lives in files called
"i386-*", 64-bit Intel code lives in files called "amd64-*", and code
for both 32- and 64-bit Intel lives in files called "x86-*".
This commit only renames OS-independent files. The Linux ports of
both GDB and gdbserver now follow the i386/amd64/x86 convention fully.
Some ports still use the old convention where "i386" in file/function/
type/variable names can mean "32-bit only" or "32- and 64-bit" but I
don't want to touch ports I can't fully test except where absolutely
necessary.
gdb/ChangeLog:
* i386-nat.h: Renamed as...
* x86-nat.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-nat.c: Renamed as...
* x86-nat.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* common/i386-xstate.h: Renamed as...
* common/x86-xstate.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-cpuid.h: Renamed as...
* nat/x86-cpuid.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-gcc-cpuid.h: Renamed as...
* nat/x86-gcc-cpuid.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-dregs.h: Renamed as...
* nat/x86-dregs.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-dregs.c: Renamed as...
* nat/x86-dregs.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
gdb/gdbserver/ChangeLog:
* i386-low.h: Renamed as...
* x86-low.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-low.c: Renamed as...
* x86-low.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
2014-08-19 16:16:11 +02:00
|
|
|
x86_cleanup_dregs();
|
2007-12-02 06:45:08 +01:00
|
|
|
if (open_process_used)
|
|
|
|
{
|
|
|
|
CHECK (CloseHandle (current_process_handle));
|
|
|
|
open_process_used = 0;
|
|
|
|
}
|
2014-05-21 23:28:23 +02:00
|
|
|
inf_child_mourn_inferior (ops);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Send a SIGINT to the process group. This acts just like the user typed a
|
2011-01-12 02:23:29 +01:00
|
|
|
^C on the controlling terminal. */
|
1995-10-09 22:54:26 +01:00
|
|
|
|
1996-07-26 05:01:51 +02:00
|
|
|
static void
|
2013-12-18 05:34:36 +01:00
|
|
|
windows_stop (struct target_ops *self, ptid_t ptid)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
1996-03-11 20:08:57 +01:00
|
|
|
DEBUG_EVENTS (("gdb: GenerateConsoleCtrlEvent (CTRLC_EVENT, 0)\n"));
|
1999-12-07 04:56:07 +01:00
|
|
|
CHECK (GenerateConsoleCtrlEvent (CTRL_C_EVENT, current_event.dwProcessId));
|
1999-07-07 22:11:14 +02:00
|
|
|
registers_changed (); /* refresh register state */
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
2013-08-27 13:36:09 +02:00
|
|
|
/* Helper for windows_xfer_partial that handles memory transfers.
|
|
|
|
Arguments are like target_xfer_partial. */
|
|
|
|
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
static enum target_xfer_status
|
2013-08-27 13:36:09 +02:00
|
|
|
windows_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2009-01-09 11:43:37 +01:00
|
|
|
SIZE_T done = 0;
|
2013-08-27 13:36:09 +02:00
|
|
|
BOOL success;
|
2013-09-02 14:57:49 +02:00
|
|
|
DWORD lasterror = 0;
|
2013-08-27 13:36:09 +02:00
|
|
|
|
|
|
|
if (writebuf != NULL)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2013-09-02 14:45:55 +02:00
|
|
|
DEBUG_MEM (("gdb: write target memory, %s bytes at %s\n",
|
2014-01-03 14:11:46 +01:00
|
|
|
pulongest (len), core_addr_to_string (memaddr)));
|
2013-08-27 13:36:09 +02:00
|
|
|
success = WriteProcessMemory (current_process_handle,
|
|
|
|
(LPVOID) (uintptr_t) memaddr, writebuf,
|
|
|
|
len, &done);
|
2013-09-02 14:57:49 +02:00
|
|
|
if (!success)
|
2013-09-02 15:11:13 +02:00
|
|
|
lasterror = GetLastError ();
|
2009-03-22 22:27:30 +01:00
|
|
|
FlushInstructionCache (current_process_handle,
|
2007-12-06 12:17:03 +01:00
|
|
|
(LPCVOID) (uintptr_t) memaddr, len);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-02 14:45:55 +02:00
|
|
|
DEBUG_MEM (("gdb: read target memory, %s bytes at %s\n",
|
2014-01-03 14:11:46 +01:00
|
|
|
pulongest (len), core_addr_to_string (memaddr)));
|
2013-08-27 13:36:09 +02:00
|
|
|
success = ReadProcessMemory (current_process_handle,
|
|
|
|
(LPCVOID) (uintptr_t) memaddr, readbuf,
|
|
|
|
len, &done);
|
2013-09-02 14:57:49 +02:00
|
|
|
if (!success)
|
2013-09-02 15:11:13 +02:00
|
|
|
lasterror = GetLastError ();
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
*xfered_len = (ULONGEST) done;
|
2013-09-02 14:57:49 +02:00
|
|
|
if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
return TARGET_XFER_OK;
|
2013-09-02 14:57:49 +02:00
|
|
|
else
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
return success ? TARGET_XFER_OK : TARGET_XFER_E_IO;
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
2005-10-31 23:50:58 +01:00
|
|
|
static void
|
Add a target_ops parameter to the to_kill method in struct target_ops.
* target.h (struct target_ops): Add a "target_ops *" parameter to
method to_kill.
(target_kill): Remove macro. Add declaration.
* target.c (debug_to_kill): Delete, no longer necessary.
(target_kill): New function.
(update_current_target): Stop inheriting the to_kill method.
Do not de_fault it to no_process either.
(setup_target_debug): Do not set current_target.to_kill.
* gnu-nat.c, go32-nat.c, hpux-thread.c, inf-ptrace.c, inf-ttrace.c,
linux-nat.c, monitor.c, nto-procfs.c, procfs.c, remote-m32r-sdi.c,
remote-mips.c, remote-sim.c, remote.c, windows-nat.c: Update
accordingly.
2009-03-17 20:28:09 +01:00
|
|
|
windows_kill_inferior (struct target_ops *ops)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
1998-11-05 15:08:48 +01:00
|
|
|
CHECK (TerminateProcess (current_process_handle, 0));
|
|
|
|
|
1998-01-19 19:38:51 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2014-04-19 10:12:19 +02:00
|
|
|
if (!windows_continue (DBG_CONTINUE, -1, 1))
|
1998-01-19 19:38:51 +01:00
|
|
|
break;
|
1998-11-05 15:08:48 +01:00
|
|
|
if (!WaitForDebugEvent (¤t_event, INFINITE))
|
1998-01-19 19:38:51 +01:00
|
|
|
break;
|
1998-11-05 15:08:48 +01:00
|
|
|
if (current_event.dwDebugEventCode == EXIT_PROCESS_DEBUG_EVENT)
|
1998-01-19 19:38:51 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
target_mourn_inferior (); /* Or just windows_mourn_inferior? */
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-12-18 05:27:56 +01:00
|
|
|
windows_close (struct target_ops *self)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2009-01-13 05:14:07 +01:00
|
|
|
DEBUG_EVENTS (("gdb: windows_close, inferior_ptid=%d\n",
|
2013-09-30 13:50:12 +02:00
|
|
|
ptid_get_pid (inferior_ptid)));
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
1996-03-11 20:08:57 +01:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Convert pid to printable format. */
|
2005-10-31 23:50:58 +01:00
|
|
|
static char *
|
* linux-nat.c (linux_nat_wait): Adjust.
(linux_nat_pid_to_str): Adjust. Remove call to thread_db_init.
* linux-nat.h (thread_db_init): Delete declaration.
* linux-thread-db.c (target_beneath): Delete.
(thread_db_init): Delete.
(thread_db_detach): Use find_target_beneath.
(thread_db_wait): Adjust interface. Use find_target_beneath.
(thread_db_mourn_inferior): Use find_target_beneath.
(thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
(thread_db_async_mask): Delete.
(thread_db_pid_to_str): Adjust interface. Use
find_target_beneath.
(thread_db_get_thread_local_address): Adjust interface. Use
find_target_beneath.
(init_thread_db_ops): Delete references to delete functions.
* target.c (update_current_target): Don't inherit or default
to_wait. Don't inherit to_pid_to_str and
to_get_thread_local_address.
(target_translate_tls_address): Look for a pushed target that
implements to_get_thread_local_address, and use it instead of
checking for target_get_thread_local_address_p.
(target_wait, target_pid_to_str): Reimplement as functions.
(dummy_pid_to_str): New.
(init_dummy_target): Register it.
(debug_to_wait): Delete.
* target.h (struct target_ops): Make to_wait, to_pid_to_str and
to_get_thread_local_address accept a pointer to struct target_ops.
(target_wait): Delete macro, and declare as function.
(target_pid_to_str): Likewise.
(target_get_thread_local_address)
(target_get_thread_local_address_p): Delete.
(noprocess): Add NORETURN and ATTR_NORETURN tags.
* inf-ptrace.c (inf_ptrace_wait): Adjust.
(inf_ptrace_pid_to_str): New.
(inf_ptrace_target): Use inf_ptrace_pid_to_str.
* aix-thread.c (aix_thread_wait, aix_thread_pid_to_str): Adjust.
* bsd-kvm.c (bsd_kvm_pid_to_str): Adjust.
* bsd-uthread.c (bsd_uthread_wait, bsd_uthread_pid_to_str):
Adjust.
* corelow.c (core_pid_to_str): Adjust.
* darwin-nat.c (darwin_wait, darwin_pid_to_str): Adjust.
* dec-thread.c (dec_thread_wait, dec_thread_pid_to_str): Adjust.
* gnu-nat.c (gnu_wait, gnu_pid_to_str): Adjust.
* go32-nat.c (go32_wait, go32_pid_to_str): Adjust.
* hpux-thread.c (hpux_thread_wait): Adjust.
* inf-ttrace.c (inf_ttrace_wait, inf_ttrace_pid_to_str): Adjust.
* monitor.c (monitor_wait, monitor_pid_to_str): Adjust.
* nto-procfs.c (procfs_wait, procfs_pid_to_str): Adjust.
* procfs.c (procfs_pid_to_str): Adjust.
* remote-m32r-sdi.c (m32r_wait, m32r_pid_to_str): Adjust.
* remote-mips.c (mips_wait): Adjust.
* remote-sim.c (gdbsim_wait, gdbsim_pid_to_str): Adjust.
* remote.c (remote_wait, remote_pid_to_str)
(remote_get_thread_local_address): Adjust.
* rs6000-nat.c (rs6000_wait): Adjust.
* sol-thread.c (procfs_pid_to_str): Adjust declaration.
(sol_thread_wait, solaris_pid_to_str): Adjust.
* spu-linux-nat.c (spu_child_wait): Adjust.
* windows-nat.c (windows_wait, windows_pid_to_str): Adjust.
2009-02-06 23:21:26 +01:00
|
|
|
windows_pid_to_str (struct target_ops *ops, ptid_t ptid)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2005-10-31 23:50:58 +01:00
|
|
|
static char buf[80];
|
|
|
|
|
2008-08-08 15:16:17 +02:00
|
|
|
if (ptid_get_tid (ptid) != 0)
|
|
|
|
{
|
|
|
|
snprintf (buf, sizeof (buf), "Thread %d.0x%lx",
|
|
|
|
ptid_get_pid (ptid), ptid_get_tid (ptid));
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
return normal_pid_to_str (ptid);
|
2005-10-31 23:50:58 +01:00
|
|
|
}
|
|
|
|
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
static enum target_xfer_status
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_xfer_shared_libraries (struct target_ops *ops,
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
enum target_object object, const char *annex,
|
|
|
|
gdb_byte *readbuf, const gdb_byte *writebuf,
|
|
|
|
ULONGEST offset, ULONGEST len,
|
|
|
|
ULONGEST *xfered_len)
|
2005-11-01 06:08:29 +01:00
|
|
|
{
|
2007-09-04 03:12:18 +02:00
|
|
|
struct obstack obstack;
|
|
|
|
const char *buf;
|
|
|
|
LONGEST len_avail;
|
2005-11-01 06:08:29 +01:00
|
|
|
struct so_list *so;
|
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
if (writebuf)
|
2014-01-27 10:32:33 +01:00
|
|
|
return TARGET_XFER_E_IO;
|
2005-11-01 06:08:29 +01:00
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
obstack_init (&obstack);
|
|
|
|
obstack_grow_str (&obstack, "<library-list>\n");
|
|
|
|
for (so = solib_start.next; so; so = so->next)
|
2011-01-12 02:23:29 +01:00
|
|
|
windows_xfer_shared_library (so->so_name, (CORE_ADDR)
|
|
|
|
(uintptr_t) so->lm_info->load_addr,
|
* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch.
* gdbarch.c, gdbarch.h: Rebuild.
* ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
procfs.c, progspace.c, ravenscar-thread.c, record.c,
remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
target-descriptions.c, target.c, target.h, tracepoint.c,
windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
python/py-inferior.c, python/python.c: Update.
2012-11-09 20:58:03 +01:00
|
|
|
target_gdbarch (), &obstack);
|
2007-09-04 03:12:18 +02:00
|
|
|
obstack_grow_str0 (&obstack, "</library-list>\n");
|
2005-11-01 06:08:29 +01:00
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
buf = obstack_finish (&obstack);
|
|
|
|
len_avail = strlen (buf);
|
|
|
|
if (offset >= len_avail)
|
2012-12-14 08:50:02 +01:00
|
|
|
len= 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (len > len_avail - offset)
|
|
|
|
len = len_avail - offset;
|
|
|
|
memcpy (readbuf, buf + offset, len);
|
|
|
|
}
|
2005-11-01 06:08:29 +01:00
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
obstack_free (&obstack, NULL);
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
*xfered_len = (ULONGEST) len;
|
Fix a GDB assert failure on windows
A GDB internal error is found on native mingw32 target.
(gdb) run
../../binutils-gdb/gdb/target.c:1483: internal-error:
target_xfer_partial: Assertion `*xfered_len > 0' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n)
This error was introduced by the following snippet in commit
9b409511d07fe375284701af34909fb539029caf
> @@ -2536,27 +2538,30 @@ windows_xfer_shared_libraries (struct target_ops *ops,
> }
>
> obstack_free (&obstack, NULL);
> - return len;
> + *xfered_len = (ULONGEST) len;
> + return TARGET_XFER_OK;
> }
In the original code, len is returned, which could be 0, but after that
commit, only TARGET_XFER_OK is returned, which is wrong. If len is 0,
TARGET_XFER_EOF should be returned. (it is 0 in enum
target_xfer_status declaration).
gdb:
2014-02-24 Yuanhui Zhang <asmwarrior@gmail.com>
* windows-nat.c (windows_xfer_shared_libraries): Return
TARGET_XFER_EOF if LEN is zero to fix an assert failure when
requested object is TARGET_OBJECT_LIBRARIES.
2014-02-24 08:22:10 +01:00
|
|
|
return len != 0 ? TARGET_XFER_OK : TARGET_XFER_EOF;
|
2005-11-01 06:08:29 +01:00
|
|
|
}
|
|
|
|
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
static enum target_xfer_status
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_xfer_partial (struct target_ops *ops, enum target_object object,
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
const char *annex, gdb_byte *readbuf,
|
|
|
|
const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
|
|
|
|
ULONGEST *xfered_len)
|
2005-11-01 06:08:29 +01:00
|
|
|
{
|
2007-09-04 03:12:18 +02:00
|
|
|
switch (object)
|
2005-11-01 06:08:29 +01:00
|
|
|
{
|
2007-09-04 03:12:18 +02:00
|
|
|
case TARGET_OBJECT_MEMORY:
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
return windows_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
|
2007-09-04 03:12:18 +02:00
|
|
|
|
|
|
|
case TARGET_OBJECT_LIBRARIES:
|
2009-01-13 05:14:07 +01:00
|
|
|
return windows_xfer_shared_libraries (ops, object, annex, readbuf,
|
Return target_xfer_status in to_xfer_partial
This patch does the conversion of to_xfer_partial from
LONGEST (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len);
to
enum target_xfer_status (*to_xfer_partial) (struct target_ops *ops,
enum target_object object, const char *annex,
gdb_byte *readbuf, const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len, ULONGEST *xfered_len);
It changes to_xfer_partial return the transfer status and the transfered
length by *XFERED_LEN. Generally, the return status has three stats,
- TARGET_XFER_OK,
- TARGET_XFER_EOF,
- TARGET_XFER_E_XXXX,
See the comments to them in 'enum target_xfer_status'. Note that
Pedro suggested not name TARGET_XFER_DONE, as it is confusing,
compared with "TARGET_XFER_OK". We finally name it TARGET_XFER_EOF.
With this change, GDB core can handle unavailable data in a convenient
way.
The rationale behind this change was mentioned here
https://sourceware.org/ml/gdb-patches/2013-10/msg00761.html
Consider an object/value like this:
0 100 150 200 512
DDDDDDDDDDDxxxxxxxxxDDDDDD...DDIIIIIIIIIIII..III
where D is valid data, and xxx is unavailable data, and I is beyond
the end of the object (Invalid). Currently, if we start the
xfer at 0, requesting, say 512 bytes, we'll first get back 100 bytes.
The xfer machinery then retries fetching [100,512), and gets back
TARGET_XFER_E_UNAVAILABLE. That's sufficient when you're either
interested in either having the whole of the 512 bytes available,
or erroring out. But, in this scenario, we're interested in
the data at [150,512). The problem is that the last
TARGET_XFER_E_UNAVAILABLE gives us no indication where to
start the read next. We'd need something like:
get me [0,512) >>>
<<< here's [0,100), *xfered_len is 100, returns TARGET_XFER_OK
get me [100,512) >>> (**1)
<<< [100,150) is unavailable, *xfered_len is 50, return TARGET_XFER_E_UNAVAILABLE.
get me [150,512) >>>
<<< here's [150,200), *xfered_len is 50, return TARGET_XFER_OK.
get me [200,512) >>>
<<< no more data, return TARGET_XFER_EOF.
This naturally implies pushing down the decision of whether
to return TARGET_XFER_E_UNAVAILABLE or something else
down to the target. (Which kinds of leads back to tfile
itself reading from RO memory from file (though we could
export a function in exec.c for that that tfile delegates to,
instead of re-adding the old code).
Beside this change, we also add a macro TARGET_XFER_STATUS_ERROR_P to
check whether a status is an error or not, to stop using "status < 0".
This patch also eliminates the comparison between status and 0.
No target implementations to to_xfer_partial adapts this new
interface. The interface still behaves as before.
gdb:
2014-02-11 Yao Qi <yao@codesourcery.com>
* target.h (enum target_xfer_error): Rename to ...
(enum target_xfer_status): ... it. New. All users updated.
(enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
New.
(TARGET_XFER_STATUS_ERROR_P): New macro.
(target_xfer_error_to_string): Remove declaration.
(target_xfer_status_to_string): Declare.
(target_xfer_partial_ftype): Adjust it.
(struct target_ops) <to_xfer_partial>: Return
target_xfer_status. Add argument xfered_len. Update
comments.
* target.c (target_xfer_error_to_string): Rename to ...
(target_xfer_status_to_string): ... it. New. All callers
updated.
(target_read_live_memory): Likewise. Call target_xfer_partial
instead of target_read.
(memory_xfer_live_readonly_partial): Return
target_xfer_status. Add argument xfered_len.
(raw_memory_xfer_partial): Likewise.
(memory_xfer_partial_1): Likewise.
(memory_xfer_partial): Likewise.
(target_xfer_partial): Likewise. Check *XFERED_LEN is set
properly. Update debug message.
(default_xfer_partial, current_xfer_partial): Likewise.
(target_write_partial): Likewise.
(target_read_partial): Likewise. All callers updated.
(read_whatever_is_readable): Likewise.
(target_write_with_progress): Likewise.
(target_read_alloc_1): Likewise.
* aix-thread.c (aix_thread_xfer_partial): Likewise.
* auxv.c (procfs_xfer_auxv): Likewise.
(ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
* bfd-target.c (target_bfd_xfer_partial): Likewise.
* bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
* bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
* corefile.c (read_memory): Adjust.
* corelow.c (core_xfer_partial): Likewise.
* ctf.c (ctf_xfer_partial): Likewise.
* darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
updated.
(darwin_xfer_partial): Likewise.
* exec.c (section_table_xfer_memory_partial): Likewise. All
callers updated.
(exec_xfer_partial): Likewise.
* exec.h (section_table_xfer_memory_partial): Update
declaration.
* gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
negative.
(gnu_xfer_partial): Likewise.
* ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
(ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
(ia64_hpux_xfer_solib_got): Likewise.
* inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
type of 'partial_len' to ULONGEST.
* inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
* linux-nat.c (linux_xfer_siginfo ): Likewise.
(linux_nat_xfer_partial): Likewise.
(linux_proc_xfer_partial, linux_xfer_partial): Likewise.
(linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
* monitor.c (monitor_xfer_memory): Likewise.
(monitor_xfer_partial): Likewise.
* procfs.c (procfs_xfer_partial): Likewise.
* record-btrace.c (record_btrace_xfer_partial): Likewise.
* record-full.c (record_full_xfer_partial): Likewise.
(record_full_core_xfer_partial): Likewise.
* remote-sim.c (gdbsim_xfer_memory): Likewise.
(gdbsim_xfer_partial): Likewise.
* remote.c (remote_write_bytes_aux): Likewise. All callers
updated.
(remote_write_bytes, remote_read_bytes): Likewise. All
callers updated.
(remote_flash_erase): Likewise. All callers updated.
(remote_write_qxfer): Likewise. All callers updated.
(remote_read_qxfer): Likewise. All callers updated.
(remote_xfer_partial): Likewise.
* rs6000-nat.c (rs6000_xfer_partial): Likewise.
(rs6000_xfer_shared_libraries): Likewise.
* sol-thread.c (sol_thread_xfer_partial): Likewise.
(sol_thread_xfer_partial): Likewise.
* sparc-nat.c (sparc_xfer_wcookie): Likewise.
(sparc_xfer_partial): Likewise.
* spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
updated.
(spu_xfer_partial): Likewise.
* spu-multiarch.c (spu_xfer_partial): Likewise.
* tracepoint.c (tfile_xfer_partial): Likewise.
* windows-nat.c (windows_xfer_memory): Likewise.
(windows_xfer_shared_libraries): Likewise.
(windows_xfer_partial): Likewise.
* valprint.c: Replace 'target_xfer_error' with
'target_xfer_status' in comments.
2014-01-27 13:35:33 +01:00
|
|
|
writebuf, offset, len, xfered_len);
|
2005-11-01 15:07:00 +01:00
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
default:
|
2014-07-11 16:02:03 +02:00
|
|
|
return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
|
|
|
|
readbuf, writebuf, offset, len,
|
|
|
|
xfered_len);
|
2005-11-01 15:07:00 +01:00
|
|
|
}
|
2006-04-10 23:43:45 +02:00
|
|
|
}
|
|
|
|
|
2010-04-16 09:49:37 +02:00
|
|
|
/* Provide thread local base, i.e. Thread Information Block address.
|
|
|
|
Returns 1 if ptid is found and sets *ADDR to thread_local_base. */
|
|
|
|
|
|
|
|
static int
|
2013-12-18 05:44:08 +01:00
|
|
|
windows_get_tib_address (struct target_ops *self,
|
|
|
|
ptid_t ptid, CORE_ADDR *addr)
|
2010-04-16 09:49:37 +02:00
|
|
|
{
|
2015-03-16 12:31:31 +01:00
|
|
|
windows_thread_info *th;
|
2010-04-16 09:49:37 +02:00
|
|
|
|
|
|
|
th = thread_rec (ptid_get_tid (ptid), 0);
|
|
|
|
if (th == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (addr != NULL)
|
|
|
|
*addr = th->thread_local_base;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-04-01 18:35:41 +02:00
|
|
|
static ptid_t
|
2013-12-18 05:36:30 +01:00
|
|
|
windows_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
|
2009-04-01 18:35:41 +02:00
|
|
|
{
|
|
|
|
return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
|
|
|
|
}
|
|
|
|
|
2014-03-12 12:21:36 +01:00
|
|
|
static struct target_ops *
|
|
|
|
windows_target (void)
|
2005-10-31 23:50:58 +01:00
|
|
|
{
|
2014-03-12 12:21:36 +01:00
|
|
|
struct target_ops *t = inf_child_target ();
|
|
|
|
|
|
|
|
t->to_close = windows_close;
|
|
|
|
t->to_attach = windows_attach;
|
|
|
|
t->to_attach_no_wait = 1;
|
|
|
|
t->to_detach = windows_detach;
|
|
|
|
t->to_resume = windows_resume;
|
|
|
|
t->to_wait = windows_wait;
|
|
|
|
t->to_fetch_registers = windows_fetch_inferior_registers;
|
|
|
|
t->to_store_registers = windows_store_inferior_registers;
|
|
|
|
t->to_xfer_partial = windows_xfer_partial;
|
|
|
|
t->to_files_info = windows_files_info;
|
|
|
|
t->to_kill = windows_kill_inferior;
|
|
|
|
t->to_create_inferior = windows_create_inferior;
|
|
|
|
t->to_mourn_inferior = windows_mourn_inferior;
|
|
|
|
t->to_thread_alive = windows_thread_alive;
|
|
|
|
t->to_pid_to_str = windows_pid_to_str;
|
|
|
|
t->to_stop = windows_stop;
|
|
|
|
t->to_pid_to_exec_file = windows_pid_to_exec_file;
|
|
|
|
t->to_get_ada_task_ptid = windows_get_ada_task_ptid;
|
|
|
|
t->to_get_tib_address = windows_get_tib_address;
|
|
|
|
|
|
|
|
return t;
|
1998-05-21 22:20:39 +02:00
|
|
|
}
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2012-03-02 06:38:51 +01:00
|
|
|
/* -Wmissing-prototypes */
|
|
|
|
extern initialize_file_ftype _initialize_windows_nat;
|
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
void
|
2009-01-13 05:14:07 +01:00
|
|
|
_initialize_windows_nat (void)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2014-03-12 12:21:36 +01:00
|
|
|
struct target_ops *t;
|
|
|
|
|
|
|
|
t = windows_target ();
|
|
|
|
|
Rename 32- and 64-bit Intel files from "i386" to "x86"
This commit renames nine files that contain code used by both 32- and
64-bit Intel ports such that their names are prefixed with "x86"
rather than "i386". All types, functions and variables within these
files are likewise renamed such that their names are prefixed with
"x86" rather than "i386". This makes GDB follow the convention used
by gdbserver such that 32-bit Intel code lives in files called
"i386-*", 64-bit Intel code lives in files called "amd64-*", and code
for both 32- and 64-bit Intel lives in files called "x86-*".
This commit only renames OS-independent files. The Linux ports of
both GDB and gdbserver now follow the i386/amd64/x86 convention fully.
Some ports still use the old convention where "i386" in file/function/
type/variable names can mean "32-bit only" or "32- and 64-bit" but I
don't want to touch ports I can't fully test except where absolutely
necessary.
gdb/ChangeLog:
* i386-nat.h: Renamed as...
* x86-nat.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-nat.c: Renamed as...
* x86-nat.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* common/i386-xstate.h: Renamed as...
* common/x86-xstate.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-cpuid.h: Renamed as...
* nat/x86-cpuid.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-gcc-cpuid.h: Renamed as...
* nat/x86-gcc-cpuid.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-dregs.h: Renamed as...
* nat/x86-dregs.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-dregs.c: Renamed as...
* nat/x86-dregs.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
gdb/gdbserver/ChangeLog:
* i386-low.h: Renamed as...
* x86-low.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-low.c: Renamed as...
* x86-low.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
2014-08-19 16:16:11 +02:00
|
|
|
x86_use_watchpoints (t);
|
2014-03-12 12:21:36 +01:00
|
|
|
|
Rename 32- and 64-bit Intel files from "i386" to "x86"
This commit renames nine files that contain code used by both 32- and
64-bit Intel ports such that their names are prefixed with "x86"
rather than "i386". All types, functions and variables within these
files are likewise renamed such that their names are prefixed with
"x86" rather than "i386". This makes GDB follow the convention used
by gdbserver such that 32-bit Intel code lives in files called
"i386-*", 64-bit Intel code lives in files called "amd64-*", and code
for both 32- and 64-bit Intel lives in files called "x86-*".
This commit only renames OS-independent files. The Linux ports of
both GDB and gdbserver now follow the i386/amd64/x86 convention fully.
Some ports still use the old convention where "i386" in file/function/
type/variable names can mean "32-bit only" or "32- and 64-bit" but I
don't want to touch ports I can't fully test except where absolutely
necessary.
gdb/ChangeLog:
* i386-nat.h: Renamed as...
* x86-nat.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-nat.c: Renamed as...
* x86-nat.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* common/i386-xstate.h: Renamed as...
* common/x86-xstate.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-cpuid.h: Renamed as...
* nat/x86-cpuid.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-gcc-cpuid.h: Renamed as...
* nat/x86-gcc-cpuid.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-dregs.h: Renamed as...
* nat/x86-dregs.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-dregs.c: Renamed as...
* nat/x86-dregs.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
gdb/gdbserver/ChangeLog:
* i386-low.h: Renamed as...
* x86-low.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-low.c: Renamed as...
* x86-low.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
2014-08-19 16:16:11 +02:00
|
|
|
x86_dr_low.set_control = cygwin_set_dr7;
|
|
|
|
x86_dr_low.set_addr = cygwin_set_dr;
|
|
|
|
x86_dr_low.get_addr = cygwin_get_dr;
|
|
|
|
x86_dr_low.get_status = cygwin_get_dr6;
|
|
|
|
x86_dr_low.get_control = cygwin_get_dr7;
|
2014-03-12 12:21:36 +01:00
|
|
|
|
Rename 32- and 64-bit Intel files from "i386" to "x86"
This commit renames nine files that contain code used by both 32- and
64-bit Intel ports such that their names are prefixed with "x86"
rather than "i386". All types, functions and variables within these
files are likewise renamed such that their names are prefixed with
"x86" rather than "i386". This makes GDB follow the convention used
by gdbserver such that 32-bit Intel code lives in files called
"i386-*", 64-bit Intel code lives in files called "amd64-*", and code
for both 32- and 64-bit Intel lives in files called "x86-*".
This commit only renames OS-independent files. The Linux ports of
both GDB and gdbserver now follow the i386/amd64/x86 convention fully.
Some ports still use the old convention where "i386" in file/function/
type/variable names can mean "32-bit only" or "32- and 64-bit" but I
don't want to touch ports I can't fully test except where absolutely
necessary.
gdb/ChangeLog:
* i386-nat.h: Renamed as...
* x86-nat.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-nat.c: Renamed as...
* x86-nat.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* common/i386-xstate.h: Renamed as...
* common/x86-xstate.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-cpuid.h: Renamed as...
* nat/x86-cpuid.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-gcc-cpuid.h: Renamed as...
* nat/x86-gcc-cpuid.h: New file. All type, function and variable
name prefixes changed from "i386_" to "x86_". All references
updated.
* nat/i386-dregs.h: Renamed as...
* nat/x86-dregs.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* nat/i386-dregs.c: Renamed as...
* nat/x86-dregs.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
gdb/gdbserver/ChangeLog:
* i386-low.h: Renamed as...
* x86-low.h: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
* i386-low.c: Renamed as...
* x86-low.c: New file. All type, function and variable name
prefixes changed from "i386_" to "x86_". All references updated.
2014-08-19 16:16:11 +02:00
|
|
|
/* x86_dr_low.debug_register_length field is set by
|
|
|
|
calling x86_set_debug_register_length function
|
2014-03-12 12:21:36 +01:00
|
|
|
in processor windows specific native file. */
|
2001-02-19 12:47:16 +01:00
|
|
|
|
2014-03-12 12:21:36 +01:00
|
|
|
add_target (t);
|
1996-03-11 20:08:57 +01:00
|
|
|
|
2010-03-01 10:09:24 +01:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
cygwin_internal (CW_SET_DOS_FILE_WARNING, 0);
|
|
|
|
#endif
|
|
|
|
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
2005-02-18 Andrew Cagney <cagney@gnu.org>
Use add_setshow_boolean_command through out. Delete #ifdef 0'ed
code adding set/show boolean commands.
* cp-valprint.c, dcache.c, exec.c, gdbtypes.c, infrun.c: Update.
* monitor.c, p-valprint.c, pa64solib.c, printcmd.c: Update.
* proc-api.c, remote-mips.c, remote.c, solib.c: Update.
* somsolib.c, symfile.c, top.c, utils.c, valops.c: Update.
* valprint.c, win32-nat.c, wince.c, xcoffsolib.c: Update.
* cli/cli-cmds.c: Update.
2005-02-18 16:25:32 +01:00
|
|
|
add_setshow_boolean_cmd ("shell", class_support, &useshell, _("\
|
|
|
|
Set use of shell to start subprocess."), _("\
|
|
|
|
Show use of shell to start subprocess."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
add_setshow_boolean_cmd ("cygwin-exceptions", class_support,
|
|
|
|
&cygwin_exceptions, _("\
|
2006-05-22 01:04:39 +02:00
|
|
|
Break when an exception is detected in the Cygwin DLL itself."), _("\
|
|
|
|
Show whether gdb breaks on exceptions in the Cygwin DLL itself."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
2006-05-22 01:04:39 +02:00
|
|
|
|
2005-02-18 Andrew Cagney <cagney@gnu.org>
Use add_setshow_boolean_command through out. Delete #ifdef 0'ed
code adding set/show boolean commands.
* cp-valprint.c, dcache.c, exec.c, gdbtypes.c, infrun.c: Update.
* monitor.c, p-valprint.c, pa64solib.c, printcmd.c: Update.
* proc-api.c, remote-mips.c, remote.c, solib.c: Update.
* somsolib.c, symfile.c, top.c, utils.c, valops.c: Update.
* valprint.c, win32-nat.c, wince.c, xcoffsolib.c: Update.
* cli/cli-cmds.c: Update.
2005-02-18 16:25:32 +01:00
|
|
|
add_setshow_boolean_cmd ("new-console", class_support, &new_console, _("\
|
|
|
|
Set creation of new console when creating child process."), _("\
|
|
|
|
Show creation of new console when creating child process."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
|
|
|
|
|
|
|
add_setshow_boolean_cmd ("new-group", class_support, &new_group, _("\
|
|
|
|
Set creation of new group when creating child process."), _("\
|
|
|
|
Show creation of new group when creating child process."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
|
|
|
|
|
|
|
add_setshow_boolean_cmd ("debugexec", class_support, &debug_exec, _("\
|
|
|
|
Set whether to display execution in child process."), _("\
|
|
|
|
Show whether to display execution in child process."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
|
|
|
|
|
|
|
add_setshow_boolean_cmd ("debugevents", class_support, &debug_events, _("\
|
|
|
|
Set whether to display kernel events in child process."), _("\
|
|
|
|
Show whether to display kernel events in child process."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
|
|
|
|
|
|
|
add_setshow_boolean_cmd ("debugmemory", class_support, &debug_memory, _("\
|
|
|
|
Set whether to display memory accesses in child process."), _("\
|
|
|
|
Show whether to display memory accesses in child process."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
|
|
|
|
|
|
|
add_setshow_boolean_cmd ("debugexceptions", class_support,
|
|
|
|
&debug_exceptions, _("\
|
|
|
|
Set whether to display kernel exceptions in child process."), _("\
|
|
|
|
Show whether to display kernel exceptions in child process."), NULL,
|
|
|
|
NULL,
|
|
|
|
NULL, /* FIXME: i18n: */
|
|
|
|
&setlist, &showlist);
|
1996-03-11 20:08:57 +01:00
|
|
|
|
2010-04-16 09:49:37 +02:00
|
|
|
init_w32_command_list ();
|
2002-02-19 09:49:42 +01:00
|
|
|
|
|
|
|
add_cmd ("selector", class_info, display_selectors,
|
2005-02-14 Andrew Cagney <cagney@gnu.org>
Mark up add_cmd.
* arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update.
* cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update.
* exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update.
* infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update.
* mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update.
* reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update.
* sol-thread.c, source.c, stack.c, symfile-mem.c: Update.
* symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update.
* win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
* cli/cli-logging.c, tui/tui-regs.c: Update.
2005-02-14 19:10:11 +01:00
|
|
|
_("Display selectors infos."),
|
2002-02-19 09:49:42 +01:00
|
|
|
&info_w32_cmdlist);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
1998-11-05 15:08:48 +01:00
|
|
|
|
2002-02-04 12:00:10 +01:00
|
|
|
/* Hardware watchpoint support, adapted from go32-nat.c code. */
|
|
|
|
|
|
|
|
/* Pass the address ADDR to the inferior in the I'th debug register.
|
|
|
|
Here we just store the address in dr array, the registers will be
|
2009-01-13 05:14:07 +01:00
|
|
|
actually set up when windows_continue is called. */
|
2009-05-14 11:37:00 +02:00
|
|
|
static void
|
2002-02-04 12:00:10 +01:00
|
|
|
cygwin_set_dr (int i, CORE_ADDR addr)
|
|
|
|
{
|
|
|
|
if (i < 0 || i > 3)
|
|
|
|
internal_error (__FILE__, __LINE__,
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
_("Invalid register %d in cygwin_set_dr.\n"), i);
|
2009-03-08 22:01:52 +01:00
|
|
|
dr[i] = addr;
|
2002-02-04 12:00:10 +01:00
|
|
|
debug_registers_changed = 1;
|
|
|
|
debug_registers_used = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pass the value VAL to the inferior in the DR7 debug control
|
|
|
|
register. Here we just store the address in D_REGS, the watchpoint
|
2009-01-13 05:14:07 +01:00
|
|
|
will be actually set up in windows_wait. */
|
2009-05-14 11:37:00 +02:00
|
|
|
static void
|
|
|
|
cygwin_set_dr7 (unsigned long val)
|
2002-02-04 12:00:10 +01:00
|
|
|
{
|
2009-05-14 11:37:00 +02:00
|
|
|
dr[7] = (CORE_ADDR) val;
|
2002-02-04 12:00:10 +01:00
|
|
|
debug_registers_changed = 1;
|
|
|
|
debug_registers_used = 1;
|
|
|
|
}
|
|
|
|
|
gdb/
2011-12-14 Pedro Alves <pedro@codesourcery.com>
PR threads/10729
* linux-nat.c (linux_nat_new_thread): Change parameter to an lwp
pointer.
(linux_nat_prepare_to_resume): New global.
(lwp_free): New.
(purge_lwp_list): Use it.
(add_lwp): Call linux_nat_new_thread even on the first LWP.
Adjust to interface change.
(delete_lwp): Call lwp_free instead of xfree.
(detach_callback, linux_nat_detach, resume_lwp, linux_nat_resume)
(linux_handle_syscall_trap, linux_handle_extended_wait)
(linux_nat_filter_event, resume_stopped_resumed_lwps): Call
linux_nat_prepare_to_resume before resuming.
(linux_stop_lwp): New.
(linux_nat_set_new_thread): Adjust.
(linux_nat_set_prepare_to_resume): New.
* linux-nat.h (struct arch_lwp_info): Forward declare.
(struct lwp_info) <arch_private>: New field.
(linux_stop_lwp): Declare.
(linux_nat_set_new_thread): Adjust.
(linux_nat_set_prepare_to_resume): New.
* i386-nat.c (DR_NADDR, DR_STATUS, DR_CONTROL)
(struct i386_debug_reg_state): Move to i386-nat.h.
(dr_mirror): Comment.
(i386_debug_reg_state): New.
(i386_update_inferior_debug_regs): Simplify.
(i386_stopped_data_address): Use the debug register state from the
inferior, not from the local cache.
* i386-nat.h (struct i386_dr_low_type): Delete reset_addr and
unset_status fields. New get_addr and get_control fields.
(DR_FIRSTADDR, DR_LASTADDR, DR_CONTROL): Moved from i386-nat.c.
(DR_NADDR, DR_STATUS): New.
(struct i386_debug_reg_state): Moved from i386-nat.c.
* amd64-linux-nat.c (struct arch_lwp_info): New.
(amd64_linux_dr): Delete global.
(amd64_linux_dr_get_addr): New.
(amd64_linux_dr_get_control): New.
(amd64_linux_dr_unset_status): Delete.
(amd64_linux_dr_set_addr): Reimplement.
(amd64_linux_dr_reset_addr): Delete.
(update_debug_registers_callback): New.
(amd64_linux_dr_set_control): Reimplement.
(amd64_linux_dr_set_addr): Reimplement.
(amd64_linux_prepare_to_resume): New.
(amd64_linux_new_thread): Change parameter to an lwp pointer.
Reimplement.
(_initialize_amd64_linux_nat): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
amd64_linux_dr_get_control as i386_dr_low.get_control. Install
amd64_linux_dr_get_addr as i386_dr_low.get_addr. Install
amd64_linux_prepare_to_resume.
* i386-linux-nat.c (DR_FIRSTADDR, DR_LASTADDR, DR_STATUS)
(DR_CONTROL): Delete.
(struct arch_lwp_info): New.
(i386_linux_dr): Delete global.
(i386_linux_dr_set_control): Reimplement.
(i386_linux_dr_get_addr): New.
(i386_linux_dr_set_addr): Reimplement.
(i386_linux_dr_get_control): New.
(update_debug_registers_callback): New.
(i386_linux_dr_unset_status): Delete.
(i386_linux_dr_set_addr): Reimplement.
(i386_linux_prepare_to_resume): New.
(i386_linux_new_thread): Change parameter to an lwp pointer.
Reimplement.
(_initialize_i386_linux_nat): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
i386_linux_dr_get_control as i386_dr_low.get_control. Install
i386_linux_dr_get_addr as i386_dr_low.get_addr. Install
i386_linux_prepare_to_resume.
* arm-linux-nat.c (arm_linux_new_thread): Change parameter to an
lwp pointer. Adjust.
* ia64-linux-nat.c (ia64_linux_new_thread): Likewise.
* mips-linux-nat.c (mips_linux_new_thread): Likewise.
* ppc-linux-nat.c (ppc_linux_new_thread): Likewise.
* s390-nat.c (s390_fix_watch_points): Likewise.
* i386-darwin-nat.c (DR_FIRSTADDR, DR_LASTADDR, DR_STATUS)
(DR_CONTROL): Delete.
(i386_darwin_dr_reset_addr): Delete.
(i386_darwin_dr_get_addr): New.
(i386_darwin_dr_get_control): New.
* go32-nat.c
(go32_get_dr7, go32_get_dr): New.
(init_go32_ops): No longer install i386_dr_low.reset_addr.
Install go32_get_dr7 as i386_dr_low.get_control. Install
go32_get_dr as i386_dr_low.get_addr.
* i386bsd-nat.c (i386bsd_dr_get): New.
(i386bsd_dr_reset_addr): Delete.
(i386bsd_dr_get_addr): New.
(i386bsd_dr_get_status): Use i386bsd_dr_get.
(i386bsd_dr_get_control): New.
* i386bsd-nat.h (i386bsd_dr_reset_addr): Delete.
(i386bsd_dr_get_addr): New.
(i386bsd_dr_get_control): New.
* i386fbsd-nat.c (_initialize_i386fbsd_nat): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
i386bsd_dr_get_control as i386_dr_low.get_control. Install
i386bsd_dr_get_addr as i386_dr_low.get_addr.
* windows-nat.c (init_windows_ops): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
cygwin_get_dr7 as i386_dr_low.get_control. Install cygwin_get_dr
as i386_dr_low.get_addr.
(cygwin_get_dr): New.
(cygwin_get_dr7): New.
gdb/testsuite/
2011-12-14 Pedro Alves <pedro@codesourcery.com>
PR threads/10729
* gdb.mi/watch-nonstop.c: New file.
* gdb.mi/mi-watch-nonstop.exp: New file.
2011-12-14 18:20:32 +01:00
|
|
|
/* Get the value of debug register I from the inferior. */
|
|
|
|
|
|
|
|
static CORE_ADDR
|
|
|
|
cygwin_get_dr (int i)
|
|
|
|
{
|
|
|
|
return dr[i];
|
|
|
|
}
|
|
|
|
|
2002-02-04 12:00:10 +01:00
|
|
|
/* Get the value of the DR6 debug status register from the inferior.
|
|
|
|
Here we just return the value stored in dr[6]
|
|
|
|
by the last call to thread_rec for current_event.dwThreadId id. */
|
2009-05-14 11:37:00 +02:00
|
|
|
static unsigned long
|
2002-02-04 12:00:10 +01:00
|
|
|
cygwin_get_dr6 (void)
|
|
|
|
{
|
2009-05-14 11:37:00 +02:00
|
|
|
return (unsigned long) dr[6];
|
2002-02-04 12:00:10 +01:00
|
|
|
}
|
|
|
|
|
gdb/
2011-12-14 Pedro Alves <pedro@codesourcery.com>
PR threads/10729
* linux-nat.c (linux_nat_new_thread): Change parameter to an lwp
pointer.
(linux_nat_prepare_to_resume): New global.
(lwp_free): New.
(purge_lwp_list): Use it.
(add_lwp): Call linux_nat_new_thread even on the first LWP.
Adjust to interface change.
(delete_lwp): Call lwp_free instead of xfree.
(detach_callback, linux_nat_detach, resume_lwp, linux_nat_resume)
(linux_handle_syscall_trap, linux_handle_extended_wait)
(linux_nat_filter_event, resume_stopped_resumed_lwps): Call
linux_nat_prepare_to_resume before resuming.
(linux_stop_lwp): New.
(linux_nat_set_new_thread): Adjust.
(linux_nat_set_prepare_to_resume): New.
* linux-nat.h (struct arch_lwp_info): Forward declare.
(struct lwp_info) <arch_private>: New field.
(linux_stop_lwp): Declare.
(linux_nat_set_new_thread): Adjust.
(linux_nat_set_prepare_to_resume): New.
* i386-nat.c (DR_NADDR, DR_STATUS, DR_CONTROL)
(struct i386_debug_reg_state): Move to i386-nat.h.
(dr_mirror): Comment.
(i386_debug_reg_state): New.
(i386_update_inferior_debug_regs): Simplify.
(i386_stopped_data_address): Use the debug register state from the
inferior, not from the local cache.
* i386-nat.h (struct i386_dr_low_type): Delete reset_addr and
unset_status fields. New get_addr and get_control fields.
(DR_FIRSTADDR, DR_LASTADDR, DR_CONTROL): Moved from i386-nat.c.
(DR_NADDR, DR_STATUS): New.
(struct i386_debug_reg_state): Moved from i386-nat.c.
* amd64-linux-nat.c (struct arch_lwp_info): New.
(amd64_linux_dr): Delete global.
(amd64_linux_dr_get_addr): New.
(amd64_linux_dr_get_control): New.
(amd64_linux_dr_unset_status): Delete.
(amd64_linux_dr_set_addr): Reimplement.
(amd64_linux_dr_reset_addr): Delete.
(update_debug_registers_callback): New.
(amd64_linux_dr_set_control): Reimplement.
(amd64_linux_dr_set_addr): Reimplement.
(amd64_linux_prepare_to_resume): New.
(amd64_linux_new_thread): Change parameter to an lwp pointer.
Reimplement.
(_initialize_amd64_linux_nat): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
amd64_linux_dr_get_control as i386_dr_low.get_control. Install
amd64_linux_dr_get_addr as i386_dr_low.get_addr. Install
amd64_linux_prepare_to_resume.
* i386-linux-nat.c (DR_FIRSTADDR, DR_LASTADDR, DR_STATUS)
(DR_CONTROL): Delete.
(struct arch_lwp_info): New.
(i386_linux_dr): Delete global.
(i386_linux_dr_set_control): Reimplement.
(i386_linux_dr_get_addr): New.
(i386_linux_dr_set_addr): Reimplement.
(i386_linux_dr_get_control): New.
(update_debug_registers_callback): New.
(i386_linux_dr_unset_status): Delete.
(i386_linux_dr_set_addr): Reimplement.
(i386_linux_prepare_to_resume): New.
(i386_linux_new_thread): Change parameter to an lwp pointer.
Reimplement.
(_initialize_i386_linux_nat): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
i386_linux_dr_get_control as i386_dr_low.get_control. Install
i386_linux_dr_get_addr as i386_dr_low.get_addr. Install
i386_linux_prepare_to_resume.
* arm-linux-nat.c (arm_linux_new_thread): Change parameter to an
lwp pointer. Adjust.
* ia64-linux-nat.c (ia64_linux_new_thread): Likewise.
* mips-linux-nat.c (mips_linux_new_thread): Likewise.
* ppc-linux-nat.c (ppc_linux_new_thread): Likewise.
* s390-nat.c (s390_fix_watch_points): Likewise.
* i386-darwin-nat.c (DR_FIRSTADDR, DR_LASTADDR, DR_STATUS)
(DR_CONTROL): Delete.
(i386_darwin_dr_reset_addr): Delete.
(i386_darwin_dr_get_addr): New.
(i386_darwin_dr_get_control): New.
* go32-nat.c
(go32_get_dr7, go32_get_dr): New.
(init_go32_ops): No longer install i386_dr_low.reset_addr.
Install go32_get_dr7 as i386_dr_low.get_control. Install
go32_get_dr as i386_dr_low.get_addr.
* i386bsd-nat.c (i386bsd_dr_get): New.
(i386bsd_dr_reset_addr): Delete.
(i386bsd_dr_get_addr): New.
(i386bsd_dr_get_status): Use i386bsd_dr_get.
(i386bsd_dr_get_control): New.
* i386bsd-nat.h (i386bsd_dr_reset_addr): Delete.
(i386bsd_dr_get_addr): New.
(i386bsd_dr_get_control): New.
* i386fbsd-nat.c (_initialize_i386fbsd_nat): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
i386bsd_dr_get_control as i386_dr_low.get_control. Install
i386bsd_dr_get_addr as i386_dr_low.get_addr.
* windows-nat.c (init_windows_ops): No longer install
i386_dr_low.reset_addr and i386_dr_low.unset_status. Install
cygwin_get_dr7 as i386_dr_low.get_control. Install cygwin_get_dr
as i386_dr_low.get_addr.
(cygwin_get_dr): New.
(cygwin_get_dr7): New.
gdb/testsuite/
2011-12-14 Pedro Alves <pedro@codesourcery.com>
PR threads/10729
* gdb.mi/watch-nonstop.c: New file.
* gdb.mi/mi-watch-nonstop.exp: New file.
2011-12-14 18:20:32 +01:00
|
|
|
/* Get the value of the DR7 debug status register from the inferior.
|
|
|
|
Here we just return the value stored in dr[7] by the last call to
|
|
|
|
thread_rec for current_event.dwThreadId id. */
|
|
|
|
|
|
|
|
static unsigned long
|
|
|
|
cygwin_get_dr7 (void)
|
|
|
|
{
|
|
|
|
return (unsigned long) dr[7];
|
|
|
|
}
|
|
|
|
|
2008-08-08 15:16:17 +02:00
|
|
|
/* Determine if the thread referenced by "ptid" is alive
|
1998-11-05 15:08:48 +01:00
|
|
|
by "polling" it. If WaitForSingleObject returns WAIT_OBJECT_0
|
2011-01-12 02:23:29 +01:00
|
|
|
it means that the thread has died. Otherwise it is assumed to be alive. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static int
|
* corelow.c (get_core_registers): Adjust.
(core_file_thread_alive): Rename to...
(core_thread_alive): ... this.
(core_pid_to_str): Try gdbarch_core_pid_to_str first.
(init_core_ops): Adjust.
(coreops_suppress_target): Delete.
(_initialize_corelow): Unconditionally add core_ops.
* procfs.c: Include "inf-child.h".
(procfs_ops): Delete.
(init_procfs_ops): Delete. Reimplement as...
(procfs_target): ... this, inheriting from inf-child.
(procfs_attach, procfs_detach, procfs_fetch_registers): Adjust.
(procfs_prepare_to_store): Delete.
(procfs_store_registers, procfs_resume): Adjust.
(procfs_open): Delete.
(procfs_suppress_run): Delete.
(procfs_can_run): Delete.
(procfs_mourn_inferior): Adjust.
(procfs_init_inferior): Add target_ops parameter. Adjust.
(procfs_create_inferior): Don't pass procfs_init_inferior to
fork_inferior. Instead call it after fork_inferior returns.
(procfs_find_new_threads): Adjust.
(_initialize_procfs): Adjust to use procfs_target instead of
init_procfs_ops.
* sol-thread.c (orig_core_ops, sol_core_ops): Delete.
(lwp_to_thread): Use target_thread_alive.
(sol_thread_open): Delete.
(sol_thread_attach): Delete.
(sol_thread_detach, sol_thread_resume, sol_thread_wait)
(sol_thread_fetch_registers, sol_thread_store_registers): Adjust
to use find_target_beneath.
(sol_thread_prepare_to_store, sol_thread_xfer_memory): Delete.
(sol_thread_xfer_partial): Adjust to use find_target_beneath.
(sol_thread_files_info, sol_thread_kill_inferior): Delete.
(check_for_thread_db): New.
(sol_thread_notice_signals, sol_thread_create_inferior): Delete.
(sol_thread_new_objfile): Call check_for_thread_db.
(sol_thread_mourn_inferior): Adjust to use find_target_beneath.
(sol_thread_can_run): Delete.
(sol_thread_alive): Adjust to use find_target_beneath.
(sol_thread_stop): Delete.
(rw_common): Use target_write_memory or target_read_memory.
(ps_lgetregs, ps_lgetfpregs): Use target_fetch_registers.
(ps_lsetregs, ps_lsetfpregs): Use target_store_registers.
(solaris_pid_to_str): Remove check for libthread_db initialization
failing.
(sol_find_new_threads): Remove check for libthread_db
initialization failing, or for an invalid inferior_ptid. Adjust
to use find_target_beneath.
(sol_core_open, sol_core_close, sol_core_detach,
sol_core_files_info, sol_find_memory_regions,
sol_make_note_section, ignore): Delete.
(init_sol_thread_ops): Make it a thread_stratum target. Remove
unneeded callback settings.
(init_sol_core_ops): Delete.
(_initialize_sol_thread): No longer call init_sol_core_ops, set
procfs_suppress_run, or hack with core_ops.
* target.h (struct target_ops): Add a target_ops * parameter to
to_resume, to_fetch_registers, to_store_registers, to_thread_alive
and to_find_new_threads.
(target_fetch_registers, target_store_registers)
(target_thread_alive, target_find_new_threads): Redeclare as
function.
* target.c (update_current_target): Do not inherit or de_fault
to_resume, to_fetch_registers, to_store_registers,
to_thread_alive, to_find_new_threads.
(target_resume): Adjust.
(target_thread_alive, target_find_new_threads): New.
(debug_to_resume, debug_to_fetch_registers): Delete.
(target_fetch_registers): New.
(debug_to_store_registers): Delete.
(target_store_registers): New.
(debug_to_thread_alive, debug_to_find_new_threads): Delete.
(setup_target_debug): Adjust.
* gdbcore.h (core_ops): Delete declaration.
* inf-ptrace.c, linux-nat.c, remote.c, amd64-linux-nat.c,
inf-child.c, linux-thread-db.c, bsd-uthread.c, inf-ttrace.c,
i386-sol2-tdep.c, darwin-nat.c, gnu-nat.c, go32-nat.c,
hpux-thread.c, i386-linux-nat.c, i386fbsd-nat.c, monitor.c,
nto-procfs.c, remote-m32r-sdi.c, remote-mips.c, windows-nat.c,
alphabsd-nat.c, amd64bsd-nat.c, arm-linux-nat.c, armnbsd-nat.c,
bsd-kvm.c, hppa-hpux-nat.c, hppa-linux-nat.c, hppabsd-nat.c,
hppanbsd-nat.c, i386-darwin-nat.c, i386bsd-nat.c,
ia64-linux-nat.c, m32r-linux-nat.c, m68kbsd-nat.c,
m68klinux-nat.c, m88kbsd-nat.c, mips-linux-nat.c,
mips64obsd-nat.c, mipsnbsd-nat.c, ppc-linux-nat.c, ppcnbsd-nat.c,
ppcobsd-nat.c, remote-sim.c, rs6000-nat.c, s390-nat.c,
shnbsd-nat.c, sparc-nat.c, sparc-nat.h, spu-linux-nat.c,
vaxbsd-nat.c, xtensa-linux-nat.c: Adjust to target_ops changes.
* gdbarch.sh (core_pid_to_str): New gdbarch callback.
* gdbarch.h, gdbarch.c: Regenerate.
* sol2-tdep.c: Include "inferior.h".
(sol2_core_pid_to_str): New.
* sol2-tdep.h (sol2_core_pid_to_str): Declare.
* amd64-sol2-tdep.c (amd64_sol2_init_abi): Set it.
* sparc-sol2-tdep.c (sparc32_sol2_init_abi): Set it.
* sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Set it.
* i386-sol2-tdep.c (i386_sol2_init_abi): Set it.
2009-02-23 01:03:50 +01:00
|
|
|
windows_thread_alive (struct target_ops *ops, ptid_t ptid)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2008-08-08 15:16:17 +02:00
|
|
|
int tid;
|
|
|
|
|
|
|
|
gdb_assert (ptid_get_tid (ptid) != 0);
|
|
|
|
tid = ptid_get_tid (ptid);
|
2001-05-04 06:15:33 +02:00
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
return WaitForSingleObject (thread_rec (tid, FALSE)->h, 0) == WAIT_OBJECT_0
|
|
|
|
? FALSE : TRUE;
|
1998-11-05 15:08:48 +01:00
|
|
|
}
|
|
|
|
|
2012-03-02 06:38:51 +01:00
|
|
|
/* -Wmissing-prototypes */
|
|
|
|
extern initialize_file_ftype _initialize_check_for_gdb_ini;
|
|
|
|
|
2001-11-24 19:21:27 +01:00
|
|
|
void
|
|
|
|
_initialize_check_for_gdb_ini (void)
|
|
|
|
{
|
|
|
|
char *homedir;
|
|
|
|
if (inhibit_gdbinit)
|
|
|
|
return;
|
|
|
|
|
|
|
|
homedir = getenv ("HOME");
|
|
|
|
if (homedir)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
char *oldini = (char *) alloca (strlen (homedir) +
|
|
|
|
sizeof ("/gdb.ini"));
|
|
|
|
strcpy (oldini, homedir);
|
|
|
|
p = strchr (oldini, '\0');
|
2011-03-23 19:23:56 +01:00
|
|
|
if (p > oldini && !IS_DIR_SEPARATOR (p[-1]))
|
2001-11-24 19:21:27 +01:00
|
|
|
*p++ = '/';
|
|
|
|
strcpy (p, "gdb.ini");
|
|
|
|
if (access (oldini, 0) == 0)
|
|
|
|
{
|
|
|
|
int len = strlen (oldini);
|
|
|
|
char *newini = alloca (len + 1);
|
2012-11-13 10:46:11 +01:00
|
|
|
|
|
|
|
xsnprintf (newini, len + 1, "%.*s.gdbinit",
|
|
|
|
(int) (len - (sizeof ("gdb.ini") - 1)), oldini);
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
warning (_("obsolete '%s' found. Rename to '%s'."), oldini, newini);
|
2001-11-24 19:21:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-01 19:42:08 +01:00
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
/* Define dummy functions which always return error for the rare cases where
|
2011-01-12 02:23:29 +01:00
|
|
|
these functions could not be found. */
|
2009-03-22 22:27:30 +01:00
|
|
|
static BOOL WINAPI
|
|
|
|
bad_DebugActiveProcessStop (DWORD w)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
static BOOL WINAPI
|
|
|
|
bad_DebugBreakProcess (HANDLE w)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
static BOOL WINAPI
|
|
|
|
bad_DebugSetProcessKillOnExit (BOOL w)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
static BOOL WINAPI
|
|
|
|
bad_EnumProcessModules (HANDLE w, HMODULE *x, DWORD y, LPDWORD z)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-03-06 20:27:09 +01:00
|
|
|
|
|
|
|
#ifdef __USEWIDE
|
2009-03-22 22:27:30 +01:00
|
|
|
static DWORD WINAPI
|
2010-03-06 20:27:09 +01:00
|
|
|
bad_GetModuleFileNameExW (HANDLE w, HMODULE x, LPWSTR y, DWORD z)
|
2009-03-22 22:27:30 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2010-03-01 10:09:24 +01:00
|
|
|
#else
|
|
|
|
static DWORD WINAPI
|
2010-03-06 20:27:09 +01:00
|
|
|
bad_GetModuleFileNameExA (HANDLE w, HMODULE x, LPSTR y, DWORD z)
|
2010-03-01 10:09:24 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2010-03-06 20:27:09 +01:00
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
static BOOL WINAPI
|
|
|
|
bad_GetModuleInformation (HANDLE w, HMODULE x, LPMODULEINFO y, DWORD z)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-03-22 23:13:21 +01:00
|
|
|
static BOOL WINAPI
|
|
|
|
bad_OpenProcessToken (HANDLE w, DWORD x, PHANDLE y)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-05-31 09:00:41 +02:00
|
|
|
static BOOL WINAPI
|
|
|
|
bad_GetCurrentConsoleFont (HANDLE w, BOOL bMaxWindow, CONSOLE_FONT_INFO *f)
|
|
|
|
{
|
|
|
|
f->nFont = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
static COORD WINAPI
|
|
|
|
bad_GetConsoleFontSize (HANDLE w, DWORD nFont)
|
|
|
|
{
|
|
|
|
COORD size;
|
|
|
|
size.X = 8;
|
|
|
|
size.Y = 12;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2012-03-02 06:38:51 +01:00
|
|
|
/* -Wmissing-prototypes */
|
|
|
|
extern initialize_file_ftype _initialize_loadable;
|
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
/* Load any functions which may not be available in ancient versions
|
2011-01-12 02:23:29 +01:00
|
|
|
of Windows. */
|
2012-03-02 06:38:51 +01:00
|
|
|
|
2008-01-01 19:42:08 +01:00
|
|
|
void
|
2009-03-22 22:27:30 +01:00
|
|
|
_initialize_loadable (void)
|
2008-01-01 19:42:08 +01:00
|
|
|
{
|
2009-03-22 22:27:30 +01:00
|
|
|
HMODULE hm = NULL;
|
|
|
|
|
|
|
|
hm = LoadLibrary ("kernel32.dll");
|
|
|
|
if (hm)
|
2008-01-01 19:42:08 +01:00
|
|
|
{
|
2010-03-06 20:27:09 +01:00
|
|
|
DebugActiveProcessStop = (void *)
|
2009-03-22 22:27:30 +01:00
|
|
|
GetProcAddress (hm, "DebugActiveProcessStop");
|
2010-03-06 20:27:09 +01:00
|
|
|
DebugBreakProcess = (void *)
|
2009-03-22 22:27:30 +01:00
|
|
|
GetProcAddress (hm, "DebugBreakProcess");
|
2010-03-06 20:27:09 +01:00
|
|
|
DebugSetProcessKillOnExit = (void *)
|
2009-03-22 22:27:30 +01:00
|
|
|
GetProcAddress (hm, "DebugSetProcessKillOnExit");
|
2010-05-31 09:00:41 +02:00
|
|
|
GetConsoleFontSize = (void *)
|
|
|
|
GetProcAddress (hm, "GetConsoleFontSize");
|
|
|
|
GetCurrentConsoleFont = (void *)
|
|
|
|
GetProcAddress (hm, "GetCurrentConsoleFont");
|
2009-03-22 22:27:30 +01:00
|
|
|
}
|
2008-01-01 19:42:08 +01:00
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
/* Set variables to dummy versions of these processes if the function
|
2011-01-12 02:23:29 +01:00
|
|
|
wasn't found in kernel32.dll. */
|
2010-03-06 20:27:09 +01:00
|
|
|
if (!DebugBreakProcess)
|
|
|
|
DebugBreakProcess = bad_DebugBreakProcess;
|
|
|
|
if (!DebugActiveProcessStop || !DebugSetProcessKillOnExit)
|
2009-03-22 22:27:30 +01:00
|
|
|
{
|
2010-03-06 20:27:09 +01:00
|
|
|
DebugActiveProcessStop = bad_DebugActiveProcessStop;
|
|
|
|
DebugSetProcessKillOnExit = bad_DebugSetProcessKillOnExit;
|
2009-03-22 22:27:30 +01:00
|
|
|
}
|
2010-05-31 09:00:41 +02:00
|
|
|
if (!GetConsoleFontSize)
|
|
|
|
GetConsoleFontSize = bad_GetConsoleFontSize;
|
|
|
|
if (!GetCurrentConsoleFont)
|
|
|
|
GetCurrentConsoleFont = bad_GetCurrentConsoleFont;
|
2008-01-01 19:42:08 +01:00
|
|
|
|
2009-03-22 22:27:30 +01:00
|
|
|
/* Load optional functions used for retrieving filename information
|
2011-01-12 02:23:29 +01:00
|
|
|
associated with the currently debugged process or its dlls. */
|
2009-03-22 22:27:30 +01:00
|
|
|
hm = LoadLibrary ("psapi.dll");
|
|
|
|
if (hm)
|
|
|
|
{
|
2010-03-06 20:27:09 +01:00
|
|
|
EnumProcessModules = (void *)
|
2009-03-22 22:27:30 +01:00
|
|
|
GetProcAddress (hm, "EnumProcessModules");
|
2010-03-06 20:27:09 +01:00
|
|
|
GetModuleInformation = (void *)
|
2009-03-22 22:27:30 +01:00
|
|
|
GetProcAddress (hm, "GetModuleInformation");
|
2010-03-06 20:27:09 +01:00
|
|
|
GetModuleFileNameEx = (void *)
|
|
|
|
GetProcAddress (hm, GetModuleFileNameEx_name);
|
2008-01-01 19:42:08 +01:00
|
|
|
}
|
|
|
|
|
2010-03-06 20:27:09 +01:00
|
|
|
if (!EnumProcessModules || !GetModuleInformation || !GetModuleFileNameEx)
|
2009-03-22 22:27:30 +01:00
|
|
|
{
|
|
|
|
/* Set variables to dummy versions of these processes if the function
|
2011-01-12 02:23:29 +01:00
|
|
|
wasn't found in psapi.dll. */
|
2010-03-06 20:27:09 +01:00
|
|
|
EnumProcessModules = bad_EnumProcessModules;
|
|
|
|
GetModuleInformation = bad_GetModuleInformation;
|
|
|
|
GetModuleFileNameEx = bad_GetModuleFileNameEx;
|
2011-01-12 02:23:29 +01:00
|
|
|
/* This will probably fail on Windows 9x/Me. Let the user know
|
|
|
|
that we're missing some functionality. */
|
|
|
|
warning(_("\
|
|
|
|
cannot automatically find executable file or library to read symbols.\n\
|
|
|
|
Use \"file\" or \"dll\" command to load executable/libraries directly."));
|
2009-03-22 23:13:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hm = LoadLibrary ("advapi32.dll");
|
|
|
|
if (hm)
|
|
|
|
{
|
2010-03-06 20:27:09 +01:00
|
|
|
OpenProcessToken = (void *) GetProcAddress (hm, "OpenProcessToken");
|
|
|
|
LookupPrivilegeValueA = (void *)
|
2009-03-22 23:13:21 +01:00
|
|
|
GetProcAddress (hm, "LookupPrivilegeValueA");
|
2010-03-06 20:27:09 +01:00
|
|
|
AdjustTokenPrivileges = (void *)
|
2009-03-22 23:13:21 +01:00
|
|
|
GetProcAddress (hm, "AdjustTokenPrivileges");
|
|
|
|
/* Only need to set one of these since if OpenProcessToken fails nothing
|
2011-01-12 02:23:29 +01:00
|
|
|
else is needed. */
|
|
|
|
if (!OpenProcessToken || !LookupPrivilegeValueA
|
|
|
|
|| !AdjustTokenPrivileges)
|
2010-03-06 20:27:09 +01:00
|
|
|
OpenProcessToken = bad_OpenProcessToken;
|
2009-03-22 22:27:30 +01:00
|
|
|
}
|
2008-01-01 19:42:08 +01:00
|
|
|
}
|