Home
last modified time | relevance | path

Searched refs:isValidOperands (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp1837 assert(isValidOperands(Val, Index) && in ExtractElementInst()
1851 assert(isValidOperands(Val, Index) && in ExtractElementInst()
1875 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst()
1889 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst()
1898 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, in isValidOperands() function in InsertElementInst
1949 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
1967 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
1986 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
2001 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
2028 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst
[all …]
H A DConstantsContext.h158 assert(ShuffleVectorInst::isValidOperands(C1, C2, Mask) && in ShuffleVectorConstantExpr()
H A DVerifier.cpp3917 Check(ExtractElementInst::isValidOperands(EI.getOperand(0), EI.getOperand(1)), in visitExtractElementInst()
3923 Check(InsertElementInst::isValidOperands(IE.getOperand(0), IE.getOperand(1), in visitInsertElementInst()
3930 Check(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), in visitShuffleVectorInst()
H A DConstants.cpp2418 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
/freebsd-14.2/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOperations.cpp332 return ShuffleVectorInst::isValidOperands(Cur[0], Cur[1], V); in validShuffleVectorIndex()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h1863 static bool isValidOperands(const Value *Vec, const Value *Idx);
1928 static bool isValidOperands(const Value *Vec, const Value *NewElt,
2011 static bool isValidOperands(const Value *V1, const Value *V2,
2013 static bool isValidOperands(const Value *V1, const Value *V2,
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4157 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID()
4165 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1])) in parseValID()
4172 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID()
7391 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in parseExtractElement()
7410 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in parseInsertElement()
7429 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in parseShuffleVector()