Home
last modified time | relevance | path

Searched refs:isSelectMask (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h2151 static bool isSelectMask(ArrayRef<int> Mask, int NumSrcElts);
2152 static bool isSelectMask(const Constant *Mask, int NumSrcElts) {
2156 return isSelectMask(MaskAsInts, NumSrcElts);
2168 return !changesLength() && isSelectMask(ShuffleMask, ShuffleMask.size());
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h990 if (ShuffleVectorInst::isSelectMask(Mask, NumSrcElts)) in improveShuffleKindFromMask()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp2131 assert((ShuffleVectorInst::isSelectMask(NewMask, NumElts) || in foldSelectShuffleOfSelectShuffle()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp2227 bool ShuffleVectorInst::isSelectMask(ArrayRef<int> Mask, int NumSrcElts) { in isSelectMask() function in ShuffleVectorInst