Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp775 uint8_t VEX_R = 0x1; in emitVEXOpcodePrefix() local
921 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
936 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
962 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
976 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
1027 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
1058 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
1069 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
1101 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
1112 VEX_R = ~(RegEnc >> 3) & 1; in emitVEXOpcodePrefix()
[all …]
/netbsd-src/external/cddl/osnet/dev/dtrace/x86/
H A Ddis_tables.c2280 #define VEX_R 0x08 /* REX.R in 1's complement form */ macro
2496 if (reg != NULL && ((VEX_R & vex_byte1) == 0)) in dtrace_vex_adjust()
3091 vex_R = ((opcode3 & VEX_R) & 0x0F) >> 3; in dtrace_disx86()
3099 vex_byte1 = (opcode3 & VEX_R) | VEX_X | VEX_B; in dtrace_disx86()
3131 vex_R = (opcode3 & VEX_R) >> 3; in dtrace_disx86()
3135 vex_byte1 = opcode3 & (VEX_R | VEX_X | VEX_B); in dtrace_disx86()