2009-12-08 03:58:41 +08:00
|
|
|
/* Target-dependent code for the Renesas RX for GDB, the GNU debugger.
|
|
|
|
|
2016-01-01 12:33:14 +08:00
|
|
|
Copyright (C) 2008-2016 Free Software Foundation, Inc.
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
Contributed by Red Hat, Inc.
|
|
|
|
|
|
|
|
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 3 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, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "arch-utils.h"
|
|
|
|
#include "prologue-value.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "regcache.h"
|
|
|
|
#include "opcode/rx.h"
|
|
|
|
#include "dis-asm.h"
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
#include "frame.h"
|
|
|
|
#include "frame-unwind.h"
|
|
|
|
#include "frame-base.h"
|
|
|
|
#include "value.h"
|
|
|
|
#include "gdbcore.h"
|
|
|
|
#include "dwarf2-frame.h"
|
|
|
|
|
|
|
|
#include "elf/rx.h"
|
|
|
|
#include "elf-bfd.h"
|
gdb: Use std::min and std::max throughout
Otherwise including <string> or some other C++ header is broken.
E.g.:
In file included from /opt/gcc/include/c++/7.0.0/bits/char_traits.h:39:0,
from /opt/gcc/include/c++/7.0.0/string:40,
from /home/pedro/gdb/mygit/cxx-convertion/src/gdb/infrun.c:68:
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:243:56: error: macro "min" passed 3 arguments, but takes just 2
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:265:56: error: macro "max" passed 3 arguments, but takes just 2
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
In file included from .../src/gdb/infrun.c:21:0:
To the best of my grepping abilities, I believe I adjusted all min/max
calls.
gdb/ChangeLog:
2016-09-16 Pedro Alves <palves@redhat.com>
* defs.h (min, max): Delete.
* aarch64-tdep.c: Include <algorithm> and use std::min and
std::max throughout.
* aarch64-tdep.c: Likewise.
* alpha-tdep.c: Likewise.
* amd64-tdep.c: Likewise.
* amd64-windows-tdep.c: Likewise.
* arm-tdep.c: Likewise.
* avr-tdep.c: Likewise.
* breakpoint.c: Likewise.
* btrace.c: Likewise.
* ctf.c: Likewise.
* disasm.c: Likewise.
* doublest.c: Likewise.
* dwarf2loc.c: Likewise.
* dwarf2read.c: Likewise.
* environ.c: Likewise.
* exec.c: Likewise.
* f-exp.y: Likewise.
* findcmd.c: Likewise.
* ft32-tdep.c: Likewise.
* gcore.c: Likewise.
* hppa-tdep.c: Likewise.
* i386-darwin-tdep.c: Likewise.
* i386-tdep.c: Likewise.
* linux-thread-db.c: Likewise.
* lm32-tdep.c: Likewise.
* m32r-tdep.c: Likewise.
* m88k-tdep.c: Likewise.
* memrange.c: Likewise.
* minidebug.c: Likewise.
* mips-tdep.c: Likewise.
* moxie-tdep.c: Likewise.
* nds32-tdep.c: Likewise.
* nios2-tdep.c: Likewise.
* nto-procfs.c: Likewise.
* parse.c: Likewise.
* ppc-sysv-tdep.c: Likewise.
* probe.c: Likewise.
* record-btrace.c: Likewise.
* remote.c: Likewise.
* rs6000-tdep.c: Likewise.
* rx-tdep.c: Likewise.
* s390-linux-nat.c: Likewise.
* s390-linux-tdep.c: Likewise.
* ser-tcp.c: Likewise.
* sh-tdep.c: Likewise.
* sh64-tdep.c: Likewise.
* source.c: Likewise.
* sparc-tdep.c: Likewise.
* symfile.c: Likewise.
* target-memory.c: Likewise.
* target.c: Likewise.
* tic6x-tdep.c: Likewise.
* tilegx-tdep.c: Likewise.
* tracefile-tfile.c: Likewise.
* tracepoint.c: Likewise.
* valprint.c: Likewise.
* value.c: Likewise.
* xtensa-tdep.c: Likewise.
* cli/cli-cmds.c: Likewise.
* compile/compile-object-load.c: Likewise.
2016-09-17 02:55:17 +08:00
|
|
|
#include <algorithm>
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
/* Certain important register numbers. */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
RX_SP_REGNUM = 0,
|
|
|
|
RX_R1_REGNUM = 1,
|
|
|
|
RX_R4_REGNUM = 4,
|
|
|
|
RX_FP_REGNUM = 6,
|
|
|
|
RX_R15_REGNUM = 15,
|
2015-07-03 07:46:31 +08:00
|
|
|
RX_USP_REGNUM = 16,
|
2015-06-29 23:08:12 +08:00
|
|
|
RX_PSW_REGNUM = 18,
|
2009-12-08 03:58:41 +08:00
|
|
|
RX_PC_REGNUM = 19,
|
rx: Create and use flags types for psw, bpsw, and fpsw registers.
This change adds two flags types for the (Renesas RX) psw, bpsw, and
fpsw registers. As a result, symbolic flags are displayed for these
registers in the output of GDB's "info registers" command as well as
in output from other commands, such as "print".
gdb/ChangeLog:
* rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
(struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
(rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
and RX_FPSW_REGNUM.
(rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
2015-07-03 06:02:56 +08:00
|
|
|
RX_BPSW_REGNUM = 21,
|
2015-07-03 07:46:31 +08:00
|
|
|
RX_BPC_REGNUM = 22,
|
rx: Create and use flags types for psw, bpsw, and fpsw registers.
This change adds two flags types for the (Renesas RX) psw, bpsw, and
fpsw registers. As a result, symbolic flags are displayed for these
registers in the output of GDB's "info registers" command as well as
in output from other commands, such as "print".
gdb/ChangeLog:
* rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
(struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
(rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
and RX_FPSW_REGNUM.
(rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
2015-07-03 06:02:56 +08:00
|
|
|
RX_FPSW_REGNUM = 24,
|
2010-06-25 04:38:05 +08:00
|
|
|
RX_ACC_REGNUM = 25,
|
|
|
|
RX_NUM_REGS = 26
|
2009-12-08 03:58:41 +08:00
|
|
|
};
|
|
|
|
|
2015-07-03 07:46:31 +08:00
|
|
|
/* RX frame types. */
|
|
|
|
enum rx_frame_type {
|
|
|
|
RX_FRAME_TYPE_NORMAL,
|
|
|
|
RX_FRAME_TYPE_EXCEPTION,
|
|
|
|
RX_FRAME_TYPE_FAST_INTERRUPT
|
|
|
|
};
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
/* Architecture specific data. */
|
|
|
|
struct gdbarch_tdep
|
|
|
|
{
|
|
|
|
/* The ELF header flags specify the multilib used. */
|
|
|
|
int elf_flags;
|
rx: Create and use flags types for psw, bpsw, and fpsw registers.
This change adds two flags types for the (Renesas RX) psw, bpsw, and
fpsw registers. As a result, symbolic flags are displayed for these
registers in the output of GDB's "info registers" command as well as
in output from other commands, such as "print".
gdb/ChangeLog:
* rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
(struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
(rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
and RX_FPSW_REGNUM.
(rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
2015-07-03 06:02:56 +08:00
|
|
|
|
|
|
|
/* Type of PSW and BPSW. */
|
|
|
|
struct type *rx_psw_type;
|
|
|
|
|
|
|
|
/* Type of FPSW. */
|
|
|
|
struct type *rx_fpsw_type;
|
2009-12-08 03:58:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* This structure holds the results of a prologue analysis. */
|
|
|
|
struct rx_prologue
|
|
|
|
{
|
2015-07-03 07:46:31 +08:00
|
|
|
/* Frame type, either a normal frame or one of two types of exception
|
|
|
|
frames. */
|
|
|
|
enum rx_frame_type frame_type;
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
/* The offset from the frame base to the stack pointer --- always
|
|
|
|
zero or negative.
|
|
|
|
|
|
|
|
Calling this a "size" is a bit misleading, but given that the
|
|
|
|
stack grows downwards, using offsets for everything keeps one
|
|
|
|
from going completely sign-crazy: you never change anything's
|
|
|
|
sign for an ADD instruction; always change the second operand's
|
|
|
|
sign for a SUB instruction; and everything takes care of
|
|
|
|
itself. */
|
|
|
|
int frame_size;
|
|
|
|
|
|
|
|
/* Non-zero if this function has initialized the frame pointer from
|
|
|
|
the stack pointer, zero otherwise. */
|
|
|
|
int has_frame_ptr;
|
|
|
|
|
|
|
|
/* If has_frame_ptr is non-zero, this is the offset from the frame
|
|
|
|
base to where the frame pointer points. This is always zero or
|
|
|
|
negative. */
|
|
|
|
int frame_ptr_offset;
|
|
|
|
|
|
|
|
/* The address of the first instruction at which the frame has been
|
|
|
|
set up and the arguments are where the debug info says they are
|
|
|
|
--- as best as we can tell. */
|
|
|
|
CORE_ADDR prologue_end;
|
|
|
|
|
|
|
|
/* reg_offset[R] is the offset from the CFA at which register R is
|
|
|
|
saved, or 1 if register R has not been saved. (Real values are
|
|
|
|
always zero or negative.) */
|
|
|
|
int reg_offset[RX_NUM_REGS];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Implement the "register_name" gdbarch method. */
|
|
|
|
static const char *
|
|
|
|
rx_register_name (struct gdbarch *gdbarch, int regnr)
|
|
|
|
{
|
|
|
|
static const char *const reg_names[] = {
|
|
|
|
"r0",
|
|
|
|
"r1",
|
|
|
|
"r2",
|
|
|
|
"r3",
|
|
|
|
"r4",
|
|
|
|
"r5",
|
|
|
|
"r6",
|
|
|
|
"r7",
|
|
|
|
"r8",
|
|
|
|
"r9",
|
|
|
|
"r10",
|
|
|
|
"r11",
|
|
|
|
"r12",
|
|
|
|
"r13",
|
|
|
|
"r14",
|
|
|
|
"r15",
|
|
|
|
"usp",
|
2010-06-25 04:38:05 +08:00
|
|
|
"isp",
|
2009-12-08 03:58:41 +08:00
|
|
|
"psw",
|
2010-06-25 04:38:05 +08:00
|
|
|
"pc",
|
|
|
|
"intb",
|
2009-12-08 03:58:41 +08:00
|
|
|
"bpsw",
|
2010-06-25 04:38:05 +08:00
|
|
|
"bpc",
|
|
|
|
"fintv",
|
|
|
|
"fpsw",
|
|
|
|
"acc"
|
2009-12-08 03:58:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
return reg_names[regnr];
|
|
|
|
}
|
|
|
|
|
Create tdep->rx_psw_type and tdep->rx_fpsw_type lazily
I build GDB with all targets enabled, and "set architecture rx",
GDB crashes,
(gdb) set architecture rx
Program received signal SIGSEGV, Segmentation fault.
append_flags_type_flag (type=0x20cc360, bitpos=bitpos@entry=0, name=name@entry=0xd27529 "C") at ../../binutils-gdb/gdb/gdbtypes.c:4926
4926 name);
(gdb) bt 10
#0 append_flags_type_flag (type=0x20cc360, bitpos=bitpos@entry=0, name=name@entry=0xd27529 "C") at ../../binutils-gdb/gdb/gdbtypes.c:4926
#1 0x00000000004ce725 in rx_gdbarch_init (info=..., arches=<optimized out>) at ../../binutils-gdb/gdb/rx-tdep.c:1051
#2 0x00000000006b05a4 in gdbarch_find_by_info (info=...) at ../../binutils-gdb/gdb/gdbarch.c:5269
#3 0x000000000060eee4 in gdbarch_update_p (info=...) at ../../binutils-gdb/gdb/arch-utils.c:557
#4 0x000000000060f8a8 in set_architecture (ignore_args=<optimized out>, from_tty=1, c=<optimized out>) at ../../binutils-gdb/gdb/arch-utils.c:531
#5 0x0000000000593d0b in do_set_command (arg=<optimized out>, arg@entry=0x20bee81 "rx ", from_tty=from_tty@entry=1, c=c@entry=0x20b1540)
at ../../binutils-gdb/gdb/cli/cli-setshow.c:455
#6 0x00000000007665c3 in execute_command (p=<optimized out>, p@entry=0x20bee70 "set architecture rx ", from_tty=1) at ../../binutils-gdb/gdb/top.c:666
#7 0x00000000006935f4 in command_handler (command=0x20bee70 "set architecture rx ") at ../../binutils-gdb/gdb/event-top.c:577
#8 0x00000000006938d8 in command_line_handler (rl=<optimized out>) at ../../binutils-gdb/gdb/event-top.c:767
#9 0x0000000000692c2c in gdb_rl_callback_handler (rl=0x20be7f0 "") at ../../binutils-gdb/gdb/event-top.c:200
The cause is that we want to access some builtin types in gdbarch init, but
it is not initialized yet. I fix it by creating the type when it is to be
used. We've already done this in sparc, sparc64 and m68k.
gdb:
2016-12-09 Yao Qi <yao.qi@linaro.org>
PR tdep/20954
* rx-tdep.c (rx_psw_type): New function.
(rx_fpsw_type): New function.
(rx_register_type): Call rx_psw_type and rx_fpsw_type.
(rx_gdbarch_init): Move code to rx_psw_type and
rx_fpsw_type.
gdb/testsuite:
2016-12-09 Yao Qi <yao.qi@linaro.org>
* gdb.base/all-architectures.exp.in: Remove kfail for "rx".
2016-12-09 23:27:43 +08:00
|
|
|
/* Construct the flags type for PSW and BPSW. */
|
|
|
|
|
|
|
|
static struct type *
|
|
|
|
rx_psw_type (struct gdbarch *gdbarch)
|
|
|
|
{
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
if (tdep->rx_psw_type == NULL)
|
|
|
|
{
|
|
|
|
tdep->rx_psw_type = arch_flags_type (gdbarch, "rx_psw_type", 4);
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 0, "C");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 1, "Z");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 2, "S");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 3, "O");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 16, "I");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 17, "U");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 20, "PM");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 24, "IPL0");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 25, "IPL1");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 26, "IPL2");
|
|
|
|
append_flags_type_flag (tdep->rx_psw_type, 27, "IPL3");
|
|
|
|
}
|
|
|
|
return tdep->rx_psw_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Construct flags type for FPSW. */
|
|
|
|
|
|
|
|
static struct type *
|
|
|
|
rx_fpsw_type (struct gdbarch *gdbarch)
|
|
|
|
{
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
if (tdep->rx_psw_type == NULL)
|
|
|
|
{
|
|
|
|
tdep->rx_fpsw_type = arch_flags_type (gdbarch, "rx_fpsw_type", 4);
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 0, "RM0");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 1, "RM1");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 2, "CV");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 3, "CO");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 4, "CZ");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 5, "CU");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 6, "CX");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 7, "CE");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 8, "DN");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 10, "EV");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 11, "EO");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 12, "EZ");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 13, "EU");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 14, "EX");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 26, "FV");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 27, "FO");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 28, "FZ");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 29, "FU");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 30, "FX");
|
|
|
|
append_flags_type_flag (tdep->rx_fpsw_type, 31, "FS");
|
|
|
|
}
|
|
|
|
|
|
|
|
return tdep->rx_fpsw_type;
|
|
|
|
}
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
/* Implement the "register_type" gdbarch method. */
|
|
|
|
static struct type *
|
|
|
|
rx_register_type (struct gdbarch *gdbarch, int reg_nr)
|
|
|
|
{
|
rx: Create and use flags types for psw, bpsw, and fpsw registers.
This change adds two flags types for the (Renesas RX) psw, bpsw, and
fpsw registers. As a result, symbolic flags are displayed for these
registers in the output of GDB's "info registers" command as well as
in output from other commands, such as "print".
gdb/ChangeLog:
* rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
(struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
(rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
and RX_FPSW_REGNUM.
(rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
2015-07-03 06:02:56 +08:00
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
if (reg_nr == RX_PC_REGNUM)
|
|
|
|
return builtin_type (gdbarch)->builtin_func_ptr;
|
rx: Create and use flags types for psw, bpsw, and fpsw registers.
This change adds two flags types for the (Renesas RX) psw, bpsw, and
fpsw registers. As a result, symbolic flags are displayed for these
registers in the output of GDB's "info registers" command as well as
in output from other commands, such as "print".
gdb/ChangeLog:
* rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
(struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
(rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
and RX_FPSW_REGNUM.
(rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
2015-07-03 06:02:56 +08:00
|
|
|
else if (reg_nr == RX_PSW_REGNUM || reg_nr == RX_BPSW_REGNUM)
|
Create tdep->rx_psw_type and tdep->rx_fpsw_type lazily
I build GDB with all targets enabled, and "set architecture rx",
GDB crashes,
(gdb) set architecture rx
Program received signal SIGSEGV, Segmentation fault.
append_flags_type_flag (type=0x20cc360, bitpos=bitpos@entry=0, name=name@entry=0xd27529 "C") at ../../binutils-gdb/gdb/gdbtypes.c:4926
4926 name);
(gdb) bt 10
#0 append_flags_type_flag (type=0x20cc360, bitpos=bitpos@entry=0, name=name@entry=0xd27529 "C") at ../../binutils-gdb/gdb/gdbtypes.c:4926
#1 0x00000000004ce725 in rx_gdbarch_init (info=..., arches=<optimized out>) at ../../binutils-gdb/gdb/rx-tdep.c:1051
#2 0x00000000006b05a4 in gdbarch_find_by_info (info=...) at ../../binutils-gdb/gdb/gdbarch.c:5269
#3 0x000000000060eee4 in gdbarch_update_p (info=...) at ../../binutils-gdb/gdb/arch-utils.c:557
#4 0x000000000060f8a8 in set_architecture (ignore_args=<optimized out>, from_tty=1, c=<optimized out>) at ../../binutils-gdb/gdb/arch-utils.c:531
#5 0x0000000000593d0b in do_set_command (arg=<optimized out>, arg@entry=0x20bee81 "rx ", from_tty=from_tty@entry=1, c=c@entry=0x20b1540)
at ../../binutils-gdb/gdb/cli/cli-setshow.c:455
#6 0x00000000007665c3 in execute_command (p=<optimized out>, p@entry=0x20bee70 "set architecture rx ", from_tty=1) at ../../binutils-gdb/gdb/top.c:666
#7 0x00000000006935f4 in command_handler (command=0x20bee70 "set architecture rx ") at ../../binutils-gdb/gdb/event-top.c:577
#8 0x00000000006938d8 in command_line_handler (rl=<optimized out>) at ../../binutils-gdb/gdb/event-top.c:767
#9 0x0000000000692c2c in gdb_rl_callback_handler (rl=0x20be7f0 "") at ../../binutils-gdb/gdb/event-top.c:200
The cause is that we want to access some builtin types in gdbarch init, but
it is not initialized yet. I fix it by creating the type when it is to be
used. We've already done this in sparc, sparc64 and m68k.
gdb:
2016-12-09 Yao Qi <yao.qi@linaro.org>
PR tdep/20954
* rx-tdep.c (rx_psw_type): New function.
(rx_fpsw_type): New function.
(rx_register_type): Call rx_psw_type and rx_fpsw_type.
(rx_gdbarch_init): Move code to rx_psw_type and
rx_fpsw_type.
gdb/testsuite:
2016-12-09 Yao Qi <yao.qi@linaro.org>
* gdb.base/all-architectures.exp.in: Remove kfail for "rx".
2016-12-09 23:27:43 +08:00
|
|
|
return rx_psw_type (gdbarch);
|
rx: Create and use flags types for psw, bpsw, and fpsw registers.
This change adds two flags types for the (Renesas RX) psw, bpsw, and
fpsw registers. As a result, symbolic flags are displayed for these
registers in the output of GDB's "info registers" command as well as
in output from other commands, such as "print".
gdb/ChangeLog:
* rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants.
(struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type.
(rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM,
and RX_FPSW_REGNUM.
(rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types.
2015-07-03 06:02:56 +08:00
|
|
|
else if (reg_nr == RX_FPSW_REGNUM)
|
Create tdep->rx_psw_type and tdep->rx_fpsw_type lazily
I build GDB with all targets enabled, and "set architecture rx",
GDB crashes,
(gdb) set architecture rx
Program received signal SIGSEGV, Segmentation fault.
append_flags_type_flag (type=0x20cc360, bitpos=bitpos@entry=0, name=name@entry=0xd27529 "C") at ../../binutils-gdb/gdb/gdbtypes.c:4926
4926 name);
(gdb) bt 10
#0 append_flags_type_flag (type=0x20cc360, bitpos=bitpos@entry=0, name=name@entry=0xd27529 "C") at ../../binutils-gdb/gdb/gdbtypes.c:4926
#1 0x00000000004ce725 in rx_gdbarch_init (info=..., arches=<optimized out>) at ../../binutils-gdb/gdb/rx-tdep.c:1051
#2 0x00000000006b05a4 in gdbarch_find_by_info (info=...) at ../../binutils-gdb/gdb/gdbarch.c:5269
#3 0x000000000060eee4 in gdbarch_update_p (info=...) at ../../binutils-gdb/gdb/arch-utils.c:557
#4 0x000000000060f8a8 in set_architecture (ignore_args=<optimized out>, from_tty=1, c=<optimized out>) at ../../binutils-gdb/gdb/arch-utils.c:531
#5 0x0000000000593d0b in do_set_command (arg=<optimized out>, arg@entry=0x20bee81 "rx ", from_tty=from_tty@entry=1, c=c@entry=0x20b1540)
at ../../binutils-gdb/gdb/cli/cli-setshow.c:455
#6 0x00000000007665c3 in execute_command (p=<optimized out>, p@entry=0x20bee70 "set architecture rx ", from_tty=1) at ../../binutils-gdb/gdb/top.c:666
#7 0x00000000006935f4 in command_handler (command=0x20bee70 "set architecture rx ") at ../../binutils-gdb/gdb/event-top.c:577
#8 0x00000000006938d8 in command_line_handler (rl=<optimized out>) at ../../binutils-gdb/gdb/event-top.c:767
#9 0x0000000000692c2c in gdb_rl_callback_handler (rl=0x20be7f0 "") at ../../binutils-gdb/gdb/event-top.c:200
The cause is that we want to access some builtin types in gdbarch init, but
it is not initialized yet. I fix it by creating the type when it is to be
used. We've already done this in sparc, sparc64 and m68k.
gdb:
2016-12-09 Yao Qi <yao.qi@linaro.org>
PR tdep/20954
* rx-tdep.c (rx_psw_type): New function.
(rx_fpsw_type): New function.
(rx_register_type): Call rx_psw_type and rx_fpsw_type.
(rx_gdbarch_init): Move code to rx_psw_type and
rx_fpsw_type.
gdb/testsuite:
2016-12-09 Yao Qi <yao.qi@linaro.org>
* gdb.base/all-architectures.exp.in: Remove kfail for "rx".
2016-12-09 23:27:43 +08:00
|
|
|
return rx_fpsw_type (gdbarch);
|
2010-06-25 04:38:05 +08:00
|
|
|
else if (reg_nr == RX_ACC_REGNUM)
|
|
|
|
return builtin_type (gdbarch)->builtin_unsigned_long_long;
|
2009-12-08 03:58:41 +08:00
|
|
|
else
|
|
|
|
return builtin_type (gdbarch)->builtin_unsigned_long;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Function for finding saved registers in a 'struct pv_area'; this
|
|
|
|
function is passed to pv_area_scan.
|
|
|
|
|
|
|
|
If VALUE is a saved register, ADDR says it was saved at a constant
|
|
|
|
offset from the frame base, and SIZE indicates that the whole
|
|
|
|
register was saved, record its offset. */
|
|
|
|
static void
|
|
|
|
check_for_saved (void *result_untyped, pv_t addr, CORE_ADDR size, pv_t value)
|
|
|
|
{
|
|
|
|
struct rx_prologue *result = (struct rx_prologue *) result_untyped;
|
|
|
|
|
|
|
|
if (value.kind == pvk_register
|
|
|
|
&& value.k == 0
|
|
|
|
&& pv_is_register (addr, RX_SP_REGNUM)
|
* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch.
* gdbarch.c, gdbarch.h: Rebuild.
* ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
procfs.c, progspace.c, ravenscar-thread.c, record.c,
remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
target-descriptions.c, target.c, target.h, tracepoint.c,
windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
python/py-inferior.c, python/python.c: Update.
2012-11-10 03:58:03 +08:00
|
|
|
&& size == register_size (target_gdbarch (), value.reg))
|
2009-12-08 03:58:41 +08:00
|
|
|
result->reg_offset[value.reg] = addr.k;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Define a "handle" struct for fetching the next opcode. */
|
|
|
|
struct rx_get_opcode_byte_handle
|
|
|
|
{
|
|
|
|
CORE_ADDR pc;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Fetch a byte on behalf of the opcode decoder. HANDLE contains
|
|
|
|
the memory address of the next byte to fetch. If successful,
|
|
|
|
the address in the handle is updated and the byte fetched is
|
|
|
|
returned as the value of the function. If not successful, -1
|
|
|
|
is returned. */
|
|
|
|
static int
|
|
|
|
rx_get_opcode_byte (void *handle)
|
|
|
|
{
|
2015-09-26 02:08:07 +08:00
|
|
|
struct rx_get_opcode_byte_handle *opcdata
|
|
|
|
= (struct rx_get_opcode_byte_handle *) handle;
|
2009-12-08 03:58:41 +08:00
|
|
|
int status;
|
|
|
|
gdb_byte byte;
|
|
|
|
|
2015-07-10 07:05:31 +08:00
|
|
|
status = target_read_code (opcdata->pc, &byte, 1);
|
2009-12-08 03:58:41 +08:00
|
|
|
if (status == 0)
|
|
|
|
{
|
|
|
|
opcdata->pc += 1;
|
|
|
|
return byte;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Analyze a prologue starting at START_PC, going no further than
|
|
|
|
LIMIT_PC. Fill in RESULT as appropriate. */
|
2015-07-03 07:46:31 +08:00
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
static void
|
2015-07-03 07:46:31 +08:00
|
|
|
rx_analyze_prologue (CORE_ADDR start_pc, CORE_ADDR limit_pc,
|
|
|
|
enum rx_frame_type frame_type,
|
|
|
|
struct rx_prologue *result)
|
2009-12-08 03:58:41 +08:00
|
|
|
{
|
|
|
|
CORE_ADDR pc, next_pc;
|
|
|
|
int rn;
|
|
|
|
pv_t reg[RX_NUM_REGS];
|
|
|
|
struct pv_area *stack;
|
|
|
|
struct cleanup *back_to;
|
|
|
|
CORE_ADDR after_last_frame_setup_insn = start_pc;
|
|
|
|
|
|
|
|
memset (result, 0, sizeof (*result));
|
|
|
|
|
2015-07-03 07:46:31 +08:00
|
|
|
result->frame_type = frame_type;
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
for (rn = 0; rn < RX_NUM_REGS; rn++)
|
|
|
|
{
|
|
|
|
reg[rn] = pv_register (rn, 0);
|
|
|
|
result->reg_offset[rn] = 1;
|
|
|
|
}
|
|
|
|
|
* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch.
* gdbarch.c, gdbarch.h: Rebuild.
* ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
procfs.c, progspace.c, ravenscar-thread.c, record.c,
remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
target-descriptions.c, target.c, target.h, tracepoint.c,
windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
python/py-inferior.c, python/python.c: Update.
2012-11-10 03:58:03 +08:00
|
|
|
stack = make_pv_area (RX_SP_REGNUM, gdbarch_addr_bit (target_gdbarch ()));
|
2009-12-08 03:58:41 +08:00
|
|
|
back_to = make_cleanup_free_pv_area (stack);
|
|
|
|
|
2015-07-03 07:46:31 +08:00
|
|
|
if (frame_type == RX_FRAME_TYPE_FAST_INTERRUPT)
|
|
|
|
{
|
|
|
|
/* This code won't do anything useful at present, but this is
|
|
|
|
what happens for fast interrupts. */
|
|
|
|
reg[RX_BPSW_REGNUM] = reg[RX_PSW_REGNUM];
|
|
|
|
reg[RX_BPC_REGNUM] = reg[RX_PC_REGNUM];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* When an exception occurs, the PSW is saved to the interrupt stack
|
|
|
|
first. */
|
|
|
|
if (frame_type == RX_FRAME_TYPE_EXCEPTION)
|
|
|
|
{
|
|
|
|
reg[RX_SP_REGNUM] = pv_add_constant (reg[RX_SP_REGNUM], -4);
|
|
|
|
pv_area_store (stack, reg[RX_SP_REGNUM], 4, reg[RX_PSW_REGNUM]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The call instruction (or an exception/interrupt) has saved the return
|
|
|
|
address on the stack. */
|
|
|
|
reg[RX_SP_REGNUM] = pv_add_constant (reg[RX_SP_REGNUM], -4);
|
|
|
|
pv_area_store (stack, reg[RX_SP_REGNUM], 4, reg[RX_PC_REGNUM]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
pc = start_pc;
|
|
|
|
while (pc < limit_pc)
|
|
|
|
{
|
|
|
|
int bytes_read;
|
|
|
|
struct rx_get_opcode_byte_handle opcode_handle;
|
|
|
|
RX_Opcode_Decoded opc;
|
|
|
|
|
|
|
|
opcode_handle.pc = pc;
|
|
|
|
bytes_read = rx_decode_opcode (pc, &opc, rx_get_opcode_byte,
|
|
|
|
&opcode_handle);
|
|
|
|
next_pc = pc + bytes_read;
|
|
|
|
|
|
|
|
if (opc.id == RXO_pushm /* pushm r1, r2 */
|
|
|
|
&& opc.op[1].type == RX_Operand_Register
|
|
|
|
&& opc.op[2].type == RX_Operand_Register)
|
|
|
|
{
|
|
|
|
int r1, r2;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r1 = opc.op[1].reg;
|
|
|
|
r2 = opc.op[2].reg;
|
|
|
|
for (r = r2; r >= r1; r--)
|
|
|
|
{
|
|
|
|
reg[RX_SP_REGNUM] = pv_add_constant (reg[RX_SP_REGNUM], -4);
|
|
|
|
pv_area_store (stack, reg[RX_SP_REGNUM], 4, reg[r]);
|
|
|
|
}
|
|
|
|
after_last_frame_setup_insn = next_pc;
|
|
|
|
}
|
|
|
|
else if (opc.id == RXO_mov /* mov.l rdst, rsrc */
|
|
|
|
&& opc.op[0].type == RX_Operand_Register
|
|
|
|
&& opc.op[1].type == RX_Operand_Register
|
|
|
|
&& opc.size == RX_Long)
|
|
|
|
{
|
|
|
|
int rdst, rsrc;
|
|
|
|
|
|
|
|
rdst = opc.op[0].reg;
|
|
|
|
rsrc = opc.op[1].reg;
|
|
|
|
reg[rdst] = reg[rsrc];
|
|
|
|
if (rdst == RX_FP_REGNUM && rsrc == RX_SP_REGNUM)
|
|
|
|
after_last_frame_setup_insn = next_pc;
|
|
|
|
}
|
|
|
|
else if (opc.id == RXO_mov /* mov.l rsrc, [-SP] */
|
|
|
|
&& opc.op[0].type == RX_Operand_Predec
|
|
|
|
&& opc.op[0].reg == RX_SP_REGNUM
|
|
|
|
&& opc.op[1].type == RX_Operand_Register
|
|
|
|
&& opc.size == RX_Long)
|
|
|
|
{
|
|
|
|
int rsrc;
|
|
|
|
|
|
|
|
rsrc = opc.op[1].reg;
|
|
|
|
reg[RX_SP_REGNUM] = pv_add_constant (reg[RX_SP_REGNUM], -4);
|
|
|
|
pv_area_store (stack, reg[RX_SP_REGNUM], 4, reg[rsrc]);
|
|
|
|
after_last_frame_setup_insn = next_pc;
|
|
|
|
}
|
|
|
|
else if (opc.id == RXO_add /* add #const, rsrc, rdst */
|
|
|
|
&& opc.op[0].type == RX_Operand_Register
|
|
|
|
&& opc.op[1].type == RX_Operand_Immediate
|
|
|
|
&& opc.op[2].type == RX_Operand_Register)
|
|
|
|
{
|
|
|
|
int rdst = opc.op[0].reg;
|
|
|
|
int addend = opc.op[1].addend;
|
|
|
|
int rsrc = opc.op[2].reg;
|
|
|
|
reg[rdst] = pv_add_constant (reg[rsrc], addend);
|
|
|
|
/* Negative adjustments to the stack pointer or frame pointer
|
|
|
|
are (most likely) part of the prologue. */
|
|
|
|
if ((rdst == RX_SP_REGNUM || rdst == RX_FP_REGNUM) && addend < 0)
|
|
|
|
after_last_frame_setup_insn = next_pc;
|
|
|
|
}
|
|
|
|
else if (opc.id == RXO_mov
|
|
|
|
&& opc.op[0].type == RX_Operand_Indirect
|
|
|
|
&& opc.op[1].type == RX_Operand_Register
|
|
|
|
&& opc.size == RX_Long
|
|
|
|
&& (opc.op[0].reg == RX_SP_REGNUM
|
|
|
|
|| opc.op[0].reg == RX_FP_REGNUM)
|
|
|
|
&& (RX_R1_REGNUM <= opc.op[1].reg
|
|
|
|
&& opc.op[1].reg <= RX_R4_REGNUM))
|
|
|
|
{
|
|
|
|
/* This moves an argument register to the stack. Don't
|
|
|
|
record it, but allow it to be a part of the prologue. */
|
|
|
|
}
|
|
|
|
else if (opc.id == RXO_branch
|
|
|
|
&& opc.op[0].type == RX_Operand_Immediate
|
|
|
|
&& next_pc < opc.op[0].addend)
|
|
|
|
{
|
|
|
|
/* When a loop appears as the first statement of a function
|
|
|
|
body, gcc 4.x will use a BRA instruction to branch to the
|
|
|
|
loop condition checking code. This BRA instruction is
|
|
|
|
marked as part of the prologue. We therefore set next_pc
|
|
|
|
to this branch target and also stop the prologue scan.
|
|
|
|
The instructions at and beyond the branch target should
|
|
|
|
no longer be associated with the prologue.
|
|
|
|
|
|
|
|
Note that we only consider forward branches here. We
|
|
|
|
presume that a forward branch is being used to skip over
|
|
|
|
a loop body.
|
|
|
|
|
|
|
|
A backwards branch is covered by the default case below.
|
|
|
|
If we were to encounter a backwards branch, that would
|
|
|
|
most likely mean that we've scanned through a loop body.
|
|
|
|
We definitely want to stop the prologue scan when this
|
|
|
|
happens and that is precisely what is done by the default
|
|
|
|
case below. */
|
|
|
|
|
|
|
|
after_last_frame_setup_insn = opc.op[0].addend;
|
|
|
|
break; /* Scan no further if we hit this case. */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Terminate the prologue scan. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
pc = next_pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Is the frame size (offset, really) a known constant? */
|
|
|
|
if (pv_is_register (reg[RX_SP_REGNUM], RX_SP_REGNUM))
|
|
|
|
result->frame_size = reg[RX_SP_REGNUM].k;
|
|
|
|
|
|
|
|
/* Was the frame pointer initialized? */
|
|
|
|
if (pv_is_register (reg[RX_FP_REGNUM], RX_SP_REGNUM))
|
|
|
|
{
|
|
|
|
result->has_frame_ptr = 1;
|
|
|
|
result->frame_ptr_offset = reg[RX_FP_REGNUM].k;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Record where all the registers were saved. */
|
|
|
|
pv_area_scan (stack, check_for_saved, (void *) result);
|
|
|
|
|
|
|
|
result->prologue_end = after_last_frame_setup_insn;
|
|
|
|
|
|
|
|
do_cleanups (back_to);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Implement the "skip_prologue" gdbarch method. */
|
|
|
|
static CORE_ADDR
|
|
|
|
rx_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
|
|
|
|
{
|
2012-02-03 04:19:17 +08:00
|
|
|
const char *name;
|
2009-12-08 03:58:41 +08:00
|
|
|
CORE_ADDR func_addr, func_end;
|
|
|
|
struct rx_prologue p;
|
|
|
|
|
|
|
|
/* Try to find the extent of the function that contains PC. */
|
|
|
|
if (!find_pc_partial_function (pc, &name, &func_addr, &func_end))
|
|
|
|
return pc;
|
|
|
|
|
2015-07-03 07:46:31 +08:00
|
|
|
/* The frame type doesn't matter here, since we only care about
|
|
|
|
where the prologue ends. We'll use RX_FRAME_TYPE_NORMAL. */
|
|
|
|
rx_analyze_prologue (pc, func_end, RX_FRAME_TYPE_NORMAL, &p);
|
2009-12-08 03:58:41 +08:00
|
|
|
return p.prologue_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Given a frame described by THIS_FRAME, decode the prologue of its
|
|
|
|
associated function if there is not cache entry as specified by
|
|
|
|
THIS_PROLOGUE_CACHE. Save the decoded prologue in the cache and
|
|
|
|
return that struct as the value of this function. */
|
2015-07-03 07:46:31 +08:00
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
static struct rx_prologue *
|
|
|
|
rx_analyze_frame_prologue (struct frame_info *this_frame,
|
2015-07-03 07:46:31 +08:00
|
|
|
enum rx_frame_type frame_type,
|
2009-12-08 03:58:41 +08:00
|
|
|
void **this_prologue_cache)
|
|
|
|
{
|
|
|
|
if (!*this_prologue_cache)
|
|
|
|
{
|
|
|
|
CORE_ADDR func_start, stop_addr;
|
|
|
|
|
|
|
|
*this_prologue_cache = FRAME_OBSTACK_ZALLOC (struct rx_prologue);
|
|
|
|
|
|
|
|
func_start = get_frame_func (this_frame);
|
|
|
|
stop_addr = get_frame_pc (this_frame);
|
|
|
|
|
|
|
|
/* If we couldn't find any function containing the PC, then
|
|
|
|
just initialize the prologue cache, but don't do anything. */
|
|
|
|
if (!func_start)
|
|
|
|
stop_addr = func_start;
|
|
|
|
|
2015-07-03 07:46:31 +08:00
|
|
|
rx_analyze_prologue (func_start, stop_addr, frame_type,
|
2015-09-26 02:08:07 +08:00
|
|
|
(struct rx_prologue *) *this_prologue_cache);
|
2009-12-08 03:58:41 +08:00
|
|
|
}
|
|
|
|
|
2015-09-26 02:08:07 +08:00
|
|
|
return (struct rx_prologue *) *this_prologue_cache;
|
2009-12-08 03:58:41 +08:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:46:31 +08:00
|
|
|
/* Determine type of frame by scanning the function for a return
|
|
|
|
instruction. */
|
|
|
|
|
|
|
|
static enum rx_frame_type
|
|
|
|
rx_frame_type (struct frame_info *this_frame, void **this_cache)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
CORE_ADDR pc, start_pc, lim_pc;
|
|
|
|
int bytes_read;
|
|
|
|
struct rx_get_opcode_byte_handle opcode_handle;
|
|
|
|
RX_Opcode_Decoded opc;
|
|
|
|
|
|
|
|
gdb_assert (this_cache != NULL);
|
|
|
|
|
|
|
|
/* If we have a cached value, return it. */
|
|
|
|
|
|
|
|
if (*this_cache != NULL)
|
|
|
|
{
|
2015-09-26 02:08:07 +08:00
|
|
|
struct rx_prologue *p = (struct rx_prologue *) *this_cache;
|
2015-07-03 07:46:31 +08:00
|
|
|
|
|
|
|
return p->frame_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No cached value; scan the function. The frame type is cached in
|
|
|
|
rx_analyze_prologue / rx_analyze_frame_prologue. */
|
|
|
|
|
|
|
|
pc = get_frame_pc (this_frame);
|
|
|
|
|
|
|
|
/* Attempt to find the last address in the function. If it cannot
|
|
|
|
be determined, set the limit to be a short ways past the frame's
|
|
|
|
pc. */
|
|
|
|
if (!find_pc_partial_function (pc, &name, &start_pc, &lim_pc))
|
|
|
|
lim_pc = pc + 20;
|
|
|
|
|
|
|
|
while (pc < lim_pc)
|
|
|
|
{
|
|
|
|
opcode_handle.pc = pc;
|
|
|
|
bytes_read = rx_decode_opcode (pc, &opc, rx_get_opcode_byte,
|
|
|
|
&opcode_handle);
|
|
|
|
|
|
|
|
if (bytes_read <= 0 || opc.id == RXO_rts)
|
|
|
|
return RX_FRAME_TYPE_NORMAL;
|
|
|
|
else if (opc.id == RXO_rtfi)
|
|
|
|
return RX_FRAME_TYPE_FAST_INTERRUPT;
|
|
|
|
else if (opc.id == RXO_rte)
|
|
|
|
return RX_FRAME_TYPE_EXCEPTION;
|
|
|
|
|
|
|
|
pc += bytes_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RX_FRAME_TYPE_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
/* Given the next frame and a prologue cache, return this frame's
|
|
|
|
base. */
|
2015-07-03 07:46:31 +08:00
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
static CORE_ADDR
|
2015-07-03 07:46:31 +08:00
|
|
|
rx_frame_base (struct frame_info *this_frame, void **this_cache)
|
2009-12-08 03:58:41 +08:00
|
|
|
{
|
2015-07-03 07:46:31 +08:00
|
|
|
enum rx_frame_type frame_type = rx_frame_type (this_frame, this_cache);
|
2009-12-08 03:58:41 +08:00
|
|
|
struct rx_prologue *p
|
2015-07-03 07:46:31 +08:00
|
|
|
= rx_analyze_frame_prologue (this_frame, frame_type, this_cache);
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
/* In functions that use alloca, the distance between the stack
|
|
|
|
pointer and the frame base varies dynamically, so we can't use
|
|
|
|
the SP plus static information like prologue analysis to find the
|
|
|
|
frame base. However, such functions must have a frame pointer,
|
|
|
|
to be able to restore the SP on exit. So whenever we do have a
|
|
|
|
frame pointer, use that to find the base. */
|
|
|
|
if (p->has_frame_ptr)
|
|
|
|
{
|
|
|
|
CORE_ADDR fp = get_frame_register_unsigned (this_frame, RX_FP_REGNUM);
|
|
|
|
return fp - p->frame_ptr_offset;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CORE_ADDR sp = get_frame_register_unsigned (this_frame, RX_SP_REGNUM);
|
|
|
|
return sp - p->frame_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement the "frame_this_id" method for unwinding frames. */
|
2015-07-03 07:46:31 +08:00
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
static void
|
2015-07-03 07:46:31 +08:00
|
|
|
rx_frame_this_id (struct frame_info *this_frame, void **this_cache,
|
|
|
|
struct frame_id *this_id)
|
2009-12-08 03:58:41 +08:00
|
|
|
{
|
2015-07-03 07:46:31 +08:00
|
|
|
*this_id = frame_id_build (rx_frame_base (this_frame, this_cache),
|
2009-12-08 03:58:41 +08:00
|
|
|
get_frame_func (this_frame));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement the "frame_prev_register" method for unwinding frames. */
|
2015-07-03 07:46:31 +08:00
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
static struct value *
|
2015-07-03 07:46:31 +08:00
|
|
|
rx_frame_prev_register (struct frame_info *this_frame, void **this_cache,
|
|
|
|
int regnum)
|
2009-12-08 03:58:41 +08:00
|
|
|
{
|
2015-07-03 07:46:31 +08:00
|
|
|
enum rx_frame_type frame_type = rx_frame_type (this_frame, this_cache);
|
2009-12-08 03:58:41 +08:00
|
|
|
struct rx_prologue *p
|
2015-07-03 07:46:31 +08:00
|
|
|
= rx_analyze_frame_prologue (this_frame, frame_type, this_cache);
|
|
|
|
CORE_ADDR frame_base = rx_frame_base (this_frame, this_cache);
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
if (regnum == RX_SP_REGNUM)
|
2015-07-03 07:46:31 +08:00
|
|
|
{
|
|
|
|
if (frame_type == RX_FRAME_TYPE_EXCEPTION)
|
|
|
|
{
|
|
|
|
struct value *psw_val;
|
|
|
|
CORE_ADDR psw;
|
|
|
|
|
|
|
|
psw_val = rx_frame_prev_register (this_frame, this_cache,
|
|
|
|
RX_PSW_REGNUM);
|
|
|
|
psw = extract_unsigned_integer (value_contents_all (psw_val), 4,
|
|
|
|
gdbarch_byte_order (
|
|
|
|
get_frame_arch (this_frame)));
|
|
|
|
|
|
|
|
if ((psw & 0x20000 /* U bit */) != 0)
|
|
|
|
return rx_frame_prev_register (this_frame, this_cache,
|
|
|
|
RX_USP_REGNUM);
|
|
|
|
|
|
|
|
/* Fall through for the case where U bit is zero. */
|
|
|
|
}
|
|
|
|
|
|
|
|
return frame_unwind_got_constant (this_frame, regnum, frame_base);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frame_type == RX_FRAME_TYPE_FAST_INTERRUPT)
|
|
|
|
{
|
|
|
|
if (regnum == RX_PC_REGNUM)
|
|
|
|
return rx_frame_prev_register (this_frame, this_cache,
|
|
|
|
RX_BPC_REGNUM);
|
|
|
|
if (regnum == RX_PSW_REGNUM)
|
|
|
|
return rx_frame_prev_register (this_frame, this_cache,
|
|
|
|
RX_BPSW_REGNUM);
|
|
|
|
}
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
/* If prologue analysis says we saved this register somewhere,
|
|
|
|
return a description of the stack slot holding it. */
|
2015-07-03 07:46:31 +08:00
|
|
|
if (p->reg_offset[regnum] != 1)
|
2009-12-08 03:58:41 +08:00
|
|
|
return frame_unwind_got_memory (this_frame, regnum,
|
|
|
|
frame_base + p->reg_offset[regnum]);
|
|
|
|
|
|
|
|
/* Otherwise, presume we haven't changed the value of this
|
|
|
|
register, and get it from the next frame. */
|
2015-07-03 07:46:31 +08:00
|
|
|
return frame_unwind_got_register (this_frame, regnum, regnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return TRUE if the frame indicated by FRAME_TYPE is a normal frame. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
normal_frame_p (enum rx_frame_type frame_type)
|
|
|
|
{
|
|
|
|
return (frame_type == RX_FRAME_TYPE_NORMAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return TRUE if the frame indicated by FRAME_TYPE is an exception
|
|
|
|
frame. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
exception_frame_p (enum rx_frame_type frame_type)
|
|
|
|
{
|
|
|
|
return (frame_type == RX_FRAME_TYPE_EXCEPTION
|
|
|
|
|| frame_type == RX_FRAME_TYPE_FAST_INTERRUPT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Common code used by both normal and exception frame sniffers. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
rx_frame_sniffer_common (const struct frame_unwind *self,
|
|
|
|
struct frame_info *this_frame,
|
|
|
|
void **this_cache,
|
|
|
|
int (*sniff_p)(enum rx_frame_type) )
|
|
|
|
{
|
|
|
|
gdb_assert (this_cache != NULL);
|
|
|
|
|
|
|
|
if (*this_cache == NULL)
|
|
|
|
{
|
|
|
|
enum rx_frame_type frame_type = rx_frame_type (this_frame, this_cache);
|
|
|
|
|
|
|
|
if (sniff_p (frame_type))
|
|
|
|
{
|
|
|
|
/* The call below will fill in the cache, including the frame
|
|
|
|
type. */
|
|
|
|
(void) rx_analyze_frame_prologue (this_frame, frame_type, this_cache);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2009-12-08 03:58:41 +08:00
|
|
|
else
|
2015-07-03 07:46:31 +08:00
|
|
|
{
|
2015-09-26 02:08:07 +08:00
|
|
|
struct rx_prologue *p = (struct rx_prologue *) *this_cache;
|
2015-07-03 07:46:31 +08:00
|
|
|
|
|
|
|
return sniff_p (p->frame_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Frame sniffer for normal (non-exception) frames. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
rx_frame_sniffer (const struct frame_unwind *self,
|
|
|
|
struct frame_info *this_frame,
|
|
|
|
void **this_cache)
|
|
|
|
{
|
|
|
|
return rx_frame_sniffer_common (self, this_frame, this_cache,
|
|
|
|
normal_frame_p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Frame sniffer for exception frames. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
rx_exception_sniffer (const struct frame_unwind *self,
|
|
|
|
struct frame_info *this_frame,
|
|
|
|
void **this_cache)
|
|
|
|
{
|
|
|
|
return rx_frame_sniffer_common (self, this_frame, this_cache,
|
|
|
|
exception_frame_p);
|
2009-12-08 03:58:41 +08:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:46:31 +08:00
|
|
|
/* Data structure for normal code using instruction-based prologue
|
|
|
|
analyzer. */
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
static const struct frame_unwind rx_frame_unwind = {
|
|
|
|
NORMAL_FRAME,
|
2011-04-09 05:46:29 +08:00
|
|
|
default_frame_unwind_stop_reason,
|
2009-12-08 03:58:41 +08:00
|
|
|
rx_frame_this_id,
|
|
|
|
rx_frame_prev_register,
|
|
|
|
NULL,
|
2015-07-03 07:46:31 +08:00
|
|
|
rx_frame_sniffer
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Data structure for exception code using instruction-based prologue
|
|
|
|
analyzer. */
|
|
|
|
|
|
|
|
static const struct frame_unwind rx_exception_unwind = {
|
|
|
|
/* SIGTRAMP_FRAME could be used here, but backtraces are less informative. */
|
|
|
|
NORMAL_FRAME,
|
|
|
|
default_frame_unwind_stop_reason,
|
|
|
|
rx_frame_this_id,
|
|
|
|
rx_frame_prev_register,
|
|
|
|
NULL,
|
|
|
|
rx_exception_sniffer
|
2009-12-08 03:58:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Implement the "unwind_pc" gdbarch method. */
|
|
|
|
static CORE_ADDR
|
|
|
|
rx_unwind_pc (struct gdbarch *gdbarch, struct frame_info *this_frame)
|
|
|
|
{
|
|
|
|
ULONGEST pc;
|
|
|
|
|
|
|
|
pc = frame_unwind_register_unsigned (this_frame, RX_PC_REGNUM);
|
|
|
|
return pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement the "unwind_sp" gdbarch method. */
|
|
|
|
static CORE_ADDR
|
|
|
|
rx_unwind_sp (struct gdbarch *gdbarch, struct frame_info *this_frame)
|
|
|
|
{
|
|
|
|
ULONGEST sp;
|
|
|
|
|
|
|
|
sp = frame_unwind_register_unsigned (this_frame, RX_SP_REGNUM);
|
|
|
|
return sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement the "dummy_id" gdbarch method. */
|
|
|
|
static struct frame_id
|
|
|
|
rx_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
frame_id_build (get_frame_register_unsigned (this_frame, RX_SP_REGNUM),
|
|
|
|
get_frame_pc (this_frame));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement the "push_dummy_call" gdbarch method. */
|
|
|
|
static CORE_ADDR
|
|
|
|
rx_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
|
|
|
|
struct regcache *regcache, CORE_ADDR bp_addr, int nargs,
|
|
|
|
struct value **args, CORE_ADDR sp, int struct_return,
|
|
|
|
CORE_ADDR struct_addr)
|
|
|
|
{
|
|
|
|
enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
|
|
|
|
int write_pass;
|
|
|
|
int sp_off = 0;
|
|
|
|
CORE_ADDR cfa;
|
|
|
|
int num_register_candidate_args;
|
|
|
|
|
|
|
|
struct type *func_type = value_type (function);
|
|
|
|
|
|
|
|
/* Dereference function pointer types. */
|
|
|
|
while (TYPE_CODE (func_type) == TYPE_CODE_PTR)
|
|
|
|
func_type = TYPE_TARGET_TYPE (func_type);
|
|
|
|
|
|
|
|
/* The end result had better be a function or a method. */
|
|
|
|
gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC
|
|
|
|
|| TYPE_CODE (func_type) == TYPE_CODE_METHOD);
|
|
|
|
|
|
|
|
/* Functions with a variable number of arguments have all of their
|
|
|
|
variable arguments and the last non-variable argument passed
|
|
|
|
on the stack.
|
|
|
|
|
|
|
|
Otherwise, we can pass up to four arguments on the stack.
|
|
|
|
|
|
|
|
Once computed, we leave this value alone. I.e. we don't update
|
|
|
|
it in case of a struct return going in a register or an argument
|
|
|
|
requiring multiple registers, etc. We rely instead on the value
|
|
|
|
of the ``arg_reg'' variable to get these other details correct. */
|
|
|
|
|
|
|
|
if (TYPE_VARARGS (func_type))
|
|
|
|
num_register_candidate_args = TYPE_NFIELDS (func_type) - 1;
|
|
|
|
else
|
|
|
|
num_register_candidate_args = 4;
|
|
|
|
|
|
|
|
/* We make two passes; the first does the stack allocation,
|
|
|
|
the second actually stores the arguments. */
|
|
|
|
for (write_pass = 0; write_pass <= 1; write_pass++)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int arg_reg = RX_R1_REGNUM;
|
|
|
|
|
|
|
|
if (write_pass)
|
|
|
|
sp = align_down (sp - sp_off, 4);
|
|
|
|
sp_off = 0;
|
|
|
|
|
|
|
|
if (struct_return)
|
|
|
|
{
|
|
|
|
struct type *return_type = TYPE_TARGET_TYPE (func_type);
|
|
|
|
|
|
|
|
gdb_assert (TYPE_CODE (return_type) == TYPE_CODE_STRUCT
|
|
|
|
|| TYPE_CODE (func_type) == TYPE_CODE_UNION);
|
|
|
|
|
|
|
|
if (TYPE_LENGTH (return_type) > 16
|
|
|
|
|| TYPE_LENGTH (return_type) % 4 != 0)
|
|
|
|
{
|
|
|
|
if (write_pass)
|
|
|
|
regcache_cooked_write_unsigned (regcache, RX_R15_REGNUM,
|
|
|
|
struct_addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Push the arguments. */
|
|
|
|
for (i = 0; i < nargs; i++)
|
|
|
|
{
|
|
|
|
struct value *arg = args[i];
|
|
|
|
const gdb_byte *arg_bits = value_contents_all (arg);
|
|
|
|
struct type *arg_type = check_typedef (value_type (arg));
|
|
|
|
ULONGEST arg_size = TYPE_LENGTH (arg_type);
|
|
|
|
|
|
|
|
if (i == 0 && struct_addr != 0 && !struct_return
|
|
|
|
&& TYPE_CODE (arg_type) == TYPE_CODE_PTR
|
|
|
|
&& extract_unsigned_integer (arg_bits, 4,
|
|
|
|
byte_order) == struct_addr)
|
|
|
|
{
|
|
|
|
/* This argument represents the address at which C++ (and
|
|
|
|
possibly other languages) store their return value.
|
|
|
|
Put this value in R15. */
|
|
|
|
if (write_pass)
|
|
|
|
regcache_cooked_write_unsigned (regcache, RX_R15_REGNUM,
|
|
|
|
struct_addr);
|
|
|
|
}
|
|
|
|
else if (TYPE_CODE (arg_type) != TYPE_CODE_STRUCT
|
rx: Treat scalars larger than 8 bytes as aggregates in rx_push_dummy_call.
This patch fixes the following failures (which are also GDB internal errors)
for the -m64bit-doubles multilib:
FAIL: gdb.base/callfuncs.exp: p t_double_complex_values(dc1, dc2) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: p t_double_complex_values(dc3, dc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: p t_double_complex_many_args(dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: p t_double_complex_many_args(dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_values(ldc1, ldc2) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_values(ldc3, ldc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_many_args(ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: p t_long_double_complex_many_args(ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1,ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_values(dc1, dc2) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_values(dc3, dc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_many_args(dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_double_complex_many_args(dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_values(ldc1, ldc2) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_values(ldc3, ldc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_many_args(ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4) (GDB internal error)
FAIL: gdb.base/callfuncs.exp: noproto: p t_long_double_complex_many_args(ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1,ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1) (GDB internal error)
FAIL: gdb.base/varargs.exp: print find_max_double_real(4, dc1, dc2, dc3, dc4) (GDB internal error)
FAIL: gdb.base/varargs.exp: print find_max_long_double_real(4, ldc1, ldc2, ldc3, ldc4) (GDB internal error)
The assertion failure which is tripped is:
gdb_assert (arg_size <= 4);
While it may seem that the patch ought to disallow scalars larger than
4, scalars of size 8 are explicitly handled by the code elsewhere.
This came up because gcc has a complex type that is 16 bytes in length
when 64-bit doubles are used.
gdb/ChangeLog:
* rx-tdep.c (rx_push_dummy_call): Treat scalars larger than 8
bytes as aggregates.
2016-01-24 06:06:08 +08:00
|
|
|
&& TYPE_CODE (arg_type) != TYPE_CODE_UNION
|
|
|
|
&& arg_size <= 8)
|
2009-12-08 03:58:41 +08:00
|
|
|
{
|
|
|
|
/* Argument is a scalar. */
|
|
|
|
if (arg_size == 8)
|
|
|
|
{
|
|
|
|
if (i < num_register_candidate_args
|
|
|
|
&& arg_reg <= RX_R4_REGNUM - 1)
|
|
|
|
{
|
|
|
|
/* If argument registers are going to be used to pass
|
|
|
|
an 8 byte scalar, the ABI specifies that two registers
|
|
|
|
must be available. */
|
|
|
|
if (write_pass)
|
|
|
|
{
|
|
|
|
regcache_cooked_write_unsigned (regcache, arg_reg,
|
|
|
|
extract_unsigned_integer
|
|
|
|
(arg_bits, 4,
|
|
|
|
byte_order));
|
|
|
|
regcache_cooked_write_unsigned (regcache,
|
|
|
|
arg_reg + 1,
|
|
|
|
extract_unsigned_integer
|
|
|
|
(arg_bits + 4, 4,
|
|
|
|
byte_order));
|
|
|
|
}
|
|
|
|
arg_reg += 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sp_off = align_up (sp_off, 4);
|
|
|
|
/* Otherwise, pass the 8 byte scalar on the stack. */
|
|
|
|
if (write_pass)
|
|
|
|
write_memory (sp + sp_off, arg_bits, 8);
|
|
|
|
sp_off += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ULONGEST u;
|
|
|
|
|
|
|
|
gdb_assert (arg_size <= 4);
|
|
|
|
|
|
|
|
u =
|
|
|
|
extract_unsigned_integer (arg_bits, arg_size, byte_order);
|
|
|
|
|
|
|
|
if (i < num_register_candidate_args
|
|
|
|
&& arg_reg <= RX_R4_REGNUM)
|
|
|
|
{
|
|
|
|
if (write_pass)
|
|
|
|
regcache_cooked_write_unsigned (regcache, arg_reg, u);
|
|
|
|
arg_reg += 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int p_arg_size = 4;
|
|
|
|
|
|
|
|
if (TYPE_PROTOTYPED (func_type)
|
|
|
|
&& i < TYPE_NFIELDS (func_type))
|
|
|
|
{
|
|
|
|
struct type *p_arg_type =
|
|
|
|
TYPE_FIELD_TYPE (func_type, i);
|
|
|
|
p_arg_size = TYPE_LENGTH (p_arg_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
sp_off = align_up (sp_off, p_arg_size);
|
|
|
|
|
|
|
|
if (write_pass)
|
|
|
|
write_memory_unsigned_integer (sp + sp_off,
|
|
|
|
p_arg_size, byte_order,
|
|
|
|
u);
|
|
|
|
sp_off += p_arg_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Argument is a struct or union. Pass as much of the struct
|
|
|
|
in registers, if possible. Pass the rest on the stack. */
|
|
|
|
while (arg_size > 0)
|
|
|
|
{
|
|
|
|
if (i < num_register_candidate_args
|
|
|
|
&& arg_reg <= RX_R4_REGNUM
|
|
|
|
&& arg_size <= 4 * (RX_R4_REGNUM - arg_reg + 1)
|
|
|
|
&& arg_size % 4 == 0)
|
|
|
|
{
|
gdb: Use std::min and std::max throughout
Otherwise including <string> or some other C++ header is broken.
E.g.:
In file included from /opt/gcc/include/c++/7.0.0/bits/char_traits.h:39:0,
from /opt/gcc/include/c++/7.0.0/string:40,
from /home/pedro/gdb/mygit/cxx-convertion/src/gdb/infrun.c:68:
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:243:56: error: macro "min" passed 3 arguments, but takes just 2
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:265:56: error: macro "max" passed 3 arguments, but takes just 2
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
In file included from .../src/gdb/infrun.c:21:0:
To the best of my grepping abilities, I believe I adjusted all min/max
calls.
gdb/ChangeLog:
2016-09-16 Pedro Alves <palves@redhat.com>
* defs.h (min, max): Delete.
* aarch64-tdep.c: Include <algorithm> and use std::min and
std::max throughout.
* aarch64-tdep.c: Likewise.
* alpha-tdep.c: Likewise.
* amd64-tdep.c: Likewise.
* amd64-windows-tdep.c: Likewise.
* arm-tdep.c: Likewise.
* avr-tdep.c: Likewise.
* breakpoint.c: Likewise.
* btrace.c: Likewise.
* ctf.c: Likewise.
* disasm.c: Likewise.
* doublest.c: Likewise.
* dwarf2loc.c: Likewise.
* dwarf2read.c: Likewise.
* environ.c: Likewise.
* exec.c: Likewise.
* f-exp.y: Likewise.
* findcmd.c: Likewise.
* ft32-tdep.c: Likewise.
* gcore.c: Likewise.
* hppa-tdep.c: Likewise.
* i386-darwin-tdep.c: Likewise.
* i386-tdep.c: Likewise.
* linux-thread-db.c: Likewise.
* lm32-tdep.c: Likewise.
* m32r-tdep.c: Likewise.
* m88k-tdep.c: Likewise.
* memrange.c: Likewise.
* minidebug.c: Likewise.
* mips-tdep.c: Likewise.
* moxie-tdep.c: Likewise.
* nds32-tdep.c: Likewise.
* nios2-tdep.c: Likewise.
* nto-procfs.c: Likewise.
* parse.c: Likewise.
* ppc-sysv-tdep.c: Likewise.
* probe.c: Likewise.
* record-btrace.c: Likewise.
* remote.c: Likewise.
* rs6000-tdep.c: Likewise.
* rx-tdep.c: Likewise.
* s390-linux-nat.c: Likewise.
* s390-linux-tdep.c: Likewise.
* ser-tcp.c: Likewise.
* sh-tdep.c: Likewise.
* sh64-tdep.c: Likewise.
* source.c: Likewise.
* sparc-tdep.c: Likewise.
* symfile.c: Likewise.
* target-memory.c: Likewise.
* target.c: Likewise.
* tic6x-tdep.c: Likewise.
* tilegx-tdep.c: Likewise.
* tracefile-tfile.c: Likewise.
* tracepoint.c: Likewise.
* valprint.c: Likewise.
* value.c: Likewise.
* xtensa-tdep.c: Likewise.
* cli/cli-cmds.c: Likewise.
* compile/compile-object-load.c: Likewise.
2016-09-17 02:55:17 +08:00
|
|
|
int len = std::min (arg_size, (ULONGEST) 4);
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
if (write_pass)
|
|
|
|
regcache_cooked_write_unsigned (regcache, arg_reg,
|
|
|
|
extract_unsigned_integer
|
|
|
|
(arg_bits, len,
|
|
|
|
byte_order));
|
|
|
|
arg_bits += len;
|
|
|
|
arg_size -= len;
|
|
|
|
arg_reg++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sp_off = align_up (sp_off, 4);
|
|
|
|
if (write_pass)
|
|
|
|
write_memory (sp + sp_off, arg_bits, arg_size);
|
|
|
|
sp_off += align_up (arg_size, 4);
|
|
|
|
arg_size = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Keep track of the stack address prior to pushing the return address.
|
|
|
|
This is the value that we'll return. */
|
|
|
|
cfa = sp;
|
|
|
|
|
|
|
|
/* Push the return address. */
|
|
|
|
sp = sp - 4;
|
|
|
|
write_memory_unsigned_integer (sp, 4, byte_order, bp_addr);
|
|
|
|
|
|
|
|
/* Update the stack pointer. */
|
|
|
|
regcache_cooked_write_unsigned (regcache, RX_SP_REGNUM, sp);
|
|
|
|
|
|
|
|
return cfa;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implement the "return_value" gdbarch method. */
|
|
|
|
static enum return_value_convention
|
|
|
|
rx_return_value (struct gdbarch *gdbarch,
|
2012-05-16 22:35:09 +08:00
|
|
|
struct value *function,
|
2009-12-08 03:58:41 +08:00
|
|
|
struct type *valtype,
|
|
|
|
struct regcache *regcache,
|
|
|
|
gdb_byte *readbuf, const gdb_byte *writebuf)
|
|
|
|
{
|
|
|
|
enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
|
|
|
|
ULONGEST valtype_len = TYPE_LENGTH (valtype);
|
|
|
|
|
|
|
|
if (TYPE_LENGTH (valtype) > 16
|
|
|
|
|| ((TYPE_CODE (valtype) == TYPE_CODE_STRUCT
|
|
|
|
|| TYPE_CODE (valtype) == TYPE_CODE_UNION)
|
|
|
|
&& TYPE_LENGTH (valtype) % 4 != 0))
|
|
|
|
return RETURN_VALUE_STRUCT_CONVENTION;
|
|
|
|
|
|
|
|
if (readbuf)
|
|
|
|
{
|
|
|
|
ULONGEST u;
|
|
|
|
int argreg = RX_R1_REGNUM;
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
while (valtype_len > 0)
|
|
|
|
{
|
gdb: Use std::min and std::max throughout
Otherwise including <string> or some other C++ header is broken.
E.g.:
In file included from /opt/gcc/include/c++/7.0.0/bits/char_traits.h:39:0,
from /opt/gcc/include/c++/7.0.0/string:40,
from /home/pedro/gdb/mygit/cxx-convertion/src/gdb/infrun.c:68:
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:243:56: error: macro "min" passed 3 arguments, but takes just 2
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:265:56: error: macro "max" passed 3 arguments, but takes just 2
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
In file included from .../src/gdb/infrun.c:21:0:
To the best of my grepping abilities, I believe I adjusted all min/max
calls.
gdb/ChangeLog:
2016-09-16 Pedro Alves <palves@redhat.com>
* defs.h (min, max): Delete.
* aarch64-tdep.c: Include <algorithm> and use std::min and
std::max throughout.
* aarch64-tdep.c: Likewise.
* alpha-tdep.c: Likewise.
* amd64-tdep.c: Likewise.
* amd64-windows-tdep.c: Likewise.
* arm-tdep.c: Likewise.
* avr-tdep.c: Likewise.
* breakpoint.c: Likewise.
* btrace.c: Likewise.
* ctf.c: Likewise.
* disasm.c: Likewise.
* doublest.c: Likewise.
* dwarf2loc.c: Likewise.
* dwarf2read.c: Likewise.
* environ.c: Likewise.
* exec.c: Likewise.
* f-exp.y: Likewise.
* findcmd.c: Likewise.
* ft32-tdep.c: Likewise.
* gcore.c: Likewise.
* hppa-tdep.c: Likewise.
* i386-darwin-tdep.c: Likewise.
* i386-tdep.c: Likewise.
* linux-thread-db.c: Likewise.
* lm32-tdep.c: Likewise.
* m32r-tdep.c: Likewise.
* m88k-tdep.c: Likewise.
* memrange.c: Likewise.
* minidebug.c: Likewise.
* mips-tdep.c: Likewise.
* moxie-tdep.c: Likewise.
* nds32-tdep.c: Likewise.
* nios2-tdep.c: Likewise.
* nto-procfs.c: Likewise.
* parse.c: Likewise.
* ppc-sysv-tdep.c: Likewise.
* probe.c: Likewise.
* record-btrace.c: Likewise.
* remote.c: Likewise.
* rs6000-tdep.c: Likewise.
* rx-tdep.c: Likewise.
* s390-linux-nat.c: Likewise.
* s390-linux-tdep.c: Likewise.
* ser-tcp.c: Likewise.
* sh-tdep.c: Likewise.
* sh64-tdep.c: Likewise.
* source.c: Likewise.
* sparc-tdep.c: Likewise.
* symfile.c: Likewise.
* target-memory.c: Likewise.
* target.c: Likewise.
* tic6x-tdep.c: Likewise.
* tilegx-tdep.c: Likewise.
* tracefile-tfile.c: Likewise.
* tracepoint.c: Likewise.
* valprint.c: Likewise.
* value.c: Likewise.
* xtensa-tdep.c: Likewise.
* cli/cli-cmds.c: Likewise.
* compile/compile-object-load.c: Likewise.
2016-09-17 02:55:17 +08:00
|
|
|
int len = std::min (valtype_len, (ULONGEST) 4);
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
regcache_cooked_read_unsigned (regcache, argreg, &u);
|
|
|
|
store_unsigned_integer (readbuf + offset, len, byte_order, u);
|
|
|
|
valtype_len -= len;
|
|
|
|
offset += len;
|
|
|
|
argreg++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (writebuf)
|
|
|
|
{
|
|
|
|
ULONGEST u;
|
|
|
|
int argreg = RX_R1_REGNUM;
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
while (valtype_len > 0)
|
|
|
|
{
|
gdb: Use std::min and std::max throughout
Otherwise including <string> or some other C++ header is broken.
E.g.:
In file included from /opt/gcc/include/c++/7.0.0/bits/char_traits.h:39:0,
from /opt/gcc/include/c++/7.0.0/string:40,
from /home/pedro/gdb/mygit/cxx-convertion/src/gdb/infrun.c:68:
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:243:56: error: macro "min" passed 3 arguments, but takes just 2
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
/opt/gcc/include/c++/7.0.0/bits/stl_algobase.h:265:56: error: macro "max" passed 3 arguments, but takes just 2
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
In file included from .../src/gdb/infrun.c:21:0:
To the best of my grepping abilities, I believe I adjusted all min/max
calls.
gdb/ChangeLog:
2016-09-16 Pedro Alves <palves@redhat.com>
* defs.h (min, max): Delete.
* aarch64-tdep.c: Include <algorithm> and use std::min and
std::max throughout.
* aarch64-tdep.c: Likewise.
* alpha-tdep.c: Likewise.
* amd64-tdep.c: Likewise.
* amd64-windows-tdep.c: Likewise.
* arm-tdep.c: Likewise.
* avr-tdep.c: Likewise.
* breakpoint.c: Likewise.
* btrace.c: Likewise.
* ctf.c: Likewise.
* disasm.c: Likewise.
* doublest.c: Likewise.
* dwarf2loc.c: Likewise.
* dwarf2read.c: Likewise.
* environ.c: Likewise.
* exec.c: Likewise.
* f-exp.y: Likewise.
* findcmd.c: Likewise.
* ft32-tdep.c: Likewise.
* gcore.c: Likewise.
* hppa-tdep.c: Likewise.
* i386-darwin-tdep.c: Likewise.
* i386-tdep.c: Likewise.
* linux-thread-db.c: Likewise.
* lm32-tdep.c: Likewise.
* m32r-tdep.c: Likewise.
* m88k-tdep.c: Likewise.
* memrange.c: Likewise.
* minidebug.c: Likewise.
* mips-tdep.c: Likewise.
* moxie-tdep.c: Likewise.
* nds32-tdep.c: Likewise.
* nios2-tdep.c: Likewise.
* nto-procfs.c: Likewise.
* parse.c: Likewise.
* ppc-sysv-tdep.c: Likewise.
* probe.c: Likewise.
* record-btrace.c: Likewise.
* remote.c: Likewise.
* rs6000-tdep.c: Likewise.
* rx-tdep.c: Likewise.
* s390-linux-nat.c: Likewise.
* s390-linux-tdep.c: Likewise.
* ser-tcp.c: Likewise.
* sh-tdep.c: Likewise.
* sh64-tdep.c: Likewise.
* source.c: Likewise.
* sparc-tdep.c: Likewise.
* symfile.c: Likewise.
* target-memory.c: Likewise.
* target.c: Likewise.
* tic6x-tdep.c: Likewise.
* tilegx-tdep.c: Likewise.
* tracefile-tfile.c: Likewise.
* tracepoint.c: Likewise.
* valprint.c: Likewise.
* value.c: Likewise.
* xtensa-tdep.c: Likewise.
* cli/cli-cmds.c: Likewise.
* compile/compile-object-load.c: Likewise.
2016-09-17 02:55:17 +08:00
|
|
|
int len = std::min (valtype_len, (ULONGEST) 4);
|
2009-12-08 03:58:41 +08:00
|
|
|
|
|
|
|
u = extract_unsigned_integer (writebuf + offset, len, byte_order);
|
|
|
|
regcache_cooked_write_unsigned (regcache, argreg, u);
|
|
|
|
valtype_len -= len;
|
|
|
|
offset += len;
|
|
|
|
argreg++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return RETURN_VALUE_REGISTER_CONVENTION;
|
|
|
|
}
|
|
|
|
|
2016-11-03 22:35:14 +08:00
|
|
|
constexpr gdb_byte rx_break_insn[] = { 0x00 };
|
2016-11-03 22:35:13 +08:00
|
|
|
|
2016-11-03 22:35:14 +08:00
|
|
|
typedef BP_MANIPULATION (rx_break_insn) rx_breakpoint;
|
2009-12-08 03:58:41 +08:00
|
|
|
|
2015-06-29 23:08:12 +08:00
|
|
|
/* Implement the dwarf_reg_to_regnum" gdbarch method. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
rx_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
|
|
|
|
{
|
|
|
|
if (0 <= reg && reg <= 15)
|
|
|
|
return reg;
|
|
|
|
else if (reg == 16)
|
|
|
|
return RX_PSW_REGNUM;
|
|
|
|
else if (reg == 17)
|
|
|
|
return RX_PC_REGNUM;
|
|
|
|
else
|
2015-10-27 07:05:21 +08:00
|
|
|
return -1;
|
2015-06-29 23:08:12 +08:00
|
|
|
}
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
/* Allocate and initialize a gdbarch object. */
|
|
|
|
static struct gdbarch *
|
|
|
|
rx_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
|
|
|
{
|
|
|
|
struct gdbarch *gdbarch;
|
|
|
|
struct gdbarch_tdep *tdep;
|
|
|
|
int elf_flags;
|
|
|
|
|
|
|
|
/* Extract the elf_flags if available. */
|
|
|
|
if (info.abfd != NULL
|
|
|
|
&& bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
|
|
|
|
elf_flags = elf_elfheader (info.abfd)->e_flags;
|
|
|
|
else
|
|
|
|
elf_flags = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/* Try to find the architecture in the list of already defined
|
|
|
|
architectures. */
|
|
|
|
for (arches = gdbarch_list_lookup_by_info (arches, &info);
|
|
|
|
arches != NULL;
|
|
|
|
arches = gdbarch_list_lookup_by_info (arches->next, &info))
|
|
|
|
{
|
|
|
|
if (gdbarch_tdep (arches->gdbarch)->elf_flags != elf_flags)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return arches->gdbarch;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* None found, create a new architecture from the information
|
|
|
|
provided. */
|
Replace some xmalloc-family functions with XNEW-family ones
This patch is part of the make-gdb-buildable-in-C++ effort. The idea is
to change some calls to the xmalloc family of functions to calls to the
equivalents in the XNEW family. This avoids adding an explicit cast, so
it keeps the code a bit more readable. Some of them also map relatively
well to a C++ equivalent (XNEW (struct foo) -> new foo), so it will be
possible to do scripted replacements if needed.
I only changed calls that were obviously allocating memory for one or
multiple "objects". Allocation of variable sizes (such as strings or
buffer handling) will be for later (and won't use XNEW).
- xmalloc (sizeof (struct foo)) -> XNEW (struct foo)
- xmalloc (num * sizeof (struct foo)) -> XNEWVEC (struct foo, num)
- xcalloc (1, sizeof (struct foo)) -> XCNEW (struct foo)
- xcalloc (num, sizeof (struct foo)) -> XCNEWVEC (struct foo, num)
- xrealloc (p, num * sizeof (struct foo) -> XRESIZEVEC (struct foo, p, num)
- obstack_alloc (ob, sizeof (struct foo)) -> XOBNEW (ob, struct foo)
- obstack_alloc (ob, num * sizeof (struct foo)) -> XOBNEWVEC (ob, struct foo, num)
- alloca (sizeof (struct foo)) -> XALLOCA (struct foo)
- alloca (num * sizeof (struct foo)) -> XALLOCAVEC (struct foo, num)
Some instances of xmalloc followed by memset to zero the buffer were
replaced by XCNEW or XCNEWVEC.
I regtested on x86-64, Ubuntu 14.04, but the patch touches many
architecture-specific files. For those I'll have to rely on the
buildbot or people complaining that I broke their gdb.
gdb/ChangeLog:
* aarch64-linux-nat.c (aarch64_add_process): Likewise.
* aarch64-tdep.c (aarch64_gdbarch_init): Likewise.
* ada-exp.y (write_ambiguous_var): Likewise.
* ada-lang.c (resolve_subexp): Likewise.
(user_select_syms): Likewise.
(assign_aggregate): Likewise.
(ada_evaluate_subexp): Likewise.
(cache_symbol): Likewise.
* addrmap.c (allocate_key): Likewise.
(addrmap_create_mutable): Likewise.
* aix-thread.c (sync_threadlists): Likewise.
* alpha-tdep.c (alpha_push_dummy_call): Likewise.
(alpha_gdbarch_init): Likewise.
* amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
* arm-linux-nat.c (arm_linux_add_process): Likewise.
* arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Likewise.
* arm-tdep.c (push_stack_item): Likewise.
(arm_displaced_step_copy_insn): Likewise.
(arm_gdbarch_init): Likewise.
(_initialize_arm_tdep): Likewise.
* avr-tdep.c (push_stack_item): Likewise.
* ax-general.c (new_agent_expr): Likewise.
* block.c (block_initialize_namespace): Likewise.
* breakpoint.c (alloc_counted_command_line): Likewise.
(update_dprintf_command_list): Likewise.
(parse_breakpoint_sals): Likewise.
(decode_static_tracepoint_spec): Likewise.
(until_break_command): Likewise.
(clear_command): Likewise.
(update_global_location_list): Likewise.
(get_breakpoint_objfile_data) Likewise.
* btrace.c (ftrace_new_function): Likewise.
(btrace_set_insn_history): Likewise.
(btrace_set_call_history): Likewise.
* buildsym.c (add_symbol_to_list): Likewise.
(record_pending_block): Likewise.
(start_subfile): Likewise.
(start_buildsym_compunit): Likewise.
(push_subfile): Likewise.
(end_symtab_get_static_block): Likewise.
(buildsym_init): Likewise.
* cli/cli-cmds.c (source_command): Likewise.
* cli/cli-decode.c (add_cmd): Likewise.
* cli/cli-script.c (build_command_line): Likewise.
(setup_user_args): Likewise.
(realloc_body_list): Likewise.
(process_next_line): Likewise.
(copy_command_lines): Likewise.
* cli/cli-setshow.c (do_set_command): Likewise.
* coff-pe-read.c (read_pe_exported_syms): Likewise.
* coffread.c (coff_locate_sections): Likewise.
(coff_symtab_read): Likewise.
(coff_read_struct_type): Likewise.
* common/cleanups.c (make_my_cleanup2): Likewise.
* common/common-exceptions.c (throw_it): Likewise.
* common/filestuff.c (make_cleanup_close): Likewise.
* common/format.c (parse_format_string): Likewise.
* common/queue.h (DEFINE_QUEUE_P): Likewise.
* compile/compile-object-load.c (munmap_list_add): Likewise.
(compile_object_load): Likewise.
* compile/compile-object-run.c (compile_object_run): Likewise.
* compile/compile.c (append_args): Likewise.
* corefile.c (specify_exec_file_hook): Likewise.
* cp-support.c (make_symbol_overload_list): Likewise.
* cris-tdep.c (push_stack_item): Likewise.
(cris_gdbarch_init): Likewise.
* ctf.c (ctf_trace_file_writer_new): Likewise.
* dbxread.c (init_header_files): Likewise.
(add_new_header_file): Likewise.
(init_bincl_list): Likewise.
(dbx_end_psymtab): Likewise.
(start_psymtab): Likewise.
(dbx_end_psymtab): Likewise.
* dcache.c (dcache_init): Likewise.
* dictionary.c (dict_create_hashed): Likewise.
(dict_create_hashed_expandable): Likewise.
(dict_create_linear): Likewise.
(dict_create_linear_expandable): Likewise.
* dtrace-probe.c (dtrace_process_dof_probe): Likewise.
* dummy-frame.c (register_dummy_frame_dtor): Likewise.
* dwarf2-frame-tailcall.c (cache_new_ref1): Likewise.
* dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
(decode_frame_entry_1): Likewise.
* dwarf2expr.c (new_dwarf_expr_context): Likewise.
* dwarf2loc.c (dwarf2_compile_expr_to_ax): Likewise.
* dwarf2read.c (dwarf2_has_info): Likewise.
(create_signatured_type_table_from_index): Likewise.
(dwarf2_read_index): Likewise.
(dw2_get_file_names_reader): Likewise.
(create_all_type_units): Likewise.
(read_cutu_die_from_dwo): Likewise.
(init_tu_and_read_dwo_dies): Likewise.
(init_cutu_and_read_dies): Likewise.
(create_all_comp_units): Likewise.
(queue_comp_unit): Likewise.
(inherit_abstract_dies): Likewise.
(read_call_site_scope): Likewise.
(dwarf2_add_field): Likewise.
(dwarf2_add_typedef): Likewise.
(dwarf2_add_member_fn): Likewise.
(attr_to_dynamic_prop): Likewise.
(abbrev_table_alloc_abbrev): Likewise.
(abbrev_table_read_table): Likewise.
(add_include_dir): Likewise.
(add_file_name): Likewise.
(dwarf_decode_line_header): Likewise.
(dwarf2_const_value_attr): Likewise.
(dwarf_alloc_block): Likewise.
(parse_macro_definition): Likewise.
(set_die_type): Likewise.
(write_psymtabs_to_index): Likewise.
(create_cus_from_index): Likewise.
(dwarf2_create_include_psymtab): Likewise.
(process_psymtab_comp_unit_reader): Likewise.
(build_type_psymtab_dependencies): Likewise.
(read_comp_units_from_section): Likewise.
(compute_compunit_symtab_includes): Likewise.
(create_dwo_unit_in_dwp_v1): Likewise.
(create_dwo_unit_in_dwp_v2): Likewise.
(read_func_scope): Likewise.
(process_structure_scope): Likewise.
(mark_common_block_symbol_computed): Likewise.
(load_partial_dies): Likewise.
(dwarf2_symbol_mark_computed): Likewise.
* elfread.c (elf_symfile_segments): Likewise.
(elf_read_minimal_symbols): Likewise.
* environ.c (make_environ): Likewise.
* eval.c (evaluate_subexp_standard): Likewise.
* event-loop.c (create_file_handler): Likewise.
(create_async_signal_handler): Likewise.
(create_async_event_handler): Likewise.
(create_timer): Likewise.
* exec.c (build_section_table): Likewise.
* fbsd-nat.c (fbsd_remember_child): Likewise.
* fork-child.c (fork_inferior): Likewise.
* frv-tdep.c (new_variant): Likewise.
* gdbarch.sh (gdbarch_alloc): Likewise.
(append_name): Likewise.
* gdbtypes.c (rank_function): Likewise.
(copy_type_recursive): Likewise.
(add_dyn_prop): Likewise.
* gnu-nat.c (make_proc): Likewise.
(make_inf): Likewise.
(gnu_write_inferior): Likewise.
* gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
(build_std_type_info_type): Likewise.
* guile/scm-param.c (compute_enum_list): Likewise.
* guile/scm-utils.c (gdbscm_parse_function_args): Likewise.
* guile/scm-value.c (gdbscm_value_call): Likewise.
* h8300-tdep.c (h8300_gdbarch_init): Likewise.
* hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
(read_unwind_info): Likewise.
* ia64-tdep.c (ia64_gdbarch_init): Likewise.
* infcall.c (dummy_frame_context_saver_setup): Likewise.
(call_function_by_hand_dummy): Likewise.
* infcmd.c (step_once): Likewise.
(finish_forward): Likewise.
(attach_command): Likewise.
(notice_new_inferior): Likewise.
* inferior.c (add_inferior_silent): Likewise.
* infrun.c (add_displaced_stepping_state): Likewise.
(save_infcall_control_state): Likewise.
(save_inferior_ptid): Likewise.
(_initialize_infrun): Likewise.
* jit.c (bfd_open_from_target_memory): Likewise.
(jit_gdbarch_data_init): Likewise.
* language.c (add_language): Likewise.
* linespec.c (decode_line_2): Likewise.
* linux-nat.c (add_to_pid_list): Likewise.
(add_initial_lwp): Likewise.
* linux-thread-db.c (add_thread_db_info): Likewise.
(record_thread): Likewise.
(info_auto_load_libthread_db): Likewise.
* m32c-tdep.c (m32c_gdbarch_init): Likewise.
* m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
* m68k-tdep.c (m68k_gdbarch_init): Likewise.
* m88k-tdep.c (m88k_analyze_prologue): Likewise.
* macrocmd.c (macro_define_command): Likewise.
* macroexp.c (gather_arguments): Likewise.
* macroscope.c (sal_macro_scope): Likewise.
* macrotab.c (new_macro_table): Likewise.
* mdebugread.c (push_parse_stack): Likewise.
(parse_partial_symbols): Likewise.
(parse_symbol): Likewise.
(psymtab_to_symtab_1): Likewise.
(new_block): Likewise.
(new_psymtab): Likewise.
(mdebug_build_psymtabs): Likewise.
(add_pending): Likewise.
(elfmdebug_build_psymtabs): Likewise.
* mep-tdep.c (mep_gdbarch_init): Likewise.
* mi/mi-main.c (mi_execute_command): Likewise.
* mi/mi-parse.c (mi_parse_argv): Likewise.
* minidebug.c (lzma_open): Likewise.
* minsyms.c (terminate_minimal_symbol_table): Likewise.
* mips-linux-nat.c (mips_linux_insert_watchpoint): Likewise.
* mips-tdep.c (mips_gdbarch_init): Likewise.
* mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
* msp430-tdep.c (msp430_gdbarch_init): Likewise.
* mt-tdep.c (mt_registers_info): Likewise.
* nat/aarch64-linux.c (aarch64_linux_new_thread): Likewise.
* nat/linux-btrace.c (linux_enable_bts): Likewise.
(linux_enable_pt): Likewise.
* nat/linux-osdata.c (linux_xfer_osdata_processes): Likewise.
(linux_xfer_osdata_processgroups): Likewise.
* nios2-tdep.c (nios2_gdbarch_init): Likewise.
* nto-procfs.c (procfs_meminfo): Likewise.
* objc-lang.c (start_msglist): Likewise.
(selectors_info): Likewise.
(classes_info): Likewise.
(find_methods): Likewise.
* objfiles.c (allocate_objfile): Likewise.
(update_section_map): Likewise.
* osabi.c (gdbarch_register_osabi): Likewise.
(gdbarch_register_osabi_sniffer): Likewise.
* parse.c (start_arglist): Likewise.
* ppc-linux-nat.c (hwdebug_find_thread_points_by_tid): Likewise.
(hwdebug_insert_point): Likewise.
* printcmd.c (display_command): Likewise.
(ui_printf): Likewise.
* procfs.c (create_procinfo): Likewise.
(load_syscalls): Likewise.
(proc_get_LDT_entry): Likewise.
(proc_update_threads): Likewise.
* prologue-value.c (make_pv_area): Likewise.
(pv_area_store): Likewise.
* psymtab.c (extend_psymbol_list): Likewise.
(init_psymbol_list): Likewise.
(allocate_psymtab): Likewise.
* python/py-inferior.c (add_thread_object): Likewise.
* python/py-param.c (compute_enum_values): Likewise.
* python/py-value.c (valpy_call): Likewise.
* python/py-varobj.c (py_varobj_iter_next): Likewise.
* python/python.c (ensure_python_env): Likewise.
* record-btrace.c (record_btrace_start_replaying): Likewise.
* record-full.c (record_full_reg_alloc): Likewise.
(record_full_mem_alloc): Likewise.
(record_full_end_alloc): Likewise.
(record_full_core_xfer_partial): Likewise.
* regcache.c (get_thread_arch_aspace_regcache): Likewise.
* remote-fileio.c (remote_fileio_init_fd_map): Likewise.
* remote-notif.c (remote_notif_state_allocate): Likewise.
* remote.c (demand_private_info): Likewise.
(remote_notif_stop_alloc_reply): Likewise.
(remote_enable_btrace): Likewise.
* reverse.c (save_bookmark_command): Likewise.
* rl78-tdep.c (rl78_gdbarch_init): Likewise.
* rx-tdep.c (rx_gdbarch_init): Likewise.
* s390-linux-nat.c (s390_insert_watchpoint): Likewise.
* ser-go32.c (dos_get_tty_state): Likewise.
(dos_copy_tty_state): Likewise.
* ser-mingw.c (ser_windows_open): Likewise.
(ser_console_wait_handle): Likewise.
(ser_console_get_tty_state): Likewise.
(make_pipe_state): Likewise.
(net_windows_open): Likewise.
* ser-unix.c (hardwire_get_tty_state): Likewise.
(hardwire_copy_tty_state): Likewise.
* solib-aix.c (solib_aix_new_lm_info): Likewise.
* solib-dsbt.c (dsbt_current_sos): Likewise.
(dsbt_relocate_main_executable): Likewise.
* solib-frv.c (frv_current_sos): Likewise.
(frv_relocate_main_executable): Likewise.
* solib-spu.c (spu_bfd_fopen): Likewise.
* solib-svr4.c (lm_info_read): Likewise.
(svr4_copy_library_list): Likewise.
(svr4_default_sos): Likewise.
* source.c (find_source_lines): Likewise.
(line_info): Likewise.
(add_substitute_path_rule): Likewise.
* spu-linux-nat.c (spu_bfd_open): Likewise.
* spu-tdep.c (info_spu_dma_cmdlist): Likewise.
* stabsread.c (dbx_lookup_type): Likewise.
(read_type): Likewise.
(read_member_functions): Likewise.
(read_struct_fields): Likewise.
(read_baseclasses): Likewise.
(read_args): Likewise.
(_initialize_stabsread): Likewise.
* stack.c (func_command): Likewise.
* stap-probe.c (handle_stap_probe): Likewise.
* symfile.c (addrs_section_sort): Likewise.
(addr_info_make_relative): Likewise.
(load_section_callback): Likewise.
(add_symbol_file_command): Likewise.
(init_filename_language_table): Likewise.
* symtab.c (create_filename_seen_cache): Likewise.
(sort_search_symbols_remove_dups): Likewise.
(search_symbols): Likewise.
* target.c (make_cleanup_restore_target_terminal): Likewise.
* thread.c (new_thread): Likewise.
(enable_thread_stack_temporaries): Likewise.
(make_cleanup_restore_current_thread): Likewise.
(thread_apply_all_command): Likewise.
* tic6x-tdep.c (tic6x_gdbarch_init): Likewise.
* top.c (gdb_readline_wrapper): Likewise.
* tracefile-tfile.c (tfile_trace_file_writer_new): Likewise.
* tracepoint.c (trace_find_line_command): Likewise.
(all_tracepoint_actions_and_cleanup): Likewise.
(make_cleanup_restore_current_traceframe): Likewise.
(get_uploaded_tp): Likewise.
(get_uploaded_tsv): Likewise.
* tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
(tui_alloc_win_info): Likewise.
(tui_alloc_content): Likewise.
(tui_add_content_elements): Likewise.
* tui/tui-disasm.c (tui_find_disassembly_address): Likewise.
(tui_set_disassem_content): Likewise.
* ui-file.c (ui_file_new): Likewise.
(stdio_file_new): Likewise.
(tee_file_new): Likewise.
* utils.c (make_cleanup_restore_integer): Likewise.
(add_internal_problem_command): Likewise.
* v850-tdep.c (v850_gdbarch_init): Likewise.
* valops.c (find_oload_champ): Likewise.
* value.c (allocate_value_lazy): Likewise.
(record_latest_value): Likewise.
(create_internalvar): Likewise.
* varobj.c (install_variable): Likewise.
(new_variable): Likewise.
(new_root_variable): Likewise.
(cppush): Likewise.
(_initialize_varobj): Likewise.
* windows-nat.c (windows_make_so): Likewise.
* x86-nat.c (x86_add_process): Likewise.
* xcoffread.c (arrange_linetable): Likewise.
(allocate_include_entry): Likewise.
(process_linenos): Likewise.
(SYMBOL_DUP): Likewise.
(xcoff_start_psymtab): Likewise.
(xcoff_end_psymtab): Likewise.
* xml-support.c (gdb_xml_parse_attr_ulongest): Likewise.
* xtensa-tdep.c (xtensa_register_type): Likewise.
* gdbarch.c: Regenerate.
* gdbarch.h: Regenerate.
gdb/gdbserver/ChangeLog:
* ax.c (gdb_parse_agent_expr): Likewise.
(compile_bytecodes): Likewise.
* dll.c (loaded_dll): Likewise.
* event-loop.c (append_callback_event): Likewise.
(create_file_handler): Likewise.
(create_file_event): Likewise.
* hostio.c (handle_open): Likewise.
* inferiors.c (add_thread): Likewise.
(add_process): Likewise.
* linux-aarch64-low.c (aarch64_linux_new_process): Likewise.
* linux-arm-low.c (arm_new_process): Likewise.
(arm_new_thread): Likewise.
* linux-low.c (add_to_pid_list): Likewise.
(linux_add_process): Likewise.
(handle_extended_wait): Likewise.
(add_lwp): Likewise.
(enqueue_one_deferred_signal): Likewise.
(enqueue_pending_signal): Likewise.
(linux_resume_one_lwp_throw): Likewise.
(linux_resume_one_thread): Likewise.
(linux_read_memory): Likewise.
(linux_write_memory): Likewise.
* linux-mips-low.c (mips_linux_new_process): Likewise.
(mips_linux_new_thread): Likewise.
(mips_add_watchpoint): Likewise.
* linux-x86-low.c (initialize_low_arch): Likewise.
* lynx-low.c (lynx_add_process): Likewise.
* mem-break.c (set_raw_breakpoint_at): Likewise.
(set_breakpoint): Likewise.
(add_condition_to_breakpoint): Likewise.
(add_commands_to_breakpoint): Likewise.
(clone_agent_expr): Likewise.
(clone_one_breakpoint): Likewise.
* regcache.c (new_register_cache): Likewise.
* remote-utils.c (look_up_one_symbol): Likewise.
* server.c (queue_stop_reply): Likewise.
(start_inferior): Likewise.
(queue_stop_reply_callback): Likewise.
(handle_target_event): Likewise.
* spu-low.c (fetch_ppc_memory): Likewise.
(store_ppc_memory): Likewise.
* target.c (set_target_ops): Likewise.
* thread-db.c (thread_db_load_search): Likewise.
(try_thread_db_load_1): Likewise.
* tracepoint.c (add_tracepoint): Likewise.
(add_tracepoint_action): Likewise.
(create_trace_state_variable): Likewise.
(cmd_qtdpsrc): Likewise.
(cmd_qtro): Likewise.
(add_while_stepping_state): Likewise.
* win32-low.c (child_add_thread): Likewise.
(get_image_name): Likewise.
2015-08-27 05:16:07 +08:00
|
|
|
tdep = XNEW (struct gdbarch_tdep);
|
2009-12-08 03:58:41 +08:00
|
|
|
gdbarch = gdbarch_alloc (&info, tdep);
|
|
|
|
tdep->elf_flags = elf_flags;
|
|
|
|
|
|
|
|
set_gdbarch_num_regs (gdbarch, RX_NUM_REGS);
|
|
|
|
set_gdbarch_num_pseudo_regs (gdbarch, 0);
|
|
|
|
set_gdbarch_register_name (gdbarch, rx_register_name);
|
|
|
|
set_gdbarch_register_type (gdbarch, rx_register_type);
|
|
|
|
set_gdbarch_pc_regnum (gdbarch, RX_PC_REGNUM);
|
|
|
|
set_gdbarch_sp_regnum (gdbarch, RX_SP_REGNUM);
|
|
|
|
set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
|
|
|
|
set_gdbarch_decr_pc_after_break (gdbarch, 1);
|
2016-11-03 22:35:14 +08:00
|
|
|
set_gdbarch_breakpoint_kind_from_pc (gdbarch, rx_breakpoint::kind_from_pc);
|
|
|
|
set_gdbarch_sw_breakpoint_from_kind (gdbarch, rx_breakpoint::bp_from_kind);
|
2009-12-08 03:58:41 +08:00
|
|
|
set_gdbarch_skip_prologue (gdbarch, rx_skip_prologue);
|
|
|
|
|
|
|
|
set_gdbarch_print_insn (gdbarch, print_insn_rx);
|
|
|
|
|
|
|
|
set_gdbarch_unwind_pc (gdbarch, rx_unwind_pc);
|
|
|
|
set_gdbarch_unwind_sp (gdbarch, rx_unwind_sp);
|
|
|
|
|
|
|
|
/* Target builtin data types. */
|
|
|
|
set_gdbarch_char_signed (gdbarch, 0);
|
|
|
|
set_gdbarch_short_bit (gdbarch, 16);
|
|
|
|
set_gdbarch_int_bit (gdbarch, 32);
|
|
|
|
set_gdbarch_long_bit (gdbarch, 32);
|
|
|
|
set_gdbarch_long_long_bit (gdbarch, 64);
|
|
|
|
set_gdbarch_ptr_bit (gdbarch, 32);
|
|
|
|
set_gdbarch_float_bit (gdbarch, 32);
|
|
|
|
set_gdbarch_float_format (gdbarch, floatformats_ieee_single);
|
|
|
|
if (elf_flags & E_FLAG_RX_64BIT_DOUBLES)
|
|
|
|
{
|
|
|
|
set_gdbarch_double_bit (gdbarch, 64);
|
|
|
|
set_gdbarch_long_double_bit (gdbarch, 64);
|
|
|
|
set_gdbarch_double_format (gdbarch, floatformats_ieee_double);
|
|
|
|
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_double);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_gdbarch_double_bit (gdbarch, 32);
|
|
|
|
set_gdbarch_long_double_bit (gdbarch, 32);
|
|
|
|
set_gdbarch_double_format (gdbarch, floatformats_ieee_single);
|
|
|
|
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_single);
|
|
|
|
}
|
|
|
|
|
2015-06-29 23:08:12 +08:00
|
|
|
/* DWARF register mapping. */
|
|
|
|
set_gdbarch_dwarf2_reg_to_regnum (gdbarch, rx_dwarf_reg_to_regnum);
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
/* Frame unwinding. */
|
2015-07-03 07:46:31 +08:00
|
|
|
frame_unwind_append_unwinder (gdbarch, &rx_exception_unwind);
|
2009-12-08 03:58:41 +08:00
|
|
|
dwarf2_append_unwinders (gdbarch);
|
|
|
|
frame_unwind_append_unwinder (gdbarch, &rx_frame_unwind);
|
|
|
|
|
|
|
|
/* Methods for saving / extracting a dummy frame's ID.
|
|
|
|
The ID's stack address must match the SP value returned by
|
|
|
|
PUSH_DUMMY_CALL, and saved by generic_save_dummy_frame_tos. */
|
|
|
|
set_gdbarch_dummy_id (gdbarch, rx_dummy_id);
|
|
|
|
set_gdbarch_push_dummy_call (gdbarch, rx_push_dummy_call);
|
|
|
|
set_gdbarch_return_value (gdbarch, rx_return_value);
|
|
|
|
|
|
|
|
/* Virtual tables. */
|
|
|
|
set_gdbarch_vbit_in_delta (gdbarch, 1);
|
|
|
|
|
|
|
|
return gdbarch;
|
|
|
|
}
|
|
|
|
|
2012-03-02 08:06:13 +08:00
|
|
|
/* -Wmissing-prototypes */
|
|
|
|
extern initialize_file_ftype _initialize_rx_tdep;
|
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
/* Register the above initialization routine. */
|
2012-03-02 08:06:13 +08:00
|
|
|
|
2009-12-08 03:58:41 +08:00
|
|
|
void
|
|
|
|
_initialize_rx_tdep (void)
|
|
|
|
{
|
|
|
|
register_gdbarch_init (bfd_arch_rx, rx_gdbarch_init);
|
|
|
|
}
|