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

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 475 // XOP: Use XOP prefix byte 0x8f instead of VEX.
476 unsigned char XOP = 0;
485 // 0b01000: XOP map select - 08h instructions with imm byte
486 // 0b10001: XOP map select - 09h instructions with no imm byte
517 if ((TSFlags >> X86II::VEXShift) & X86II::XOP)
518 XOP = 1;
712 if (VEX_B && VEX_X && !VEX_W && !XOP && (VEX_5M == 1)) { // 2 byte VEX prefix
719 EmitByte(XOP ? 0x8F : 0xC4, CurByte, OS);
    [all...]
X86BaseInfo.h 473 /// ModRM or I8IMM. This is used for FMA4 and XOP instructions.
476 /// XOP - Opcode prefix used by XOP instructions.
477 XOP = 1U << 9
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 836 // XOP: Use XOP prefix byte 0x8f instead of VEX.
837 unsigned char XOP = 0;
846 // 0b01000: XOP map select - 08h instructions with imm byte
847 // 0b10001: XOP map select - 09h instructions with no imm byte
878 if ((TSFlags >> X86II::VEXShift) & X86II::XOP)
879 XOP = 1;
    [all...]

Completed in 109 milliseconds