Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DAttributor.cpp321 Attributor &A, Ty &I, SmallSetVector<Value *, 4> &PotentialCopies, in getPotentialCopiesOfMemoryValue() argument
481 PotentialCopies.insert(NewCopies.begin(), NewCopies.end()); in getPotentialCopiesOfMemoryValue()
498 Attributor &A, StoreInst &SI, SmallSetVector<Value *, 4> &PotentialCopies, in getPotentialCopiesOfStoredValue() argument
503 A, SI, PotentialCopies, PotentialValueOrigins, QueryingAA, in getPotentialCopiesOfStoredValue()
1394 SmallSetVector<Value *, 4> PotentialCopies; in checkForAllUses() local
1396 *this, *SI, PotentialCopies, QueryingAA, UsedAssumedInformation, in checkForAllUses()
1399 << PotentialCopies.size() in checkForAllUses()
1401 for (Value *PotentialCopy : PotentialCopies) in checkForAllUses()
H A DAttributorAttributes.cpp3512 SmallSetVector<Value *, 4> PotentialCopies; in isDeadStore() local
3513 if (!AA::getPotentialCopiesOfStoredValue(A, SI, PotentialCopies, *this, in isDeadStore()
3516 return llvm::all_of(PotentialCopies, [&](Value *V) { in isDeadStore()
10114 SmallSetVector<Value *, 4> PotentialCopies; in handleLoadInst() local
10117 if (!AA::getPotentiallyLoadedValues(A, LI, PotentialCopies, in handleLoadInst()
10157 bool DynamicallyUnique = llvm::all_of(PotentialCopies, [&](Value *PC) { in handleLoadInst()
10168 for (auto *PotentialCopy : PotentialCopies) { in handleLoadInst()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h256 Attributor &A, StoreInst &SI, SmallSetVector<Value *, 4> &PotentialCopies,