reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
 9619     Rd = Bits32(opcode, 2, 0);
 9620     Rn = Bits32(opcode, 5, 3);
 9622     imm32 = Bits32(opcode, 8, 6); // imm32 = ZeroExtend(imm3, 32)
 9625     Rd = Rn = Bits32(opcode, 10, 8);
 9627     imm32 = Bits32(opcode, 7, 0); // imm32 = ZeroExtend(imm8, 32)
 9630     Rd = Bits32(opcode, 11, 8);
 9631     Rn = Bits32(opcode, 19, 16);
 9632     setflags = BitIsSet(opcode, 20);
 9633     imm32 = ThumbExpandImm(opcode); // imm32 = ThumbExpandImm(i:imm3:imm8)
 9637       return EmulateCMPImm(opcode, eEncodingT2);
 9641       return EmulateSUBSPImm(opcode, eEncodingT2);
 9648     Rd = Bits32(opcode, 11, 8);
 9649     Rn = Bits32(opcode, 19, 16);
 9650     setflags = BitIsSet(opcode, 20);
 9651     imm32 = ThumbImm12(opcode); // imm32 = ZeroExtend(i:imm3:imm8, 32)
 9655       return EmulateADR(opcode, eEncodingT2);
 9659       return EmulateSUBSPImm(opcode, eEncodingT3);