Searched refs:DepInst (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | GVN.cpp | 1239 Instruction *DepInst = DepInfo.getInst(); in AnalyzeLoadAvailability() local 1246 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) { in AnalyzeLoadAvailability() 1260 if (LoadInst *DepLoad = dyn_cast<LoadInst>(DepInst)) { in AnalyzeLoadAvailability() 1288 if (MemIntrinsic *DepMI = dyn_cast<MemIntrinsic>(DepInst)) { in AnalyzeLoadAvailability() 1301 dbgs() << " is clobbered by " << *DepInst << '\n';); in AnalyzeLoadAvailability() 1311 if (isa<AllocaInst>(DepInst) || isLifetimeStart(DepInst)) in AnalyzeLoadAvailability() 1315 getInitialValueOfAllocation(DepInst, TLI, Load->getType())) in AnalyzeLoadAvailability() 1318 if (StoreInst *S = dyn_cast<StoreInst>(DepInst)) { in AnalyzeLoadAvailability() 1333 if (LoadInst *LD = dyn_cast<LoadInst>(DepInst)) { in AnalyzeLoadAvailability() 1350 if (auto *Sel = dyn_cast<SelectInst>(DepInst)) { in AnalyzeLoadAvailability() [all …]
|
H A D | NewGVN.cpp | 1450 LoadInst *LI, Instruction *DepInst, in performSymbolicLoadCoercion() argument 1453 if (auto *DepSI = dyn_cast<StoreInst>(DepInst)) { in performSymbolicLoadCoercion() 1471 } else if (auto *DepLI = dyn_cast<LoadInst>(DepInst)) { in performSymbolicLoadCoercion() 1486 } else if (auto *DepMI = dyn_cast<MemIntrinsic>(DepInst)) { in performSymbolicLoadCoercion() 1500 if (LoadPtr != lookupOperandLeader(DepInst) && in performSymbolicLoadCoercion() 1501 !AA->isMustAlias(LoadPtr, DepInst)) in performSymbolicLoadCoercion() 1507 if (isa<AllocaInst>(DepInst)) { in performSymbolicLoadCoercion() 1512 else if (auto *II = dyn_cast<IntrinsicInst>(DepInst)) { in performSymbolicLoadCoercion() 1516 getInitialValueOfAllocation(DepInst, TLI, LoadType)) in performSymbolicLoadCoercion()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | MemoryDependenceAnalysis.h | 480 std::optional<int32_t> getClobberOffset(LoadInst *DepInst) const { in getClobberOffset() 481 const auto Off = ClobberOffsets.find(DepInst); in getClobberOffset() 479 getClobberOffset(LoadInst * DepInst) getClobberOffset() argument
|
/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()
|