2004-10-05 23:53:33 +02:00
|
|
|
|
/* Low level interface for debugging HPUX/DCE threads for GDB, the GNU
|
|
|
|
|
debugger.
|
|
|
|
|
|
2005-12-17 23:34:03 +01:00
|
|
|
|
Copyright (C) 1996, 1998, 1999, 2000, 2001, 2004 Free Software
|
2004-10-05 23:53:33 +02:00
|
|
|
|
Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-12-17 23:34:03 +01:00
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* This module implements a sort of half target that sits between the
|
|
|
|
|
machine-independent parts of GDB and the ptrace interface (infptrace.c) to
|
|
|
|
|
provide access to the HPUX user-mode thread implementation.
|
|
|
|
|
|
|
|
|
|
HPUX threads are true user-mode threads, which are invoked via the cma_*
|
|
|
|
|
and pthread_* (DCE and Posix respectivly) interfaces. These are mostly
|
|
|
|
|
implemented in user-space, with all thread context kept in various
|
|
|
|
|
structures that live in the user's heap. For the most part, the kernel has
|
|
|
|
|
no knowlege of these threads.
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
|
|
#define _CMA_NOWRAPPERS_
|
|
|
|
|
|
|
|
|
|
#include <cma_tcb_defs.h>
|
|
|
|
|
#include <cma_deb_core.h>
|
|
|
|
|
#include "gdbthread.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
#include "inferior.h"
|
2001-03-01 02:39:22 +01:00
|
|
|
|
#include "regcache.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#include <fcntl.h>
|
2004-11-23 02:01:59 +01:00
|
|
|
|
#include <string.h>
|
2003-02-07 06:33:45 +01:00
|
|
|
|
#include "gdb_stat.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
#include "gdbcore.h"
|
2004-11-23 02:01:59 +01:00
|
|
|
|
#include "hppa-tdep.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
extern int child_suppress_run;
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void _initialize_hpux_thread (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct string_map
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
|
|
|
|
int num;
|
|
|
|
|
char *str;
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static int hpux_thread_active = 0;
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
static ptid_t main_ptid; /* Real process ID */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static CORE_ADDR P_cma__g_known_threads;
|
|
|
|
|
static CORE_ADDR P_cma__g_current_thread;
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
static void hpux_thread_resume (ptid_t ptid, int step,
|
|
|
|
|
enum target_signal signo);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
static void init_hpux_thread_ops (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static struct target_ops hpux_thread_ops;
|
|
|
|
|
|
2001-10-08 22:42:08 +02:00
|
|
|
|
static ptid_t find_active_thread (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static int cached_thread;
|
|
|
|
|
static cma__t_int_tcb cached_tcb;
|
|
|
|
|
|
2001-10-08 22:42:08 +02:00
|
|
|
|
static ptid_t
|
2000-07-30 03:48:28 +02:00
|
|
|
|
find_active_thread (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
static cma__t_int_tcb tcb;
|
|
|
|
|
CORE_ADDR tcb_ptr;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
read_memory ((CORE_ADDR) P_cma__g_current_thread,
|
|
|
|
|
(char *) &tcb_ptr,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
sizeof tcb_ptr);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
read_memory (tcb_ptr, (char *) &tcb, sizeof tcb);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-10-08 22:42:08 +02:00
|
|
|
|
return (ptid_build (PIDGET (main_ptid), 0,
|
|
|
|
|
cma_thread_get_unique (&tcb.prolog.client_thread)));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-08 22:42:08 +02:00
|
|
|
|
static cma__t_int_tcb *find_tcb (ptid_t ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
static cma__t_int_tcb *
|
2001-10-08 22:42:08 +02:00
|
|
|
|
find_tcb (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
cma__t_known_object queue_header;
|
|
|
|
|
cma__t_queue *queue_ptr;
|
2001-10-08 22:42:08 +02:00
|
|
|
|
int thread = ptid_get_tid (ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (thread == cached_thread)
|
|
|
|
|
return &cached_tcb;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
read_memory ((CORE_ADDR) P_cma__g_known_threads,
|
|
|
|
|
(char *) &queue_header,
|
1999-04-16 03:35:26 +02:00
|
|
|
|
sizeof queue_header);
|
|
|
|
|
|
|
|
|
|
for (queue_ptr = queue_header.queue.flink;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
queue_ptr != (cma__t_queue *) P_cma__g_known_threads;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
queue_ptr = cached_tcb.threads.flink)
|
|
|
|
|
{
|
|
|
|
|
cma__t_int_tcb *tcb_ptr;
|
|
|
|
|
|
|
|
|
|
tcb_ptr = cma__base (queue_ptr, threads, cma__t_int_tcb);
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
read_memory ((CORE_ADDR) tcb_ptr, (char *) &cached_tcb, sizeof cached_tcb);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (cached_tcb.header.type == cma__c_obj_tcb)
|
2001-10-08 22:42:08 +02:00
|
|
|
|
if (cma_thread_get_unique (&cached_tcb.prolog.client_thread) == thread)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
cached_thread = thread;
|
|
|
|
|
return &cached_tcb;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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 find TCB %d"), thread);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Most target vector functions from here on actually just pass through to
|
|
|
|
|
inftarg.c, as they don't need to do anything specific for threads. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_open (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_open (arg, from_tty);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attach to process PID, then initialize for debugging it
|
|
|
|
|
and wait for the trace-trap that results from attaching. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_attach (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_attach (args, from_tty);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* XXX - might want to iterate over all the threads and register them. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Take a program previously attached to and detaches it.
|
|
|
|
|
The program resumes execution and will no longer stop
|
|
|
|
|
on signals, etc. We'd better not have left any breakpoints
|
|
|
|
|
in the program or it'll die when it hits one. For this
|
|
|
|
|
to work, it may be necessary for the process to have been
|
|
|
|
|
previously attached. It *might* work if the program was
|
|
|
|
|
started via the normal ptrace (PTRACE_TRACEME). */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_detach (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_detach (args, from_tty);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Resume execution of process PID. If STEP is nozero, then
|
|
|
|
|
just single step it. If SIGNAL is nonzero, restart it with that
|
|
|
|
|
signal activated. We may have to convert pid from a thread-id to an LWP id
|
|
|
|
|
for procfs. */
|
|
|
|
|
|
|
|
|
|
static void
|
2001-05-04 06:15:33 +02:00
|
|
|
|
hpux_thread_resume (ptid_t ptid, int step, enum target_signal signo)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct cleanup *old_chain;
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
old_chain = save_inferior_ptid ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
ptid = main_ptid;
|
|
|
|
|
inferior_ptid = main_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
if (pid != -1)
|
|
|
|
|
{
|
|
|
|
|
pid = thread_to_lwp (pid, -2);
|
|
|
|
|
if (pid == -2) /* Inactive thread */
|
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 (_("This version of Solaris can't start inactive threads."));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_resume (ptid, step, signo);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
cached_thread = 0;
|
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Wait for any threads to stop. We may have to convert PID from a thread id
|
|
|
|
|
to a LWP id, and vice versa on the way out. */
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
static ptid_t
|
|
|
|
|
hpux_thread_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
|
ptid_t rtnval;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
struct cleanup *old_chain;
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
old_chain = save_inferior_ptid ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
inferior_ptid = main_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
if (!ptid_equal (ptid, minus_one_ptid))
|
|
|
|
|
ptid = main_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-10-05 23:53:33 +02:00
|
|
|
|
rtnval = deprecated_child_ops.to_wait (ptid, ourstatus);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
rtnval = find_active_thread ();
|
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
|
|
|
|
|
return rtnval;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-23 02:01:59 +01:00
|
|
|
|
static char regmap[] =
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
|
-2, -1, -1, 0, 4, 8, 12, 16, 20, 24, /* flags, r1 -> r9 */
|
|
|
|
|
28, 32, 36, 40, 44, 48, 52, 56, 60, -1, /* r10 -> r19 */
|
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* r20 -> r29 */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* r30, r31, sar, pcoqh, pcsqh, pcoqt, pcsqt, eiem, iir, isr */
|
|
|
|
|
-2, -1, -1, -2, -1, -1, -1, -1, -1, -1,
|
|
|
|
|
|
|
|
|
|
/* ior, ipsw, goto, sr4, sr0, sr1, sr2, sr3, sr5, sr6 */
|
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
|
|
|
|
|
|
/* sr7, cr0, cr8, cr9, ccr, cr12, cr13, cr24, cr25, cr26 */
|
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
|
|
|
|
|
|
|
|
-1, -1, -1, -1, /* mpsfu_high, mpsfu_low, mpsfu_ovflo, pad */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
144, -1, -1, -1, -1, -1, -1, -1, /* fpsr, fpe1 -> fpe7 */
|
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, /* fr4 -> fr7 */
|
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, /* fr8 -> fr11 */
|
|
|
|
|
136, -1, 128, -1, 120, -1, 112, -1, /* fr12 -> fr15 */
|
|
|
|
|
104, -1, 96, -1, 88, -1, 80, -1, /* fr16 -> fr19 */
|
|
|
|
|
72, -1, 64, -1, -1, -1, -1, -1, /* fr20 -> fr23 */
|
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, /* fr24 -> fr27 */
|
|
|
|
|
-1, -1, -1, -1, -1, -1, -1, -1, /* fr28 -> fr31 */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_fetch_registers (int regno)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
cma__t_int_tcb tcb, *tcb_ptr;
|
|
|
|
|
struct cleanup *old_chain;
|
|
|
|
|
int i;
|
|
|
|
|
int first_regno, last_regno;
|
|
|
|
|
|
2001-10-08 22:42:08 +02:00
|
|
|
|
tcb_ptr = find_tcb (inferior_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
old_chain = save_inferior_ptid ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
inferior_ptid = main_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (tcb_ptr->state == cma__c_state_running)
|
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_fetch_registers (regno);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (regno == -1)
|
|
|
|
|
{
|
|
|
|
|
first_regno = 0;
|
|
|
|
|
last_regno = NUM_REGS - 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
first_regno = regno;
|
|
|
|
|
last_regno = regno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (regno = first_regno; regno <= last_regno; regno++)
|
|
|
|
|
{
|
|
|
|
|
if (regmap[regno] == -1)
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_fetch_registers (regno);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2003-05-08 Andrew Cagney <cagney@redhat.com>
* regcache.h (max_register_size): Delete declaration.
* regcache.c (max_register_size): Delete function.
(struct regcache_descr): Delete field "max_register_size".
(init_regcache_descr, init_legacy_regcache_descr): Assert that all
registers fit in MAX_REGISTER_SIZE.
(regcache_save): Replace max_register_size with MAX_REGISTER_SIZE.
(regcache_restore, regcache_xfer_part, regcache_dump): Ditto.
* thread-db.c: Replace max_register_size with MAX_REGISTER_SIZE.
* sh-tdep.c, rom68k-rom.c, remote-sim.c, remote-mips.c: Ditto.
* remote-e7000.c, monitor.c, mipsv4-nat.c, mips-nat.c: Ditto.
* m68klinux-nat.c, lynx-nat.c, irix4-nat.c: Ditto.
* hpux-thread.c, hppah-nat.c, hppab-nat.c, hppa-tdep.c: Ditto.
* dve3900-rom.c, hppa-tdep.c: Ditto.
2003-05-09 00:33:14 +02:00
|
|
|
|
unsigned char buf[MAX_REGISTER_SIZE];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CORE_ADDR sp;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sp = (CORE_ADDR) tcb_ptr->static_ctx.sp - 160;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-11-23 02:01:59 +01:00
|
|
|
|
if (regno == HPPA_FLAGS_REGNUM)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Flags must be 0 to avoid bogus value for SS_INSYSCALL */
|
2004-08-02 Andrew Cagney <cagney@gnu.org>
Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
* rs6000-tdep.c (rs6000_push_dummy_call)
(rs6000_extract_return_value): Use register_size.
* xstormy16-tdep.c (xstormy16_get_saved_register)
(xstormy16_extract_return_value): Ditto.
* valops.c (value_assign): Ditto.
* v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
* v850-tdep.c (v850_extract_return_value): Ditto.
* tracepoint.c (collect_symbol): Ditto.
* target.c (debug_print_register): Ditto.
* stack.c (frame_info): Ditto.
* rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
* rom68k-rom.c (rom68k_supply_one_register): Ditto.
* remote.c (struct packet_reg, remote_wait, remote_async_wait)
(store_register_using_P): Ditto.
* remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
* remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
* remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
* remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
* regcache.c (deprecated_read_register_bytes)
(deprecated_write_register_bytes, read_register)
(write_register): Ditto.
* ppc-linux-nat.c (fetch_altivec_register, fetch_register)
(supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
* monitor.c (monitor_supply_register, monitor_fetch_register)
(monitor_store_register): Ditto.
* mn10300-tdep.c (mn10300_pop_frame_regular)
(mn10300_print_register): Ditto.
* mipsv4-nat.c (fill_fpregset): Ditto.
* mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
(mips64_fill_fpregset): Ditto.
* mi/mi-main.c (register_changed_p, get_register)
(mi_cmd_data_write_register_values): Ditto.
* lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
* irix5-nat.c (fill_gregset, fetch_core_registers):
* infrun.c (write_inferior_status_register): Ditto.
* infptrace.c (fetch_register, store_register): Ditto.
* infcmd.c (default_print_registers_info): Ditto.
* ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
* ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
* i386gnu-nat.c (gnu_store_registers, fill): Ditto.
* hpux-thread.c (hpux_thread_fetch_registers)
(hpux_thread_store_registers): Ditto.
* hppah-nat.c (store_inferior_registers, fetch_register):
* findvar.c (value_from_register): Ditto.
* dve3900-rom.c (fetch_bitmapped_register):
* cris-tdep.c (cris_gdbarch_init): Ditto.
* alpha-tdep.h: Ditto.
* aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
2004-08-03 02:57:27 +02:00
|
|
|
|
memset (buf, '\000', register_size (current_gdbarch, regno));
|
2004-11-23 02:01:59 +01:00
|
|
|
|
else if (regno == HPPA_SP_REGNUM)
|
2003-05-13 21:27:28 +02:00
|
|
|
|
store_unsigned_integer (buf, sizeof sp, sp);
|
2004-11-23 02:01:59 +01:00
|
|
|
|
else if (regno == HPPA_PCOQ_HEAD_REGNUM)
|
2004-08-02 Andrew Cagney <cagney@gnu.org>
Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
* rs6000-tdep.c (rs6000_push_dummy_call)
(rs6000_extract_return_value): Use register_size.
* xstormy16-tdep.c (xstormy16_get_saved_register)
(xstormy16_extract_return_value): Ditto.
* valops.c (value_assign): Ditto.
* v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
* v850-tdep.c (v850_extract_return_value): Ditto.
* tracepoint.c (collect_symbol): Ditto.
* target.c (debug_print_register): Ditto.
* stack.c (frame_info): Ditto.
* rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
* rom68k-rom.c (rom68k_supply_one_register): Ditto.
* remote.c (struct packet_reg, remote_wait, remote_async_wait)
(store_register_using_P): Ditto.
* remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
* remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
* remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
* remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
* regcache.c (deprecated_read_register_bytes)
(deprecated_write_register_bytes, read_register)
(write_register): Ditto.
* ppc-linux-nat.c (fetch_altivec_register, fetch_register)
(supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
* monitor.c (monitor_supply_register, monitor_fetch_register)
(monitor_store_register): Ditto.
* mn10300-tdep.c (mn10300_pop_frame_regular)
(mn10300_print_register): Ditto.
* mipsv4-nat.c (fill_fpregset): Ditto.
* mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
(mips64_fill_fpregset): Ditto.
* mi/mi-main.c (register_changed_p, get_register)
(mi_cmd_data_write_register_values): Ditto.
* lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
* irix5-nat.c (fill_gregset, fetch_core_registers):
* infrun.c (write_inferior_status_register): Ditto.
* infptrace.c (fetch_register, store_register): Ditto.
* infcmd.c (default_print_registers_info): Ditto.
* ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
* ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
* i386gnu-nat.c (gnu_store_registers, fill): Ditto.
* hpux-thread.c (hpux_thread_fetch_registers)
(hpux_thread_store_registers): Ditto.
* hppah-nat.c (store_inferior_registers, fetch_register):
* findvar.c (value_from_register): Ditto.
* dve3900-rom.c (fetch_bitmapped_register):
* cris-tdep.c (cris_gdbarch_init): Ditto.
* alpha-tdep.h: Ditto.
* aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
2004-08-03 02:57:27 +02:00
|
|
|
|
read_memory (sp - 20, buf, register_size (current_gdbarch, regno));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
2004-08-02 Andrew Cagney <cagney@gnu.org>
Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
* rs6000-tdep.c (rs6000_push_dummy_call)
(rs6000_extract_return_value): Use register_size.
* xstormy16-tdep.c (xstormy16_get_saved_register)
(xstormy16_extract_return_value): Ditto.
* valops.c (value_assign): Ditto.
* v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
* v850-tdep.c (v850_extract_return_value): Ditto.
* tracepoint.c (collect_symbol): Ditto.
* target.c (debug_print_register): Ditto.
* stack.c (frame_info): Ditto.
* rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
* rom68k-rom.c (rom68k_supply_one_register): Ditto.
* remote.c (struct packet_reg, remote_wait, remote_async_wait)
(store_register_using_P): Ditto.
* remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
* remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
* remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
* remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
* regcache.c (deprecated_read_register_bytes)
(deprecated_write_register_bytes, read_register)
(write_register): Ditto.
* ppc-linux-nat.c (fetch_altivec_register, fetch_register)
(supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
* monitor.c (monitor_supply_register, monitor_fetch_register)
(monitor_store_register): Ditto.
* mn10300-tdep.c (mn10300_pop_frame_regular)
(mn10300_print_register): Ditto.
* mipsv4-nat.c (fill_fpregset): Ditto.
* mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
(mips64_fill_fpregset): Ditto.
* mi/mi-main.c (register_changed_p, get_register)
(mi_cmd_data_write_register_values): Ditto.
* lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
* irix5-nat.c (fill_gregset, fetch_core_registers):
* infrun.c (write_inferior_status_register): Ditto.
* infptrace.c (fetch_register, store_register): Ditto.
* infcmd.c (default_print_registers_info): Ditto.
* ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
* ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
* i386gnu-nat.c (gnu_store_registers, fill): Ditto.
* hpux-thread.c (hpux_thread_fetch_registers)
(hpux_thread_store_registers): Ditto.
* hppah-nat.c (store_inferior_registers, fetch_register):
* findvar.c (value_from_register): Ditto.
* dve3900-rom.c (fetch_bitmapped_register):
* cris-tdep.c (cris_gdbarch_init): Ditto.
* alpha-tdep.h: Ditto.
* aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
2004-08-03 02:57:27 +02:00
|
|
|
|
read_memory (sp + regmap[regno], buf, register_size (current_gdbarch, regno));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-07-21 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_supply instead of supply_register.
* regcache.h (supply_register): Delete declaration.
* regcache.c (supply_register): Delete function.
* wince.c (do_child_fetch_inferior_registers): Update.
* win32-nat.c (do_child_fetch_inferior_registers)
(fetch_elf_core_registers): Update.
* v850ice.c (v850ice_fetch_registers): Update.
* thread-db.c (thread_db_store_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_supply_reg): Update.
* rs6000-nat.c (fetch_register): Update.
* rom68k-rom.c (rom68k_supply_one_register): Update.
* remote.c (remote_wait, remote_async_wait): Update.
* remote-st.c (get_hex_regs): Update.
* remote-sim.c (gdbsim_fetch_register): Update.
* remote-sds.c (sds_fetch_registers): Update.
* remote-rdp.c (remote_rdp_fetch_register): Update.
* remote-rdi.c (arm_rdi_fetch_registers): Update.
* remote-mips.c (mips_wait, mips_fetch_registers): Update.
* remote-m32r-sdi.c (m32r_fetch_register): Update.
* remote-hms.c (init_hms_cmds): Update.
* remote-est.c (init_est_cmds): Update.
* remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
(e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
* ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, supply_vrregset)
(fetch_spe_registers): Update.
* ppc-bdm.c (bdm_ppc_fetch_registers): Update.
* monitor.c (monitor_supply_register): Update.
* mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
* mipsnbsd-tdep.c (mipsnbsd_supply_reg)
(mipsnbsd_supply_fpreg): Update.
* mips-nat.c (fetch_inferior_registers)
(fetch_core_registers): Update.
* mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
(supply_fpregset, mips64_supply_gregset)
(mips64_supply_fpregset): Update.
* m68klinux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* m68k-tdep.c (supply_gregset, supply_fpregset): Update.
* m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
* lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
* irix5-nat.c (supply_gregset, supply_fpregset): Update.
* infptrace.c (fetch_register): Update.
* ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
* ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_gregset)
(gnu_fetch_registers, gnu_store_registers): Update.
* i386-nto-tdep.c (i386nto_supply_gregset): Update.
* i386-linux-nat.c (fetch_register, supply_gregset)
(dummy_sse_values): Update.
* hpux-thread.c (hpux_thread_fetch_registers): Update.
* hppah-nat.c (fetch_register): Update.
* hppa-linux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* go32-nat.c (fetch_register): Update.
* dve3900-rom.c (fetch_bitmapped_register)
(_initialize_r3900_rom): Update.
* cris-tdep.c (supply_gregset): Update.
* abug-rom.c (init_abug_cmds): Update.
* core-aout.c (fetch_core_registers): Update.
* armnbsd-nat.c (supply_gregset, supply_fparegset)
(fetch_register, fetch_fp_register): Update.
* arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
(fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
(fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
* alphanbsd-tdep.c (fetch_core_registers): Update.
* alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
* alpha-nat.c (fetch_osf_core_registers)
(fetch_osf_core_registers, fetch_osf_core_registers): Update.
* aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
(supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2004-07-22 03:31:49 +02:00
|
|
|
|
regcache_raw_supply (current_regcache, regno, buf);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_store_registers (int regno)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
cma__t_int_tcb tcb, *tcb_ptr;
|
|
|
|
|
struct cleanup *old_chain;
|
|
|
|
|
int i;
|
|
|
|
|
int first_regno, last_regno;
|
|
|
|
|
|
2001-10-08 22:42:08 +02:00
|
|
|
|
tcb_ptr = find_tcb (inferior_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
old_chain = save_inferior_ptid ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
inferior_ptid = main_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (tcb_ptr->state == cma__c_state_running)
|
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_store_registers (regno);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (regno == -1)
|
|
|
|
|
{
|
|
|
|
|
first_regno = 0;
|
|
|
|
|
last_regno = NUM_REGS - 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
first_regno = regno;
|
|
|
|
|
last_regno = regno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (regno = first_regno; regno <= last_regno; regno++)
|
|
|
|
|
{
|
|
|
|
|
if (regmap[regno] == -1)
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_store_registers (regno);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2003-05-08 Andrew Cagney <cagney@redhat.com>
* regcache.h (max_register_size): Delete declaration.
* regcache.c (max_register_size): Delete function.
(struct regcache_descr): Delete field "max_register_size".
(init_regcache_descr, init_legacy_regcache_descr): Assert that all
registers fit in MAX_REGISTER_SIZE.
(regcache_save): Replace max_register_size with MAX_REGISTER_SIZE.
(regcache_restore, regcache_xfer_part, regcache_dump): Ditto.
* thread-db.c: Replace max_register_size with MAX_REGISTER_SIZE.
* sh-tdep.c, rom68k-rom.c, remote-sim.c, remote-mips.c: Ditto.
* remote-e7000.c, monitor.c, mipsv4-nat.c, mips-nat.c: Ditto.
* m68klinux-nat.c, lynx-nat.c, irix4-nat.c: Ditto.
* hpux-thread.c, hppah-nat.c, hppab-nat.c, hppa-tdep.c: Ditto.
* dve3900-rom.c, hppa-tdep.c: Ditto.
2003-05-09 00:33:14 +02:00
|
|
|
|
unsigned char buf[MAX_REGISTER_SIZE];
|
1999-04-16 03:35:26 +02:00
|
|
|
|
CORE_ADDR sp;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
sp = (CORE_ADDR) tcb_ptr->static_ctx.sp - 160;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-11-23 02:01:59 +01:00
|
|
|
|
if (regno == HPPA_FLAGS_REGNUM)
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_store_registers (regno); /* Let lower layer handle this... */
|
2004-11-23 02:01:59 +01:00
|
|
|
|
else if (regno == HPPA_SP_REGNUM)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-11-23 02:01:59 +01:00
|
|
|
|
regcache_raw_read (current_regcache, regno, buf);
|
|
|
|
|
write_memory ((CORE_ADDR) &tcb_ptr->static_ctx.sp, buf,
|
|
|
|
|
register_size (current_gdbarch, regno));
|
|
|
|
|
tcb_ptr->static_ctx.sp
|
|
|
|
|
= (cma__t_hppa_regs *) ((CORE_ADDR) buf + 160);
|
|
|
|
|
}
|
|
|
|
|
else if (regno == HPPA_PCOQ_HEAD_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
regcache_raw_read (current_regcache, regno, buf);
|
|
|
|
|
write_memory (sp - 20, buf,
|
2004-08-02 Andrew Cagney <cagney@gnu.org>
Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
* rs6000-tdep.c (rs6000_push_dummy_call)
(rs6000_extract_return_value): Use register_size.
* xstormy16-tdep.c (xstormy16_get_saved_register)
(xstormy16_extract_return_value): Ditto.
* valops.c (value_assign): Ditto.
* v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
* v850-tdep.c (v850_extract_return_value): Ditto.
* tracepoint.c (collect_symbol): Ditto.
* target.c (debug_print_register): Ditto.
* stack.c (frame_info): Ditto.
* rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
* rom68k-rom.c (rom68k_supply_one_register): Ditto.
* remote.c (struct packet_reg, remote_wait, remote_async_wait)
(store_register_using_P): Ditto.
* remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
* remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
* remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
* remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
* regcache.c (deprecated_read_register_bytes)
(deprecated_write_register_bytes, read_register)
(write_register): Ditto.
* ppc-linux-nat.c (fetch_altivec_register, fetch_register)
(supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
* monitor.c (monitor_supply_register, monitor_fetch_register)
(monitor_store_register): Ditto.
* mn10300-tdep.c (mn10300_pop_frame_regular)
(mn10300_print_register): Ditto.
* mipsv4-nat.c (fill_fpregset): Ditto.
* mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
(mips64_fill_fpregset): Ditto.
* mi/mi-main.c (register_changed_p, get_register)
(mi_cmd_data_write_register_values): Ditto.
* lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
* irix5-nat.c (fill_gregset, fetch_core_registers):
* infrun.c (write_inferior_status_register): Ditto.
* infptrace.c (fetch_register, store_register): Ditto.
* infcmd.c (default_print_registers_info): Ditto.
* ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
* ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
* i386gnu-nat.c (gnu_store_registers, fill): Ditto.
* hpux-thread.c (hpux_thread_fetch_registers)
(hpux_thread_store_registers): Ditto.
* hppah-nat.c (store_inferior_registers, fetch_register):
* findvar.c (value_from_register): Ditto.
* dve3900-rom.c (fetch_bitmapped_register):
* cris-tdep.c (cris_gdbarch_init): Ditto.
* alpha-tdep.h: Ditto.
* aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
2004-08-03 02:57:27 +02:00
|
|
|
|
register_size (current_gdbarch, regno));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2004-11-23 02:01:59 +01:00
|
|
|
|
{
|
|
|
|
|
regcache_raw_read (current_regcache, regno, buf);
|
|
|
|
|
write_memory (sp + regmap[regno], buf,
|
|
|
|
|
register_size (current_gdbarch, regno));
|
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get ready to modify the registers array. On machines which store
|
|
|
|
|
individual registers, this doesn't need to do anything. On machines
|
|
|
|
|
which store all the registers in one fell swoop, this makes sure
|
|
|
|
|
that registers contains all the registers from the program being
|
|
|
|
|
debugged. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_prepare_to_store (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_prepare_to_store ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2000-09-06 00:46:57 +02:00
|
|
|
|
hpux_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
|
2001-02-17 00:09:05 +01:00
|
|
|
|
int dowrite, struct mem_attrib *attribs,
|
|
|
|
|
struct target_ops *target)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
int retval;
|
|
|
|
|
struct cleanup *old_chain;
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
old_chain = save_inferior_ptid ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
inferior_ptid = main_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-02-17 00:09:05 +01:00
|
|
|
|
retval =
|
2004-10-08 22:30:00 +02:00
|
|
|
|
deprecated_child_ops.deprecated_xfer_memory (memaddr, myaddr, len, dowrite, attribs, target);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print status information about what we're accessing. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_files_info (struct target_ops *ignore)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_files_info (ignore);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_kill_inferior (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_kill ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2001-05-04 06:15:33 +02:00
|
|
|
|
hpux_thread_notice_signals (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_notice_signals (ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fork an inferior process, and start debugging it with /proc. */
|
|
|
|
|
|
|
|
|
|
static void
|
2004-05-25 16:58:31 +02:00
|
|
|
|
hpux_thread_create_inferior (char *exec_file, char *allargs, char **env,
|
|
|
|
|
int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_create_inferior (exec_file, allargs, env, from_tty);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
if (hpux_thread_active)
|
|
|
|
|
{
|
2001-05-04 06:15:33 +02:00
|
|
|
|
main_ptid = inferior_ptid;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
push_target (&hpux_thread_ops);
|
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
inferior_ptid = find_active_thread ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-05-04 06:15:33 +02:00
|
|
|
|
add_thread (inferior_ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This routine is called whenever a new symbol table is read in, or when all
|
|
|
|
|
symbol tables are removed. libthread_db can only be initialized when it
|
|
|
|
|
finds the right variables in libthread.so. Since it's a shared library,
|
|
|
|
|
those variables don't show up until the library gets mapped and the symbol
|
|
|
|
|
table is read in. */
|
|
|
|
|
|
1999-11-09 02:23:30 +01:00
|
|
|
|
/* This new_objfile event is now managed by a chained function pointer.
|
|
|
|
|
* It is the callee's responsability to call the next client on the chain.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Saved pointer to previous owner of the new_objfile event. */
|
2000-06-04 02:41:10 +02:00
|
|
|
|
static void (*target_new_objfile_chain) (struct objfile *);
|
1999-11-09 02:23:30 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_new_objfile (struct objfile *objfile)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
struct minimal_symbol *ms;
|
|
|
|
|
|
|
|
|
|
if (!objfile)
|
|
|
|
|
{
|
|
|
|
|
hpux_thread_active = 0;
|
1999-11-09 02:23:30 +01:00
|
|
|
|
goto quit;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ms = lookup_minimal_symbol ("cma__g_known_threads", NULL, objfile);
|
|
|
|
|
|
|
|
|
|
if (!ms)
|
1999-11-09 02:23:30 +01:00
|
|
|
|
goto quit;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
P_cma__g_known_threads = SYMBOL_VALUE_ADDRESS (ms);
|
|
|
|
|
|
|
|
|
|
ms = lookup_minimal_symbol ("cma__g_current_thread", NULL, objfile);
|
|
|
|
|
|
|
|
|
|
if (!ms)
|
1999-11-09 02:23:30 +01:00
|
|
|
|
goto quit;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
P_cma__g_current_thread = SYMBOL_VALUE_ADDRESS (ms);
|
|
|
|
|
|
|
|
|
|
hpux_thread_active = 1;
|
1999-11-09 02:23:30 +01:00
|
|
|
|
quit:
|
|
|
|
|
/* Call predecessor on chain, if any. */
|
|
|
|
|
if (target_new_objfile_chain)
|
|
|
|
|
target_new_objfile_chain (objfile);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clean up after the inferior dies. */
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_mourn_inferior (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_mourn_inferior ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mark our target-struct as eligible for stray "run" and "attach" commands. */
|
|
|
|
|
|
|
|
|
|
static int
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_can_run (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
return child_suppress_run;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2001-05-04 06:15:33 +02:00
|
|
|
|
hpux_thread_alive (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
hpux_thread_stop (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
2004-10-05 23:53:33 +02:00
|
|
|
|
deprecated_child_ops.to_stop ();
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Convert a pid to printable form. */
|
|
|
|
|
|
|
|
|
|
char *
|
2001-05-04 06:15:33 +02:00
|
|
|
|
hpux_pid_to_str (ptid_t ptid)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
static char buf[100];
|
2001-05-04 06:15:33 +02:00
|
|
|
|
int pid = PIDGET (ptid);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2001-10-08 22:42:08 +02:00
|
|
|
|
sprintf (buf, "Thread %ld", ptid_get_tid (ptid));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
init_hpux_thread_ops (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
hpux_thread_ops.to_shortname = "hpux-threads";
|
|
|
|
|
hpux_thread_ops.to_longname = "HPUX threads and pthread.";
|
|
|
|
|
hpux_thread_ops.to_doc = "HPUX threads and pthread support.";
|
|
|
|
|
hpux_thread_ops.to_open = hpux_thread_open;
|
|
|
|
|
hpux_thread_ops.to_attach = hpux_thread_attach;
|
|
|
|
|
hpux_thread_ops.to_detach = hpux_thread_detach;
|
|
|
|
|
hpux_thread_ops.to_resume = hpux_thread_resume;
|
|
|
|
|
hpux_thread_ops.to_wait = hpux_thread_wait;
|
|
|
|
|
hpux_thread_ops.to_fetch_registers = hpux_thread_fetch_registers;
|
|
|
|
|
hpux_thread_ops.to_store_registers = hpux_thread_store_registers;
|
|
|
|
|
hpux_thread_ops.to_prepare_to_store = hpux_thread_prepare_to_store;
|
2004-10-08 22:30:00 +02:00
|
|
|
|
hpux_thread_ops.deprecated_xfer_memory = hpux_thread_xfer_memory;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
hpux_thread_ops.to_files_info = hpux_thread_files_info;
|
|
|
|
|
hpux_thread_ops.to_insert_breakpoint = memory_insert_breakpoint;
|
|
|
|
|
hpux_thread_ops.to_remove_breakpoint = memory_remove_breakpoint;
|
|
|
|
|
hpux_thread_ops.to_terminal_init = terminal_init_inferior;
|
|
|
|
|
hpux_thread_ops.to_terminal_inferior = terminal_inferior;
|
|
|
|
|
hpux_thread_ops.to_terminal_ours_for_output = terminal_ours_for_output;
|
2002-08-26 21:18:33 +02:00
|
|
|
|
hpux_thread_ops.to_terminal_save_ours = terminal_save_ours;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
hpux_thread_ops.to_terminal_ours = terminal_ours;
|
|
|
|
|
hpux_thread_ops.to_terminal_info = child_terminal_info;
|
|
|
|
|
hpux_thread_ops.to_kill = hpux_thread_kill_inferior;
|
|
|
|
|
hpux_thread_ops.to_create_inferior = hpux_thread_create_inferior;
|
|
|
|
|
hpux_thread_ops.to_mourn_inferior = hpux_thread_mourn_inferior;
|
|
|
|
|
hpux_thread_ops.to_can_run = hpux_thread_can_run;
|
|
|
|
|
hpux_thread_ops.to_notice_signals = hpux_thread_notice_signals;
|
1999-05-05 16:45:51 +02:00
|
|
|
|
hpux_thread_ops.to_thread_alive = hpux_thread_alive;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
hpux_thread_ops.to_stop = hpux_thread_stop;
|
|
|
|
|
hpux_thread_ops.to_stratum = process_stratum;
|
|
|
|
|
hpux_thread_ops.to_has_all_memory = 1;
|
|
|
|
|
hpux_thread_ops.to_has_memory = 1;
|
|
|
|
|
hpux_thread_ops.to_has_stack = 1;
|
|
|
|
|
hpux_thread_ops.to_has_registers = 1;
|
|
|
|
|
hpux_thread_ops.to_has_execution = 1;
|
|
|
|
|
hpux_thread_ops.to_magic = OPS_MAGIC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
|
_initialize_hpux_thread (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
{
|
|
|
|
|
init_hpux_thread_ops ();
|
|
|
|
|
add_target (&hpux_thread_ops);
|
|
|
|
|
|
|
|
|
|
child_suppress_run = 1;
|
2005-01-14 01:25:00 +01:00
|
|
|
|
/* Hook into new_objfile notification. */
|
2004-04-21 Andrew Cagney <cagney@redhat.com>
* annotate.h (deprecated_annotate_starting_hook)
(deprecated_annotate_stopped_hook)
(deprecated_annotate_exited_hook)
(deprecated_annotate_signal_hook)
(deprecated_annotate_signalled_hook): Deprecate.
* tracepoint.h (deprecated_create_tracepoint_hook)
(deprecated_delete_tracepoint_hook)
(deprecated_modify_tracepoint_hook)
(deprecated_trace_find_hook)
(deprecated_trace_start_stop_hook): Deprecate.
* target.h (deprecated_target_new_objfile_hook): Deprecate.
* remote.h (deprecated_target_resume_hook)
(deprecated_target_wait_loop_hook): Deprecate.
* gdbcore.h (deprecated_exec_file_display_hook)
(deprecated_file_changed_hook): Deprecate.
* frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
* defs.h (deprecated_modify_breakpoint_hook)
(deprecated_command_loop_hook, deprecated_show_load_progress)
(deprecated_print_frame_info_listing_hook)
(deprecated_query_hook, deprecated_warning_hook)
(deprecated_flush_hook, deprecated_create_breakpoint_hook)
(deprecated_delete_breakpoint_hook)
(deprecated_interactive_hook, deprecated_registers_changed_hook)
(deprecated_readline_begin_hook, deprecated_readline_hook)
(deprecated_readline_end_hook, deprecated_register_changed_hook)
(deprecated_memory_changed_hook, deprecated_init_ui_hook)
(deprecated_context_hook, deprecated_target_wait_hook)
(deprecated_attach_hook, deprecated_detach_hook)
(deprecated_call_command_hook, deprecated_set_hook)
(deprecated_error_hook, deprecated_error_begin_hook)
(deprecated_ui_load_progress_hook): Deprecate.
* valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
* tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
* target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
* remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
* main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
* exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
* annotate.c, aix-thread.c: Update.
2004-04-22 01:52:21 +02:00
|
|
|
|
target_new_objfile_chain = deprecated_target_new_objfile_hook;
|
|
|
|
|
deprecated_target_new_objfile_hook = hpux_thread_new_objfile;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
}
|