/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SCCPSolver.cpp | 657 void visitInsertValueInst(InsertValueInst &IVI); 1363 void SCCPInstVisitor::visitInsertValueInst(InsertValueInst &IVI) { in visitInsertValueInst() argument 1364 auto *STy = dyn_cast<StructType>(IVI.getType()); in visitInsertValueInst() 1366 return (void)markOverdefined(&IVI); in visitInsertValueInst() 1370 if (SCCPSolver::isOverdefined(ValueState[&IVI])) in visitInsertValueInst() 1371 return (void)markOverdefined(&IVI); in visitInsertValueInst() 1375 if (IVI.getNumIndices() != 1) in visitInsertValueInst() 1376 return (void)markOverdefined(&IVI); in visitInsertValueInst() 1378 Value *Aggr = IVI.getAggregateOperand(); in visitInsertValueInst() 1379 unsigned Idx = *IVI.idx_begin(); in visitInsertValueInst() [all …]
|
H A D | FunctionComparator.cpp | 713 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(L)) { in cmpOperations() local 714 ArrayRef<unsigned> LIndices = IVI->getIndices(); in cmpOperations()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 306 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Inst)) in getHashValueImpl() local 307 return hash_combine(IVI->getOpcode(), IVI->getOperand(0), in getHashValueImpl() 308 IVI->getOperand(1), in getHashValueImpl() 309 hash_combine_range(IVI->idx_begin(), IVI->idx_end())); in getHashValueImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/ |
H A D | SLPVectorizer.h | 136 bool vectorizeInsertValueInst(InsertValueInst *IVI, BasicBlock *BB,
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | Analysis.cpp | 342 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(V)) { in getNoopInput() local 344 ArrayRef<unsigned> InsertLoc = IVI->getIndices(); in getNoopInput() 351 NoopInput = IVI->getInsertedValueOperand(); in getNoopInput()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 824 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) in hasSameSpecialState() local 825 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); in hasSameSpecialState()
|
H A D | Instructions.cpp | 2462 InsertValueInst::InsertValueInst(const InsertValueInst &IVI) in InsertValueInst() argument 2463 : Instruction(IVI.getType(), InsertValue, in InsertValueInst() 2465 Indices(IVI.Indices) { in InsertValueInst() 2466 Op<0>() = IVI.getOperand(0); in InsertValueInst() 2467 Op<1>() = IVI.getOperand(1); in InsertValueInst() 2468 SubclassOptionalData = IVI.SubclassOptionalData; in InsertValueInst()
|
H A D | Verifier.cpp | 598 void visitInsertValueInst(InsertValueInst &IVI); 4359 void Verifier::visitInsertValueInst(InsertValueInst &IVI) { in visitInsertValueInst() argument 4360 Check(ExtractValueInst::getIndexedType(IVI.getAggregateOperand()->getType(), in visitInsertValueInst() 4361 IVI.getIndices()) == in visitInsertValueInst() 4362 IVI.getOperand(1)->getType(), in visitInsertValueInst() 4363 "Invalid InsertValueInst operands!", &IVI); in visitInsertValueInst() 4365 visitInstruction(IVI); in visitInsertValueInst()
|
H A D | AsmWriter.cpp | 4331 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&I)) { in printInstruction() local 4335 for (unsigned i : IVI->indices()) in printInstruction()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 2200 IVI = IDecl->ivar_begin(), IVE = IDecl->ivar_end(); in CheckImplementationIvars() local 2201 for (; numIvars > 0 && IVI != IVE; ++IVI) { in CheckImplementationIvars() 2203 ObjCIvarDecl* ClsIvar = *IVI; in CheckImplementationIvars() 2233 else if (IVI != IVE) in CheckImplementationIvars() 2234 Diag(IVI->getLocation(), diag::err_inconsistent_ivar_count); in CheckImplementationIvars()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
H A D | DXILBitcodeWriter.cpp | 2281 const InsertValueInst *IVI = cast<InsertValueInst>(&I); in writeInstruction() local 2282 Vals.append(IVI->idx_begin(), IVI->idx_end()); in writeInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InstructionSimplify.cpp | 5202 for (auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI != nullptr; in simplifyExtractValueInst() local 5203 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) { in simplifyExtractValueInst() 5204 ArrayRef<unsigned> InsertValueIdxs = IVI->getIndices(); in simplifyExtractValueInst() 5210 return IVI->getInsertedValueOperand(); in simplifyExtractValueInst()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 3023 const InsertValueInst *IVI = cast<InsertValueInst>(&I); in writeInstruction() local 3024 Vals.append(IVI->idx_begin(), IVI->idx_end()); in writeInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | IRTranslator.cpp | 1462 } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(&U)) { in getOffsetFromIndices() local 1463 for (auto Idx : IVI->indices()) in getOffsetFromIndices()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 18339 bool SLPVectorizerPass::vectorizeInsertValueInst(InsertValueInst *IVI, in vectorizeInsertValueInst() argument 18342 if (!R.canMapToVector(IVI->getType())) in vectorizeInsertValueInst() 18347 if (!findBuildAggregate(IVI, TTI, BuildVectorOpds, BuildVectorInsts)) in vectorizeInsertValueInst() 18352 return OptimizationRemarkMissed(SV_NAME, "NotPossible", IVI) in vectorizeInsertValueInst() 18358 LLVM_DEBUG(dbgs() << "SLP: array mappable to vector: " << *IVI << "\n"); in vectorizeInsertValueInst()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instructions.h | 2393 InsertValueInst(const InsertValueInst &IVI);
|
/freebsd/share/misc/ |
H A D | usb_vendors | 12526 1745 Test and Measurement Device (IVI)
|