Home
last modified time | relevance | path

Searched refs:PotentialCopies (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp366 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()
1826 SmallSetVector<Value *, 4> PotentialCopies; in checkForAllUses() local
1828 *this, *SI, PotentialCopies, QueryingAA, UsedAssumedInformation, in checkForAllUses()
1833 << PotentialCopies.size() in checkForAllUses()
1835 for (Value *PotentialCopy : PotentialCopies) in checkForAllUses()
H A DAttributorAttributes.cpp4182 PotentialCopies.clear(); in isDeadStore()
4183 if (!AA::getPotentialCopiesOfStoredValue(A, SI, PotentialCopies, *this, in isDeadStore()
4191 LLVM_DEBUG(dbgs() << "[AAIsDead] Store has " << PotentialCopies.size() in isDeadStore()
4195 return llvm::all_of(PotentialCopies, [&](Value *V) { in isDeadStore()
4294 SmallSetVector<Value *, 4> PotentialCopies; member
11128 SmallSetVector<Value *, 4> PotentialCopies; in handleLoadInst() local
11131 if (!AA::getPotentiallyLoadedValues(A, LI, PotentialCopies, in handleLoadInst()
11171 bool DynamicallyUnique = llvm::all_of(PotentialCopies, [&](Value *PC) { in handleLoadInst()
11182 for (auto *PotentialCopy : PotentialCopies) { in handleLoadInst()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h358 Attributor &A, StoreInst &SI, SmallSetVector<Value *, 4> &PotentialCopies,