Searched refs:opcode_data (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp79 const uint8_t *opcode_data = data.GetDataStart(); local
82 const size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data,
203 uint8_t *opcode_data = const_cast<uint8_t *>(data.PeekData (data_offset, 1)); local
209 const size_t inst_size = mc_disasm_ptr->GetMCInst(opcode_data,
218 m_opcode.SetOpcodeBytes(opcode_data, inst_size);
286 const uint8_t *opcode_data = data.GetDataStart(); local
289 size_t inst_size = mc_disasm_ptr->GetMCInst (opcode_data,
514 DisassemblerLLVMC::LLVMCDisassembler::GetMCInst (const uint8_t *opcode_data, argument
519 LLDBDisasmMemoryObject memory_object (opcode_data, opcode_data_len, pc);
H A DDisassemblerLLVMC.h48 uint64_t GetMCInst (const uint8_t *opcode_data, size_t opcode_data_len, lldb::addr_t pc, llvm::MCInst &mc_inst);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp473 llvm::SmallVector <uint8_t, 32> opcode_data; local
474 opcode_data.resize (max_op_byte_size);
482 if (target->ReadMemory (addr, prefer_file_cache, opcode_data.data(), max_op_byte_size, error) == -1)
490 opcode_data.data(),
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp1236 PseudoInstruction::SetOpcode (size_t opcode_size, void *opcode_data) argument
1238 if (!opcode_data)
1245 uint8_t value8 = *((uint8_t *) opcode_data);
1251 uint16_t value16 = *((uint16_t *) opcode_data);
1257 uint32_t value32 = *((uint32_t *) opcode_data);
1263 uint64_t value64 = *((uint64_t *) opcode_data);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
H A DDisassembler.h228 SetOpcode (size_t opcode_size, void *opcode_data);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp13452 ARMOpcode *opcode_data = NULL; local
13455 opcode_data = GetThumbOpcodeForInstruction (m_opcode.GetOpcode32(), m_arm_isa);
13457 opcode_data = GetARMOpcodeForInstruction (m_opcode.GetOpcode32(), m_arm_isa);
13459 if (opcode_data == NULL)
13487 success = (this->*opcode_data->callback) (m_opcode.GetOpcode32(), opcode_data->encoding);
13499 if (opcode_data->size == eSize32)
13501 else if (opcode_data->size == eSize16)

Completed in 88 milliseconds