1*795d594fSAndroid Build Coastguard Worker /* 2*795d594fSAndroid Build Coastguard Worker * Copyright (C) 2014 The Android Open Source Project 3*795d594fSAndroid Build Coastguard Worker * 4*795d594fSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 5*795d594fSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 6*795d594fSAndroid Build Coastguard Worker * You may obtain a copy of the License at 7*795d594fSAndroid Build Coastguard Worker * 8*795d594fSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 9*795d594fSAndroid Build Coastguard Worker * 10*795d594fSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 11*795d594fSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 12*795d594fSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*795d594fSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 14*795d594fSAndroid Build Coastguard Worker * limitations under the License. 15*795d594fSAndroid Build Coastguard Worker */ 16*795d594fSAndroid Build Coastguard Worker 17*795d594fSAndroid Build Coastguard Worker #ifndef ART_COMPILER_OPTIMIZING_SSA_PHI_ELIMINATION_H_ 18*795d594fSAndroid Build Coastguard Worker #define ART_COMPILER_OPTIMIZING_SSA_PHI_ELIMINATION_H_ 19*795d594fSAndroid Build Coastguard Worker 20*795d594fSAndroid Build Coastguard Worker #include "base/macros.h" 21*795d594fSAndroid Build Coastguard Worker #include "nodes.h" 22*795d594fSAndroid Build Coastguard Worker #include "optimization.h" 23*795d594fSAndroid Build Coastguard Worker 24*795d594fSAndroid Build Coastguard Worker namespace art HIDDEN { 25*795d594fSAndroid Build Coastguard Worker 26*795d594fSAndroid Build Coastguard Worker /** 27*795d594fSAndroid Build Coastguard Worker * Optimization phase that removes dead phis from the graph. Dead phis are unused 28*795d594fSAndroid Build Coastguard Worker * phis, or phis only used by other phis. 29*795d594fSAndroid Build Coastguard Worker */ 30*795d594fSAndroid Build Coastguard Worker class SsaDeadPhiElimination : public HOptimization { 31*795d594fSAndroid Build Coastguard Worker public: SsaDeadPhiElimination(HGraph * graph)32*795d594fSAndroid Build Coastguard Worker explicit SsaDeadPhiElimination(HGraph* graph) 33*795d594fSAndroid Build Coastguard Worker : HOptimization(graph, kSsaDeadPhiEliminationPassName) {} 34*795d594fSAndroid Build Coastguard Worker 35*795d594fSAndroid Build Coastguard Worker bool Run() override; 36*795d594fSAndroid Build Coastguard Worker 37*795d594fSAndroid Build Coastguard Worker void MarkDeadPhis(); 38*795d594fSAndroid Build Coastguard Worker void EliminateDeadPhis(); 39*795d594fSAndroid Build Coastguard Worker 40*795d594fSAndroid Build Coastguard Worker static constexpr const char* kSsaDeadPhiEliminationPassName = "dead_phi_elimination"; 41*795d594fSAndroid Build Coastguard Worker 42*795d594fSAndroid Build Coastguard Worker private: 43*795d594fSAndroid Build Coastguard Worker DISALLOW_COPY_AND_ASSIGN(SsaDeadPhiElimination); 44*795d594fSAndroid Build Coastguard Worker }; 45*795d594fSAndroid Build Coastguard Worker 46*795d594fSAndroid Build Coastguard Worker /** 47*795d594fSAndroid Build Coastguard Worker * Removes redundant phis that may have been introduced when doing SSA conversion. 48*795d594fSAndroid Build Coastguard Worker * For example, when entering a loop, we create phis for all live registers. These 49*795d594fSAndroid Build Coastguard Worker * registers might be updated with the same value, or not updated at all. We can just 50*795d594fSAndroid Build Coastguard Worker * replace the phi with the value when entering the loop. 51*795d594fSAndroid Build Coastguard Worker */ 52*795d594fSAndroid Build Coastguard Worker class SsaRedundantPhiElimination : public HOptimization { 53*795d594fSAndroid Build Coastguard Worker public: SsaRedundantPhiElimination(HGraph * graph)54*795d594fSAndroid Build Coastguard Worker explicit SsaRedundantPhiElimination(HGraph* graph) 55*795d594fSAndroid Build Coastguard Worker : HOptimization(graph, kSsaRedundantPhiEliminationPassName) {} 56*795d594fSAndroid Build Coastguard Worker 57*795d594fSAndroid Build Coastguard Worker bool Run() override; 58*795d594fSAndroid Build Coastguard Worker 59*795d594fSAndroid Build Coastguard Worker static constexpr const char* kSsaRedundantPhiEliminationPassName = "redundant_phi_elimination"; 60*795d594fSAndroid Build Coastguard Worker 61*795d594fSAndroid Build Coastguard Worker private: 62*795d594fSAndroid Build Coastguard Worker DISALLOW_COPY_AND_ASSIGN(SsaRedundantPhiElimination); 63*795d594fSAndroid Build Coastguard Worker }; 64*795d594fSAndroid Build Coastguard Worker 65*795d594fSAndroid Build Coastguard Worker } // namespace art 66*795d594fSAndroid Build Coastguard Worker 67*795d594fSAndroid Build Coastguard Worker #endif // ART_COMPILER_OPTIMIZING_SSA_PHI_ELIMINATION_H_ 68