Home
last modified time | relevance | path

Searched refs:ATTR_EVEX (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp905 if ((index & ATTR_EVEX) && (index & ATTR_ADSIZE) && (index & ATTR_OPSIZE)) in emitContextTable()
907 else if ((index & ATTR_EVEX) && (index & ATTR_ADSIZE) && (index & ATTR_XD)) in emitContextTable()
909 else if ((index & ATTR_EVEX) && (index & ATTR_ADSIZE) && (index & ATTR_XS)) in emitContextTable()
922 } else if ((index & ATTR_EVEX) || (index & ATTR_VEX) || in emitContextTable()
924 if (index & ATTR_EVEX) in emitContextTable()
929 if ((index & ATTR_EVEX) && (index & ATTR_EVEXL2)) in emitContextTable()
944 if (index & ATTR_EVEX) { in emitContextTable()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DX86DisassemblerDecoderCommon.h67 ATTR_EVEX = 0x1 << 8, enumerator
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp1203 attrMask |= (insn->vectorExtensionType == TYPE_EVEX) ? ATTR_EVEX : ATTR_VEX; in getInstructionID()