Searched refs:DepInst (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemoryDependenceAnalysis.h | 479 std::optional<int32_t> getClobberOffset(LoadInst *DepInst) const { in getClobberOffset() argument 480 const auto Off = ClobberOffsets.find(DepInst); in getClobberOffset()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | GVN.cpp | 1332 Instruction *DepInst = DepInfo.getInst(); in AnalyzeLoadAvailability() local 1339 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) { in AnalyzeLoadAvailability() 1353 if (LoadInst *DepLoad = dyn_cast<LoadInst>(DepInst)) { in AnalyzeLoadAvailability() 1382 if (MemIntrinsic *DepMI = dyn_cast<MemIntrinsic>(DepInst)) { in AnalyzeLoadAvailability() 1395 dbgs() << " is clobbered by " << *DepInst << '\n';); in AnalyzeLoadAvailability() 1405 if (isa<AllocaInst>(DepInst) || isLifetimeStart(DepInst)) in AnalyzeLoadAvailability() 1409 getInitialValueOfAllocation(DepInst, TLI, Load->getType())) in AnalyzeLoadAvailability() 1412 if (StoreInst *S = dyn_cast<StoreInst>(DepInst)) { in AnalyzeLoadAvailability() 1427 if (LoadInst *LD = dyn_cast<LoadInst>(DepInst)) { in AnalyzeLoadAvailability() 1445 if (auto *Sel = dyn_cast<SelectInst>(DepInst)) { in AnalyzeLoadAvailability() [all …]
|
| H A D | NewGVN.cpp | 1487 LoadInst *LI, Instruction *DepInst, in performSymbolicLoadCoercion() argument 1490 if (auto *DepSI = dyn_cast<StoreInst>(DepInst)) { in performSymbolicLoadCoercion() 1508 } else if (auto *DepLI = dyn_cast<LoadInst>(DepInst)) { in performSymbolicLoadCoercion() 1523 } else if (auto *DepMI = dyn_cast<MemIntrinsic>(DepInst)) { in performSymbolicLoadCoercion() 1535 if (auto *II = dyn_cast<IntrinsicInst>(DepInst)) { in performSymbolicLoadCoercion() 1546 if (!DepInst->getType()->isPointerTy() || in performSymbolicLoadCoercion() 1547 (LoadPtr != lookupOperandLeader(DepInst) && in performSymbolicLoadCoercion() 1548 !AA->isMustAlias(LoadPtr, DepInst))) in performSymbolicLoadCoercion() 1554 if (isa<AllocaInst>(DepInst)) { in performSymbolicLoadCoercion() 1557 getInitialValueOfAllocation(DepInst, TLI, LoadType)) in performSymbolicLoadCoercion()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
| H A D | ObjCARCOpts.cpp | 1102 Instruction *DepInst = nullptr; in OptimizeIndividualCallImpl() local 1114 DepInst = findSingleDependency(NeedsPositiveRetainCount, Arg, in OptimizeIndividualCallImpl() 1119 DepInst = findSingleDependency(AutoreleasePoolBoundary, Arg, in OptimizeIndividualCallImpl() 1134 if (DepInst != PN) in OptimizeIndividualCallImpl()
|