| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Instruction.h | 490 static bool isValidOperands(const Value *Vec, const Value *NewElt, in isValidOperands() function 492 return llvm::InsertElementInst::isValidOperands(Vec->Val, NewElt->Val, in isValidOperands() 513 static bool isValidOperands(const Value *Vec, const Value *Idx) { in isValidOperands() function 514 return llvm::ExtractElementInst::isValidOperands(Vec->Val, Idx->Val); in isValidOperands() 548 static bool isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function 550 return llvm::ShuffleVectorInst::isValidOperands(V1->Val, V2->Val, in isValidOperands() 553 static bool isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function 555 return llvm::ShuffleVectorInst::isValidOperands(V1->Val, V2->Val, Mask); in isValidOperands()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instructions.cpp | 1674 assert(isValidOperands(Val, Index) && in ExtractElementInst() 1681 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) { in isValidOperands() function in ExtractElementInst 1695 assert(isValidOperands(Vec, Elt, Index) && in InsertElementInst() 1703 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, in isValidOperands() function in InsertElementInst 1743 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1761 assert(isValidOperands(V1, V2, Mask) && in ShuffleVectorInst() 1787 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst 1807 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2, in isValidOperands() function in ShuffleVectorInst
|
| H A D | ConstantsContext.h | 168 assert(ShuffleVectorInst::isValidOperands(C1, C2, Mask) && in ShuffleVectorConstantExpr()
|
| H A D | Verifier.cpp | 4195 Check(ExtractElementInst::isValidOperands(EI.getOperand(0), EI.getOperand(1)), in visitExtractElementInst() 4201 Check(InsertElementInst::isValidOperands(IE.getOperand(0), IE.getOperand(1), in visitInsertElementInst() 4208 Check(ShuffleVectorInst::isValidOperands(SV.getOperand(0), SV.getOperand(1), in visitShuffleVectorInst()
|
| H A D | Constants.cpp | 2593 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) && in getShuffleVector()
|
| /freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/ |
| H A D | Operations.cpp | 337 return ShuffleVectorInst::isValidOperands(Cur[0], Cur[1], V); in validShuffleVectorIndex()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 1830 LLVM_ABI static bool isValidOperands(const Value *Vec, const Value *Idx); 1890 LLVM_ABI static bool isValidOperands(const Value *Vec, const Value *NewElt, 1968 LLVM_ABI static bool isValidOperands(const Value *V1, const Value *V2, 1970 LLVM_ABI static bool isValidOperands(const Value *V1, const Value *V2,
|
| /freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 4514 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID() 4522 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1])) in parseValID() 4529 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2])) in parseValID() 8139 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in parseExtractElement() 8158 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in parseInsertElement() 8177 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in parseShuffleVector()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/ |
| H A D | DemangleTestCases.inc | 21528 …ntInst15isValidOperandsEPKNS_5ValueES3_", "llvm::ExtractElementInst::isValidOperands(llvm::Value c… 21533 …Inst15isValidOperandsEPKNS_5ValueES3_S3_", "llvm::InsertElementInst::isValidOperands(llvm::Value c… 21538 …Inst15isValidOperandsEPKNS_5ValueES3_S3_", "llvm::ShuffleVectorInst::isValidOperands(llvm::Value c…
|