Searched refs:iterate_preorder (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp323 void iterate_preorder (BlockClosure* closure);
343 hir->iterate_preorder(this);
347 block->iterate_preorder(this);
H A Dc1_Instruction.cpp694 void BlockBegin::iterate_preorder(boolArray& mark, BlockClosure* closure) { function in class:BlockBegin
699 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_preorder(mark, closure); }
700 { for (int i = e->number_of_sux () - 1; i >= 0; i--) e->sux_at (i)->iterate_preorder(mark, closure); }
716 void BlockBegin::iterate_preorder(BlockClosure* closure) { function in class:BlockBegin
718 iterate_preorder(mark, closure);
H A Dc1_IR.cpp321 iterate_preorder(&cef);
1110 void IR::iterate_preorder(BlockClosure* closure) { function in class:IR
1112 start()->iterate_preorder(closure);
1154 start->iterate_preorder(&bp);
1186 hir->start()->iterate_preorder(this);
H A Dc1_CFGPrinter.cpp362 blocks->iterate_preorder(&print_block);
H A Dc1_Optimizer.cpp53 _hir->iterate_preorder(this);
320 _hir->iterate_preorder(this);
H A Dc1_Instruction.hpp1559 void iterate_preorder (boolArray& mark, BlockClosure* closure);
1710 void iterate_preorder (BlockClosure* closure);
H A Dc1_GraphBuilder.cpp2325 start->iterate_preorder(this);

Completed in 63 milliseconds