| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/ |
| HD | DisassemblerLLVMC.cpp | 78 const uint8_t *opcode_data = data.GetDataStart(); in DoesBranch() local 81 const size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data, in DoesBranch() 202 uint8_t *opcode_data = const_cast<uint8_t *>(data.PeekData (data_offset, 1)); in Decode() local 208 const size_t inst_size = mc_disasm_ptr->GetMCInst(opcode_data, in Decode() 217 m_opcode.SetOpcodeBytes(opcode_data, inst_size); in Decode() 285 const uint8_t *opcode_data = data.GetDataStart(); in CalculateMnemonicOperandsAndComment() local 288 size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data, in CalculateMnemonicOperandsAndComment() 490 DisassemblerLLVMC::LLVMCDisassembler::GetMCInst (const uint8_t *opcode_data, in GetMCInst() argument 495 llvm::ArrayRef<uint8_t> data(opcode_data, opcode_data_len); in GetMCInst()
|
| HD | DisassemblerLLVMC.h | 48 …uint64_t GetMCInst (const uint8_t *opcode_data, size_t opcode_data_len, lldb::addr_t pc, llvm::MCI…
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/ |
| HD | UnwindAssembly-x86.cpp | 617 llvm::SmallVector <uint8_t, 32> opcode_data; in instruction_length() local 618 opcode_data.resize (max_op_byte_size); in instruction_length() 626 if (target->ReadMemory (addr, prefer_file_cache, opcode_data.data(), in instruction_length() 635 opcode_data.data(), in instruction_length() 1439 llvm::SmallVector <uint8_t, 4> opcode_data; in GetFastUnwindPlan() local 1447 if (target.ReadMemory (func.GetBaseAddress (), prefer_file_cache, opcode_data.data(), in GetFastUnwindPlan() 1453 if (memcmp (opcode_data.data(), i386_push_mov, sizeof (i386_push_mov)) == 0 in GetFastUnwindPlan() 1454 || memcmp (opcode_data.data(), x86_64_push_mov, sizeof (x86_64_push_mov)) == 0) in GetFastUnwindPlan()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Core/ |
| HD | Disassembler.cpp | 1332 PseudoInstruction::SetOpcode (size_t opcode_size, void *opcode_data) in SetOpcode() argument 1334 if (!opcode_data) in SetOpcode() 1341 uint8_t value8 = *((uint8_t *) opcode_data); in SetOpcode() 1347 uint16_t value16 = *((uint16_t *) opcode_data); in SetOpcode() 1353 uint32_t value32 = *((uint32_t *) opcode_data); in SetOpcode() 1359 uint64_t value64 = *((uint64_t *) opcode_data); in SetOpcode()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/ |
| HD | EmulateInstructionARM64.cpp | 320 Opcode *opcode_data = GetOpcodeForInstruction(opcode); in EvaluateInstruction() local 321 if (opcode_data == NULL) in EvaluateInstruction() 350 success = (this->*opcode_data->callback) (opcode); in EvaluateInstruction()
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/ |
| HD | Disassembler.h | 283 SetOpcode (size_t opcode_size, void *opcode_data);
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/ |
| HD | EmulateInstructionMIPS.cpp | 535 MipsOpcode *opcode_data = GetOpcodeForInstruction (op_name); in EvaluateInstruction() local 537 if (opcode_data == NULL) in EvaluateInstruction() 551 success = (this->*opcode_data->callback) (mc_insn); in EvaluateInstruction()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/ |
| HD | EmulateInstructionMIPS64.cpp | 538 MipsOpcode *opcode_data = GetOpcodeForInstruction (op_name); in EvaluateInstruction() local 540 if (opcode_data == NULL) in EvaluateInstruction() 554 success = (this->*opcode_data->callback) (mc_insn); in EvaluateInstruction()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/ |
| HD | EmulateInstructionARM.cpp | 13582 ARMOpcode *opcode_data = NULL; in EvaluateInstruction() local 13585 opcode_data = GetThumbOpcodeForInstruction (m_opcode.GetOpcode32(), m_arm_isa); in EvaluateInstruction() 13587 opcode_data = GetARMOpcodeForInstruction (m_opcode.GetOpcode32(), m_arm_isa); in EvaluateInstruction() 13589 if (opcode_data == NULL) in EvaluateInstruction() 13617 success = (this->*opcode_data->callback) (m_opcode.GetOpcode32(), opcode_data->encoding); in EvaluateInstruction() 13629 if (opcode_data->size == eSize32) in EvaluateInstruction() 13631 else if (opcode_data->size == eSize16) in EvaluateInstruction()
|