Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dload_store_elimination.cc105 possibly_removed_stores_(allocator_.Adapter(kArenaAllocLSE)), in LSEVisitor()
223 for (HInstruction* store : possibly_removed_stores_) { in RemoveInstructions()
310 auto idx = std::find(possibly_removed_stores_.begin(), in KeepIfIsStore()
311 possibly_removed_stores_.end(), heap_value); in KeepIfIsStore()
312 if (idx != possibly_removed_stores_.end()) { in KeepIfIsStore()
314 possibly_removed_stores_.erase(idx); in KeepIfIsStore()
661 possibly_removed_stores_.push_back(instruction); in VisitSetLocation()
908 ScopedArenaVector<HInstruction*> possibly_removed_stores_; member in art::LSEVisitor