diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-07-04 20:46:20 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-07-04 20:46:20 +0000 |
commit | 23e2d720d191b57feecfbfb80e036a6725189c20 (patch) | |
tree | d1e0e97915138ceab5ad2edec86bbae60a1a6daa /gdb/i386-tdep.h | |
parent | f9cf0f4ab2722b9e0ebd98f66d3072facc006b3f (diff) | |
download | gdb-23e2d720d191b57feecfbfb80e036a6725189c20.zip gdb-23e2d720d191b57feecfbfb80e036a6725189c20.tar.gz gdb-23e2d720d191b57feecfbfb80e036a6725189c20.tar.bz2 |
Add sp_regnum_from_eax/pc_regnum_from_eax to i386 gdbarch_tdep
* amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
* i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
and pc_regnum_from_eax to -1. Update SP regnum from
sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
needed.
* i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
pc_regnum_from_eax.
Diffstat (limited to 'gdb/i386-tdep.h')
-rw-r--r-- | gdb/i386-tdep.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/i386-tdep.h b/gdb/i386-tdep.h index 5f233f5..76afdce 100644 --- a/gdb/i386-tdep.h +++ b/gdb/i386-tdep.h @@ -149,6 +149,14 @@ struct gdbarch_tdep of pseudo dword register support. */ int eax_regnum; + /* Register number for SP, relative to %eax. Set this to -1 to + indicate the absence of pseudo SP register support. */ + int sp_regnum_from_eax; + + /* Register number for PC, relative to %eax. Set this to -1 to + indicate the absence of pseudo PC register support. */ + int pc_regnum_from_eax; + /* Number of core registers. */ int num_core_regs; |