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.cc525 possibly_removed_stores_(graph->GetArena()->Adapter(kArenaAllocLSE)), in LSEVisitor()
564 for (HInstruction* store : possibly_removed_stores_) { in RemoveInstructions()
595 auto idx = std::find(possibly_removed_stores_.begin(), in KeepIfIsStore()
596 possibly_removed_stores_.end(), heap_value); in KeepIfIsStore()
597 if (idx != possibly_removed_stores_.end()) { in KeepIfIsStore()
599 possibly_removed_stores_.erase(idx); in KeepIfIsStore()
870 possibly_removed_stores_.push_back(instruction); in VisitSetLocation()
1109 ArenaVector<HInstruction*> possibly_removed_stores_; member in art::LSEVisitor