OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VEX_W
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp
562
//
VEX_W
: opcode specific (use like REX.W, or used for
564
unsigned char
VEX_W
= 0;
619
if ((TSFlags >> X86II::VEXShift) & X86II::
VEX_W
)
620
VEX_W
= 1;
905
if (VEX_B && VEX_X && !
VEX_W
&& !XOP && (VEX_5M == 1)) { // 2 byte VEX prefix
914
EmitByte(LastByte | (
VEX_W
<< 7), CurByte, OS);
[
all
...]
X86BaseInfo.h
437
///
VEX_W
- Has a opcode specific functionality, but is used in the same
439
VEX_W
= 1U << 1,
Completed in 47 milliseconds