Lines Matching refs:EmulateInstructionPPC64

28 LLDB_PLUGIN_DEFINE_ADV(EmulateInstructionPPC64, InstructionPPC64)  in LLDB_PLUGIN_DEFINE_ADV()  argument
30 EmulateInstructionPPC64::EmulateInstructionPPC64(const ArchSpec &arch) in LLDB_PLUGIN_DEFINE_ADV()
33 void EmulateInstructionPPC64::Initialize() { in Initialize()
38 void EmulateInstructionPPC64::Terminate() { in Terminate()
42 ConstString EmulateInstructionPPC64::GetPluginNameStatic() { in GetPluginNameStatic()
47 ConstString EmulateInstructionPPC64::GetPluginName() { in GetPluginName()
52 const char *EmulateInstructionPPC64::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
57 EmulateInstructionPPC64::CreateInstance(const ArchSpec &arch, in CreateInstance()
59 if (EmulateInstructionPPC64::SupportsEmulatingInstructionsOfTypeStatic( in CreateInstance()
62 return new EmulateInstructionPPC64(arch); in CreateInstance()
67 bool EmulateInstructionPPC64::SetTargetTriple(const ArchSpec &arch) { in SetTargetTriple()
78 bool EmulateInstructionPPC64::GetRegisterInfo(RegisterKind reg_kind, in GetRegisterInfo()
110 bool EmulateInstructionPPC64::ReadInstruction() { in ReadInstruction()
126 bool EmulateInstructionPPC64::CreateFunctionEntryUnwind( in CreateFunctionEntryUnwind()
145 EmulateInstructionPPC64::Opcode *
146 EmulateInstructionPPC64::GetOpcodeForInstruction(uint32_t opcode) { in GetOpcodeForInstruction()
147 static EmulateInstructionPPC64::Opcode g_opcodes[] = { in GetOpcodeForInstruction()
148 {0xfc0007ff, 0x7c0002a6, &EmulateInstructionPPC64::EmulateMFSPR, in GetOpcodeForInstruction()
150 {0xfc000003, 0xf8000000, &EmulateInstructionPPC64::EmulateSTD, in GetOpcodeForInstruction()
152 {0xfc000003, 0xf8000001, &EmulateInstructionPPC64::EmulateSTD, in GetOpcodeForInstruction()
154 {0xfc0007fe, 0x7c000378, &EmulateInstructionPPC64::EmulateOR, in GetOpcodeForInstruction()
156 {0xfc000000, 0x38000000, &EmulateInstructionPPC64::EmulateADDI, in GetOpcodeForInstruction()
158 {0xfc000003, 0xe8000000, &EmulateInstructionPPC64::EmulateLD, in GetOpcodeForInstruction()
169 bool EmulateInstructionPPC64::EvaluateInstruction(uint32_t evaluate_options) { in EvaluateInstruction()
213 bool EmulateInstructionPPC64::EmulateMFSPR(uint32_t opcode) { in EmulateMFSPR()
238 bool EmulateInstructionPPC64::EmulateLD(uint32_t opcode) { in EmulateLD()
267 bool EmulateInstructionPPC64::EmulateSTD(uint32_t opcode) { in EmulateSTD()
334 bool EmulateInstructionPPC64::EmulateOR(uint32_t opcode) { in EmulateOR()
367 bool EmulateInstructionPPC64::EmulateADDI(uint32_t opcode) { in EmulateADDI()