Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DInstructionsTest.cpp779 EXPECT_FALSE(ShuffleVectorInst::isZeroEltSplatMask(Identity)); in TEST()
787 EXPECT_FALSE(ShuffleVectorInst::isZeroEltSplatMask(Select)); in TEST()
795 EXPECT_FALSE(ShuffleVectorInst::isZeroEltSplatMask(Reverse)); in TEST()
803 EXPECT_FALSE(ShuffleVectorInst::isZeroEltSplatMask(SingleSource)); in TEST()
811 EXPECT_TRUE(ShuffleVectorInst::isZeroEltSplatMask(ZeroEltSplat)); in TEST()
819 EXPECT_FALSE(ShuffleVectorInst::isZeroEltSplatMask(Transpose)); in TEST()
835 EXPECT_TRUE(ShuffleVectorInst::isZeroEltSplatMask(ConstantVector::get({C4, CU, CU, C4}))); in TEST()
836 EXPECT_TRUE(ShuffleVectorInst::isZeroEltSplatMask(ConstantVector::get({CU, C0, CU, C0}))); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DInstructions.h2561 static bool isZeroEltSplatMask(ArrayRef<int> Mask);
2562 static bool isZeroEltSplatMask(const Constant *Mask) {
2566 return isZeroEltSplatMask(MaskAsInts);
2576 return !changesLength() && isZeroEltSplatMask(getMask());
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DInstructions.cpp1745 bool ShuffleVectorInst::isZeroEltSplatMask(ArrayRef<int> Mask) { in isZeroEltSplatMask() function in ShuffleVectorInst