Home
last modified time | relevance | path

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

/tools/arch/x86/include/asm/
A Dinsn.h115 #define X86_REX2_M(rex) ((rex) & 0x80) /* REX2 M0 */ argument
116 #define X86_REX2_R(rex) ((rex) & 0x40) /* REX2 R4 */ argument
117 #define X86_REX2_X(rex) ((rex) & 0x20) /* REX2 X4 */ argument
118 #define X86_REX2_B(rex) ((rex) & 0x10) /* REX2 B4 */ argument
120 #define X86_REX_W(rex) ((rex) & 8) /* REX or REX2 W */ argument
121 #define X86_REX_R(rex) ((rex) & 4) /* REX or REX2 R3 */ argument
122 #define X86_REX_X(rex) ((rex) & 2) /* REX or REX2 X3 */ argument
123 #define X86_REX_B(rex) ((rex) & 1) /* REX or REX2 B3 */ argument
/tools/objtool/arch/x86/
A Ddecode.c162 rex = 0, rex_b = 0, rex_r = 0, rex_w = 0, rex_x = 0, in arch_decode_instruction() local
202 rex = ins.rex_prefix.bytes[0]; in arch_decode_instruction()
203 rex_w = X86_REX_W(rex) >> 3; in arch_decode_instruction()
204 rex_r = X86_REX_R(rex) >> 2; in arch_decode_instruction()
205 rex_x = X86_REX_X(rex) >> 1; in arch_decode_instruction()
206 rex_b = X86_REX_B(rex); in arch_decode_instruction()

Completed in 4 milliseconds