Searched defs:new_iff (Results 1 - 2 of 2) sorted by relevance
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | split_if.cpp | 450 Node *new_iff = split_thru_region( iff, region ); local 452 // Replace both uses of 'new_iff' with Regions merging True/False 453 // paths. This makes 'new_iff' go dead. 459 ifp->set_req(0, new_iff); 474 new_iff->set_req(0, new_iff); // hook self so it does not go dead 476 new_iff->set_req(0, region); 487 _igvn.remove_dead_node(new_iff);
|
H A D | loopPredicate.cpp | 122 // iff new_iff 146 // The true projecttion (if_cont) of the new_iff is returned. 183 // Create new_iff 185 IfNode *new_iff = iff->clone()->as_If(); local 186 new_iff->set_req(0, entry); 187 register_control(new_iff, lp, entry); 188 Node *if_cont = new (C) IfTrueNode(new_iff); 189 Node *if_uct = new (C) IfFalseNode(new_iff); 194 register_control(if_cont, lp, new_iff); 195 register_control(if_uct, get_loop(rgn), new_iff); 262 IfNode *new_iff = iff->clone()->as_If(); local [all...] |
Completed in 793 milliseconds