Searched defs:DeadStackObjects (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp71 SmallPtrSet<Value*, 16> &DeadStackObjects);
587 SmallPtrSet<Value*, 16> DeadStackObjects; local
593 DeadStackObjects.insert(AI);
600 DeadStackObjects.insert(AI);
612 if (DeadStackObjects.count(Pointer)) {
619 DeleteDeadInstruction(Dead, *MD, &DeadStackObjects);
629 DeleteDeadInstruction(Inst, *MD, &DeadStackObjects);
636 DeadStackObjects.erase(A);
649 for (SmallPtrSet<Value*, 16>::iterator I = DeadStackObjects.begin(),
650 E = DeadStackObjects
707 RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc, SmallPtrSet<Value*, 16> &DeadStackObjects) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp637 /// the DeadStackObjects set. If so, they become live because the location is
640 SmallSetVector<Value *, 16> &DeadStackObjects,
652 DeadStackObjects.remove(const_cast<Value*>(UnderlyingPointer));
657 DeadStackObjects.remove_if([&](Value *I) {
677 SmallSetVector<Value*, 16> DeadStackObjects; local
683 DeadStackObjects.insert(&I);
688 DeadStackObjects.insert(&I);
695 DeadStackObjects.insert(&AI);
712 if (!DeadStackObjects.count(Pointer)) {
731 deleteDeadInstruction(Dead, &BBI, *MD, *TLI, &DeadStackObjects);
639 removeAccessedObjects(const MemoryLocation &LoadedLoc, SmallSetVector<Value *, 16> &DeadStackObjects, const DataLayout &DL, AliasAnalysis *AA, const TargetLibraryInfo *TLI) argument
[all...]

Completed in 146 milliseconds