HomeSort by relevance Sort by last modified time
    Searched refs:VEX_W (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 416 // VEX_W: opcode specific (use like REX.W, or used for
418 unsigned char VEX_W = 0;
455 if ((TSFlags >> X86II::VEXShift) & X86II::VEX_W)
456 VEX_W = 1;
608 if (VEX_B && VEX_X && !VEX_W && (VEX_5M == 1)) { // 2 byte VEX prefix
617 EmitByte(LastByte | (VEX_W << 7), CurByte, OS);
    [all...]
X86BaseInfo.h 381 /// VEX_W - Has a opcode specific functionality, but is used in the same
383 VEX_W = 1U << 1,
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 632 // VEX_W: opcode specific (use like REX.W, or used for
634 uint8_t VEX_W = (TSFlags & X86II::VEX_W) ? 1 : 0;
    [all...]
X86BaseInfo.h 480 /// VEX_W - Has a opcode specific functionality, but is used in the same
483 VEX_W = 1ULL << VEX_WShift,

Completed in 105 milliseconds