Home
last modified time | relevance | path

Searched refs:rex (Results 1 – 3 of 3) sorted by relevance

/tools/perf/util/intel-pt-decoder/
Dinsn.h82 #define X86_REX_W(rex) ((rex) & 8) argument
83 #define X86_REX_R(rex) ((rex) & 4) argument
84 #define X86_REX_X(rex) ((rex) & 2) argument
85 #define X86_REX_B(rex) ((rex) & 1) argument
/tools/objtool/arch/x86/include/asm/
Dinsn.h82 #define X86_REX_W(rex) ((rex) & 8) argument
83 #define X86_REX_R(rex) ((rex) & 4) argument
84 #define X86_REX_X(rex) ((rex) & 2) argument
85 #define X86_REX_B(rex) ((rex) & 1) argument
/tools/objtool/arch/x86/
Ddecode.c88 unsigned char op1, op2, rex = 0, rex_b = 0, rex_r = 0, rex_w = 0, in arch_decode_instruction() local
114 rex = insn.rex_prefix.bytes[0]; in arch_decode_instruction()
115 rex_w = X86_REX_W(rex) >> 3; in arch_decode_instruction()
116 rex_r = X86_REX_R(rex) >> 2; in arch_decode_instruction()
117 rex_x = X86_REX_X(rex) >> 1; in arch_decode_instruction()
118 rex_b = X86_REX_B(rex); in arch_decode_instruction()
180 if (rex != 0x48) in arch_decode_instruction()
300 } else if (rex == 0x48 && modrm == 0x65) { in arch_decode_instruction()
310 } else if (rex == 0x49 && modrm == 0x62 && in arch_decode_instruction()
326 } else if (rex == 0x49 && modrm == 0x65 && in arch_decode_instruction()