Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1206 if (Shuffle->isInsertSubvectorMask(NumSubElts, SubIndex)) in getInstructionCost()
1257 if (Shuffle->isInsertSubvectorMask(NumSubElts, SubIndex)) in getInstructionCost()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DInstructions.h2358 static bool isInsertSubvectorMask(ArrayRef<int> Mask, int NumSrcElts,
2360 static bool isInsertSubvectorMask(const Constant *Mask, int NumSrcElts,
2369 return isInsertSubvectorMask(MaskAsInts, NumSrcElts, NumSubElts, Index);
2373 bool isInsertSubvectorMask(int &NumSubElts, int &Index) const {
2381 return isInsertSubvectorMask(ShuffleMask, NumSrcElts, NumSubElts, Index);
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp2463 bool ShuffleVectorInst::isInsertSubvectorMask(ArrayRef<int> Mask, in isInsertSubvectorMask() function in ShuffleVectorInst