Searched refs:VEX_W (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ATTInstPrinter.cpp165 if (Desc.TSFlags & X86II::VEX_W)
173 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16;
175 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 4 : 8;
177 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 2 : 4;
307 if (Desc.TSFlags & X86II::VEX_W)
315 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16;
317 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 4 : 8;
319 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 2 : 4;
H A DX86IntelInstPrinter.cpp155 if (Desc.TSFlags & X86II::VEX_W)
163 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16;
165 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 4 : 8;
167 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 2 : 4;
295 if (Desc.TSFlags & X86II::VEX_W)
303 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 8 : 16;
305 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 4 : 8;
307 NumElts = (Desc.TSFlags & X86II::VEX_W) ? 2 : 4;
H A DX86MCCodeEmitter.cpp791 // VEX_W: opcode specific (use like REX.W, or used for
793 uint8_t VEX_W = (TSFlags & X86II::VEX_W) ? 1 : 0; local
1160 VEX_B && VEX_X && !VEX_W && (VEX_5M == 1)) {
1169 emitByte(LastByte | (VEX_W << 7), OS);
1184 emitByte((VEX_W << 7) | (VEX_4V << 3) | (EVEX_U << 2) | VEX_PP, OS);
H A DX86BaseInfo.h906 /// VEX_W - Has a opcode specific functionality, but is used in the same
909 VEX_W = 1ULL << VEX_WShift,
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86EVEX2VEXTablesEmitter.cpp95 bool VEX_W = RecV->getValueAsBit("HasVEX_W"); local
110 (!(VEX_WIG || (!EVEX_WIG && EVEX_W == VEX_W) ||
111 (EVEX_W1_VEX_W0 && EVEX_W && !VEX_W))) ||
/freebsd-13-stable/sys/cddl/dev/dtrace/x86/
H A Ddis_tables.c2285 #define VEX_W 0x08 /* opcode specific, use like REX.W */ macro
2339 * We further have to subdivide this based on the value of VEX_W and the value
2341 * [opcode - 0x90][VEX_W][VEX_L].
3146 vex_W = (opcode5 & VEX_W) >> 3;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp966 !(TSFlags & X86II::VEX_W) && (TSFlags & X86II::VEX_4V) &&

Completed in 179 milliseconds