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

/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp731 ProjNode *cpn = NULL; local
733 cpn = cn->fast_out(k)->as_Proj();
734 assert(cpn->is_CatchProj(), "must be a CatchProjNode");
735 if (cpn->_con == CatchProjNode::fall_through_index)
736 projs->fallthrough_catchproj = cpn;
738 assert(cpn->_con == CatchProjNode::catch_all_index, "must be correct index.");
739 projs->catchall_catchproj = cpn;
H A Dmacro.cpp179 ProjNode *cpn = NULL; local
181 cpn = cn->fast_out(k)->as_Proj();
182 assert(cpn->is_CatchProj(), "must be a CatchProjNode");
183 if (cpn->_con == CatchProjNode::fall_through_index)
184 _fallthroughcatchproj = cpn;
186 assert(cpn->_con == CatchProjNode::catch_all_index, "must be correct index.");
187 _catchallcatchproj = cpn;

Completed in 82 milliseconds