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

/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.cpp795 PhiNode *nphi = slice_memory(at); local
796 igvn->register_new_node_with_optimizer( nphi );
797 node_map.map(_idx, nphi);
804 nphi = node_map[ophi->_idx]->as_Phi();
815 nphi = optphi->slice_memory(at);
816 igvn->register_new_node_with_optimizer( nphi );
817 node_map.map(optphi->_idx, nphi);
823 nphi->set_req(i, opt);
826 return nphi;
H A Dloopnode.cpp699 Node* nphi = PhiNode::make(phi->in(0), phi->in(LoopNode::EntryControl), TypeInt::INT); local
700 nphi->set_req(LoopNode::LoopBackControl, phi->in(LoopNode::LoopBackControl));
701 nphi = _igvn.register_new_node_with_optimizer(nphi);
702 set_ctrl(nphi, get_ctrl(phi));
703 _igvn.replace_node(phi, nphi);
704 phi = nphi->as_Phi();

Completed in 86 milliseconds