* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch. * gdbarch.c, gdbarch.h: Rebuild. * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c, arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c, darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c, filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c, ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c, linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c, mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c, mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c, nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c, procfs.c, progspace.c, ravenscar-thread.c, record.c, remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c, rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c, solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c, solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c, solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c, spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c, target-descriptions.c, target.c, target.h, tracepoint.c, windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c, common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c, python/py-inferior.c, python/python.c: Update.
This commit is contained in:
parent
0420f52b94
commit
f5656eadf4
86 changed files with 410 additions and 386 deletions
|
@ -217,11 +217,11 @@ monitor_error (char *function, char *message,
|
|||
|
||||
if (final_char)
|
||||
error (_("%s (%s): %s: %s%c"),
|
||||
function, paddress (target_gdbarch, memaddr),
|
||||
function, paddress (target_gdbarch (), memaddr),
|
||||
message, safe_string, final_char);
|
||||
else
|
||||
error (_("%s (%s): %s: %s"),
|
||||
function, paddress (target_gdbarch, memaddr),
|
||||
function, paddress (target_gdbarch (), memaddr),
|
||||
message, safe_string);
|
||||
}
|
||||
|
||||
|
@ -256,7 +256,7 @@ fromhex (int a)
|
|||
static void
|
||||
monitor_vsprintf (char *sndbuf, char *pattern, va_list args)
|
||||
{
|
||||
int addr_bit = gdbarch_addr_bit (target_gdbarch);
|
||||
int addr_bit = gdbarch_addr_bit (target_gdbarch ());
|
||||
char format[10];
|
||||
char fmt;
|
||||
char *p;
|
||||
|
@ -1440,15 +1440,15 @@ monitor_files_info (struct target_ops *ops)
|
|||
static int
|
||||
monitor_write_memory (CORE_ADDR memaddr, char *myaddr, int len)
|
||||
{
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
|
||||
unsigned int val, hostval;
|
||||
char *cmd;
|
||||
int i;
|
||||
|
||||
monitor_debug ("MON write %d %s\n", len, paddress (target_gdbarch, memaddr));
|
||||
monitor_debug ("MON write %d %s\n", len, paddress (target_gdbarch (), memaddr));
|
||||
|
||||
if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
|
||||
memaddr = gdbarch_addr_bits_remove (target_gdbarch, memaddr);
|
||||
memaddr = gdbarch_addr_bits_remove (target_gdbarch (), memaddr);
|
||||
|
||||
/* Use memory fill command for leading 0 bytes. */
|
||||
|
||||
|
@ -1707,7 +1707,7 @@ monitor_write_memory_block (CORE_ADDR memaddr, char *myaddr, int len)
|
|||
static int
|
||||
monitor_read_memory_single (CORE_ADDR memaddr, char *myaddr, int len)
|
||||
{
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
|
||||
unsigned int val;
|
||||
char membuf[sizeof (int) * 2 + 1];
|
||||
char *p;
|
||||
|
@ -1852,11 +1852,11 @@ monitor_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
|
|||
}
|
||||
|
||||
monitor_debug ("MON read block ta(%s) ha(%s) %d\n",
|
||||
paddress (target_gdbarch, memaddr),
|
||||
paddress (target_gdbarch (), memaddr),
|
||||
host_address_to_string (myaddr), len);
|
||||
|
||||
if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
|
||||
memaddr = gdbarch_addr_bits_remove (target_gdbarch, memaddr);
|
||||
memaddr = gdbarch_addr_bits_remove (target_gdbarch (), memaddr);
|
||||
|
||||
if (current_monitor->flags & MO_GETMEM_READ_SINGLE)
|
||||
return monitor_read_memory_single (memaddr, myaddr, len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue