Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Transforms/IPO/
DAttributor.cpp335 Attributor &A, Ty &I, SmallSetVector<Value *, 4> &PotentialCopies, in getPotentialCopiesOfMemoryValue() argument
522 PotentialCopies.insert(NewCopies.begin(), NewCopies.end()); in getPotentialCopiesOfMemoryValue()
539 Attributor &A, StoreInst &SI, SmallSetVector<Value *, 4> &PotentialCopies, in getPotentialCopiesOfStoredValue() argument
544 A, SI, PotentialCopies, PotentialValueOrigins, QueryingAA, in getPotentialCopiesOfStoredValue()
1624 SmallSetVector<Value *, 4> PotentialCopies; in checkForAllUses() local
1626 *this, *SI, PotentialCopies, QueryingAA, UsedAssumedInformation, in checkForAllUses()
1631 << PotentialCopies.size() in checkForAllUses()
1633 for (Value *PotentialCopy : PotentialCopies) in checkForAllUses()
DAttributorAttributes.cpp4157 PotentialCopies.clear(); in isDeadStore()
4158 if (!AA::getPotentialCopiesOfStoredValue(A, SI, PotentialCopies, *this, in isDeadStore()
4166 LLVM_DEBUG(dbgs() << "[AAIsDead] Store has " << PotentialCopies.size() in isDeadStore()
4170 return llvm::all_of(PotentialCopies, [&](Value *V) { in isDeadStore()
4258 SmallSetVector<Value *, 4> PotentialCopies; member
10741 SmallSetVector<Value *, 4> PotentialCopies; in handleLoadInst() local
10744 if (!AA::getPotentiallyLoadedValues(A, LI, PotentialCopies, in handleLoadInst()
10784 bool DynamicallyUnique = llvm::all_of(PotentialCopies, [&](Value *PC) { in handleLoadInst()
10795 for (auto *PotentialCopy : PotentialCopies) { in handleLoadInst()
/openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
DAttributor.h341 Attributor &A, StoreInst &SI, SmallSetVector<Value *, 4> &PotentialCopies,