< prev index next >

src/hotspot/share/opto/split_if.cpp

Print this page

  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "memory/allocation.inline.hpp"
 27 #include "opto/addnode.hpp"
 28 #include "opto/callnode.hpp"

 29 #include "opto/loopnode.hpp"
 30 #include "opto/movenode.hpp"
 31 #include "opto/node.hpp"
 32 #include "opto/opaquenode.hpp"
 33 
 34 //------------------------------split_thru_region------------------------------
 35 // Split Node 'n' through merge point.
 36 RegionNode* PhaseIdealLoop::split_thru_region(Node* n, RegionNode* region) {
 37   assert(n->is_CFG(), "");
 38   RegionNode* r = new RegionNode(region->req());
 39   IdealLoopTree* loop = get_loop(n);
 40   for (uint i = 1; i < region->req(); i++) {
 41     Node* x = n->clone();
 42     Node* in0 = n->in(0);
 43     if (in0->in(0) == region) x->set_req(0, in0->in(i));
 44     for (uint j = 1; j < n->req(); j++) {
 45       Node* in = n->in(j);
 46       if (get_ctrl(in) == region) {
 47         x->set_req(j, in->in(i));
 48       }

607       Node* n = region->out(i);
608       if( n == region ) continue;
609       // The IF to be split is OK.
610       if( n == iff ) continue;
611       if( !n->is_Phi() ) {      // Found pinned memory op or such
612         if (split_up(n, region, iff)) {
613           i = region->refresh_out_pos(i);
614           progress = true;
615         }
616         continue;
617       }
618       assert( n->in(0) == region, "" );
619 
620       // Recursively split up all users of a Phi
621       for (j = n->outs(); n->has_out(j); j++) {
622         Node* m = n->out(j);
623         // If m is dead, throw it away, and declare progress
624         if (_loop_or_ctrl[m->_idx] == nullptr) {
625           _igvn.remove_dead_node(m);
626           // fall through
627         }
628         else if (m != iff && split_up(m, region, iff)) {
629           // fall through
630         } else {
631           continue;
632         }
633         // Something unpredictable changed.
634         // Tell the iterators to refresh themselves, and rerun the loop.
635         i = region->refresh_out_pos(i);
636         j = region->refresh_out_pos(j);
637         progress = true;
638       }
639     }
640   }
641 
642   // Now we have no instructions in the block containing the IF.
643   // Split the IF.
644   RegionNode *new_iff = split_thru_region(iff, region);
645 
646   // Replace both uses of 'new_iff' with Regions merging True/False
647   // paths.  This makes 'new_iff' go dead.
648   Node *old_false = nullptr, *old_true = nullptr;

  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "precompiled.hpp"
 26 #include "memory/allocation.inline.hpp"
 27 #include "opto/addnode.hpp"
 28 #include "opto/callnode.hpp"
 29 #include "opto/inlinetypenode.hpp"
 30 #include "opto/loopnode.hpp"
 31 #include "opto/movenode.hpp"
 32 #include "opto/node.hpp"
 33 #include "opto/opaquenode.hpp"
 34 
 35 //------------------------------split_thru_region------------------------------
 36 // Split Node 'n' through merge point.
 37 RegionNode* PhaseIdealLoop::split_thru_region(Node* n, RegionNode* region) {
 38   assert(n->is_CFG(), "");
 39   RegionNode* r = new RegionNode(region->req());
 40   IdealLoopTree* loop = get_loop(n);
 41   for (uint i = 1; i < region->req(); i++) {
 42     Node* x = n->clone();
 43     Node* in0 = n->in(0);
 44     if (in0->in(0) == region) x->set_req(0, in0->in(i));
 45     for (uint j = 1; j < n->req(); j++) {
 46       Node* in = n->in(j);
 47       if (get_ctrl(in) == region) {
 48         x->set_req(j, in->in(i));
 49       }

608       Node* n = region->out(i);
609       if( n == region ) continue;
610       // The IF to be split is OK.
611       if( n == iff ) continue;
612       if( !n->is_Phi() ) {      // Found pinned memory op or such
613         if (split_up(n, region, iff)) {
614           i = region->refresh_out_pos(i);
615           progress = true;
616         }
617         continue;
618       }
619       assert( n->in(0) == region, "" );
620 
621       // Recursively split up all users of a Phi
622       for (j = n->outs(); n->has_out(j); j++) {
623         Node* m = n->out(j);
624         // If m is dead, throw it away, and declare progress
625         if (_loop_or_ctrl[m->_idx] == nullptr) {
626           _igvn.remove_dead_node(m);
627           // fall through
628         } else if (m != iff && split_up(m, region, iff)) {

629           // fall through
630         } else {
631           continue;
632         }
633         // Something unpredictable changed.
634         // Tell the iterators to refresh themselves, and rerun the loop.
635         i = region->refresh_out_pos(i);
636         j = region->refresh_out_pos(j);
637         progress = true;
638       }
639     }
640   }
641 
642   // Now we have no instructions in the block containing the IF.
643   // Split the IF.
644   RegionNode *new_iff = split_thru_region(iff, region);
645 
646   // Replace both uses of 'new_iff' with Regions merging True/False
647   // paths.  This makes 'new_iff' go dead.
648   Node *old_false = nullptr, *old_true = nullptr;
< prev index next >