Searched defs:worklist_ (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dssa_phi_elimination.h34 worklist_(graph->GetArena()->Adapter(kArenaAllocSsaPhiElimination)) {
35 worklist_.reserve(kDefaultWorklistSize);
46 ArenaVector<HPhi*> worklist_; member in class:art::SsaDeadPhiElimination
63 worklist_(graph->GetArena()->Adapter(kArenaAllocSsaPhiElimination)) {
64 worklist_.reserve(kDefaultWorklistSize);
72 ArenaVector<HPhi*> worklist_; member in class:art::SsaRedundantPhiElimination
H A Dreference_type_propagation.h100 ArenaVector<HInstruction*> worklist_; member in class:art::ReferenceTypePropagation
H A Dreference_type_propagation.cc82 worklist_(worklist),
112 ArenaVector<HInstruction*>* worklist_; member in class:art::ReferenceTypePropagation::RTPVisitor
124 worklist_(graph->GetArena()->Adapter(kArenaAllocReferenceTypePropagation)),
157 RTPVisitor visitor(graph_, hint_dex_cache_, &handle_cache_, &worklist_, is_first_run_);
162 worklist_.reserve(kDefaultWorklistSize);
176 RTPVisitor visitor(graph_, hint_dex_cache_, &handle_cache_, &worklist_, is_first_run_);
799 worklist_->push_back(instr);
897 while (!worklist_.empty()) {
898 HInstruction* instruction = worklist_.back();
899 worklist_
[all...]

Completed in 53 milliseconds