Home
last modified time | relevance | path

Searched refs:inst_bytes (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp258 InstructionLengthDecode(const uint8_t *inst_bytes, int bytes_len, in InstructionLengthDecode() argument
272 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
316 if (!is_exec_mode_64b && (inst_bytes[op_idx + 1] & 0xc0) != 0xc0) { in InstructionLengthDecode()
322 ret.primary_opcode = inst_bytes[op_idx + 2]; in InstructionLengthDecode()
323 ret.modrm = inst_bytes[op_idx + 3]; in InstructionLengthDecode()
327 if (!is_exec_mode_64b && (inst_bytes[op_idx + 1] & 0xc0) != 0xc0) { in InstructionLengthDecode()
331 ret.opcode_len = inst_bytes[op_idx + 1] & 0x1f; in InstructionLengthDecode()
332 ret.primary_opcode = inst_bytes[op_idx + 3]; in InstructionLengthDecode()
333 ret.modrm = inst_bytes[op_idx + 4]; in InstructionLengthDecode()
338 if (!is_exec_mode_64b && (inst_bytes[op_idx + 1] & 0xc0) != 0xc0) { in InstructionLengthDecode()
[all …]
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Ddisasm-stress-test.py209 for inst_bytes in instruction_provider:
220 inst_list = target.GetInstructions(fake_address, inst_bytes)