Searched refs:inst_bytes (Results 1 – 2 of 2) sorted by relevance
258 InstructionLengthDecode(const uint8_t *inst_bytes, int bytes_len, in InstructionLengthDecode() argument272 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 …]
209 for inst_bytes in instruction_provider:220 inst_list = target.GetInstructions(fake_address, inst_bytes)