blob: a9f04cd20142081d1b9ab02e0a27aadcf6e2e990 [file] [log] [blame]
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +01001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "ssa_phi_elimination.h"
18
19namespace art {
20
21void SsaDeadPhiElimination::Run() {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +000022 MarkDeadPhis();
23 EliminateDeadPhis();
24}
25
26void SsaDeadPhiElimination::MarkDeadPhis() {
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010027 // Add to the worklist phis referenced by non-phi instructions.
28 for (HReversePostOrderIterator it(*graph_); !it.Done(); it.Advance()) {
29 HBasicBlock* block = it.Current();
Andreas Gampe277ccbd2014-11-03 21:36:10 -080030 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) {
31 HPhi* phi = inst_it.Current()->AsPhi();
Nicolas Geoffray31596742014-11-24 15:28:45 +000032 // Set dead ahead of running through uses. The phi may have no use.
33 phi->SetDead();
David Brazdiled596192015-01-23 10:39:45 +000034 for (HUseIterator<HInstruction*> use_it(phi->GetUses()); !use_it.Done(); use_it.Advance()) {
35 HUseListNode<HInstruction*>* current = use_it.Current();
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010036 HInstruction* user = current->GetUser();
37 if (!user->IsPhi()) {
38 worklist_.Add(phi);
39 phi->SetLive();
Nicolas Geoffray102cbed2014-10-15 18:31:05 +010040 break;
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010041 }
42 }
43 }
44 }
45
46 // Process the worklist by propagating liveness to phi inputs.
47 while (!worklist_.IsEmpty()) {
48 HPhi* phi = worklist_.Pop();
49 for (HInputIterator it(phi); !it.Done(); it.Advance()) {
50 HInstruction* input = it.Current();
51 if (input->IsPhi() && input->AsPhi()->IsDead()) {
52 worklist_.Add(input->AsPhi());
53 input->AsPhi()->SetLive();
54 }
55 }
56 }
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +000057}
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010058
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +000059void SsaDeadPhiElimination::EliminateDeadPhis() {
Nicolas Geoffray3ac17fc2014-08-06 23:02:54 +010060 // Remove phis that are not live. Visit in post order so that phis
61 // that are not inputs of loop phis can be removed when they have
62 // no users left (dead phis might use dead phis).
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010063 for (HPostOrderIterator it(*graph_); !it.Done(); it.Advance()) {
64 HBasicBlock* block = it.Current();
65 HInstruction* current = block->GetFirstPhi();
66 HInstruction* next = nullptr;
David Brazdil1abb4192015-02-17 18:33:36 +000067 HPhi* phi;
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010068 while (current != nullptr) {
David Brazdil1abb4192015-02-17 18:33:36 +000069 phi = current->AsPhi();
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010070 next = current->GetNext();
David Brazdil1abb4192015-02-17 18:33:36 +000071 if (phi->IsDead()) {
72 // Make sure the phi is only used by other dead phis.
73 if (kIsDebugBuild) {
74 for (HUseIterator<HInstruction*> use_it(phi->GetUses()); !use_it.Done();
Andreas Gampe277ccbd2014-11-03 21:36:10 -080075 use_it.Advance()) {
David Brazdil1abb4192015-02-17 18:33:36 +000076 HInstruction* user = use_it.Current()->GetUser();
Nicolas Geoffray31596742014-11-24 15:28:45 +000077 DCHECK(user->IsLoopHeaderPhi()) << user->GetId();
78 DCHECK(user->AsPhi()->IsDead()) << user->GetId();
Nicolas Geoffray3ac17fc2014-08-06 23:02:54 +010079 }
80 }
David Brazdil1abb4192015-02-17 18:33:36 +000081 // Remove the phi from use lists of its inputs.
82 for (size_t i = 0, e = phi->InputCount(); i < e; ++i) {
83 phi->RemoveAsUserOfInput(i);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +010084 }
David Brazdil1abb4192015-02-17 18:33:36 +000085 // Remove the phi from environments that use it.
86 for (HUseIterator<HEnvironment*> use_it(phi->GetEnvUses()); !use_it.Done();
87 use_it.Advance()) {
88 HUseListNode<HEnvironment*>* user_node = use_it.Current();
89 HEnvironment* user = user_node->GetUser();
90 user->SetRawEnvAt(user_node->GetIndex(), nullptr);
91 }
92 // Delete it from the instruction list.
93 block->RemovePhi(phi, /*ensure_safety=*/ false);
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010094 }
95 current = next;
96 }
97 }
98}
99
100void SsaRedundantPhiElimination::Run() {
David Brazdil77b022d2015-08-19 14:17:31 +0100101 // Add all phis in the worklist. Order does not matter for correctness, and
102 // neither will necessarily converge faster.
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100103 for (HReversePostOrderIterator it(*graph_); !it.Done(); it.Advance()) {
104 HBasicBlock* block = it.Current();
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800105 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) {
106 worklist_.Add(inst_it.Current()->AsPhi());
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100107 }
108 }
109
110 while (!worklist_.IsEmpty()) {
111 HPhi* phi = worklist_.Pop();
112
113 // If the phi has already been processed, continue.
114 if (!phi->IsInBlock()) {
115 continue;
116 }
117
David Brazdilffee3d32015-07-06 11:48:53 +0100118 if (phi->InputCount() == 0) {
119 DCHECK(phi->IsCatchPhi());
120 DCHECK(phi->IsDead());
121 continue;
122 }
123
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100124 // Find if the inputs of the phi are the same instruction.
125 HInstruction* candidate = phi->InputAt(0);
Nicolas Geoffray604c6e42014-09-17 12:08:44 +0100126 // A loop phi cannot have itself as the first phi. Note that this
127 // check relies on our simplification pass ensuring the pre-header
128 // block is first in the list of predecessors of the loop header.
Roland Levillain6b879dd2014-09-22 17:13:44 +0100129 DCHECK(!phi->IsLoopHeaderPhi() || phi->GetBlock()->IsLoopPreHeaderFirstPredecessor());
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100130 DCHECK_NE(phi, candidate);
131
132 for (size_t i = 1; i < phi->InputCount(); ++i) {
133 HInstruction* input = phi->InputAt(i);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100134 // For a loop phi, if the input is the phi, the phi is still candidate for
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100135 // elimination.
136 if (input != candidate && input != phi) {
137 candidate = nullptr;
138 break;
139 }
140 }
141
142 // If the inputs are not the same, continue.
143 if (candidate == nullptr) {
144 continue;
145 }
146
David Brazdilffee3d32015-07-06 11:48:53 +0100147 // The candidate may not dominate a phi in a catch block.
148 if (phi->IsCatchPhi() && !candidate->StrictlyDominates(phi)) {
149 continue;
150 }
151
David Brazdil77b022d2015-08-19 14:17:31 +0100152 // Because we're updating the users of this phi, we may have new candidates
153 // for elimination. Add phis that use this phi to the worklist.
154 for (HUseIterator<HInstruction*> it(phi->GetUses()); !it.Done(); it.Advance()) {
155 HUseListNode<HInstruction*>* current = it.Current();
156 HInstruction* user = current->GetUser();
157 if (user->IsPhi()) {
158 worklist_.Add(user->AsPhi());
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100159 }
160 }
David Brazdil77b022d2015-08-19 14:17:31 +0100161
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100162 phi->ReplaceWith(candidate);
163 phi->GetBlock()->RemovePhi(phi);
164 }
165}
166
167} // namespace art