Searched refs:rex (Results 1 – 2 of 2) sorted by relevance
70 #define X86_REX_W(rex) ((rex) & 8) argument71 #define X86_REX_R(rex) ((rex) & 4) argument72 #define X86_REX_X(rex) ((rex) & 2) argument73 #define X86_REX_B(rex) ((rex) & 1) argument
76 unsigned char op1, op2, rex = 0, rex_b = 0, rex_r = 0, rex_w = 0, in arch_decode_instruction() local102 rex = insn.rex_prefix.bytes[0]; in arch_decode_instruction()103 rex_w = X86_REX_W(rex) >> 3; in arch_decode_instruction()104 rex_r = X86_REX_R(rex) >> 2; in arch_decode_instruction()105 rex_x = X86_REX_X(rex) >> 1; in arch_decode_instruction()106 rex_b = X86_REX_B(rex); in arch_decode_instruction()168 if (rex != 0x48) in arch_decode_instruction()288 } else if (rex == 0x48 && modrm == 0x65) { in arch_decode_instruction()298 } else if (rex == 0x49 && modrm == 0x62 && in arch_decode_instruction()314 } else if (rex == 0x49 && modrm == 0x65 && in arch_decode_instruction()