blob: 8de970025006d364f5822aae3a552a7373ab99f3 [file] [log] [blame]
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001/*
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 "nodes.h"
Calin Juravle77520bc2015-01-12 18:45:46 +000018
Mark Mendelle82549b2015-05-06 10:55:34 -040019#include "code_generator.h"
Vladimir Marko391d01f2015-11-06 11:02:08 +000020#include "common_dominator.h"
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +010021#include "ssa_builder.h"
David Brazdila4b8c212015-05-07 09:59:30 +010022#include "base/bit_vector-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010023#include "base/bit_utils.h"
Vladimir Marko1f8695c2015-09-24 13:11:31 +010024#include "base/stl_util.h"
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +010025#include "intrinsics.h"
David Brazdilbaf89b82015-09-15 11:36:54 +010026#include "mirror/class-inl.h"
Calin Juravleacf735c2015-02-12 15:25:22 +000027#include "scoped_thread_state_change.h"
Nicolas Geoffray818f2102014-02-18 16:43:35 +000028
29namespace art {
30
31void HGraph::AddBlock(HBasicBlock* block) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +010032 block->SetBlockId(blocks_.size());
33 blocks_.push_back(block);
Nicolas Geoffray818f2102014-02-18 16:43:35 +000034}
35
Nicolas Geoffray804d0932014-05-02 08:46:00 +010036void HGraph::FindBackEdges(ArenaBitVector* visited) {
Vladimir Marko1f8695c2015-09-24 13:11:31 +010037 // "visited" must be empty on entry, it's an output argument for all visited (i.e. live) blocks.
38 DCHECK_EQ(visited->GetHighestBitSet(), -1);
39
40 // Nodes that we're currently visiting, indexed by block id.
Vladimir Markofa6b93c2015-09-15 10:15:55 +010041 ArenaBitVector visiting(arena_, blocks_.size(), false);
Vladimir Marko1f8695c2015-09-24 13:11:31 +010042 // Number of successors visited from a given node, indexed by block id.
43 ArenaVector<size_t> successors_visited(blocks_.size(), 0u, arena_->Adapter());
44 // Stack of nodes that we're currently visiting (same as marked in "visiting" above).
45 ArenaVector<HBasicBlock*> worklist(arena_->Adapter());
46 constexpr size_t kDefaultWorklistSize = 8;
47 worklist.reserve(kDefaultWorklistSize);
48 visited->SetBit(entry_block_->GetBlockId());
49 visiting.SetBit(entry_block_->GetBlockId());
50 worklist.push_back(entry_block_);
51
52 while (!worklist.empty()) {
53 HBasicBlock* current = worklist.back();
54 uint32_t current_id = current->GetBlockId();
55 if (successors_visited[current_id] == current->GetSuccessors().size()) {
56 visiting.ClearBit(current_id);
57 worklist.pop_back();
58 } else {
Vladimir Marko1f8695c2015-09-24 13:11:31 +010059 HBasicBlock* successor = current->GetSuccessors()[successors_visited[current_id]++];
60 uint32_t successor_id = successor->GetBlockId();
61 if (visiting.IsBitSet(successor_id)) {
62 DCHECK(ContainsElement(worklist, successor));
63 successor->AddBackEdge(current);
64 } else if (!visited->IsBitSet(successor_id)) {
65 visited->SetBit(successor_id);
66 visiting.SetBit(successor_id);
67 worklist.push_back(successor);
68 }
69 }
70 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +000071}
72
Roland Levillainfc600dc2014-12-02 17:16:31 +000073static void RemoveAsUser(HInstruction* instruction) {
74 for (size_t i = 0; i < instruction->InputCount(); i++) {
David Brazdil1abb4192015-02-17 18:33:36 +000075 instruction->RemoveAsUserOfInput(i);
Roland Levillainfc600dc2014-12-02 17:16:31 +000076 }
77
Nicolas Geoffray0a23d742015-05-07 11:57:35 +010078 for (HEnvironment* environment = instruction->GetEnvironment();
79 environment != nullptr;
80 environment = environment->GetParent()) {
Roland Levillainfc600dc2014-12-02 17:16:31 +000081 for (size_t i = 0, e = environment->Size(); i < e; ++i) {
David Brazdil1abb4192015-02-17 18:33:36 +000082 if (environment->GetInstructionAt(i) != nullptr) {
83 environment->RemoveAsUserOfInput(i);
Roland Levillainfc600dc2014-12-02 17:16:31 +000084 }
85 }
86 }
87}
88
89void HGraph::RemoveInstructionsAsUsersFromDeadBlocks(const ArenaBitVector& visited) const {
Vladimir Markofa6b93c2015-09-15 10:15:55 +010090 for (size_t i = 0; i < blocks_.size(); ++i) {
Roland Levillainfc600dc2014-12-02 17:16:31 +000091 if (!visited.IsBitSet(i)) {
Vladimir Markoec7802a2015-10-01 20:57:57 +010092 HBasicBlock* block = blocks_[i];
Nicolas Geoffrayf776b922015-04-15 18:22:45 +010093 DCHECK(block->GetPhis().IsEmpty()) << "Phis are not inserted at this stage";
Roland Levillainfc600dc2014-12-02 17:16:31 +000094 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
95 RemoveAsUser(it.Current());
96 }
97 }
98 }
99}
100
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100101void HGraph::RemoveDeadBlocks(const ArenaBitVector& visited) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100102 for (size_t i = 0; i < blocks_.size(); ++i) {
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000103 if (!visited.IsBitSet(i)) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100104 HBasicBlock* block = blocks_[i];
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100105 // We only need to update the successor, which might be live.
Vladimir Marko60584552015-09-03 13:35:12 +0000106 for (HBasicBlock* successor : block->GetSuccessors()) {
107 successor->RemovePredecessor(block);
David Brazdil1abb4192015-02-17 18:33:36 +0000108 }
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100109 // Remove the block from the list of blocks, so that further analyses
110 // never see it.
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100111 blocks_[i] = nullptr;
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000112 }
113 }
114}
115
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000116void HGraph::BuildDominatorTree() {
David Brazdilffee3d32015-07-06 11:48:53 +0100117 // (1) Simplify the CFG so that catch blocks have only exceptional incoming
118 // edges. This invariant simplifies building SSA form because Phis cannot
119 // collect both normal- and exceptional-flow values at the same time.
120 SimplifyCatchBlocks();
121
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100122 ArenaBitVector visited(arena_, blocks_.size(), false);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000123
David Brazdilffee3d32015-07-06 11:48:53 +0100124 // (2) Find the back edges in the graph doing a DFS traversal.
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000125 FindBackEdges(&visited);
126
David Brazdilffee3d32015-07-06 11:48:53 +0100127 // (3) Remove instructions and phis from blocks not visited during
Roland Levillainfc600dc2014-12-02 17:16:31 +0000128 // the initial DFS as users from other instructions, so that
129 // users can be safely removed before uses later.
130 RemoveInstructionsAsUsersFromDeadBlocks(visited);
131
David Brazdilffee3d32015-07-06 11:48:53 +0100132 // (4) Remove blocks not visited during the initial DFS.
Roland Levillainfc600dc2014-12-02 17:16:31 +0000133 // Step (4) requires dead blocks to be removed from the
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000134 // predecessors list of live blocks.
135 RemoveDeadBlocks(visited);
136
David Brazdilffee3d32015-07-06 11:48:53 +0100137 // (5) Simplify the CFG now, so that we don't need to recompute
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100138 // dominators and the reverse post order.
139 SimplifyCFG();
140
David Brazdilffee3d32015-07-06 11:48:53 +0100141 // (6) Compute the dominance information and the reverse post order.
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100142 ComputeDominanceInformation();
143}
144
145void HGraph::ClearDominanceInformation() {
146 for (HReversePostOrderIterator it(*this); !it.Done(); it.Advance()) {
147 it.Current()->ClearDominanceInformation();
148 }
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100149 reverse_post_order_.clear();
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100150}
151
152void HBasicBlock::ClearDominanceInformation() {
Vladimir Marko60584552015-09-03 13:35:12 +0000153 dominated_blocks_.clear();
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100154 dominator_ = nullptr;
155}
156
157void HGraph::ComputeDominanceInformation() {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100158 DCHECK(reverse_post_order_.empty());
159 reverse_post_order_.reserve(blocks_.size());
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100160 reverse_post_order_.push_back(entry_block_);
Vladimir Markod76d1392015-09-23 16:07:14 +0100161
162 // Number of visits of a given node, indexed by block id.
163 ArenaVector<size_t> visits(blocks_.size(), 0u, arena_->Adapter());
164 // Number of successors visited from a given node, indexed by block id.
165 ArenaVector<size_t> successors_visited(blocks_.size(), 0u, arena_->Adapter());
166 // Nodes for which we need to visit successors.
167 ArenaVector<HBasicBlock*> worklist(arena_->Adapter());
168 constexpr size_t kDefaultWorklistSize = 8;
169 worklist.reserve(kDefaultWorklistSize);
170 worklist.push_back(entry_block_);
171
172 while (!worklist.empty()) {
173 HBasicBlock* current = worklist.back();
174 uint32_t current_id = current->GetBlockId();
175 if (successors_visited[current_id] == current->GetSuccessors().size()) {
176 worklist.pop_back();
177 } else {
Vladimir Markod76d1392015-09-23 16:07:14 +0100178 HBasicBlock* successor = current->GetSuccessors()[successors_visited[current_id]++];
179
180 if (successor->GetDominator() == nullptr) {
181 successor->SetDominator(current);
182 } else {
Vladimir Marko391d01f2015-11-06 11:02:08 +0000183 // The CommonDominator can work for multiple blocks as long as the
184 // domination information doesn't change. However, since we're changing
185 // that information here, we can use the finder only for pairs of blocks.
186 successor->SetDominator(CommonDominator::ForPair(successor->GetDominator(), current));
Vladimir Markod76d1392015-09-23 16:07:14 +0100187 }
188
189 // Once all the forward edges have been visited, we know the immediate
190 // dominator of the block. We can then start visiting its successors.
Vladimir Markod76d1392015-09-23 16:07:14 +0100191 if (++visits[successor->GetBlockId()] ==
192 successor->GetPredecessors().size() - successor->NumberOfBackEdges()) {
193 successor->GetDominator()->AddDominatedBlock(successor);
194 reverse_post_order_.push_back(successor);
195 worklist.push_back(successor);
196 }
197 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000198 }
199}
200
David Brazdil4833f5a2015-12-16 10:37:39 +0000201BuildSsaResult HGraph::TryBuildingSsa(StackHandleScopeCollection* handles) {
202 BuildDominatorTree();
203
204 // The SSA builder requires loops to all be natural. Specifically, the dead phi
205 // elimination phase checks the consistency of the graph when doing a post-order
206 // visit for eliminating dead phis: a dead phi can only have loop header phi
207 // users remaining when being visited.
208 BuildSsaResult result = AnalyzeNaturalLoops();
209 if (result != kBuildSsaSuccess) {
210 return result;
211 }
212
213 // Precompute per-block try membership before entering the SSA builder,
214 // which needs the information to build catch block phis from values of
215 // locals at throwing instructions inside try blocks.
216 ComputeTryBlockInformation();
217
218 // Create the inexact Object reference type and store it in the HGraph.
219 ScopedObjectAccess soa(Thread::Current());
220 ClassLinker* linker = Runtime::Current()->GetClassLinker();
221 inexact_object_rti_ = ReferenceTypeInfo::Create(
222 handles->NewHandle(linker->GetClassRoot(ClassLinker::kJavaLangObject)),
223 /* is_exact */ false);
224
225 // Tranforms graph to SSA form.
226 result = SsaBuilder(this, handles).BuildSsa();
227 if (result != kBuildSsaSuccess) {
228 return result;
229 }
230
231 in_ssa_form_ = true;
232 return kBuildSsaSuccess;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100233}
234
David Brazdilfc6a86a2015-06-26 10:33:45 +0000235HBasicBlock* HGraph::SplitEdge(HBasicBlock* block, HBasicBlock* successor) {
David Brazdil3e187382015-06-26 09:59:52 +0000236 HBasicBlock* new_block = new (arena_) HBasicBlock(this, successor->GetDexPc());
237 AddBlock(new_block);
David Brazdil3e187382015-06-26 09:59:52 +0000238 // Use `InsertBetween` to ensure the predecessor index and successor index of
239 // `block` and `successor` are preserved.
240 new_block->InsertBetween(block, successor);
David Brazdilfc6a86a2015-06-26 10:33:45 +0000241 return new_block;
242}
243
244void HGraph::SplitCriticalEdge(HBasicBlock* block, HBasicBlock* successor) {
245 // Insert a new node between `block` and `successor` to split the
246 // critical edge.
247 HBasicBlock* new_block = SplitEdge(block, successor);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600248 new_block->AddInstruction(new (arena_) HGoto(successor->GetDexPc()));
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100249 if (successor->IsLoopHeader()) {
250 // If we split at a back edge boundary, make the new block the back edge.
251 HLoopInformation* info = successor->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000252 if (info->IsBackEdge(*block)) {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100253 info->RemoveBackEdge(block);
254 info->AddBackEdge(new_block);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100255 }
256 }
257}
258
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100259void HGraph::SimplifyLoop(HBasicBlock* header) {
260 HLoopInformation* info = header->GetLoopInformation();
261
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100262 // Make sure the loop has only one pre header. This simplifies SSA building by having
263 // to just look at the pre header to know which locals are initialized at entry of the
264 // loop.
Vladimir Marko60584552015-09-03 13:35:12 +0000265 size_t number_of_incomings = header->GetPredecessors().size() - info->NumberOfBackEdges();
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100266 if (number_of_incomings != 1) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100267 HBasicBlock* pre_header = new (arena_) HBasicBlock(this, header->GetDexPc());
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100268 AddBlock(pre_header);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600269 pre_header->AddInstruction(new (arena_) HGoto(header->GetDexPc()));
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100270
Vladimir Marko60584552015-09-03 13:35:12 +0000271 for (size_t pred = 0; pred < header->GetPredecessors().size(); ++pred) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100272 HBasicBlock* predecessor = header->GetPredecessors()[pred];
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100273 if (!info->IsBackEdge(*predecessor)) {
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +0100274 predecessor->ReplaceSuccessor(header, pre_header);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100275 pred--;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100276 }
277 }
278 pre_header->AddSuccessor(header);
279 }
Nicolas Geoffray604c6e42014-09-17 12:08:44 +0100280
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100281 // Make sure the first predecessor of a loop header is the incoming block.
Vladimir Markoec7802a2015-10-01 20:57:57 +0100282 if (info->IsBackEdge(*header->GetPredecessors()[0])) {
283 HBasicBlock* to_swap = header->GetPredecessors()[0];
Vladimir Marko60584552015-09-03 13:35:12 +0000284 for (size_t pred = 1, e = header->GetPredecessors().size(); pred < e; ++pred) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100285 HBasicBlock* predecessor = header->GetPredecessors()[pred];
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100286 if (!info->IsBackEdge(*predecessor)) {
Vladimir Marko60584552015-09-03 13:35:12 +0000287 header->predecessors_[pred] = to_swap;
288 header->predecessors_[0] = predecessor;
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100289 break;
290 }
291 }
Nicolas Geoffray604c6e42014-09-17 12:08:44 +0100292 }
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100293
294 // Place the suspend check at the beginning of the header, so that live registers
295 // will be known when allocating registers. Note that code generation can still
296 // generate the suspend check at the back edge, but needs to be careful with
297 // loop phi spill slots (which are not written to at back edge).
298 HInstruction* first_instruction = header->GetFirstInstruction();
299 if (!first_instruction->IsSuspendCheck()) {
300 HSuspendCheck* check = new (arena_) HSuspendCheck(header->GetDexPc());
301 header->InsertInstructionBefore(check, first_instruction);
302 first_instruction = check;
303 }
304 info->SetSuspendCheck(first_instruction->AsSuspendCheck());
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100305}
306
David Brazdilffee3d32015-07-06 11:48:53 +0100307static bool CheckIfPredecessorAtIsExceptional(const HBasicBlock& block, size_t pred_idx) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100308 HBasicBlock* predecessor = block.GetPredecessors()[pred_idx];
David Brazdilffee3d32015-07-06 11:48:53 +0100309 if (!predecessor->EndsWithTryBoundary()) {
310 // Only edges from HTryBoundary can be exceptional.
311 return false;
312 }
313 HTryBoundary* try_boundary = predecessor->GetLastInstruction()->AsTryBoundary();
314 if (try_boundary->GetNormalFlowSuccessor() == &block) {
315 // This block is the normal-flow successor of `try_boundary`, but it could
316 // also be one of its exception handlers if catch blocks have not been
317 // simplified yet. Predecessors are unordered, so we will consider the first
318 // occurrence to be the normal edge and a possible second occurrence to be
319 // the exceptional edge.
320 return !block.IsFirstIndexOfPredecessor(predecessor, pred_idx);
321 } else {
322 // This is not the normal-flow successor of `try_boundary`, hence it must be
323 // one of its exception handlers.
324 DCHECK(try_boundary->HasExceptionHandler(block));
325 return true;
326 }
327}
328
329void HGraph::SimplifyCatchBlocks() {
Vladimir Markob7d8e8c2015-09-17 15:47:05 +0100330 // NOTE: We're appending new blocks inside the loop, so we need to use index because iterators
331 // can be invalidated. We remember the initial size to avoid iterating over the new blocks.
332 for (size_t block_id = 0u, end = blocks_.size(); block_id != end; ++block_id) {
333 HBasicBlock* catch_block = blocks_[block_id];
David Brazdilffee3d32015-07-06 11:48:53 +0100334 if (!catch_block->IsCatchBlock()) {
335 continue;
336 }
337
338 bool exceptional_predecessors_only = true;
Vladimir Marko60584552015-09-03 13:35:12 +0000339 for (size_t j = 0; j < catch_block->GetPredecessors().size(); ++j) {
David Brazdilffee3d32015-07-06 11:48:53 +0100340 if (!CheckIfPredecessorAtIsExceptional(*catch_block, j)) {
341 exceptional_predecessors_only = false;
342 break;
343 }
344 }
345
346 if (!exceptional_predecessors_only) {
347 // Catch block has normal-flow predecessors and needs to be simplified.
348 // Splitting the block before its first instruction moves all its
349 // instructions into `normal_block` and links the two blocks with a Goto.
350 // Afterwards, incoming normal-flow edges are re-linked to `normal_block`,
351 // leaving `catch_block` with the exceptional edges only.
David Brazdil9bc43612015-11-05 21:25:24 +0000352 //
David Brazdilffee3d32015-07-06 11:48:53 +0100353 // Note that catch blocks with normal-flow predecessors cannot begin with
David Brazdil9bc43612015-11-05 21:25:24 +0000354 // a move-exception instruction, as guaranteed by the verifier. However,
355 // trivially dead predecessors are ignored by the verifier and such code
356 // has not been removed at this stage. We therefore ignore the assumption
357 // and rely on GraphChecker to enforce it after initial DCE is run (b/25492628).
358 HBasicBlock* normal_block = catch_block->SplitCatchBlockAfterMoveException();
359 if (normal_block == nullptr) {
360 // Catch block is either empty or only contains a move-exception. It must
361 // therefore be dead and will be removed during initial DCE. Do nothing.
362 DCHECK(!catch_block->EndsWithControlFlowInstruction());
363 } else {
364 // Catch block was split. Re-link normal-flow edges to the new block.
365 for (size_t j = 0; j < catch_block->GetPredecessors().size(); ++j) {
366 if (!CheckIfPredecessorAtIsExceptional(*catch_block, j)) {
367 catch_block->GetPredecessors()[j]->ReplaceSuccessor(catch_block, normal_block);
368 --j;
369 }
David Brazdilffee3d32015-07-06 11:48:53 +0100370 }
371 }
372 }
373 }
374}
375
376void HGraph::ComputeTryBlockInformation() {
377 // Iterate in reverse post order to propagate try membership information from
378 // predecessors to their successors.
379 for (HReversePostOrderIterator it(*this); !it.Done(); it.Advance()) {
380 HBasicBlock* block = it.Current();
381 if (block->IsEntryBlock() || block->IsCatchBlock()) {
382 // Catch blocks after simplification have only exceptional predecessors
383 // and hence are never in tries.
384 continue;
385 }
386
387 // Infer try membership from the first predecessor. Having simplified loops,
388 // the first predecessor can never be a back edge and therefore it must have
389 // been visited already and had its try membership set.
Vladimir Markoec7802a2015-10-01 20:57:57 +0100390 HBasicBlock* first_predecessor = block->GetPredecessors()[0];
David Brazdilffee3d32015-07-06 11:48:53 +0100391 DCHECK(!block->IsLoopHeader() || !block->GetLoopInformation()->IsBackEdge(*first_predecessor));
David Brazdilec16f792015-08-19 15:04:01 +0100392 const HTryBoundary* try_entry = first_predecessor->ComputeTryEntryOfSuccessors();
David Brazdil8a7c0fe2015-11-02 20:24:55 +0000393 if (try_entry != nullptr &&
394 (block->GetTryCatchInformation() == nullptr ||
395 try_entry != &block->GetTryCatchInformation()->GetTryEntry())) {
396 // We are either setting try block membership for the first time or it
397 // has changed.
David Brazdilec16f792015-08-19 15:04:01 +0100398 block->SetTryCatchInformation(new (arena_) TryCatchInformation(*try_entry));
399 }
David Brazdilffee3d32015-07-06 11:48:53 +0100400 }
401}
402
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100403void HGraph::SimplifyCFG() {
David Brazdildb51efb2015-11-06 01:36:20 +0000404// Simplify the CFG for future analysis, and code generation:
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100405 // (1): Split critical edges.
David Brazdildb51efb2015-11-06 01:36:20 +0000406 // (2): Simplify loops by having only one preheader.
Vladimir Markob7d8e8c2015-09-17 15:47:05 +0100407 // NOTE: We're appending new blocks inside the loop, so we need to use index because iterators
408 // can be invalidated. We remember the initial size to avoid iterating over the new blocks.
409 for (size_t block_id = 0u, end = blocks_.size(); block_id != end; ++block_id) {
410 HBasicBlock* block = blocks_[block_id];
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100411 if (block == nullptr) continue;
David Brazdildb51efb2015-11-06 01:36:20 +0000412 if (block->GetSuccessors().size() > 1) {
413 // Only split normal-flow edges. We cannot split exceptional edges as they
414 // are synthesized (approximate real control flow), and we do not need to
415 // anyway. Moves that would be inserted there are performed by the runtime.
David Brazdild26a4112015-11-10 11:07:31 +0000416 ArrayRef<HBasicBlock* const> normal_successors = block->GetNormalSuccessors();
417 for (size_t j = 0, e = normal_successors.size(); j < e; ++j) {
418 HBasicBlock* successor = normal_successors[j];
David Brazdilffee3d32015-07-06 11:48:53 +0100419 DCHECK(!successor->IsCatchBlock());
David Brazdildb51efb2015-11-06 01:36:20 +0000420 if (successor == exit_block_) {
421 // Throw->TryBoundary->Exit. Special case which we do not want to split
422 // because Goto->Exit is not allowed.
423 DCHECK(block->IsSingleTryBoundary());
424 DCHECK(block->GetSinglePredecessor()->GetLastInstruction()->IsThrow());
425 } else if (successor->GetPredecessors().size() > 1) {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100426 SplitCriticalEdge(block, successor);
David Brazdild26a4112015-11-10 11:07:31 +0000427 // SplitCriticalEdge could have invalidated the `normal_successors`
428 // ArrayRef. We must re-acquire it.
429 normal_successors = block->GetNormalSuccessors();
430 DCHECK_EQ(normal_successors[j]->GetSingleSuccessor(), successor);
431 DCHECK_EQ(e, normal_successors.size());
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100432 }
433 }
434 }
435 if (block->IsLoopHeader()) {
436 SimplifyLoop(block);
437 }
438 }
439}
440
David Brazdil4833f5a2015-12-16 10:37:39 +0000441BuildSsaResult HGraph::AnalyzeNaturalLoops() const {
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100442 // Order does not matter.
443 for (HReversePostOrderIterator it(*this); !it.Done(); it.Advance()) {
444 HBasicBlock* block = it.Current();
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100445 if (block->IsLoopHeader()) {
David Brazdilffee3d32015-07-06 11:48:53 +0100446 if (block->IsCatchBlock()) {
447 // TODO: Dealing with exceptional back edges could be tricky because
448 // they only approximate the real control flow. Bail out for now.
David Brazdil4833f5a2015-12-16 10:37:39 +0000449 return kBuildSsaFailThrowCatchLoop;
David Brazdilffee3d32015-07-06 11:48:53 +0100450 }
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100451 HLoopInformation* info = block->GetLoopInformation();
452 if (!info->Populate()) {
453 // Abort if the loop is non natural. We currently bailout in such cases.
David Brazdil4833f5a2015-12-16 10:37:39 +0000454 return kBuildSsaFailNonNaturalLoop;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100455 }
456 }
457 }
David Brazdil4833f5a2015-12-16 10:37:39 +0000458 return kBuildSsaSuccess;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100459}
460
David Brazdil8d5b8b22015-03-24 10:51:52 +0000461void HGraph::InsertConstant(HConstant* constant) {
462 // New constants are inserted before the final control-flow instruction
463 // of the graph, or at its end if called from the graph builder.
464 if (entry_block_->EndsWithControlFlowInstruction()) {
465 entry_block_->InsertInstructionBefore(constant, entry_block_->GetLastInstruction());
David Brazdil46e2a392015-03-16 17:31:52 +0000466 } else {
David Brazdil8d5b8b22015-03-24 10:51:52 +0000467 entry_block_->AddInstruction(constant);
David Brazdil46e2a392015-03-16 17:31:52 +0000468 }
469}
470
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600471HNullConstant* HGraph::GetNullConstant(uint32_t dex_pc) {
Nicolas Geoffray18e68732015-06-17 23:09:05 +0100472 // For simplicity, don't bother reviving the cached null constant if it is
473 // not null and not in a block. Otherwise, we need to clear the instruction
474 // id and/or any invariants the graph is assuming when adding new instructions.
475 if ((cached_null_constant_ == nullptr) || (cached_null_constant_->GetBlock() == nullptr)) {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600476 cached_null_constant_ = new (arena_) HNullConstant(dex_pc);
David Brazdil4833f5a2015-12-16 10:37:39 +0000477 cached_null_constant_->SetReferenceTypeInfo(inexact_object_rti_);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000478 InsertConstant(cached_null_constant_);
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000479 }
David Brazdil4833f5a2015-12-16 10:37:39 +0000480 if (kIsDebugBuild) {
481 ScopedObjectAccess soa(Thread::Current());
482 DCHECK(cached_null_constant_->GetReferenceTypeInfo().IsValid());
483 }
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000484 return cached_null_constant_;
485}
486
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100487HCurrentMethod* HGraph::GetCurrentMethod() {
Nicolas Geoffrayf78848f2015-06-17 11:57:56 +0100488 // For simplicity, don't bother reviving the cached current method if it is
489 // not null and not in a block. Otherwise, we need to clear the instruction
490 // id and/or any invariants the graph is assuming when adding new instructions.
491 if ((cached_current_method_ == nullptr) || (cached_current_method_->GetBlock() == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700492 cached_current_method_ = new (arena_) HCurrentMethod(
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600493 Is64BitInstructionSet(instruction_set_) ? Primitive::kPrimLong : Primitive::kPrimInt,
494 entry_block_->GetDexPc());
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100495 if (entry_block_->GetFirstInstruction() == nullptr) {
496 entry_block_->AddInstruction(cached_current_method_);
497 } else {
498 entry_block_->InsertInstructionBefore(
499 cached_current_method_, entry_block_->GetFirstInstruction());
500 }
501 }
502 return cached_current_method_;
503}
504
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600505HConstant* HGraph::GetConstant(Primitive::Type type, int64_t value, uint32_t dex_pc) {
David Brazdil8d5b8b22015-03-24 10:51:52 +0000506 switch (type) {
507 case Primitive::Type::kPrimBoolean:
508 DCHECK(IsUint<1>(value));
509 FALLTHROUGH_INTENDED;
510 case Primitive::Type::kPrimByte:
511 case Primitive::Type::kPrimChar:
512 case Primitive::Type::kPrimShort:
513 case Primitive::Type::kPrimInt:
514 DCHECK(IsInt(Primitive::ComponentSize(type) * kBitsPerByte, value));
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600515 return GetIntConstant(static_cast<int32_t>(value), dex_pc);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000516
517 case Primitive::Type::kPrimLong:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600518 return GetLongConstant(value, dex_pc);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000519
520 default:
521 LOG(FATAL) << "Unsupported constant type";
522 UNREACHABLE();
David Brazdil46e2a392015-03-16 17:31:52 +0000523 }
David Brazdil46e2a392015-03-16 17:31:52 +0000524}
525
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000526void HGraph::CacheFloatConstant(HFloatConstant* constant) {
527 int32_t value = bit_cast<int32_t, float>(constant->GetValue());
528 DCHECK(cached_float_constants_.find(value) == cached_float_constants_.end());
529 cached_float_constants_.Overwrite(value, constant);
530}
531
532void HGraph::CacheDoubleConstant(HDoubleConstant* constant) {
533 int64_t value = bit_cast<int64_t, double>(constant->GetValue());
534 DCHECK(cached_double_constants_.find(value) == cached_double_constants_.end());
535 cached_double_constants_.Overwrite(value, constant);
536}
537
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000538void HLoopInformation::Add(HBasicBlock* block) {
539 blocks_.SetBit(block->GetBlockId());
540}
541
David Brazdil46e2a392015-03-16 17:31:52 +0000542void HLoopInformation::Remove(HBasicBlock* block) {
543 blocks_.ClearBit(block->GetBlockId());
544}
545
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100546void HLoopInformation::PopulateRecursive(HBasicBlock* block) {
547 if (blocks_.IsBitSet(block->GetBlockId())) {
548 return;
549 }
550
551 blocks_.SetBit(block->GetBlockId());
552 block->SetInLoop(this);
Vladimir Marko60584552015-09-03 13:35:12 +0000553 for (HBasicBlock* predecessor : block->GetPredecessors()) {
554 PopulateRecursive(predecessor);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100555 }
556}
557
558bool HLoopInformation::Populate() {
David Brazdila4b8c212015-05-07 09:59:30 +0100559 DCHECK_EQ(blocks_.NumSetBits(), 0u) << "Loop information has already been populated";
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100560 for (HBasicBlock* back_edge : GetBackEdges()) {
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100561 DCHECK(back_edge->GetDominator() != nullptr);
562 if (!header_->Dominates(back_edge)) {
563 // This loop is not natural. Do not bother going further.
564 return false;
565 }
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100566
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100567 // Populate this loop: starting with the back edge, recursively add predecessors
568 // that are not already part of that loop. Set the header as part of the loop
569 // to end the recursion.
570 // This is a recursive implementation of the algorithm described in
571 // "Advanced Compiler Design & Implementation" (Muchnick) p192.
572 blocks_.SetBit(header_->GetBlockId());
573 PopulateRecursive(back_edge);
574 }
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100575 return true;
576}
577
David Brazdila4b8c212015-05-07 09:59:30 +0100578void HLoopInformation::Update() {
579 HGraph* graph = header_->GetGraph();
580 for (uint32_t id : blocks_.Indexes()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100581 HBasicBlock* block = graph->GetBlocks()[id];
David Brazdila4b8c212015-05-07 09:59:30 +0100582 // Reset loop information of non-header blocks inside the loop, except
583 // members of inner nested loops because those should already have been
584 // updated by their own LoopInformation.
585 if (block->GetLoopInformation() == this && block != header_) {
586 block->SetLoopInformation(nullptr);
587 }
588 }
589 blocks_.ClearAllBits();
590
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100591 if (back_edges_.empty()) {
David Brazdila4b8c212015-05-07 09:59:30 +0100592 // The loop has been dismantled, delete its suspend check and remove info
593 // from the header.
594 DCHECK(HasSuspendCheck());
595 header_->RemoveInstruction(suspend_check_);
596 header_->SetLoopInformation(nullptr);
597 header_ = nullptr;
598 suspend_check_ = nullptr;
599 } else {
600 if (kIsDebugBuild) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100601 for (HBasicBlock* back_edge : back_edges_) {
602 DCHECK(header_->Dominates(back_edge));
David Brazdila4b8c212015-05-07 09:59:30 +0100603 }
604 }
605 // This loop still has reachable back edges. Repopulate the list of blocks.
606 bool populate_successful = Populate();
607 DCHECK(populate_successful);
608 }
609}
610
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100611HBasicBlock* HLoopInformation::GetPreHeader() const {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100612 return header_->GetDominator();
613}
614
615bool HLoopInformation::Contains(const HBasicBlock& block) const {
616 return blocks_.IsBitSet(block.GetBlockId());
617}
618
619bool HLoopInformation::IsIn(const HLoopInformation& other) const {
620 return other.blocks_.IsBitSet(header_->GetBlockId());
621}
622
Mingyao Yang4b467ed2015-11-19 17:04:22 -0800623bool HLoopInformation::IsDefinedOutOfTheLoop(HInstruction* instruction) const {
624 return !blocks_.IsBitSet(instruction->GetBlock()->GetBlockId());
Aart Bik73f1f3b2015-10-28 15:28:08 -0700625}
626
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100627size_t HLoopInformation::GetLifetimeEnd() const {
628 size_t last_position = 0;
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100629 for (HBasicBlock* back_edge : GetBackEdges()) {
630 last_position = std::max(back_edge->GetLifetimeEnd(), last_position);
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100631 }
632 return last_position;
633}
634
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100635bool HBasicBlock::Dominates(HBasicBlock* other) const {
636 // Walk up the dominator tree from `other`, to find out if `this`
637 // is an ancestor.
638 HBasicBlock* current = other;
639 while (current != nullptr) {
640 if (current == this) {
641 return true;
642 }
643 current = current->GetDominator();
644 }
645 return false;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100646}
647
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100648static void UpdateInputsUsers(HInstruction* instruction) {
649 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
650 instruction->InputAt(i)->AddUseAt(instruction, i);
651 }
652 // Environment should be created later.
653 DCHECK(!instruction->HasEnvironment());
654}
655
Roland Levillainccc07a92014-09-16 14:48:16 +0100656void HBasicBlock::ReplaceAndRemoveInstructionWith(HInstruction* initial,
657 HInstruction* replacement) {
658 DCHECK(initial->GetBlock() == this);
Mark Mendell805b3b52015-09-18 14:10:29 -0400659 if (initial->IsControlFlow()) {
660 // We can only replace a control flow instruction with another control flow instruction.
661 DCHECK(replacement->IsControlFlow());
662 DCHECK_EQ(replacement->GetId(), -1);
663 DCHECK_EQ(replacement->GetType(), Primitive::kPrimVoid);
664 DCHECK_EQ(initial->GetBlock(), this);
665 DCHECK_EQ(initial->GetType(), Primitive::kPrimVoid);
666 DCHECK(initial->GetUses().IsEmpty());
667 DCHECK(initial->GetEnvUses().IsEmpty());
668 replacement->SetBlock(this);
669 replacement->SetId(GetGraph()->GetNextInstructionId());
670 instructions_.InsertInstructionBefore(replacement, initial);
671 UpdateInputsUsers(replacement);
672 } else {
673 InsertInstructionBefore(replacement, initial);
674 initial->ReplaceWith(replacement);
675 }
Roland Levillainccc07a92014-09-16 14:48:16 +0100676 RemoveInstruction(initial);
677}
678
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100679static void Add(HInstructionList* instruction_list,
680 HBasicBlock* block,
681 HInstruction* instruction) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000682 DCHECK(instruction->GetBlock() == nullptr);
Nicolas Geoffray43c86422014-03-18 11:58:24 +0000683 DCHECK_EQ(instruction->GetId(), -1);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100684 instruction->SetBlock(block);
685 instruction->SetId(block->GetGraph()->GetNextInstructionId());
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100686 UpdateInputsUsers(instruction);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100687 instruction_list->AddInstruction(instruction);
688}
689
690void HBasicBlock::AddInstruction(HInstruction* instruction) {
691 Add(&instructions_, this, instruction);
692}
693
694void HBasicBlock::AddPhi(HPhi* phi) {
695 Add(&phis_, this, phi);
696}
697
David Brazdilc3d743f2015-04-22 13:40:50 +0100698void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) {
699 DCHECK(!cursor->IsPhi());
700 DCHECK(!instruction->IsPhi());
701 DCHECK_EQ(instruction->GetId(), -1);
702 DCHECK_NE(cursor->GetId(), -1);
703 DCHECK_EQ(cursor->GetBlock(), this);
704 DCHECK(!instruction->IsControlFlow());
705 instruction->SetBlock(this);
706 instruction->SetId(GetGraph()->GetNextInstructionId());
707 UpdateInputsUsers(instruction);
708 instructions_.InsertInstructionBefore(instruction, cursor);
709}
710
Guillaume "Vermeille" Sanchez2967ec62015-04-24 16:36:52 +0100711void HBasicBlock::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) {
712 DCHECK(!cursor->IsPhi());
713 DCHECK(!instruction->IsPhi());
714 DCHECK_EQ(instruction->GetId(), -1);
715 DCHECK_NE(cursor->GetId(), -1);
716 DCHECK_EQ(cursor->GetBlock(), this);
717 DCHECK(!instruction->IsControlFlow());
718 DCHECK(!cursor->IsControlFlow());
719 instruction->SetBlock(this);
720 instruction->SetId(GetGraph()->GetNextInstructionId());
721 UpdateInputsUsers(instruction);
722 instructions_.InsertInstructionAfter(instruction, cursor);
723}
724
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100725void HBasicBlock::InsertPhiAfter(HPhi* phi, HPhi* cursor) {
726 DCHECK_EQ(phi->GetId(), -1);
727 DCHECK_NE(cursor->GetId(), -1);
728 DCHECK_EQ(cursor->GetBlock(), this);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100729 phi->SetBlock(this);
730 phi->SetId(GetGraph()->GetNextInstructionId());
731 UpdateInputsUsers(phi);
David Brazdilc3d743f2015-04-22 13:40:50 +0100732 phis_.InsertInstructionAfter(phi, cursor);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100733}
734
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100735static void Remove(HInstructionList* instruction_list,
736 HBasicBlock* block,
David Brazdil1abb4192015-02-17 18:33:36 +0000737 HInstruction* instruction,
738 bool ensure_safety) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100739 DCHECK_EQ(block, instruction->GetBlock());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100740 instruction->SetBlock(nullptr);
741 instruction_list->RemoveInstruction(instruction);
David Brazdil1abb4192015-02-17 18:33:36 +0000742 if (ensure_safety) {
743 DCHECK(instruction->GetUses().IsEmpty());
744 DCHECK(instruction->GetEnvUses().IsEmpty());
745 RemoveAsUser(instruction);
746 }
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100747}
748
David Brazdil1abb4192015-02-17 18:33:36 +0000749void HBasicBlock::RemoveInstruction(HInstruction* instruction, bool ensure_safety) {
David Brazdilc7508e92015-04-27 13:28:57 +0100750 DCHECK(!instruction->IsPhi());
David Brazdil1abb4192015-02-17 18:33:36 +0000751 Remove(&instructions_, this, instruction, ensure_safety);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100752}
753
David Brazdil1abb4192015-02-17 18:33:36 +0000754void HBasicBlock::RemovePhi(HPhi* phi, bool ensure_safety) {
755 Remove(&phis_, this, phi, ensure_safety);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100756}
757
David Brazdilc7508e92015-04-27 13:28:57 +0100758void HBasicBlock::RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety) {
759 if (instruction->IsPhi()) {
760 RemovePhi(instruction->AsPhi(), ensure_safety);
761 } else {
762 RemoveInstruction(instruction, ensure_safety);
763 }
764}
765
Vladimir Marko71bf8092015-09-15 15:33:14 +0100766void HEnvironment::CopyFrom(const ArenaVector<HInstruction*>& locals) {
767 for (size_t i = 0; i < locals.size(); i++) {
768 HInstruction* instruction = locals[i];
Nicolas Geoffray8c0c91a2015-05-07 11:46:05 +0100769 SetRawEnvAt(i, instruction);
770 if (instruction != nullptr) {
771 instruction->AddEnvUseAt(this, i);
772 }
773 }
774}
775
David Brazdiled596192015-01-23 10:39:45 +0000776void HEnvironment::CopyFrom(HEnvironment* env) {
777 for (size_t i = 0; i < env->Size(); i++) {
778 HInstruction* instruction = env->GetInstructionAt(i);
779 SetRawEnvAt(i, instruction);
780 if (instruction != nullptr) {
781 instruction->AddEnvUseAt(this, i);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100782 }
David Brazdiled596192015-01-23 10:39:45 +0000783 }
784}
785
Mingyao Yang206d6fd2015-04-13 16:46:28 -0700786void HEnvironment::CopyFromWithLoopPhiAdjustment(HEnvironment* env,
787 HBasicBlock* loop_header) {
788 DCHECK(loop_header->IsLoopHeader());
789 for (size_t i = 0; i < env->Size(); i++) {
790 HInstruction* instruction = env->GetInstructionAt(i);
791 SetRawEnvAt(i, instruction);
792 if (instruction == nullptr) {
793 continue;
794 }
795 if (instruction->IsLoopHeaderPhi() && (instruction->GetBlock() == loop_header)) {
796 // At the end of the loop pre-header, the corresponding value for instruction
797 // is the first input of the phi.
798 HInstruction* initial = instruction->AsPhi()->InputAt(0);
799 DCHECK(initial->GetBlock()->Dominates(loop_header));
800 SetRawEnvAt(i, initial);
801 initial->AddEnvUseAt(this, i);
802 } else {
803 instruction->AddEnvUseAt(this, i);
804 }
805 }
806}
807
David Brazdil1abb4192015-02-17 18:33:36 +0000808void HEnvironment::RemoveAsUserOfInput(size_t index) const {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100809 const HUserRecord<HEnvironment*>& user_record = vregs_[index];
David Brazdil1abb4192015-02-17 18:33:36 +0000810 user_record.GetInstruction()->RemoveEnvironmentUser(user_record.GetUseNode());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100811}
812
Vladimir Marko5f7b58e2015-11-23 19:49:34 +0000813HInstruction::InstructionKind HInstruction::GetKind() const {
814 return GetKindInternal();
815}
816
Calin Juravle77520bc2015-01-12 18:45:46 +0000817HInstruction* HInstruction::GetNextDisregardingMoves() const {
818 HInstruction* next = GetNext();
819 while (next != nullptr && next->IsParallelMove()) {
820 next = next->GetNext();
821 }
822 return next;
823}
824
825HInstruction* HInstruction::GetPreviousDisregardingMoves() const {
826 HInstruction* previous = GetPrevious();
827 while (previous != nullptr && previous->IsParallelMove()) {
828 previous = previous->GetPrevious();
829 }
830 return previous;
831}
832
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100833void HInstructionList::AddInstruction(HInstruction* instruction) {
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000834 if (first_instruction_ == nullptr) {
835 DCHECK(last_instruction_ == nullptr);
836 first_instruction_ = last_instruction_ = instruction;
837 } else {
838 last_instruction_->next_ = instruction;
839 instruction->previous_ = last_instruction_;
840 last_instruction_ = instruction;
841 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000842}
843
David Brazdilc3d743f2015-04-22 13:40:50 +0100844void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) {
845 DCHECK(Contains(cursor));
846 if (cursor == first_instruction_) {
847 cursor->previous_ = instruction;
848 instruction->next_ = cursor;
849 first_instruction_ = instruction;
850 } else {
851 instruction->previous_ = cursor->previous_;
852 instruction->next_ = cursor;
853 cursor->previous_ = instruction;
854 instruction->previous_->next_ = instruction;
855 }
856}
857
858void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) {
859 DCHECK(Contains(cursor));
860 if (cursor == last_instruction_) {
861 cursor->next_ = instruction;
862 instruction->previous_ = cursor;
863 last_instruction_ = instruction;
864 } else {
865 instruction->next_ = cursor->next_;
866 instruction->previous_ = cursor;
867 cursor->next_ = instruction;
868 instruction->next_->previous_ = instruction;
869 }
870}
871
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100872void HInstructionList::RemoveInstruction(HInstruction* instruction) {
873 if (instruction->previous_ != nullptr) {
874 instruction->previous_->next_ = instruction->next_;
875 }
876 if (instruction->next_ != nullptr) {
877 instruction->next_->previous_ = instruction->previous_;
878 }
879 if (instruction == first_instruction_) {
880 first_instruction_ = instruction->next_;
881 }
882 if (instruction == last_instruction_) {
883 last_instruction_ = instruction->previous_;
884 }
885}
886
Roland Levillain6b469232014-09-25 10:10:38 +0100887bool HInstructionList::Contains(HInstruction* instruction) const {
888 for (HInstructionIterator it(*this); !it.Done(); it.Advance()) {
889 if (it.Current() == instruction) {
890 return true;
891 }
892 }
893 return false;
894}
895
Roland Levillainccc07a92014-09-16 14:48:16 +0100896bool HInstructionList::FoundBefore(const HInstruction* instruction1,
897 const HInstruction* instruction2) const {
898 DCHECK_EQ(instruction1->GetBlock(), instruction2->GetBlock());
899 for (HInstructionIterator it(*this); !it.Done(); it.Advance()) {
900 if (it.Current() == instruction1) {
901 return true;
902 }
903 if (it.Current() == instruction2) {
904 return false;
905 }
906 }
907 LOG(FATAL) << "Did not find an order between two instructions of the same block.";
908 return true;
909}
910
Roland Levillain6c82d402014-10-13 16:10:27 +0100911bool HInstruction::StrictlyDominates(HInstruction* other_instruction) const {
912 if (other_instruction == this) {
913 // An instruction does not strictly dominate itself.
914 return false;
915 }
Roland Levillainccc07a92014-09-16 14:48:16 +0100916 HBasicBlock* block = GetBlock();
917 HBasicBlock* other_block = other_instruction->GetBlock();
918 if (block != other_block) {
919 return GetBlock()->Dominates(other_instruction->GetBlock());
920 } else {
921 // If both instructions are in the same block, ensure this
922 // instruction comes before `other_instruction`.
923 if (IsPhi()) {
924 if (!other_instruction->IsPhi()) {
925 // Phis appear before non phi-instructions so this instruction
926 // dominates `other_instruction`.
927 return true;
928 } else {
929 // There is no order among phis.
930 LOG(FATAL) << "There is no dominance between phis of a same block.";
931 return false;
932 }
933 } else {
934 // `this` is not a phi.
935 if (other_instruction->IsPhi()) {
936 // Phis appear before non phi-instructions so this instruction
937 // does not dominate `other_instruction`.
938 return false;
939 } else {
940 // Check whether this instruction comes before
941 // `other_instruction` in the instruction list.
942 return block->GetInstructions().FoundBefore(this, other_instruction);
943 }
944 }
945 }
946}
947
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100948void HInstruction::ReplaceWith(HInstruction* other) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100949 DCHECK(other != nullptr);
David Brazdiled596192015-01-23 10:39:45 +0000950 for (HUseIterator<HInstruction*> it(GetUses()); !it.Done(); it.Advance()) {
951 HUseListNode<HInstruction*>* current = it.Current();
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100952 HInstruction* user = current->GetUser();
953 size_t input_index = current->GetIndex();
954 user->SetRawInputAt(input_index, other);
955 other->AddUseAt(user, input_index);
956 }
957
David Brazdiled596192015-01-23 10:39:45 +0000958 for (HUseIterator<HEnvironment*> it(GetEnvUses()); !it.Done(); it.Advance()) {
959 HUseListNode<HEnvironment*>* current = it.Current();
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100960 HEnvironment* user = current->GetUser();
961 size_t input_index = current->GetIndex();
962 user->SetRawEnvAt(input_index, other);
963 other->AddEnvUseAt(user, input_index);
964 }
965
David Brazdiled596192015-01-23 10:39:45 +0000966 uses_.Clear();
967 env_uses_.Clear();
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100968}
969
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100970void HInstruction::ReplaceInput(HInstruction* replacement, size_t index) {
David Brazdil1abb4192015-02-17 18:33:36 +0000971 RemoveAsUserOfInput(index);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100972 SetRawInputAt(index, replacement);
973 replacement->AddUseAt(this, index);
974}
975
Nicolas Geoffray39468442014-09-02 15:17:15 +0100976size_t HInstruction::EnvironmentSize() const {
977 return HasEnvironment() ? environment_->Size() : 0;
978}
979
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100980void HPhi::AddInput(HInstruction* input) {
981 DCHECK(input->GetBlock() != nullptr);
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100982 inputs_.push_back(HUserRecord<HInstruction*>(input));
983 input->AddUseAt(this, inputs_.size() - 1);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100984}
985
David Brazdil2d7352b2015-04-20 14:52:42 +0100986void HPhi::RemoveInputAt(size_t index) {
987 RemoveAsUserOfInput(index);
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100988 inputs_.erase(inputs_.begin() + index);
Nicolas Geoffray5d7b7f82015-04-28 00:52:43 +0100989 for (size_t i = index, e = InputCount(); i < e; ++i) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100990 DCHECK_EQ(InputRecordAt(i).GetUseNode()->GetIndex(), i + 1u);
Nicolas Geoffray5d7b7f82015-04-28 00:52:43 +0100991 InputRecordAt(i).GetUseNode()->SetIndex(i);
992 }
David Brazdil2d7352b2015-04-20 14:52:42 +0100993}
994
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100995#define DEFINE_ACCEPT(name, super) \
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000996void H##name::Accept(HGraphVisitor* visitor) { \
997 visitor->Visit##name(this); \
998}
999
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001000FOR_EACH_CONCRETE_INSTRUCTION(DEFINE_ACCEPT)
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001001
1002#undef DEFINE_ACCEPT
1003
1004void HGraphVisitor::VisitInsertionOrder() {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001005 const ArenaVector<HBasicBlock*>& blocks = graph_->GetBlocks();
1006 for (HBasicBlock* block : blocks) {
David Brazdil46e2a392015-03-16 17:31:52 +00001007 if (block != nullptr) {
1008 VisitBasicBlock(block);
1009 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001010 }
1011}
1012
Roland Levillain633021e2014-10-01 14:12:25 +01001013void HGraphVisitor::VisitReversePostOrder() {
1014 for (HReversePostOrderIterator it(*graph_); !it.Done(); it.Advance()) {
1015 VisitBasicBlock(it.Current());
1016 }
1017}
1018
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001019void HGraphVisitor::VisitBasicBlock(HBasicBlock* block) {
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001020 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001021 it.Current()->Accept(this);
1022 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001023 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001024 it.Current()->Accept(this);
1025 }
1026}
1027
Mark Mendelle82549b2015-05-06 10:55:34 -04001028HConstant* HTypeConversion::TryStaticEvaluation() const {
1029 HGraph* graph = GetBlock()->GetGraph();
1030 if (GetInput()->IsIntConstant()) {
1031 int32_t value = GetInput()->AsIntConstant()->GetValue();
1032 switch (GetResultType()) {
1033 case Primitive::kPrimLong:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001034 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001035 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001036 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001037 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001038 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001039 default:
1040 return nullptr;
1041 }
1042 } else if (GetInput()->IsLongConstant()) {
1043 int64_t value = GetInput()->AsLongConstant()->GetValue();
1044 switch (GetResultType()) {
1045 case Primitive::kPrimInt:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001046 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001047 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001048 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001049 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001050 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001051 default:
1052 return nullptr;
1053 }
1054 } else if (GetInput()->IsFloatConstant()) {
1055 float value = GetInput()->AsFloatConstant()->GetValue();
1056 switch (GetResultType()) {
1057 case Primitive::kPrimInt:
1058 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001059 return graph->GetIntConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001060 if (value >= kPrimIntMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001061 return graph->GetIntConstant(kPrimIntMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001062 if (value <= kPrimIntMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001063 return graph->GetIntConstant(kPrimIntMin, GetDexPc());
1064 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001065 case Primitive::kPrimLong:
1066 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001067 return graph->GetLongConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001068 if (value >= kPrimLongMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001069 return graph->GetLongConstant(kPrimLongMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001070 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001071 return graph->GetLongConstant(kPrimLongMin, GetDexPc());
1072 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001073 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001074 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001075 default:
1076 return nullptr;
1077 }
1078 } else if (GetInput()->IsDoubleConstant()) {
1079 double value = GetInput()->AsDoubleConstant()->GetValue();
1080 switch (GetResultType()) {
1081 case Primitive::kPrimInt:
1082 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001083 return graph->GetIntConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001084 if (value >= kPrimIntMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001085 return graph->GetIntConstant(kPrimIntMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001086 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001087 return graph->GetIntConstant(kPrimIntMin, GetDexPc());
1088 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001089 case Primitive::kPrimLong:
1090 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001091 return graph->GetLongConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001092 if (value >= kPrimLongMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001093 return graph->GetLongConstant(kPrimLongMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001094 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001095 return graph->GetLongConstant(kPrimLongMin, GetDexPc());
1096 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001097 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001098 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001099 default:
1100 return nullptr;
1101 }
1102 }
1103 return nullptr;
1104}
1105
Roland Levillain9240d6a2014-10-20 16:47:04 +01001106HConstant* HUnaryOperation::TryStaticEvaluation() const {
1107 if (GetInput()->IsIntConstant()) {
Roland Levillain9867bc72015-08-05 10:21:34 +01001108 return Evaluate(GetInput()->AsIntConstant());
Roland Levillain9240d6a2014-10-20 16:47:04 +01001109 } else if (GetInput()->IsLongConstant()) {
Roland Levillain9867bc72015-08-05 10:21:34 +01001110 return Evaluate(GetInput()->AsLongConstant());
Roland Levillain9240d6a2014-10-20 16:47:04 +01001111 }
1112 return nullptr;
1113}
1114
1115HConstant* HBinaryOperation::TryStaticEvaluation() const {
Roland Levillain9867bc72015-08-05 10:21:34 +01001116 if (GetLeft()->IsIntConstant()) {
1117 if (GetRight()->IsIntConstant()) {
1118 return Evaluate(GetLeft()->AsIntConstant(), GetRight()->AsIntConstant());
1119 } else if (GetRight()->IsLongConstant()) {
1120 return Evaluate(GetLeft()->AsIntConstant(), GetRight()->AsLongConstant());
1121 }
1122 } else if (GetLeft()->IsLongConstant()) {
1123 if (GetRight()->IsIntConstant()) {
1124 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsIntConstant());
1125 } else if (GetRight()->IsLongConstant()) {
1126 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsLongConstant());
Nicolas Geoffray9ee66182015-01-16 12:35:40 +00001127 }
Vladimir Marko9e23df52015-11-10 17:14:35 +00001128 } else if (GetLeft()->IsNullConstant() && GetRight()->IsNullConstant()) {
1129 return Evaluate(GetLeft()->AsNullConstant(), GetRight()->AsNullConstant());
Roland Levillain556c3d12014-09-18 15:25:07 +01001130 }
1131 return nullptr;
1132}
Dave Allison20dfc792014-06-16 20:44:29 -07001133
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00001134HConstant* HBinaryOperation::GetConstantRight() const {
1135 if (GetRight()->IsConstant()) {
1136 return GetRight()->AsConstant();
1137 } else if (IsCommutative() && GetLeft()->IsConstant()) {
1138 return GetLeft()->AsConstant();
1139 } else {
1140 return nullptr;
1141 }
1142}
1143
1144// If `GetConstantRight()` returns one of the input, this returns the other
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001145// one. Otherwise it returns null.
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00001146HInstruction* HBinaryOperation::GetLeastConstantLeft() const {
1147 HInstruction* most_constant_right = GetConstantRight();
1148 if (most_constant_right == nullptr) {
1149 return nullptr;
1150 } else if (most_constant_right == GetLeft()) {
1151 return GetRight();
1152 } else {
1153 return GetLeft();
1154 }
1155}
1156
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001157bool HCondition::IsBeforeWhenDisregardMoves(HInstruction* instruction) const {
1158 return this == instruction->GetPreviousDisregardingMoves();
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001159}
1160
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001161bool HInstruction::Equals(HInstruction* other) const {
1162 if (!InstructionTypeEquals(other)) return false;
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001163 DCHECK_EQ(GetKind(), other->GetKind());
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001164 if (!InstructionDataEquals(other)) return false;
1165 if (GetType() != other->GetType()) return false;
1166 if (InputCount() != other->InputCount()) return false;
1167
1168 for (size_t i = 0, e = InputCount(); i < e; ++i) {
1169 if (InputAt(i) != other->InputAt(i)) return false;
1170 }
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001171 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode());
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001172 return true;
1173}
1174
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001175std::ostream& operator<<(std::ostream& os, const HInstruction::InstructionKind& rhs) {
1176#define DECLARE_CASE(type, super) case HInstruction::k##type: os << #type; break;
1177 switch (rhs) {
1178 FOR_EACH_INSTRUCTION(DECLARE_CASE)
1179 default:
1180 os << "Unknown instruction kind " << static_cast<int>(rhs);
1181 break;
1182 }
1183#undef DECLARE_CASE
1184 return os;
1185}
1186
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001187void HInstruction::MoveBefore(HInstruction* cursor) {
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001188 next_->previous_ = previous_;
1189 if (previous_ != nullptr) {
1190 previous_->next_ = next_;
1191 }
1192 if (block_->instructions_.first_instruction_ == this) {
1193 block_->instructions_.first_instruction_ = next_;
1194 }
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001195 DCHECK_NE(block_->instructions_.last_instruction_, this);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001196
1197 previous_ = cursor->previous_;
1198 if (previous_ != nullptr) {
1199 previous_->next_ = this;
1200 }
1201 next_ = cursor;
1202 cursor->previous_ = this;
1203 block_ = cursor->block_;
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001204
1205 if (block_->instructions_.first_instruction_ == cursor) {
1206 block_->instructions_.first_instruction_ = this;
1207 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001208}
1209
Vladimir Markofb337ea2015-11-25 15:25:10 +00001210void HInstruction::MoveBeforeFirstUserAndOutOfLoops() {
1211 DCHECK(!CanThrow());
1212 DCHECK(!HasSideEffects());
1213 DCHECK(!HasEnvironmentUses());
1214 DCHECK(HasNonEnvironmentUses());
1215 DCHECK(!IsPhi()); // Makes no sense for Phi.
1216 DCHECK_EQ(InputCount(), 0u);
1217
1218 // Find the target block.
1219 HUseIterator<HInstruction*> uses_it(GetUses());
1220 HBasicBlock* target_block = uses_it.Current()->GetUser()->GetBlock();
1221 uses_it.Advance();
1222 while (!uses_it.Done() && uses_it.Current()->GetUser()->GetBlock() == target_block) {
1223 uses_it.Advance();
1224 }
1225 if (!uses_it.Done()) {
1226 // This instruction has uses in two or more blocks. Find the common dominator.
1227 CommonDominator finder(target_block);
1228 for (; !uses_it.Done(); uses_it.Advance()) {
1229 finder.Update(uses_it.Current()->GetUser()->GetBlock());
1230 }
1231 target_block = finder.Get();
1232 DCHECK(target_block != nullptr);
1233 }
1234 // Move to the first dominator not in a loop.
1235 while (target_block->IsInLoop()) {
1236 target_block = target_block->GetDominator();
1237 DCHECK(target_block != nullptr);
1238 }
1239
1240 // Find insertion position.
1241 HInstruction* insert_pos = nullptr;
1242 for (HUseIterator<HInstruction*> uses_it2(GetUses()); !uses_it2.Done(); uses_it2.Advance()) {
1243 if (uses_it2.Current()->GetUser()->GetBlock() == target_block &&
1244 (insert_pos == nullptr || uses_it2.Current()->GetUser()->StrictlyDominates(insert_pos))) {
1245 insert_pos = uses_it2.Current()->GetUser();
1246 }
1247 }
1248 if (insert_pos == nullptr) {
1249 // No user in `target_block`, insert before the control flow instruction.
1250 insert_pos = target_block->GetLastInstruction();
1251 DCHECK(insert_pos->IsControlFlow());
1252 // Avoid splitting HCondition from HIf to prevent unnecessary materialization.
1253 if (insert_pos->IsIf()) {
1254 HInstruction* if_input = insert_pos->AsIf()->InputAt(0);
1255 if (if_input == insert_pos->GetPrevious()) {
1256 insert_pos = if_input;
1257 }
1258 }
1259 }
1260 MoveBefore(insert_pos);
1261}
1262
David Brazdilfc6a86a2015-06-26 10:33:45 +00001263HBasicBlock* HBasicBlock::SplitBefore(HInstruction* cursor) {
David Brazdil9bc43612015-11-05 21:25:24 +00001264 DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented.";
David Brazdilfc6a86a2015-06-26 10:33:45 +00001265 DCHECK_EQ(cursor->GetBlock(), this);
1266
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001267 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(),
1268 cursor->GetDexPc());
David Brazdilfc6a86a2015-06-26 10:33:45 +00001269 new_block->instructions_.first_instruction_ = cursor;
1270 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1271 instructions_.last_instruction_ = cursor->previous_;
1272 if (cursor->previous_ == nullptr) {
1273 instructions_.first_instruction_ = nullptr;
1274 } else {
1275 cursor->previous_->next_ = nullptr;
1276 cursor->previous_ = nullptr;
1277 }
1278
1279 new_block->instructions_.SetBlockOfInstructions(new_block);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001280 AddInstruction(new (GetGraph()->GetArena()) HGoto(new_block->GetDexPc()));
David Brazdilfc6a86a2015-06-26 10:33:45 +00001281
Vladimir Marko60584552015-09-03 13:35:12 +00001282 for (HBasicBlock* successor : GetSuccessors()) {
1283 new_block->successors_.push_back(successor);
1284 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
David Brazdilfc6a86a2015-06-26 10:33:45 +00001285 }
Vladimir Marko60584552015-09-03 13:35:12 +00001286 successors_.clear();
David Brazdilfc6a86a2015-06-26 10:33:45 +00001287 AddSuccessor(new_block);
1288
David Brazdil56e1acc2015-06-30 15:41:36 +01001289 GetGraph()->AddBlock(new_block);
David Brazdilfc6a86a2015-06-26 10:33:45 +00001290 return new_block;
1291}
1292
David Brazdild7558da2015-09-22 13:04:14 +01001293HBasicBlock* HBasicBlock::CreateImmediateDominator() {
David Brazdil9bc43612015-11-05 21:25:24 +00001294 DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented.";
David Brazdild7558da2015-09-22 13:04:14 +01001295 DCHECK(!IsCatchBlock()) << "Support for updating try/catch information not implemented.";
1296
1297 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc());
1298
1299 for (HBasicBlock* predecessor : GetPredecessors()) {
1300 new_block->predecessors_.push_back(predecessor);
1301 predecessor->successors_[predecessor->GetSuccessorIndexOf(this)] = new_block;
1302 }
1303 predecessors_.clear();
1304 AddPredecessor(new_block);
1305
1306 GetGraph()->AddBlock(new_block);
1307 return new_block;
1308}
1309
David Brazdil9bc43612015-11-05 21:25:24 +00001310HBasicBlock* HBasicBlock::SplitCatchBlockAfterMoveException() {
1311 DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented.";
1312 DCHECK(IsCatchBlock()) << "This method is intended for catch blocks only.";
1313
1314 HInstruction* first_insn = GetFirstInstruction();
1315 HInstruction* split_before = nullptr;
1316
1317 if (first_insn != nullptr && first_insn->IsLoadException()) {
1318 // Catch block starts with a LoadException. Split the block after
1319 // the StoreLocal and ClearException which must come after the load.
1320 DCHECK(first_insn->GetNext()->IsStoreLocal());
1321 DCHECK(first_insn->GetNext()->GetNext()->IsClearException());
1322 split_before = first_insn->GetNext()->GetNext()->GetNext();
1323 } else {
1324 // Catch block does not load the exception. Split at the beginning
1325 // to create an empty catch block.
1326 split_before = first_insn;
1327 }
1328
1329 if (split_before == nullptr) {
1330 // Catch block has no instructions after the split point (must be dead).
1331 // Do not split it but rather signal error by returning nullptr.
1332 return nullptr;
1333 } else {
1334 return SplitBefore(split_before);
1335 }
1336}
1337
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001338HBasicBlock* HBasicBlock::SplitAfter(HInstruction* cursor) {
1339 DCHECK(!cursor->IsControlFlow());
1340 DCHECK_NE(instructions_.last_instruction_, cursor);
1341 DCHECK_EQ(cursor->GetBlock(), this);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001342
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001343 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc());
1344 new_block->instructions_.first_instruction_ = cursor->GetNext();
1345 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1346 cursor->next_->previous_ = nullptr;
1347 cursor->next_ = nullptr;
1348 instructions_.last_instruction_ = cursor;
1349
1350 new_block->instructions_.SetBlockOfInstructions(new_block);
Vladimir Marko60584552015-09-03 13:35:12 +00001351 for (HBasicBlock* successor : GetSuccessors()) {
1352 new_block->successors_.push_back(successor);
1353 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001354 }
Vladimir Marko60584552015-09-03 13:35:12 +00001355 successors_.clear();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001356
Vladimir Marko60584552015-09-03 13:35:12 +00001357 for (HBasicBlock* dominated : GetDominatedBlocks()) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001358 dominated->dominator_ = new_block;
Vladimir Marko60584552015-09-03 13:35:12 +00001359 new_block->dominated_blocks_.push_back(dominated);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001360 }
Vladimir Marko60584552015-09-03 13:35:12 +00001361 dominated_blocks_.clear();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001362 return new_block;
1363}
1364
David Brazdilec16f792015-08-19 15:04:01 +01001365const HTryBoundary* HBasicBlock::ComputeTryEntryOfSuccessors() const {
David Brazdilffee3d32015-07-06 11:48:53 +01001366 if (EndsWithTryBoundary()) {
1367 HTryBoundary* try_boundary = GetLastInstruction()->AsTryBoundary();
1368 if (try_boundary->IsEntry()) {
David Brazdilec16f792015-08-19 15:04:01 +01001369 DCHECK(!IsTryBlock());
David Brazdilffee3d32015-07-06 11:48:53 +01001370 return try_boundary;
1371 } else {
David Brazdilec16f792015-08-19 15:04:01 +01001372 DCHECK(IsTryBlock());
1373 DCHECK(try_catch_information_->GetTryEntry().HasSameExceptionHandlersAs(*try_boundary));
David Brazdilffee3d32015-07-06 11:48:53 +01001374 return nullptr;
1375 }
David Brazdilec16f792015-08-19 15:04:01 +01001376 } else if (IsTryBlock()) {
1377 return &try_catch_information_->GetTryEntry();
David Brazdilffee3d32015-07-06 11:48:53 +01001378 } else {
David Brazdilec16f792015-08-19 15:04:01 +01001379 return nullptr;
David Brazdilffee3d32015-07-06 11:48:53 +01001380 }
David Brazdilfc6a86a2015-06-26 10:33:45 +00001381}
1382
David Brazdild7558da2015-09-22 13:04:14 +01001383bool HBasicBlock::HasThrowingInstructions() const {
1384 for (HInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) {
1385 if (it.Current()->CanThrow()) {
1386 return true;
1387 }
1388 }
1389 return false;
1390}
1391
David Brazdilfc6a86a2015-06-26 10:33:45 +00001392static bool HasOnlyOneInstruction(const HBasicBlock& block) {
1393 return block.GetPhis().IsEmpty()
1394 && !block.GetInstructions().IsEmpty()
1395 && block.GetFirstInstruction() == block.GetLastInstruction();
1396}
1397
David Brazdil46e2a392015-03-16 17:31:52 +00001398bool HBasicBlock::IsSingleGoto() const {
David Brazdilfc6a86a2015-06-26 10:33:45 +00001399 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsGoto();
1400}
1401
1402bool HBasicBlock::IsSingleTryBoundary() const {
1403 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsTryBoundary();
David Brazdil46e2a392015-03-16 17:31:52 +00001404}
1405
David Brazdil8d5b8b22015-03-24 10:51:52 +00001406bool HBasicBlock::EndsWithControlFlowInstruction() const {
1407 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsControlFlow();
1408}
1409
David Brazdilb2bd1c52015-03-25 11:17:37 +00001410bool HBasicBlock::EndsWithIf() const {
1411 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsIf();
1412}
1413
David Brazdilffee3d32015-07-06 11:48:53 +01001414bool HBasicBlock::EndsWithTryBoundary() const {
1415 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsTryBoundary();
1416}
1417
David Brazdilb2bd1c52015-03-25 11:17:37 +00001418bool HBasicBlock::HasSinglePhi() const {
1419 return !GetPhis().IsEmpty() && GetFirstPhi()->GetNext() == nullptr;
1420}
1421
David Brazdild26a4112015-11-10 11:07:31 +00001422ArrayRef<HBasicBlock* const> HBasicBlock::GetNormalSuccessors() const {
1423 if (EndsWithTryBoundary()) {
1424 // The normal-flow successor of HTryBoundary is always stored at index zero.
1425 DCHECK_EQ(successors_[0], GetLastInstruction()->AsTryBoundary()->GetNormalFlowSuccessor());
1426 return ArrayRef<HBasicBlock* const>(successors_).SubArray(0u, 1u);
1427 } else {
1428 // All successors of blocks not ending with TryBoundary are normal.
1429 return ArrayRef<HBasicBlock* const>(successors_);
1430 }
1431}
1432
1433ArrayRef<HBasicBlock* const> HBasicBlock::GetExceptionalSuccessors() const {
1434 if (EndsWithTryBoundary()) {
1435 return GetLastInstruction()->AsTryBoundary()->GetExceptionHandlers();
1436 } else {
1437 // Blocks not ending with TryBoundary do not have exceptional successors.
1438 return ArrayRef<HBasicBlock* const>();
1439 }
1440}
1441
David Brazdilffee3d32015-07-06 11:48:53 +01001442bool HTryBoundary::HasSameExceptionHandlersAs(const HTryBoundary& other) const {
David Brazdild26a4112015-11-10 11:07:31 +00001443 ArrayRef<HBasicBlock* const> handlers1 = GetExceptionHandlers();
1444 ArrayRef<HBasicBlock* const> handlers2 = other.GetExceptionHandlers();
1445
1446 size_t length = handlers1.size();
1447 if (length != handlers2.size()) {
David Brazdilffee3d32015-07-06 11:48:53 +01001448 return false;
1449 }
1450
David Brazdilb618ade2015-07-29 10:31:29 +01001451 // Exception handlers need to be stored in the same order.
David Brazdild26a4112015-11-10 11:07:31 +00001452 for (size_t i = 0; i < length; ++i) {
1453 if (handlers1[i] != handlers2[i]) {
David Brazdilffee3d32015-07-06 11:48:53 +01001454 return false;
1455 }
1456 }
1457 return true;
1458}
1459
David Brazdil2d7352b2015-04-20 14:52:42 +01001460size_t HInstructionList::CountSize() const {
1461 size_t size = 0;
1462 HInstruction* current = first_instruction_;
1463 for (; current != nullptr; current = current->GetNext()) {
1464 size++;
1465 }
1466 return size;
1467}
1468
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001469void HInstructionList::SetBlockOfInstructions(HBasicBlock* block) const {
1470 for (HInstruction* current = first_instruction_;
1471 current != nullptr;
1472 current = current->GetNext()) {
1473 current->SetBlock(block);
1474 }
1475}
1476
1477void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) {
1478 DCHECK(Contains(cursor));
1479 if (!instruction_list.IsEmpty()) {
1480 if (cursor == last_instruction_) {
1481 last_instruction_ = instruction_list.last_instruction_;
1482 } else {
1483 cursor->next_->previous_ = instruction_list.last_instruction_;
1484 }
1485 instruction_list.last_instruction_->next_ = cursor->next_;
1486 cursor->next_ = instruction_list.first_instruction_;
1487 instruction_list.first_instruction_->previous_ = cursor;
1488 }
1489}
1490
1491void HInstructionList::Add(const HInstructionList& instruction_list) {
David Brazdil46e2a392015-03-16 17:31:52 +00001492 if (IsEmpty()) {
1493 first_instruction_ = instruction_list.first_instruction_;
1494 last_instruction_ = instruction_list.last_instruction_;
1495 } else {
1496 AddAfter(last_instruction_, instruction_list);
1497 }
1498}
1499
David Brazdil04ff4e82015-12-10 13:54:52 +00001500// Should be called on instructions in a dead block in post order. This method
1501// assumes `insn` has been removed from all users with the exception of catch
1502// phis because of missing exceptional edges in the graph. It removes the
1503// instruction from catch phi uses, together with inputs of other catch phis in
1504// the catch block at the same index, as these must be dead too.
1505static void RemoveUsesOfDeadInstruction(HInstruction* insn) {
1506 DCHECK(!insn->HasEnvironmentUses());
1507 while (insn->HasNonEnvironmentUses()) {
1508 HUseListNode<HInstruction*>* use = insn->GetUses().GetFirst();
1509 size_t use_index = use->GetIndex();
1510 HBasicBlock* user_block = use->GetUser()->GetBlock();
1511 DCHECK(use->GetUser()->IsPhi() && user_block->IsCatchBlock());
1512 for (HInstructionIterator phi_it(user_block->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1513 phi_it.Current()->AsPhi()->RemoveInputAt(use_index);
1514 }
1515 }
1516}
1517
David Brazdil2d7352b2015-04-20 14:52:42 +01001518void HBasicBlock::DisconnectAndDelete() {
1519 // Dominators must be removed after all the blocks they dominate. This way
1520 // a loop header is removed last, a requirement for correct loop information
1521 // iteration.
Vladimir Marko60584552015-09-03 13:35:12 +00001522 DCHECK(dominated_blocks_.empty());
David Brazdil46e2a392015-03-16 17:31:52 +00001523
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001524 // (1) Remove the block from all loops it is included in.
David Brazdil2d7352b2015-04-20 14:52:42 +01001525 for (HLoopInformationOutwardIterator it(*this); !it.Done(); it.Advance()) {
1526 HLoopInformation* loop_info = it.Current();
1527 loop_info->Remove(this);
1528 if (loop_info->IsBackEdge(*this)) {
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001529 // If this was the last back edge of the loop, we deliberately leave the
1530 // loop in an inconsistent state and will fail SSAChecker unless the
1531 // entire loop is removed during the pass.
David Brazdil2d7352b2015-04-20 14:52:42 +01001532 loop_info->RemoveBackEdge(this);
1533 }
1534 }
1535
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001536 // (2) Disconnect the block from its predecessors and update their
1537 // control-flow instructions.
Vladimir Marko60584552015-09-03 13:35:12 +00001538 for (HBasicBlock* predecessor : predecessors_) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001539 HInstruction* last_instruction = predecessor->GetLastInstruction();
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001540 if (last_instruction->IsTryBoundary() && !IsCatchBlock()) {
1541 // This block is the only normal-flow successor of the TryBoundary which
1542 // makes `predecessor` dead. Since DCE removes blocks in post order,
1543 // exception handlers of this TryBoundary were already visited and any
1544 // remaining handlers therefore must be live. We remove `predecessor` from
1545 // their list of predecessors.
1546 DCHECK_EQ(last_instruction->AsTryBoundary()->GetNormalFlowSuccessor(), this);
1547 while (predecessor->GetSuccessors().size() > 1) {
1548 HBasicBlock* handler = predecessor->GetSuccessors()[1];
1549 DCHECK(handler->IsCatchBlock());
1550 predecessor->RemoveSuccessor(handler);
1551 handler->RemovePredecessor(predecessor);
1552 }
1553 }
1554
David Brazdil2d7352b2015-04-20 14:52:42 +01001555 predecessor->RemoveSuccessor(this);
Mark Mendellfe57faa2015-09-18 09:26:15 -04001556 uint32_t num_pred_successors = predecessor->GetSuccessors().size();
1557 if (num_pred_successors == 1u) {
1558 // If we have one successor after removing one, then we must have
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001559 // had an HIf, HPackedSwitch or HTryBoundary, as they have more than one
1560 // successor. Replace those with a HGoto.
1561 DCHECK(last_instruction->IsIf() ||
1562 last_instruction->IsPackedSwitch() ||
1563 (last_instruction->IsTryBoundary() && IsCatchBlock()));
Mark Mendellfe57faa2015-09-18 09:26:15 -04001564 predecessor->RemoveInstruction(last_instruction);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001565 predecessor->AddInstruction(new (graph_->GetArena()) HGoto(last_instruction->GetDexPc()));
Mark Mendellfe57faa2015-09-18 09:26:15 -04001566 } else if (num_pred_successors == 0u) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001567 // The predecessor has no remaining successors and therefore must be dead.
1568 // We deliberately leave it without a control-flow instruction so that the
1569 // SSAChecker fails unless it is not removed during the pass too.
Mark Mendellfe57faa2015-09-18 09:26:15 -04001570 predecessor->RemoveInstruction(last_instruction);
1571 } else {
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001572 // There are multiple successors left. The removed block might be a successor
1573 // of a PackedSwitch which will be completely removed (perhaps replaced with
1574 // a Goto), or we are deleting a catch block from a TryBoundary. In either
1575 // case, leave `last_instruction` as is for now.
1576 DCHECK(last_instruction->IsPackedSwitch() ||
1577 (last_instruction->IsTryBoundary() && IsCatchBlock()));
David Brazdil2d7352b2015-04-20 14:52:42 +01001578 }
David Brazdil46e2a392015-03-16 17:31:52 +00001579 }
Vladimir Marko60584552015-09-03 13:35:12 +00001580 predecessors_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001581
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001582 // (3) Disconnect the block from its successors and update their phis.
Vladimir Marko60584552015-09-03 13:35:12 +00001583 for (HBasicBlock* successor : successors_) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001584 // Delete this block from the list of predecessors.
1585 size_t this_index = successor->GetPredecessorIndexOf(this);
Vladimir Marko60584552015-09-03 13:35:12 +00001586 successor->predecessors_.erase(successor->predecessors_.begin() + this_index);
David Brazdil2d7352b2015-04-20 14:52:42 +01001587
1588 // Check that `successor` has other predecessors, otherwise `this` is the
1589 // dominator of `successor` which violates the order DCHECKed at the top.
Vladimir Marko60584552015-09-03 13:35:12 +00001590 DCHECK(!successor->predecessors_.empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001591
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001592 // Remove this block's entries in the successor's phis. Skip exceptional
1593 // successors because catch phi inputs do not correspond to predecessor
1594 // blocks but throwing instructions. Their inputs will be updated in step (4).
1595 if (!successor->IsCatchBlock()) {
1596 if (successor->predecessors_.size() == 1u) {
1597 // The successor has just one predecessor left. Replace phis with the only
1598 // remaining input.
1599 for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1600 HPhi* phi = phi_it.Current()->AsPhi();
1601 phi->ReplaceWith(phi->InputAt(1 - this_index));
1602 successor->RemovePhi(phi);
1603 }
1604 } else {
1605 for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1606 phi_it.Current()->AsPhi()->RemoveInputAt(this_index);
1607 }
David Brazdil2d7352b2015-04-20 14:52:42 +01001608 }
1609 }
1610 }
Vladimir Marko60584552015-09-03 13:35:12 +00001611 successors_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001612
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001613 // (4) Remove instructions and phis. Instructions should have no remaining uses
1614 // except in catch phis. If an instruction is used by a catch phi at `index`,
1615 // remove `index`-th input of all phis in the catch block since they are
1616 // guaranteed dead. Note that we may miss dead inputs this way but the
1617 // graph will always remain consistent.
1618 for (HBackwardInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) {
1619 HInstruction* insn = it.Current();
David Brazdil04ff4e82015-12-10 13:54:52 +00001620 RemoveUsesOfDeadInstruction(insn);
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001621 RemoveInstruction(insn);
1622 }
1623 for (HInstructionIterator it(GetPhis()); !it.Done(); it.Advance()) {
David Brazdil04ff4e82015-12-10 13:54:52 +00001624 HPhi* insn = it.Current()->AsPhi();
1625 RemoveUsesOfDeadInstruction(insn);
1626 RemovePhi(insn);
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001627 }
1628
David Brazdil2d7352b2015-04-20 14:52:42 +01001629 // Disconnect from the dominator.
1630 dominator_->RemoveDominatedBlock(this);
1631 SetDominator(nullptr);
1632
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001633 // Delete from the graph, update reverse post order.
1634 graph_->DeleteDeadEmptyBlock(this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001635 SetGraph(nullptr);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001636}
1637
1638void HBasicBlock::MergeWith(HBasicBlock* other) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001639 DCHECK_EQ(GetGraph(), other->GetGraph());
Vladimir Marko60584552015-09-03 13:35:12 +00001640 DCHECK(ContainsElement(dominated_blocks_, other));
1641 DCHECK_EQ(GetSingleSuccessor(), other);
1642 DCHECK_EQ(other->GetSinglePredecessor(), this);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001643 DCHECK(other->GetPhis().IsEmpty());
1644
David Brazdil2d7352b2015-04-20 14:52:42 +01001645 // Move instructions from `other` to `this`.
1646 DCHECK(EndsWithControlFlowInstruction());
1647 RemoveInstruction(GetLastInstruction());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001648 instructions_.Add(other->GetInstructions());
David Brazdil2d7352b2015-04-20 14:52:42 +01001649 other->instructions_.SetBlockOfInstructions(this);
1650 other->instructions_.Clear();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001651
David Brazdil2d7352b2015-04-20 14:52:42 +01001652 // Remove `other` from the loops it is included in.
1653 for (HLoopInformationOutwardIterator it(*other); !it.Done(); it.Advance()) {
1654 HLoopInformation* loop_info = it.Current();
1655 loop_info->Remove(other);
1656 if (loop_info->IsBackEdge(*other)) {
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001657 loop_info->ReplaceBackEdge(other, this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001658 }
1659 }
1660
1661 // Update links to the successors of `other`.
Vladimir Marko60584552015-09-03 13:35:12 +00001662 successors_.clear();
1663 while (!other->successors_.empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001664 HBasicBlock* successor = other->GetSuccessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001665 successor->ReplacePredecessor(other, this);
1666 }
1667
David Brazdil2d7352b2015-04-20 14:52:42 +01001668 // Update the dominator tree.
Vladimir Marko60584552015-09-03 13:35:12 +00001669 RemoveDominatedBlock(other);
1670 for (HBasicBlock* dominated : other->GetDominatedBlocks()) {
1671 dominated_blocks_.push_back(dominated);
David Brazdil2d7352b2015-04-20 14:52:42 +01001672 dominated->SetDominator(this);
1673 }
Vladimir Marko60584552015-09-03 13:35:12 +00001674 other->dominated_blocks_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001675 other->dominator_ = nullptr;
1676
1677 // Clear the list of predecessors of `other` in preparation of deleting it.
Vladimir Marko60584552015-09-03 13:35:12 +00001678 other->predecessors_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001679
1680 // Delete `other` from the graph. The function updates reverse post order.
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001681 graph_->DeleteDeadEmptyBlock(other);
David Brazdil2d7352b2015-04-20 14:52:42 +01001682 other->SetGraph(nullptr);
1683}
1684
1685void HBasicBlock::MergeWithInlined(HBasicBlock* other) {
1686 DCHECK_NE(GetGraph(), other->GetGraph());
Vladimir Marko60584552015-09-03 13:35:12 +00001687 DCHECK(GetDominatedBlocks().empty());
1688 DCHECK(GetSuccessors().empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001689 DCHECK(!EndsWithControlFlowInstruction());
Vladimir Marko60584552015-09-03 13:35:12 +00001690 DCHECK(other->GetSinglePredecessor()->IsEntryBlock());
David Brazdil2d7352b2015-04-20 14:52:42 +01001691 DCHECK(other->GetPhis().IsEmpty());
1692 DCHECK(!other->IsInLoop());
1693
1694 // Move instructions from `other` to `this`.
1695 instructions_.Add(other->GetInstructions());
1696 other->instructions_.SetBlockOfInstructions(this);
1697
1698 // Update links to the successors of `other`.
Vladimir Marko60584552015-09-03 13:35:12 +00001699 successors_.clear();
1700 while (!other->successors_.empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001701 HBasicBlock* successor = other->GetSuccessors()[0];
David Brazdil2d7352b2015-04-20 14:52:42 +01001702 successor->ReplacePredecessor(other, this);
1703 }
1704
1705 // Update the dominator tree.
Vladimir Marko60584552015-09-03 13:35:12 +00001706 for (HBasicBlock* dominated : other->GetDominatedBlocks()) {
1707 dominated_blocks_.push_back(dominated);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001708 dominated->SetDominator(this);
1709 }
Vladimir Marko60584552015-09-03 13:35:12 +00001710 other->dominated_blocks_.clear();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001711 other->dominator_ = nullptr;
1712 other->graph_ = nullptr;
1713}
1714
1715void HBasicBlock::ReplaceWith(HBasicBlock* other) {
Vladimir Marko60584552015-09-03 13:35:12 +00001716 while (!GetPredecessors().empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001717 HBasicBlock* predecessor = GetPredecessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001718 predecessor->ReplaceSuccessor(this, other);
1719 }
Vladimir Marko60584552015-09-03 13:35:12 +00001720 while (!GetSuccessors().empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001721 HBasicBlock* successor = GetSuccessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001722 successor->ReplacePredecessor(this, other);
1723 }
Vladimir Marko60584552015-09-03 13:35:12 +00001724 for (HBasicBlock* dominated : GetDominatedBlocks()) {
1725 other->AddDominatedBlock(dominated);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001726 }
1727 GetDominator()->ReplaceDominatedBlock(this, other);
1728 other->SetDominator(GetDominator());
1729 dominator_ = nullptr;
1730 graph_ = nullptr;
1731}
1732
1733// Create space in `blocks` for adding `number_of_new_blocks` entries
1734// starting at location `at`. Blocks after `at` are moved accordingly.
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001735static void MakeRoomFor(ArenaVector<HBasicBlock*>* blocks,
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001736 size_t number_of_new_blocks,
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001737 size_t after) {
1738 DCHECK_LT(after, blocks->size());
1739 size_t old_size = blocks->size();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001740 size_t new_size = old_size + number_of_new_blocks;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001741 blocks->resize(new_size);
1742 std::copy_backward(blocks->begin() + after + 1u, blocks->begin() + old_size, blocks->end());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001743}
1744
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001745void HGraph::DeleteDeadEmptyBlock(HBasicBlock* block) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001746 DCHECK_EQ(block->GetGraph(), this);
Vladimir Marko60584552015-09-03 13:35:12 +00001747 DCHECK(block->GetSuccessors().empty());
1748 DCHECK(block->GetPredecessors().empty());
1749 DCHECK(block->GetDominatedBlocks().empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001750 DCHECK(block->GetDominator() == nullptr);
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001751 DCHECK(block->GetInstructions().IsEmpty());
1752 DCHECK(block->GetPhis().IsEmpty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001753
David Brazdilc7af85d2015-05-26 12:05:55 +01001754 if (block->IsExitBlock()) {
1755 exit_block_ = nullptr;
1756 }
1757
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001758 RemoveElement(reverse_post_order_, block);
1759 blocks_[block->GetBlockId()] = nullptr;
David Brazdil2d7352b2015-04-20 14:52:42 +01001760}
1761
Calin Juravle2e768302015-07-28 14:41:11 +00001762HInstruction* HGraph::InlineInto(HGraph* outer_graph, HInvoke* invoke) {
David Brazdilc7af85d2015-05-26 12:05:55 +01001763 DCHECK(HasExitBlock()) << "Unimplemented scenario";
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01001764 // Update the environments in this graph to have the invoke's environment
1765 // as parent.
1766 {
1767 HReversePostOrderIterator it(*this);
1768 it.Advance(); // Skip the entry block, we do not need to update the entry's suspend check.
1769 for (; !it.Done(); it.Advance()) {
1770 HBasicBlock* block = it.Current();
1771 for (HInstructionIterator instr_it(block->GetInstructions());
1772 !instr_it.Done();
1773 instr_it.Advance()) {
1774 HInstruction* current = instr_it.Current();
1775 if (current->NeedsEnvironment()) {
1776 current->GetEnvironment()->SetAndCopyParentChain(
1777 outer_graph->GetArena(), invoke->GetEnvironment());
1778 }
1779 }
1780 }
1781 }
1782 outer_graph->UpdateMaximumNumberOfOutVRegs(GetMaximumNumberOfOutVRegs());
1783 if (HasBoundsChecks()) {
1784 outer_graph->SetHasBoundsChecks(true);
1785 }
1786
Calin Juravle2e768302015-07-28 14:41:11 +00001787 HInstruction* return_value = nullptr;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001788 if (GetBlocks().size() == 3) {
Nicolas Geoffraybe31ff92015-02-04 14:52:20 +00001789 // Simple case of an entry block, a body block, and an exit block.
1790 // Put the body block's instruction into `invoke`'s block.
Vladimir Markoec7802a2015-10-01 20:57:57 +01001791 HBasicBlock* body = GetBlocks()[1];
1792 DCHECK(GetBlocks()[0]->IsEntryBlock());
1793 DCHECK(GetBlocks()[2]->IsExitBlock());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001794 DCHECK(!body->IsExitBlock());
1795 HInstruction* last = body->GetLastInstruction();
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001796
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001797 invoke->GetBlock()->instructions_.AddAfter(invoke, body->GetInstructions());
1798 body->GetInstructions().SetBlockOfInstructions(invoke->GetBlock());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001799
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001800 // Replace the invoke with the return value of the inlined graph.
1801 if (last->IsReturn()) {
Calin Juravle2e768302015-07-28 14:41:11 +00001802 return_value = last->InputAt(0);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001803 } else {
1804 DCHECK(last->IsReturnVoid());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001805 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001806
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001807 invoke->GetBlock()->RemoveInstruction(last);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001808 } else {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001809 // Need to inline multiple blocks. We split `invoke`'s block
1810 // into two blocks, merge the first block of the inlined graph into
Nicolas Geoffraybe31ff92015-02-04 14:52:20 +00001811 // the first half, and replace the exit block of the inlined graph
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001812 // with the second half.
1813 ArenaAllocator* allocator = outer_graph->GetArena();
1814 HBasicBlock* at = invoke->GetBlock();
1815 HBasicBlock* to = at->SplitAfter(invoke);
1816
Vladimir Markoec7802a2015-10-01 20:57:57 +01001817 HBasicBlock* first = entry_block_->GetSuccessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001818 DCHECK(!first->IsInLoop());
David Brazdil2d7352b2015-04-20 14:52:42 +01001819 at->MergeWithInlined(first);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001820 exit_block_->ReplaceWith(to);
1821
1822 // Update all predecessors of the exit block (now the `to` block)
Nicolas Geoffray817bce72015-02-24 13:35:38 +00001823 // to not `HReturn` but `HGoto` instead.
Vladimir Markoec7802a2015-10-01 20:57:57 +01001824 bool returns_void = to->GetPredecessors()[0]->GetLastInstruction()->IsReturnVoid();
Vladimir Marko60584552015-09-03 13:35:12 +00001825 if (to->GetPredecessors().size() == 1) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001826 HBasicBlock* predecessor = to->GetPredecessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001827 HInstruction* last = predecessor->GetLastInstruction();
Nicolas Geoffray817bce72015-02-24 13:35:38 +00001828 if (!returns_void) {
1829 return_value = last->InputAt(0);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001830 }
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001831 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001832 predecessor->RemoveInstruction(last);
Nicolas Geoffray817bce72015-02-24 13:35:38 +00001833 } else {
1834 if (!returns_void) {
1835 // There will be multiple returns.
Nicolas Geoffray4f1a3842015-03-12 10:34:11 +00001836 return_value = new (allocator) HPhi(
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001837 allocator, kNoRegNumber, 0, HPhi::ToPhiType(invoke->GetType()), to->GetDexPc());
Nicolas Geoffray817bce72015-02-24 13:35:38 +00001838 to->AddPhi(return_value->AsPhi());
1839 }
Vladimir Marko60584552015-09-03 13:35:12 +00001840 for (HBasicBlock* predecessor : to->GetPredecessors()) {
Nicolas Geoffray817bce72015-02-24 13:35:38 +00001841 HInstruction* last = predecessor->GetLastInstruction();
1842 if (!returns_void) {
1843 return_value->AsPhi()->AddInput(last->InputAt(0));
1844 }
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001845 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
Nicolas Geoffray817bce72015-02-24 13:35:38 +00001846 predecessor->RemoveInstruction(last);
1847 }
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001848 }
1849
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001850 // Update the meta information surrounding blocks:
1851 // (1) the graph they are now in,
1852 // (2) the reverse post order of that graph,
David Brazdil95177982015-10-30 12:56:58 -05001853 // (3) the potential loop information they are now in,
1854 // (4) try block membership.
David Brazdil59a850e2015-11-10 13:04:30 +00001855 // Note that we do not need to update catch phi inputs because they
1856 // correspond to the register file of the outer method which the inlinee
1857 // cannot modify.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001858
1859 // We don't add the entry block, the exit block, and the first block, which
1860 // has been merged with `at`.
1861 static constexpr int kNumberOfSkippedBlocksInCallee = 3;
1862
1863 // We add the `to` block.
1864 static constexpr int kNumberOfNewBlocksInCaller = 1;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001865 size_t blocks_added = (reverse_post_order_.size() - kNumberOfSkippedBlocksInCallee)
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001866 + kNumberOfNewBlocksInCaller;
1867
1868 // Find the location of `at` in the outer graph's reverse post order. The new
1869 // blocks will be added after it.
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001870 size_t index_of_at = IndexOfElement(outer_graph->reverse_post_order_, at);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001871 MakeRoomFor(&outer_graph->reverse_post_order_, blocks_added, index_of_at);
1872
David Brazdil95177982015-10-30 12:56:58 -05001873 HLoopInformation* loop_info = at->GetLoopInformation();
1874 // Copy TryCatchInformation if `at` is a try block, not if it is a catch block.
1875 TryCatchInformation* try_catch_info = at->IsTryBlock() ? at->GetTryCatchInformation() : nullptr;
1876
1877 // Do a reverse post order of the blocks in the callee and do (1), (2), (3)
1878 // and (4) to the blocks that apply.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001879 for (HReversePostOrderIterator it(*this); !it.Done(); it.Advance()) {
1880 HBasicBlock* current = it.Current();
1881 if (current != exit_block_ && current != entry_block_ && current != first) {
1882 DCHECK(!current->IsInLoop());
David Brazdil95177982015-10-30 12:56:58 -05001883 DCHECK(current->GetTryCatchInformation() == nullptr);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001884 DCHECK(current->GetGraph() == this);
1885 current->SetGraph(outer_graph);
1886 outer_graph->AddBlock(current);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001887 outer_graph->reverse_post_order_[++index_of_at] = current;
David Brazdil95177982015-10-30 12:56:58 -05001888 if (loop_info != nullptr) {
1889 current->SetLoopInformation(loop_info);
David Brazdil7d275372015-04-21 16:36:35 +01001890 for (HLoopInformationOutwardIterator loop_it(*at); !loop_it.Done(); loop_it.Advance()) {
1891 loop_it.Current()->Add(current);
1892 }
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001893 }
David Brazdil95177982015-10-30 12:56:58 -05001894 current->SetTryCatchInformation(try_catch_info);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001895 }
1896 }
1897
David Brazdil95177982015-10-30 12:56:58 -05001898 // Do (1), (2), (3) and (4) to `to`.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001899 to->SetGraph(outer_graph);
1900 outer_graph->AddBlock(to);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001901 outer_graph->reverse_post_order_[++index_of_at] = to;
David Brazdil95177982015-10-30 12:56:58 -05001902 if (loop_info != nullptr) {
1903 to->SetLoopInformation(loop_info);
David Brazdil7d275372015-04-21 16:36:35 +01001904 for (HLoopInformationOutwardIterator loop_it(*at); !loop_it.Done(); loop_it.Advance()) {
1905 loop_it.Current()->Add(to);
1906 }
David Brazdil95177982015-10-30 12:56:58 -05001907 if (loop_info->IsBackEdge(*at)) {
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001908 // Only `to` can become a back edge, as the inlined blocks
1909 // are predecessors of `to`.
David Brazdil95177982015-10-30 12:56:58 -05001910 loop_info->ReplaceBackEdge(at, to);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001911 }
1912 }
David Brazdil95177982015-10-30 12:56:58 -05001913 to->SetTryCatchInformation(try_catch_info);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001914 }
Nicolas Geoffray7c5367b2014-12-17 10:13:46 +00001915
David Brazdil05144f42015-04-16 15:18:00 +01001916 // Update the next instruction id of the outer graph, so that instructions
1917 // added later get bigger ids than those in the inner graph.
1918 outer_graph->SetCurrentInstructionId(GetNextInstructionId());
1919
1920 // Walk over the entry block and:
1921 // - Move constants from the entry block to the outer_graph's entry block,
1922 // - Replace HParameterValue instructions with their real value.
1923 // - Remove suspend checks, that hold an environment.
1924 // We must do this after the other blocks have been inlined, otherwise ids of
1925 // constants could overlap with the inner graph.
Roland Levillain4c0eb422015-04-24 16:43:49 +01001926 size_t parameter_index = 0;
David Brazdil05144f42015-04-16 15:18:00 +01001927 for (HInstructionIterator it(entry_block_->GetInstructions()); !it.Done(); it.Advance()) {
1928 HInstruction* current = it.Current();
Calin Juravle214bbcd2015-10-20 14:54:07 +01001929 HInstruction* replacement = nullptr;
David Brazdil05144f42015-04-16 15:18:00 +01001930 if (current->IsNullConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01001931 replacement = outer_graph->GetNullConstant(current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01001932 } else if (current->IsIntConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01001933 replacement = outer_graph->GetIntConstant(
1934 current->AsIntConstant()->GetValue(), current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01001935 } else if (current->IsLongConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01001936 replacement = outer_graph->GetLongConstant(
1937 current->AsLongConstant()->GetValue(), current->GetDexPc());
Nicolas Geoffrayf213e052015-04-27 08:53:46 +00001938 } else if (current->IsFloatConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01001939 replacement = outer_graph->GetFloatConstant(
1940 current->AsFloatConstant()->GetValue(), current->GetDexPc());
Nicolas Geoffrayf213e052015-04-27 08:53:46 +00001941 } else if (current->IsDoubleConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01001942 replacement = outer_graph->GetDoubleConstant(
1943 current->AsDoubleConstant()->GetValue(), current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01001944 } else if (current->IsParameterValue()) {
Roland Levillain4c0eb422015-04-24 16:43:49 +01001945 if (kIsDebugBuild
1946 && invoke->IsInvokeStaticOrDirect()
1947 && invoke->AsInvokeStaticOrDirect()->IsStaticWithExplicitClinitCheck()) {
1948 // Ensure we do not use the last input of `invoke`, as it
1949 // contains a clinit check which is not an actual argument.
1950 size_t last_input_index = invoke->InputCount() - 1;
1951 DCHECK(parameter_index != last_input_index);
1952 }
Calin Juravle214bbcd2015-10-20 14:54:07 +01001953 replacement = invoke->InputAt(parameter_index++);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01001954 } else if (current->IsCurrentMethod()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01001955 replacement = outer_graph->GetCurrentMethod();
David Brazdil05144f42015-04-16 15:18:00 +01001956 } else {
1957 DCHECK(current->IsGoto() || current->IsSuspendCheck());
1958 entry_block_->RemoveInstruction(current);
1959 }
Calin Juravle214bbcd2015-10-20 14:54:07 +01001960 if (replacement != nullptr) {
1961 current->ReplaceWith(replacement);
1962 // If the current is the return value then we need to update the latter.
1963 if (current == return_value) {
1964 DCHECK_EQ(entry_block_, return_value->GetBlock());
1965 return_value = replacement;
1966 }
1967 }
1968 }
1969
1970 if (return_value != nullptr) {
1971 invoke->ReplaceWith(return_value);
David Brazdil05144f42015-04-16 15:18:00 +01001972 }
1973
Nicolas Geoffray7c5367b2014-12-17 10:13:46 +00001974 // Finally remove the invoke from the caller.
1975 invoke->GetBlock()->RemoveInstruction(invoke);
Calin Juravle2e768302015-07-28 14:41:11 +00001976
1977 return return_value;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001978}
1979
Mingyao Yang3584bce2015-05-19 16:01:59 -07001980/*
1981 * Loop will be transformed to:
1982 * old_pre_header
1983 * |
1984 * if_block
1985 * / \
Aart Bik3fc7f352015-11-20 22:03:03 -08001986 * true_block false_block
Mingyao Yang3584bce2015-05-19 16:01:59 -07001987 * \ /
1988 * new_pre_header
1989 * |
1990 * header
1991 */
1992void HGraph::TransformLoopHeaderForBCE(HBasicBlock* header) {
1993 DCHECK(header->IsLoopHeader());
Aart Bik3fc7f352015-11-20 22:03:03 -08001994 HBasicBlock* old_pre_header = header->GetDominator();
Mingyao Yang3584bce2015-05-19 16:01:59 -07001995
Aart Bik3fc7f352015-11-20 22:03:03 -08001996 // Need extra block to avoid critical edge.
Mingyao Yang3584bce2015-05-19 16:01:59 -07001997 HBasicBlock* if_block = new (arena_) HBasicBlock(this, header->GetDexPc());
Aart Bik3fc7f352015-11-20 22:03:03 -08001998 HBasicBlock* true_block = new (arena_) HBasicBlock(this, header->GetDexPc());
1999 HBasicBlock* false_block = new (arena_) HBasicBlock(this, header->GetDexPc());
Mingyao Yang3584bce2015-05-19 16:01:59 -07002000 HBasicBlock* new_pre_header = new (arena_) HBasicBlock(this, header->GetDexPc());
2001 AddBlock(if_block);
Aart Bik3fc7f352015-11-20 22:03:03 -08002002 AddBlock(true_block);
2003 AddBlock(false_block);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002004 AddBlock(new_pre_header);
2005
Aart Bik3fc7f352015-11-20 22:03:03 -08002006 header->ReplacePredecessor(old_pre_header, new_pre_header);
2007 old_pre_header->successors_.clear();
2008 old_pre_header->dominated_blocks_.clear();
Mingyao Yang3584bce2015-05-19 16:01:59 -07002009
Aart Bik3fc7f352015-11-20 22:03:03 -08002010 old_pre_header->AddSuccessor(if_block);
2011 if_block->AddSuccessor(true_block); // True successor
2012 if_block->AddSuccessor(false_block); // False successor
2013 true_block->AddSuccessor(new_pre_header);
2014 false_block->AddSuccessor(new_pre_header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002015
Aart Bik3fc7f352015-11-20 22:03:03 -08002016 old_pre_header->dominated_blocks_.push_back(if_block);
2017 if_block->SetDominator(old_pre_header);
2018 if_block->dominated_blocks_.push_back(true_block);
2019 true_block->SetDominator(if_block);
2020 if_block->dominated_blocks_.push_back(false_block);
2021 false_block->SetDominator(if_block);
Vladimir Marko60584552015-09-03 13:35:12 +00002022 if_block->dominated_blocks_.push_back(new_pre_header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002023 new_pre_header->SetDominator(if_block);
Vladimir Marko60584552015-09-03 13:35:12 +00002024 new_pre_header->dominated_blocks_.push_back(header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002025 header->SetDominator(new_pre_header);
2026
Aart Bik3fc7f352015-11-20 22:03:03 -08002027 // Fix reverse post order.
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002028 size_t index_of_header = IndexOfElement(reverse_post_order_, header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002029 MakeRoomFor(&reverse_post_order_, 4, index_of_header - 1);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002030 reverse_post_order_[index_of_header++] = if_block;
Aart Bik3fc7f352015-11-20 22:03:03 -08002031 reverse_post_order_[index_of_header++] = true_block;
2032 reverse_post_order_[index_of_header++] = false_block;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002033 reverse_post_order_[index_of_header++] = new_pre_header;
Mingyao Yang3584bce2015-05-19 16:01:59 -07002034
Aart Bik3fc7f352015-11-20 22:03:03 -08002035 // Fix loop information.
2036 HLoopInformation* loop_info = old_pre_header->GetLoopInformation();
2037 if (loop_info != nullptr) {
2038 if_block->SetLoopInformation(loop_info);
2039 true_block->SetLoopInformation(loop_info);
2040 false_block->SetLoopInformation(loop_info);
2041 new_pre_header->SetLoopInformation(loop_info);
2042 // Add blocks to all enveloping loops.
2043 for (HLoopInformationOutwardIterator loop_it(*old_pre_header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002044 !loop_it.Done();
2045 loop_it.Advance()) {
2046 loop_it.Current()->Add(if_block);
Aart Bik3fc7f352015-11-20 22:03:03 -08002047 loop_it.Current()->Add(true_block);
2048 loop_it.Current()->Add(false_block);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002049 loop_it.Current()->Add(new_pre_header);
2050 }
2051 }
Aart Bik3fc7f352015-11-20 22:03:03 -08002052
2053 // Fix try/catch information.
2054 TryCatchInformation* try_catch_info = old_pre_header->IsTryBlock()
2055 ? old_pre_header->GetTryCatchInformation()
2056 : nullptr;
2057 if_block->SetTryCatchInformation(try_catch_info);
2058 true_block->SetTryCatchInformation(try_catch_info);
2059 false_block->SetTryCatchInformation(try_catch_info);
2060 new_pre_header->SetTryCatchInformation(try_catch_info);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002061}
2062
David Brazdilf5552582015-12-27 13:36:12 +00002063static void CheckAgainstUpperBound(ReferenceTypeInfo rti, ReferenceTypeInfo upper_bound_rti)
2064 SHARED_REQUIRES(Locks::mutator_lock_) {
2065 if (rti.IsValid()) {
2066 DCHECK(upper_bound_rti.IsSupertypeOf(rti))
2067 << " upper_bound_rti: " << upper_bound_rti
2068 << " rti: " << rti;
2069 DCHECK(!upper_bound_rti.GetTypeHandle()->CannotBeAssignedFromOtherTypes() || rti.IsExact());
2070 }
2071}
2072
Calin Juravle2e768302015-07-28 14:41:11 +00002073void HInstruction::SetReferenceTypeInfo(ReferenceTypeInfo rti) {
2074 if (kIsDebugBuild) {
2075 DCHECK_EQ(GetType(), Primitive::kPrimNot);
2076 ScopedObjectAccess soa(Thread::Current());
2077 DCHECK(rti.IsValid()) << "Invalid RTI for " << DebugName();
2078 if (IsBoundType()) {
2079 // Having the test here spares us from making the method virtual just for
2080 // the sake of a DCHECK.
David Brazdilf5552582015-12-27 13:36:12 +00002081 CheckAgainstUpperBound(rti, AsBoundType()->GetUpperBound());
Calin Juravle2e768302015-07-28 14:41:11 +00002082 }
2083 }
2084 reference_type_info_ = rti;
2085}
2086
David Brazdilf5552582015-12-27 13:36:12 +00002087void HBoundType::SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null) {
2088 if (kIsDebugBuild) {
2089 ScopedObjectAccess soa(Thread::Current());
2090 DCHECK(upper_bound.IsValid());
2091 DCHECK(!upper_bound_.IsValid()) << "Upper bound should only be set once.";
2092 CheckAgainstUpperBound(GetReferenceTypeInfo(), upper_bound);
2093 }
2094 upper_bound_ = upper_bound;
2095 upper_can_be_null_ = can_be_null;
2096}
2097
Calin Juravle2e768302015-07-28 14:41:11 +00002098ReferenceTypeInfo::ReferenceTypeInfo() : type_handle_(TypeHandle()), is_exact_(false) {}
2099
2100ReferenceTypeInfo::ReferenceTypeInfo(TypeHandle type_handle, bool is_exact)
2101 : type_handle_(type_handle), is_exact_(is_exact) {
2102 if (kIsDebugBuild) {
2103 ScopedObjectAccess soa(Thread::Current());
2104 DCHECK(IsValidHandle(type_handle));
2105 }
2106}
2107
Calin Juravleacf735c2015-02-12 15:25:22 +00002108std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs) {
2109 ScopedObjectAccess soa(Thread::Current());
2110 os << "["
Calin Juravle2e768302015-07-28 14:41:11 +00002111 << " is_valid=" << rhs.IsValid()
2112 << " type=" << (!rhs.IsValid() ? "?" : PrettyClass(rhs.GetTypeHandle().Get()))
Calin Juravleacf735c2015-02-12 15:25:22 +00002113 << " is_exact=" << rhs.IsExact()
2114 << " ]";
2115 return os;
2116}
2117
Mark Mendellc4701932015-04-10 13:18:51 -04002118bool HInstruction::HasAnyEnvironmentUseBefore(HInstruction* other) {
2119 // For now, assume that instructions in different blocks may use the
2120 // environment.
2121 // TODO: Use the control flow to decide if this is true.
2122 if (GetBlock() != other->GetBlock()) {
2123 return true;
2124 }
2125
2126 // We know that we are in the same block. Walk from 'this' to 'other',
2127 // checking to see if there is any instruction with an environment.
2128 HInstruction* current = this;
2129 for (; current != other && current != nullptr; current = current->GetNext()) {
2130 // This is a conservative check, as the instruction result may not be in
2131 // the referenced environment.
2132 if (current->HasEnvironment()) {
2133 return true;
2134 }
2135 }
2136
2137 // We should have been called with 'this' before 'other' in the block.
2138 // Just confirm this.
2139 DCHECK(current != nullptr);
2140 return false;
2141}
2142
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002143void HInvoke::SetIntrinsic(Intrinsics intrinsic,
Aart Bik5d75afe2015-12-14 11:57:01 -08002144 IntrinsicNeedsEnvironmentOrCache needs_env_or_cache,
2145 IntrinsicSideEffects side_effects,
2146 IntrinsicExceptions exceptions) {
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002147 intrinsic_ = intrinsic;
2148 IntrinsicOptimizations opt(this);
Nicolas Geoffraya3eca2d2016-01-12 16:03:16 +00002149
Aart Bik5d75afe2015-12-14 11:57:01 -08002150 // Adjust method's side effects from intrinsic table.
2151 switch (side_effects) {
2152 case kNoSideEffects: SetSideEffects(SideEffects::None()); break;
2153 case kReadSideEffects: SetSideEffects(SideEffects::AllReads()); break;
2154 case kWriteSideEffects: SetSideEffects(SideEffects::AllWrites()); break;
2155 case kAllSideEffects: SetSideEffects(SideEffects::AllExceptGCDependency()); break;
2156 }
Nicolas Geoffraya3eca2d2016-01-12 16:03:16 +00002157
2158 if (needs_env_or_cache == kNoEnvironmentOrCache) {
2159 opt.SetDoesNotNeedDexCache();
2160 opt.SetDoesNotNeedEnvironment();
2161 } else {
2162 // If we need an environment, that means there will be a call, which can trigger GC.
2163 SetSideEffects(GetSideEffects().Union(SideEffects::CanTriggerGC()));
2164 }
Aart Bik5d75afe2015-12-14 11:57:01 -08002165 // Adjust method's exception status from intrinsic table.
2166 switch (exceptions) {
2167 case kNoThrow: SetCanThrow(false); break;
2168 case kCanThrow: SetCanThrow(true); break;
2169 }
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002170}
2171
2172bool HInvoke::NeedsEnvironment() const {
2173 if (!IsIntrinsic()) {
2174 return true;
2175 }
2176 IntrinsicOptimizations opt(*this);
2177 return !opt.GetDoesNotNeedEnvironment();
2178}
2179
Vladimir Markodc151b22015-10-15 18:02:30 +01002180bool HInvokeStaticOrDirect::NeedsDexCacheOfDeclaringClass() const {
2181 if (GetMethodLoadKind() != MethodLoadKind::kDexCacheViaMethod) {
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002182 return false;
2183 }
2184 if (!IsIntrinsic()) {
2185 return true;
2186 }
2187 IntrinsicOptimizations opt(*this);
2188 return !opt.GetDoesNotNeedDexCache();
2189}
2190
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002191void HInvokeStaticOrDirect::InsertInputAt(size_t index, HInstruction* input) {
2192 inputs_.insert(inputs_.begin() + index, HUserRecord<HInstruction*>(input));
2193 input->AddUseAt(this, index);
2194 // Update indexes in use nodes of inputs that have been pushed further back by the insert().
2195 for (size_t i = index + 1u, size = inputs_.size(); i != size; ++i) {
2196 DCHECK_EQ(InputRecordAt(i).GetUseNode()->GetIndex(), i - 1u);
2197 InputRecordAt(i).GetUseNode()->SetIndex(i);
2198 }
2199}
2200
Vladimir Markob554b5a2015-11-06 12:57:55 +00002201void HInvokeStaticOrDirect::RemoveInputAt(size_t index) {
2202 RemoveAsUserOfInput(index);
2203 inputs_.erase(inputs_.begin() + index);
2204 // Update indexes in use nodes of inputs that have been pulled forward by the erase().
2205 for (size_t i = index, e = InputCount(); i < e; ++i) {
2206 DCHECK_EQ(InputRecordAt(i).GetUseNode()->GetIndex(), i + 1u);
2207 InputRecordAt(i).GetUseNode()->SetIndex(i);
2208 }
2209}
2210
Vladimir Markof64242a2015-12-01 14:58:23 +00002211std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::MethodLoadKind rhs) {
2212 switch (rhs) {
2213 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
2214 return os << "string_init";
2215 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
2216 return os << "recursive";
2217 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
2218 return os << "direct";
2219 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
2220 return os << "direct_fixup";
2221 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative:
2222 return os << "dex_cache_pc_relative";
2223 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod:
2224 return os << "dex_cache_via_method";
2225 default:
2226 LOG(FATAL) << "Unknown MethodLoadKind: " << static_cast<int>(rhs);
2227 UNREACHABLE();
2228 }
2229}
2230
Vladimir Markofbb184a2015-11-13 14:47:00 +00002231std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::ClinitCheckRequirement rhs) {
2232 switch (rhs) {
2233 case HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit:
2234 return os << "explicit";
2235 case HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit:
2236 return os << "implicit";
2237 case HInvokeStaticOrDirect::ClinitCheckRequirement::kNone:
2238 return os << "none";
2239 default:
Vladimir Markof64242a2015-12-01 14:58:23 +00002240 LOG(FATAL) << "Unknown ClinitCheckRequirement: " << static_cast<int>(rhs);
2241 UNREACHABLE();
Vladimir Markofbb184a2015-11-13 14:47:00 +00002242 }
2243}
2244
Mark Mendellc4701932015-04-10 13:18:51 -04002245void HInstruction::RemoveEnvironmentUsers() {
2246 for (HUseIterator<HEnvironment*> use_it(GetEnvUses()); !use_it.Done(); use_it.Advance()) {
2247 HUseListNode<HEnvironment*>* user_node = use_it.Current();
2248 HEnvironment* user = user_node->GetUser();
2249 user->SetRawEnvAt(user_node->GetIndex(), nullptr);
2250 }
2251 env_uses_.Clear();
2252}
2253
Mark Mendellf6529172015-11-17 11:16:56 -05002254// Returns an instruction with the opposite boolean value from 'cond'.
2255HInstruction* HGraph::InsertOppositeCondition(HInstruction* cond, HInstruction* cursor) {
2256 ArenaAllocator* allocator = GetArena();
2257
2258 if (cond->IsCondition() &&
2259 !Primitive::IsFloatingPointType(cond->InputAt(0)->GetType())) {
2260 // Can't reverse floating point conditions. We have to use HBooleanNot in that case.
2261 HInstruction* lhs = cond->InputAt(0);
2262 HInstruction* rhs = cond->InputAt(1);
David Brazdil5c004852015-11-23 09:44:52 +00002263 HInstruction* replacement = nullptr;
Mark Mendellf6529172015-11-17 11:16:56 -05002264 switch (cond->AsCondition()->GetOppositeCondition()) { // get *opposite*
2265 case kCondEQ: replacement = new (allocator) HEqual(lhs, rhs); break;
2266 case kCondNE: replacement = new (allocator) HNotEqual(lhs, rhs); break;
2267 case kCondLT: replacement = new (allocator) HLessThan(lhs, rhs); break;
2268 case kCondLE: replacement = new (allocator) HLessThanOrEqual(lhs, rhs); break;
2269 case kCondGT: replacement = new (allocator) HGreaterThan(lhs, rhs); break;
2270 case kCondGE: replacement = new (allocator) HGreaterThanOrEqual(lhs, rhs); break;
2271 case kCondB: replacement = new (allocator) HBelow(lhs, rhs); break;
2272 case kCondBE: replacement = new (allocator) HBelowOrEqual(lhs, rhs); break;
2273 case kCondA: replacement = new (allocator) HAbove(lhs, rhs); break;
2274 case kCondAE: replacement = new (allocator) HAboveOrEqual(lhs, rhs); break;
David Brazdil5c004852015-11-23 09:44:52 +00002275 default:
2276 LOG(FATAL) << "Unexpected condition";
2277 UNREACHABLE();
Mark Mendellf6529172015-11-17 11:16:56 -05002278 }
2279 cursor->GetBlock()->InsertInstructionBefore(replacement, cursor);
2280 return replacement;
2281 } else if (cond->IsIntConstant()) {
2282 HIntConstant* int_const = cond->AsIntConstant();
2283 if (int_const->IsZero()) {
2284 return GetIntConstant(1);
2285 } else {
2286 DCHECK(int_const->IsOne());
2287 return GetIntConstant(0);
2288 }
2289 } else {
2290 HInstruction* replacement = new (allocator) HBooleanNot(cond);
2291 cursor->GetBlock()->InsertInstructionBefore(replacement, cursor);
2292 return replacement;
2293 }
2294}
2295
Roland Levillainc9285912015-12-18 10:38:42 +00002296std::ostream& operator<<(std::ostream& os, const MoveOperands& rhs) {
2297 os << "["
2298 << " source=" << rhs.GetSource()
2299 << " destination=" << rhs.GetDestination()
2300 << " type=" << rhs.GetType()
2301 << " instruction=";
2302 if (rhs.GetInstruction() != nullptr) {
2303 os << rhs.GetInstruction()->DebugName() << ' ' << rhs.GetInstruction()->GetId();
2304 } else {
2305 os << "null";
2306 }
2307 os << " ]";
2308 return os;
2309}
2310
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002311} // namespace art