Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp1608 assert(isValidOperands(Val, Index) && in ExtractElementInst()
1615 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) { in isValidOperands() function in ExtractElementInst
1631 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst()
1639 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, in isValidOperands() function in InsertElementInst
1680 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
1699 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
1725 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst
1745 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst
H A DConstantsContext.h159 assert(ShuffleVectorInst::isValidOperands(C1, C2, Mask) && in ShuffleVectorConstantExpr()
H A DVerifier.cpp4051 Check(ExtractElementInst::isValidOperands(EI.getOperand(0), EI.getOperand(1)), in visitExtractElementInst()
4057 Check(InsertElementInst::isValidOperands(IE.getOperand(0), IE.getOperand(1), in visitInsertElementInst()
4064 Check(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), in visitShuffleVectorInst()
H A DConstants.cpp2564 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
/src/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOperations.cpp332 return ShuffleVectorInst::isValidOperands(Cur[0], Cur[1], V); in validShuffleVectorIndex()
/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h1707 static bool isValidOperands(const Value *Vec, const Value *Idx);
1764 static bool isValidOperands(const Value *Vec, const Value *NewElt,
1839 static bool isValidOperands(const Value *V1, const Value *V2,
1841 static bool isValidOperands(const Value *V1, const Value *V2,
/src/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4413 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID()
4421 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1])) in parseValID()
4428 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID()
7826 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in parseExtractElement()
7845 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in parseInsertElement()
7864 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in parseShuffleVector()