Home
last modified time | relevance | path

Searched refs:opcode_data (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
HDDisassemblerLLVMC.cpp78 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()
HDDisassemblerLLVMC.h48 …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/
HDUnwindAssembly-x86.cpp617 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/
HDDisassembler.cpp1332 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/
HDEmulateInstructionARM64.cpp320 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/
HDDisassembler.h283 SetOpcode (size_t opcode_size, void *opcode_data);
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/
HDEmulateInstructionMIPS.cpp535 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/
HDEmulateInstructionMIPS64.cpp538 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/
HDEmulateInstructionARM.cpp13582 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()