Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
DX86MCCodeEmitter.cpp783 uint8_t VEX_X = 0x1; in emitVEXOpcodePrefix() local
905 VEX_X = ~(IndexRegEnc >> 3) & 1; in emitVEXOpcodePrefix()
952 VEX_X = ~(IndexRegEnc >> 3) & 1; in emitVEXOpcodePrefix()
968 VEX_X = ~(IndexRegEnc >> 3) & 1; in emitVEXOpcodePrefix()
985 VEX_X = ~(IndexRegEnc >> 3) & 1; in emitVEXOpcodePrefix()
1012 VEX_X = ~(IndexRegEnc >> 3) & 1; in emitVEXOpcodePrefix()
1041 VEX_X = ~(RegEnc >> 4) & 1; in emitVEXOpcodePrefix()
1079 VEX_X = ~(RegEnc >> 4) & 1; in emitVEXOpcodePrefix()
1089 VEX_X = ~(RegEnc >> 4) & 1; in emitVEXOpcodePrefix()
1136 VEX_X = ~(RegEnc >> 4) & 1; in emitVEXOpcodePrefix()
[all …]
/freebsd-12-stable/sys/cddl/dev/dtrace/x86/
Ddis_tables.c2281 #define VEX_X 0x04 /* REX.X in 1's complement form */ macro
3099 vex_byte1 = (opcode3 & VEX_R) | VEX_X | VEX_B; in dtrace_disx86()
3132 vex_X = (opcode3 & VEX_X) >> 2; in dtrace_disx86()
3135 vex_byte1 = opcode3 & (VEX_R | VEX_X | VEX_B); in dtrace_disx86()