Searched refs:PotentialCopies (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | Attributor.cpp | 366 Attributor &A, Ty &I, SmallSetVector<Value *, 4> &PotentialCopies, in getPotentialCopiesOfMemoryValue() argument 583 PotentialCopies.insert(NewCopies.begin(), NewCopies.end()); in getPotentialCopiesOfMemoryValue() 601 Attributor &A, StoreInst &SI, SmallSetVector<Value *, 4> &PotentialCopies, in getPotentialCopiesOfStoredValue() argument 605 A, SI, PotentialCopies, nullptr, QueryingAA, UsedAssumedInformation, in getPotentialCopiesOfStoredValue() 1830 SmallSetVector<Value *, 4> PotentialCopies; in checkForAllUses() local 1832 *this, *SI, PotentialCopies, QueryingAA, UsedAssumedInformation, in checkForAllUses() 1837 << PotentialCopies.size() in checkForAllUses() 1839 for (Value *PotentialCopy : PotentialCopies) in checkForAllUses()
|
H A D | AttributorAttributes.cpp | 4185 PotentialCopies.clear(); in isDeadStore() 4186 if (!AA::getPotentialCopiesOfStoredValue(A, SI, PotentialCopies, *this, in isDeadStore() 4194 LLVM_DEBUG(dbgs() << "[AAIsDead] Store has " << PotentialCopies.size() in isDeadStore() 4198 return llvm::all_of(PotentialCopies, [&](Value *V) { in isDeadStore() 4297 SmallSetVector<Value *, 4> PotentialCopies; member 11119 SmallSetVector<Value *, 4> PotentialCopies; in handleLoadInst() local 11122 if (!AA::getPotentiallyLoadedValues(A, LI, PotentialCopies, in handleLoadInst() 11162 bool DynamicallyUnique = llvm::all_of(PotentialCopies, [&](Value *PC) { in handleLoadInst() 11173 for (auto *PotentialCopy : PotentialCopies) { in handleLoadInst()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | Attributor.h | 359 Attributor &A, StoreInst &SI, SmallSetVector<Value *, 4> &PotentialCopies,
|