Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp1972 assert(isValidOperands(Val, Index) && in ExtractElementInst()
1986 assert(isValidOperands(Val, Index) && in ExtractElementInst()
1994 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) { in isValidOperands() function in ExtractElementInst
2010 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst()
2024 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst()
2033 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, in isValidOperands() function in InsertElementInst
2084 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
2102 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
2121 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
2136 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst()
[all …]
H A DConstantsContext.h184 assert(ShuffleVectorInst::isValidOperands(C1, C2, Mask) && in ShuffleVectorConstantExpr()
H A DVerifier.cpp3767 Check(ExtractElementInst::isValidOperands(EI.getOperand(0), EI.getOperand(1)), in visitExtractElementInst()
3773 Check(InsertElementInst::isValidOperands(IE.getOperand(0), IE.getOperand(1), in visitInsertElementInst()
3780 Check(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), in visitShuffleVectorInst()
H A DConstants.cpp2621 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
/openbsd-src/gnu/llvm/llvm/lib/FuzzMutate/
H A DOperations.cpp309 return ShuffleVectorInst::isValidOperands(Cur[0], Cur[1], V); in validShuffleVectorIndex()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DInstructions.h1908 static bool isValidOperands(const Value *Vec, const Value *Idx);
1973 static bool isValidOperands(const Value *Vec, const Value *NewElt,
2056 static bool isValidOperands(const Value *V1, const Value *V2,
2058 static bool isValidOperands(const Value *V1, const Value *V2,
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DLLParser.cpp4004 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID()
4012 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1])) in parseValID()
4019 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID()
7212 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in parseExtractElement()
7231 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in parseInsertElement()
7250 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in parseShuffleVector()