Searched refs:modrm (Results 1 – 5 of 5) sorted by relevance
114 uint8_t modrm; member133 uint8_t modrm = opcode_and_modrm.modrm; in MapOpcodeIntoControlFlowKind() local159 uint8_t modrm_reg = (modrm >> 3) & 7; in MapOpcodeIntoControlFlowKind()223 switch (modrm) { in MapOpcodeIntoControlFlowKind()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()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()[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) argument85 #define FASTTRAP_MODRM_REG(modrm) (((modrm) >> 3) & 0x7) argument86 #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()