Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp277 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
328 ret.modrm = inst_bytes[op_idx + 3]; in InstructionLengthDecode()
338 ret.modrm = inst_bytes[op_idx + 4]; in InstructionLengthDecode()
349 ret.modrm = inst_bytes[op_idx + 5]; in InstructionLengthDecode()
358 ret.primary_opcode = inst_bytes[op_idx]; in InstructionLengthDecode()
359 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()
369 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()
373 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()
377 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()
381 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()
[all …]
/freebsd-14.2/sys/amd64/include/
H A Dvmm_instruction_emul.h107 void vie_init(struct vie *vie, const char *inst_bytes, int inst_length);
/freebsd-14.2/sys/amd64/vmm/amd/
H A Dvmcb.h296 uint8_t inst_bytes[15]; member
H A Dsvm.c863 char *inst_bytes; in svm_handle_inst_emul() local
903 inst_bytes = ctrl->inst_bytes; in svm_handle_inst_emul()
906 inst_bytes = NULL; in svm_handle_inst_emul()
908 vie_init(&vmexit->u.inst_emul.vie, inst_bytes, inst_len); in svm_handle_inst_emul()
/freebsd-14.2/sys/amd64/vmm/
H A Dvmm_instruction_emul.c2013 vie_init(struct vie *vie, const char *inst_bytes, int inst_length) in vie_init() argument
2021 memcpy(vie->inst, inst_bytes, inst_length); in vie_init()