2002-07-13 02:29:37 +02:00
|
|
|
/* Low level interface for debugging AIX 4.3+ pthreads.
|
|
|
|
|
|
|
|
Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
|
|
|
|
Written by Nick Duffek <nsd@redhat.com>.
|
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
|
|
|
|
/* This module uses the libpthdebug.a library provided by AIX 4.3+ for
|
|
|
|
debugging pthread applications.
|
|
|
|
|
|
|
|
Some name prefix conventions:
|
|
|
|
pthdb_ provided by libpthdebug.a
|
|
|
|
pdc_ callbacks that this module provides to libpthdebug.a
|
|
|
|
pd_ variables or functions interfacing with libpthdebug.a
|
|
|
|
|
|
|
|
libpthdebug peculiarities:
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
- pthdb_ptid_pthread() is prototyped in <sys/pthdebug.h>, but
|
|
|
|
it's not documented, and after several calls it stops working
|
|
|
|
and causes other libpthdebug functions to fail.
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
- pthdb_tid_pthread() doesn't always work after
|
|
|
|
pthdb_session_update(), but it does work after cycling through
|
|
|
|
all threads using pthdb_pthread().
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "defs.h"
|
2002-07-22 21:20:21 +02:00
|
|
|
#include "gdb_assert.h"
|
2002-07-13 02:29:37 +02:00
|
|
|
#include "gdbthread.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "inferior.h"
|
|
|
|
#include "regcache.h"
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
#include "gdbcmd.h"
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
#include "ppc-tdep.h"
|
2004-05-14 00:26:39 +02:00
|
|
|
#include "gdb_string.h"
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
#include <procinfo.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#include <sys/reg.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <sys/pthdebug.h>
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Whether to emit debugging output. */
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
static int debug_aix_thread;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* In AIX 5.1, functions use pthdb_tid_t instead of tid_t. */
|
2002-07-13 02:29:37 +02:00
|
|
|
#ifndef PTHDB_VERSION_3
|
|
|
|
#define pthdb_tid_t tid_t
|
|
|
|
#endif
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Return whether to treat PID as a debuggable thread id. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
#define PD_TID(ptid) (pd_active && ptid_get_tid (ptid) != 0)
|
|
|
|
|
|
|
|
/* Build a thread ptid. */
|
|
|
|
#define BUILD_THREAD(TID, PID) ptid_build (PID, 0, TID)
|
|
|
|
|
|
|
|
/* Build and lwp ptid. */
|
|
|
|
#define BUILD_LWP(LWP, PID) MERGEPID (PID, LWP)
|
|
|
|
|
|
|
|
/* pthdb_user_t value that we pass to pthdb functions. 0 causes
|
2002-07-18 21:26:14 +02:00
|
|
|
PTHDB_BAD_USER errors, so use 1. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
#define PD_USER 1
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Success and failure values returned by pthdb callbacks. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
#define PDC_SUCCESS PTHDB_SUCCESS
|
|
|
|
#define PDC_FAILURE PTHDB_CALLBACK
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Private data attached to each element in GDB's thread list. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
struct private_thread_info {
|
2002-07-18 21:26:14 +02:00
|
|
|
pthdb_pthread_t pdtid; /* thread's libpthdebug id */
|
2002-07-13 02:29:37 +02:00
|
|
|
pthdb_tid_t tid; /* kernel thread id */
|
|
|
|
};
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Information about a thread of which libpthdebug is aware. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
struct pd_thread {
|
|
|
|
pthdb_pthread_t pdtid;
|
|
|
|
pthread_t pthid;
|
|
|
|
pthdb_tid_t tid;
|
|
|
|
};
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* This module's target-specific operations, active while pd_able is true. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-23 00:11:03 +02:00
|
|
|
static struct target_ops aix_thread_ops;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2004-10-05 23:53:33 +02:00
|
|
|
/* Copy of the target over which ops is pushed. This is more
|
|
|
|
convenient than a pointer to deprecated_child_ops or core_ops,
|
2002-07-18 21:26:14 +02:00
|
|
|
because they lack current_target's default callbacks. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-23 00:11:03 +02:00
|
|
|
static struct target_ops base_target;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Address of the function that libpthread will call when libpthdebug
|
|
|
|
is ready to be initialized. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static CORE_ADDR pd_brk_addr;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Whether the current application is debuggable by pthdb. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int pd_able = 0;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Whether a threaded application is being debugged. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int pd_active = 0;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Whether the current architecture is 64-bit.
|
|
|
|
Only valid when pd_able is true. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int arch64;
|
|
|
|
|
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
|
|
|
/* Saved pointer to previous owner of
|
|
|
|
deprecated_target_new_objfile_hook. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void (*target_new_objfile_chain)(struct objfile *);
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Forward declarations for pthdb callbacks. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int pdc_symbol_addrs (pthdb_user_t, pthdb_symbol_t *, int);
|
|
|
|
static int pdc_read_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
|
|
|
|
static int pdc_write_data (pthdb_user_t, void *, pthdb_addr_t, size_t);
|
|
|
|
static int pdc_read_regs (pthdb_user_t user, pthdb_tid_t tid,
|
2002-07-18 21:26:14 +02:00
|
|
|
unsigned long long flags,
|
|
|
|
pthdb_context_t *context);
|
2002-07-13 02:29:37 +02:00
|
|
|
static int pdc_write_regs (pthdb_user_t user, pthdb_tid_t tid,
|
2002-07-18 21:26:14 +02:00
|
|
|
unsigned long long flags,
|
|
|
|
pthdb_context_t *context);
|
2002-07-13 02:29:37 +02:00
|
|
|
static int pdc_alloc (pthdb_user_t, size_t, void **);
|
|
|
|
static int pdc_realloc (pthdb_user_t, void *, size_t, void **);
|
|
|
|
static int pdc_dealloc (pthdb_user_t, void *);
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* pthdb callbacks. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static pthdb_callbacks_t pd_callbacks = {
|
|
|
|
pdc_symbol_addrs,
|
|
|
|
pdc_read_data,
|
|
|
|
pdc_write_data,
|
|
|
|
pdc_read_regs,
|
|
|
|
pdc_write_regs,
|
|
|
|
pdc_alloc,
|
|
|
|
pdc_realloc,
|
|
|
|
pdc_dealloc,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Current pthdb session. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static pthdb_session_t pd_session;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Return a printable representation of pthdebug function return
|
|
|
|
STATUS. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static char *
|
|
|
|
pd_status2str (int status)
|
|
|
|
{
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case PTHDB_SUCCESS: return "SUCCESS";
|
|
|
|
case PTHDB_NOSYS: return "NOSYS";
|
|
|
|
case PTHDB_NOTSUP: return "NOTSUP";
|
|
|
|
case PTHDB_BAD_VERSION: return "BAD_VERSION";
|
|
|
|
case PTHDB_BAD_USER: return "BAD_USER";
|
|
|
|
case PTHDB_BAD_SESSION: return "BAD_SESSION";
|
|
|
|
case PTHDB_BAD_MODE: return "BAD_MODE";
|
|
|
|
case PTHDB_BAD_FLAGS: return "BAD_FLAGS";
|
|
|
|
case PTHDB_BAD_CALLBACK: return "BAD_CALLBACK";
|
|
|
|
case PTHDB_BAD_POINTER: return "BAD_POINTER";
|
|
|
|
case PTHDB_BAD_CMD: return "BAD_CMD";
|
|
|
|
case PTHDB_BAD_PTHREAD: return "BAD_PTHREAD";
|
|
|
|
case PTHDB_BAD_ATTR: return "BAD_ATTR";
|
|
|
|
case PTHDB_BAD_MUTEX: return "BAD_MUTEX";
|
|
|
|
case PTHDB_BAD_MUTEXATTR: return "BAD_MUTEXATTR";
|
|
|
|
case PTHDB_BAD_COND: return "BAD_COND";
|
|
|
|
case PTHDB_BAD_CONDATTR: return "BAD_CONDATTR";
|
|
|
|
case PTHDB_BAD_RWLOCK: return "BAD_RWLOCK";
|
|
|
|
case PTHDB_BAD_RWLOCKATTR: return "BAD_RWLOCKATTR";
|
|
|
|
case PTHDB_BAD_KEY: return "BAD_KEY";
|
|
|
|
case PTHDB_BAD_PTID: return "BAD_PTID";
|
|
|
|
case PTHDB_BAD_TID: return "BAD_TID";
|
|
|
|
case PTHDB_CALLBACK: return "CALLBACK";
|
|
|
|
case PTHDB_CONTEXT: return "CONTEXT";
|
|
|
|
case PTHDB_HELD: return "HELD";
|
|
|
|
case PTHDB_NOT_HELD: return "NOT_HELD";
|
|
|
|
case PTHDB_MEMORY: return "MEMORY";
|
|
|
|
case PTHDB_NOT_PTHREADED: return "NOT_PTHREADED";
|
|
|
|
case PTHDB_SYMBOL: return "SYMBOL";
|
|
|
|
case PTHDB_NOT_AVAIL: return "NOT_AVAIL";
|
|
|
|
case PTHDB_INTERNAL: return "INTERNAL";
|
|
|
|
default: return "UNKNOWN";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* A call to ptrace(REQ, ID, ...) just returned RET. Check for
|
|
|
|
exceptional conditions and either return nonlocally or else return
|
|
|
|
1 for success and 0 for failure. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
ptrace_check (int req, int id, int ret)
|
|
|
|
{
|
|
|
|
if (ret == 0 && !errno)
|
|
|
|
return 1;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* According to ptrace(2), ptrace may fail with EPERM if "the
|
|
|
|
Identifier parameter corresponds to a kernel thread which is
|
|
|
|
stopped in kernel mode and whose computational state cannot be
|
|
|
|
read or written." This happens quite often with register reads. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
switch (req)
|
|
|
|
{
|
|
|
|
case PTT_READ_GPRS:
|
|
|
|
case PTT_READ_FPRS:
|
|
|
|
case PTT_READ_SPRS:
|
|
|
|
if (ret == -1 && errno == EPERM)
|
2002-07-15 22:06:12 +02:00
|
|
|
{
|
|
|
|
if (debug_aix_thread)
|
2002-07-18 21:26:14 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
"ptrace (%d, %d) = %d (errno = %d)\n",
|
2002-07-15 22:06:12 +02:00
|
|
|
req, id, ret, errno);
|
|
|
|
return ret == -1 ? 0 : 1;
|
|
|
|
}
|
2002-07-13 02:29:37 +02:00
|
|
|
break;
|
|
|
|
}
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
error (_("aix-thread: ptrace (%d, %d) returned %d (errno = %d %s)"),
|
2002-07-16 02:22:45 +02:00
|
|
|
req, id, ret, errno, safe_strerror (errno));
|
2002-07-18 21:26:14 +02:00
|
|
|
return 0; /* Not reached. */
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Call ptracex (REQ, ID, ADDR, DATA, BUF). Return success. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
ptrace64aix (int req, int id, long long addr, int data, int *buf)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
return ptrace_check (req, id, ptracex (req, id, addr, data, buf));
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Call ptrace (REQ, ID, ADDR, DATA, BUF). Return success. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
ptrace32 (int req, int id, int *addr, int data, int *buf)
|
|
|
|
{
|
|
|
|
errno = 0;
|
2002-07-18 21:26:14 +02:00
|
|
|
return ptrace_check (req, id,
|
2002-07-23 00:11:03 +02:00
|
|
|
ptrace (req, id, (int *) addr, data, buf));
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* If *PIDP is a composite process/thread id, convert it to a
|
|
|
|
process id. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
pid_to_prc (ptid_t *ptidp)
|
|
|
|
{
|
|
|
|
ptid_t ptid;
|
|
|
|
|
|
|
|
ptid = *ptidp;
|
|
|
|
if (PD_TID (ptid))
|
|
|
|
*ptidp = pid_to_ptid (PIDGET (ptid));
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* pthdb callback: for <i> from 0 to COUNT, set SYMBOLS[<i>].addr to
|
|
|
|
the address of SYMBOLS[<i>].name. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
pdc_symbol_addrs (pthdb_user_t user, pthdb_symbol_t *symbols, int count)
|
|
|
|
{
|
|
|
|
struct minimal_symbol *ms;
|
|
|
|
int i;
|
|
|
|
char *name;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
"pdc_symbol_addrs (user = %ld, symbols = 0x%lx, count = %d)\n",
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
user, (long) symbols, count);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
name = symbols[i].name;
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
2002-07-18 21:26:14 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
" symbols[%d].name = \"%s\"\n", i, name);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
if (!*name)
|
|
|
|
symbols[i].addr = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(ms = lookup_minimal_symbol (name, NULL, NULL)))
|
|
|
|
{
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog, " returning PDC_FAILURE\n");
|
2002-07-13 02:29:37 +02:00
|
|
|
return PDC_FAILURE;
|
|
|
|
}
|
|
|
|
symbols[i].addr = SYMBOL_VALUE_ADDRESS (ms);
|
|
|
|
}
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog, " symbols[%d].addr = %s\n",
|
2004-09-11 12:24:53 +02:00
|
|
|
i, hex_string (symbols[i].addr));
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog, " returning PDC_SUCCESS\n");
|
2002-07-13 02:29:37 +02:00
|
|
|
return PDC_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Read registers call back function should be able to read the
|
|
|
|
context information of a debuggee kernel thread from an active
|
|
|
|
process or from a core file. The information should be formatted
|
|
|
|
in context64 form for both 32-bit and 64-bit process.
|
|
|
|
If successful return 0, else non-zero is returned. */
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
static int
|
|
|
|
pdc_read_regs (pthdb_user_t user,
|
|
|
|
pthdb_tid_t tid,
|
|
|
|
unsigned long long flags,
|
|
|
|
pthdb_context_t *context)
|
|
|
|
{
|
2002-07-18 21:26:14 +02:00
|
|
|
/* This function doesn't appear to be used, so we could probably
|
|
|
|
just return 0 here. HOWEVER, if it is not defined, the OS will
|
|
|
|
complain and several thread debug functions will fail. In case
|
|
|
|
this is needed, I have implemented what I think it should do,
|
|
|
|
however this code is untested. */
|
|
|
|
|
2004-05-13 21:36:05 +02:00
|
|
|
uint64_t gprs64[ppc_num_gprs];
|
|
|
|
uint32_t gprs32[ppc_num_gprs];
|
|
|
|
double fprs[ppc_num_fprs];
|
2002-07-13 02:29:37 +02:00
|
|
|
struct ptxsprs sprs64;
|
|
|
|
struct ptsprs sprs32;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog, "pdc_read_regs tid=%d flags=%s\n",
|
2004-09-11 12:24:53 +02:00
|
|
|
(int) tid, hex_string (flags));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* General-purpose registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (flags & PTHDB_FLAG_GPRS)
|
|
|
|
{
|
|
|
|
if (arch64)
|
|
|
|
{
|
2002-07-18 21:26:14 +02:00
|
|
|
if (!ptrace64aix (PTT_READ_GPRS, tid,
|
|
|
|
(unsigned long) gprs64, 0, NULL))
|
2002-07-13 02:29:37 +02:00
|
|
|
memset (gprs64, 0, sizeof (gprs64));
|
|
|
|
memcpy (context->gpr, gprs64, sizeof(gprs64));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!ptrace32 (PTT_READ_GPRS, tid, gprs32, 0, NULL))
|
|
|
|
memset (gprs32, 0, sizeof (gprs32));
|
|
|
|
memcpy (context->gpr, gprs32, sizeof(gprs32));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Floating-point registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (flags & PTHDB_FLAG_FPRS)
|
|
|
|
{
|
|
|
|
if (!ptrace32 (PTT_READ_FPRS, tid, (int *) fprs, 0, NULL))
|
|
|
|
memset (fprs, 0, sizeof (fprs));
|
|
|
|
memcpy (context->fpr, fprs, sizeof(fprs));
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Special-purpose registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (flags & PTHDB_FLAG_SPRS)
|
|
|
|
{
|
|
|
|
if (arch64)
|
|
|
|
{
|
2002-07-18 21:26:14 +02:00
|
|
|
if (!ptrace64aix (PTT_READ_SPRS, tid,
|
|
|
|
(unsigned long) &sprs64, 0, NULL))
|
2002-07-13 02:29:37 +02:00
|
|
|
memset (&sprs64, 0, sizeof (sprs64));
|
|
|
|
memcpy (&context->msr, &sprs64, sizeof(sprs64));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!ptrace32 (PTT_READ_SPRS, tid, (int *) &sprs32, 0, NULL))
|
|
|
|
memset (&sprs32, 0, sizeof (sprs32));
|
|
|
|
memcpy (&context->msr, &sprs32, sizeof(sprs32));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Write register function should be able to write requested context
|
|
|
|
information to specified debuggee's kernel thread id.
|
|
|
|
If successful return 0, else non-zero is returned. */
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
static int
|
|
|
|
pdc_write_regs (pthdb_user_t user,
|
|
|
|
pthdb_tid_t tid,
|
|
|
|
unsigned long long flags,
|
|
|
|
pthdb_context_t *context)
|
|
|
|
{
|
2002-07-18 21:26:14 +02:00
|
|
|
/* This function doesn't appear to be used, so we could probably
|
|
|
|
just return 0 here. HOWEVER, if it is not defined, the OS will
|
|
|
|
complain and several thread debug functions will fail. In case
|
|
|
|
this is needed, I have implemented what I think it should do,
|
|
|
|
however this code is untested. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog, "pdc_write_regs tid=%d flags=%s\n",
|
2004-09-11 12:24:53 +02:00
|
|
|
(int) tid, hex_string (flags));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* General-purpose registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (flags & PTHDB_FLAG_GPRS)
|
|
|
|
{
|
|
|
|
if (arch64)
|
2002-07-18 21:26:14 +02:00
|
|
|
ptrace64aix (PTT_WRITE_GPRS, tid,
|
2002-07-23 00:11:03 +02:00
|
|
|
(unsigned long) context->gpr, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
2002-07-23 00:11:03 +02:00
|
|
|
ptrace32 (PTT_WRITE_GPRS, tid, (int *) context->gpr, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Floating-point registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (flags & PTHDB_FLAG_FPRS)
|
|
|
|
{
|
2002-07-23 00:11:03 +02:00
|
|
|
ptrace32 (PTT_WRITE_FPRS, tid, (int *) context->fpr, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Special-purpose registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (flags & PTHDB_FLAG_SPRS)
|
|
|
|
{
|
|
|
|
if (arch64)
|
|
|
|
{
|
2002-07-18 21:26:14 +02:00
|
|
|
ptrace64aix (PTT_WRITE_SPRS, tid,
|
|
|
|
(unsigned long) &context->msr, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-07-23 00:11:03 +02:00
|
|
|
ptrace32 (PTT_WRITE_SPRS, tid, (int *) &context->msr, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* pthdb callback: read LEN bytes from process ADDR into BUF. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
2002-07-18 21:26:14 +02:00
|
|
|
pdc_read_data (pthdb_user_t user, void *buf,
|
|
|
|
pthdb_addr_t addr, size_t len)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
int status, ret;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
"pdc_read_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
|
2004-09-11 12:24:53 +02:00
|
|
|
user, (long) buf, hex_string (addr), len);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
status = target_read_memory (addr, buf, len);
|
|
|
|
ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n",
|
2002-07-18 21:26:14 +02:00
|
|
|
status, pd_status2str (ret));
|
2002-07-13 02:29:37 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* pthdb callback: write LEN bytes from BUF to process ADDR. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
2002-07-18 21:26:14 +02:00
|
|
|
pdc_write_data (pthdb_user_t user, void *buf,
|
|
|
|
pthdb_addr_t addr, size_t len)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
int status, ret;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
"pdc_write_data (user = %ld, buf = 0x%lx, addr = %s, len = %ld)\n",
|
2004-09-11 12:24:53 +02:00
|
|
|
user, (long) buf, hex_string (addr), len);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
status = target_write_memory (addr, buf, len);
|
|
|
|
ret = status == 0 ? PDC_SUCCESS : PDC_FAILURE;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog, " status=%d, returning %s\n", status,
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
pd_status2str (ret));
|
2002-07-13 02:29:37 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* pthdb callback: allocate a LEN-byte buffer and store a pointer to it
|
|
|
|
in BUFP. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
pdc_alloc (pthdb_user_t user, size_t len, void **bufp)
|
|
|
|
{
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
"pdc_alloc (user = %ld, len = %ld, bufp = 0x%lx)\n",
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
user, len, (long) bufp);
|
2002-07-13 02:29:37 +02:00
|
|
|
*bufp = xmalloc (len);
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
2002-07-18 21:26:14 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
" malloc returned 0x%lx\n", (long) *bufp);
|
2002-07-18 21:26:14 +02:00
|
|
|
|
|
|
|
/* Note: xmalloc() can't return 0; therefore PDC_FAILURE will never
|
|
|
|
be returned. */
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
return *bufp ? PDC_SUCCESS : PDC_FAILURE;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* pthdb callback: reallocate BUF, which was allocated by the alloc or
|
|
|
|
realloc callback, so that it contains LEN bytes, and store a
|
|
|
|
pointer to the result in BUFP. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
pdc_realloc (pthdb_user_t user, void *buf, size_t len, void **bufp)
|
|
|
|
{
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
"pdc_realloc (user = %ld, buf = 0x%lx, len = %ld, bufp = 0x%lx)\n",
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
user, (long) buf, len, (long) bufp);
|
2002-07-16 02:22:45 +02:00
|
|
|
*bufp = xrealloc (buf, len);
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
2002-07-18 21:26:14 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
" realloc returned 0x%lx\n", (long) *bufp);
|
2002-07-13 02:29:37 +02:00
|
|
|
return *bufp ? PDC_SUCCESS : PDC_FAILURE;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* pthdb callback: free BUF, which was allocated by the alloc or
|
|
|
|
realloc callback. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
pdc_dealloc (pthdb_user_t user, void *buf)
|
|
|
|
{
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
2002-07-18 21:26:14 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
* aix-thread.c (language.h): Include.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
Print newlines at end of debug messages.
(pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
(pdc_write_data): Use local_hex_string() instead of %llx formats.
2002-07-23 03:06:02 +02:00
|
|
|
"pdc_free (user = %ld, buf = 0x%lx)\n", user,
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
(long) buf);
|
2002-07-13 02:29:37 +02:00
|
|
|
xfree (buf);
|
|
|
|
return PDC_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Return a printable representation of pthread STATE. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static char *
|
|
|
|
state2str (pthdb_state_t state)
|
|
|
|
{
|
|
|
|
switch (state)
|
|
|
|
{
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
case PST_IDLE:
|
|
|
|
/* i18n: Like "Thread-Id %d, [state] idle" */
|
|
|
|
return _("idle"); /* being created */
|
|
|
|
case PST_RUN:
|
|
|
|
/* i18n: Like "Thread-Id %d, [state] running" */
|
|
|
|
return _("running"); /* running */
|
|
|
|
case PST_SLEEP:
|
|
|
|
/* i18n: Like "Thread-Id %d, [state] sleeping" */
|
|
|
|
return _("sleeping"); /* awaiting an event */
|
|
|
|
case PST_READY:
|
|
|
|
/* i18n: Like "Thread-Id %d, [state] ready" */
|
|
|
|
return _("ready"); /* runnable */
|
|
|
|
case PST_TERM:
|
|
|
|
/* i18n: Like "Thread-Id %d, [state] finished" */
|
|
|
|
return _("finished"); /* awaiting a join/detach */
|
|
|
|
default:
|
|
|
|
/* i18n: Like "Thread-Id %d, [state] unknown" */
|
|
|
|
return _("unknown");
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* qsort() comparison function for sorting pd_thread structs by pthid. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
pcmp (const void *p1v, const void *p2v)
|
|
|
|
{
|
|
|
|
struct pd_thread *p1 = (struct pd_thread *) p1v;
|
|
|
|
struct pd_thread *p2 = (struct pd_thread *) p2v;
|
|
|
|
return p1->pthid < p2->pthid ? -1 : p1->pthid > p2->pthid;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* iterate_over_threads() callback for counting GDB threads. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
giter_count (struct thread_info *thread, void *countp)
|
|
|
|
{
|
|
|
|
(*(int *) countp)++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* iterate_over_threads() callback for accumulating GDB thread pids. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
giter_accum (struct thread_info *thread, void *bufp)
|
|
|
|
{
|
|
|
|
**(struct thread_info ***) bufp = thread;
|
|
|
|
(*(struct thread_info ***) bufp)++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ptid comparison function */
|
2002-07-18 21:26:14 +02:00
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
static int
|
|
|
|
ptid_cmp (ptid_t ptid1, ptid_t ptid2)
|
|
|
|
{
|
|
|
|
int pid1, pid2;
|
|
|
|
|
|
|
|
if (ptid_get_pid (ptid1) < ptid_get_pid (ptid2))
|
|
|
|
return -1;
|
|
|
|
else if (ptid_get_pid (ptid1) > ptid_get_pid (ptid2))
|
|
|
|
return 1;
|
|
|
|
else if (ptid_get_tid (ptid1) < ptid_get_tid (ptid2))
|
|
|
|
return -1;
|
|
|
|
else if (ptid_get_tid (ptid1) > ptid_get_tid (ptid2))
|
|
|
|
return 1;
|
|
|
|
else if (ptid_get_lwp (ptid1) < ptid_get_lwp (ptid2))
|
|
|
|
return -1;
|
|
|
|
else if (ptid_get_lwp (ptid1) > ptid_get_lwp (ptid2))
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* qsort() comparison function for sorting thread_info structs by pid. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
gcmp (const void *t1v, const void *t2v)
|
|
|
|
{
|
|
|
|
struct thread_info *t1 = *(struct thread_info **) t1v;
|
|
|
|
struct thread_info *t2 = *(struct thread_info **) t2v;
|
|
|
|
return ptid_cmp (t1->ptid, t2->ptid);
|
|
|
|
}
|
|
|
|
|
2004-08-06 18:33:17 +02:00
|
|
|
/* Search through the list of all kernel threads for the thread
|
|
|
|
that has stopped on a SIGTRAP signal, and return its TID.
|
|
|
|
Return 0 if none found. */
|
|
|
|
|
|
|
|
static pthdb_tid_t
|
|
|
|
get_signaled_thread (void)
|
|
|
|
{
|
|
|
|
struct thrdsinfo64 thrinf;
|
|
|
|
pthdb_tid_t ktid = 0;
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
/* getthrds(3) isn't prototyped in any AIX 4.3.3 #include file. */
|
|
|
|
extern int getthrds (pid_t, struct thrdsinfo64 *,
|
|
|
|
int, pthdb_tid_t *, int);
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
if (getthrds (PIDGET (inferior_ptid), &thrinf,
|
|
|
|
sizeof (thrinf), &ktid, 1) != 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (thrinf.ti_cursig == SIGTRAP)
|
|
|
|
return thrinf.ti_tid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Didn't find any thread stopped on a SIGTRAP signal. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
/* Synchronize GDB's thread list with libpthdebug's.
|
|
|
|
|
|
|
|
There are some benefits of doing this every time the inferior stops:
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
- allows users to run thread-specific commands without needing to
|
|
|
|
run "info threads" first
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
- helps pthdb_tid_pthread() work properly (see "libpthdebug
|
|
|
|
peculiarities" at the top of this module)
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
- simplifies the demands placed on libpthdebug, which seems to
|
|
|
|
have difficulty with certain call patterns */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
sync_threadlists (void)
|
|
|
|
{
|
|
|
|
int cmd, status, infpid;
|
|
|
|
int pcount, psize, pi, gcount, gi;
|
|
|
|
struct pd_thread *pbuf;
|
|
|
|
struct thread_info **gbuf, **g, *thread;
|
|
|
|
pthdb_pthread_t pdtid;
|
|
|
|
pthread_t pthid;
|
|
|
|
pthdb_tid_t tid;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Accumulate an array of libpthdebug threads sorted by pthread id. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
pcount = 0;
|
|
|
|
psize = 1;
|
|
|
|
pbuf = (struct pd_thread *) xmalloc (psize * sizeof *pbuf);
|
|
|
|
|
|
|
|
for (cmd = PTHDB_LIST_FIRST;; cmd = PTHDB_LIST_NEXT)
|
|
|
|
{
|
|
|
|
status = pthdb_pthread (pd_session, &pdtid, cmd);
|
|
|
|
if (status != PTHDB_SUCCESS || pdtid == PTHDB_INVALID_PTHREAD)
|
|
|
|
break;
|
|
|
|
|
|
|
|
status = pthdb_pthread_ptid (pd_session, pdtid, &pthid);
|
|
|
|
if (status != PTHDB_SUCCESS || pthid == PTHDB_INVALID_PTID)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (pcount == psize)
|
|
|
|
{
|
|
|
|
psize *= 2;
|
2002-07-18 21:26:14 +02:00
|
|
|
pbuf = (struct pd_thread *) xrealloc (pbuf,
|
|
|
|
psize * sizeof *pbuf);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
pbuf[pcount].pdtid = pdtid;
|
|
|
|
pbuf[pcount].pthid = pthid;
|
|
|
|
pcount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (pi = 0; pi < pcount; pi++)
|
|
|
|
{
|
|
|
|
status = pthdb_pthread_tid (pd_session, pbuf[pi].pdtid, &tid);
|
|
|
|
if (status != PTHDB_SUCCESS)
|
|
|
|
tid = PTHDB_INVALID_TID;
|
|
|
|
pbuf[pi].tid = tid;
|
|
|
|
}
|
|
|
|
|
|
|
|
qsort (pbuf, pcount, sizeof *pbuf, pcmp);
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Accumulate an array of GDB threads sorted by pid. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
gcount = 0;
|
|
|
|
iterate_over_threads (giter_count, &gcount);
|
|
|
|
g = gbuf = (struct thread_info **) xmalloc (gcount * sizeof *gbuf);
|
|
|
|
iterate_over_threads (giter_accum, &g);
|
|
|
|
qsort (gbuf, gcount, sizeof *gbuf, gcmp);
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Apply differences between the two arrays to GDB's thread list. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
infpid = PIDGET (inferior_ptid);
|
|
|
|
for (pi = gi = 0; pi < pcount || gi < gcount;)
|
|
|
|
{
|
|
|
|
if (pi == pcount)
|
|
|
|
{
|
2002-07-15 22:06:12 +02:00
|
|
|
delete_thread (gbuf[gi]->ptid);
|
2002-07-13 02:29:37 +02:00
|
|
|
gi++;
|
|
|
|
}
|
2002-07-15 22:06:12 +02:00
|
|
|
else if (gi == gcount)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-15 22:06:12 +02:00
|
|
|
thread = add_thread (BUILD_THREAD (pbuf[pi].pthid, infpid));
|
2002-07-13 02:29:37 +02:00
|
|
|
thread->private = xmalloc (sizeof (struct private_thread_info));
|
2002-07-15 22:06:12 +02:00
|
|
|
thread->private->pdtid = pbuf[pi].pdtid;
|
|
|
|
thread->private->tid = pbuf[pi].tid;
|
2002-07-13 02:29:37 +02:00
|
|
|
pi++;
|
|
|
|
}
|
2002-07-15 22:06:12 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ptid_t pptid, gptid;
|
|
|
|
int cmp_result;
|
|
|
|
|
|
|
|
pptid = BUILD_THREAD (pbuf[pi].pthid, infpid);
|
|
|
|
gptid = gbuf[gi]->ptid;
|
|
|
|
pdtid = pbuf[pi].pdtid;
|
|
|
|
tid = pbuf[pi].tid;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-15 22:06:12 +02:00
|
|
|
cmp_result = ptid_cmp (pptid, gptid);
|
|
|
|
|
|
|
|
if (cmp_result == 0)
|
|
|
|
{
|
|
|
|
gbuf[gi]->private->pdtid = pdtid;
|
|
|
|
gbuf[gi]->private->tid = tid;
|
|
|
|
pi++;
|
|
|
|
gi++;
|
|
|
|
}
|
|
|
|
else if (cmp_result > 0)
|
|
|
|
{
|
|
|
|
delete_thread (gptid);
|
|
|
|
gi++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
thread = add_thread (pptid);
|
|
|
|
thread->private = xmalloc (sizeof (struct private_thread_info));
|
|
|
|
thread->private->pdtid = pdtid;
|
|
|
|
thread->private->tid = tid;
|
|
|
|
pi++;
|
|
|
|
}
|
|
|
|
}
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
xfree (pbuf);
|
|
|
|
xfree (gbuf);
|
|
|
|
}
|
|
|
|
|
2004-08-06 18:33:17 +02:00
|
|
|
/* Iterate_over_threads() callback for locating a thread, using
|
|
|
|
the TID of its associated kernel thread. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
2004-08-06 18:33:17 +02:00
|
|
|
iter_tid (struct thread_info *thread, void *tidp)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2004-08-06 18:33:17 +02:00
|
|
|
const pthdb_tid_t tid = *(pthdb_tid_t *)tidp;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2004-08-06 18:33:17 +02:00
|
|
|
return (thread->private->tid == tid);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Synchronize libpthdebug's state with the inferior and with GDB,
|
|
|
|
generate a composite process/thread <pid> for the current thread,
|
|
|
|
set inferior_ptid to <pid> if SET_INFPID, and return <pid>. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static ptid_t
|
|
|
|
pd_update (int set_infpid)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
ptid_t ptid;
|
2004-08-06 18:33:17 +02:00
|
|
|
pthdb_tid_t tid;
|
|
|
|
struct thread_info *thread = NULL;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
if (!pd_active)
|
|
|
|
return inferior_ptid;
|
|
|
|
|
|
|
|
status = pthdb_session_update (pd_session);
|
|
|
|
if (status != PTHDB_SUCCESS)
|
|
|
|
return inferior_ptid;
|
|
|
|
|
|
|
|
sync_threadlists ();
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Define "current thread" as one that just received a trap signal. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2004-08-06 18:33:17 +02:00
|
|
|
tid = get_signaled_thread ();
|
|
|
|
if (tid != 0)
|
|
|
|
thread = iterate_over_threads (iter_tid, &tid);
|
2002-07-13 02:29:37 +02:00
|
|
|
if (!thread)
|
|
|
|
ptid = inferior_ptid;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ptid = thread->ptid;
|
|
|
|
if (set_infpid)
|
|
|
|
inferior_ptid = ptid;
|
|
|
|
}
|
|
|
|
return ptid;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Try to start debugging threads in the current process.
|
|
|
|
If successful and SET_INFPID, set inferior_ptid to reflect the
|
|
|
|
current thread. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static ptid_t
|
|
|
|
pd_activate (int set_infpid)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
status = pthdb_session_init (PD_USER, arch64 ? PEM_64BIT : PEM_32BIT,
|
2002-07-18 21:26:14 +02:00
|
|
|
PTHDB_FLAG_REGS, &pd_callbacks,
|
|
|
|
&pd_session);
|
2002-07-13 02:29:37 +02:00
|
|
|
if (status != PTHDB_SUCCESS)
|
|
|
|
{
|
|
|
|
return inferior_ptid;
|
|
|
|
}
|
|
|
|
pd_active = 1;
|
|
|
|
return pd_update (set_infpid);
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Undo the effects of pd_activate(). */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
pd_deactivate (void)
|
|
|
|
{
|
|
|
|
if (!pd_active)
|
|
|
|
return;
|
|
|
|
pthdb_session_destroy (pd_session);
|
|
|
|
|
|
|
|
pid_to_prc (&inferior_ptid);
|
|
|
|
pd_active = 0;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* An object file has just been loaded. Check whether the current
|
|
|
|
application is pthreaded, and if so, prepare for thread debugging. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
pd_enable (void)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
char *stub_name;
|
|
|
|
struct minimal_symbol *ms;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Don't initialize twice. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (pd_able)
|
|
|
|
return;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Check application word size. */
|
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
|
|
|
arch64 = register_size (current_gdbarch, 0) == 8;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Check whether the application is pthreaded. */
|
2002-07-13 02:29:37 +02:00
|
|
|
stub_name = NULL;
|
2002-07-18 21:26:14 +02:00
|
|
|
status = pthdb_session_pthreaded (PD_USER, PTHDB_FLAG_REGS,
|
|
|
|
&pd_callbacks, &stub_name);
|
|
|
|
if ((status != PTHDB_SUCCESS &&
|
|
|
|
status != PTHDB_NOT_PTHREADED) || !stub_name)
|
2002-07-13 02:29:37 +02:00
|
|
|
return;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Set a breakpoint on the returned stub function. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (!(ms = lookup_minimal_symbol (stub_name, NULL, NULL)))
|
|
|
|
return;
|
|
|
|
pd_brk_addr = SYMBOL_VALUE_ADDRESS (ms);
|
|
|
|
if (!create_thread_event_breakpoint (pd_brk_addr))
|
|
|
|
return;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Prepare for thread debugging. */
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target = current_target;
|
|
|
|
push_target (&aix_thread_ops);
|
2002-07-13 02:29:37 +02:00
|
|
|
pd_able = 1;
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* If we're debugging a core file or an attached inferior, the
|
|
|
|
pthread library may already have been initialized, so try to
|
|
|
|
activate thread debugging. */
|
2002-07-13 02:29:37 +02:00
|
|
|
pd_activate (1);
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Undo the effects of pd_enable(). */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
pd_disable (void)
|
|
|
|
{
|
|
|
|
if (!pd_able)
|
|
|
|
return;
|
|
|
|
if (pd_active)
|
|
|
|
pd_deactivate ();
|
|
|
|
pd_able = 0;
|
2002-07-23 00:11:03 +02:00
|
|
|
unpush_target (&aix_thread_ops);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
/* deprecated_target_new_objfile_hook callback.
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
If OBJFILE is non-null, check whether a threaded application is
|
|
|
|
being debugged, and if so, prepare for thread debugging.
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
If OBJFILE is null, stop debugging threads. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
new_objfile (struct objfile *objfile)
|
|
|
|
{
|
|
|
|
if (objfile)
|
|
|
|
pd_enable ();
|
|
|
|
else
|
|
|
|
pd_disable ();
|
|
|
|
|
|
|
|
if (target_new_objfile_chain)
|
|
|
|
target_new_objfile_chain (objfile);
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Attach to process specified by ARGS. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_attach (char *args, int from_tty)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target.to_attach (args, from_tty);
|
2002-07-13 02:29:37 +02:00
|
|
|
pd_activate (1);
|
|
|
|
}
|
|
|
|
|
2002-07-23 00:11:03 +02:00
|
|
|
/* Detach from the process attached to by aix_thread_attach(). */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_detach (char *args, int from_tty)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-08-22 17:27:16 +02:00
|
|
|
pd_disable ();
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target.to_detach (args, from_tty);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tell the inferior process to continue running thread PID if != -1
|
2002-07-18 21:26:14 +02:00
|
|
|
and all threads otherwise. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_resume (ptid_t ptid, int step, enum target_signal sig)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
struct thread_info *thread;
|
|
|
|
pthdb_tid_t tid[2];
|
|
|
|
|
|
|
|
if (!PD_TID (ptid))
|
2002-07-16 01:33:09 +02:00
|
|
|
{
|
|
|
|
struct cleanup *cleanup = save_inferior_ptid ();
|
|
|
|
inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target.to_resume (ptid, step, sig);
|
2002-07-16 01:33:09 +02:00
|
|
|
do_cleanups (cleanup);
|
|
|
|
}
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
thread = find_thread_pid (ptid);
|
|
|
|
if (!thread)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
error (_("aix-thread resume: unknown pthread %ld"),
|
2002-07-18 21:26:14 +02:00
|
|
|
TIDGET (ptid));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
tid[0] = thread->private->tid;
|
|
|
|
if (tid[0] == PTHDB_INVALID_TID)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
error (_("aix-thread resume: no tid for pthread %ld"),
|
2002-07-18 21:26:14 +02:00
|
|
|
TIDGET (ptid));
|
2002-07-13 02:29:37 +02:00
|
|
|
tid[1] = 0;
|
|
|
|
|
|
|
|
if (arch64)
|
2002-07-18 21:26:14 +02:00
|
|
|
ptrace64aix (PTT_CONTINUE, tid[0], 1,
|
2002-07-23 00:11:03 +02:00
|
|
|
target_signal_to_host (sig), (int *) tid);
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
|
|
|
ptrace32 (PTT_CONTINUE, tid[0], (int *) 1,
|
2002-07-23 00:11:03 +02:00
|
|
|
target_signal_to_host (sig), (int *) tid);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Wait for thread/process ID if != -1 or for any thread otherwise.
|
|
|
|
If an error occurs, return -1, else return the pid of the stopped
|
|
|
|
thread. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static ptid_t
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_wait (ptid_t ptid, struct target_waitstatus *status)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-16 01:33:09 +02:00
|
|
|
struct cleanup *cleanup = save_inferior_ptid ();
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
pid_to_prc (&ptid);
|
2002-07-16 01:33:09 +02:00
|
|
|
|
|
|
|
inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
|
2002-07-23 00:11:03 +02:00
|
|
|
ptid = base_target.to_wait (ptid, status);
|
2002-07-16 01:33:09 +02:00
|
|
|
do_cleanups (cleanup);
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
if (PIDGET (ptid) == -1)
|
|
|
|
return pid_to_ptid (-1);
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Check whether libpthdebug might be ready to be initialized. */
|
2002-07-13 02:29:37 +02:00
|
|
|
if (!pd_active && status->kind == TARGET_WAITKIND_STOPPED &&
|
|
|
|
status->value.sig == TARGET_SIGNAL_TRAP &&
|
|
|
|
read_pc_pid (ptid) - DECR_PC_AFTER_BREAK == pd_brk_addr)
|
|
|
|
return pd_activate (0);
|
|
|
|
|
|
|
|
return pd_update (0);
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Record that the 64-bit general-purpose registers contain VALS. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
supply_gprs64 (uint64_t *vals)
|
|
|
|
{
|
2004-05-13 21:27:07 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2002-07-13 02:29:37 +02:00
|
|
|
int regno;
|
|
|
|
|
2004-05-13 21:36:05 +02:00
|
|
|
for (regno = 0; regno < ppc_num_gprs; regno++)
|
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, tdep->ppc_gp0_regnum + regno,
|
|
|
|
(char *) (vals + regno));
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Record that 32-bit register REGNO contains VAL. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
supply_reg32 (int regno, uint32_t val)
|
|
|
|
{
|
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, (char *) &val);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Record that the floating-point registers contain VALS. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
supply_fprs (double *vals)
|
|
|
|
{
|
* config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
should no longer be used in code specific to the RS6000 and its
derivatives.
* ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize
tdep->ppc_fp0_regnum.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
(rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
FP0_REGNUM.
* aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
(fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
Same.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
bdm_ppc_store_registers): Same.
* ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
(store_register, fill_fpregset): Same.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
(ppc_linux_supply_fpregset): Same.
* ppcnbsd-nat.c (getfpregs_supplies): Same.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
Same.
* 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): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers, fetch_core_registers): Same.
2004-05-05 03:46:55 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2002-07-13 02:29:37 +02:00
|
|
|
int regno;
|
|
|
|
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
/* This function should never be called on architectures without
|
|
|
|
floating-point registers. */
|
2004-05-14 00:55:32 +02:00
|
|
|
gdb_assert (ppc_floating_point_unit_p (current_gdbarch));
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
|
2004-05-13 21:36:05 +02:00
|
|
|
for (regno = 0; regno < ppc_num_fprs; regno++)
|
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 + tdep->ppc_fp0_regnum,
|
|
|
|
(char *) (vals + regno));
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-23 02:34:29 +02:00
|
|
|
/* Predicate to test whether given register number is a "special" register. */
|
|
|
|
static int
|
|
|
|
special_register_p (int regno)
|
|
|
|
{
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
|
|
|
|
|
|
|
return regno == PC_REGNUM
|
|
|
|
|| regno == tdep->ppc_ps_regnum
|
|
|
|
|| regno == tdep->ppc_cr_regnum
|
|
|
|
|| regno == tdep->ppc_lr_regnum
|
|
|
|
|| regno == tdep->ppc_ctr_regnum
|
|
|
|
|| regno == tdep->ppc_xer_regnum
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
|| (tdep->ppc_fpscr_regnum >= 0 && regno == tdep->ppc_fpscr_regnum)
|
2002-07-23 02:34:29 +02:00
|
|
|
|| (tdep->ppc_mq_regnum >= 0 && regno == tdep->ppc_mq_regnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Record that the special registers contain the specified 64-bit and
|
|
|
|
32-bit values. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
supply_sprs64 (uint64_t iar, uint64_t msr, uint32_t cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
uint64_t lr, uint64_t ctr, uint32_t xer,
|
|
|
|
uint32_t fpscr)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-23 02:34:29 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
|
|
|
|
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, PC_REGNUM, (char *) &iar);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_ps_regnum, (char *) &msr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_cr_regnum, (char *) &cr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_lr_regnum, (char *) &lr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_ctr_regnum, (char *) &ctr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_xer_regnum, (char *) &xer);
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
if (tdep->ppc_fpscr_regnum >= 0)
|
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, tdep->ppc_fpscr_regnum,
|
|
|
|
(char *) &fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Record that the special registers contain the specified 32-bit
|
|
|
|
values. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
supply_sprs32 (uint32_t iar, uint32_t msr, uint32_t cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
uint32_t lr, uint32_t ctr, uint32_t xer,
|
|
|
|
uint32_t fpscr)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-23 02:34:29 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
|
|
|
|
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, PC_REGNUM, (char *) &iar);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_ps_regnum, (char *) &msr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_cr_regnum, (char *) &cr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_lr_regnum, (char *) &lr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_ctr_regnum, (char *) &ctr);
|
|
|
|
regcache_raw_supply (current_regcache, tdep->ppc_xer_regnum, (char *) &xer);
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
if (tdep->ppc_fpscr_regnum >= 0)
|
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, tdep->ppc_fpscr_regnum,
|
|
|
|
(char *) &fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fetch all registers from pthread PDTID, which doesn't have a kernel
|
|
|
|
thread.
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
There's no way to query a single register from a non-kernel
|
|
|
|
pthread, so there's no need for a single-register version of this
|
|
|
|
function. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
fetch_regs_user_thread (pthdb_pthread_t pdtid)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2004-05-13 21:27:07 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2002-07-13 02:29:37 +02:00
|
|
|
int status, i;
|
|
|
|
pthdb_context_t ctx;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
2002-07-23 00:11:03 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
|
|
|
"fetch_regs_user_thread %lx\n", (long) pdtid);
|
2002-07-13 02:29:37 +02:00
|
|
|
status = pthdb_pthread_context (pd_session, pdtid, &ctx);
|
|
|
|
if (status != PTHDB_SUCCESS)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
error (_("aix-thread: fetch_registers: pthdb_pthread_context returned %s"),
|
2002-07-16 01:33:09 +02:00
|
|
|
pd_status2str (status));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* General-purpose registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
if (arch64)
|
|
|
|
supply_gprs64 (ctx.gpr);
|
|
|
|
else
|
2004-05-13 21:36:05 +02:00
|
|
|
for (i = 0; i < ppc_num_gprs; i++)
|
2004-05-13 21:27:07 +02:00
|
|
|
supply_reg32 (tdep->ppc_gp0_regnum + i, ctx.gpr[i]);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Floating-point registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2004-05-14 00:55:32 +02:00
|
|
|
if (ppc_floating_point_unit_p (current_gdbarch))
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
supply_fprs (ctx.fpr);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Special registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
if (arch64)
|
2002-07-27 01:12:59 +02:00
|
|
|
supply_sprs64 (ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr, ctx.xer,
|
|
|
|
ctx.fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
2002-07-27 01:12:59 +02:00
|
|
|
supply_sprs32 (ctx.iar, ctx.msr, ctx.cr, ctx.lr, ctx.ctr, ctx.xer,
|
|
|
|
ctx.fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Fetch register REGNO if != -1 or all registers otherwise from
|
|
|
|
kernel thread TID.
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
AIX provides a way to query all of a kernel thread's GPRs, FPRs, or
|
|
|
|
SPRs, but there's no way to query individual registers within those
|
|
|
|
groups. Therefore, if REGNO != -1, this function fetches an entire
|
|
|
|
group.
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
Unfortunately, kernel thread register queries often fail with
|
|
|
|
EPERM, indicating that the thread is in kernel space. This breaks
|
|
|
|
backtraces of threads other than the current one. To make that
|
|
|
|
breakage obvious without throwing an error to top level (which is
|
|
|
|
bad e.g. during "info threads" output), zero registers that can't
|
|
|
|
be retrieved. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
fetch_regs_kernel_thread (int regno, pthdb_tid_t tid)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
* config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
should no longer be used in code specific to the RS6000 and its
derivatives.
* ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize
tdep->ppc_fp0_regnum.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
(rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
FP0_REGNUM.
* aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
(fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
Same.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
bdm_ppc_store_registers): Same.
* ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
(store_register, fill_fpregset): Same.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
(ppc_linux_supply_fpregset): Same.
* ppcnbsd-nat.c (getfpregs_supplies): Same.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
Same.
* 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): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers, fetch_core_registers): Same.
2004-05-05 03:46:55 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2004-05-13 21:36:05 +02:00
|
|
|
uint64_t gprs64[ppc_num_gprs];
|
|
|
|
uint32_t gprs32[ppc_num_gprs];
|
|
|
|
double fprs[ppc_num_fprs];
|
2002-07-13 02:29:37 +02:00
|
|
|
struct ptxsprs sprs64;
|
|
|
|
struct ptsprs sprs32;
|
|
|
|
int i;
|
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
2002-07-23 00:11:03 +02:00
|
|
|
"fetch_regs_kernel_thread tid=%lx regno=%d arch64=%d\n",
|
|
|
|
(long) tid, regno, arch64);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* General-purpose registers. */
|
2004-05-07 22:50:37 +02:00
|
|
|
if (regno == -1
|
|
|
|
|| (tdep->ppc_gp0_regnum <= regno
|
|
|
|
&& regno < tdep->ppc_gp0_regnum + ppc_num_gprs))
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
if (arch64)
|
|
|
|
{
|
2002-07-18 21:26:14 +02:00
|
|
|
if (!ptrace64aix (PTT_READ_GPRS, tid,
|
|
|
|
(unsigned long) gprs64, 0, NULL))
|
2002-07-13 02:29:37 +02:00
|
|
|
memset (gprs64, 0, sizeof (gprs64));
|
|
|
|
supply_gprs64 (gprs64);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!ptrace32 (PTT_READ_GPRS, tid, gprs32, 0, NULL))
|
|
|
|
memset (gprs32, 0, sizeof (gprs32));
|
2004-05-13 21:36:05 +02:00
|
|
|
for (i = 0; i < ppc_num_gprs; i++)
|
2004-05-13 21:27:07 +02:00
|
|
|
supply_reg32 (tdep->ppc_gp0_regnum + i, gprs32[i]);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Floating-point registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
if (ppc_floating_point_unit_p (current_gdbarch)
|
|
|
|
&& (regno == -1
|
|
|
|
|| (regno >= tdep->ppc_fp0_regnum
|
|
|
|
&& regno < tdep->ppc_fp0_regnum + ppc_num_fprs)))
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
if (!ptrace32 (PTT_READ_FPRS, tid, (int *) fprs, 0, NULL))
|
|
|
|
memset (fprs, 0, sizeof (fprs));
|
|
|
|
supply_fprs (fprs);
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Special-purpose registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-23 02:34:29 +02:00
|
|
|
if (regno == -1 || special_register_p (regno))
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
if (arch64)
|
|
|
|
{
|
2002-07-18 21:26:14 +02:00
|
|
|
if (!ptrace64aix (PTT_READ_SPRS, tid,
|
|
|
|
(unsigned long) &sprs64, 0, NULL))
|
2002-07-13 02:29:37 +02:00
|
|
|
memset (&sprs64, 0, sizeof (sprs64));
|
|
|
|
supply_sprs64 (sprs64.pt_iar, sprs64.pt_msr, sprs64.pt_cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
sprs64.pt_lr, sprs64.pt_ctr, sprs64.pt_xer,
|
|
|
|
sprs64.pt_fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-07-23 02:34:29 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
if (!ptrace32 (PTT_READ_SPRS, tid, (int *) &sprs32, 0, NULL))
|
|
|
|
memset (&sprs32, 0, sizeof (sprs32));
|
|
|
|
supply_sprs32 (sprs32.pt_iar, sprs32.pt_msr, sprs32.pt_cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
sprs32.pt_lr, sprs32.pt_ctr, sprs32.pt_xer,
|
|
|
|
sprs32.pt_fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-23 02:34:29 +02:00
|
|
|
if (tdep->ppc_mq_regnum >= 0)
|
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, tdep->ppc_mq_regnum,
|
|
|
|
(char *) &sprs32.pt_mq);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fetch register REGNO if != -1 or all registers otherwise in the
|
2002-07-18 21:26:14 +02:00
|
|
|
thread/process specified by inferior_ptid. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_fetch_registers (int regno)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
struct thread_info *thread;
|
|
|
|
pthdb_tid_t tid;
|
|
|
|
|
|
|
|
if (!PD_TID (inferior_ptid))
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target.to_fetch_registers (regno);
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
thread = find_thread_pid (inferior_ptid);
|
|
|
|
tid = thread->private->tid;
|
|
|
|
|
|
|
|
if (tid == PTHDB_INVALID_TID)
|
2002-07-23 00:11:03 +02:00
|
|
|
fetch_regs_user_thread (thread->private->pdtid);
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
2002-07-23 00:11:03 +02:00
|
|
|
fetch_regs_kernel_thread (regno, tid);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-22 21:20:21 +02:00
|
|
|
/* Store the gp registers into an array of uint32_t or uint64_t. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_gprs64 (uint64_t *vals)
|
|
|
|
{
|
* config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
should no longer be used in code specific to the RS6000 and its
derivatives.
* ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize
tdep->ppc_fp0_regnum.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
(rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
FP0_REGNUM.
* aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
(fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
Same.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
bdm_ppc_store_registers): Same.
* ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
(store_register, fill_fpregset): Same.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
(ppc_linux_supply_fpregset): Same.
* ppcnbsd-nat.c (getfpregs_supplies): Same.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
Same.
* 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): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers, fetch_core_registers): Same.
2004-05-05 03:46:55 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2002-07-22 21:20:21 +02:00
|
|
|
int regno;
|
|
|
|
|
2004-05-07 22:50:37 +02:00
|
|
|
for (regno = 0; regno < ppc_num_gprs; regno++)
|
|
|
|
if (register_cached (tdep->ppc_gp0_regnum + regno))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_gp0_regnum + regno,
|
|
|
|
vals + regno);
|
2002-07-22 21:20:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_gprs32 (uint32_t *vals)
|
|
|
|
{
|
* config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
should no longer be used in code specific to the RS6000 and its
derivatives.
* ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize
tdep->ppc_fp0_regnum.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
(rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
FP0_REGNUM.
* aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
(fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
Same.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
bdm_ppc_store_registers): Same.
* ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
(store_register, fill_fpregset): Same.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
(ppc_linux_supply_fpregset): Same.
* ppcnbsd-nat.c (getfpregs_supplies): Same.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
Same.
* 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): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers, fetch_core_registers): Same.
2004-05-05 03:46:55 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2002-07-22 21:20:21 +02:00
|
|
|
int regno;
|
|
|
|
|
2004-05-07 22:50:37 +02:00
|
|
|
for (regno = 0; regno < ppc_num_gprs; regno++)
|
|
|
|
if (register_cached (tdep->ppc_gp0_regnum + regno))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_gp0_regnum + regno,
|
|
|
|
vals + regno);
|
2002-07-22 21:20:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Store the floating point registers into a double array. */
|
|
|
|
static void
|
|
|
|
fill_fprs (double *vals)
|
|
|
|
{
|
* config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
should no longer be used in code specific to the RS6000 and its
derivatives.
* ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize
tdep->ppc_fp0_regnum.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
(rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
FP0_REGNUM.
* aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
(fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
Same.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
bdm_ppc_store_registers): Same.
* ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
(store_register, fill_fpregset): Same.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
(ppc_linux_supply_fpregset): Same.
* ppcnbsd-nat.c (getfpregs_supplies): Same.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
Same.
* 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): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers, fetch_core_registers): Same.
2004-05-05 03:46:55 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2002-07-22 21:20:21 +02:00
|
|
|
int regno;
|
|
|
|
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
/* This function should never be called on architectures without
|
|
|
|
floating-point registers. */
|
2004-05-14 00:55:32 +02:00
|
|
|
gdb_assert (ppc_floating_point_unit_p (current_gdbarch));
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
|
* config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
should no longer be used in code specific to the RS6000 and its
derivatives.
* ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize
tdep->ppc_fp0_regnum.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
(rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
FP0_REGNUM.
* aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
(fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
Same.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
bdm_ppc_store_registers): Same.
* ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
(store_register, fill_fpregset): Same.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
(ppc_linux_supply_fpregset): Same.
* ppcnbsd-nat.c (getfpregs_supplies): Same.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
Same.
* 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): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers, fetch_core_registers): Same.
2004-05-05 03:46:55 +02:00
|
|
|
for (regno = tdep->ppc_fp0_regnum;
|
|
|
|
regno < tdep->ppc_fp0_regnum + ppc_num_fprs;
|
|
|
|
regno++)
|
2002-07-22 21:56:07 +02:00
|
|
|
if (register_cached (regno))
|
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
|
|
|
regcache_raw_collect (current_regcache, regno, vals + regno);
|
2002-07-22 21:20:21 +02:00
|
|
|
}
|
|
|
|
|
2002-07-13 02:29:37 +02:00
|
|
|
/* Store the special registers into the specified 64-bit and 32-bit
|
2002-07-18 21:26:14 +02:00
|
|
|
locations. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
fill_sprs64 (uint64_t *iar, uint64_t *msr, uint32_t *cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
uint64_t *lr, uint64_t *ctr, uint32_t *xer,
|
|
|
|
uint32_t *fpscr)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-23 02:34:29 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
|
|
|
|
|
|
|
/* Verify that the size of the size of the IAR buffer is the
|
|
|
|
same as the raw size of the PC (in the register cache). If
|
|
|
|
they're not, then either GDB has been built incorrectly, or
|
|
|
|
there's some other kind of internal error. To be really safe,
|
|
|
|
we should check all of the sizes. */
|
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
|
|
|
gdb_assert (sizeof (*iar) == register_size (current_gdbarch, PC_REGNUM));
|
2002-07-23 02:34:29 +02:00
|
|
|
|
|
|
|
if (register_cached (PC_REGNUM))
|
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
|
|
|
regcache_raw_collect (current_regcache, PC_REGNUM, iar);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_ps_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_ps_regnum, msr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_cr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_cr_regnum, cr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_lr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_lr_regnum, lr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_ctr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_ctr_regnum, ctr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_xer_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_xer_regnum, xer);
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
if (tdep->ppc_fpscr_regnum >= 0
|
|
|
|
&& register_cached (tdep->ppc_fpscr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_fpscr_regnum, fpscr);
|
2002-07-22 21:20:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_sprs32 (unsigned long *iar, unsigned long *msr, unsigned long *cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
unsigned long *lr, unsigned long *ctr, unsigned long *xer,
|
|
|
|
unsigned long *fpscr)
|
2002-07-22 21:20:21 +02:00
|
|
|
{
|
2002-07-23 02:34:29 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
|
|
|
|
|
|
|
/* Verify that the size of the size of the IAR buffer is the
|
|
|
|
same as the raw size of the PC (in the register cache). If
|
|
|
|
they're not, then either GDB has been built incorrectly, or
|
|
|
|
there's some other kind of internal error. To be really safe,
|
|
|
|
we should check all of the sizes.
|
2002-07-22 21:20:21 +02:00
|
|
|
|
2002-07-23 02:34:29 +02:00
|
|
|
If this assert() fails, the most likely reason is that GDB was
|
2002-07-22 21:20:21 +02:00
|
|
|
built incorrectly. In order to make use of many of the header
|
|
|
|
files in /usr/include/sys, GDB needs to be configured so that
|
|
|
|
sizeof (long) == 4). */
|
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
|
|
|
gdb_assert (sizeof (*iar) == register_size (current_gdbarch, PC_REGNUM));
|
2002-07-23 02:34:29 +02:00
|
|
|
|
|
|
|
if (register_cached (PC_REGNUM))
|
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
|
|
|
regcache_raw_collect (current_regcache, PC_REGNUM, iar);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_ps_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_ps_regnum, msr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_cr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_cr_regnum, cr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_lr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_lr_regnum, lr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_ctr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_ctr_regnum, ctr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_xer_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_xer_regnum, xer);
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
if (tdep->ppc_fpscr_regnum >= 0
|
|
|
|
&& register_cached (tdep->ppc_fpscr_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_fpscr_regnum, fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Store all registers into pthread PDTID, which doesn't have a kernel
|
|
|
|
thread.
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
It's possible to store a single register into a non-kernel pthread,
|
|
|
|
but I doubt it's worth the effort. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
store_regs_user_thread (pthdb_pthread_t pdtid)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2004-05-13 21:27:07 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2002-07-13 02:29:37 +02:00
|
|
|
int status, i;
|
|
|
|
pthdb_context_t ctx;
|
2002-07-22 21:20:21 +02:00
|
|
|
uint32_t int32;
|
|
|
|
uint64_t int64;
|
|
|
|
double dbl;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
2002-07-18 21:26:14 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
2002-07-23 00:11:03 +02:00
|
|
|
"store_regs_user_thread %lx\n", (long) pdtid);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Retrieve the thread's current context for its non-register
|
|
|
|
values. */
|
2002-07-13 02:29:37 +02:00
|
|
|
status = pthdb_pthread_context (pd_session, pdtid, &ctx);
|
|
|
|
if (status != PTHDB_SUCCESS)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
error (_("aix-thread: store_registers: pthdb_pthread_context returned %s"),
|
2002-07-16 01:33:09 +02:00
|
|
|
pd_status2str (status));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-22 21:20:21 +02:00
|
|
|
/* Collect general-purpose register values from the regcache. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2004-05-13 21:36:05 +02:00
|
|
|
for (i = 0; i < ppc_num_gprs; i++)
|
2004-05-13 21:27:07 +02:00
|
|
|
if (register_cached (tdep->ppc_gp0_regnum + i))
|
2002-07-22 21:56:07 +02:00
|
|
|
{
|
|
|
|
if (arch64)
|
|
|
|
{
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_gp0_regnum + i,
|
|
|
|
(void *) &int64);
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.gpr[i] = int64;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_gp0_regnum + i,
|
|
|
|
(void *) &int32);
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.gpr[i] = int32;
|
|
|
|
}
|
|
|
|
}
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-22 21:20:21 +02:00
|
|
|
/* Collect floating-point register values from the regcache. */
|
2004-05-14 00:55:32 +02:00
|
|
|
if (ppc_floating_point_unit_p (current_gdbarch))
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
fill_fprs (ctx.fpr);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-22 21:20:21 +02:00
|
|
|
/* Special registers (always kept in ctx as 64 bits). */
|
|
|
|
if (arch64)
|
|
|
|
{
|
2002-07-27 01:12:59 +02:00
|
|
|
fill_sprs64 (&ctx.iar, &ctx.msr, &ctx.cr, &ctx.lr, &ctx.ctr, &ctx.xer,
|
|
|
|
&ctx.fpscr);
|
2002-07-22 21:20:21 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Problem: ctx.iar etc. are 64 bits, but raw_registers are 32.
|
|
|
|
Solution: use 32-bit temp variables. (The assert() in fill_sprs32()
|
|
|
|
will fail if the size of an unsigned long is incorrect. If this
|
|
|
|
happens, GDB needs to be reconfigured so that longs are 32-bits.) */
|
2002-07-27 01:12:59 +02:00
|
|
|
unsigned long tmp_iar, tmp_msr, tmp_cr, tmp_lr, tmp_ctr, tmp_xer,
|
|
|
|
tmp_fpscr;
|
2002-07-22 21:20:21 +02:00
|
|
|
|
2002-07-27 01:12:59 +02:00
|
|
|
fill_sprs32 (&tmp_iar, &tmp_msr, &tmp_cr, &tmp_lr, &tmp_ctr, &tmp_xer,
|
|
|
|
&tmp_fpscr);
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (PC_REGNUM))
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.iar = tmp_iar;
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_ps_regnum))
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.msr = tmp_msr;
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_cr_regnum))
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.cr = tmp_cr;
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_lr_regnum))
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.lr = tmp_lr;
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_ctr_regnum))
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.ctr = tmp_ctr;
|
2002-07-23 02:34:29 +02:00
|
|
|
if (register_cached (tdep->ppc_xer_regnum))
|
2002-07-22 21:56:07 +02:00
|
|
|
ctx.xer = tmp_xer;
|
2002-07-27 01:12:59 +02:00
|
|
|
if (register_cached (tdep->ppc_xer_regnum))
|
|
|
|
ctx.fpscr = tmp_fpscr;
|
2002-07-22 21:20:21 +02:00
|
|
|
}
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
status = pthdb_pthread_setcontext (pd_session, pdtid, &ctx);
|
|
|
|
if (status != PTHDB_SUCCESS)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
error (_("aix-thread: store_registers: pthdb_pthread_setcontext returned %s"),
|
2002-07-16 01:33:09 +02:00
|
|
|
pd_status2str (status));
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Store register REGNO if != -1 or all registers otherwise into
|
|
|
|
kernel thread TID.
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
AIX provides a way to set all of a kernel thread's GPRs, FPRs, or
|
|
|
|
SPRs, but there's no way to set individual registers within those
|
|
|
|
groups. Therefore, if REGNO != -1, this function stores an entire
|
|
|
|
group. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
store_regs_kernel_thread (int regno, pthdb_tid_t tid)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
* config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
should no longer be used in code specific to the RS6000 and its
derivatives.
* ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
* rs6000-tdep.c (rs6000_gdbarch_init): Initialize
tdep->ppc_fp0_regnum.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
(rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
FP0_REGNUM.
* aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
(fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
Same.
* ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
bdm_ppc_store_registers): Same.
* ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
(store_register, fill_fpregset): Same.
* ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
(ppc_linux_supply_fpregset): Same.
* ppcnbsd-nat.c (getfpregs_supplies): Same.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
Same.
* 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): Same.
* rs6000-nat.c (regmap, fetch_inferior_registers)
(store_inferior_registers, fetch_core_registers): Same.
2004-05-05 03:46:55 +02:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
|
2004-05-13 21:36:05 +02:00
|
|
|
uint64_t gprs64[ppc_num_gprs];
|
|
|
|
uint32_t gprs32[ppc_num_gprs];
|
|
|
|
double fprs[ppc_num_fprs];
|
2002-07-13 02:29:37 +02:00
|
|
|
struct ptxsprs sprs64;
|
2002-07-22 21:20:21 +02:00
|
|
|
struct ptsprs sprs32;
|
|
|
|
int i;
|
2002-07-13 02:29:37 +02:00
|
|
|
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
if (debug_aix_thread)
|
2002-07-23 00:11:03 +02:00
|
|
|
fprintf_unfiltered (gdb_stdlog,
|
|
|
|
"store_regs_kernel_thread tid=%lx regno=%d\n",
|
|
|
|
(long) tid, regno);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* General-purpose registers. */
|
2004-05-07 22:50:37 +02:00
|
|
|
if (regno == -1
|
|
|
|
|| (tdep->ppc_gp0_regnum <= regno
|
|
|
|
&& regno < tdep->ppc_gp0_regnum + ppc_num_fprs))
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
if (arch64)
|
2002-07-22 21:20:21 +02:00
|
|
|
{
|
2002-07-22 21:56:07 +02:00
|
|
|
/* Pre-fetch: some regs may not be in the cache. */
|
|
|
|
ptrace64aix (PTT_READ_GPRS, tid, (unsigned long) gprs64, 0, NULL);
|
2002-07-22 21:20:21 +02:00
|
|
|
fill_gprs64 (gprs64);
|
|
|
|
ptrace64aix (PTT_WRITE_GPRS, tid, (unsigned long) gprs64, 0, NULL);
|
|
|
|
}
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
2002-07-22 21:20:21 +02:00
|
|
|
{
|
2002-07-22 21:56:07 +02:00
|
|
|
/* Pre-fetch: some regs may not be in the cache. */
|
|
|
|
ptrace32 (PTT_READ_GPRS, tid, gprs32, 0, NULL);
|
2002-07-22 21:20:21 +02:00
|
|
|
fill_gprs32 (gprs32);
|
|
|
|
ptrace32 (PTT_WRITE_GPRS, tid, gprs32, 0, NULL);
|
|
|
|
}
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Floating-point registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
* ppc-tdep.h (struct gdbarch_tdep): Change definition of
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
processor variant lacks those registers.
(ppc_floating_point_unit_p): Change description to make it clear
that this returns info about the ISA, not the ABI.
* rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
return true or false by checking tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum. The original code replicated the BFD
arch/mach switching done in rs6000_gdbarch_init; it's better to
keep that logic there, and just check the results here.
(rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
tdep->ppc_fpscr_regnum to -1 to indicate that we have no
floating-point registers.
(ppc_supply_fpregset, ppc_collect_fpregset)
(rs6000_push_dummy_call, rs6000_extract_return_value)
(rs6000_store_return_value): Assert that we have floating-point
registers.
(rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
(rs6000_frame_cache): Don't note the locations at which
floating-point registers were saved if we have no fprs.
* aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
registers.
(fetch_regs_user_thread, fetch_regs_kernel_thread)
(store_regs_user_thread, store_regs_kernel_thread): Only call
supply_fprs / fill_fprs if we actually have floating-point
registers.
(special_register_p): Check ppc_fpscr_regnum before matching
against it.
(supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
supply / collect fpscr if we don't have it.
* ppc-bdm.c: #include "gdb_assert.h".
(bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
have floating-point registers, since I can't test this code on
FP-free systems to adapt it.
* ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
fpscr and floating point register numbers if they don't exist.
(fetch_register): Assert that we have floating-point registers
before we reach the code that handles them.
(store_register): Same. And use tdep instead of calling
gdbarch_tdep again.
(fill_fpregset): Don't try to collect FP registers and fpscr if we
don't have them.
(ppc_linux_sigtramp_cache): Don't record the saved locations of
fprs and fpscr if we don't have them.
(ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
don't have them.
* ppcnbsd-nat.c: #include "gdb_assert.h".
(getfpregs_supplies): Assert that we have floating-point registers.
* ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
* ppcobsd-tdep.c: #include "gdb_assert.h".
(ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
have floating-point registers.
* rs6000-nat.c (regmap): Don't match against the fpscr and
floating point register numbers if they don't exist.
(fetch_inferior_registers, store_inferior_registers,
fetch_core_registers): Only fetch / store / supply the
floating-point registers and the fpscr if we have them.
* Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
(ppcobsd-tdep.o): Update dependencies.
2004-05-11 06:55:32 +02:00
|
|
|
if (ppc_floating_point_unit_p (current_gdbarch)
|
|
|
|
&& (regno == -1
|
|
|
|
|| (regno >= tdep->ppc_fp0_regnum
|
|
|
|
&& regno < tdep->ppc_fp0_regnum + ppc_num_fprs)))
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-22 21:56:07 +02:00
|
|
|
/* Pre-fetch: some regs may not be in the cache. */
|
|
|
|
ptrace32 (PTT_READ_FPRS, tid, (int *) fprs, 0, NULL);
|
2002-07-22 21:20:21 +02:00
|
|
|
fill_fprs (fprs);
|
|
|
|
ptrace32 (PTT_WRITE_FPRS, tid, (int *) fprs, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Special-purpose registers. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-23 02:34:29 +02:00
|
|
|
if (regno == -1 || special_register_p (regno))
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
if (arch64)
|
|
|
|
{
|
2002-07-22 21:56:07 +02:00
|
|
|
/* Pre-fetch: some registers won't be in the cache. */
|
2002-07-18 21:26:14 +02:00
|
|
|
ptrace64aix (PTT_READ_SPRS, tid,
|
|
|
|
(unsigned long) &sprs64, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
fill_sprs64 (&sprs64.pt_iar, &sprs64.pt_msr, &sprs64.pt_cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
&sprs64.pt_lr, &sprs64.pt_ctr, &sprs64.pt_xer,
|
|
|
|
&sprs64.pt_fpscr);
|
2002-07-18 21:26:14 +02:00
|
|
|
ptrace64aix (PTT_WRITE_SPRS, tid,
|
|
|
|
(unsigned long) &sprs64, 0, NULL);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-07-22 21:56:07 +02:00
|
|
|
/* Pre-fetch: some registers won't be in the cache. */
|
2002-07-13 02:29:37 +02:00
|
|
|
ptrace32 (PTT_READ_SPRS, tid, (int *) &sprs32, 0, NULL);
|
|
|
|
|
2002-07-22 21:20:21 +02:00
|
|
|
fill_sprs32 (&sprs32.pt_iar, &sprs32.pt_msr, &sprs32.pt_cr,
|
2002-07-27 01:12:59 +02:00
|
|
|
&sprs32.pt_lr, &sprs32.pt_ctr, &sprs32.pt_xer,
|
|
|
|
&sprs32.pt_fpscr);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-23 02:34:29 +02:00
|
|
|
if (tdep->ppc_mq_regnum >= 0)
|
|
|
|
if (register_cached (tdep->ppc_mq_regnum))
|
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
|
|
|
regcache_raw_collect (current_regcache, tdep->ppc_mq_regnum,
|
|
|
|
&sprs32.pt_mq);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
ptrace32 (PTT_WRITE_SPRS, tid, (int *) &sprs32, 0, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Store gdb's current view of the register set into the
|
|
|
|
thread/process specified by inferior_ptid. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_store_registers (int regno)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
struct thread_info *thread;
|
|
|
|
pthdb_tid_t tid;
|
|
|
|
|
|
|
|
if (!PD_TID (inferior_ptid))
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target.to_store_registers (regno);
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
thread = find_thread_pid (inferior_ptid);
|
|
|
|
tid = thread->private->tid;
|
|
|
|
|
|
|
|
if (tid == PTHDB_INVALID_TID)
|
2002-07-23 00:11:03 +02:00
|
|
|
store_regs_user_thread (thread->private->pdtid);
|
2002-07-13 02:29:37 +02:00
|
|
|
else
|
2002-07-23 00:11:03 +02:00
|
|
|
store_regs_kernel_thread (regno, tid);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Transfer LEN bytes of memory from GDB address MYADDR to target
|
|
|
|
address MEMADDR if WRITE and vice versa otherwise. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
|
|
|
|
struct mem_attrib *attrib,
|
|
|
|
struct target_ops *target)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
int n;
|
2002-07-16 01:33:09 +02:00
|
|
|
struct cleanup *cleanup = save_inferior_ptid ();
|
|
|
|
|
|
|
|
inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
|
2004-10-08 22:30:00 +02:00
|
|
|
n = base_target.deprecated_xfer_memory (memaddr, myaddr, len,
|
|
|
|
write, attrib, &base_target);
|
2002-07-16 01:33:09 +02:00
|
|
|
do_cleanups (cleanup);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Kill and forget about the inferior process. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_kill (void)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-16 01:33:09 +02:00
|
|
|
struct cleanup *cleanup = save_inferior_ptid ();
|
|
|
|
|
|
|
|
inferior_ptid = pid_to_ptid (PIDGET (inferior_ptid));
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target.to_kill ();
|
2002-07-16 01:33:09 +02:00
|
|
|
do_cleanups (cleanup);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Clean up after the inferior exits. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_mourn_inferior (void)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
pd_deactivate ();
|
2002-07-23 00:11:03 +02:00
|
|
|
base_target.to_mourn_inferior ();
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Return whether thread PID is still valid. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static int
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_thread_alive (ptid_t ptid)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
if (!PD_TID (ptid))
|
2002-07-23 00:11:03 +02:00
|
|
|
return base_target.to_thread_alive (ptid);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* We update the thread list every time the child stops, so all
|
|
|
|
valid threads should be in the thread list. */
|
2002-07-13 02:29:37 +02:00
|
|
|
return in_thread_list (ptid);
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Return a printable representation of composite PID for use in
|
|
|
|
"info threads" output. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static char *
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_pid_to_str (ptid_t ptid)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
static char *ret = NULL;
|
|
|
|
|
|
|
|
if (!PD_TID (ptid))
|
2002-07-23 00:11:03 +02:00
|
|
|
return base_target.to_pid_to_str (ptid);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
/* Free previous return value; a new one will be allocated by
|
2004-06-29 01:59:29 +02:00
|
|
|
xstrprintf(). */
|
2002-07-13 02:29:37 +02:00
|
|
|
xfree (ret);
|
|
|
|
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
ret = xstrprintf (_("Thread %ld"), ptid_get_tid (ptid));
|
2002-07-13 02:29:37 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Return a printable representation of extra information about
|
|
|
|
THREAD, for use in "info threads" output. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static char *
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_extra_thread_info (struct thread_info *thread)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
|
|
|
struct ui_file *buf;
|
|
|
|
int status;
|
|
|
|
pthdb_pthread_t pdtid;
|
|
|
|
pthdb_tid_t tid;
|
|
|
|
pthdb_state_t state;
|
|
|
|
pthdb_suspendstate_t suspendstate;
|
|
|
|
pthdb_detachstate_t detachstate;
|
|
|
|
int cancelpend;
|
|
|
|
long length;
|
|
|
|
static char *ret = NULL;
|
|
|
|
|
|
|
|
if (!PD_TID (thread->ptid))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
buf = mem_fileopen ();
|
|
|
|
|
|
|
|
pdtid = thread->private->pdtid;
|
|
|
|
tid = thread->private->tid;
|
|
|
|
|
|
|
|
if (tid != PTHDB_INVALID_TID)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
/* i18n: Like "thread-identifier %d, [state] running, suspended" */
|
|
|
|
fprintf_unfiltered (buf, _("tid %d"), tid);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
status = pthdb_pthread_state (pd_session, pdtid, &state);
|
|
|
|
if (status != PTHDB_SUCCESS)
|
|
|
|
state = PST_NOTSUP;
|
|
|
|
fprintf_unfiltered (buf, ", %s", state2str (state));
|
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
status = pthdb_pthread_suspendstate (pd_session, pdtid,
|
|
|
|
&suspendstate);
|
2002-07-13 02:29:37 +02:00
|
|
|
if (status == PTHDB_SUCCESS && suspendstate == PSS_SUSPENDED)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
/* i18n: Like "Thread-Id %d, [state] running, suspended" */
|
|
|
|
fprintf_unfiltered (buf, _(", suspended"));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
status = pthdb_pthread_detachstate (pd_session, pdtid,
|
|
|
|
&detachstate);
|
2002-07-13 02:29:37 +02:00
|
|
|
if (status == PTHDB_SUCCESS && detachstate == PDS_DETACHED)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
/* i18n: Like "Thread-Id %d, [state] running, detached" */
|
|
|
|
fprintf_unfiltered (buf, _(", detached"));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
pthdb_pthread_cancelpend (pd_session, pdtid, &cancelpend);
|
|
|
|
if (status == PTHDB_SUCCESS && cancelpend)
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
/* i18n: Like "Thread-Id %d, [state] running, cancel pending" */
|
|
|
|
fprintf_unfiltered (buf, _(", cancel pending"));
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
ui_file_write (buf, "", 1);
|
|
|
|
|
|
|
|
xfree (ret); /* Free old buffer. */
|
|
|
|
|
|
|
|
ret = ui_file_xstrdup (buf, &length);
|
|
|
|
ui_file_delete (buf);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2002-07-23 00:11:03 +02:00
|
|
|
/* Initialize target aix_thread_ops. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
static void
|
2002-07-23 00:11:03 +02:00
|
|
|
init_aix_thread_ops (void)
|
2002-07-13 02:29:37 +02:00
|
|
|
{
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_ops.to_shortname = "aix-threads";
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
aix_thread_ops.to_longname = _("AIX pthread support");
|
|
|
|
aix_thread_ops.to_doc = _("AIX pthread support");
|
2002-07-23 00:11:03 +02:00
|
|
|
|
|
|
|
aix_thread_ops.to_attach = aix_thread_attach;
|
|
|
|
aix_thread_ops.to_detach = aix_thread_detach;
|
|
|
|
aix_thread_ops.to_resume = aix_thread_resume;
|
|
|
|
aix_thread_ops.to_wait = aix_thread_wait;
|
|
|
|
aix_thread_ops.to_fetch_registers = aix_thread_fetch_registers;
|
|
|
|
aix_thread_ops.to_store_registers = aix_thread_store_registers;
|
2004-10-08 22:30:00 +02:00
|
|
|
aix_thread_ops.deprecated_xfer_memory = aix_thread_xfer_memory;
|
2002-07-23 00:11:03 +02:00
|
|
|
/* No need for aix_thread_ops.to_create_inferior, because we activate thread
|
2002-07-18 21:26:14 +02:00
|
|
|
debugging when the inferior reaches pd_brk_addr. */
|
2002-07-23 00:11:03 +02:00
|
|
|
aix_thread_ops.to_kill = aix_thread_kill;
|
|
|
|
aix_thread_ops.to_mourn_inferior = aix_thread_mourn_inferior;
|
|
|
|
aix_thread_ops.to_thread_alive = aix_thread_thread_alive;
|
|
|
|
aix_thread_ops.to_pid_to_str = aix_thread_pid_to_str;
|
|
|
|
aix_thread_ops.to_extra_thread_info = aix_thread_extra_thread_info;
|
|
|
|
aix_thread_ops.to_stratum = thread_stratum;
|
|
|
|
aix_thread_ops.to_magic = OPS_MAGIC;
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Module startup initialization function, automagically called by
|
2002-07-18 21:26:14 +02:00
|
|
|
init.c. */
|
2002-07-13 02:29:37 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
_initialize_aix_thread (void)
|
|
|
|
{
|
2002-07-23 00:11:03 +02:00
|
|
|
init_aix_thread_ops ();
|
|
|
|
add_target (&aix_thread_ops);
|
2002-07-13 02:29:37 +02:00
|
|
|
|
2002-07-18 21:26:14 +02:00
|
|
|
/* Notice when object files get loaded and unloaded. */
|
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 = new_objfile;
|
* aix-thread.c (gdbcmd.h): Include.
(DEBUG, DBG, DBG2, dbg): Eliminate.
(debug_aix_thread): New static global.
(ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
(pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
(fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
invocations to DBG and DBG2 macros to test against
``debug_aix_thread'' and call fprintf_unfiltered().
(_initialize_aix_thread): Add new command "set debug aix-thread".
2002-07-15 20:55:04 +02:00
|
|
|
|
2005-01-05 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
Committed by Andrew Cagney.
* ada-valprint.c, aix-thread.c, alpha-nat.c: I18n markup.
* alphabsd-nat.c, alphanbsd-tdep.c, amd64-linux-nat.c: I18n markup.
* amd64-tdep.c, amd64bsd-nat.c, amd64fbsd-nat.c: I18n markup.
* arch-utils.c, arm-linux-nat.c, arm-tdep.c: I18n markup.
* armnbsd-nat.c, armnbsd-tdep.c, auxv.c, avr-tdep.c: I18n markup.
* aix-thread.c (_initialize_aix_thread): Get rid of the
deprecated_add_show_from_set call.
* alpha-tdep.c (_initialize_alpha_tdep): Ditto.
* arm-tdep.c (_initialize_arm_tdep): Ditto.
* command.h (add_setshow_enum_cmd): Add arguments for returning
new list elements.
* cli/cli-decode.c (add_setshow_enum_cmd): Ditto.
* mips-tdep.c (_initialize_mips_tdep): Modify calls to
add_setshow_enum_cmd.
2005-01-05 16:43:50 +01:00
|
|
|
add_setshow_zinteger_cmd ("aix-thread", no_class, (char *) &debug_aix_thread,
|
|
|
|
_("Set debugging of AIX thread module."),
|
|
|
|
_("Show debugging of AIX thread module."),
|
|
|
|
_("Enables debugging output (used to debug GDB)."),
|
2005-02-17 Andrew Cagney <cagney@gnu.org>
* cli/cli-decode.c (add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* command.h (fprint_setshow_ftype): Delete.
(add_setshow_cmd_full, add_setshow_enum_cmd)
(add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
(add_setshow_filename_cmd, add_setshow_string_cmd)
(add_setshow_uinteger_cmd, add_setshow_zinteger_cmd): Delete
fprint_setshow parameter.
* aix-thread.c, alpha-tdep.c, arm-tdep.c, breakpoint.c: Update.
* complaints.c, cris-tdep.c, dwarf2read.c, frame.c: Update.
* hppa-tdep.c, infcall.c, m32r-rom.c, maint.c: Update.
* mips-tdep.c, nto-tdep.c, observer.c, remote-rdi.c: Update
* remote.c, target.c, cli/cli-logging.c: Update.
2005-02-17 14:49:56 +01:00
|
|
|
NULL, NULL, /* FIXME: i18n: Debugging of AIX thread module is \"%d\". */
|
|
|
|
&setdebuglist, &showdebuglist);
|
2002-07-13 02:29:37 +02:00
|
|
|
}
|