Searched refs:modrm (Results 1 – 5 of 5) sorted by relevance
115 uint8_t modrm; member134 uint8_t modrm = opcode_and_modrm.modrm; in MapOpcodeIntoControlFlowKind() local160 uint8_t modrm_reg = (modrm >> 3) & 7; in MapOpcodeIntoControlFlowKind()224 switch (modrm) { in MapOpcodeIntoControlFlowKind()329 ret.modrm = inst_bytes[op_idx + 3]; in InstructionLengthDecode()339 ret.modrm = inst_bytes[op_idx + 4]; in InstructionLengthDecode()350 ret.modrm = inst_bytes[op_idx + 5]; in InstructionLengthDecode()360 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()370 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()374 ret.modrm = inst_bytes[op_idx + 1]; in InstructionLengthDecode()[all …]
283 uint8_t *bytes, modrm, rex; in kinst_instr_dissect() local408 modrm = bytes[d86.d86_rmindex]; in kinst_instr_dissect()409 mod = KINST_MODRM_MOD(modrm); in kinst_instr_dissect()410 rm = KINST_MODRM_RM(modrm); in kinst_instr_dissect()
84 #define FASTTRAP_MODRM_MOD(modrm) (((modrm) >> 6) & 0x3) argument 85 #define FASTTRAP_MODRM_REG(modrm) (((modrm) >> 3) & 0x7) argument 86 #define FASTTRAP_MODRM_RM(modrm) ((modrm) & 0x7) argument
60 #define DT_MODRM_REG(modrm) (((modrm) >> 3) & 0x7) argument
3177 dtrace_evex_adjust_disp8_n(dis86_t *x, int opindex, uint_t L, uint_t modrm) in dtrace_evex_adjust_disp8_n() argument3185 if ((modrm & 0x80) == 0x80) in dtrace_evex_adjust_disp8_n()