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
|
|
|
|
2013-01-01 07:41:43 +01:00
|
|
|
Copyright (C) 1995-2013 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"
|
|
|
|
#include "target.h"
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 19:31:35 +01:00
|
|
|
#include "exceptions.h"
|
1995-10-09 22:54:26 +01:00
|
|
|
#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 <stdlib.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
|
2006-02-20 06:10:51 +01:00
|
|
|
#include <signal.h>
|
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"
|
remove gdb_string.h
This removes gdb_string.h. This patch is purely mechanical. I
created it by running the two commands:
git rm common/gdb_string.h
perl -pi -e's/"gdb_string.h"/<string.h>/;' *.[chyl] */*.[chyl]
2013-11-18 Tom Tromey <tromey@redhat.com>
* common/gdb_string.h: Remove.
* aarch64-tdep.c: Use string.h, not gdb_string.h.
* ada-exp.y: Use string.h, not gdb_string.h.
* ada-lang.c: Use string.h, not gdb_string.h.
* ada-lex.l: Use string.h, not gdb_string.h.
* ada-typeprint.c: Use string.h, not gdb_string.h.
* ada-valprint.c: Use string.h, not gdb_string.h.
* aix-thread.c: Use string.h, not gdb_string.h.
* alpha-linux-tdep.c: Use string.h, not gdb_string.h.
* alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
* alpha-nat.c: Use string.h, not gdb_string.h.
* alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
* alpha-tdep.c: Use string.h, not gdb_string.h.
* alphanbsd-tdep.c: Use string.h, not gdb_string.h.
* amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
* amd64-linux-nat.c: Use string.h, not gdb_string.h.
* amd64-linux-tdep.c: Use string.h, not gdb_string.h.
* amd64-nat.c: Use string.h, not gdb_string.h.
* amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
* amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
* amd64obsd-tdep.c: Use string.h, not gdb_string.h.
* arch-utils.c: Use string.h, not gdb_string.h.
* arm-linux-nat.c: Use string.h, not gdb_string.h.
* arm-linux-tdep.c: Use string.h, not gdb_string.h.
* arm-tdep.c: Use string.h, not gdb_string.h.
* arm-wince-tdep.c: Use string.h, not gdb_string.h.
* armbsd-tdep.c: Use string.h, not gdb_string.h.
* armnbsd-nat.c: Use string.h, not gdb_string.h.
* armnbsd-tdep.c: Use string.h, not gdb_string.h.
* armobsd-tdep.c: Use string.h, not gdb_string.h.
* avr-tdep.c: Use string.h, not gdb_string.h.
* ax-gdb.c: Use string.h, not gdb_string.h.
* ax-general.c: Use string.h, not gdb_string.h.
* bcache.c: Use string.h, not gdb_string.h.
* bfin-tdep.c: Use string.h, not gdb_string.h.
* breakpoint.c: Use string.h, not gdb_string.h.
* build-id.c: Use string.h, not gdb_string.h.
* buildsym.c: Use string.h, not gdb_string.h.
* c-exp.y: Use string.h, not gdb_string.h.
* c-lang.c: Use string.h, not gdb_string.h.
* c-typeprint.c: Use string.h, not gdb_string.h.
* c-valprint.c: Use string.h, not gdb_string.h.
* charset.c: Use string.h, not gdb_string.h.
* cli-out.c: Use string.h, not gdb_string.h.
* cli/cli-cmds.c: Use string.h, not gdb_string.h.
* cli/cli-decode.c: Use string.h, not gdb_string.h.
* cli/cli-dump.c: Use string.h, not gdb_string.h.
* cli/cli-interp.c: Use string.h, not gdb_string.h.
* cli/cli-logging.c: Use string.h, not gdb_string.h.
* cli/cli-script.c: Use string.h, not gdb_string.h.
* cli/cli-setshow.c: Use string.h, not gdb_string.h.
* cli/cli-utils.c: Use string.h, not gdb_string.h.
* coffread.c: Use string.h, not gdb_string.h.
* common/common-utils.c: Use string.h, not gdb_string.h.
* common/filestuff.c: Use string.h, not gdb_string.h.
* common/linux-procfs.c: Use string.h, not gdb_string.h.
* common/linux-ptrace.c: Use string.h, not gdb_string.h.
* common/signals.c: Use string.h, not gdb_string.h.
* common/vec.h: Use string.h, not gdb_string.h.
* core-regset.c: Use string.h, not gdb_string.h.
* corefile.c: Use string.h, not gdb_string.h.
* corelow.c: Use string.h, not gdb_string.h.
* cp-abi.c: Use string.h, not gdb_string.h.
* cp-support.c: Use string.h, not gdb_string.h.
* cp-valprint.c: Use string.h, not gdb_string.h.
* cris-tdep.c: Use string.h, not gdb_string.h.
* d-lang.c: Use string.h, not gdb_string.h.
* dbxread.c: Use string.h, not gdb_string.h.
* dcache.c: Use string.h, not gdb_string.h.
* demangle.c: Use string.h, not gdb_string.h.
* dicos-tdep.c: Use string.h, not gdb_string.h.
* disasm.c: Use string.h, not gdb_string.h.
* doublest.c: Use string.h, not gdb_string.h.
* dsrec.c: Use string.h, not gdb_string.h.
* dummy-frame.c: Use string.h, not gdb_string.h.
* dwarf2-frame.c: Use string.h, not gdb_string.h.
* dwarf2loc.c: Use string.h, not gdb_string.h.
* dwarf2read.c: Use string.h, not gdb_string.h.
* elfread.c: Use string.h, not gdb_string.h.
* environ.c: Use string.h, not gdb_string.h.
* eval.c: Use string.h, not gdb_string.h.
* event-loop.c: Use string.h, not gdb_string.h.
* exceptions.c: Use string.h, not gdb_string.h.
* exec.c: Use string.h, not gdb_string.h.
* expprint.c: Use string.h, not gdb_string.h.
* f-exp.y: Use string.h, not gdb_string.h.
* f-lang.c: Use string.h, not gdb_string.h.
* f-typeprint.c: Use string.h, not gdb_string.h.
* f-valprint.c: Use string.h, not gdb_string.h.
* fbsd-nat.c: Use string.h, not gdb_string.h.
* findcmd.c: Use string.h, not gdb_string.h.
* findvar.c: Use string.h, not gdb_string.h.
* fork-child.c: Use string.h, not gdb_string.h.
* frame.c: Use string.h, not gdb_string.h.
* frv-linux-tdep.c: Use string.h, not gdb_string.h.
* frv-tdep.c: Use string.h, not gdb_string.h.
* gdb.c: Use string.h, not gdb_string.h.
* gdb_bfd.c: Use string.h, not gdb_string.h.
* gdbarch.c: Use string.h, not gdb_string.h.
* gdbtypes.c: Use string.h, not gdb_string.h.
* gnu-nat.c: Use string.h, not gdb_string.h.
* gnu-v2-abi.c: Use string.h, not gdb_string.h.
* gnu-v3-abi.c: Use string.h, not gdb_string.h.
* go-exp.y: Use string.h, not gdb_string.h.
* go-lang.c: Use string.h, not gdb_string.h.
* go32-nat.c: Use string.h, not gdb_string.h.
* hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
* hppa-linux-nat.c: Use string.h, not gdb_string.h.
* hppanbsd-tdep.c: Use string.h, not gdb_string.h.
* hppaobsd-tdep.c: Use string.h, not gdb_string.h.
* i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
* i386-dicos-tdep.c: Use string.h, not gdb_string.h.
* i386-linux-nat.c: Use string.h, not gdb_string.h.
* i386-linux-tdep.c: Use string.h, not gdb_string.h.
* i386-nto-tdep.c: Use string.h, not gdb_string.h.
* i386-sol2-tdep.c: Use string.h, not gdb_string.h.
* i386-tdep.c: Use string.h, not gdb_string.h.
* i386bsd-tdep.c: Use string.h, not gdb_string.h.
* i386gnu-nat.c: Use string.h, not gdb_string.h.
* i386nbsd-tdep.c: Use string.h, not gdb_string.h.
* i386obsd-tdep.c: Use string.h, not gdb_string.h.
* i387-tdep.c: Use string.h, not gdb_string.h.
* ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
* ia64-linux-nat.c: Use string.h, not gdb_string.h.
* inf-child.c: Use string.h, not gdb_string.h.
* inf-ptrace.c: Use string.h, not gdb_string.h.
* inf-ttrace.c: Use string.h, not gdb_string.h.
* infcall.c: Use string.h, not gdb_string.h.
* infcmd.c: Use string.h, not gdb_string.h.
* inflow.c: Use string.h, not gdb_string.h.
* infrun.c: Use string.h, not gdb_string.h.
* interps.c: Use string.h, not gdb_string.h.
* iq2000-tdep.c: Use string.h, not gdb_string.h.
* irix5-nat.c: Use string.h, not gdb_string.h.
* jv-exp.y: Use string.h, not gdb_string.h.
* jv-lang.c: Use string.h, not gdb_string.h.
* jv-typeprint.c: Use string.h, not gdb_string.h.
* jv-valprint.c: Use string.h, not gdb_string.h.
* language.c: Use string.h, not gdb_string.h.
* linux-fork.c: Use string.h, not gdb_string.h.
* linux-nat.c: Use string.h, not gdb_string.h.
* lm32-tdep.c: Use string.h, not gdb_string.h.
* m2-exp.y: Use string.h, not gdb_string.h.
* m2-typeprint.c: Use string.h, not gdb_string.h.
* m32c-tdep.c: Use string.h, not gdb_string.h.
* m32r-linux-nat.c: Use string.h, not gdb_string.h.
* m32r-linux-tdep.c: Use string.h, not gdb_string.h.
* m32r-rom.c: Use string.h, not gdb_string.h.
* m32r-tdep.c: Use string.h, not gdb_string.h.
* m68hc11-tdep.c: Use string.h, not gdb_string.h.
* m68k-tdep.c: Use string.h, not gdb_string.h.
* m68kbsd-tdep.c: Use string.h, not gdb_string.h.
* m68klinux-nat.c: Use string.h, not gdb_string.h.
* m68klinux-tdep.c: Use string.h, not gdb_string.h.
* m88k-tdep.c: Use string.h, not gdb_string.h.
* macrocmd.c: Use string.h, not gdb_string.h.
* main.c: Use string.h, not gdb_string.h.
* mdebugread.c: Use string.h, not gdb_string.h.
* mem-break.c: Use string.h, not gdb_string.h.
* memattr.c: Use string.h, not gdb_string.h.
* memory-map.c: Use string.h, not gdb_string.h.
* mep-tdep.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
* mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
* mi/mi-cmds.c: Use string.h, not gdb_string.h.
* mi/mi-console.c: Use string.h, not gdb_string.h.
* mi/mi-getopt.c: Use string.h, not gdb_string.h.
* mi/mi-interp.c: Use string.h, not gdb_string.h.
* mi/mi-main.c: Use string.h, not gdb_string.h.
* mi/mi-parse.c: Use string.h, not gdb_string.h.
* microblaze-rom.c: Use string.h, not gdb_string.h.
* microblaze-tdep.c: Use string.h, not gdb_string.h.
* mingw-hdep.c: Use string.h, not gdb_string.h.
* minidebug.c: Use string.h, not gdb_string.h.
* minsyms.c: Use string.h, not gdb_string.h.
* mips-irix-tdep.c: Use string.h, not gdb_string.h.
* mips-linux-tdep.c: Use string.h, not gdb_string.h.
* mips-tdep.c: Use string.h, not gdb_string.h.
* mips64obsd-tdep.c: Use string.h, not gdb_string.h.
* mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
* mipsread.c: Use string.h, not gdb_string.h.
* mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
* mn10300-tdep.c: Use string.h, not gdb_string.h.
* monitor.c: Use string.h, not gdb_string.h.
* moxie-tdep.c: Use string.h, not gdb_string.h.
* mt-tdep.c: Use string.h, not gdb_string.h.
* nbsd-tdep.c: Use string.h, not gdb_string.h.
* nios2-linux-tdep.c: Use string.h, not gdb_string.h.
* nto-procfs.c: Use string.h, not gdb_string.h.
* nto-tdep.c: Use string.h, not gdb_string.h.
* objc-lang.c: Use string.h, not gdb_string.h.
* objfiles.c: Use string.h, not gdb_string.h.
* opencl-lang.c: Use string.h, not gdb_string.h.
* osabi.c: Use string.h, not gdb_string.h.
* osdata.c: Use string.h, not gdb_string.h.
* p-exp.y: Use string.h, not gdb_string.h.
* p-lang.c: Use string.h, not gdb_string.h.
* p-typeprint.c: Use string.h, not gdb_string.h.
* parse.c: Use string.h, not gdb_string.h.
* posix-hdep.c: Use string.h, not gdb_string.h.
* ppc-linux-nat.c: Use string.h, not gdb_string.h.
* ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
* ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
* ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
* ppcobsd-tdep.c: Use string.h, not gdb_string.h.
* printcmd.c: Use string.h, not gdb_string.h.
* procfs.c: Use string.h, not gdb_string.h.
* prologue-value.c: Use string.h, not gdb_string.h.
* python/py-auto-load.c: Use string.h, not gdb_string.h.
* python/py-gdb-readline.c: Use string.h, not gdb_string.h.
* ravenscar-thread.c: Use string.h, not gdb_string.h.
* regcache.c: Use string.h, not gdb_string.h.
* registry.c: Use string.h, not gdb_string.h.
* remote-fileio.c: Use string.h, not gdb_string.h.
* remote-m32r-sdi.c: Use string.h, not gdb_string.h.
* remote-mips.c: Use string.h, not gdb_string.h.
* remote-sim.c: Use string.h, not gdb_string.h.
* remote.c: Use string.h, not gdb_string.h.
* reverse.c: Use string.h, not gdb_string.h.
* rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
* ser-base.c: Use string.h, not gdb_string.h.
* ser-go32.c: Use string.h, not gdb_string.h.
* ser-mingw.c: Use string.h, not gdb_string.h.
* ser-pipe.c: Use string.h, not gdb_string.h.
* ser-tcp.c: Use string.h, not gdb_string.h.
* ser-unix.c: Use string.h, not gdb_string.h.
* serial.c: Use string.h, not gdb_string.h.
* sh-tdep.c: Use string.h, not gdb_string.h.
* sh64-tdep.c: Use string.h, not gdb_string.h.
* shnbsd-tdep.c: Use string.h, not gdb_string.h.
* skip.c: Use string.h, not gdb_string.h.
* sol-thread.c: Use string.h, not gdb_string.h.
* solib-dsbt.c: Use string.h, not gdb_string.h.
* solib-frv.c: Use string.h, not gdb_string.h.
* solib-osf.c: Use string.h, not gdb_string.h.
* solib-spu.c: Use string.h, not gdb_string.h.
* solib-target.c: Use string.h, not gdb_string.h.
* solib.c: Use string.h, not gdb_string.h.
* somread.c: Use string.h, not gdb_string.h.
* source.c: Use string.h, not gdb_string.h.
* sparc-nat.c: Use string.h, not gdb_string.h.
* sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
* sparc-tdep.c: Use string.h, not gdb_string.h.
* sparc64-tdep.c: Use string.h, not gdb_string.h.
* sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
* sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
* sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
* spu-linux-nat.c: Use string.h, not gdb_string.h.
* spu-multiarch.c: Use string.h, not gdb_string.h.
* spu-tdep.c: Use string.h, not gdb_string.h.
* stabsread.c: Use string.h, not gdb_string.h.
* stack.c: Use string.h, not gdb_string.h.
* std-regs.c: Use string.h, not gdb_string.h.
* symfile.c: Use string.h, not gdb_string.h.
* symmisc.c: Use string.h, not gdb_string.h.
* symtab.c: Use string.h, not gdb_string.h.
* target.c: Use string.h, not gdb_string.h.
* thread.c: Use string.h, not gdb_string.h.
* tilegx-linux-nat.c: Use string.h, not gdb_string.h.
* tilegx-tdep.c: Use string.h, not gdb_string.h.
* top.c: Use string.h, not gdb_string.h.
* tracepoint.c: Use string.h, not gdb_string.h.
* tui/tui-command.c: Use string.h, not gdb_string.h.
* tui/tui-data.c: Use string.h, not gdb_string.h.
* tui/tui-disasm.c: Use string.h, not gdb_string.h.
* tui/tui-file.c: Use string.h, not gdb_string.h.
* tui/tui-layout.c: Use string.h, not gdb_string.h.
* tui/tui-out.c: Use string.h, not gdb_string.h.
* tui/tui-regs.c: Use string.h, not gdb_string.h.
* tui/tui-source.c: Use string.h, not gdb_string.h.
* tui/tui-stack.c: Use string.h, not gdb_string.h.
* tui/tui-win.c: Use string.h, not gdb_string.h.
* tui/tui-windata.c: Use string.h, not gdb_string.h.
* tui/tui-winsource.c: Use string.h, not gdb_string.h.
* typeprint.c: Use string.h, not gdb_string.h.
* ui-file.c: Use string.h, not gdb_string.h.
* ui-out.c: Use string.h, not gdb_string.h.
* user-regs.c: Use string.h, not gdb_string.h.
* utils.c: Use string.h, not gdb_string.h.
* v850-tdep.c: Use string.h, not gdb_string.h.
* valarith.c: Use string.h, not gdb_string.h.
* valops.c: Use string.h, not gdb_string.h.
* valprint.c: Use string.h, not gdb_string.h.
* value.c: Use string.h, not gdb_string.h.
* varobj.c: Use string.h, not gdb_string.h.
* vax-tdep.c: Use string.h, not gdb_string.h.
* vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
* vaxobsd-tdep.c: Use string.h, not gdb_string.h.
* windows-nat.c: Use string.h, not gdb_string.h.
* xcoffread.c: Use string.h, not gdb_string.h.
* xml-support.c: Use string.h, not gdb_string.h.
* xstormy16-tdep.c: Use string.h, not gdb_string.h.
* xtensa-linux-nat.c: Use string.h, not gdb_string.h.
2013-11-06 15:14:23 +01:00
|
|
|
#include <string.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"
|
2009-05-14 11:37:00 +02:00
|
|
|
#include "i386-nat.h"
|
2010-02-12 05:55:15 +01:00
|
|
|
#include "complaints.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
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
static struct target_ops windows_ops;
|
2005-10-31 23:50:58 +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,
|
|
|
|
CONTEXT_DEBUGGER = (CONTEXT_FULL | CONTEXT_FLOATING_POINT)
|
|
|
|
};
|
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
|
|
|
|
|
2002-02-04 12:00:10 +01:00
|
|
|
#define CONTEXT_DEBUGGER_DR CONTEXT_DEBUGGER | 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
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
static void windows_stop (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. */
|
1998-11-05 15:08:48 +01:00
|
|
|
typedef struct thread_info_struct
|
1999-07-07 22:11:14 +02:00
|
|
|
{
|
|
|
|
struct thread_info_struct *next;
|
|
|
|
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
|
|
|
}
|
|
|
|
thread_info;
|
1999-12-07 04:56:07 +01:00
|
|
|
|
2000-06-03 07:04:14 +02:00
|
|
|
static 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 */
|
|
|
|
static 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. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static thread_info *
|
|
|
|
thread_rec (DWORD id, int get_context)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
1998-11-05 15:08:48 +01:00
|
|
|
thread_info *th;
|
|
|
|
|
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
|
|
|
|
2013-06-11 12:20:11 +02:00
|
|
|
warning (_("SuspendThread (tid=0x%x) failed."
|
2013-06-11 13:01:46 +02:00
|
|
|
" (winerr %u)"),
|
2013-06-11 12:20:11 +02:00
|
|
|
(unsigned) id, (unsigned) err);
|
2007-11-24 13:13:28 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
th->suspended = 1;
|
|
|
|
}
|
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. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static 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
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2005-11-01 15:07:00 +01:00
|
|
|
th = XZALLOC (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
|
|
|
{
|
1998-11-05 15:08:48 +01:00
|
|
|
thread_info *th = &thread_head;
|
|
|
|
|
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
|
|
|
{
|
1998-11-05 15:08:48 +01:00
|
|
|
thread_info *here = th->next;
|
|
|
|
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
|
|
|
{
|
|
|
|
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
|
|
|
{
|
1998-11-05 15:08:48 +01:00
|
|
|
thread_info *here = th->next;
|
|
|
|
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
|
|
|
{
|
|
|
|
thread_info *th = current_thread;
|
|
|
|
th->context.ContextFlags = CONTEXT_DEBUGGER_DR;
|
|
|
|
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
|
|
|
|
2011-04-19 20:04:11 +02:00
|
|
|
/* Get the name of a given module at given base address. If base_address
|
2008-01-01 19:42:08 +01:00
|
|
|
is zero return the first loaded module (which is always the name of the
|
|
|
|
executable). */
|
2005-10-31 23:50:58 +01:00
|
|
|
static int
|
2009-01-09 11:58:26 +01:00
|
|
|
get_module_name (LPVOID base_address, char *dll_name_ret)
|
1999-12-07 04:56:07 +01:00
|
|
|
{
|
|
|
|
DWORD len;
|
|
|
|
MODULEINFO mi;
|
|
|
|
int i;
|
2000-08-27 06:21:35 +02:00
|
|
|
HMODULE dh_buf[1];
|
2011-01-12 02:23:29 +01:00
|
|
|
HMODULE *DllHandle = dh_buf; /* Set to temporary storage for
|
|
|
|
initial query. */
|
1999-12-07 04:56:07 +01:00
|
|
|
DWORD cbNeeded;
|
2008-01-01 19:42:08 +01:00
|
|
|
#ifdef __CYGWIN__
|
2010-03-06 20:27:09 +01:00
|
|
|
cygwin_buf_t pathbuf[__PMAX]; /* Temporary storage prior to converting to
|
|
|
|
posix form. __PMAX is always enough
|
2010-03-01 10:09:24 +01:00
|
|
|
as long as SO_NAME_MAX_PATH_SIZE is defined
|
2011-01-12 02:23:29 +01:00
|
|
|
as 512. */
|
2008-01-01 19:42:08 +01:00
|
|
|
#endif
|
1999-12-07 04:56:07 +01:00
|
|
|
|
|
|
|
cbNeeded = 0;
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Find size of buffer needed to handle list of modules loaded in
|
|
|
|
inferior. */
|
2009-03-22 22:27:30 +01:00
|
|
|
if (!EnumProcessModules (current_process_handle, DllHandle,
|
|
|
|
sizeof (HMODULE), &cbNeeded) || !cbNeeded)
|
1999-12-07 04:56:07 +01:00
|
|
|
goto failed;
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Allocate correct amount of space for module list. */
|
2000-08-27 06:21:35 +02:00
|
|
|
DllHandle = (HMODULE *) alloca (cbNeeded);
|
1999-12-07 04:56:07 +01:00
|
|
|
if (!DllHandle)
|
|
|
|
goto failed;
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Get the list of modules. */
|
2009-03-22 22:27:30 +01:00
|
|
|
if (!EnumProcessModules (current_process_handle, DllHandle, cbNeeded,
|
2008-01-01 19:42:08 +01:00
|
|
|
&cbNeeded))
|
1999-12-07 04:56:07 +01:00
|
|
|
goto failed;
|
|
|
|
|
2000-06-03 07:04:14 +02:00
|
|
|
for (i = 0; i < (int) (cbNeeded / sizeof (HMODULE)); i++)
|
1999-12-07 04:56:07 +01:00
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Get information on this module. */
|
2009-03-22 22:27:30 +01:00
|
|
|
if (!GetModuleInformation (current_process_handle, DllHandle[i],
|
|
|
|
&mi, sizeof (mi)))
|
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 (_("Can't get module info"));
|
1999-12-07 04:56:07 +01:00
|
|
|
|
2009-01-09 11:58:26 +01:00
|
|
|
if (!base_address || mi.lpBaseOfDll == base_address)
|
2008-01-01 19:42:08 +01:00
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Try to find the name of the given module. */
|
2010-03-01 10:09:24 +01:00
|
|
|
#ifdef __CYGWIN__
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Cygwin prefers that the path be in /x/y/z format. */
|
2010-03-06 20:27:09 +01:00
|
|
|
len = GetModuleFileNameEx (current_process_handle,
|
|
|
|
DllHandle[i], pathbuf, __PMAX);
|
2010-03-01 10:09:24 +01:00
|
|
|
if (len == 0)
|
2013-02-27 20:42:26 +01:00
|
|
|
error (_("Error getting dll name: %u."),
|
|
|
|
(unsigned) GetLastError ());
|
2010-03-01 10:09:24 +01:00
|
|
|
if (cygwin_conv_path (CCP_WIN_W_TO_POSIX, pathbuf, dll_name_ret,
|
2010-03-06 20:27:09 +01:00
|
|
|
__PMAX) < 0)
|
2010-03-01 10:09:24 +01:00
|
|
|
error (_("Error converting dll name to POSIX: %d."), errno);
|
|
|
|
#else
|
2010-03-06 20:27:09 +01:00
|
|
|
len = GetModuleFileNameEx (current_process_handle,
|
|
|
|
DllHandle[i], dll_name_ret, __PMAX);
|
2008-01-01 19:42:08 +01:00
|
|
|
if (len == 0)
|
2011-01-12 02:23:29 +01:00
|
|
|
error (_("Error getting dll name: %u."),
|
|
|
|
(unsigned) GetLastError ());
|
2008-01-01 19:42:08 +01:00
|
|
|
#endif
|
|
|
|
return 1; /* success */
|
|
|
|
}
|
1999-12-07 04:56:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
failed:
|
|
|
|
dll_name_ret[0] = '\0';
|
2008-01-01 19:42:08 +01:00
|
|
|
return 0; /* failure */
|
1999-12-07 04:56:07 +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
|
|
|
|
2000-06-04 02:28:17 +02:00
|
|
|
/* Call symbol_file_add with stderr redirected. We don't care if there
|
2011-01-12 02:23:29 +01:00
|
|
|
are errors. */
|
2000-04-21 04:26:14 +02:00
|
|
|
static int
|
|
|
|
safe_symbol_file_add_stub (void *argv)
|
|
|
|
{
|
2005-10-31 23:50:58 +01:00
|
|
|
#define p ((struct safe_symbol_file_add_args *) argv)
|
2009-06-16 20:49:25 +02:00
|
|
|
const int add_flags = ((p->from_tty ? SYMFILE_VERBOSE : 0)
|
|
|
|
| (p->mainline ? SYMFILE_MAINLINE : 0));
|
|
|
|
p->ret = symbol_file_add (p->name, add_flags, p->addrs, p->flags);
|
2000-04-21 04:26:14 +02:00
|
|
|
return !!p->ret;
|
|
|
|
#undef p
|
|
|
|
}
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Restore gdb's stderr after calling symbol_file_add. */
|
2000-04-21 04:26:14 +02:00
|
|
|
static void
|
2000-06-11 04:34:40 +02:00
|
|
|
safe_symbol_file_add_cleanup (void *p)
|
2000-04-21 04:26:14 +02:00
|
|
|
{
|
2000-08-27 06:21:35 +02:00
|
|
|
#define sp ((struct safe_symbol_file_add_args *)p)
|
2000-06-04 02:28:17 +02:00
|
|
|
gdb_flush (gdb_stderr);
|
2000-06-11 04:34:40 +02:00
|
|
|
gdb_flush (gdb_stdout);
|
2001-11-24 20:00:03 +01:00
|
|
|
ui_file_delete (gdb_stderr);
|
2000-06-11 04:34:40 +02:00
|
|
|
ui_file_delete (gdb_stdout);
|
2001-11-24 20:00:03 +01:00
|
|
|
gdb_stderr = sp->err;
|
2000-08-07 01:25:32 +02:00
|
|
|
gdb_stdout = sp->out;
|
2000-08-27 06:21:35 +02:00
|
|
|
#undef sp
|
2000-04-21 04:26:14 +02:00
|
|
|
}
|
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* symbol_file_add wrapper that prevents errors from being displayed. */
|
2000-04-21 04:26:14 +02:00
|
|
|
static struct objfile *
|
|
|
|
safe_symbol_file_add (char *name, int from_tty,
|
|
|
|
struct section_addr_info *addrs,
|
|
|
|
int mainline, int flags)
|
|
|
|
{
|
|
|
|
struct safe_symbol_file_add_args p;
|
|
|
|
struct cleanup *cleanup;
|
|
|
|
|
2000-06-11 04:34:40 +02:00
|
|
|
cleanup = make_cleanup (safe_symbol_file_add_cleanup, &p);
|
2000-04-21 04:26:14 +02:00
|
|
|
|
2000-06-11 04:34:40 +02:00
|
|
|
p.err = gdb_stderr;
|
|
|
|
p.out = gdb_stdout;
|
2000-06-04 02:28:17 +02:00
|
|
|
gdb_flush (gdb_stderr);
|
2000-06-11 04:34:40 +02:00
|
|
|
gdb_flush (gdb_stdout);
|
2001-11-24 20:00:03 +01:00
|
|
|
gdb_stderr = ui_file_new ();
|
2000-06-11 04:34:40 +02:00
|
|
|
gdb_stdout = ui_file_new ();
|
2000-04-21 04:26:14 +02:00
|
|
|
p.name = name;
|
|
|
|
p.from_tty = from_tty;
|
|
|
|
p.addrs = addrs;
|
|
|
|
p.mainline = mainline;
|
|
|
|
p.flags = flags;
|
|
|
|
catch_errors (safe_symbol_file_add_stub, &p, "", RETURN_MASK_ERROR);
|
|
|
|
|
|
|
|
do_cleanups (cleanup);
|
|
|
|
return p.ret;
|
|
|
|
}
|
|
|
|
|
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
|
2005-11-01 15:07:00 +01:00
|
|
|
so = XZALLOC (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;
|
|
|
|
}
|
|
|
|
|
1995-10-09 22:54:26 +01:00
|
|
|
/* Wait for child to do something. Return pid of child, or -1 in case
|
|
|
|
of error; store status through argument pointer OURSTATUS. */
|
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;
|
2010-03-06 20:27:09 +01:00
|
|
|
char dll_buf[__PMAX];
|
2000-06-04 02:28:17 +02:00
|
|
|
char *dll_name = NULL;
|
1998-11-05 15:08:48 +01:00
|
|
|
|
1999-07-07 22:11:14 +02:00
|
|
|
dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0';
|
1998-11-05 15:08:48 +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 by searching the list of known modules
|
|
|
|
and matching their base address against this new DLL's base address.
|
|
|
|
|
|
|
|
FIXME: brobecker/2013-12-10:
|
|
|
|
It seems odd to be going through this search if the DLL name could
|
|
|
|
simply be extracted via "event->lpImageName". Moreover, some
|
|
|
|
experimentation with various versions of Windows seem to indicate
|
|
|
|
that it might still be too early for this DLL to be listed when
|
|
|
|
querying the system about the current list of modules, thus making
|
|
|
|
this attempt pointless.
|
|
|
|
|
|
|
|
This code can therefore probably be removed. But at the time of
|
|
|
|
this writing, we are too close to creating the GDB 7.7 branch
|
|
|
|
for us to make such a change. We are therefore defering it. */
|
|
|
|
|
2009-01-09 11:58:26 +01:00
|
|
|
if (!get_module_name (event->lpBaseOfDll, dll_buf))
|
2000-08-27 06:21:35 +02:00
|
|
|
dll_buf[0] = dll_buf[sizeof (dll_buf) - 1] = '\0';
|
1998-11-05 15:08:48 +01:00
|
|
|
|
1999-12-07 04:56:07 +01:00
|
|
|
dll_name = dll_buf;
|
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). */
|
2002-02-16 03:33:24 +01:00
|
|
|
if (*dll_name == '\0')
|
2007-09-04 03:12:18 +02: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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Load DLL symbol info. */
|
2012-03-02 06:38:51 +01:00
|
|
|
static void
|
2001-10-16 06:50:21 +02:00
|
|
|
dll_symbol_command (char *args, int from_tty)
|
2000-06-04 02:28:17 +02:00
|
|
|
{
|
2000-08-27 06:21:35 +02:00
|
|
|
int n;
|
2000-06-04 02:28:17 +02:00
|
|
|
dont_repeat ();
|
2000-08-27 06:21:35 +02:00
|
|
|
|
2000-06-04 02:28:17 +02:00
|
|
|
if (args == NULL)
|
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 (_("dll-symbols requires a file name"));
|
2000-06-04 02:28:17 +02:00
|
|
|
|
2000-08-27 06:21:35 +02:00
|
|
|
n = strlen (args);
|
|
|
|
if (n > 4 && strcasecmp (args + n - 4, ".dll") != 0)
|
|
|
|
{
|
|
|
|
char *newargs = (char *) alloca (n + 4 + 1);
|
|
|
|
strcpy (newargs, args);
|
|
|
|
strcat (newargs, ".dll");
|
|
|
|
args = newargs;
|
|
|
|
}
|
|
|
|
|
2001-10-16 06:50:21 +02:00
|
|
|
safe_symbol_file_add (args, from_tty, NULL, 0, OBJF_SHARED | OBJF_USERLOADED);
|
2000-08-27 06:21:35 +02:00
|
|
|
}
|
2000-06-04 02:28:17 +02: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 */;
|
2011-01-12 02:23:29 +01:00
|
|
|
else if (strncmp (s, _CYGWIN_SIGNAL_STRING,
|
|
|
|
sizeof (_CYGWIN_SIGNAL_STRING) - 1) != 0)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
2007-10-16 20:43:25 +02:00
|
|
|
#ifdef __CYGWIN__
|
1999-12-22 22:45:11 +01:00
|
|
|
if (strncmp (s, "cYg", 3) != 0)
|
2007-10-16 20:43:25 +02:00
|
|
|
#endif
|
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 (("%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;
|
|
|
|
current_event.dwThreadId = retval;
|
|
|
|
}
|
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
|
|
|
{
|
1998-11-05 15:08:48 +01:00
|
|
|
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)
|
2011-01-12 02:23:29 +01:00
|
|
|
&& strncmp (fn, "KERNEL32!IsBad",
|
|
|
|
strlen ("KERNEL32!IsBad")) == 0))
|
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
|
|
|
}
|
|
|
|
|
1998-11-05 15:08:48 +01:00
|
|
|
/* Resume all artificially suspended threads if we are continuing
|
2011-01-12 02:23:29 +01:00
|
|
|
execution. */
|
1998-11-05 15:08:48 +01:00
|
|
|
static BOOL
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_continue (DWORD continue_status, int id)
|
1998-11-05 15:08:48 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
thread_info *th;
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
CHECK (SetThreadContext (th->h, &th->context));
|
|
|
|
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
|
|
|
|
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
|
|
|
{
|
|
|
|
thread_info *th;
|
|
|
|
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
|
|
|
|
DEBUG_EXCEPT(("Can only continue with recieved signal %d.\n",
|
|
|
|
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)
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_continue (continue_status, -1);
|
2008-08-08 15:16:17 +02:00
|
|
|
else
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_continue (continue_status, ptid_get_tid (ptid));
|
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;
|
|
|
|
}
|
|
|
|
|
2000-04-21 04:26:14 +02:00
|
|
|
/* Get the next event from the child. Return 1 if the event requires
|
2009-03-22 22:43:56 +01:00
|
|
|
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;
|
2003-12-26 01:39:04 +01:00
|
|
|
thread_info *th;
|
2000-04-21 04:26:14 +02:00
|
|
|
static thread_info dummy_thread_info;
|
2000-06-04 02:28:17 +02:00
|
|
|
int retval = 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. */
|
2008-07-10 00:23:05 +02:00
|
|
|
retval = fake_create_process ();
|
2008-09-22 17:21:30 +02:00
|
|
|
if (retval)
|
|
|
|
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. */
|
2000-06-04 02:28:17 +02:00
|
|
|
retval = 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);
|
2008-07-10 00:23:05 +02:00
|
|
|
retval = 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;
|
|
|
|
retval = main_thread_id;
|
|
|
|
}
|
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);
|
2002-02-16 03:33:24 +01:00
|
|
|
if (saw_create != 1)
|
|
|
|
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;
|
2000-08-07 01:25:32 +02:00
|
|
|
retval = 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"));
|
2002-02-16 03:33:24 +01:00
|
|
|
if (saw_create != 1)
|
|
|
|
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;
|
|
|
|
retval = 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:
|
|
|
|
retval = current_event.dwThreadId;
|
|
|
|
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;
|
2006-02-20 06:10:51 +01:00
|
|
|
retval = 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;
|
|
|
|
}
|
|
|
|
|
2002-02-16 03:33:24 +01:00
|
|
|
if (!retval || 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
|
2009-01-13 05:14:07 +01:00
|
|
|
CHECK (windows_continue (continue_status, -1));
|
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,
|
|
|
|
retval);
|
2003-12-26 05:29:22 +01:00
|
|
|
current_thread = th ?: thread_rec (current_event.dwThreadId, TRUE);
|
2000-08-07 01:25:32 +02:00
|
|
|
}
|
1999-12-07 04:56:07 +01:00
|
|
|
|
|
|
|
out:
|
2000-06-04 02:28:17 +02:00
|
|
|
return retval;
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
/* On certain versions of Windows, the information about ntdll.dll
|
|
|
|
is not available yet at the time we get the LOAD_DLL_DEBUG_EVENT,
|
|
|
|
thus preventing us from reporting this DLL as an SO. This has been
|
|
|
|
witnessed on Windows 8.1, for instance. 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.
|
|
|
|
|
|
|
|
If we indeed are missing ntdll.dll, this function tries to recover
|
|
|
|
from this issue, after the fact. Do nothing if we encounter any
|
|
|
|
issue trying to locate that DLL. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
windows_ensure_ntdll_loaded (void)
|
|
|
|
{
|
|
|
|
struct so_list *so;
|
|
|
|
HMODULE dummy_hmodule;
|
|
|
|
DWORD cb_needed;
|
|
|
|
HMODULE *hmodules;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (so = solib_start.next; so != NULL; so = so->next)
|
|
|
|
if (FILENAME_CMP (lbasename (so->so_name), "ntdll.dll") == 0)
|
|
|
|
return; /* ntdll.dll already loaded, nothing to do. */
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
for (i = 0; i < (int) (cb_needed / sizeof (HMODULE)); i++)
|
|
|
|
{
|
|
|
|
MODULEINFO mi;
|
|
|
|
char dll_name[__PMAX];
|
|
|
|
|
|
|
|
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;
|
|
|
|
if (FILENAME_CMP (lbasename (dll_name), "ntdll.dll") == 0)
|
|
|
|
{
|
|
|
|
solib_end->next = windows_make_so (dll_name, mi.lpBaseOfDll);
|
|
|
|
solib_end = solib_end->next;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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));
|
2009-01-09 11:36:00 +01:00
|
|
|
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 ();
|
2000-08-07 01:25:32 +02:00
|
|
|
clear_proceed_status ();
|
|
|
|
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);
|
|
|
|
|
2007-02-12 14:04:36 +01:00
|
|
|
terminal_init_inferior_with_pgrp (pid);
|
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)
|
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
|
|
|
resume (0, tp->suspend.stop_signal);
|
2000-08-07 01:25:32 +02:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2008-06-24 04:33:17 +02: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
|
|
|
/* FIXME: brobecker/2013-12-10: We should try another approach where
|
|
|
|
we first ignore all DLL load/unload events up until this point,
|
|
|
|
and then iterate over all modules to create the associated shared
|
|
|
|
objects. This is a fairly significant change, however, and we are
|
|
|
|
close to creating a release branch, so we are delaying it a bit,
|
|
|
|
after the branch is created. */
|
|
|
|
windows_ensure_ntdll_loaded ();
|
|
|
|
|
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
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_attach (struct target_ops *ops, 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
|
|
|
|
[native x86 GNU/Linux] Access debug register mirror from the corresponding process.
While reviewing the native AArch64 patch, I noticed a problem:
On 02/06/2013 08:46 PM, Pedro Alves wrote:
>
>> > +static void
>> > +aarch64_linux_prepare_to_resume (struct lwp_info *lwp)
>> > +{
>> > + struct arch_lwp_info *info = lwp->arch_private;
>> > +
>> > + /* NULL means this is the main thread still going through the shell,
>> > + or, no watchpoint has been set yet. In that case, there's
>> > + nothing to do. */
>> > + if (info == NULL)
>> > + return;
>> > +
>> > + if (DR_HAS_CHANGED (info->dr_changed_bp)
>> > + || DR_HAS_CHANGED (info->dr_changed_wp))
>> > + {
>> > + int tid = GET_LWP (lwp->ptid);
>> > + struct aarch64_debug_reg_state *state = aarch64_get_debug_reg_state ();
> Hmm. This is always fetching the debug_reg_state of
> the current inferior, but may not be the inferior of lwp.
> I see the same bug on x86. Sorry about that. I'll fix it.
A natural fix would be to make xxx_get_debug_reg_state take an
inferior argument, but that doesn't work because of the case where we
detach breakpoints/watchpoints from the child fork, at a time there's
no inferior for the child fork at all. We do a nasty hack in
i386_inferior_data_get, but that relies on all callers pointing the
current inferior to the correct inferior, which isn't actually being
done by all callers, and I don't think we want to enforce that -- deep
in the bowls of linux-nat.c, there are many cases we resume lwps
behind the scenes, and it's be better to not have that code rely on
global state (as it doesn't today).
The fix is to decouple the watchpoints code from inferiors, making it
track target processes instead. This way, we can freely keep track of
the watchpoint mirrors for these processes behind the core's back.
Checkpoints also play dirty tricks with swapping the process behind
the inferior, so they get special treatment too in the patch (which
just amounts to calling a new hook). Instead of the old hack in
i386_inferior_data_get, where we returned a copy of the current
inferior's debug registers mirror, as soon as we detect a fork in the
target, we copy the debug register mirror from the parent to the child
process.
I don't have an old kernel handy to test, but I stepped through gdb doing
the watchpoint removal in the fork child in the watchpoint-fork test
seeing that the debug registers end up cleared in the child.
I didn't find the need for linux_nat_iterate_watchpoint_lwps. If
we use plain iterate_over_lwps instead, what happens is that
when removing watchpoints, that iterate_over_lwps doesn't actually
iterate over anything, since the fork child is not added to the
lwp list until later, at detach time, in linux_child_follow_fork.
And if we don't iterate over that lwp, we don't mark its debug
registers as needing update. But linux_child_follow_fork takes
care of doing that explicitly:
child_lp = add_lwp (inferior_ptid);
child_lp->stopped = 1;
child_lp->last_resume_kind = resume_stop;
make_cleanup (delete_lwp_cleanup, child_lp);
/* CHILD_LP has new PID, therefore linux_nat_new_thread is not called for it.
See i386_inferior_data_get for the Linux kernel specifics.
Ensure linux_nat_prepare_to_resume will reset the hardware debug
registers. It is done by the linux_nat_new_thread call, which is
being skipped in add_lwp above for the first lwp of a pid. */
gdb_assert (num_lwps (GET_PID (child_lp->ptid)) == 1);
if (linux_nat_new_thread != NULL)
linux_nat_new_thread (child_lp);
if (linux_nat_prepare_to_resume != NULL)
linux_nat_prepare_to_resume (child_lp);
ptrace (PTRACE_DETACH, child_pid, 0, 0);
so unless I'm missing something (quite possible) it ends up all
the same. But, the !detach-on-fork, and the "follow-fork child" paths
should also call linux_nat_new_thread, and they don't presently. It
seems to me in those cases we're not clearing debug regs correctly
when that's needed. Instead of copying that bit that works around
add_lwp bypassing the linux_nat_new_thread call, I thought it'd
be better to add an add_initial_lwp call to be used in the case we
really need to bypass linux_nat_new_thread, and make
add_lwp always call linux_nat_new_thread.
i386_cleanup_dregs is rewritten to forget about the current process
debug mirrors, which takes cares of other i386 ports. Only a couple
of extra tweaks here and there were needed, as some targets wheren't
actually calling i386_cleanup_dregs.
Tested on Fedora 17 x86_64 -m64/-m32.
GDBserver already fetches the i386_debug_reg_state from the right
process, and, it doesn't handle forks at all, so no fix is needed over
there.
gdb/
2013-02-13 Pedro Alves <palves@redhat.com>
* amd64-linux-nat.c (update_debug_registers_callback):
Update comment.
(amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
iterate_over_lwps.
(amd64_linux_prepare_to_resume): Pass the lwp's pid to
i386_debug_reg_state.
(amd64_linux_new_fork): New function.
(_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
linux_nat_new_fork hook, and i386_forget_process as
linux_nat_forget_process hook.
* i386-linux-nat.c (update_debug_registers_callback):
Update comment.
(amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
iterate_over_lwps.
(i386_linux_prepare_to_resume): Pass the lwp's pid to
i386_debug_reg_state.
(i386_linux_new_fork): New function.
(_initialize_i386_linux_nat): Install i386_linux_new_fork as
linux_nat_new_fork hook, and i386_forget_process as
linux_nat_forget_process hook.
* i386-nat.c (i386_init_dregs): Delete.
(i386_inferior_data, struct i386_inferior_data):
Delete.
(struct i386_process_info): New.
(i386_process_list): New global.
(i386_find_process_pid, i386_add_process, i386_process_info_get):
New functions.
(i386_inferior_data_get): Delete.
(i386_process_info_get): New function.
(i386_debug_reg_state): New parameter 'pid'. Reimplement.
(i386_forget_process): New function.
(i386_cleanup_dregs): Rewrite.
(i386_update_inferior_debug_regs, i386_insert_watchpoint)
(i386_remove_watchpoint, i386_region_ok_for_watchpoint)
(i386_stopped_data_address, i386_insert_hw_breakpoint)
(i386_remove_hw_breakpoint): Adjust to pass the current process id
to i386_debug_reg_state.
(i386_use_watchpoints): Don't register inferior data.
* i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
adjust comment.
(i386_forget_process): Declare.
* linux-fork.c (delete_fork): Call linux_nat_forget_process.
* linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
New static globals.
(linux_child_follow_fork): Don't call linux_nat_new_thread here.
(add_initial_lwp): New, factored out from ...
(add_lwp): ... this. Don't check the number of lwps before
calling linux_nat_new_thread.
(linux_nat_iterate_watchpoint_lwps): Delete.
(linux_nat_attach): Use add_initial_lwp instead of add_lwp.
(linux_handle_extended_wait): Call the linux_nat_new_fork hook on
forks and vforks.
(linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
initial lwp.
(linux_nat_kill, linux_nat_mourn_inferior): Call
linux_nat_forget_process.
(linux_nat_set_new_fork, linux_nat_set_forget_process)
(linux_nat_forget_process): New functions.
* linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
type.
(linux_nat_iterate_watchpoint_lwps): Delete declaration.
(linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
types.
(linux_nat_set_new_fork, linux_nat_set_forget_process)
(linux_nat_forget_process): New declarations.
* amd64fbsd-nat.c (super_mourn_inferior): New global.
(amd64fbsd_mourn_inferior): New function.
(_initialize_amd64fbsd_nat): Override to_mourn_inferior.
* windows-nat.c (windows_detach): Call i386_cleanup_dregs.
2013-02-13 15:59:49 +01:00
|
|
|
i386_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);
|
|
|
|
|
2009-01-09 11:36:00 +01:00
|
|
|
unpush_target (ops);
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
2005-10-31 23:50:58 +01:00
|
|
|
static char *
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_pid_to_exec_file (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. */
|
2008-01-01 19:42:08 +01:00
|
|
|
if (!get_module_name (0, path))
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_open (char *arg, int from_tty)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
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 (_("Use the \"run\" command to start a Unix child process."));
|
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
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
/* windows_continue (DBG_CONTINUE, -1); */
|
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
|
|
|
{
|
2009-01-13 05:14:07 +01:00
|
|
|
(void) windows_continue (DBG_CONTINUE, -1);
|
2002-02-04 12:00:10 +01:00
|
|
|
i386_cleanup_dregs();
|
2007-12-02 06:45:08 +01:00
|
|
|
if (open_process_used)
|
|
|
|
{
|
|
|
|
CHECK (CloseHandle (current_process_handle));
|
|
|
|
open_process_used = 0;
|
|
|
|
}
|
2009-01-09 11:36:00 +01:00
|
|
|
unpush_target (ops);
|
1995-10-09 22:54:26 +01:00
|
|
|
generic_mourn_inferior ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_stop (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. */
|
|
|
|
|
|
|
|
static LONGEST
|
|
|
|
windows_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
|
|
|
|
ULONGEST memaddr, LONGEST 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",
|
|
|
|
plongest (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",
|
|
|
|
plongest (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
|
|
|
}
|
2013-09-02 14:57:49 +02:00
|
|
|
if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
|
|
|
|
return done;
|
|
|
|
else
|
|
|
|
return success ? done : 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 (;;)
|
|
|
|
{
|
2009-01-13 05:14:07 +01:00
|
|
|
if (!windows_continue (DBG_CONTINUE, -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
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_prepare_to_store (struct regcache *regcache)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
2011-01-12 02:23:29 +01:00
|
|
|
/* Do nothing, since we can store individual regs. */
|
1995-10-09 22:54:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_can_run (void)
|
1995-10-09 22:54:26 +01:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-03-20 16:46:24 +01:00
|
|
|
windows_close (void)
|
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
|
|
|
}
|
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
static LONGEST
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_xfer_shared_libraries (struct target_ops *ops,
|
2007-09-04 03:12:18 +02:00
|
|
|
enum target_object object, const char *annex,
|
|
|
|
gdb_byte *readbuf, const gdb_byte *writebuf,
|
|
|
|
ULONGEST offset, LONGEST 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)
|
|
|
|
return -1;
|
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 len;
|
2005-11-01 06:08:29 +01:00
|
|
|
}
|
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
static LONGEST
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_xfer_partial (struct target_ops *ops, enum target_object object,
|
2007-09-04 03:12:18 +02:00
|
|
|
const char *annex, gdb_byte *readbuf,
|
|
|
|
const gdb_byte *writebuf, ULONGEST offset, LONGEST 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:
|
2013-08-27 13:36:09 +02:00
|
|
|
return windows_xfer_memory (readbuf, writebuf, offset, 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,
|
2007-09-04 03:12:18 +02:00
|
|
|
writebuf, offset, len);
|
2005-11-01 15:07:00 +01:00
|
|
|
|
2007-09-04 03:12:18 +02:00
|
|
|
default:
|
|
|
|
if (ops->beneath != NULL)
|
|
|
|
return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
|
|
|
|
readbuf, writebuf, offset, len);
|
|
|
|
return -1;
|
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
|
|
|
|
windows_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
|
|
|
|
{
|
|
|
|
thread_info *th;
|
|
|
|
|
|
|
|
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
|
|
|
|
windows_get_ada_task_ptid (long lwp, long thread)
|
|
|
|
{
|
|
|
|
return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
|
|
|
|
}
|
|
|
|
|
2005-10-31 23:50:58 +01:00
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
init_windows_ops (void)
|
2005-10-31 23:50:58 +01:00
|
|
|
{
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_ops.to_shortname = "child";
|
|
|
|
windows_ops.to_longname = "Win32 child process";
|
|
|
|
windows_ops.to_doc = "Win32 child process (started by the \"run\" command).";
|
|
|
|
windows_ops.to_open = windows_open;
|
|
|
|
windows_ops.to_close = windows_close;
|
|
|
|
windows_ops.to_attach = windows_attach;
|
|
|
|
windows_ops.to_attach_no_wait = 1;
|
|
|
|
windows_ops.to_detach = windows_detach;
|
|
|
|
windows_ops.to_resume = windows_resume;
|
|
|
|
windows_ops.to_wait = windows_wait;
|
|
|
|
windows_ops.to_fetch_registers = windows_fetch_inferior_registers;
|
|
|
|
windows_ops.to_store_registers = windows_store_inferior_registers;
|
|
|
|
windows_ops.to_prepare_to_store = windows_prepare_to_store;
|
|
|
|
windows_ops.to_xfer_partial = windows_xfer_partial;
|
|
|
|
windows_ops.to_files_info = windows_files_info;
|
|
|
|
windows_ops.to_insert_breakpoint = memory_insert_breakpoint;
|
|
|
|
windows_ops.to_remove_breakpoint = memory_remove_breakpoint;
|
|
|
|
windows_ops.to_terminal_init = terminal_init_inferior;
|
|
|
|
windows_ops.to_terminal_inferior = terminal_inferior;
|
|
|
|
windows_ops.to_terminal_ours_for_output = terminal_ours_for_output;
|
|
|
|
windows_ops.to_terminal_ours = terminal_ours;
|
|
|
|
windows_ops.to_terminal_save_ours = terminal_save_ours;
|
|
|
|
windows_ops.to_terminal_info = child_terminal_info;
|
|
|
|
windows_ops.to_kill = windows_kill_inferior;
|
|
|
|
windows_ops.to_create_inferior = windows_create_inferior;
|
|
|
|
windows_ops.to_mourn_inferior = windows_mourn_inferior;
|
|
|
|
windows_ops.to_can_run = windows_can_run;
|
|
|
|
windows_ops.to_thread_alive = windows_thread_alive;
|
|
|
|
windows_ops.to_pid_to_str = windows_pid_to_str;
|
|
|
|
windows_ops.to_stop = windows_stop;
|
|
|
|
windows_ops.to_stratum = process_stratum;
|
* target.h (struct target_ops): Make to_has_all_memory,
to_has_memory, to_has_stack, to_has_registers and to_has_execution
methods instead of variables.
(target_has_all_memory_1, target_has_memory_1, target_has_stack_1)
(target_has_registers_1, target_has_execution_1): Declare
functions.
(target_has_all_memory): Rewrite to call target_has_all_memory_1.
(target_has_memory): Rewrite to call target_has_memory_1.
(target_has_stack): Rewrite to call target_has_all_stack_1.
(target_has_registers): Rewrite to call target_has_registers_1.
(target_has_execution): Rewrite to call target_has_execution_1.
(default_child_has_all_memory, default_child_has_memory)
(default_child_has_stack, default_child_has_registers)
(default_child_has_execution): Declare.
(target_mark_running, target_mark_exited): Delete declarations.
* target.c (default_child_has_all_memory,
default_child_has_memory, default_child_has_stack,
default_child_has_registers, default_child_has_execution): New.
(target_has_all_memory_1, target_has_memory_1, target_has_stack_1,
target_has_registers_1, target_has_execution_1): New.
(add_target): Default the to_has_all_memory, to_has_all_memory,
to_has_memory, to_has_stack, to_has_registers and to_has_execution
callbacks to return 0.
(update_current_target): Do not inherit to_has_all_memory,
to_has_memory, to_has_stack, to_has_registers or to_has_execution.
(target_mark_running, target_mark_exited): Delete.
(memory_xfer_partial): Adjust.
(target_read_memory, target_write_memory, target_search_memory):
Dispatch to the the top-most target, not the flattened
current_target.
(target_info): Adjust.
(init_dummy_target): Install return_zero as callback for
to_has_all_memory, to_has_memory, to_has_stack, to_has_registers,
to_has_execution.
(set_maintenance_target_async_permitted): Use have_live_inferiors
instead of target_has_execution.
* target-memory.c (target_write_memory_blocks): Dispatch memory
writes to the the top-most target, not the flattened
current_target.
* breakpoint.c (insert_breakpoints): Don't check for
target_has_execution here.
(update_global_location_list): Check if there are live inferiors
to debug instead of target_has_execution.
* infcmd.c (kill_command, detach_command): Check if there are
inferiors instead of target_has_execution.
* inferior.h (have_live_inferiors): Declare.
* inferior.c (have_live_inferiors): New.
* infrun.c (normal_stop): Don't check for target_has_execution to
finish the thread states.
* thread.c (is_thread_state, is_stopped, is_exited, is_running)
(any_running, is_executing): Remove checks for
target_has_execution.
* top.c (kill_or_detach): Don't try to kill core inferiors.
(quit_target): Don't check for target_has_execution.
* corelow.c (core_has_memory, core_has_stack, core_has_registers):
New.
(init_core_ops): Install core_has_memory, core_has_stack and
core_has_registers.
* exec.c (exec_has_memory): New.
(init_exec_ops): Install exec_has_memory.
* remote.c (remote_add_inferior): Don't call target_mark_running.
(remote_start_remote): Don't call target_mark_exited or call
target_mark_running.
(remote_open_1): Use have_inferiors instead of
target_has_execution. Don't use target_mark_exited.
(init_remote_ops): Install deafult_child_has_all_memory,
default_child_has_memory, default_child_has_stack,
default_child_has_registers, default_child_has_execution.
* bsd-kvm.c (bsd_kvm_return_one): New.
(bsd_kvm_add_target): Register bsd_kvm_return_one as
to_has_memory, to_has_stack and to_has_registers callbacks.
* remote-m32r-sdi.c (m32r_return_one): New.
(init_m32r_ops): Register it.
* inf-child.c (inf_child_target): Adjust to register
default_child_has_all_memory, default_child_has_memory,
default_child_has_stack, default_child_has_registers,
default_child_has_execution callbacks.
* gnu-nat.c (init_gnu_ops): Likewise.
* go32-nat.c (init_go32_ops): Likewise.
* hpux-thread.c (init_hpux_thread_ops): Likewise.
* monitor.c (init_base_monitor_ops): Likewise.
* nto-procfs.c (init_procfs_ops): Likewise.
* remote-mips.c (_initialize_remote_mips): Likewise.
* windows-nat.c (init_windows_ops): Likewise.
* remote-sim.c (gdbsim_create_inferior): Don't use
target_mark_running or target_mark_exited.
(gdbsim_mourn_inferior): Don't call target_mark_exited.
(init_gdbsim_ops): Adjust to register
default_child_has_all_memory, default_child_has_memory,
default_child_has_stack, default_child_has_registers,
default_child_has_execution callbacks.
* linux-nat.c (linux_nat_xfer_partial): If reading memory, and
there's no inferior selected, defer to a lower stratum.
2009-06-07 18:46:48 +02:00
|
|
|
windows_ops.to_has_all_memory = default_child_has_all_memory;
|
|
|
|
windows_ops.to_has_memory = default_child_has_memory;
|
|
|
|
windows_ops.to_has_stack = default_child_has_stack;
|
|
|
|
windows_ops.to_has_registers = default_child_has_registers;
|
|
|
|
windows_ops.to_has_execution = default_child_has_execution;
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_ops.to_pid_to_exec_file = windows_pid_to_exec_file;
|
2009-04-01 18:35:41 +02:00
|
|
|
windows_ops.to_get_ada_task_ptid = windows_get_ada_task_ptid;
|
2010-04-16 09:49:37 +02:00
|
|
|
windows_ops.to_get_tib_address = windows_get_tib_address;
|
2009-05-14 11:37:00 +02:00
|
|
|
|
2009-02-20 11:52:24 +01:00
|
|
|
i386_use_watchpoints (&windows_ops);
|
|
|
|
|
2009-05-14 11:37:00 +02:00
|
|
|
i386_dr_low.set_control = cygwin_set_dr7;
|
|
|
|
i386_dr_low.set_addr = cygwin_set_dr;
|
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
|
|
|
i386_dr_low.get_addr = cygwin_get_dr;
|
2009-05-14 11:37:00 +02:00
|
|
|
i386_dr_low.get_status = cygwin_get_dr6;
|
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
|
|
|
i386_dr_low.get_control = cygwin_get_dr7;
|
2009-05-14 11:37:00 +02:00
|
|
|
|
|
|
|
/* i386_dr_low.debug_register_length field is set by
|
|
|
|
calling i386_set_debug_register_length function
|
|
|
|
in processor windows specific native file. */
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
windows_ops.to_magic = OPS_MAGIC;
|
1998-05-21 22:20:39 +02:00
|
|
|
}
|
1995-10-09 22:54:26 +01:00
|
|
|
|
2005-11-01 15:07:00 +01:00
|
|
|
static void
|
2009-01-13 05:14:07 +01:00
|
|
|
set_windows_aliases (char *argv0)
|
2005-11-01 15:07:00 +01:00
|
|
|
{
|
|
|
|
add_info_alias ("dll", "sharedlibrary", 1);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2001-02-19 12:47:16 +01:00
|
|
|
struct cmd_list_element *c;
|
|
|
|
|
2009-01-13 05:14:07 +01:00
|
|
|
init_windows_ops ();
|
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
|
|
|
|
|
2001-02-19 12:47:16 +01:00
|
|
|
c = add_com ("dll-symbols", class_files, dll_symbol_command,
|
2005-02-15 Andrew Cagney <cagney@gnu.org>
Mark up add_com, add_info and add_prefix_cmd.
* breakpoint.c, cp-support.c, dcache.c, dwarf2read.c: Update.
* exec.c, f-valprint.c, frame.c, gcore.c, gnu-nat.c: Update.
* go32-nat.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* kod.c, language.c, linux-nat.c, m32r-rom.c, macrocmd.c: Update.
* maint.c, memattr.c, mips-tdep.c, nto-procfs.c, objc-lang.c: Update.
* ocd.c, pa64solib.c, printcmd.c, procfs.c, regcache.c: Update.
* remote-e7000.c, remote-m32r-sdi.c, remote-mips.c: Update.
* remote-sds.c, remote-sim.c, remote-st.c, remote-utils.c: Update.
* remote.c, rs6000-tdep.c, ser-go32.c, serial.c: Update.
* sh-tdep.c, solib.c, somsolib.c, source.c, stack.c: Update.
* symfile.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, typeprint.c, utils.c, valprint.c: Update.
* win32-nat.c, xcoffsolib.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
* cli/cli-logging.c, tui/tui-layout.c, tui/tui-regs.c: Update.
* tui/tui-stack.c, tui/tui-win.c: Update.
2005-02-15 16:49:28 +01:00
|
|
|
_("Load dll library symbols from FILE."));
|
2002-03-06 07:28:35 +01:00
|
|
|
set_cmd_completer (c, filename_completer);
|
2000-06-04 02:28:17 +02:00
|
|
|
|
|
|
|
add_com_alias ("sharedlibrary", "dll-symbols", class_alias, 1);
|
|
|
|
|
2009-05-24 14:27:35 +02:00
|
|
|
add_com_alias ("add-shared-symbol-files", "dll-symbols", class_alias, 1);
|
|
|
|
|
|
|
|
add_com_alias ("assf", "dll-symbols", class_alias, 1);
|
|
|
|
|
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);
|
2009-01-13 05:14:07 +01:00
|
|
|
add_target (&windows_ops);
|
|
|
|
deprecated_init_ui_hook = set_windows_aliases;
|
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
|
|
|
}
|