forked from OSchip/llvm-project
Add code to emulate LDRSB (register) Arm instruction.
llvm-svn: 126802
This commit is contained in:
parent
2b09bed518
commit
4776fbbd72
|
@ -6554,6 +6554,165 @@ EmulateInstructionARM::EmulateLDRSBLiteral (ARMEncoding encoding)
|
|||
return true;
|
||||
}
|
||||
|
||||
// LDRSB (register) calculates an address from a base register value and an offset register value, loadsa byte from
|
||||
// memory, sign-extends it to form a 32-bit word, and writes it to a register. The offset register value can be
|
||||
// shifted left by 0, 1, 2, or 3 bits.
|
||||
bool
|
||||
EmulateInstructionARM::EmulateLDRSBRegister (ARMEncoding encoding)
|
||||
{
|
||||
#if 0
|
||||
if ConditionPassed() then
|
||||
EncodingSpecificOperations(); NullCheckIfThumbEE(n);
|
||||
offset = Shift(R[m], shift_t, shift_n, APSR.C);
|
||||
offset_addr = if add then (R[n] + offset) else (R[n] - offset);
|
||||
address = if index then offset_addr else R[n];
|
||||
R[t] = SignExtend(MemU[address,1], 32);
|
||||
if wback then R[n] = offset_addr;
|
||||
#endif
|
||||
|
||||
bool success = false;
|
||||
const uint32_t opcode = OpcodeAsUnsigned (&success);
|
||||
if (!success)
|
||||
return false;
|
||||
|
||||
if (ConditionPassed ())
|
||||
{
|
||||
uint32_t t;
|
||||
uint32_t n;
|
||||
uint32_t m;
|
||||
bool index;
|
||||
bool add;
|
||||
bool wback;
|
||||
ARM_ShifterType shift_t;
|
||||
uint32_t shift_n;
|
||||
|
||||
// EncodingSpecificOperations(); NullCheckIfThumbEE(n);
|
||||
switch (encoding)
|
||||
{
|
||||
case eEncodingT1:
|
||||
// t = UInt(Rt); n = UInt(Rn); m = UInt(Rm);
|
||||
t = Bits32 (opcode, 2, 0);
|
||||
n = Bits32 (opcode, 5, 3);
|
||||
m = Bits32 (opcode, 8, 6);
|
||||
|
||||
// index = TRUE; add = TRUE; wback = FALSE;
|
||||
index = true;
|
||||
add = true;
|
||||
wback = false;
|
||||
|
||||
// (shift_t, shift_n) = (SRType_LSL, 0);
|
||||
shift_t = SRType_LSL;
|
||||
shift_n = 0;
|
||||
|
||||
break;
|
||||
|
||||
case eEncodingT2:
|
||||
// if Rt == ’1111’ then SEE PLI;
|
||||
// if Rn == ’1111’ then SEE LDRSB (literal);
|
||||
// t = UInt(Rt); n = UInt(Rn); m = UInt(Rm);
|
||||
t = Bits32 (opcode, 15, 12);
|
||||
n = Bits32 (opcode, 19, 16);
|
||||
m = Bits32 (opcode, 3, 0);
|
||||
|
||||
// index = TRUE; add = TRUE; wback = FALSE;
|
||||
index = true;
|
||||
add = true;
|
||||
wback = false;
|
||||
|
||||
// (shift_t, shift_n) = (SRType_LSL, UInt(imm2));
|
||||
shift_t = SRType_LSL;
|
||||
shift_n = Bits32 (opcode, 5, 4);
|
||||
|
||||
// if t == 13 || BadReg(m) then UNPREDICTABLE;
|
||||
if ((t == 13) || BadReg (m))
|
||||
return false;
|
||||
break;
|
||||
|
||||
case eEncodingA1:
|
||||
// if P == ’0’ && W == ’1’ then SEE LDRSBT;
|
||||
// t = UInt(Rt); n = UInt(Rn); m = UInt(Rm);
|
||||
t = Bits32 (opcode, 15, 12);
|
||||
n = Bits32 (opcode, 19, 16);
|
||||
m = Bits32 (opcode, 3, 0);
|
||||
|
||||
// index = (P == ’1’); add = (U == ’1’); wback = (P == ’0’) || (W == ’1’);
|
||||
index = BitIsSet (opcode, 24);
|
||||
add = BitIsSet (opcode, 23);
|
||||
wback = BitIsClear (opcode, 24) || BitIsSet (opcode, 21);
|
||||
|
||||
// (shift_t, shift_n) = (SRType_LSL, 0);
|
||||
shift_t = SRType_LSL;
|
||||
shift_n = 0;
|
||||
|
||||
// if t == 15 || m == 15 then UNPREDICTABLE;
|
||||
if ((t == 15) || (m == 15))
|
||||
return false;
|
||||
|
||||
// if wback && (n == 15 || n == t) then UNPREDICTABLE;
|
||||
if (wback && ((n == 15) || (n == t)))
|
||||
return false;
|
||||
break;
|
||||
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
||||
uint64_t Rm = ReadRegisterUnsigned (eRegisterKindDWARF, dwarf_r0 + m, 0, &success);
|
||||
if (!success)
|
||||
return false;
|
||||
|
||||
// offset = Shift(R[m], shift_t, shift_n, APSR.C);
|
||||
addr_t offset = Shift (Rm, shift_t, shift_n, APSR_C);
|
||||
|
||||
addr_t offset_addr;
|
||||
addr_t address;
|
||||
|
||||
// offset_addr = if add then (R[n] + offset) else (R[n] - offset);
|
||||
uint64_t Rn = ReadRegisterUnsigned (eRegisterKindDWARF, dwarf_r0 + n, 0, &success);
|
||||
if (!success)
|
||||
return false;
|
||||
|
||||
if (add)
|
||||
offset_addr = Rn + offset;
|
||||
else
|
||||
offset_addr = Rn - offset;
|
||||
|
||||
// address = if index then offset_addr else R[n];
|
||||
if (index)
|
||||
address = offset_addr;
|
||||
else
|
||||
address = Rn;
|
||||
|
||||
// R[t] = SignExtend(MemU[address,1], 32);
|
||||
Register base_reg;
|
||||
base_reg.SetRegister (eRegisterKindDWARF, dwarf_r0 + n);
|
||||
Register offset_reg;
|
||||
offset_reg.SetRegister (eRegisterKindDWARF, dwarf_r0 + m);
|
||||
|
||||
EmulateInstruction::Context context;
|
||||
context.type = eContextRegisterLoad;
|
||||
context.SetRegisterPlusIndirectOffset (base_reg, offset_reg);
|
||||
|
||||
uint64_t unsigned_data = MemURead (context, address, 1, 0, &success);
|
||||
if (!success)
|
||||
return false;
|
||||
|
||||
int64_t signed_data = llvm::SignExtend64<8>(unsigned_data);
|
||||
if (!WriteRegisterUnsigned (context, eRegisterKindDWARF, dwarf_r0 + t, (uint64_t) signed_data))
|
||||
return false;
|
||||
|
||||
// if wback then R[n] = offset_addr;
|
||||
if (wback)
|
||||
{
|
||||
context.type = eContextAdjustBaseRegister;
|
||||
context.SetAddress (offset_addr);
|
||||
if (!WriteRegisterUnsigned (context, eRegisterKindDWARF, dwarf_r0 + n, offset_addr))
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
// Bitwise Exclusive OR (immediate) performs a bitwise exclusive OR of a register value and an immediate value,
|
||||
// and writes the result to the destination register. It can optionally update the condition flags based on
|
||||
// the result.
|
||||
|
@ -7930,6 +8089,7 @@ EmulateInstructionARM::GetARMOpcodeForInstruction (const uint32_t opcode)
|
|||
{ 0x0e5000f0, 0x001000b0, ARMvAll, eEncodingA1, eSize32, &EmulateInstructionARM::EmulateLDRHRegister, "ldrh<c> <Rt>,[<Rn>,+/-<Rm>]{!}" },
|
||||
{ 0x0e5000f0, 0x005000d0, ARMvAll, eEncodingA1, eSize32, &EmulateInstructionARM::EmulateLDRSBImmediate, "ldrsb<c> <Rt>, [<Rn>{,#+/-<imm8>}]" },
|
||||
{ 0x0e5f00f0, 0x005f00d0, ARMvAll, eEncodingA1, eSize32, &EmulateInstructionARM::EmulateLDRSBLiteral, "ldrsb<c> <Rt> <label>" },
|
||||
{ 0x0e5000f0, 0x001000d0, ARMvAll, eEncodingA1, eSize32, &EmulateInstructionARM::EmulateLDRSBRegister, "ldrsb<c> <Rt>,[<Rn>,+/-<Rm>]{!}" },
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Store instructions
|
||||
|
@ -8177,6 +8337,8 @@ EmulateInstructionARM::GetThumbOpcodeForInstruction (const uint32_t opcode)
|
|||
{ 0xfff00000, 0xf9900000, ARMV6T2_ABOVE, eEncodingT1, eSize32, &EmulateInstructionARM::EmulateLDRSBImmediate, "ldrsb<c> <Rt>,[<Rn>,#<imm12>]" },
|
||||
{ 0xfff00800, 0xf9100800, ARMV6T2_ABOVE, eEncodingT2, eSize32, &EmulateInstructionARM::EmulateLDRSBImmediate, "ldrsb<c> <Rt>,[<Rn>,#+/-<imm8>]" },
|
||||
{ 0xff7f0000, 0xf91f0000, ARMV6T2_ABOVE, eEncodingT1, eSize32, &EmulateInstructionARM::EmulateLDRSBLiteral, "ldrsb<c> <Rt>, <label>" },
|
||||
{ 0xfffffe00, 0x00005600, ARMV4T_ABOVE, eEncodingT1, eSize16, &EmulateInstructionARM::EmulateLDRSBRegister, "ldrsb<c> <Rt>,[<Rn>,<Rm>]" },
|
||||
{ 0xfff00fc0, 0xf9100000, ARMV6T2_ABOVE, eEncodingT2, eSize32, &EmulateInstructionARM::EmulateLDRSBRegister, "ldrsb<c>.w <Rt>,[<Rn>,<Rm>{,LSL #imm2>}]" },
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Store instructions
|
||||
|
|
Loading…
Reference in New Issue