Searched refs:isValidOperands (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/IR/ |
D | Instructions.cpp | 1447 assert(isValidOperands(Val, Index) && in ExtractElementInst() 1461 assert(isValidOperands(Val, Index) && in ExtractElementInst() 1470 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) { in isValidOperands() function in ExtractElementInst 1487 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst() 1501 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst() 1510 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, in isValidOperands() function in InsertElementInst 1537 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1554 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1563 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst
|
D | Verifier.cpp | 1667 Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0), in visitExtractElementInst() 1674 Assert1(InsertElementInst::isValidOperands(IE.getOperand(0), in visitInsertElementInst() 1682 Assert1(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), in visitShuffleVectorInst()
|
D | Constants.cpp | 1937 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 2656 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in ParseValID() 2663 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1])) in ParseValID() 2670 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in ParseValID() 3792 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in ParseExtractElement() 3811 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in ParseInsertElement() 3830 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in ParseShuffleVector()
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 1572 static bool isValidOperands(const Value *Vec, const Value *Idx); 1633 static bool isValidOperands(const Value *Vec, const Value *NewElt, 1685 static bool isValidOperands(const Value *V1, const Value *V2,
|