[Lldb-commits] [lldb] r124259 - in /lldb/trunk: lldb.xcodeproj/project.pbxproj source/Plugins/Process/Utility/ARMUtils.h source/Plugins/Process/Utility/EmulateInstruction.h source/Plugins/Process/Utility/EmulateInstructionARM.cpp source/Plugins/Process/Utility/InstructionUtils.h
Johnny Chen
johnny.chen at apple.com
Tue Jan 25 17:00:55 PST 2011
Author: johnny
Date: Tue Jan 25 19:00:55 2011
New Revision: 124259
URL: http://llvm.org/viewvc/llvm-project?rev=124259&view=rev
Log:
Move the generic instruction bits manipulation routines into a newly created file
named InstructionUtils.h and modify some existing code to use them.
Added:
lldb/trunk/source/Plugins/Process/Utility/InstructionUtils.h
Modified:
lldb/trunk/lldb.xcodeproj/project.pbxproj
lldb/trunk/source/Plugins/Process/Utility/ARMUtils.h
lldb/trunk/source/Plugins/Process/Utility/EmulateInstruction.h
lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp
Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lldb.xcodeproj/project.pbxproj?rev=124259&r1=124258&r2=124259&view=diff
==============================================================================
--- lldb/trunk/lldb.xcodeproj/project.pbxproj (original)
+++ lldb/trunk/lldb.xcodeproj/project.pbxproj Tue Jan 25 19:00:55 2011
@@ -385,6 +385,7 @@
AF94005911C03F6500085DB9 /* SymbolVendor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF94005711C03F6500085DB9 /* SymbolVendor.cpp */; };
B23DD25012EDFAC1000C3894 /* ARMUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B23DD24F12EDFAC1000C3894 /* ARMUtils.h */; };
B296983712C2FB98002D92C3 /* CommandObjectVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B296983412C2FB2B002D92C3 /* CommandObjectVersion.cpp */; };
+ B2D3033712EFA5C500F84EB3 /* InstructionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D3033612EFA5C500F84EB3 /* InstructionUtils.h */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -1098,6 +1099,7 @@
B23DD24F12EDFAC1000C3894 /* ARMUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ARMUtils.h; path = Utility/ARMUtils.h; sourceTree = "<group>"; };
B296983412C2FB2B002D92C3 /* CommandObjectVersion.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CommandObjectVersion.cpp; path = source/Commands/CommandObjectVersion.cpp; sourceTree = "<group>"; };
B296983512C2FB2B002D92C3 /* CommandObjectVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommandObjectVersion.h; path = source/Commands/CommandObjectVersion.h; sourceTree = "<group>"; };
+ B2D3033612EFA5C500F84EB3 /* InstructionUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InstructionUtils.h; path = Utility/InstructionUtils.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -1611,6 +1613,7 @@
26B4666E11A2080F00CF6220 /* Utility */ = {
isa = PBXGroup;
children = (
+ B2D3033612EFA5C500F84EB3 /* InstructionUtils.h */,
B23DD24F12EDFAC1000C3894 /* ARMUtils.h */,
2621C9CC12EA009300711A30 /* EmulateInstruction.h */,
2621CA0A12EA107700711A30 /* EmulateInstruction.cpp */,
@@ -2317,6 +2320,7 @@
2621C9CE12EA009300711A30 /* EmulateInstruction.h in Headers */,
2621C9D012EA066500711A30 /* EmulateInstructionARM.h in Headers */,
B23DD25012EDFAC1000C3894 /* ARMUtils.h in Headers */,
+ B2D3033712EFA5C500F84EB3 /* InstructionUtils.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Modified: lldb/trunk/source/Plugins/Process/Utility/ARMUtils.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/ARMUtils.h?rev=124259&r1=124258&r2=124259&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/ARMUtils.h (original)
+++ lldb/trunk/source/Plugins/Process/Utility/ARMUtils.h Tue Jan 25 19:00:55 2011
@@ -10,6 +10,8 @@
#ifndef lldb_ARMUtils_h_
#define lldb_ARMUtils_h_
+#include "InstructionUtils.h"
+
// Common utilities for the ARM/Thumb Instruction Set Architecture.
namespace lldb_private {
@@ -52,8 +54,7 @@
static inline uint32_t bits(const uint32_t val, const uint32_t msbit, const uint32_t lsbit)
{
- assert(msbit < 32 && lsbit <= msbit);
- return (val >> lsbit) & ((1u << (msbit - lsbit + 1)) - 1);
+ return Bits32(val, msbit, lsbit);
}
static inline uint32_t bit(const uint32_t val, const uint32_t msbit)
@@ -131,18 +132,6 @@
// not permitted for many Thumb register specifiers.
static inline bool BadReg(uint32_t n) { return n == 13 || n == 15; }
-// Returns an integer result equal to the number of bits of x that are ones.
-static inline uint32_t BitCount(uint32_t x)
-{
- // c accumulates the total bits set in x
- uint32_t c;
- for (c = 0; x; ++c)
- {
- x &= x - 1; // clear the least significant bit set
- }
- return c;
-}
-
} // namespace lldb_private
#endif // lldb_ARMUtils_h_
Modified: lldb/trunk/source/Plugins/Process/Utility/EmulateInstruction.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/EmulateInstruction.h?rev=124259&r1=124258&r2=124259&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/EmulateInstruction.h (original)
+++ lldb/trunk/source/Plugins/Process/Utility/EmulateInstruction.h Tue Jan 25 19:00:55 2011
@@ -104,45 +104,6 @@
virtual bool
EvaluateInstruction () = 0;
- // Create a mask that starts at bit zero and includes "bit"
- static uint64_t
- MaskUpToBit (const uint64_t bit)
- {
- return (1ull << (bit + 1ull)) - 1ull;
- }
-
- static bool
- BitIsSet (const uint64_t value, const uint64_t bit)
- {
- return (value & (1ull << bit)) != 0;
- }
-
- static bool
- BitIsClear (const uint64_t value, const uint64_t bit)
- {
- return (value & (1ull << bit)) == 0;
- }
-
- static int64_t
- SignedBits (const uint64_t value, const uint64_t msbit, const uint64_t lsbit)
- {
- uint64_t result = UnsignedBits (value, msbit, lsbit);
- if (BitIsSet(value, msbit))
- {
- // Sign extend
- result |= ~MaskUpToBit (msbit - lsbit);
- }
- return result;
- }
-
- static uint64_t
- UnsignedBits (const uint64_t value, const uint64_t msbit, const uint64_t lsbit)
- {
- uint64_t result = value >> lsbit;
- result &= MaskUpToBit (msbit - lsbit);
- return result;
- }
-
uint64_t
ReadRegisterUnsigned (uint32_t reg_kind,
uint32_t reg_num,
@@ -168,19 +129,6 @@
uint64_t uval,
size_t uval_byte_size);
- static uint32_t
- BitCount (uint64_t value)
- {
- uint32_t set_bit_count = 0;
- while (value)
- {
- if (value & 1)
- ++set_bit_count;
- value >>= 1;
- }
- return set_bit_count;
- }
-
uint32_t
GetAddressByteSize () const
{
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=124259&r1=124258&r2=124259&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp Tue Jan 25 19:00:55 2011
@@ -111,9 +111,9 @@
uint32_t Rt; // the source register
switch (encoding) {
case eEncodingT1:
- registers = EmulateInstruction::UnsignedBits (opcode, 7, 0);
+ registers = Bits32(opcode, 7, 0);
// The M bit represents LR.
- if (EmulateInstruction::UnsignedBits (opcode, 8, 8))
+ if (Bits32(opcode, 8, 8))
registers |= 0x000eu;
// if BitCount(registers) < 1 then UNPREDICTABLE;
if (BitCount(registers) < 1)
@@ -121,26 +121,26 @@
break;
case eEncodingT2:
// Ignore bits 15 & 13.
- registers = EmulateInstruction::UnsignedBits (opcode, 15, 0) & ~0xa000;
+ registers = Bits32(opcode, 15, 0) & ~0xa000;
// if BitCount(registers) < 2 then UNPREDICTABLE;
if (BitCount(registers) < 2)
return false;
break;
case eEncodingT3:
- Rt = EmulateInstruction::UnsignedBits (opcode, 15, 12);
+ Rt = Bits32(opcode, 15, 12);
// if BadReg(t) then UNPREDICTABLE;
if (BadReg(Rt))
return false;
registers = (1u << Rt);
break;
case eEncodingA1:
- registers = EmulateInstruction::UnsignedBits (opcode, 15, 0);
+ registers = Bits32(opcode, 15, 0);
// Instead of return false, let's handle the following case as well,
// which amounts to pushing one reg onto the full descending stacks.
// if BitCount(register_list) < 2 then SEE STMDB / STMFD;
break;
case eEncodingA2:
- Rt = EmulateInstruction::UnsignedBits (opcode, 15, 12);
+ Rt = Bits32(opcode, 15, 12);
// if t == 13 then UNPREDICTABLE;
if (Rt == dwarf_sp)
return false;
@@ -156,7 +156,7 @@
EmulateInstruction::Context context = { EmulateInstruction::eContextPushRegisterOnStack, eRegisterKindDWARF, 0, 0 };
for (i=0; i<15; ++i)
{
- if (EmulateInstruction::BitIsSet (registers, 1u << i))
+ if (BitIsSet (registers, 1u << i))
{
context.arg1 = dwarf_r0 + i; // arg1 in the context is the DWARF register number
context.arg2 = addr - sp; // arg2 in the context is the stack pointer offset
@@ -169,7 +169,7 @@
}
}
- if (EmulateInstruction::BitIsSet (registers, 1u << 15))
+ if (BitIsSet (registers, 1u << 15))
{
context.arg1 = dwarf_pc; // arg1 in the context is the DWARF register number
context.arg2 = addr - sp; // arg2 in the context is the stack pointer offset
@@ -284,8 +284,8 @@
uint32_t imm12;
switch (encoding) {
case eEncodingA1:
- Rt = EmulateInstruction::UnsignedBits (opcode, 15, 12);
- imm12 = EmulateInstruction::UnsignedBits (opcode, 11, 0);
+ Rt = Bits32(opcode, 15, 12);
+ imm12 = Bits32(opcode, 11, 0);
break;
default:
return false;
Added: lldb/trunk/source/Plugins/Process/Utility/InstructionUtils.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/InstructionUtils.h?rev=124259&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/InstructionUtils.h (added)
+++ lldb/trunk/source/Plugins/Process/Utility/InstructionUtils.h Tue Jan 25 19:00:55 2011
@@ -0,0 +1,78 @@
+//===-- lldb_InstructionUtils.h ---------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef lldb_InstructionUtils_h_
+#define lldb_InstructionUtils_h_
+
+// Common utilities for manipulating instruction bit fields.
+
+namespace lldb_private {
+
+static inline uint32_t
+Bits32 (const uint32_t value, const uint32_t msbit, const uint32_t lsbit)
+{
+ assert(msbit < 32 && lsbit <= msbit);
+ return (value >> lsbit) & ((1u << (msbit - lsbit + 1)) - 1);
+}
+
+// Create a mask that starts at bit zero and includes "bit"
+static inline uint64_t
+MaskUpToBit (const uint64_t bit)
+{
+ return (1ull << (bit + 1ull)) - 1ull;
+}
+
+// Returns an integer result equal to the number of bits of x that are ones.
+static inline uint32_t
+BitCount (uint64_t x)
+{
+ // c accumulates the total bits set in x
+ uint32_t c;
+ for (c = 0; x; ++c)
+ {
+ x &= x - 1; // clear the least significant bit set
+ }
+ return c;
+}
+
+static inline bool
+BitIsSet (const uint64_t value, const uint64_t bit)
+{
+ return (value & (1ull << bit)) != 0;
+}
+
+static inline bool
+BitIsClear (const uint64_t value, const uint64_t bit)
+{
+ return (value & (1ull << bit)) == 0;
+}
+
+static inline uint64_t
+UnsignedBits (const uint64_t value, const uint64_t msbit, const uint64_t lsbit)
+{
+ uint64_t result = value >> lsbit;
+ result &= MaskUpToBit (msbit - lsbit);
+ return result;
+}
+
+static inline int64_t
+SignedBits (const uint64_t value, const uint64_t msbit, const uint64_t lsbit)
+{
+ uint64_t result = UnsignedBits (value, msbit, lsbit);
+ if (BitIsSet(value, msbit))
+ {
+ // Sign extend
+ result |= ~MaskUpToBit (msbit - lsbit);
+ }
+ return result;
+}
+
+} // namespace lldb_private
+
+#endif // lldb_InstructionUtils_h_
More information about the lldb-commits
mailing list