Home
last modified time | relevance | path

Searched refs:SM_SentinelUndef (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86ShuffleDecode.cpp298 ShuffleMask.push_back(SM_SentinelUndef); in DecodePSHUFBMask()
344 ShuffleMask.push_back(SM_SentinelUndef); in DecodeVPPERMMask()
378 int Sentinel = IsAnyExtend ? SM_SentinelUndef : SM_SentinelZero; in DecodeZeroExtendMask()
419 ShuffleMask.append(NumElts, SM_SentinelUndef); in DecodeEXTRQIMask()
434 ShuffleMask.push_back(SM_SentinelUndef); in DecodeEXTRQIMask()
456 ShuffleMask.append(NumElts, SM_SentinelUndef); in DecodeINSERTQIMask()
474 ShuffleMask.push_back(SM_SentinelUndef); in DecodeINSERTQIMask()
489 ShuffleMask.push_back(SM_SentinelUndef); in DecodeVPERMILPMask()
511 ShuffleMask.push_back(SM_SentinelUndef); in DecodeVPERMIL2PMask()
550 ShuffleMask.push_back(SM_SentinelUndef); in DecodeVPERMVMask()
[all …]
H A DX86ShuffleDecode.h28 enum { SM_SentinelUndef = -1, SM_SentinelZero = -2 }; enumerator
H A DX86InstComments.cpp1851 if (ShuffleMask[i] == SM_SentinelUndef) in EmitAnyX86InstComments()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp134 ShuffleMask.push_back(SM_SentinelUndef); in DecodePSHUFBMask()
174 ShuffleMask.push_back(SM_SentinelUndef); in DecodeVPERMILPMask()
210 ShuffleMask.push_back(SM_SentinelUndef); in DecodeVPERMIL2PMask()
262 ShuffleMask.push_back(SM_SentinelUndef); in DecodeVPPERMMask()
H A DX86ISelLowering.cpp3705 return ((Val == SM_SentinelUndef) || (Val == CmpVal)); in isUndefOrEqual()
3712 return (M == SM_SentinelUndef) || (M == CmpVal); in isUndefOrEqual()
3726 return ((Val == SM_SentinelUndef) || (Val == SM_SentinelZero)); in isUndefOrZero()
3733 [](int M) { return M == SM_SentinelUndef; }); in isUndefInRange()
3767 return (Val == SM_SentinelUndef) || isInRange(Val, Low, Hi); in isUndefOrInRange()
3858 if (M0 == SM_SentinelUndef && M1 == SM_SentinelUndef) { in canWidenShuffleElements()
3859 WidenedMask[i / 2] = SM_SentinelUndef; in canWidenShuffleElements()
3865 if (M0 == SM_SentinelUndef && M1 >= 0 && (M1 % 2) == 1) { in canWidenShuffleElements()
3869 if (M1 == SM_SentinelUndef && M0 >= 0 && (M0 % 2) == 0) { in canWidenShuffleElements()
3876 if ((M0 == SM_SentinelZero || M0 == SM_SentinelUndef) && in canWidenShuffleElements()
[all …]
H A DX86MCInstLower.cpp1507 if (ShuffleMask[i] == SM_SentinelUndef) in printShuffleMask()