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

/art/compiler/optimizing/
H A Dssa_liveness_analysis.cc51 GrowableArray<HBasicBlock*>* order,
61 VisitBlockForLinearization(block->GetSuccessors().Get(0), order, visited);
71 // Nothing to do. Current order is fine.
73 // Visit the loop exit first in post order.
76 // Visit the inner loop last in post order.
79 VisitBlockForLinearization(first_successor, order, visited);
80 VisitBlockForLinearization(second_successor, order, visited);
82 order->Add(block);
86 // For simplicity of the implementation, we create post linear order. The order fo
50 VisitBlockForLinearization(HBasicBlock* block, GrowableArray<HBasicBlock*>* order, ArenaBitVector* visited) argument
[all...]

Completed in 47 milliseconds