Searched refs:isValidOperands (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Instructions.cpp | 1556 assert(isValidOperands(Val, Index) && in ExtractElementInst() 1570 assert(isValidOperands(Val, Index) && in ExtractElementInst() 1578 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) { in isValidOperands() function in ExtractElementInst 1594 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst() 1608 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst() 1617 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, in isValidOperands() function in InsertElementInst 1643 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1660 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1669 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst
|
| H A D | Verifier.cpp | 3163 ExtractElementInst::isValidOperands(EI.getOperand(0), EI.getOperand(1)), in visitExtractElementInst() 3169 Assert(InsertElementInst::isValidOperands(IE.getOperand(0), IE.getOperand(1), in visitInsertElementInst() 3176 Assert(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), in visitShuffleVectorInst()
|
| H A D | Constants.cpp | 2150 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
|
| /freebsd-12.1/contrib/llvm/lib/FuzzMutate/ |
| H A D | Operations.cpp | 299 return ShuffleVectorInst::isValidOperands(Cur[0], Cur[1], V); in validShuffleVectorIndex()
|
| /freebsd-12.1/contrib/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 3520 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in ParseValID() 3527 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1])) in ParseValID() 3534 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in ParseValID() 6343 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in ParseExtractElement() 6362 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in ParseInsertElement() 6381 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in ParseShuffleVector()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 1892 static bool isValidOperands(const Value *Vec, const Value *Idx); 1957 static bool isValidOperands(const Value *Vec, const Value *NewElt, 2013 static bool isValidOperands(const Value *V1, const Value *V2,
|