Searched refs:isValidOperands (Results 1 – 7 of 7) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instructions.cpp | 1837 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 D | ConstantsContext.h | 158 assert(ShuffleVectorInst::isValidOperands(C1, C2, Mask) && in ShuffleVectorConstantExpr()
|
| H A D | Verifier.cpp | 3917 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 D | Constants.cpp | 2418 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/FuzzMutate/ |
| H A D | Operations.cpp | 332 return ShuffleVectorInst::isValidOperands(Cur[0], Cur[1], V); in validShuffleVectorIndex()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 1863 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 D | LLParser.cpp | 4157 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()
|