diff options
author | Jason Molenda <jmolenda@apple.com> | 2015-09-15 23:49:57 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2015-09-15 23:49:57 +0000 |
commit | 9878e3b4b5a1a6263147fbf97d50cac814d525fb (patch) | |
tree | 566ca4ae74764777c315ce91dccc91eff0872c22 /lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp | |
parent | 4f11349028c331799498cd7aaa70585b33fc031c (diff) | |
download | bcm5719-llvm-9878e3b4b5a1a6263147fbf97d50cac814d525fb.tar.gz bcm5719-llvm-9878e3b4b5a1a6263147fbf97d50cac814d525fb.zip |
A partner to the cleanup in r247741, change the variables names in
debugserver to match. "gcc" is now "ehframe" and "gdb" is now
"debugserver". Because this is debugserver, what we call the Process
Plugin register numbers up in lldb are the debugserver register
numbers down here - they are the register numbers that debugserver
will use to refer to these registers over the gdb-remote protocol.
debugserver was already reporting the registers with the key
"ehframe"; this change is just cleaning up the internal variable
names to match.
llvm-svn: 247751
Diffstat (limited to 'lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp')
-rw-r--r-- | lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp b/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp index b19a5b94b27..2eac47b045c 100644 --- a/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp +++ b/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp @@ -20,7 +20,7 @@ #include "DNBLog.h" #include "DNBRegisterInfo.h" #include "DNB.h" -#include "ARM_GCC_Registers.h" +#include "ARM_ehframe_Registers.h" #include "ARM_DWARF_Registers.h" #include <inttypes.h> @@ -1523,8 +1523,8 @@ enum // register offset, encoding, format and native register. This ensures that // the register state structures are defined correctly and have the correct // sizes and offsets. -#define DEFINE_GPR_IDX(idx, reg, alt, gen) { e_regSetGPR, gpr_##reg, #reg, alt, Uint, Hex, 4, GPR_OFFSET_IDX(idx), gcc_##reg, dwarf_##reg, gen, INVALID_NUB_REGNUM, NULL, NULL} -#define DEFINE_GPR_NAME(reg, alt, gen, inval) { e_regSetGPR, gpr_##reg, #reg, alt, Uint, Hex, 4, GPR_OFFSET_NAME(reg), gcc_##reg, dwarf_##reg, gen, INVALID_NUB_REGNUM, NULL, inval} +#define DEFINE_GPR_IDX(idx, reg, alt, gen) { e_regSetGPR, gpr_##reg, #reg, alt, Uint, Hex, 4, GPR_OFFSET_IDX(idx), ehframe_##reg, dwarf_##reg, gen, INVALID_NUB_REGNUM, NULL, NULL} +#define DEFINE_GPR_NAME(reg, alt, gen, inval) { e_regSetGPR, gpr_##reg, #reg, alt, Uint, Hex, 4, GPR_OFFSET_NAME(reg), ehframe_##reg, dwarf_##reg, gen, INVALID_NUB_REGNUM, NULL, inval} // In case we are debugging to a debug target that the ability to // change into the protected modes with folded registers (ABT, IRQ, |