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

/openjdk7/hotspot/src/share/vm/opto/
H A DloopPredicate.cpp758 Node *current_proj = loop->tail(); //start from tail local
759 while (current_proj != head) {
760 if (loop == get_loop(current_proj) && // still in the loop ?
761 current_proj->is_Proj() && // is a projection ?
762 current_proj->in(0)->Opcode() == Op_If) { // is a if projection ?
763 if_proj_list.push(current_proj);
765 current_proj = idom(current_proj);

Completed in 138 milliseconds