Searched refs:modrm (Results 1 – 5 of 5) sorted by relevance
107 /// modrm114 uint8_t modrm;117 /// Determine the InstructionControlFlowKind based on opcode and modrm bytes.133 uint8_t modrm = opcode_and_modrm.modrm; in MapOpcodeIntoControlFlowKind() 159 uint8_t modrm_reg = (modrm >> 3) & 7; in MapOpcodeIntoControlFlowKind() 223 switch (modrm) { in MapOpcodeIntoControlFlowKind() 241 /// Decode an instruction into opcode, modrm and opcode_len.259 /// primary_opcode, opcode_len and modrm byte. Refer to the struct definition in InstructionLengthDecode() 328 ret.modrm in InstructionLengthDecode() 109 uint8_t modrm; global() member 128 uint8_t modrm = opcode_and_modrm.modrm; MapOpcodeIntoControlFlowKind() local [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()