Searched refs:rex (Results 1 – 3 of 3) sorted by relevance
82 #define X86_REX_W(rex) ((rex) & 8) argument83 #define X86_REX_R(rex) ((rex) & 4) argument84 #define X86_REX_X(rex) ((rex) & 2) argument85 #define X86_REX_B(rex) ((rex) & 1) argument
88 unsigned char op1, op2, rex = 0, rex_b = 0, rex_r = 0, rex_w = 0, in arch_decode_instruction() local114 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()