[Lldb-commits] [lldb] r124010 - /lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp
Johnny Chen
johnny.chen at apple.com
Fri Jan 21 16:59:07 PST 2011
Author: johnny
Date: Fri Jan 21 18:59:07 2011
New Revision: 124010
URL: http://llvm.org/viewvc/llvm-project?rev=124010&view=rev
Log:
Add more descriptions to the g_arm_opcodes table entries.
Modified:
lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp
Modified: lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp?rev=124010&r1=124009&r2=124010&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp Fri Jan 21 18:59:07 2011
@@ -89,8 +89,8 @@
uint32_t value;
uint32_t variants;
ARMEncoding encoding;
- const char *name;
EmulateCallback callback;
+ const char *name;
};
static bool
@@ -191,8 +191,10 @@
static ARMOpcode g_arm_opcodes[] =
{
- { 0x0fff0000, 0x092d0000, ARMvAll, eEncodingA1, "PUSH<c> <registers>", EmulateARMPushEncoding },
- { 0x0fff0fff, 0x052d0004, ARMvAll, eEncodingA2, "PUSH<c> <registers>", EmulateARMPushEncoding }
+ { 0x0fff0000, 0x092d0000, ARMvAll, eEncodingA1, EmulateARMPushEncoding,
+ "PUSH<c> <registers> ; <registers> contains more than one register" },
+ { 0x0fff0fff, 0x052d0004, ARMvAll, eEncodingA2, EmulateARMPushEncoding,
+ "PUSH<c> <registers> ; <registers> contains one register, <Rt>" }
};
static const size_t k_num_arm_opcodes = sizeof(g_arm_opcodes)/sizeof(ARMOpcode);
More information about the lldb-commits
mailing list