blob: 680381a54821d957bd204327e825790b31bef92e [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 */
Nicolas Geoffray818f2102014-02-18 16:43:35 +000016#include "nodes.h"
Calin Juravle77520bc2015-01-12 18:45:46 +000017
Roland Levillain31dd3d62016-02-16 12:21:02 +000018#include <cfloat>
19
Mark Mendelle82549b2015-05-06 10:55:34 -040020#include "code_generator.h"
Vladimir Marko391d01f2015-11-06 11:02:08 +000021#include "common_dominator.h"
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +010022#include "ssa_builder.h"
David Brazdila4b8c212015-05-07 09:59:30 +010023#include "base/bit_vector-inl.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010024#include "base/bit_utils.h"
Vladimir Marko1f8695c2015-09-24 13:11:31 +010025#include "base/stl_util.h"
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +010026#include "intrinsics.h"
David Brazdilbaf89b82015-09-15 11:36:54 +010027#include "mirror/class-inl.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070028#include "scoped_thread_state_change-inl.h"
Nicolas Geoffray818f2102014-02-18 16:43:35 +000029
30namespace art {
31
Roland Levillain31dd3d62016-02-16 12:21:02 +000032// Enable floating-point static evaluation during constant folding
33// only if all floating-point operations and constants evaluate in the
34// range and precision of the type used (i.e., 32-bit float, 64-bit
35// double).
36static constexpr bool kEnableFloatingPointStaticEvaluation = (FLT_EVAL_METHOD == 0);
37
Mathieu Chartiere8a3c572016-10-11 16:52:17 -070038void HGraph::InitializeInexactObjectRTI(VariableSizedHandleScope* handles) {
David Brazdilbadd8262016-02-02 16:28:56 +000039 ScopedObjectAccess soa(Thread::Current());
40 // Create the inexact Object reference type and store it in the HGraph.
41 ClassLinker* linker = Runtime::Current()->GetClassLinker();
42 inexact_object_rti_ = ReferenceTypeInfo::Create(
43 handles->NewHandle(linker->GetClassRoot(ClassLinker::kJavaLangObject)),
44 /* is_exact */ false);
45}
46
Nicolas Geoffray818f2102014-02-18 16:43:35 +000047void HGraph::AddBlock(HBasicBlock* block) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +010048 block->SetBlockId(blocks_.size());
49 blocks_.push_back(block);
Nicolas Geoffray818f2102014-02-18 16:43:35 +000050}
51
Nicolas Geoffray804d0932014-05-02 08:46:00 +010052void HGraph::FindBackEdges(ArenaBitVector* visited) {
Vladimir Marko1f8695c2015-09-24 13:11:31 +010053 // "visited" must be empty on entry, it's an output argument for all visited (i.e. live) blocks.
54 DCHECK_EQ(visited->GetHighestBitSet(), -1);
55
56 // Nodes that we're currently visiting, indexed by block id.
Vladimir Markof6a35de2016-03-21 12:01:50 +000057 ArenaBitVector visiting(arena_, blocks_.size(), false, kArenaAllocGraphBuilder);
Vladimir Marko1f8695c2015-09-24 13:11:31 +010058 // Number of successors visited from a given node, indexed by block id.
Vladimir Marko3ea5a972016-05-09 20:23:34 +010059 ArenaVector<size_t> successors_visited(blocks_.size(),
60 0u,
61 arena_->Adapter(kArenaAllocGraphBuilder));
Vladimir Marko1f8695c2015-09-24 13:11:31 +010062 // Stack of nodes that we're currently visiting (same as marked in "visiting" above).
Vladimir Marko3ea5a972016-05-09 20:23:34 +010063 ArenaVector<HBasicBlock*> worklist(arena_->Adapter(kArenaAllocGraphBuilder));
Vladimir Marko1f8695c2015-09-24 13:11:31 +010064 constexpr size_t kDefaultWorklistSize = 8;
65 worklist.reserve(kDefaultWorklistSize);
66 visited->SetBit(entry_block_->GetBlockId());
67 visiting.SetBit(entry_block_->GetBlockId());
68 worklist.push_back(entry_block_);
69
70 while (!worklist.empty()) {
71 HBasicBlock* current = worklist.back();
72 uint32_t current_id = current->GetBlockId();
73 if (successors_visited[current_id] == current->GetSuccessors().size()) {
74 visiting.ClearBit(current_id);
75 worklist.pop_back();
76 } else {
Vladimir Marko1f8695c2015-09-24 13:11:31 +010077 HBasicBlock* successor = current->GetSuccessors()[successors_visited[current_id]++];
78 uint32_t successor_id = successor->GetBlockId();
79 if (visiting.IsBitSet(successor_id)) {
80 DCHECK(ContainsElement(worklist, successor));
81 successor->AddBackEdge(current);
82 } else if (!visited->IsBitSet(successor_id)) {
83 visited->SetBit(successor_id);
84 visiting.SetBit(successor_id);
85 worklist.push_back(successor);
86 }
87 }
88 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +000089}
90
Vladimir Markocac5a7e2016-02-22 10:39:50 +000091static void RemoveEnvironmentUses(HInstruction* instruction) {
Nicolas Geoffray0a23d742015-05-07 11:57:35 +010092 for (HEnvironment* environment = instruction->GetEnvironment();
93 environment != nullptr;
94 environment = environment->GetParent()) {
Roland Levillainfc600dc2014-12-02 17:16:31 +000095 for (size_t i = 0, e = environment->Size(); i < e; ++i) {
David Brazdil1abb4192015-02-17 18:33:36 +000096 if (environment->GetInstructionAt(i) != nullptr) {
97 environment->RemoveAsUserOfInput(i);
Roland Levillainfc600dc2014-12-02 17:16:31 +000098 }
99 }
100 }
101}
102
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000103static void RemoveAsUser(HInstruction* instruction) {
Vladimir Marko372f10e2016-05-17 16:30:10 +0100104 instruction->RemoveAsUserOfAllInputs();
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000105 RemoveEnvironmentUses(instruction);
106}
107
Roland Levillainfc600dc2014-12-02 17:16:31 +0000108void HGraph::RemoveInstructionsAsUsersFromDeadBlocks(const ArenaBitVector& visited) const {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100109 for (size_t i = 0; i < blocks_.size(); ++i) {
Roland Levillainfc600dc2014-12-02 17:16:31 +0000110 if (!visited.IsBitSet(i)) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100111 HBasicBlock* block = blocks_[i];
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000112 if (block == nullptr) continue;
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100113 DCHECK(block->GetPhis().IsEmpty()) << "Phis are not inserted at this stage";
Roland Levillainfc600dc2014-12-02 17:16:31 +0000114 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
115 RemoveAsUser(it.Current());
116 }
117 }
118 }
119}
120
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100121void HGraph::RemoveDeadBlocks(const ArenaBitVector& visited) {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100122 for (size_t i = 0; i < blocks_.size(); ++i) {
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000123 if (!visited.IsBitSet(i)) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100124 HBasicBlock* block = blocks_[i];
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000125 if (block == nullptr) continue;
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100126 // We only need to update the successor, which might be live.
Vladimir Marko60584552015-09-03 13:35:12 +0000127 for (HBasicBlock* successor : block->GetSuccessors()) {
128 successor->RemovePredecessor(block);
David Brazdil1abb4192015-02-17 18:33:36 +0000129 }
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100130 // Remove the block from the list of blocks, so that further analyses
131 // never see it.
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100132 blocks_[i] = nullptr;
Serguei Katkov7ba99662016-03-02 16:25:36 +0600133 if (block->IsExitBlock()) {
134 SetExitBlock(nullptr);
135 }
David Brazdil86ea7ee2016-02-16 09:26:07 +0000136 // Mark the block as removed. This is used by the HGraphBuilder to discard
137 // the block as a branch target.
138 block->SetGraph(nullptr);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000139 }
140 }
141}
142
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000143GraphAnalysisResult HGraph::BuildDominatorTree() {
Vladimir Markof6a35de2016-03-21 12:01:50 +0000144 ArenaBitVector visited(arena_, blocks_.size(), false, kArenaAllocGraphBuilder);
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000145
David Brazdil86ea7ee2016-02-16 09:26:07 +0000146 // (1) Find the back edges in the graph doing a DFS traversal.
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000147 FindBackEdges(&visited);
148
David Brazdil86ea7ee2016-02-16 09:26:07 +0000149 // (2) Remove instructions and phis from blocks not visited during
Roland Levillainfc600dc2014-12-02 17:16:31 +0000150 // the initial DFS as users from other instructions, so that
151 // users can be safely removed before uses later.
152 RemoveInstructionsAsUsersFromDeadBlocks(visited);
153
David Brazdil86ea7ee2016-02-16 09:26:07 +0000154 // (3) Remove blocks not visited during the initial DFS.
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000155 // Step (5) requires dead blocks to be removed from the
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000156 // predecessors list of live blocks.
157 RemoveDeadBlocks(visited);
158
David Brazdil86ea7ee2016-02-16 09:26:07 +0000159 // (4) Simplify the CFG now, so that we don't need to recompute
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100160 // dominators and the reverse post order.
161 SimplifyCFG();
162
David Brazdil86ea7ee2016-02-16 09:26:07 +0000163 // (5) Compute the dominance information and the reverse post order.
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100164 ComputeDominanceInformation();
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000165
David Brazdil86ea7ee2016-02-16 09:26:07 +0000166 // (6) Analyze loops discovered through back edge analysis, and
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000167 // set the loop information on each block.
168 GraphAnalysisResult result = AnalyzeLoops();
169 if (result != kAnalysisSuccess) {
170 return result;
171 }
172
David Brazdil86ea7ee2016-02-16 09:26:07 +0000173 // (7) Precompute per-block try membership before entering the SSA builder,
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000174 // which needs the information to build catch block phis from values of
175 // locals at throwing instructions inside try blocks.
176 ComputeTryBlockInformation();
177
178 return kAnalysisSuccess;
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100179}
180
181void HGraph::ClearDominanceInformation() {
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100182 for (HBasicBlock* block : GetReversePostOrder()) {
183 block->ClearDominanceInformation();
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100184 }
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100185 reverse_post_order_.clear();
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100186}
187
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000188void HGraph::ClearLoopInformation() {
189 SetHasIrreducibleLoops(false);
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100190 for (HBasicBlock* block : GetReversePostOrder()) {
191 block->SetLoopInformation(nullptr);
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000192 }
193}
194
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100195void HBasicBlock::ClearDominanceInformation() {
Vladimir Marko60584552015-09-03 13:35:12 +0000196 dominated_blocks_.clear();
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100197 dominator_ = nullptr;
198}
199
Nicolas Geoffray09aa1472016-01-19 10:52:54 +0000200HInstruction* HBasicBlock::GetFirstInstructionDisregardMoves() const {
201 HInstruction* instruction = GetFirstInstruction();
202 while (instruction->IsParallelMove()) {
203 instruction = instruction->GetNext();
204 }
205 return instruction;
206}
207
David Brazdil3f4a5222016-05-06 12:46:21 +0100208static bool UpdateDominatorOfSuccessor(HBasicBlock* block, HBasicBlock* successor) {
209 DCHECK(ContainsElement(block->GetSuccessors(), successor));
210
211 HBasicBlock* old_dominator = successor->GetDominator();
212 HBasicBlock* new_dominator =
213 (old_dominator == nullptr) ? block
214 : CommonDominator::ForPair(old_dominator, block);
215
216 if (old_dominator == new_dominator) {
217 return false;
218 } else {
219 successor->SetDominator(new_dominator);
220 return true;
221 }
222}
223
Nicolas Geoffray1f82ecc2015-06-24 12:20:24 +0100224void HGraph::ComputeDominanceInformation() {
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100225 DCHECK(reverse_post_order_.empty());
226 reverse_post_order_.reserve(blocks_.size());
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100227 reverse_post_order_.push_back(entry_block_);
Vladimir Markod76d1392015-09-23 16:07:14 +0100228
229 // Number of visits of a given node, indexed by block id.
Vladimir Marko3ea5a972016-05-09 20:23:34 +0100230 ArenaVector<size_t> visits(blocks_.size(), 0u, arena_->Adapter(kArenaAllocGraphBuilder));
Vladimir Markod76d1392015-09-23 16:07:14 +0100231 // Number of successors visited from a given node, indexed by block id.
Vladimir Marko3ea5a972016-05-09 20:23:34 +0100232 ArenaVector<size_t> successors_visited(blocks_.size(),
233 0u,
234 arena_->Adapter(kArenaAllocGraphBuilder));
Vladimir Markod76d1392015-09-23 16:07:14 +0100235 // Nodes for which we need to visit successors.
Vladimir Marko3ea5a972016-05-09 20:23:34 +0100236 ArenaVector<HBasicBlock*> worklist(arena_->Adapter(kArenaAllocGraphBuilder));
Vladimir Markod76d1392015-09-23 16:07:14 +0100237 constexpr size_t kDefaultWorklistSize = 8;
238 worklist.reserve(kDefaultWorklistSize);
239 worklist.push_back(entry_block_);
240
241 while (!worklist.empty()) {
242 HBasicBlock* current = worklist.back();
243 uint32_t current_id = current->GetBlockId();
244 if (successors_visited[current_id] == current->GetSuccessors().size()) {
245 worklist.pop_back();
246 } else {
Vladimir Markod76d1392015-09-23 16:07:14 +0100247 HBasicBlock* successor = current->GetSuccessors()[successors_visited[current_id]++];
David Brazdil3f4a5222016-05-06 12:46:21 +0100248 UpdateDominatorOfSuccessor(current, successor);
Vladimir Markod76d1392015-09-23 16:07:14 +0100249
250 // Once all the forward edges have been visited, we know the immediate
251 // dominator of the block. We can then start visiting its successors.
Vladimir Markod76d1392015-09-23 16:07:14 +0100252 if (++visits[successor->GetBlockId()] ==
253 successor->GetPredecessors().size() - successor->NumberOfBackEdges()) {
Vladimir Markod76d1392015-09-23 16:07:14 +0100254 reverse_post_order_.push_back(successor);
255 worklist.push_back(successor);
256 }
257 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000258 }
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000259
David Brazdil3f4a5222016-05-06 12:46:21 +0100260 // Check if the graph has back edges not dominated by their respective headers.
261 // If so, we need to update the dominators of those headers and recursively of
262 // their successors. We do that with a fix-point iteration over all blocks.
263 // The algorithm is guaranteed to terminate because it loops only if the sum
264 // of all dominator chains has decreased in the current iteration.
265 bool must_run_fix_point = false;
266 for (HBasicBlock* block : blocks_) {
267 if (block != nullptr &&
268 block->IsLoopHeader() &&
269 block->GetLoopInformation()->HasBackEdgeNotDominatedByHeader()) {
270 must_run_fix_point = true;
271 break;
272 }
273 }
274 if (must_run_fix_point) {
275 bool update_occurred = true;
276 while (update_occurred) {
277 update_occurred = false;
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100278 for (HBasicBlock* block : GetReversePostOrder()) {
David Brazdil3f4a5222016-05-06 12:46:21 +0100279 for (HBasicBlock* successor : block->GetSuccessors()) {
280 update_occurred |= UpdateDominatorOfSuccessor(block, successor);
281 }
282 }
283 }
284 }
285
286 // Make sure that there are no remaining blocks whose dominator information
287 // needs to be updated.
288 if (kIsDebugBuild) {
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100289 for (HBasicBlock* block : GetReversePostOrder()) {
David Brazdil3f4a5222016-05-06 12:46:21 +0100290 for (HBasicBlock* successor : block->GetSuccessors()) {
291 DCHECK(!UpdateDominatorOfSuccessor(block, successor));
292 }
293 }
294 }
295
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000296 // Populate `dominated_blocks_` information after computing all dominators.
Roland Levillainc9b21f82016-03-23 16:36:59 +0000297 // The potential presence of irreducible loops requires to do it after.
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100298 for (HBasicBlock* block : GetReversePostOrder()) {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000299 if (!block->IsEntryBlock()) {
300 block->GetDominator()->AddDominatedBlock(block);
301 }
302 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000303}
304
David Brazdilfc6a86a2015-06-26 10:33:45 +0000305HBasicBlock* HGraph::SplitEdge(HBasicBlock* block, HBasicBlock* successor) {
David Brazdil3e187382015-06-26 09:59:52 +0000306 HBasicBlock* new_block = new (arena_) HBasicBlock(this, successor->GetDexPc());
307 AddBlock(new_block);
David Brazdil3e187382015-06-26 09:59:52 +0000308 // Use `InsertBetween` to ensure the predecessor index and successor index of
309 // `block` and `successor` are preserved.
310 new_block->InsertBetween(block, successor);
David Brazdilfc6a86a2015-06-26 10:33:45 +0000311 return new_block;
312}
313
314void HGraph::SplitCriticalEdge(HBasicBlock* block, HBasicBlock* successor) {
315 // Insert a new node between `block` and `successor` to split the
316 // critical edge.
317 HBasicBlock* new_block = SplitEdge(block, successor);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600318 new_block->AddInstruction(new (arena_) HGoto(successor->GetDexPc()));
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100319 if (successor->IsLoopHeader()) {
320 // If we split at a back edge boundary, make the new block the back edge.
321 HLoopInformation* info = successor->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000322 if (info->IsBackEdge(*block)) {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100323 info->RemoveBackEdge(block);
324 info->AddBackEdge(new_block);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100325 }
326 }
327}
328
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100329void HGraph::SimplifyLoop(HBasicBlock* header) {
330 HLoopInformation* info = header->GetLoopInformation();
331
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100332 // Make sure the loop has only one pre header. This simplifies SSA building by having
333 // to just look at the pre header to know which locals are initialized at entry of the
Nicolas Geoffray788f2f02016-01-22 12:41:38 +0000334 // loop. Also, don't allow the entry block to be a pre header: this simplifies inlining
335 // this graph.
Vladimir Marko60584552015-09-03 13:35:12 +0000336 size_t number_of_incomings = header->GetPredecessors().size() - info->NumberOfBackEdges();
Nicolas Geoffray788f2f02016-01-22 12:41:38 +0000337 if (number_of_incomings != 1 || (GetEntryBlock()->GetSingleSuccessor() == header)) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100338 HBasicBlock* pre_header = new (arena_) HBasicBlock(this, header->GetDexPc());
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100339 AddBlock(pre_header);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600340 pre_header->AddInstruction(new (arena_) HGoto(header->GetDexPc()));
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100341
Vladimir Marko60584552015-09-03 13:35:12 +0000342 for (size_t pred = 0; pred < header->GetPredecessors().size(); ++pred) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100343 HBasicBlock* predecessor = header->GetPredecessors()[pred];
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100344 if (!info->IsBackEdge(*predecessor)) {
Nicolas Geoffrayec7e4722014-06-06 11:24:33 +0100345 predecessor->ReplaceSuccessor(header, pre_header);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100346 pred--;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100347 }
348 }
349 pre_header->AddSuccessor(header);
350 }
Nicolas Geoffray604c6e42014-09-17 12:08:44 +0100351
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100352 // Make sure the first predecessor of a loop header is the incoming block.
Vladimir Markoec7802a2015-10-01 20:57:57 +0100353 if (info->IsBackEdge(*header->GetPredecessors()[0])) {
354 HBasicBlock* to_swap = header->GetPredecessors()[0];
Vladimir Marko60584552015-09-03 13:35:12 +0000355 for (size_t pred = 1, e = header->GetPredecessors().size(); pred < e; ++pred) {
Vladimir Markoec7802a2015-10-01 20:57:57 +0100356 HBasicBlock* predecessor = header->GetPredecessors()[pred];
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100357 if (!info->IsBackEdge(*predecessor)) {
Vladimir Marko60584552015-09-03 13:35:12 +0000358 header->predecessors_[pred] = to_swap;
359 header->predecessors_[0] = predecessor;
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100360 break;
361 }
362 }
Nicolas Geoffray604c6e42014-09-17 12:08:44 +0100363 }
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100364
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100365 HInstruction* first_instruction = header->GetFirstInstruction();
David Brazdildee58d62016-04-07 09:54:26 +0000366 if (first_instruction != nullptr && first_instruction->IsSuspendCheck()) {
367 // Called from DeadBlockElimination. Update SuspendCheck pointer.
368 info->SetSuspendCheck(first_instruction->AsSuspendCheck());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100369 }
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100370}
371
David Brazdilffee3d32015-07-06 11:48:53 +0100372void HGraph::ComputeTryBlockInformation() {
373 // Iterate in reverse post order to propagate try membership information from
374 // predecessors to their successors.
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100375 for (HBasicBlock* block : GetReversePostOrder()) {
David Brazdilffee3d32015-07-06 11:48:53 +0100376 if (block->IsEntryBlock() || block->IsCatchBlock()) {
377 // Catch blocks after simplification have only exceptional predecessors
378 // and hence are never in tries.
379 continue;
380 }
381
382 // Infer try membership from the first predecessor. Having simplified loops,
383 // the first predecessor can never be a back edge and therefore it must have
384 // been visited already and had its try membership set.
Vladimir Markoec7802a2015-10-01 20:57:57 +0100385 HBasicBlock* first_predecessor = block->GetPredecessors()[0];
David Brazdilffee3d32015-07-06 11:48:53 +0100386 DCHECK(!block->IsLoopHeader() || !block->GetLoopInformation()->IsBackEdge(*first_predecessor));
David Brazdilec16f792015-08-19 15:04:01 +0100387 const HTryBoundary* try_entry = first_predecessor->ComputeTryEntryOfSuccessors();
David Brazdil8a7c0fe2015-11-02 20:24:55 +0000388 if (try_entry != nullptr &&
389 (block->GetTryCatchInformation() == nullptr ||
390 try_entry != &block->GetTryCatchInformation()->GetTryEntry())) {
391 // We are either setting try block membership for the first time or it
392 // has changed.
David Brazdilec16f792015-08-19 15:04:01 +0100393 block->SetTryCatchInformation(new (arena_) TryCatchInformation(*try_entry));
394 }
David Brazdilffee3d32015-07-06 11:48:53 +0100395 }
396}
397
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100398void HGraph::SimplifyCFG() {
David Brazdildb51efb2015-11-06 01:36:20 +0000399// Simplify the CFG for future analysis, and code generation:
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100400 // (1): Split critical edges.
David Brazdildb51efb2015-11-06 01:36:20 +0000401 // (2): Simplify loops by having only one preheader.
Vladimir Markob7d8e8c2015-09-17 15:47:05 +0100402 // NOTE: We're appending new blocks inside the loop, so we need to use index because iterators
403 // can be invalidated. We remember the initial size to avoid iterating over the new blocks.
404 for (size_t block_id = 0u, end = blocks_.size(); block_id != end; ++block_id) {
405 HBasicBlock* block = blocks_[block_id];
Nicolas Geoffrayf776b922015-04-15 18:22:45 +0100406 if (block == nullptr) continue;
David Brazdildb51efb2015-11-06 01:36:20 +0000407 if (block->GetSuccessors().size() > 1) {
408 // Only split normal-flow edges. We cannot split exceptional edges as they
409 // are synthesized (approximate real control flow), and we do not need to
410 // anyway. Moves that would be inserted there are performed by the runtime.
David Brazdild26a4112015-11-10 11:07:31 +0000411 ArrayRef<HBasicBlock* const> normal_successors = block->GetNormalSuccessors();
412 for (size_t j = 0, e = normal_successors.size(); j < e; ++j) {
413 HBasicBlock* successor = normal_successors[j];
David Brazdilffee3d32015-07-06 11:48:53 +0100414 DCHECK(!successor->IsCatchBlock());
David Brazdildb51efb2015-11-06 01:36:20 +0000415 if (successor == exit_block_) {
David Brazdil86ea7ee2016-02-16 09:26:07 +0000416 // (Throw/Return/ReturnVoid)->TryBoundary->Exit. Special case which we
417 // do not want to split because Goto->Exit is not allowed.
David Brazdildb51efb2015-11-06 01:36:20 +0000418 DCHECK(block->IsSingleTryBoundary());
David Brazdildb51efb2015-11-06 01:36:20 +0000419 } else if (successor->GetPredecessors().size() > 1) {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100420 SplitCriticalEdge(block, successor);
David Brazdild26a4112015-11-10 11:07:31 +0000421 // SplitCriticalEdge could have invalidated the `normal_successors`
422 // ArrayRef. We must re-acquire it.
423 normal_successors = block->GetNormalSuccessors();
424 DCHECK_EQ(normal_successors[j]->GetSingleSuccessor(), successor);
425 DCHECK_EQ(e, normal_successors.size());
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100426 }
427 }
428 }
429 if (block->IsLoopHeader()) {
430 SimplifyLoop(block);
David Brazdil86ea7ee2016-02-16 09:26:07 +0000431 } else if (!block->IsEntryBlock() &&
432 block->GetFirstInstruction() != nullptr &&
433 block->GetFirstInstruction()->IsSuspendCheck()) {
434 // We are being called by the dead code elimiation pass, and what used to be
Nicolas Geoffray09aa1472016-01-19 10:52:54 +0000435 // a loop got dismantled. Just remove the suspend check.
436 block->RemoveInstruction(block->GetFirstInstruction());
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100437 }
438 }
439}
440
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000441GraphAnalysisResult HGraph::AnalyzeLoops() const {
Nicolas Geoffrayd7c2fdc2016-05-10 14:35:34 +0100442 // We iterate post order to ensure we visit inner loops before outer loops.
443 // `PopulateRecursive` needs this guarantee to know whether a natural loop
444 // contains an irreducible loop.
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100445 for (HBasicBlock* block : GetPostOrder()) {
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100446 if (block->IsLoopHeader()) {
David Brazdilffee3d32015-07-06 11:48:53 +0100447 if (block->IsCatchBlock()) {
448 // TODO: Dealing with exceptional back edges could be tricky because
449 // they only approximate the real control flow. Bail out for now.
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000450 return kAnalysisFailThrowCatchLoop;
David Brazdilffee3d32015-07-06 11:48:53 +0100451 }
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000452 block->GetLoopInformation()->Populate();
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100453 }
454 }
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000455 return kAnalysisSuccess;
456}
457
458void HLoopInformation::Dump(std::ostream& os) {
459 os << "header: " << header_->GetBlockId() << std::endl;
460 os << "pre header: " << GetPreHeader()->GetBlockId() << std::endl;
461 for (HBasicBlock* block : back_edges_) {
462 os << "back edge: " << block->GetBlockId() << std::endl;
463 }
464 for (HBasicBlock* block : header_->GetPredecessors()) {
465 os << "predecessor: " << block->GetBlockId() << std::endl;
466 }
467 for (uint32_t idx : blocks_.Indexes()) {
468 os << " in loop: " << idx << std::endl;
469 }
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100470}
471
David Brazdil8d5b8b22015-03-24 10:51:52 +0000472void HGraph::InsertConstant(HConstant* constant) {
David Brazdil86ea7ee2016-02-16 09:26:07 +0000473 // New constants are inserted before the SuspendCheck at the bottom of the
474 // entry block. Note that this method can be called from the graph builder and
475 // the entry block therefore may not end with SuspendCheck->Goto yet.
476 HInstruction* insert_before = nullptr;
477
478 HInstruction* gota = entry_block_->GetLastInstruction();
479 if (gota != nullptr && gota->IsGoto()) {
480 HInstruction* suspend_check = gota->GetPrevious();
481 if (suspend_check != nullptr && suspend_check->IsSuspendCheck()) {
482 insert_before = suspend_check;
483 } else {
484 insert_before = gota;
485 }
486 }
487
488 if (insert_before == nullptr) {
David Brazdil8d5b8b22015-03-24 10:51:52 +0000489 entry_block_->AddInstruction(constant);
David Brazdil86ea7ee2016-02-16 09:26:07 +0000490 } else {
491 entry_block_->InsertInstructionBefore(constant, insert_before);
David Brazdil46e2a392015-03-16 17:31:52 +0000492 }
493}
494
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600495HNullConstant* HGraph::GetNullConstant(uint32_t dex_pc) {
Nicolas Geoffray18e68732015-06-17 23:09:05 +0100496 // For simplicity, don't bother reviving the cached null constant if it is
497 // not null and not in a block. Otherwise, we need to clear the instruction
498 // id and/or any invariants the graph is assuming when adding new instructions.
499 if ((cached_null_constant_ == nullptr) || (cached_null_constant_->GetBlock() == nullptr)) {
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600500 cached_null_constant_ = new (arena_) HNullConstant(dex_pc);
David Brazdil4833f5a2015-12-16 10:37:39 +0000501 cached_null_constant_->SetReferenceTypeInfo(inexact_object_rti_);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000502 InsertConstant(cached_null_constant_);
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000503 }
David Brazdil4833f5a2015-12-16 10:37:39 +0000504 if (kIsDebugBuild) {
505 ScopedObjectAccess soa(Thread::Current());
506 DCHECK(cached_null_constant_->GetReferenceTypeInfo().IsValid());
507 }
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000508 return cached_null_constant_;
509}
510
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100511HCurrentMethod* HGraph::GetCurrentMethod() {
Nicolas Geoffrayf78848f2015-06-17 11:57:56 +0100512 // For simplicity, don't bother reviving the cached current method if it is
513 // not null and not in a block. Otherwise, we need to clear the instruction
514 // id and/or any invariants the graph is assuming when adding new instructions.
515 if ((cached_current_method_ == nullptr) || (cached_current_method_->GetBlock() == nullptr)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700516 cached_current_method_ = new (arena_) HCurrentMethod(
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600517 Is64BitInstructionSet(instruction_set_) ? Primitive::kPrimLong : Primitive::kPrimInt,
518 entry_block_->GetDexPc());
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100519 if (entry_block_->GetFirstInstruction() == nullptr) {
520 entry_block_->AddInstruction(cached_current_method_);
521 } else {
522 entry_block_->InsertInstructionBefore(
523 cached_current_method_, entry_block_->GetFirstInstruction());
524 }
525 }
526 return cached_current_method_;
527}
528
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600529HConstant* HGraph::GetConstant(Primitive::Type type, int64_t value, uint32_t dex_pc) {
David Brazdil8d5b8b22015-03-24 10:51:52 +0000530 switch (type) {
531 case Primitive::Type::kPrimBoolean:
532 DCHECK(IsUint<1>(value));
533 FALLTHROUGH_INTENDED;
534 case Primitive::Type::kPrimByte:
535 case Primitive::Type::kPrimChar:
536 case Primitive::Type::kPrimShort:
537 case Primitive::Type::kPrimInt:
538 DCHECK(IsInt(Primitive::ComponentSize(type) * kBitsPerByte, value));
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600539 return GetIntConstant(static_cast<int32_t>(value), dex_pc);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000540
541 case Primitive::Type::kPrimLong:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +0600542 return GetLongConstant(value, dex_pc);
David Brazdil8d5b8b22015-03-24 10:51:52 +0000543
544 default:
545 LOG(FATAL) << "Unsupported constant type";
546 UNREACHABLE();
David Brazdil46e2a392015-03-16 17:31:52 +0000547 }
David Brazdil46e2a392015-03-16 17:31:52 +0000548}
549
Nicolas Geoffrayf213e052015-04-27 08:53:46 +0000550void HGraph::CacheFloatConstant(HFloatConstant* constant) {
551 int32_t value = bit_cast<int32_t, float>(constant->GetValue());
552 DCHECK(cached_float_constants_.find(value) == cached_float_constants_.end());
553 cached_float_constants_.Overwrite(value, constant);
554}
555
556void HGraph::CacheDoubleConstant(HDoubleConstant* constant) {
557 int64_t value = bit_cast<int64_t, double>(constant->GetValue());
558 DCHECK(cached_double_constants_.find(value) == cached_double_constants_.end());
559 cached_double_constants_.Overwrite(value, constant);
560}
561
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000562void HLoopInformation::Add(HBasicBlock* block) {
563 blocks_.SetBit(block->GetBlockId());
564}
565
David Brazdil46e2a392015-03-16 17:31:52 +0000566void HLoopInformation::Remove(HBasicBlock* block) {
567 blocks_.ClearBit(block->GetBlockId());
568}
569
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100570void HLoopInformation::PopulateRecursive(HBasicBlock* block) {
571 if (blocks_.IsBitSet(block->GetBlockId())) {
572 return;
573 }
574
575 blocks_.SetBit(block->GetBlockId());
576 block->SetInLoop(this);
Nicolas Geoffrayd7c2fdc2016-05-10 14:35:34 +0100577 if (block->IsLoopHeader()) {
578 // We're visiting loops in post-order, so inner loops must have been
579 // populated already.
580 DCHECK(block->GetLoopInformation()->IsPopulated());
581 if (block->GetLoopInformation()->IsIrreducible()) {
582 contains_irreducible_loop_ = true;
583 }
584 }
Vladimir Marko60584552015-09-03 13:35:12 +0000585 for (HBasicBlock* predecessor : block->GetPredecessors()) {
586 PopulateRecursive(predecessor);
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100587 }
588}
589
David Brazdilc2e8af92016-04-05 17:15:19 +0100590void HLoopInformation::PopulateIrreducibleRecursive(HBasicBlock* block, ArenaBitVector* finalized) {
591 size_t block_id = block->GetBlockId();
592
593 // If `block` is in `finalized`, we know its membership in the loop has been
594 // decided and it does not need to be revisited.
595 if (finalized->IsBitSet(block_id)) {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000596 return;
597 }
598
David Brazdilc2e8af92016-04-05 17:15:19 +0100599 bool is_finalized = false;
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000600 if (block->IsLoopHeader()) {
601 // If we hit a loop header in an irreducible loop, we first check if the
602 // pre header of that loop belongs to the currently analyzed loop. If it does,
603 // then we visit the back edges.
604 // Note that we cannot use GetPreHeader, as the loop may have not been populated
605 // yet.
606 HBasicBlock* pre_header = block->GetPredecessors()[0];
David Brazdilc2e8af92016-04-05 17:15:19 +0100607 PopulateIrreducibleRecursive(pre_header, finalized);
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000608 if (blocks_.IsBitSet(pre_header->GetBlockId())) {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000609 block->SetInLoop(this);
David Brazdilc2e8af92016-04-05 17:15:19 +0100610 blocks_.SetBit(block_id);
611 finalized->SetBit(block_id);
612 is_finalized = true;
613
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000614 HLoopInformation* info = block->GetLoopInformation();
615 for (HBasicBlock* back_edge : info->GetBackEdges()) {
David Brazdilc2e8af92016-04-05 17:15:19 +0100616 PopulateIrreducibleRecursive(back_edge, finalized);
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000617 }
618 }
619 } else {
620 // Visit all predecessors. If one predecessor is part of the loop, this
621 // block is also part of this loop.
622 for (HBasicBlock* predecessor : block->GetPredecessors()) {
David Brazdilc2e8af92016-04-05 17:15:19 +0100623 PopulateIrreducibleRecursive(predecessor, finalized);
624 if (!is_finalized && blocks_.IsBitSet(predecessor->GetBlockId())) {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000625 block->SetInLoop(this);
David Brazdilc2e8af92016-04-05 17:15:19 +0100626 blocks_.SetBit(block_id);
627 finalized->SetBit(block_id);
628 is_finalized = true;
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000629 }
630 }
631 }
David Brazdilc2e8af92016-04-05 17:15:19 +0100632
633 // All predecessors have been recursively visited. Mark finalized if not marked yet.
634 if (!is_finalized) {
635 finalized->SetBit(block_id);
636 }
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000637}
638
639void HLoopInformation::Populate() {
David Brazdila4b8c212015-05-07 09:59:30 +0100640 DCHECK_EQ(blocks_.NumSetBits(), 0u) << "Loop information has already been populated";
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000641 // Populate this loop: starting with the back edge, recursively add predecessors
642 // that are not already part of that loop. Set the header as part of the loop
643 // to end the recursion.
644 // This is a recursive implementation of the algorithm described in
645 // "Advanced Compiler Design & Implementation" (Muchnick) p192.
David Brazdilc2e8af92016-04-05 17:15:19 +0100646 HGraph* graph = header_->GetGraph();
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000647 blocks_.SetBit(header_->GetBlockId());
648 header_->SetInLoop(this);
David Brazdilc2e8af92016-04-05 17:15:19 +0100649
David Brazdil3f4a5222016-05-06 12:46:21 +0100650 bool is_irreducible_loop = HasBackEdgeNotDominatedByHeader();
David Brazdilc2e8af92016-04-05 17:15:19 +0100651
652 if (is_irreducible_loop) {
653 ArenaBitVector visited(graph->GetArena(),
654 graph->GetBlocks().size(),
655 /* expandable */ false,
656 kArenaAllocGraphBuilder);
David Brazdil5a620592016-05-05 11:27:03 +0100657 // Stop marking blocks at the loop header.
658 visited.SetBit(header_->GetBlockId());
659
David Brazdilc2e8af92016-04-05 17:15:19 +0100660 for (HBasicBlock* back_edge : GetBackEdges()) {
661 PopulateIrreducibleRecursive(back_edge, &visited);
662 }
663 } else {
664 for (HBasicBlock* back_edge : GetBackEdges()) {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000665 PopulateRecursive(back_edge);
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100666 }
David Brazdila4b8c212015-05-07 09:59:30 +0100667 }
David Brazdilc2e8af92016-04-05 17:15:19 +0100668
Vladimir Markofd66c502016-04-18 15:37:01 +0100669 if (!is_irreducible_loop && graph->IsCompilingOsr()) {
670 // When compiling in OSR mode, all loops in the compiled method may be entered
671 // from the interpreter. We treat this OSR entry point just like an extra entry
672 // to an irreducible loop, so we need to mark the method's loops as irreducible.
673 // This does not apply to inlined loops which do not act as OSR entry points.
674 if (suspend_check_ == nullptr) {
675 // Just building the graph in OSR mode, this loop is not inlined. We never build an
676 // inner graph in OSR mode as we can do OSR transition only from the outer method.
677 is_irreducible_loop = true;
678 } else {
679 // Look at the suspend check's environment to determine if the loop was inlined.
680 DCHECK(suspend_check_->HasEnvironment());
681 if (!suspend_check_->GetEnvironment()->IsFromInlinedInvoke()) {
682 is_irreducible_loop = true;
683 }
684 }
685 }
686 if (is_irreducible_loop) {
David Brazdilc2e8af92016-04-05 17:15:19 +0100687 irreducible_ = true;
Nicolas Geoffrayd7c2fdc2016-05-10 14:35:34 +0100688 contains_irreducible_loop_ = true;
David Brazdilc2e8af92016-04-05 17:15:19 +0100689 graph->SetHasIrreducibleLoops(true);
690 }
David Brazdila4b8c212015-05-07 09:59:30 +0100691}
692
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100693HBasicBlock* HLoopInformation::GetPreHeader() const {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000694 HBasicBlock* block = header_->GetPredecessors()[0];
695 DCHECK(irreducible_ || (block == header_->GetDominator()));
696 return block;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100697}
698
699bool HLoopInformation::Contains(const HBasicBlock& block) const {
700 return blocks_.IsBitSet(block.GetBlockId());
701}
702
703bool HLoopInformation::IsIn(const HLoopInformation& other) const {
704 return other.blocks_.IsBitSet(header_->GetBlockId());
705}
706
Mingyao Yang4b467ed2015-11-19 17:04:22 -0800707bool HLoopInformation::IsDefinedOutOfTheLoop(HInstruction* instruction) const {
708 return !blocks_.IsBitSet(instruction->GetBlock()->GetBlockId());
Aart Bik73f1f3b2015-10-28 15:28:08 -0700709}
710
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100711size_t HLoopInformation::GetLifetimeEnd() const {
712 size_t last_position = 0;
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100713 for (HBasicBlock* back_edge : GetBackEdges()) {
714 last_position = std::max(back_edge->GetLifetimeEnd(), last_position);
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100715 }
716 return last_position;
717}
718
David Brazdil3f4a5222016-05-06 12:46:21 +0100719bool HLoopInformation::HasBackEdgeNotDominatedByHeader() const {
720 for (HBasicBlock* back_edge : GetBackEdges()) {
721 DCHECK(back_edge->GetDominator() != nullptr);
722 if (!header_->Dominates(back_edge)) {
723 return true;
724 }
725 }
726 return false;
727}
728
Anton Shaminf89381f2016-05-16 16:44:13 +0600729bool HLoopInformation::DominatesAllBackEdges(HBasicBlock* block) {
730 for (HBasicBlock* back_edge : GetBackEdges()) {
731 if (!block->Dominates(back_edge)) {
732 return false;
733 }
734 }
735 return true;
736}
737
David Sehrc757dec2016-11-04 15:48:34 -0700738
739bool HLoopInformation::HasExitEdge() const {
740 // Determine if this loop has at least one exit edge.
741 HBlocksInLoopReversePostOrderIterator it_loop(*this);
742 for (; !it_loop.Done(); it_loop.Advance()) {
743 for (HBasicBlock* successor : it_loop.Current()->GetSuccessors()) {
744 if (!Contains(*successor)) {
745 return true;
746 }
747 }
748 }
749 return false;
750}
751
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100752bool HBasicBlock::Dominates(HBasicBlock* other) const {
753 // Walk up the dominator tree from `other`, to find out if `this`
754 // is an ancestor.
755 HBasicBlock* current = other;
756 while (current != nullptr) {
757 if (current == this) {
758 return true;
759 }
760 current = current->GetDominator();
761 }
762 return false;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100763}
764
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100765static void UpdateInputsUsers(HInstruction* instruction) {
Vladimir Markoe9004912016-06-16 16:50:52 +0100766 HInputsRef inputs = instruction->GetInputs();
Vladimir Marko372f10e2016-05-17 16:30:10 +0100767 for (size_t i = 0; i < inputs.size(); ++i) {
768 inputs[i]->AddUseAt(instruction, i);
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100769 }
770 // Environment should be created later.
771 DCHECK(!instruction->HasEnvironment());
772}
773
Roland Levillainccc07a92014-09-16 14:48:16 +0100774void HBasicBlock::ReplaceAndRemoveInstructionWith(HInstruction* initial,
775 HInstruction* replacement) {
776 DCHECK(initial->GetBlock() == this);
Mark Mendell805b3b52015-09-18 14:10:29 -0400777 if (initial->IsControlFlow()) {
778 // We can only replace a control flow instruction with another control flow instruction.
779 DCHECK(replacement->IsControlFlow());
780 DCHECK_EQ(replacement->GetId(), -1);
781 DCHECK_EQ(replacement->GetType(), Primitive::kPrimVoid);
782 DCHECK_EQ(initial->GetBlock(), this);
783 DCHECK_EQ(initial->GetType(), Primitive::kPrimVoid);
Vladimir Marko46817b82016-03-29 12:21:58 +0100784 DCHECK(initial->GetUses().empty());
785 DCHECK(initial->GetEnvUses().empty());
Mark Mendell805b3b52015-09-18 14:10:29 -0400786 replacement->SetBlock(this);
787 replacement->SetId(GetGraph()->GetNextInstructionId());
788 instructions_.InsertInstructionBefore(replacement, initial);
789 UpdateInputsUsers(replacement);
790 } else {
791 InsertInstructionBefore(replacement, initial);
792 initial->ReplaceWith(replacement);
793 }
Roland Levillainccc07a92014-09-16 14:48:16 +0100794 RemoveInstruction(initial);
795}
796
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100797static void Add(HInstructionList* instruction_list,
798 HBasicBlock* block,
799 HInstruction* instruction) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000800 DCHECK(instruction->GetBlock() == nullptr);
Nicolas Geoffray43c86422014-03-18 11:58:24 +0000801 DCHECK_EQ(instruction->GetId(), -1);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100802 instruction->SetBlock(block);
803 instruction->SetId(block->GetGraph()->GetNextInstructionId());
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100804 UpdateInputsUsers(instruction);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100805 instruction_list->AddInstruction(instruction);
806}
807
808void HBasicBlock::AddInstruction(HInstruction* instruction) {
809 Add(&instructions_, this, instruction);
810}
811
812void HBasicBlock::AddPhi(HPhi* phi) {
813 Add(&phis_, this, phi);
814}
815
David Brazdilc3d743f2015-04-22 13:40:50 +0100816void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) {
817 DCHECK(!cursor->IsPhi());
818 DCHECK(!instruction->IsPhi());
819 DCHECK_EQ(instruction->GetId(), -1);
820 DCHECK_NE(cursor->GetId(), -1);
821 DCHECK_EQ(cursor->GetBlock(), this);
822 DCHECK(!instruction->IsControlFlow());
823 instruction->SetBlock(this);
824 instruction->SetId(GetGraph()->GetNextInstructionId());
825 UpdateInputsUsers(instruction);
826 instructions_.InsertInstructionBefore(instruction, cursor);
827}
828
Guillaume "Vermeille" Sanchez2967ec62015-04-24 16:36:52 +0100829void HBasicBlock::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) {
830 DCHECK(!cursor->IsPhi());
831 DCHECK(!instruction->IsPhi());
832 DCHECK_EQ(instruction->GetId(), -1);
833 DCHECK_NE(cursor->GetId(), -1);
834 DCHECK_EQ(cursor->GetBlock(), this);
835 DCHECK(!instruction->IsControlFlow());
836 DCHECK(!cursor->IsControlFlow());
837 instruction->SetBlock(this);
838 instruction->SetId(GetGraph()->GetNextInstructionId());
839 UpdateInputsUsers(instruction);
840 instructions_.InsertInstructionAfter(instruction, cursor);
841}
842
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100843void HBasicBlock::InsertPhiAfter(HPhi* phi, HPhi* cursor) {
844 DCHECK_EQ(phi->GetId(), -1);
845 DCHECK_NE(cursor->GetId(), -1);
846 DCHECK_EQ(cursor->GetBlock(), this);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100847 phi->SetBlock(this);
848 phi->SetId(GetGraph()->GetNextInstructionId());
849 UpdateInputsUsers(phi);
David Brazdilc3d743f2015-04-22 13:40:50 +0100850 phis_.InsertInstructionAfter(phi, cursor);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100851}
852
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100853static void Remove(HInstructionList* instruction_list,
854 HBasicBlock* block,
David Brazdil1abb4192015-02-17 18:33:36 +0000855 HInstruction* instruction,
856 bool ensure_safety) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100857 DCHECK_EQ(block, instruction->GetBlock());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100858 instruction->SetBlock(nullptr);
859 instruction_list->RemoveInstruction(instruction);
David Brazdil1abb4192015-02-17 18:33:36 +0000860 if (ensure_safety) {
Vladimir Marko46817b82016-03-29 12:21:58 +0100861 DCHECK(instruction->GetUses().empty());
862 DCHECK(instruction->GetEnvUses().empty());
David Brazdil1abb4192015-02-17 18:33:36 +0000863 RemoveAsUser(instruction);
864 }
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100865}
866
David Brazdil1abb4192015-02-17 18:33:36 +0000867void HBasicBlock::RemoveInstruction(HInstruction* instruction, bool ensure_safety) {
David Brazdilc7508e92015-04-27 13:28:57 +0100868 DCHECK(!instruction->IsPhi());
David Brazdil1abb4192015-02-17 18:33:36 +0000869 Remove(&instructions_, this, instruction, ensure_safety);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100870}
871
David Brazdil1abb4192015-02-17 18:33:36 +0000872void HBasicBlock::RemovePhi(HPhi* phi, bool ensure_safety) {
873 Remove(&phis_, this, phi, ensure_safety);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100874}
875
David Brazdilc7508e92015-04-27 13:28:57 +0100876void HBasicBlock::RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety) {
877 if (instruction->IsPhi()) {
878 RemovePhi(instruction->AsPhi(), ensure_safety);
879 } else {
880 RemoveInstruction(instruction, ensure_safety);
881 }
882}
883
Vladimir Marko71bf8092015-09-15 15:33:14 +0100884void HEnvironment::CopyFrom(const ArenaVector<HInstruction*>& locals) {
885 for (size_t i = 0; i < locals.size(); i++) {
886 HInstruction* instruction = locals[i];
Nicolas Geoffray8c0c91a2015-05-07 11:46:05 +0100887 SetRawEnvAt(i, instruction);
888 if (instruction != nullptr) {
889 instruction->AddEnvUseAt(this, i);
890 }
891 }
892}
893
David Brazdiled596192015-01-23 10:39:45 +0000894void HEnvironment::CopyFrom(HEnvironment* env) {
895 for (size_t i = 0; i < env->Size(); i++) {
896 HInstruction* instruction = env->GetInstructionAt(i);
897 SetRawEnvAt(i, instruction);
898 if (instruction != nullptr) {
899 instruction->AddEnvUseAt(this, i);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100900 }
David Brazdiled596192015-01-23 10:39:45 +0000901 }
902}
903
Mingyao Yang206d6fd2015-04-13 16:46:28 -0700904void HEnvironment::CopyFromWithLoopPhiAdjustment(HEnvironment* env,
905 HBasicBlock* loop_header) {
906 DCHECK(loop_header->IsLoopHeader());
907 for (size_t i = 0; i < env->Size(); i++) {
908 HInstruction* instruction = env->GetInstructionAt(i);
909 SetRawEnvAt(i, instruction);
910 if (instruction == nullptr) {
911 continue;
912 }
913 if (instruction->IsLoopHeaderPhi() && (instruction->GetBlock() == loop_header)) {
914 // At the end of the loop pre-header, the corresponding value for instruction
915 // is the first input of the phi.
916 HInstruction* initial = instruction->AsPhi()->InputAt(0);
Mingyao Yang206d6fd2015-04-13 16:46:28 -0700917 SetRawEnvAt(i, initial);
918 initial->AddEnvUseAt(this, i);
919 } else {
920 instruction->AddEnvUseAt(this, i);
921 }
922 }
923}
924
David Brazdil1abb4192015-02-17 18:33:36 +0000925void HEnvironment::RemoveAsUserOfInput(size_t index) const {
Vladimir Marko46817b82016-03-29 12:21:58 +0100926 const HUserRecord<HEnvironment*>& env_use = vregs_[index];
927 HInstruction* user = env_use.GetInstruction();
928 auto before_env_use_node = env_use.GetBeforeUseNode();
929 user->env_uses_.erase_after(before_env_use_node);
930 user->FixUpUserRecordsAfterEnvUseRemoval(before_env_use_node);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100931}
932
Vladimir Marko5f7b58e2015-11-23 19:49:34 +0000933HInstruction::InstructionKind HInstruction::GetKind() const {
934 return GetKindInternal();
935}
936
Calin Juravle77520bc2015-01-12 18:45:46 +0000937HInstruction* HInstruction::GetNextDisregardingMoves() const {
938 HInstruction* next = GetNext();
939 while (next != nullptr && next->IsParallelMove()) {
940 next = next->GetNext();
941 }
942 return next;
943}
944
945HInstruction* HInstruction::GetPreviousDisregardingMoves() const {
946 HInstruction* previous = GetPrevious();
947 while (previous != nullptr && previous->IsParallelMove()) {
948 previous = previous->GetPrevious();
949 }
950 return previous;
951}
952
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100953void HInstructionList::AddInstruction(HInstruction* instruction) {
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000954 if (first_instruction_ == nullptr) {
955 DCHECK(last_instruction_ == nullptr);
956 first_instruction_ = last_instruction_ = instruction;
957 } else {
958 last_instruction_->next_ = instruction;
959 instruction->previous_ = last_instruction_;
960 last_instruction_ = instruction;
961 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000962}
963
David Brazdilc3d743f2015-04-22 13:40:50 +0100964void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) {
965 DCHECK(Contains(cursor));
966 if (cursor == first_instruction_) {
967 cursor->previous_ = instruction;
968 instruction->next_ = cursor;
969 first_instruction_ = instruction;
970 } else {
971 instruction->previous_ = cursor->previous_;
972 instruction->next_ = cursor;
973 cursor->previous_ = instruction;
974 instruction->previous_->next_ = instruction;
975 }
976}
977
978void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) {
979 DCHECK(Contains(cursor));
980 if (cursor == last_instruction_) {
981 cursor->next_ = instruction;
982 instruction->previous_ = cursor;
983 last_instruction_ = instruction;
984 } else {
985 instruction->next_ = cursor->next_;
986 instruction->previous_ = cursor;
987 cursor->next_ = instruction;
988 instruction->next_->previous_ = instruction;
989 }
990}
991
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100992void HInstructionList::RemoveInstruction(HInstruction* instruction) {
993 if (instruction->previous_ != nullptr) {
994 instruction->previous_->next_ = instruction->next_;
995 }
996 if (instruction->next_ != nullptr) {
997 instruction->next_->previous_ = instruction->previous_;
998 }
999 if (instruction == first_instruction_) {
1000 first_instruction_ = instruction->next_;
1001 }
1002 if (instruction == last_instruction_) {
1003 last_instruction_ = instruction->previous_;
1004 }
1005}
1006
Roland Levillain6b469232014-09-25 10:10:38 +01001007bool HInstructionList::Contains(HInstruction* instruction) const {
1008 for (HInstructionIterator it(*this); !it.Done(); it.Advance()) {
1009 if (it.Current() == instruction) {
1010 return true;
1011 }
1012 }
1013 return false;
1014}
1015
Roland Levillainccc07a92014-09-16 14:48:16 +01001016bool HInstructionList::FoundBefore(const HInstruction* instruction1,
1017 const HInstruction* instruction2) const {
1018 DCHECK_EQ(instruction1->GetBlock(), instruction2->GetBlock());
1019 for (HInstructionIterator it(*this); !it.Done(); it.Advance()) {
1020 if (it.Current() == instruction1) {
1021 return true;
1022 }
1023 if (it.Current() == instruction2) {
1024 return false;
1025 }
1026 }
1027 LOG(FATAL) << "Did not find an order between two instructions of the same block.";
1028 return true;
1029}
1030
Roland Levillain6c82d402014-10-13 16:10:27 +01001031bool HInstruction::StrictlyDominates(HInstruction* other_instruction) const {
1032 if (other_instruction == this) {
1033 // An instruction does not strictly dominate itself.
1034 return false;
1035 }
Roland Levillainccc07a92014-09-16 14:48:16 +01001036 HBasicBlock* block = GetBlock();
1037 HBasicBlock* other_block = other_instruction->GetBlock();
1038 if (block != other_block) {
1039 return GetBlock()->Dominates(other_instruction->GetBlock());
1040 } else {
1041 // If both instructions are in the same block, ensure this
1042 // instruction comes before `other_instruction`.
1043 if (IsPhi()) {
1044 if (!other_instruction->IsPhi()) {
1045 // Phis appear before non phi-instructions so this instruction
1046 // dominates `other_instruction`.
1047 return true;
1048 } else {
1049 // There is no order among phis.
1050 LOG(FATAL) << "There is no dominance between phis of a same block.";
1051 return false;
1052 }
1053 } else {
1054 // `this` is not a phi.
1055 if (other_instruction->IsPhi()) {
1056 // Phis appear before non phi-instructions so this instruction
1057 // does not dominate `other_instruction`.
1058 return false;
1059 } else {
1060 // Check whether this instruction comes before
1061 // `other_instruction` in the instruction list.
1062 return block->GetInstructions().FoundBefore(this, other_instruction);
1063 }
1064 }
1065 }
1066}
1067
Vladimir Markocac5a7e2016-02-22 10:39:50 +00001068void HInstruction::RemoveEnvironment() {
1069 RemoveEnvironmentUses(this);
1070 environment_ = nullptr;
1071}
1072
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001073void HInstruction::ReplaceWith(HInstruction* other) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01001074 DCHECK(other != nullptr);
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001075 // Note: fixup_end remains valid across splice_after().
1076 auto fixup_end = other->uses_.empty() ? other->uses_.begin() : ++other->uses_.begin();
1077 other->uses_.splice_after(other->uses_.before_begin(), uses_);
1078 other->FixUpUserRecordsAfterUseInsertion(fixup_end);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001079
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001080 // Note: env_fixup_end remains valid across splice_after().
1081 auto env_fixup_end =
1082 other->env_uses_.empty() ? other->env_uses_.begin() : ++other->env_uses_.begin();
1083 other->env_uses_.splice_after(other->env_uses_.before_begin(), env_uses_);
1084 other->FixUpUserRecordsAfterEnvUseInsertion(env_fixup_end);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001085
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001086 DCHECK(uses_.empty());
1087 DCHECK(env_uses_.empty());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001088}
1089
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001090void HInstruction::ReplaceInput(HInstruction* replacement, size_t index) {
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001091 HUserRecord<HInstruction*> input_use = InputRecordAt(index);
Vladimir Markoc6b56272016-04-20 18:45:25 +01001092 if (input_use.GetInstruction() == replacement) {
1093 // Nothing to do.
1094 return;
1095 }
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001096 HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode();
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001097 // Note: fixup_end remains valid across splice_after().
1098 auto fixup_end =
1099 replacement->uses_.empty() ? replacement->uses_.begin() : ++replacement->uses_.begin();
1100 replacement->uses_.splice_after(replacement->uses_.before_begin(),
1101 input_use.GetInstruction()->uses_,
1102 before_use_node);
1103 replacement->FixUpUserRecordsAfterUseInsertion(fixup_end);
1104 input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001105}
1106
Nicolas Geoffray39468442014-09-02 15:17:15 +01001107size_t HInstruction::EnvironmentSize() const {
1108 return HasEnvironment() ? environment_->Size() : 0;
1109}
1110
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001111void HPhi::AddInput(HInstruction* input) {
1112 DCHECK(input->GetBlock() != nullptr);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001113 inputs_.push_back(HUserRecord<HInstruction*>(input));
1114 input->AddUseAt(this, inputs_.size() - 1);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001115}
1116
David Brazdil2d7352b2015-04-20 14:52:42 +01001117void HPhi::RemoveInputAt(size_t index) {
1118 RemoveAsUserOfInput(index);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001119 inputs_.erase(inputs_.begin() + index);
Vladimir Marko372f10e2016-05-17 16:30:10 +01001120 // Update indexes in use nodes of inputs that have been pulled forward by the erase().
1121 for (size_t i = index, e = inputs_.size(); i < e; ++i) {
1122 DCHECK_EQ(inputs_[i].GetUseNode()->GetIndex(), i + 1u);
1123 inputs_[i].GetUseNode()->SetIndex(i);
Nicolas Geoffray5d7b7f82015-04-28 00:52:43 +01001124 }
David Brazdil2d7352b2015-04-20 14:52:42 +01001125}
1126
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001127#define DEFINE_ACCEPT(name, super) \
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001128void H##name::Accept(HGraphVisitor* visitor) { \
1129 visitor->Visit##name(this); \
1130}
1131
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001132FOR_EACH_CONCRETE_INSTRUCTION(DEFINE_ACCEPT)
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001133
1134#undef DEFINE_ACCEPT
1135
1136void HGraphVisitor::VisitInsertionOrder() {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001137 const ArenaVector<HBasicBlock*>& blocks = graph_->GetBlocks();
1138 for (HBasicBlock* block : blocks) {
David Brazdil46e2a392015-03-16 17:31:52 +00001139 if (block != nullptr) {
1140 VisitBasicBlock(block);
1141 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001142 }
1143}
1144
Roland Levillain633021e2014-10-01 14:12:25 +01001145void HGraphVisitor::VisitReversePostOrder() {
Vladimir Marko2c45bc92016-10-25 16:54:12 +01001146 for (HBasicBlock* block : graph_->GetReversePostOrder()) {
1147 VisitBasicBlock(block);
Roland Levillain633021e2014-10-01 14:12:25 +01001148 }
1149}
1150
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001151void HGraphVisitor::VisitBasicBlock(HBasicBlock* block) {
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001152 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001153 it.Current()->Accept(this);
1154 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001155 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001156 it.Current()->Accept(this);
1157 }
1158}
1159
Mark Mendelle82549b2015-05-06 10:55:34 -04001160HConstant* HTypeConversion::TryStaticEvaluation() const {
1161 HGraph* graph = GetBlock()->GetGraph();
1162 if (GetInput()->IsIntConstant()) {
1163 int32_t value = GetInput()->AsIntConstant()->GetValue();
1164 switch (GetResultType()) {
1165 case Primitive::kPrimLong:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001166 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001167 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001168 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001169 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001170 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001171 default:
1172 return nullptr;
1173 }
1174 } else if (GetInput()->IsLongConstant()) {
1175 int64_t value = GetInput()->AsLongConstant()->GetValue();
1176 switch (GetResultType()) {
1177 case Primitive::kPrimInt:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001178 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001179 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001180 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001181 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001182 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001183 default:
1184 return nullptr;
1185 }
1186 } else if (GetInput()->IsFloatConstant()) {
1187 float value = GetInput()->AsFloatConstant()->GetValue();
1188 switch (GetResultType()) {
1189 case Primitive::kPrimInt:
1190 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001191 return graph->GetIntConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001192 if (value >= kPrimIntMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001193 return graph->GetIntConstant(kPrimIntMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001194 if (value <= kPrimIntMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001195 return graph->GetIntConstant(kPrimIntMin, GetDexPc());
1196 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001197 case Primitive::kPrimLong:
1198 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001199 return graph->GetLongConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001200 if (value >= kPrimLongMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001201 return graph->GetLongConstant(kPrimLongMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001202 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001203 return graph->GetLongConstant(kPrimLongMin, GetDexPc());
1204 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001205 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001206 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001207 default:
1208 return nullptr;
1209 }
1210 } else if (GetInput()->IsDoubleConstant()) {
1211 double value = GetInput()->AsDoubleConstant()->GetValue();
1212 switch (GetResultType()) {
1213 case Primitive::kPrimInt:
1214 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001215 return graph->GetIntConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001216 if (value >= kPrimIntMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001217 return graph->GetIntConstant(kPrimIntMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001218 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001219 return graph->GetIntConstant(kPrimIntMin, GetDexPc());
1220 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001221 case Primitive::kPrimLong:
1222 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001223 return graph->GetLongConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001224 if (value >= kPrimLongMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001225 return graph->GetLongConstant(kPrimLongMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001226 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001227 return graph->GetLongConstant(kPrimLongMin, GetDexPc());
1228 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001229 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001230 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001231 default:
1232 return nullptr;
1233 }
1234 }
1235 return nullptr;
1236}
1237
Roland Levillain9240d6a2014-10-20 16:47:04 +01001238HConstant* HUnaryOperation::TryStaticEvaluation() const {
1239 if (GetInput()->IsIntConstant()) {
Roland Levillain9867bc72015-08-05 10:21:34 +01001240 return Evaluate(GetInput()->AsIntConstant());
Roland Levillain9240d6a2014-10-20 16:47:04 +01001241 } else if (GetInput()->IsLongConstant()) {
Roland Levillain9867bc72015-08-05 10:21:34 +01001242 return Evaluate(GetInput()->AsLongConstant());
Roland Levillain31dd3d62016-02-16 12:21:02 +00001243 } else if (kEnableFloatingPointStaticEvaluation) {
1244 if (GetInput()->IsFloatConstant()) {
1245 return Evaluate(GetInput()->AsFloatConstant());
1246 } else if (GetInput()->IsDoubleConstant()) {
1247 return Evaluate(GetInput()->AsDoubleConstant());
1248 }
Roland Levillain9240d6a2014-10-20 16:47:04 +01001249 }
1250 return nullptr;
1251}
1252
1253HConstant* HBinaryOperation::TryStaticEvaluation() const {
Roland Levillaine53bd812016-02-24 14:54:18 +00001254 if (GetLeft()->IsIntConstant() && GetRight()->IsIntConstant()) {
1255 return Evaluate(GetLeft()->AsIntConstant(), GetRight()->AsIntConstant());
Roland Levillain9867bc72015-08-05 10:21:34 +01001256 } else if (GetLeft()->IsLongConstant()) {
1257 if (GetRight()->IsIntConstant()) {
Roland Levillaine53bd812016-02-24 14:54:18 +00001258 // The binop(long, int) case is only valid for shifts and rotations.
1259 DCHECK(IsShl() || IsShr() || IsUShr() || IsRor()) << DebugName();
Roland Levillain9867bc72015-08-05 10:21:34 +01001260 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsIntConstant());
1261 } else if (GetRight()->IsLongConstant()) {
1262 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsLongConstant());
Nicolas Geoffray9ee66182015-01-16 12:35:40 +00001263 }
Vladimir Marko9e23df52015-11-10 17:14:35 +00001264 } else if (GetLeft()->IsNullConstant() && GetRight()->IsNullConstant()) {
Roland Levillaine53bd812016-02-24 14:54:18 +00001265 // The binop(null, null) case is only valid for equal and not-equal conditions.
1266 DCHECK(IsEqual() || IsNotEqual()) << DebugName();
Vladimir Marko9e23df52015-11-10 17:14:35 +00001267 return Evaluate(GetLeft()->AsNullConstant(), GetRight()->AsNullConstant());
Roland Levillain31dd3d62016-02-16 12:21:02 +00001268 } else if (kEnableFloatingPointStaticEvaluation) {
1269 if (GetLeft()->IsFloatConstant() && GetRight()->IsFloatConstant()) {
1270 return Evaluate(GetLeft()->AsFloatConstant(), GetRight()->AsFloatConstant());
1271 } else if (GetLeft()->IsDoubleConstant() && GetRight()->IsDoubleConstant()) {
1272 return Evaluate(GetLeft()->AsDoubleConstant(), GetRight()->AsDoubleConstant());
1273 }
Roland Levillain556c3d12014-09-18 15:25:07 +01001274 }
1275 return nullptr;
1276}
Dave Allison20dfc792014-06-16 20:44:29 -07001277
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00001278HConstant* HBinaryOperation::GetConstantRight() const {
1279 if (GetRight()->IsConstant()) {
1280 return GetRight()->AsConstant();
1281 } else if (IsCommutative() && GetLeft()->IsConstant()) {
1282 return GetLeft()->AsConstant();
1283 } else {
1284 return nullptr;
1285 }
1286}
1287
1288// If `GetConstantRight()` returns one of the input, this returns the other
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001289// one. Otherwise it returns null.
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00001290HInstruction* HBinaryOperation::GetLeastConstantLeft() const {
1291 HInstruction* most_constant_right = GetConstantRight();
1292 if (most_constant_right == nullptr) {
1293 return nullptr;
1294 } else if (most_constant_right == GetLeft()) {
1295 return GetRight();
1296 } else {
1297 return GetLeft();
1298 }
1299}
1300
Roland Levillain31dd3d62016-02-16 12:21:02 +00001301std::ostream& operator<<(std::ostream& os, const ComparisonBias& rhs) {
1302 switch (rhs) {
1303 case ComparisonBias::kNoBias:
1304 return os << "no_bias";
1305 case ComparisonBias::kGtBias:
1306 return os << "gt_bias";
1307 case ComparisonBias::kLtBias:
1308 return os << "lt_bias";
1309 default:
1310 LOG(FATAL) << "Unknown ComparisonBias: " << static_cast<int>(rhs);
1311 UNREACHABLE();
1312 }
1313}
1314
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001315bool HCondition::IsBeforeWhenDisregardMoves(HInstruction* instruction) const {
1316 return this == instruction->GetPreviousDisregardingMoves();
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001317}
1318
Vladimir Marko372f10e2016-05-17 16:30:10 +01001319bool HInstruction::Equals(const HInstruction* other) const {
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001320 if (!InstructionTypeEquals(other)) return false;
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001321 DCHECK_EQ(GetKind(), other->GetKind());
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001322 if (!InstructionDataEquals(other)) return false;
1323 if (GetType() != other->GetType()) return false;
Vladimir Markoe9004912016-06-16 16:50:52 +01001324 HConstInputsRef inputs = GetInputs();
1325 HConstInputsRef other_inputs = other->GetInputs();
Vladimir Marko372f10e2016-05-17 16:30:10 +01001326 if (inputs.size() != other_inputs.size()) return false;
1327 for (size_t i = 0; i != inputs.size(); ++i) {
1328 if (inputs[i] != other_inputs[i]) return false;
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001329 }
Vladimir Marko372f10e2016-05-17 16:30:10 +01001330
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001331 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode());
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001332 return true;
1333}
1334
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001335std::ostream& operator<<(std::ostream& os, const HInstruction::InstructionKind& rhs) {
1336#define DECLARE_CASE(type, super) case HInstruction::k##type: os << #type; break;
1337 switch (rhs) {
1338 FOR_EACH_INSTRUCTION(DECLARE_CASE)
1339 default:
1340 os << "Unknown instruction kind " << static_cast<int>(rhs);
1341 break;
1342 }
1343#undef DECLARE_CASE
1344 return os;
1345}
1346
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001347void HInstruction::MoveBefore(HInstruction* cursor) {
David Brazdild6c205e2016-06-07 14:20:52 +01001348 DCHECK(!IsPhi());
1349 DCHECK(!IsControlFlow());
1350 DCHECK(CanBeMoved());
1351 DCHECK(!cursor->IsPhi());
1352
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001353 next_->previous_ = previous_;
1354 if (previous_ != nullptr) {
1355 previous_->next_ = next_;
1356 }
1357 if (block_->instructions_.first_instruction_ == this) {
1358 block_->instructions_.first_instruction_ = next_;
1359 }
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001360 DCHECK_NE(block_->instructions_.last_instruction_, this);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001361
1362 previous_ = cursor->previous_;
1363 if (previous_ != nullptr) {
1364 previous_->next_ = this;
1365 }
1366 next_ = cursor;
1367 cursor->previous_ = this;
1368 block_ = cursor->block_;
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001369
1370 if (block_->instructions_.first_instruction_ == cursor) {
1371 block_->instructions_.first_instruction_ = this;
1372 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001373}
1374
Vladimir Markofb337ea2015-11-25 15:25:10 +00001375void HInstruction::MoveBeforeFirstUserAndOutOfLoops() {
1376 DCHECK(!CanThrow());
1377 DCHECK(!HasSideEffects());
1378 DCHECK(!HasEnvironmentUses());
1379 DCHECK(HasNonEnvironmentUses());
1380 DCHECK(!IsPhi()); // Makes no sense for Phi.
1381 DCHECK_EQ(InputCount(), 0u);
1382
1383 // Find the target block.
Vladimir Marko46817b82016-03-29 12:21:58 +01001384 auto uses_it = GetUses().begin();
1385 auto uses_end = GetUses().end();
1386 HBasicBlock* target_block = uses_it->GetUser()->GetBlock();
1387 ++uses_it;
1388 while (uses_it != uses_end && uses_it->GetUser()->GetBlock() == target_block) {
1389 ++uses_it;
Vladimir Markofb337ea2015-11-25 15:25:10 +00001390 }
Vladimir Marko46817b82016-03-29 12:21:58 +01001391 if (uses_it != uses_end) {
Vladimir Markofb337ea2015-11-25 15:25:10 +00001392 // This instruction has uses in two or more blocks. Find the common dominator.
1393 CommonDominator finder(target_block);
Vladimir Marko46817b82016-03-29 12:21:58 +01001394 for (; uses_it != uses_end; ++uses_it) {
1395 finder.Update(uses_it->GetUser()->GetBlock());
Vladimir Markofb337ea2015-11-25 15:25:10 +00001396 }
1397 target_block = finder.Get();
1398 DCHECK(target_block != nullptr);
1399 }
1400 // Move to the first dominator not in a loop.
1401 while (target_block->IsInLoop()) {
1402 target_block = target_block->GetDominator();
1403 DCHECK(target_block != nullptr);
1404 }
1405
1406 // Find insertion position.
1407 HInstruction* insert_pos = nullptr;
Vladimir Marko46817b82016-03-29 12:21:58 +01001408 for (const HUseListNode<HInstruction*>& use : GetUses()) {
1409 if (use.GetUser()->GetBlock() == target_block &&
1410 (insert_pos == nullptr || use.GetUser()->StrictlyDominates(insert_pos))) {
1411 insert_pos = use.GetUser();
Vladimir Markofb337ea2015-11-25 15:25:10 +00001412 }
1413 }
1414 if (insert_pos == nullptr) {
1415 // No user in `target_block`, insert before the control flow instruction.
1416 insert_pos = target_block->GetLastInstruction();
1417 DCHECK(insert_pos->IsControlFlow());
1418 // Avoid splitting HCondition from HIf to prevent unnecessary materialization.
1419 if (insert_pos->IsIf()) {
1420 HInstruction* if_input = insert_pos->AsIf()->InputAt(0);
1421 if (if_input == insert_pos->GetPrevious()) {
1422 insert_pos = if_input;
1423 }
1424 }
1425 }
1426 MoveBefore(insert_pos);
1427}
1428
David Brazdilfc6a86a2015-06-26 10:33:45 +00001429HBasicBlock* HBasicBlock::SplitBefore(HInstruction* cursor) {
David Brazdil9bc43612015-11-05 21:25:24 +00001430 DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented.";
David Brazdilfc6a86a2015-06-26 10:33:45 +00001431 DCHECK_EQ(cursor->GetBlock(), this);
1432
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001433 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(),
1434 cursor->GetDexPc());
David Brazdilfc6a86a2015-06-26 10:33:45 +00001435 new_block->instructions_.first_instruction_ = cursor;
1436 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1437 instructions_.last_instruction_ = cursor->previous_;
1438 if (cursor->previous_ == nullptr) {
1439 instructions_.first_instruction_ = nullptr;
1440 } else {
1441 cursor->previous_->next_ = nullptr;
1442 cursor->previous_ = nullptr;
1443 }
1444
1445 new_block->instructions_.SetBlockOfInstructions(new_block);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001446 AddInstruction(new (GetGraph()->GetArena()) HGoto(new_block->GetDexPc()));
David Brazdilfc6a86a2015-06-26 10:33:45 +00001447
Vladimir Marko60584552015-09-03 13:35:12 +00001448 for (HBasicBlock* successor : GetSuccessors()) {
Vladimir Marko60584552015-09-03 13:35:12 +00001449 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
David Brazdilfc6a86a2015-06-26 10:33:45 +00001450 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001451 new_block->successors_.swap(successors_);
1452 DCHECK(successors_.empty());
David Brazdilfc6a86a2015-06-26 10:33:45 +00001453 AddSuccessor(new_block);
1454
David Brazdil56e1acc2015-06-30 15:41:36 +01001455 GetGraph()->AddBlock(new_block);
David Brazdilfc6a86a2015-06-26 10:33:45 +00001456 return new_block;
1457}
1458
David Brazdild7558da2015-09-22 13:04:14 +01001459HBasicBlock* HBasicBlock::CreateImmediateDominator() {
David Brazdil9bc43612015-11-05 21:25:24 +00001460 DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented.";
David Brazdild7558da2015-09-22 13:04:14 +01001461 DCHECK(!IsCatchBlock()) << "Support for updating try/catch information not implemented.";
1462
1463 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc());
1464
1465 for (HBasicBlock* predecessor : GetPredecessors()) {
David Brazdild7558da2015-09-22 13:04:14 +01001466 predecessor->successors_[predecessor->GetSuccessorIndexOf(this)] = new_block;
1467 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001468 new_block->predecessors_.swap(predecessors_);
1469 DCHECK(predecessors_.empty());
David Brazdild7558da2015-09-22 13:04:14 +01001470 AddPredecessor(new_block);
1471
1472 GetGraph()->AddBlock(new_block);
1473 return new_block;
1474}
1475
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001476HBasicBlock* HBasicBlock::SplitBeforeForInlining(HInstruction* cursor) {
1477 DCHECK_EQ(cursor->GetBlock(), this);
1478
1479 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(),
1480 cursor->GetDexPc());
1481 new_block->instructions_.first_instruction_ = cursor;
1482 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1483 instructions_.last_instruction_ = cursor->previous_;
1484 if (cursor->previous_ == nullptr) {
1485 instructions_.first_instruction_ = nullptr;
1486 } else {
1487 cursor->previous_->next_ = nullptr;
1488 cursor->previous_ = nullptr;
1489 }
1490
1491 new_block->instructions_.SetBlockOfInstructions(new_block);
1492
1493 for (HBasicBlock* successor : GetSuccessors()) {
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001494 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
1495 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001496 new_block->successors_.swap(successors_);
1497 DCHECK(successors_.empty());
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001498
1499 for (HBasicBlock* dominated : GetDominatedBlocks()) {
1500 dominated->dominator_ = new_block;
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001501 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001502 new_block->dominated_blocks_.swap(dominated_blocks_);
1503 DCHECK(dominated_blocks_.empty());
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001504 return new_block;
1505}
1506
1507HBasicBlock* HBasicBlock::SplitAfterForInlining(HInstruction* cursor) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001508 DCHECK(!cursor->IsControlFlow());
1509 DCHECK_NE(instructions_.last_instruction_, cursor);
1510 DCHECK_EQ(cursor->GetBlock(), this);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001511
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001512 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc());
1513 new_block->instructions_.first_instruction_ = cursor->GetNext();
1514 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1515 cursor->next_->previous_ = nullptr;
1516 cursor->next_ = nullptr;
1517 instructions_.last_instruction_ = cursor;
1518
1519 new_block->instructions_.SetBlockOfInstructions(new_block);
Vladimir Marko60584552015-09-03 13:35:12 +00001520 for (HBasicBlock* successor : GetSuccessors()) {
Vladimir Marko60584552015-09-03 13:35:12 +00001521 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001522 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001523 new_block->successors_.swap(successors_);
1524 DCHECK(successors_.empty());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001525
Vladimir Marko60584552015-09-03 13:35:12 +00001526 for (HBasicBlock* dominated : GetDominatedBlocks()) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001527 dominated->dominator_ = new_block;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001528 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001529 new_block->dominated_blocks_.swap(dominated_blocks_);
1530 DCHECK(dominated_blocks_.empty());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001531 return new_block;
1532}
1533
David Brazdilec16f792015-08-19 15:04:01 +01001534const HTryBoundary* HBasicBlock::ComputeTryEntryOfSuccessors() const {
David Brazdilffee3d32015-07-06 11:48:53 +01001535 if (EndsWithTryBoundary()) {
1536 HTryBoundary* try_boundary = GetLastInstruction()->AsTryBoundary();
1537 if (try_boundary->IsEntry()) {
David Brazdilec16f792015-08-19 15:04:01 +01001538 DCHECK(!IsTryBlock());
David Brazdilffee3d32015-07-06 11:48:53 +01001539 return try_boundary;
1540 } else {
David Brazdilec16f792015-08-19 15:04:01 +01001541 DCHECK(IsTryBlock());
1542 DCHECK(try_catch_information_->GetTryEntry().HasSameExceptionHandlersAs(*try_boundary));
David Brazdilffee3d32015-07-06 11:48:53 +01001543 return nullptr;
1544 }
David Brazdilec16f792015-08-19 15:04:01 +01001545 } else if (IsTryBlock()) {
1546 return &try_catch_information_->GetTryEntry();
David Brazdilffee3d32015-07-06 11:48:53 +01001547 } else {
David Brazdilec16f792015-08-19 15:04:01 +01001548 return nullptr;
David Brazdilffee3d32015-07-06 11:48:53 +01001549 }
David Brazdilfc6a86a2015-06-26 10:33:45 +00001550}
1551
David Brazdild7558da2015-09-22 13:04:14 +01001552bool HBasicBlock::HasThrowingInstructions() const {
1553 for (HInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) {
1554 if (it.Current()->CanThrow()) {
1555 return true;
1556 }
1557 }
1558 return false;
1559}
1560
David Brazdilfc6a86a2015-06-26 10:33:45 +00001561static bool HasOnlyOneInstruction(const HBasicBlock& block) {
1562 return block.GetPhis().IsEmpty()
1563 && !block.GetInstructions().IsEmpty()
1564 && block.GetFirstInstruction() == block.GetLastInstruction();
1565}
1566
David Brazdil46e2a392015-03-16 17:31:52 +00001567bool HBasicBlock::IsSingleGoto() const {
David Brazdilfc6a86a2015-06-26 10:33:45 +00001568 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsGoto();
1569}
1570
1571bool HBasicBlock::IsSingleTryBoundary() const {
1572 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsTryBoundary();
David Brazdil46e2a392015-03-16 17:31:52 +00001573}
1574
David Brazdil8d5b8b22015-03-24 10:51:52 +00001575bool HBasicBlock::EndsWithControlFlowInstruction() const {
1576 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsControlFlow();
1577}
1578
David Brazdilb2bd1c52015-03-25 11:17:37 +00001579bool HBasicBlock::EndsWithIf() const {
1580 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsIf();
1581}
1582
David Brazdilffee3d32015-07-06 11:48:53 +01001583bool HBasicBlock::EndsWithTryBoundary() const {
1584 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsTryBoundary();
1585}
1586
David Brazdilb2bd1c52015-03-25 11:17:37 +00001587bool HBasicBlock::HasSinglePhi() const {
1588 return !GetPhis().IsEmpty() && GetFirstPhi()->GetNext() == nullptr;
1589}
1590
David Brazdild26a4112015-11-10 11:07:31 +00001591ArrayRef<HBasicBlock* const> HBasicBlock::GetNormalSuccessors() const {
1592 if (EndsWithTryBoundary()) {
1593 // The normal-flow successor of HTryBoundary is always stored at index zero.
1594 DCHECK_EQ(successors_[0], GetLastInstruction()->AsTryBoundary()->GetNormalFlowSuccessor());
1595 return ArrayRef<HBasicBlock* const>(successors_).SubArray(0u, 1u);
1596 } else {
1597 // All successors of blocks not ending with TryBoundary are normal.
1598 return ArrayRef<HBasicBlock* const>(successors_);
1599 }
1600}
1601
1602ArrayRef<HBasicBlock* const> HBasicBlock::GetExceptionalSuccessors() const {
1603 if (EndsWithTryBoundary()) {
1604 return GetLastInstruction()->AsTryBoundary()->GetExceptionHandlers();
1605 } else {
1606 // Blocks not ending with TryBoundary do not have exceptional successors.
1607 return ArrayRef<HBasicBlock* const>();
1608 }
1609}
1610
David Brazdilffee3d32015-07-06 11:48:53 +01001611bool HTryBoundary::HasSameExceptionHandlersAs(const HTryBoundary& other) const {
David Brazdild26a4112015-11-10 11:07:31 +00001612 ArrayRef<HBasicBlock* const> handlers1 = GetExceptionHandlers();
1613 ArrayRef<HBasicBlock* const> handlers2 = other.GetExceptionHandlers();
1614
1615 size_t length = handlers1.size();
1616 if (length != handlers2.size()) {
David Brazdilffee3d32015-07-06 11:48:53 +01001617 return false;
1618 }
1619
David Brazdilb618ade2015-07-29 10:31:29 +01001620 // Exception handlers need to be stored in the same order.
David Brazdild26a4112015-11-10 11:07:31 +00001621 for (size_t i = 0; i < length; ++i) {
1622 if (handlers1[i] != handlers2[i]) {
David Brazdilffee3d32015-07-06 11:48:53 +01001623 return false;
1624 }
1625 }
1626 return true;
1627}
1628
David Brazdil2d7352b2015-04-20 14:52:42 +01001629size_t HInstructionList::CountSize() const {
1630 size_t size = 0;
1631 HInstruction* current = first_instruction_;
1632 for (; current != nullptr; current = current->GetNext()) {
1633 size++;
1634 }
1635 return size;
1636}
1637
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001638void HInstructionList::SetBlockOfInstructions(HBasicBlock* block) const {
1639 for (HInstruction* current = first_instruction_;
1640 current != nullptr;
1641 current = current->GetNext()) {
1642 current->SetBlock(block);
1643 }
1644}
1645
1646void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) {
1647 DCHECK(Contains(cursor));
1648 if (!instruction_list.IsEmpty()) {
1649 if (cursor == last_instruction_) {
1650 last_instruction_ = instruction_list.last_instruction_;
1651 } else {
1652 cursor->next_->previous_ = instruction_list.last_instruction_;
1653 }
1654 instruction_list.last_instruction_->next_ = cursor->next_;
1655 cursor->next_ = instruction_list.first_instruction_;
1656 instruction_list.first_instruction_->previous_ = cursor;
1657 }
1658}
1659
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001660void HInstructionList::AddBefore(HInstruction* cursor, const HInstructionList& instruction_list) {
1661 DCHECK(Contains(cursor));
1662 if (!instruction_list.IsEmpty()) {
1663 if (cursor == first_instruction_) {
1664 first_instruction_ = instruction_list.first_instruction_;
1665 } else {
1666 cursor->previous_->next_ = instruction_list.first_instruction_;
1667 }
1668 instruction_list.last_instruction_->next_ = cursor;
1669 instruction_list.first_instruction_->previous_ = cursor->previous_;
1670 cursor->previous_ = instruction_list.last_instruction_;
1671 }
1672}
1673
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001674void HInstructionList::Add(const HInstructionList& instruction_list) {
David Brazdil46e2a392015-03-16 17:31:52 +00001675 if (IsEmpty()) {
1676 first_instruction_ = instruction_list.first_instruction_;
1677 last_instruction_ = instruction_list.last_instruction_;
1678 } else {
1679 AddAfter(last_instruction_, instruction_list);
1680 }
1681}
1682
David Brazdil04ff4e82015-12-10 13:54:52 +00001683// Should be called on instructions in a dead block in post order. This method
1684// assumes `insn` has been removed from all users with the exception of catch
1685// phis because of missing exceptional edges in the graph. It removes the
1686// instruction from catch phi uses, together with inputs of other catch phis in
1687// the catch block at the same index, as these must be dead too.
1688static void RemoveUsesOfDeadInstruction(HInstruction* insn) {
1689 DCHECK(!insn->HasEnvironmentUses());
1690 while (insn->HasNonEnvironmentUses()) {
Vladimir Marko46817b82016-03-29 12:21:58 +01001691 const HUseListNode<HInstruction*>& use = insn->GetUses().front();
1692 size_t use_index = use.GetIndex();
1693 HBasicBlock* user_block = use.GetUser()->GetBlock();
1694 DCHECK(use.GetUser()->IsPhi() && user_block->IsCatchBlock());
David Brazdil04ff4e82015-12-10 13:54:52 +00001695 for (HInstructionIterator phi_it(user_block->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1696 phi_it.Current()->AsPhi()->RemoveInputAt(use_index);
1697 }
1698 }
1699}
1700
David Brazdil2d7352b2015-04-20 14:52:42 +01001701void HBasicBlock::DisconnectAndDelete() {
1702 // Dominators must be removed after all the blocks they dominate. This way
1703 // a loop header is removed last, a requirement for correct loop information
1704 // iteration.
Vladimir Marko60584552015-09-03 13:35:12 +00001705 DCHECK(dominated_blocks_.empty());
David Brazdil46e2a392015-03-16 17:31:52 +00001706
David Brazdil9eeebf62016-03-24 11:18:15 +00001707 // The following steps gradually remove the block from all its dependants in
1708 // post order (b/27683071).
1709
1710 // (1) Store a basic block that we'll use in step (5) to find loops to be updated.
1711 // We need to do this before step (4) which destroys the predecessor list.
1712 HBasicBlock* loop_update_start = this;
1713 if (IsLoopHeader()) {
1714 HLoopInformation* loop_info = GetLoopInformation();
1715 // All other blocks in this loop should have been removed because the header
1716 // was their dominator.
1717 // Note that we do not remove `this` from `loop_info` as it is unreachable.
1718 DCHECK(!loop_info->IsIrreducible());
1719 DCHECK_EQ(loop_info->GetBlocks().NumSetBits(), 1u);
1720 DCHECK_EQ(static_cast<uint32_t>(loop_info->GetBlocks().GetHighestBitSet()), GetBlockId());
1721 loop_update_start = loop_info->GetPreHeader();
David Brazdil2d7352b2015-04-20 14:52:42 +01001722 }
1723
David Brazdil9eeebf62016-03-24 11:18:15 +00001724 // (2) Disconnect the block from its successors and update their phis.
1725 for (HBasicBlock* successor : successors_) {
1726 // Delete this block from the list of predecessors.
1727 size_t this_index = successor->GetPredecessorIndexOf(this);
1728 successor->predecessors_.erase(successor->predecessors_.begin() + this_index);
1729
1730 // Check that `successor` has other predecessors, otherwise `this` is the
1731 // dominator of `successor` which violates the order DCHECKed at the top.
1732 DCHECK(!successor->predecessors_.empty());
1733
1734 // Remove this block's entries in the successor's phis. Skip exceptional
1735 // successors because catch phi inputs do not correspond to predecessor
1736 // blocks but throwing instructions. The inputs of the catch phis will be
1737 // updated in step (3).
1738 if (!successor->IsCatchBlock()) {
1739 if (successor->predecessors_.size() == 1u) {
1740 // The successor has just one predecessor left. Replace phis with the only
1741 // remaining input.
1742 for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1743 HPhi* phi = phi_it.Current()->AsPhi();
1744 phi->ReplaceWith(phi->InputAt(1 - this_index));
1745 successor->RemovePhi(phi);
1746 }
1747 } else {
1748 for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1749 phi_it.Current()->AsPhi()->RemoveInputAt(this_index);
1750 }
1751 }
1752 }
1753 }
1754 successors_.clear();
1755
1756 // (3) Remove instructions and phis. Instructions should have no remaining uses
1757 // except in catch phis. If an instruction is used by a catch phi at `index`,
1758 // remove `index`-th input of all phis in the catch block since they are
1759 // guaranteed dead. Note that we may miss dead inputs this way but the
1760 // graph will always remain consistent.
1761 for (HBackwardInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) {
1762 HInstruction* insn = it.Current();
1763 RemoveUsesOfDeadInstruction(insn);
1764 RemoveInstruction(insn);
1765 }
1766 for (HInstructionIterator it(GetPhis()); !it.Done(); it.Advance()) {
1767 HPhi* insn = it.Current()->AsPhi();
1768 RemoveUsesOfDeadInstruction(insn);
1769 RemovePhi(insn);
1770 }
1771
1772 // (4) Disconnect the block from its predecessors and update their
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001773 // control-flow instructions.
Vladimir Marko60584552015-09-03 13:35:12 +00001774 for (HBasicBlock* predecessor : predecessors_) {
David Brazdil9eeebf62016-03-24 11:18:15 +00001775 // We should not see any back edges as they would have been removed by step (3).
1776 DCHECK(!IsInLoop() || !GetLoopInformation()->IsBackEdge(*predecessor));
1777
David Brazdil2d7352b2015-04-20 14:52:42 +01001778 HInstruction* last_instruction = predecessor->GetLastInstruction();
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001779 if (last_instruction->IsTryBoundary() && !IsCatchBlock()) {
1780 // This block is the only normal-flow successor of the TryBoundary which
1781 // makes `predecessor` dead. Since DCE removes blocks in post order,
1782 // exception handlers of this TryBoundary were already visited and any
1783 // remaining handlers therefore must be live. We remove `predecessor` from
1784 // their list of predecessors.
1785 DCHECK_EQ(last_instruction->AsTryBoundary()->GetNormalFlowSuccessor(), this);
1786 while (predecessor->GetSuccessors().size() > 1) {
1787 HBasicBlock* handler = predecessor->GetSuccessors()[1];
1788 DCHECK(handler->IsCatchBlock());
1789 predecessor->RemoveSuccessor(handler);
1790 handler->RemovePredecessor(predecessor);
1791 }
1792 }
1793
David Brazdil2d7352b2015-04-20 14:52:42 +01001794 predecessor->RemoveSuccessor(this);
Mark Mendellfe57faa2015-09-18 09:26:15 -04001795 uint32_t num_pred_successors = predecessor->GetSuccessors().size();
1796 if (num_pred_successors == 1u) {
1797 // If we have one successor after removing one, then we must have
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001798 // had an HIf, HPackedSwitch or HTryBoundary, as they have more than one
1799 // successor. Replace those with a HGoto.
1800 DCHECK(last_instruction->IsIf() ||
1801 last_instruction->IsPackedSwitch() ||
1802 (last_instruction->IsTryBoundary() && IsCatchBlock()));
Mark Mendellfe57faa2015-09-18 09:26:15 -04001803 predecessor->RemoveInstruction(last_instruction);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001804 predecessor->AddInstruction(new (graph_->GetArena()) HGoto(last_instruction->GetDexPc()));
Mark Mendellfe57faa2015-09-18 09:26:15 -04001805 } else if (num_pred_successors == 0u) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001806 // The predecessor has no remaining successors and therefore must be dead.
1807 // We deliberately leave it without a control-flow instruction so that the
David Brazdilbadd8262016-02-02 16:28:56 +00001808 // GraphChecker fails unless it is not removed during the pass too.
Mark Mendellfe57faa2015-09-18 09:26:15 -04001809 predecessor->RemoveInstruction(last_instruction);
1810 } else {
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001811 // There are multiple successors left. The removed block might be a successor
1812 // of a PackedSwitch which will be completely removed (perhaps replaced with
1813 // a Goto), or we are deleting a catch block from a TryBoundary. In either
1814 // case, leave `last_instruction` as is for now.
1815 DCHECK(last_instruction->IsPackedSwitch() ||
1816 (last_instruction->IsTryBoundary() && IsCatchBlock()));
David Brazdil2d7352b2015-04-20 14:52:42 +01001817 }
David Brazdil46e2a392015-03-16 17:31:52 +00001818 }
Vladimir Marko60584552015-09-03 13:35:12 +00001819 predecessors_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001820
David Brazdil9eeebf62016-03-24 11:18:15 +00001821 // (5) Remove the block from all loops it is included in. Skip the inner-most
1822 // loop if this is the loop header (see definition of `loop_update_start`)
1823 // because the loop header's predecessor list has been destroyed in step (4).
1824 for (HLoopInformationOutwardIterator it(*loop_update_start); !it.Done(); it.Advance()) {
1825 HLoopInformation* loop_info = it.Current();
1826 loop_info->Remove(this);
1827 if (loop_info->IsBackEdge(*this)) {
1828 // If this was the last back edge of the loop, we deliberately leave the
1829 // loop in an inconsistent state and will fail GraphChecker unless the
1830 // entire loop is removed during the pass.
1831 loop_info->RemoveBackEdge(this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001832 }
1833 }
David Brazdil2d7352b2015-04-20 14:52:42 +01001834
David Brazdil9eeebf62016-03-24 11:18:15 +00001835 // (6) Disconnect from the dominator.
David Brazdil2d7352b2015-04-20 14:52:42 +01001836 dominator_->RemoveDominatedBlock(this);
1837 SetDominator(nullptr);
1838
David Brazdil9eeebf62016-03-24 11:18:15 +00001839 // (7) Delete from the graph, update reverse post order.
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001840 graph_->DeleteDeadEmptyBlock(this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001841 SetGraph(nullptr);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001842}
1843
1844void HBasicBlock::MergeWith(HBasicBlock* other) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001845 DCHECK_EQ(GetGraph(), other->GetGraph());
Vladimir Marko60584552015-09-03 13:35:12 +00001846 DCHECK(ContainsElement(dominated_blocks_, other));
1847 DCHECK_EQ(GetSingleSuccessor(), other);
1848 DCHECK_EQ(other->GetSinglePredecessor(), this);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001849 DCHECK(other->GetPhis().IsEmpty());
1850
David Brazdil2d7352b2015-04-20 14:52:42 +01001851 // Move instructions from `other` to `this`.
1852 DCHECK(EndsWithControlFlowInstruction());
1853 RemoveInstruction(GetLastInstruction());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001854 instructions_.Add(other->GetInstructions());
David Brazdil2d7352b2015-04-20 14:52:42 +01001855 other->instructions_.SetBlockOfInstructions(this);
1856 other->instructions_.Clear();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001857
David Brazdil2d7352b2015-04-20 14:52:42 +01001858 // Remove `other` from the loops it is included in.
1859 for (HLoopInformationOutwardIterator it(*other); !it.Done(); it.Advance()) {
1860 HLoopInformation* loop_info = it.Current();
1861 loop_info->Remove(other);
1862 if (loop_info->IsBackEdge(*other)) {
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001863 loop_info->ReplaceBackEdge(other, this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001864 }
1865 }
1866
1867 // Update links to the successors of `other`.
Vladimir Marko60584552015-09-03 13:35:12 +00001868 successors_.clear();
Vladimir Marko661b69b2016-11-09 14:11:37 +00001869 for (HBasicBlock* successor : other->GetSuccessors()) {
1870 successor->predecessors_[successor->GetPredecessorIndexOf(other)] = this;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001871 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001872 successors_.swap(other->successors_);
1873 DCHECK(other->successors_.empty());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001874
David Brazdil2d7352b2015-04-20 14:52:42 +01001875 // Update the dominator tree.
Vladimir Marko60584552015-09-03 13:35:12 +00001876 RemoveDominatedBlock(other);
1877 for (HBasicBlock* dominated : other->GetDominatedBlocks()) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001878 dominated->SetDominator(this);
1879 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001880 dominated_blocks_.insert(
1881 dominated_blocks_.end(), other->dominated_blocks_.begin(), other->dominated_blocks_.end());
Vladimir Marko60584552015-09-03 13:35:12 +00001882 other->dominated_blocks_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001883 other->dominator_ = nullptr;
1884
1885 // Clear the list of predecessors of `other` in preparation of deleting it.
Vladimir Marko60584552015-09-03 13:35:12 +00001886 other->predecessors_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001887
1888 // Delete `other` from the graph. The function updates reverse post order.
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001889 graph_->DeleteDeadEmptyBlock(other);
David Brazdil2d7352b2015-04-20 14:52:42 +01001890 other->SetGraph(nullptr);
1891}
1892
1893void HBasicBlock::MergeWithInlined(HBasicBlock* other) {
1894 DCHECK_NE(GetGraph(), other->GetGraph());
Vladimir Marko60584552015-09-03 13:35:12 +00001895 DCHECK(GetDominatedBlocks().empty());
1896 DCHECK(GetSuccessors().empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001897 DCHECK(!EndsWithControlFlowInstruction());
Vladimir Marko60584552015-09-03 13:35:12 +00001898 DCHECK(other->GetSinglePredecessor()->IsEntryBlock());
David Brazdil2d7352b2015-04-20 14:52:42 +01001899 DCHECK(other->GetPhis().IsEmpty());
1900 DCHECK(!other->IsInLoop());
1901
1902 // Move instructions from `other` to `this`.
1903 instructions_.Add(other->GetInstructions());
1904 other->instructions_.SetBlockOfInstructions(this);
1905
1906 // Update links to the successors of `other`.
Vladimir Marko60584552015-09-03 13:35:12 +00001907 successors_.clear();
Vladimir Marko661b69b2016-11-09 14:11:37 +00001908 for (HBasicBlock* successor : other->GetSuccessors()) {
1909 successor->predecessors_[successor->GetPredecessorIndexOf(other)] = this;
David Brazdil2d7352b2015-04-20 14:52:42 +01001910 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001911 successors_.swap(other->successors_);
1912 DCHECK(other->successors_.empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001913
1914 // Update the dominator tree.
Vladimir Marko60584552015-09-03 13:35:12 +00001915 for (HBasicBlock* dominated : other->GetDominatedBlocks()) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001916 dominated->SetDominator(this);
1917 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001918 dominated_blocks_.insert(
1919 dominated_blocks_.end(), other->dominated_blocks_.begin(), other->dominated_blocks_.end());
Vladimir Marko60584552015-09-03 13:35:12 +00001920 other->dominated_blocks_.clear();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001921 other->dominator_ = nullptr;
1922 other->graph_ = nullptr;
1923}
1924
1925void HBasicBlock::ReplaceWith(HBasicBlock* other) {
Vladimir Marko60584552015-09-03 13:35:12 +00001926 while (!GetPredecessors().empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001927 HBasicBlock* predecessor = GetPredecessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001928 predecessor->ReplaceSuccessor(this, other);
1929 }
Vladimir Marko60584552015-09-03 13:35:12 +00001930 while (!GetSuccessors().empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001931 HBasicBlock* successor = GetSuccessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001932 successor->ReplacePredecessor(this, other);
1933 }
Vladimir Marko60584552015-09-03 13:35:12 +00001934 for (HBasicBlock* dominated : GetDominatedBlocks()) {
1935 other->AddDominatedBlock(dominated);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001936 }
1937 GetDominator()->ReplaceDominatedBlock(this, other);
1938 other->SetDominator(GetDominator());
1939 dominator_ = nullptr;
1940 graph_ = nullptr;
1941}
1942
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001943void HGraph::DeleteDeadEmptyBlock(HBasicBlock* block) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001944 DCHECK_EQ(block->GetGraph(), this);
Vladimir Marko60584552015-09-03 13:35:12 +00001945 DCHECK(block->GetSuccessors().empty());
1946 DCHECK(block->GetPredecessors().empty());
1947 DCHECK(block->GetDominatedBlocks().empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001948 DCHECK(block->GetDominator() == nullptr);
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001949 DCHECK(block->GetInstructions().IsEmpty());
1950 DCHECK(block->GetPhis().IsEmpty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001951
David Brazdilc7af85d2015-05-26 12:05:55 +01001952 if (block->IsExitBlock()) {
Serguei Katkov7ba99662016-03-02 16:25:36 +06001953 SetExitBlock(nullptr);
David Brazdilc7af85d2015-05-26 12:05:55 +01001954 }
1955
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001956 RemoveElement(reverse_post_order_, block);
1957 blocks_[block->GetBlockId()] = nullptr;
David Brazdil86ea7ee2016-02-16 09:26:07 +00001958 block->SetGraph(nullptr);
David Brazdil2d7352b2015-04-20 14:52:42 +01001959}
1960
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00001961void HGraph::UpdateLoopAndTryInformationOfNewBlock(HBasicBlock* block,
1962 HBasicBlock* reference,
1963 bool replace_if_back_edge) {
1964 if (block->IsLoopHeader()) {
1965 // Clear the information of which blocks are contained in that loop. Since the
1966 // information is stored as a bit vector based on block ids, we have to update
1967 // it, as those block ids were specific to the callee graph and we are now adding
1968 // these blocks to the caller graph.
1969 block->GetLoopInformation()->ClearAllBlocks();
1970 }
1971
1972 // If not already in a loop, update the loop information.
1973 if (!block->IsInLoop()) {
1974 block->SetLoopInformation(reference->GetLoopInformation());
1975 }
1976
1977 // If the block is in a loop, update all its outward loops.
1978 HLoopInformation* loop_info = block->GetLoopInformation();
1979 if (loop_info != nullptr) {
1980 for (HLoopInformationOutwardIterator loop_it(*block);
1981 !loop_it.Done();
1982 loop_it.Advance()) {
1983 loop_it.Current()->Add(block);
1984 }
1985 if (replace_if_back_edge && loop_info->IsBackEdge(*reference)) {
1986 loop_info->ReplaceBackEdge(reference, block);
1987 }
1988 }
1989
1990 // Copy TryCatchInformation if `reference` is a try block, not if it is a catch block.
1991 TryCatchInformation* try_catch_info = reference->IsTryBlock()
1992 ? reference->GetTryCatchInformation()
1993 : nullptr;
1994 block->SetTryCatchInformation(try_catch_info);
1995}
1996
Calin Juravle2e768302015-07-28 14:41:11 +00001997HInstruction* HGraph::InlineInto(HGraph* outer_graph, HInvoke* invoke) {
David Brazdilc7af85d2015-05-26 12:05:55 +01001998 DCHECK(HasExitBlock()) << "Unimplemented scenario";
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01001999 // Update the environments in this graph to have the invoke's environment
2000 // as parent.
2001 {
Vladimir Marko2c45bc92016-10-25 16:54:12 +01002002 // Skip the entry block, we do not need to update the entry's suspend check.
2003 for (HBasicBlock* block : GetReversePostOrderSkipEntryBlock()) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002004 for (HInstructionIterator instr_it(block->GetInstructions());
2005 !instr_it.Done();
2006 instr_it.Advance()) {
2007 HInstruction* current = instr_it.Current();
2008 if (current->NeedsEnvironment()) {
David Brazdildee58d62016-04-07 09:54:26 +00002009 DCHECK(current->HasEnvironment());
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002010 current->GetEnvironment()->SetAndCopyParentChain(
2011 outer_graph->GetArena(), invoke->GetEnvironment());
2012 }
2013 }
2014 }
2015 }
2016 outer_graph->UpdateMaximumNumberOfOutVRegs(GetMaximumNumberOfOutVRegs());
2017 if (HasBoundsChecks()) {
2018 outer_graph->SetHasBoundsChecks(true);
2019 }
2020
Calin Juravle2e768302015-07-28 14:41:11 +00002021 HInstruction* return_value = nullptr;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002022 if (GetBlocks().size() == 3) {
Nicolas Geoffraybe31ff92015-02-04 14:52:20 +00002023 // Simple case of an entry block, a body block, and an exit block.
2024 // Put the body block's instruction into `invoke`'s block.
Vladimir Markoec7802a2015-10-01 20:57:57 +01002025 HBasicBlock* body = GetBlocks()[1];
2026 DCHECK(GetBlocks()[0]->IsEntryBlock());
2027 DCHECK(GetBlocks()[2]->IsExitBlock());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002028 DCHECK(!body->IsExitBlock());
Nicolas Geoffray788f2f02016-01-22 12:41:38 +00002029 DCHECK(!body->IsInLoop());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002030 HInstruction* last = body->GetLastInstruction();
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002031
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00002032 // Note that we add instructions before the invoke only to simplify polymorphic inlining.
2033 invoke->GetBlock()->instructions_.AddBefore(invoke, body->GetInstructions());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002034 body->GetInstructions().SetBlockOfInstructions(invoke->GetBlock());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002035
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002036 // Replace the invoke with the return value of the inlined graph.
2037 if (last->IsReturn()) {
Calin Juravle2e768302015-07-28 14:41:11 +00002038 return_value = last->InputAt(0);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002039 } else {
2040 DCHECK(last->IsReturnVoid());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002041 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002042
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002043 invoke->GetBlock()->RemoveInstruction(last);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002044 } else {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002045 // Need to inline multiple blocks. We split `invoke`'s block
2046 // into two blocks, merge the first block of the inlined graph into
Nicolas Geoffraybe31ff92015-02-04 14:52:20 +00002047 // the first half, and replace the exit block of the inlined graph
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002048 // with the second half.
2049 ArenaAllocator* allocator = outer_graph->GetArena();
2050 HBasicBlock* at = invoke->GetBlock();
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00002051 // Note that we split before the invoke only to simplify polymorphic inlining.
2052 HBasicBlock* to = at->SplitBeforeForInlining(invoke);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002053
Vladimir Markoec7802a2015-10-01 20:57:57 +01002054 HBasicBlock* first = entry_block_->GetSuccessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002055 DCHECK(!first->IsInLoop());
David Brazdil2d7352b2015-04-20 14:52:42 +01002056 at->MergeWithInlined(first);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002057 exit_block_->ReplaceWith(to);
2058
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002059 // Update the meta information surrounding blocks:
2060 // (1) the graph they are now in,
2061 // (2) the reverse post order of that graph,
Nicolas Geoffray788f2f02016-01-22 12:41:38 +00002062 // (3) their potential loop information, inner and outer,
David Brazdil95177982015-10-30 12:56:58 -05002063 // (4) try block membership.
David Brazdil59a850e2015-11-10 13:04:30 +00002064 // Note that we do not need to update catch phi inputs because they
2065 // correspond to the register file of the outer method which the inlinee
2066 // cannot modify.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002067
2068 // We don't add the entry block, the exit block, and the first block, which
2069 // has been merged with `at`.
2070 static constexpr int kNumberOfSkippedBlocksInCallee = 3;
2071
2072 // We add the `to` block.
2073 static constexpr int kNumberOfNewBlocksInCaller = 1;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002074 size_t blocks_added = (reverse_post_order_.size() - kNumberOfSkippedBlocksInCallee)
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002075 + kNumberOfNewBlocksInCaller;
2076
2077 // Find the location of `at` in the outer graph's reverse post order. The new
2078 // blocks will be added after it.
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002079 size_t index_of_at = IndexOfElement(outer_graph->reverse_post_order_, at);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002080 MakeRoomFor(&outer_graph->reverse_post_order_, blocks_added, index_of_at);
2081
David Brazdil95177982015-10-30 12:56:58 -05002082 // Do a reverse post order of the blocks in the callee and do (1), (2), (3)
2083 // and (4) to the blocks that apply.
Vladimir Marko2c45bc92016-10-25 16:54:12 +01002084 for (HBasicBlock* current : GetReversePostOrder()) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002085 if (current != exit_block_ && current != entry_block_ && current != first) {
David Brazdil95177982015-10-30 12:56:58 -05002086 DCHECK(current->GetTryCatchInformation() == nullptr);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002087 DCHECK(current->GetGraph() == this);
2088 current->SetGraph(outer_graph);
2089 outer_graph->AddBlock(current);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002090 outer_graph->reverse_post_order_[++index_of_at] = current;
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00002091 UpdateLoopAndTryInformationOfNewBlock(current, at, /* replace_if_back_edge */ false);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002092 }
2093 }
2094
David Brazdil95177982015-10-30 12:56:58 -05002095 // Do (1), (2), (3) and (4) to `to`.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002096 to->SetGraph(outer_graph);
2097 outer_graph->AddBlock(to);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002098 outer_graph->reverse_post_order_[++index_of_at] = to;
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00002099 // Only `to` can become a back edge, as the inlined blocks
2100 // are predecessors of `to`.
2101 UpdateLoopAndTryInformationOfNewBlock(to, at, /* replace_if_back_edge */ true);
Nicolas Geoffray7c5367b2014-12-17 10:13:46 +00002102
David Brazdil3f523062016-02-29 16:53:33 +00002103 // Update all predecessors of the exit block (now the `to` block)
2104 // to not `HReturn` but `HGoto` instead.
2105 bool returns_void = to->GetPredecessors()[0]->GetLastInstruction()->IsReturnVoid();
2106 if (to->GetPredecessors().size() == 1) {
2107 HBasicBlock* predecessor = to->GetPredecessors()[0];
2108 HInstruction* last = predecessor->GetLastInstruction();
2109 if (!returns_void) {
2110 return_value = last->InputAt(0);
2111 }
2112 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
2113 predecessor->RemoveInstruction(last);
2114 } else {
2115 if (!returns_void) {
2116 // There will be multiple returns.
2117 return_value = new (allocator) HPhi(
2118 allocator, kNoRegNumber, 0, HPhi::ToPhiType(invoke->GetType()), to->GetDexPc());
2119 to->AddPhi(return_value->AsPhi());
2120 }
2121 for (HBasicBlock* predecessor : to->GetPredecessors()) {
2122 HInstruction* last = predecessor->GetLastInstruction();
2123 if (!returns_void) {
2124 DCHECK(last->IsReturn());
2125 return_value->AsPhi()->AddInput(last->InputAt(0));
2126 }
2127 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
2128 predecessor->RemoveInstruction(last);
2129 }
2130 }
2131 }
David Brazdil05144f42015-04-16 15:18:00 +01002132
2133 // Walk over the entry block and:
2134 // - Move constants from the entry block to the outer_graph's entry block,
2135 // - Replace HParameterValue instructions with their real value.
2136 // - Remove suspend checks, that hold an environment.
2137 // We must do this after the other blocks have been inlined, otherwise ids of
2138 // constants could overlap with the inner graph.
Roland Levillain4c0eb422015-04-24 16:43:49 +01002139 size_t parameter_index = 0;
David Brazdil05144f42015-04-16 15:18:00 +01002140 for (HInstructionIterator it(entry_block_->GetInstructions()); !it.Done(); it.Advance()) {
2141 HInstruction* current = it.Current();
Calin Juravle214bbcd2015-10-20 14:54:07 +01002142 HInstruction* replacement = nullptr;
David Brazdil05144f42015-04-16 15:18:00 +01002143 if (current->IsNullConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002144 replacement = outer_graph->GetNullConstant(current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01002145 } else if (current->IsIntConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002146 replacement = outer_graph->GetIntConstant(
2147 current->AsIntConstant()->GetValue(), current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01002148 } else if (current->IsLongConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002149 replacement = outer_graph->GetLongConstant(
2150 current->AsLongConstant()->GetValue(), current->GetDexPc());
Nicolas Geoffrayf213e052015-04-27 08:53:46 +00002151 } else if (current->IsFloatConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002152 replacement = outer_graph->GetFloatConstant(
2153 current->AsFloatConstant()->GetValue(), current->GetDexPc());
Nicolas Geoffrayf213e052015-04-27 08:53:46 +00002154 } else if (current->IsDoubleConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002155 replacement = outer_graph->GetDoubleConstant(
2156 current->AsDoubleConstant()->GetValue(), current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01002157 } else if (current->IsParameterValue()) {
Roland Levillain4c0eb422015-04-24 16:43:49 +01002158 if (kIsDebugBuild
2159 && invoke->IsInvokeStaticOrDirect()
2160 && invoke->AsInvokeStaticOrDirect()->IsStaticWithExplicitClinitCheck()) {
2161 // Ensure we do not use the last input of `invoke`, as it
2162 // contains a clinit check which is not an actual argument.
2163 size_t last_input_index = invoke->InputCount() - 1;
2164 DCHECK(parameter_index != last_input_index);
2165 }
Calin Juravle214bbcd2015-10-20 14:54:07 +01002166 replacement = invoke->InputAt(parameter_index++);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01002167 } else if (current->IsCurrentMethod()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002168 replacement = outer_graph->GetCurrentMethod();
David Brazdil05144f42015-04-16 15:18:00 +01002169 } else {
2170 DCHECK(current->IsGoto() || current->IsSuspendCheck());
2171 entry_block_->RemoveInstruction(current);
2172 }
Calin Juravle214bbcd2015-10-20 14:54:07 +01002173 if (replacement != nullptr) {
2174 current->ReplaceWith(replacement);
2175 // If the current is the return value then we need to update the latter.
2176 if (current == return_value) {
2177 DCHECK_EQ(entry_block_, return_value->GetBlock());
2178 return_value = replacement;
2179 }
2180 }
2181 }
2182
Calin Juravle2e768302015-07-28 14:41:11 +00002183 return return_value;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002184}
2185
Mingyao Yang3584bce2015-05-19 16:01:59 -07002186/*
2187 * Loop will be transformed to:
2188 * old_pre_header
2189 * |
2190 * if_block
2191 * / \
Aart Bik3fc7f352015-11-20 22:03:03 -08002192 * true_block false_block
Mingyao Yang3584bce2015-05-19 16:01:59 -07002193 * \ /
2194 * new_pre_header
2195 * |
2196 * header
2197 */
2198void HGraph::TransformLoopHeaderForBCE(HBasicBlock* header) {
2199 DCHECK(header->IsLoopHeader());
Aart Bik3fc7f352015-11-20 22:03:03 -08002200 HBasicBlock* old_pre_header = header->GetDominator();
Mingyao Yang3584bce2015-05-19 16:01:59 -07002201
Aart Bik3fc7f352015-11-20 22:03:03 -08002202 // Need extra block to avoid critical edge.
Mingyao Yang3584bce2015-05-19 16:01:59 -07002203 HBasicBlock* if_block = new (arena_) HBasicBlock(this, header->GetDexPc());
Aart Bik3fc7f352015-11-20 22:03:03 -08002204 HBasicBlock* true_block = new (arena_) HBasicBlock(this, header->GetDexPc());
2205 HBasicBlock* false_block = new (arena_) HBasicBlock(this, header->GetDexPc());
Mingyao Yang3584bce2015-05-19 16:01:59 -07002206 HBasicBlock* new_pre_header = new (arena_) HBasicBlock(this, header->GetDexPc());
2207 AddBlock(if_block);
Aart Bik3fc7f352015-11-20 22:03:03 -08002208 AddBlock(true_block);
2209 AddBlock(false_block);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002210 AddBlock(new_pre_header);
2211
Aart Bik3fc7f352015-11-20 22:03:03 -08002212 header->ReplacePredecessor(old_pre_header, new_pre_header);
2213 old_pre_header->successors_.clear();
2214 old_pre_header->dominated_blocks_.clear();
Mingyao Yang3584bce2015-05-19 16:01:59 -07002215
Aart Bik3fc7f352015-11-20 22:03:03 -08002216 old_pre_header->AddSuccessor(if_block);
2217 if_block->AddSuccessor(true_block); // True successor
2218 if_block->AddSuccessor(false_block); // False successor
2219 true_block->AddSuccessor(new_pre_header);
2220 false_block->AddSuccessor(new_pre_header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002221
Aart Bik3fc7f352015-11-20 22:03:03 -08002222 old_pre_header->dominated_blocks_.push_back(if_block);
2223 if_block->SetDominator(old_pre_header);
2224 if_block->dominated_blocks_.push_back(true_block);
2225 true_block->SetDominator(if_block);
2226 if_block->dominated_blocks_.push_back(false_block);
2227 false_block->SetDominator(if_block);
Vladimir Marko60584552015-09-03 13:35:12 +00002228 if_block->dominated_blocks_.push_back(new_pre_header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002229 new_pre_header->SetDominator(if_block);
Vladimir Marko60584552015-09-03 13:35:12 +00002230 new_pre_header->dominated_blocks_.push_back(header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002231 header->SetDominator(new_pre_header);
2232
Aart Bik3fc7f352015-11-20 22:03:03 -08002233 // Fix reverse post order.
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002234 size_t index_of_header = IndexOfElement(reverse_post_order_, header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002235 MakeRoomFor(&reverse_post_order_, 4, index_of_header - 1);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002236 reverse_post_order_[index_of_header++] = if_block;
Aart Bik3fc7f352015-11-20 22:03:03 -08002237 reverse_post_order_[index_of_header++] = true_block;
2238 reverse_post_order_[index_of_header++] = false_block;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002239 reverse_post_order_[index_of_header++] = new_pre_header;
Mingyao Yang3584bce2015-05-19 16:01:59 -07002240
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00002241 // The pre_header can never be a back edge of a loop.
2242 DCHECK((old_pre_header->GetLoopInformation() == nullptr) ||
2243 !old_pre_header->GetLoopInformation()->IsBackEdge(*old_pre_header));
2244 UpdateLoopAndTryInformationOfNewBlock(
2245 if_block, old_pre_header, /* replace_if_back_edge */ false);
2246 UpdateLoopAndTryInformationOfNewBlock(
2247 true_block, old_pre_header, /* replace_if_back_edge */ false);
2248 UpdateLoopAndTryInformationOfNewBlock(
2249 false_block, old_pre_header, /* replace_if_back_edge */ false);
2250 UpdateLoopAndTryInformationOfNewBlock(
2251 new_pre_header, old_pre_header, /* replace_if_back_edge */ false);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002252}
2253
David Brazdilf5552582015-12-27 13:36:12 +00002254static void CheckAgainstUpperBound(ReferenceTypeInfo rti, ReferenceTypeInfo upper_bound_rti)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002255 REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdilf5552582015-12-27 13:36:12 +00002256 if (rti.IsValid()) {
2257 DCHECK(upper_bound_rti.IsSupertypeOf(rti))
2258 << " upper_bound_rti: " << upper_bound_rti
2259 << " rti: " << rti;
Nicolas Geoffray18401b72016-03-11 13:35:51 +00002260 DCHECK(!upper_bound_rti.GetTypeHandle()->CannotBeAssignedFromOtherTypes() || rti.IsExact())
2261 << " upper_bound_rti: " << upper_bound_rti
2262 << " rti: " << rti;
David Brazdilf5552582015-12-27 13:36:12 +00002263 }
2264}
2265
Calin Juravle2e768302015-07-28 14:41:11 +00002266void HInstruction::SetReferenceTypeInfo(ReferenceTypeInfo rti) {
2267 if (kIsDebugBuild) {
2268 DCHECK_EQ(GetType(), Primitive::kPrimNot);
2269 ScopedObjectAccess soa(Thread::Current());
2270 DCHECK(rti.IsValid()) << "Invalid RTI for " << DebugName();
2271 if (IsBoundType()) {
2272 // Having the test here spares us from making the method virtual just for
2273 // the sake of a DCHECK.
David Brazdilf5552582015-12-27 13:36:12 +00002274 CheckAgainstUpperBound(rti, AsBoundType()->GetUpperBound());
Calin Juravle2e768302015-07-28 14:41:11 +00002275 }
2276 }
Vladimir Markoa1de9182016-02-25 11:37:38 +00002277 reference_type_handle_ = rti.GetTypeHandle();
2278 SetPackedFlag<kFlagReferenceTypeIsExact>(rti.IsExact());
Calin Juravle2e768302015-07-28 14:41:11 +00002279}
2280
David Brazdilf5552582015-12-27 13:36:12 +00002281void HBoundType::SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null) {
2282 if (kIsDebugBuild) {
2283 ScopedObjectAccess soa(Thread::Current());
2284 DCHECK(upper_bound.IsValid());
2285 DCHECK(!upper_bound_.IsValid()) << "Upper bound should only be set once.";
2286 CheckAgainstUpperBound(GetReferenceTypeInfo(), upper_bound);
2287 }
2288 upper_bound_ = upper_bound;
Vladimir Markoa1de9182016-02-25 11:37:38 +00002289 SetPackedFlag<kFlagUpperCanBeNull>(can_be_null);
David Brazdilf5552582015-12-27 13:36:12 +00002290}
2291
Vladimir Markoa1de9182016-02-25 11:37:38 +00002292ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) {
Calin Juravle2e768302015-07-28 14:41:11 +00002293 if (kIsDebugBuild) {
2294 ScopedObjectAccess soa(Thread::Current());
2295 DCHECK(IsValidHandle(type_handle));
Nicolas Geoffray18401b72016-03-11 13:35:51 +00002296 if (!is_exact) {
2297 DCHECK(!type_handle->CannotBeAssignedFromOtherTypes())
2298 << "Callers of ReferenceTypeInfo::Create should ensure is_exact is properly computed";
2299 }
Calin Juravle2e768302015-07-28 14:41:11 +00002300 }
Vladimir Markoa1de9182016-02-25 11:37:38 +00002301 return ReferenceTypeInfo(type_handle, is_exact);
Calin Juravle2e768302015-07-28 14:41:11 +00002302}
2303
Calin Juravleacf735c2015-02-12 15:25:22 +00002304std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs) {
2305 ScopedObjectAccess soa(Thread::Current());
2306 os << "["
Calin Juravle2e768302015-07-28 14:41:11 +00002307 << " is_valid=" << rhs.IsValid()
David Sehr709b0702016-10-13 09:12:37 -07002308 << " type=" << (!rhs.IsValid() ? "?" : mirror::Class::PrettyClass(rhs.GetTypeHandle().Get()))
Calin Juravleacf735c2015-02-12 15:25:22 +00002309 << " is_exact=" << rhs.IsExact()
2310 << " ]";
2311 return os;
2312}
2313
Mark Mendellc4701932015-04-10 13:18:51 -04002314bool HInstruction::HasAnyEnvironmentUseBefore(HInstruction* other) {
2315 // For now, assume that instructions in different blocks may use the
2316 // environment.
2317 // TODO: Use the control flow to decide if this is true.
2318 if (GetBlock() != other->GetBlock()) {
2319 return true;
2320 }
2321
2322 // We know that we are in the same block. Walk from 'this' to 'other',
2323 // checking to see if there is any instruction with an environment.
2324 HInstruction* current = this;
2325 for (; current != other && current != nullptr; current = current->GetNext()) {
2326 // This is a conservative check, as the instruction result may not be in
2327 // the referenced environment.
2328 if (current->HasEnvironment()) {
2329 return true;
2330 }
2331 }
2332
2333 // We should have been called with 'this' before 'other' in the block.
2334 // Just confirm this.
2335 DCHECK(current != nullptr);
2336 return false;
2337}
2338
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002339void HInvoke::SetIntrinsic(Intrinsics intrinsic,
Aart Bik5d75afe2015-12-14 11:57:01 -08002340 IntrinsicNeedsEnvironmentOrCache needs_env_or_cache,
2341 IntrinsicSideEffects side_effects,
2342 IntrinsicExceptions exceptions) {
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002343 intrinsic_ = intrinsic;
2344 IntrinsicOptimizations opt(this);
Nicolas Geoffraya3eca2d2016-01-12 16:03:16 +00002345
Aart Bik5d75afe2015-12-14 11:57:01 -08002346 // Adjust method's side effects from intrinsic table.
2347 switch (side_effects) {
2348 case kNoSideEffects: SetSideEffects(SideEffects::None()); break;
2349 case kReadSideEffects: SetSideEffects(SideEffects::AllReads()); break;
2350 case kWriteSideEffects: SetSideEffects(SideEffects::AllWrites()); break;
2351 case kAllSideEffects: SetSideEffects(SideEffects::AllExceptGCDependency()); break;
2352 }
Nicolas Geoffraya3eca2d2016-01-12 16:03:16 +00002353
2354 if (needs_env_or_cache == kNoEnvironmentOrCache) {
2355 opt.SetDoesNotNeedDexCache();
2356 opt.SetDoesNotNeedEnvironment();
2357 } else {
2358 // If we need an environment, that means there will be a call, which can trigger GC.
2359 SetSideEffects(GetSideEffects().Union(SideEffects::CanTriggerGC()));
2360 }
Aart Bik5d75afe2015-12-14 11:57:01 -08002361 // Adjust method's exception status from intrinsic table.
Aart Bik09e8d5f2016-01-22 16:49:55 -08002362 SetCanThrow(exceptions == kCanThrow);
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002363}
2364
David Brazdil6de19382016-01-08 17:37:10 +00002365bool HNewInstance::IsStringAlloc() const {
2366 ScopedObjectAccess soa(Thread::Current());
2367 return GetReferenceTypeInfo().IsStringClass();
2368}
2369
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002370bool HInvoke::NeedsEnvironment() const {
2371 if (!IsIntrinsic()) {
2372 return true;
2373 }
2374 IntrinsicOptimizations opt(*this);
2375 return !opt.GetDoesNotNeedEnvironment();
2376}
2377
Vladimir Markodc151b22015-10-15 18:02:30 +01002378bool HInvokeStaticOrDirect::NeedsDexCacheOfDeclaringClass() const {
2379 if (GetMethodLoadKind() != MethodLoadKind::kDexCacheViaMethod) {
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002380 return false;
2381 }
2382 if (!IsIntrinsic()) {
2383 return true;
2384 }
2385 IntrinsicOptimizations opt(*this);
2386 return !opt.GetDoesNotNeedDexCache();
2387}
2388
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002389void HInvokeStaticOrDirect::InsertInputAt(size_t index, HInstruction* input) {
2390 inputs_.insert(inputs_.begin() + index, HUserRecord<HInstruction*>(input));
2391 input->AddUseAt(this, index);
2392 // Update indexes in use nodes of inputs that have been pushed further back by the insert().
Vladimir Marko372f10e2016-05-17 16:30:10 +01002393 for (size_t i = index + 1u, e = inputs_.size(); i < e; ++i) {
2394 DCHECK_EQ(inputs_[i].GetUseNode()->GetIndex(), i - 1u);
2395 inputs_[i].GetUseNode()->SetIndex(i);
Vladimir Marko0f7dca42015-11-02 14:36:43 +00002396 }
2397}
2398
Vladimir Markob554b5a2015-11-06 12:57:55 +00002399void HInvokeStaticOrDirect::RemoveInputAt(size_t index) {
2400 RemoveAsUserOfInput(index);
2401 inputs_.erase(inputs_.begin() + index);
2402 // Update indexes in use nodes of inputs that have been pulled forward by the erase().
Vladimir Marko372f10e2016-05-17 16:30:10 +01002403 for (size_t i = index, e = inputs_.size(); i < e; ++i) {
2404 DCHECK_EQ(inputs_[i].GetUseNode()->GetIndex(), i + 1u);
2405 inputs_[i].GetUseNode()->SetIndex(i);
Vladimir Markob554b5a2015-11-06 12:57:55 +00002406 }
2407}
2408
Vladimir Markof64242a2015-12-01 14:58:23 +00002409std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::MethodLoadKind rhs) {
2410 switch (rhs) {
2411 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
2412 return os << "string_init";
2413 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
2414 return os << "recursive";
2415 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
2416 return os << "direct";
2417 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
2418 return os << "direct_fixup";
2419 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative:
2420 return os << "dex_cache_pc_relative";
2421 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod:
2422 return os << "dex_cache_via_method";
2423 default:
2424 LOG(FATAL) << "Unknown MethodLoadKind: " << static_cast<int>(rhs);
2425 UNREACHABLE();
2426 }
2427}
2428
Vladimir Markofbb184a2015-11-13 14:47:00 +00002429std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::ClinitCheckRequirement rhs) {
2430 switch (rhs) {
2431 case HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit:
2432 return os << "explicit";
2433 case HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit:
2434 return os << "implicit";
2435 case HInvokeStaticOrDirect::ClinitCheckRequirement::kNone:
2436 return os << "none";
2437 default:
Vladimir Markof64242a2015-12-01 14:58:23 +00002438 LOG(FATAL) << "Unknown ClinitCheckRequirement: " << static_cast<int>(rhs);
2439 UNREACHABLE();
Vladimir Markofbb184a2015-11-13 14:47:00 +00002440 }
2441}
2442
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002443bool HLoadClass::InstructionDataEquals(const HInstruction* other) const {
2444 const HLoadClass* other_load_class = other->AsLoadClass();
2445 // TODO: To allow GVN for HLoadClass from different dex files, we should compare the type
2446 // names rather than type indexes. However, we shall also have to re-think the hash code.
2447 if (type_index_ != other_load_class->type_index_ ||
2448 GetPackedFields() != other_load_class->GetPackedFields()) {
2449 return false;
2450 }
2451 LoadKind load_kind = GetLoadKind();
2452 if (HasAddress(load_kind)) {
2453 return GetAddress() == other_load_class->GetAddress();
2454 } else if (HasTypeReference(load_kind)) {
2455 return IsSameDexFile(GetDexFile(), other_load_class->GetDexFile());
2456 } else {
2457 DCHECK(HasDexCacheReference(load_kind)) << load_kind;
2458 // If the type indexes and dex files are the same, dex cache element offsets
2459 // must also be the same, so we don't need to compare them.
2460 return IsSameDexFile(GetDexFile(), other_load_class->GetDexFile());
2461 }
2462}
2463
2464void HLoadClass::SetLoadKindInternal(LoadKind load_kind) {
2465 // Once sharpened, the load kind should not be changed again.
2466 // Also, kReferrersClass should never be overwritten.
2467 DCHECK_EQ(GetLoadKind(), LoadKind::kDexCacheViaMethod);
2468 SetPackedField<LoadKindField>(load_kind);
2469
2470 if (load_kind != LoadKind::kDexCacheViaMethod) {
2471 RemoveAsUserOfInput(0u);
2472 SetRawInputAt(0u, nullptr);
2473 }
2474 if (!NeedsEnvironment()) {
2475 RemoveEnvironment();
2476 SetSideEffects(SideEffects::None());
2477 }
2478}
2479
2480std::ostream& operator<<(std::ostream& os, HLoadClass::LoadKind rhs) {
2481 switch (rhs) {
2482 case HLoadClass::LoadKind::kReferrersClass:
2483 return os << "ReferrersClass";
2484 case HLoadClass::LoadKind::kBootImageLinkTimeAddress:
2485 return os << "BootImageLinkTimeAddress";
2486 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
2487 return os << "BootImageLinkTimePcRelative";
2488 case HLoadClass::LoadKind::kBootImageAddress:
2489 return os << "BootImageAddress";
2490 case HLoadClass::LoadKind::kDexCacheAddress:
2491 return os << "DexCacheAddress";
2492 case HLoadClass::LoadKind::kDexCachePcRelative:
2493 return os << "DexCachePcRelative";
2494 case HLoadClass::LoadKind::kDexCacheViaMethod:
2495 return os << "DexCacheViaMethod";
2496 default:
2497 LOG(FATAL) << "Unknown HLoadClass::LoadKind: " << static_cast<int>(rhs);
2498 UNREACHABLE();
2499 }
2500}
2501
Vladimir Marko372f10e2016-05-17 16:30:10 +01002502bool HLoadString::InstructionDataEquals(const HInstruction* other) const {
2503 const HLoadString* other_load_string = other->AsLoadString();
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002504 // TODO: To allow GVN for HLoadString from different dex files, we should compare the strings
2505 // rather than their indexes. However, we shall also have to re-think the hash code.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002506 if (string_index_ != other_load_string->string_index_ ||
2507 GetPackedFields() != other_load_string->GetPackedFields()) {
2508 return false;
2509 }
2510 LoadKind load_kind = GetLoadKind();
2511 if (HasAddress(load_kind)) {
2512 return GetAddress() == other_load_string->GetAddress();
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002513 } else {
Vladimir Markoaad75c62016-10-03 08:46:48 +00002514 DCHECK(HasStringReference(load_kind)) << load_kind;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002515 return IsSameDexFile(GetDexFile(), other_load_string->GetDexFile());
2516 }
2517}
2518
2519void HLoadString::SetLoadKindInternal(LoadKind load_kind) {
2520 // Once sharpened, the load kind should not be changed again.
2521 DCHECK_EQ(GetLoadKind(), LoadKind::kDexCacheViaMethod);
2522 SetPackedField<LoadKindField>(load_kind);
2523
2524 if (load_kind != LoadKind::kDexCacheViaMethod) {
2525 RemoveAsUserOfInput(0u);
2526 SetRawInputAt(0u, nullptr);
2527 }
2528 if (!NeedsEnvironment()) {
2529 RemoveEnvironment();
Vladimir Markoace7a002016-04-05 11:18:49 +01002530 SetSideEffects(SideEffects::None());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002531 }
2532}
2533
2534std::ostream& operator<<(std::ostream& os, HLoadString::LoadKind rhs) {
2535 switch (rhs) {
2536 case HLoadString::LoadKind::kBootImageLinkTimeAddress:
2537 return os << "BootImageLinkTimeAddress";
2538 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
2539 return os << "BootImageLinkTimePcRelative";
2540 case HLoadString::LoadKind::kBootImageAddress:
2541 return os << "BootImageAddress";
Vladimir Markoaad75c62016-10-03 08:46:48 +00002542 case HLoadString::LoadKind::kBssEntry:
2543 return os << "BssEntry";
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002544 case HLoadString::LoadKind::kDexCacheViaMethod:
2545 return os << "DexCacheViaMethod";
2546 default:
2547 LOG(FATAL) << "Unknown HLoadString::LoadKind: " << static_cast<int>(rhs);
2548 UNREACHABLE();
2549 }
2550}
2551
Mark Mendellc4701932015-04-10 13:18:51 -04002552void HInstruction::RemoveEnvironmentUsers() {
Vladimir Marko46817b82016-03-29 12:21:58 +01002553 for (const HUseListNode<HEnvironment*>& use : GetEnvUses()) {
2554 HEnvironment* user = use.GetUser();
2555 user->SetRawEnvAt(use.GetIndex(), nullptr);
Mark Mendellc4701932015-04-10 13:18:51 -04002556 }
Vladimir Marko46817b82016-03-29 12:21:58 +01002557 env_uses_.clear();
Mark Mendellc4701932015-04-10 13:18:51 -04002558}
2559
Roland Levillainc9b21f82016-03-23 16:36:59 +00002560// Returns an instruction with the opposite Boolean value from 'cond'.
Mark Mendellf6529172015-11-17 11:16:56 -05002561HInstruction* HGraph::InsertOppositeCondition(HInstruction* cond, HInstruction* cursor) {
2562 ArenaAllocator* allocator = GetArena();
2563
2564 if (cond->IsCondition() &&
2565 !Primitive::IsFloatingPointType(cond->InputAt(0)->GetType())) {
2566 // Can't reverse floating point conditions. We have to use HBooleanNot in that case.
2567 HInstruction* lhs = cond->InputAt(0);
2568 HInstruction* rhs = cond->InputAt(1);
David Brazdil5c004852015-11-23 09:44:52 +00002569 HInstruction* replacement = nullptr;
Mark Mendellf6529172015-11-17 11:16:56 -05002570 switch (cond->AsCondition()->GetOppositeCondition()) { // get *opposite*
2571 case kCondEQ: replacement = new (allocator) HEqual(lhs, rhs); break;
2572 case kCondNE: replacement = new (allocator) HNotEqual(lhs, rhs); break;
2573 case kCondLT: replacement = new (allocator) HLessThan(lhs, rhs); break;
2574 case kCondLE: replacement = new (allocator) HLessThanOrEqual(lhs, rhs); break;
2575 case kCondGT: replacement = new (allocator) HGreaterThan(lhs, rhs); break;
2576 case kCondGE: replacement = new (allocator) HGreaterThanOrEqual(lhs, rhs); break;
2577 case kCondB: replacement = new (allocator) HBelow(lhs, rhs); break;
2578 case kCondBE: replacement = new (allocator) HBelowOrEqual(lhs, rhs); break;
2579 case kCondA: replacement = new (allocator) HAbove(lhs, rhs); break;
2580 case kCondAE: replacement = new (allocator) HAboveOrEqual(lhs, rhs); break;
David Brazdil5c004852015-11-23 09:44:52 +00002581 default:
2582 LOG(FATAL) << "Unexpected condition";
2583 UNREACHABLE();
Mark Mendellf6529172015-11-17 11:16:56 -05002584 }
2585 cursor->GetBlock()->InsertInstructionBefore(replacement, cursor);
2586 return replacement;
2587 } else if (cond->IsIntConstant()) {
2588 HIntConstant* int_const = cond->AsIntConstant();
Roland Levillain1a653882016-03-18 18:05:57 +00002589 if (int_const->IsFalse()) {
Mark Mendellf6529172015-11-17 11:16:56 -05002590 return GetIntConstant(1);
2591 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00002592 DCHECK(int_const->IsTrue()) << int_const->GetValue();
Mark Mendellf6529172015-11-17 11:16:56 -05002593 return GetIntConstant(0);
2594 }
2595 } else {
2596 HInstruction* replacement = new (allocator) HBooleanNot(cond);
2597 cursor->GetBlock()->InsertInstructionBefore(replacement, cursor);
2598 return replacement;
2599 }
2600}
2601
Roland Levillainc9285912015-12-18 10:38:42 +00002602std::ostream& operator<<(std::ostream& os, const MoveOperands& rhs) {
2603 os << "["
2604 << " source=" << rhs.GetSource()
2605 << " destination=" << rhs.GetDestination()
2606 << " type=" << rhs.GetType()
2607 << " instruction=";
2608 if (rhs.GetInstruction() != nullptr) {
2609 os << rhs.GetInstruction()->DebugName() << ' ' << rhs.GetInstruction()->GetId();
2610 } else {
2611 os << "null";
2612 }
2613 os << " ]";
2614 return os;
2615}
2616
Roland Levillain86503782016-02-11 19:07:30 +00002617std::ostream& operator<<(std::ostream& os, TypeCheckKind rhs) {
2618 switch (rhs) {
2619 case TypeCheckKind::kUnresolvedCheck:
2620 return os << "unresolved_check";
2621 case TypeCheckKind::kExactCheck:
2622 return os << "exact_check";
2623 case TypeCheckKind::kClassHierarchyCheck:
2624 return os << "class_hierarchy_check";
2625 case TypeCheckKind::kAbstractClassCheck:
2626 return os << "abstract_class_check";
2627 case TypeCheckKind::kInterfaceCheck:
2628 return os << "interface_check";
2629 case TypeCheckKind::kArrayObjectCheck:
2630 return os << "array_object_check";
2631 case TypeCheckKind::kArrayCheck:
2632 return os << "array_check";
2633 default:
2634 LOG(FATAL) << "Unknown TypeCheckKind: " << static_cast<int>(rhs);
2635 UNREACHABLE();
2636 }
2637}
2638
Andreas Gampe26de38b2016-07-27 17:53:11 -07002639std::ostream& operator<<(std::ostream& os, const MemBarrierKind& kind) {
2640 switch (kind) {
2641 case MemBarrierKind::kAnyStore:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002642 return os << "AnyStore";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002643 case MemBarrierKind::kLoadAny:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002644 return os << "LoadAny";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002645 case MemBarrierKind::kStoreStore:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002646 return os << "StoreStore";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002647 case MemBarrierKind::kAnyAny:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002648 return os << "AnyAny";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002649 case MemBarrierKind::kNTStoreStore:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002650 return os << "NTStoreStore";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002651
2652 default:
2653 LOG(FATAL) << "Unknown MemBarrierKind: " << static_cast<int>(kind);
2654 UNREACHABLE();
2655 }
2656}
2657
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002658} // namespace art