Searched refs:isValidOperands (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 1434 assert(isValidOperands(Val, Index) && in ExtractElementInst() 1448 assert(isValidOperands(Val, Index) && in ExtractElementInst() 1457 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) { in isValidOperands() function in ExtractElementInst 1474 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst() 1488 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst() 1497 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, in isValidOperands() function in InsertElementInst 1524 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1541 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1550 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst
|
D | Verifier.cpp | 1289 Assert1(ExtractElementInst::isValidOperands(EI.getOperand(0), in visitExtractElementInst() 1296 Assert1(InsertElementInst::isValidOperands(IE.getOperand(0), in visitInsertElementInst() 1304 Assert1(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), in visitShuffleVectorInst()
|
D | Constants.cpp | 1855 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 2318 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in ParseValID() 2325 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1])) in ParseValID() 2332 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in ParseValID() 3419 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in ParseExtractElement() 3438 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in ParseInsertElement() 3457 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in ParseShuffleVector()
|
/external/llvm/include/llvm/ |
D | Instructions.h | 1546 static bool isValidOperands(const Value *Vec, const Value *Idx); 1608 static bool isValidOperands(const Value *Vec, const Value *NewElt, 1661 static bool isValidOperands(const Value *V1, const Value *V2,
|