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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp705 void BlockBegin::iterate_postorder(boolArray& mark, BlockClosure* closure) { function in class:BlockBegin
709 { for (int i = number_of_exception_handlers() - 1; i >= 0; i--) exception_handler_at(i)->iterate_postorder(mark, closure); }
710 { for (int i = e->number_of_sux () - 1; i >= 0; i--) e->sux_at (i)->iterate_postorder(mark, closure); }
722 void BlockBegin::iterate_postorder(BlockClosure* closure) { function in class:BlockBegin
724 iterate_postorder(mark, closure);
H A Dc1_IR.cpp1116 void IR::iterate_postorder(BlockClosure* closure) { function in class:IR
1118 start()->iterate_postorder(closure);

Completed in 36 milliseconds