Searched refs:isValidOperands (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | Instructions.cpp | 1972 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 D | ConstantsContext.h | 184 assert(ShuffleVectorInst::isValidOperands(C1, C2, Mask) && in ShuffleVectorConstantExpr()
|
| H A D | Verifier.cpp | 3767 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 D | Constants.cpp | 2621 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
|
| /openbsd-src/gnu/llvm/llvm/lib/FuzzMutate/ |
| H A D | Operations.cpp | 309 return ShuffleVectorInst::isValidOperands(Cur[0], Cur[1], V); in validShuffleVectorIndex()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 1908 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 D | LLParser.cpp | 4004 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()
|