blob: 62c89100eb28667eeba898072efb488efc61505c [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 }
Mingyao Yang69d75ff2017-02-07 13:06:06 -0800691 graph->SetHasLoops(true);
David Brazdila4b8c212015-05-07 09:59:30 +0100692}
693
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100694HBasicBlock* HLoopInformation::GetPreHeader() const {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +0000695 HBasicBlock* block = header_->GetPredecessors()[0];
696 DCHECK(irreducible_ || (block == header_->GetDominator()));
697 return block;
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100698}
699
700bool HLoopInformation::Contains(const HBasicBlock& block) const {
701 return blocks_.IsBitSet(block.GetBlockId());
702}
703
704bool HLoopInformation::IsIn(const HLoopInformation& other) const {
705 return other.blocks_.IsBitSet(header_->GetBlockId());
706}
707
Mingyao Yang4b467ed2015-11-19 17:04:22 -0800708bool HLoopInformation::IsDefinedOutOfTheLoop(HInstruction* instruction) const {
709 return !blocks_.IsBitSet(instruction->GetBlock()->GetBlockId());
Aart Bik73f1f3b2015-10-28 15:28:08 -0700710}
711
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100712size_t HLoopInformation::GetLifetimeEnd() const {
713 size_t last_position = 0;
Vladimir Markofa6b93c2015-09-15 10:15:55 +0100714 for (HBasicBlock* back_edge : GetBackEdges()) {
715 last_position = std::max(back_edge->GetLifetimeEnd(), last_position);
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100716 }
717 return last_position;
718}
719
David Brazdil3f4a5222016-05-06 12:46:21 +0100720bool HLoopInformation::HasBackEdgeNotDominatedByHeader() const {
721 for (HBasicBlock* back_edge : GetBackEdges()) {
722 DCHECK(back_edge->GetDominator() != nullptr);
723 if (!header_->Dominates(back_edge)) {
724 return true;
725 }
726 }
727 return false;
728}
729
Anton Shaminf89381f2016-05-16 16:44:13 +0600730bool HLoopInformation::DominatesAllBackEdges(HBasicBlock* block) {
731 for (HBasicBlock* back_edge : GetBackEdges()) {
732 if (!block->Dominates(back_edge)) {
733 return false;
734 }
735 }
736 return true;
737}
738
David Sehrc757dec2016-11-04 15:48:34 -0700739
740bool HLoopInformation::HasExitEdge() const {
741 // Determine if this loop has at least one exit edge.
742 HBlocksInLoopReversePostOrderIterator it_loop(*this);
743 for (; !it_loop.Done(); it_loop.Advance()) {
744 for (HBasicBlock* successor : it_loop.Current()->GetSuccessors()) {
745 if (!Contains(*successor)) {
746 return true;
747 }
748 }
749 }
750 return false;
751}
752
Nicolas Geoffray622d9c32014-05-12 16:11:02 +0100753bool HBasicBlock::Dominates(HBasicBlock* other) const {
754 // Walk up the dominator tree from `other`, to find out if `this`
755 // is an ancestor.
756 HBasicBlock* current = other;
757 while (current != nullptr) {
758 if (current == this) {
759 return true;
760 }
761 current = current->GetDominator();
762 }
763 return false;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100764}
765
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100766static void UpdateInputsUsers(HInstruction* instruction) {
Vladimir Markoe9004912016-06-16 16:50:52 +0100767 HInputsRef inputs = instruction->GetInputs();
Vladimir Marko372f10e2016-05-17 16:30:10 +0100768 for (size_t i = 0; i < inputs.size(); ++i) {
769 inputs[i]->AddUseAt(instruction, i);
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100770 }
771 // Environment should be created later.
772 DCHECK(!instruction->HasEnvironment());
773}
774
Roland Levillainccc07a92014-09-16 14:48:16 +0100775void HBasicBlock::ReplaceAndRemoveInstructionWith(HInstruction* initial,
776 HInstruction* replacement) {
777 DCHECK(initial->GetBlock() == this);
Mark Mendell805b3b52015-09-18 14:10:29 -0400778 if (initial->IsControlFlow()) {
779 // We can only replace a control flow instruction with another control flow instruction.
780 DCHECK(replacement->IsControlFlow());
781 DCHECK_EQ(replacement->GetId(), -1);
782 DCHECK_EQ(replacement->GetType(), Primitive::kPrimVoid);
783 DCHECK_EQ(initial->GetBlock(), this);
784 DCHECK_EQ(initial->GetType(), Primitive::kPrimVoid);
Vladimir Marko46817b82016-03-29 12:21:58 +0100785 DCHECK(initial->GetUses().empty());
786 DCHECK(initial->GetEnvUses().empty());
Mark Mendell805b3b52015-09-18 14:10:29 -0400787 replacement->SetBlock(this);
788 replacement->SetId(GetGraph()->GetNextInstructionId());
789 instructions_.InsertInstructionBefore(replacement, initial);
790 UpdateInputsUsers(replacement);
791 } else {
792 InsertInstructionBefore(replacement, initial);
793 initial->ReplaceWith(replacement);
794 }
Roland Levillainccc07a92014-09-16 14:48:16 +0100795 RemoveInstruction(initial);
796}
797
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100798static void Add(HInstructionList* instruction_list,
799 HBasicBlock* block,
800 HInstruction* instruction) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000801 DCHECK(instruction->GetBlock() == nullptr);
Nicolas Geoffray43c86422014-03-18 11:58:24 +0000802 DCHECK_EQ(instruction->GetId(), -1);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100803 instruction->SetBlock(block);
804 instruction->SetId(block->GetGraph()->GetNextInstructionId());
Nicolas Geoffray191c4b12014-10-07 14:14:27 +0100805 UpdateInputsUsers(instruction);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100806 instruction_list->AddInstruction(instruction);
807}
808
809void HBasicBlock::AddInstruction(HInstruction* instruction) {
810 Add(&instructions_, this, instruction);
811}
812
813void HBasicBlock::AddPhi(HPhi* phi) {
814 Add(&phis_, this, phi);
815}
816
David Brazdilc3d743f2015-04-22 13:40:50 +0100817void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) {
818 DCHECK(!cursor->IsPhi());
819 DCHECK(!instruction->IsPhi());
820 DCHECK_EQ(instruction->GetId(), -1);
821 DCHECK_NE(cursor->GetId(), -1);
822 DCHECK_EQ(cursor->GetBlock(), this);
823 DCHECK(!instruction->IsControlFlow());
824 instruction->SetBlock(this);
825 instruction->SetId(GetGraph()->GetNextInstructionId());
826 UpdateInputsUsers(instruction);
827 instructions_.InsertInstructionBefore(instruction, cursor);
828}
829
Guillaume "Vermeille" Sanchez2967ec62015-04-24 16:36:52 +0100830void HBasicBlock::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) {
831 DCHECK(!cursor->IsPhi());
832 DCHECK(!instruction->IsPhi());
833 DCHECK_EQ(instruction->GetId(), -1);
834 DCHECK_NE(cursor->GetId(), -1);
835 DCHECK_EQ(cursor->GetBlock(), this);
836 DCHECK(!instruction->IsControlFlow());
837 DCHECK(!cursor->IsControlFlow());
838 instruction->SetBlock(this);
839 instruction->SetId(GetGraph()->GetNextInstructionId());
840 UpdateInputsUsers(instruction);
841 instructions_.InsertInstructionAfter(instruction, cursor);
842}
843
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100844void HBasicBlock::InsertPhiAfter(HPhi* phi, HPhi* cursor) {
845 DCHECK_EQ(phi->GetId(), -1);
846 DCHECK_NE(cursor->GetId(), -1);
847 DCHECK_EQ(cursor->GetBlock(), this);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100848 phi->SetBlock(this);
849 phi->SetId(GetGraph()->GetNextInstructionId());
850 UpdateInputsUsers(phi);
David Brazdilc3d743f2015-04-22 13:40:50 +0100851 phis_.InsertInstructionAfter(phi, cursor);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100852}
853
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100854static void Remove(HInstructionList* instruction_list,
855 HBasicBlock* block,
David Brazdil1abb4192015-02-17 18:33:36 +0000856 HInstruction* instruction,
857 bool ensure_safety) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100858 DCHECK_EQ(block, instruction->GetBlock());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100859 instruction->SetBlock(nullptr);
860 instruction_list->RemoveInstruction(instruction);
David Brazdil1abb4192015-02-17 18:33:36 +0000861 if (ensure_safety) {
Vladimir Marko46817b82016-03-29 12:21:58 +0100862 DCHECK(instruction->GetUses().empty());
863 DCHECK(instruction->GetEnvUses().empty());
David Brazdil1abb4192015-02-17 18:33:36 +0000864 RemoveAsUser(instruction);
865 }
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100866}
867
David Brazdil1abb4192015-02-17 18:33:36 +0000868void HBasicBlock::RemoveInstruction(HInstruction* instruction, bool ensure_safety) {
David Brazdilc7508e92015-04-27 13:28:57 +0100869 DCHECK(!instruction->IsPhi());
David Brazdil1abb4192015-02-17 18:33:36 +0000870 Remove(&instructions_, this, instruction, ensure_safety);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100871}
872
David Brazdil1abb4192015-02-17 18:33:36 +0000873void HBasicBlock::RemovePhi(HPhi* phi, bool ensure_safety) {
874 Remove(&phis_, this, phi, ensure_safety);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100875}
876
David Brazdilc7508e92015-04-27 13:28:57 +0100877void HBasicBlock::RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety) {
878 if (instruction->IsPhi()) {
879 RemovePhi(instruction->AsPhi(), ensure_safety);
880 } else {
881 RemoveInstruction(instruction, ensure_safety);
882 }
883}
884
Vladimir Marko71bf8092015-09-15 15:33:14 +0100885void HEnvironment::CopyFrom(const ArenaVector<HInstruction*>& locals) {
886 for (size_t i = 0; i < locals.size(); i++) {
887 HInstruction* instruction = locals[i];
Nicolas Geoffray8c0c91a2015-05-07 11:46:05 +0100888 SetRawEnvAt(i, instruction);
889 if (instruction != nullptr) {
890 instruction->AddEnvUseAt(this, i);
891 }
892 }
893}
894
David Brazdiled596192015-01-23 10:39:45 +0000895void HEnvironment::CopyFrom(HEnvironment* env) {
896 for (size_t i = 0; i < env->Size(); i++) {
897 HInstruction* instruction = env->GetInstructionAt(i);
898 SetRawEnvAt(i, instruction);
899 if (instruction != nullptr) {
900 instruction->AddEnvUseAt(this, i);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100901 }
David Brazdiled596192015-01-23 10:39:45 +0000902 }
903}
904
Mingyao Yang206d6fd2015-04-13 16:46:28 -0700905void HEnvironment::CopyFromWithLoopPhiAdjustment(HEnvironment* env,
906 HBasicBlock* loop_header) {
907 DCHECK(loop_header->IsLoopHeader());
908 for (size_t i = 0; i < env->Size(); i++) {
909 HInstruction* instruction = env->GetInstructionAt(i);
910 SetRawEnvAt(i, instruction);
911 if (instruction == nullptr) {
912 continue;
913 }
914 if (instruction->IsLoopHeaderPhi() && (instruction->GetBlock() == loop_header)) {
915 // At the end of the loop pre-header, the corresponding value for instruction
916 // is the first input of the phi.
917 HInstruction* initial = instruction->AsPhi()->InputAt(0);
Mingyao Yang206d6fd2015-04-13 16:46:28 -0700918 SetRawEnvAt(i, initial);
919 initial->AddEnvUseAt(this, i);
920 } else {
921 instruction->AddEnvUseAt(this, i);
922 }
923 }
924}
925
David Brazdil1abb4192015-02-17 18:33:36 +0000926void HEnvironment::RemoveAsUserOfInput(size_t index) const {
Vladimir Marko46817b82016-03-29 12:21:58 +0100927 const HUserRecord<HEnvironment*>& env_use = vregs_[index];
928 HInstruction* user = env_use.GetInstruction();
929 auto before_env_use_node = env_use.GetBeforeUseNode();
930 user->env_uses_.erase_after(before_env_use_node);
931 user->FixUpUserRecordsAfterEnvUseRemoval(before_env_use_node);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100932}
933
Vladimir Marko5f7b58e2015-11-23 19:49:34 +0000934HInstruction::InstructionKind HInstruction::GetKind() const {
935 return GetKindInternal();
936}
937
Calin Juravle77520bc2015-01-12 18:45:46 +0000938HInstruction* HInstruction::GetNextDisregardingMoves() const {
939 HInstruction* next = GetNext();
940 while (next != nullptr && next->IsParallelMove()) {
941 next = next->GetNext();
942 }
943 return next;
944}
945
946HInstruction* HInstruction::GetPreviousDisregardingMoves() const {
947 HInstruction* previous = GetPrevious();
948 while (previous != nullptr && previous->IsParallelMove()) {
949 previous = previous->GetPrevious();
950 }
951 return previous;
952}
953
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100954void HInstructionList::AddInstruction(HInstruction* instruction) {
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000955 if (first_instruction_ == nullptr) {
956 DCHECK(last_instruction_ == nullptr);
957 first_instruction_ = last_instruction_ = instruction;
958 } else {
959 last_instruction_->next_ = instruction;
960 instruction->previous_ = last_instruction_;
961 last_instruction_ = instruction;
962 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000963}
964
David Brazdilc3d743f2015-04-22 13:40:50 +0100965void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) {
966 DCHECK(Contains(cursor));
967 if (cursor == first_instruction_) {
968 cursor->previous_ = instruction;
969 instruction->next_ = cursor;
970 first_instruction_ = instruction;
971 } else {
972 instruction->previous_ = cursor->previous_;
973 instruction->next_ = cursor;
974 cursor->previous_ = instruction;
975 instruction->previous_->next_ = instruction;
976 }
977}
978
979void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) {
980 DCHECK(Contains(cursor));
981 if (cursor == last_instruction_) {
982 cursor->next_ = instruction;
983 instruction->previous_ = cursor;
984 last_instruction_ = instruction;
985 } else {
986 instruction->next_ = cursor->next_;
987 instruction->previous_ = cursor;
988 cursor->next_ = instruction;
989 instruction->next_->previous_ = instruction;
990 }
991}
992
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100993void HInstructionList::RemoveInstruction(HInstruction* instruction) {
994 if (instruction->previous_ != nullptr) {
995 instruction->previous_->next_ = instruction->next_;
996 }
997 if (instruction->next_ != nullptr) {
998 instruction->next_->previous_ = instruction->previous_;
999 }
1000 if (instruction == first_instruction_) {
1001 first_instruction_ = instruction->next_;
1002 }
1003 if (instruction == last_instruction_) {
1004 last_instruction_ = instruction->previous_;
1005 }
1006}
1007
Roland Levillain6b469232014-09-25 10:10:38 +01001008bool HInstructionList::Contains(HInstruction* instruction) const {
1009 for (HInstructionIterator it(*this); !it.Done(); it.Advance()) {
1010 if (it.Current() == instruction) {
1011 return true;
1012 }
1013 }
1014 return false;
1015}
1016
Roland Levillainccc07a92014-09-16 14:48:16 +01001017bool HInstructionList::FoundBefore(const HInstruction* instruction1,
1018 const HInstruction* instruction2) const {
1019 DCHECK_EQ(instruction1->GetBlock(), instruction2->GetBlock());
1020 for (HInstructionIterator it(*this); !it.Done(); it.Advance()) {
1021 if (it.Current() == instruction1) {
1022 return true;
1023 }
1024 if (it.Current() == instruction2) {
1025 return false;
1026 }
1027 }
1028 LOG(FATAL) << "Did not find an order between two instructions of the same block.";
1029 return true;
1030}
1031
Roland Levillain6c82d402014-10-13 16:10:27 +01001032bool HInstruction::StrictlyDominates(HInstruction* other_instruction) const {
1033 if (other_instruction == this) {
1034 // An instruction does not strictly dominate itself.
1035 return false;
1036 }
Roland Levillainccc07a92014-09-16 14:48:16 +01001037 HBasicBlock* block = GetBlock();
1038 HBasicBlock* other_block = other_instruction->GetBlock();
1039 if (block != other_block) {
1040 return GetBlock()->Dominates(other_instruction->GetBlock());
1041 } else {
1042 // If both instructions are in the same block, ensure this
1043 // instruction comes before `other_instruction`.
1044 if (IsPhi()) {
1045 if (!other_instruction->IsPhi()) {
1046 // Phis appear before non phi-instructions so this instruction
1047 // dominates `other_instruction`.
1048 return true;
1049 } else {
1050 // There is no order among phis.
1051 LOG(FATAL) << "There is no dominance between phis of a same block.";
1052 return false;
1053 }
1054 } else {
1055 // `this` is not a phi.
1056 if (other_instruction->IsPhi()) {
1057 // Phis appear before non phi-instructions so this instruction
1058 // does not dominate `other_instruction`.
1059 return false;
1060 } else {
1061 // Check whether this instruction comes before
1062 // `other_instruction` in the instruction list.
1063 return block->GetInstructions().FoundBefore(this, other_instruction);
1064 }
1065 }
1066 }
1067}
1068
Vladimir Markocac5a7e2016-02-22 10:39:50 +00001069void HInstruction::RemoveEnvironment() {
1070 RemoveEnvironmentUses(this);
1071 environment_ = nullptr;
1072}
1073
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001074void HInstruction::ReplaceWith(HInstruction* other) {
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01001075 DCHECK(other != nullptr);
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001076 // Note: fixup_end remains valid across splice_after().
1077 auto fixup_end = other->uses_.empty() ? other->uses_.begin() : ++other->uses_.begin();
1078 other->uses_.splice_after(other->uses_.before_begin(), uses_);
1079 other->FixUpUserRecordsAfterUseInsertion(fixup_end);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001080
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001081 // Note: env_fixup_end remains valid across splice_after().
1082 auto env_fixup_end =
1083 other->env_uses_.empty() ? other->env_uses_.begin() : ++other->env_uses_.begin();
1084 other->env_uses_.splice_after(other->env_uses_.before_begin(), env_uses_);
1085 other->FixUpUserRecordsAfterEnvUseInsertion(env_fixup_end);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001086
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001087 DCHECK(uses_.empty());
1088 DCHECK(env_uses_.empty());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001089}
1090
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001091void HInstruction::ReplaceInput(HInstruction* replacement, size_t index) {
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001092 HUserRecord<HInstruction*> input_use = InputRecordAt(index);
Vladimir Markoc6b56272016-04-20 18:45:25 +01001093 if (input_use.GetInstruction() == replacement) {
1094 // Nothing to do.
1095 return;
1096 }
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001097 HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode();
Vladimir Marko3c19d3e2016-04-19 14:36:35 +01001098 // Note: fixup_end remains valid across splice_after().
1099 auto fixup_end =
1100 replacement->uses_.empty() ? replacement->uses_.begin() : ++replacement->uses_.begin();
1101 replacement->uses_.splice_after(replacement->uses_.before_begin(),
1102 input_use.GetInstruction()->uses_,
1103 before_use_node);
1104 replacement->FixUpUserRecordsAfterUseInsertion(fixup_end);
1105 input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001106}
1107
Nicolas Geoffray39468442014-09-02 15:17:15 +01001108size_t HInstruction::EnvironmentSize() const {
1109 return HasEnvironment() ? environment_->Size() : 0;
1110}
1111
Mingyao Yanga9dbe832016-12-15 12:02:53 -08001112void HVariableInputSizeInstruction::AddInput(HInstruction* input) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001113 DCHECK(input->GetBlock() != nullptr);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001114 inputs_.push_back(HUserRecord<HInstruction*>(input));
1115 input->AddUseAt(this, inputs_.size() - 1);
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001116}
1117
Mingyao Yanga9dbe832016-12-15 12:02:53 -08001118void HVariableInputSizeInstruction::InsertInputAt(size_t index, HInstruction* input) {
1119 inputs_.insert(inputs_.begin() + index, HUserRecord<HInstruction*>(input));
1120 input->AddUseAt(this, index);
1121 // Update indexes in use nodes of inputs that have been pushed further back by the insert().
1122 for (size_t i = index + 1u, e = inputs_.size(); i < e; ++i) {
1123 DCHECK_EQ(inputs_[i].GetUseNode()->GetIndex(), i - 1u);
1124 inputs_[i].GetUseNode()->SetIndex(i);
1125 }
1126}
1127
1128void HVariableInputSizeInstruction::RemoveInputAt(size_t index) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001129 RemoveAsUserOfInput(index);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001130 inputs_.erase(inputs_.begin() + index);
Vladimir Marko372f10e2016-05-17 16:30:10 +01001131 // Update indexes in use nodes of inputs that have been pulled forward by the erase().
1132 for (size_t i = index, e = inputs_.size(); i < e; ++i) {
1133 DCHECK_EQ(inputs_[i].GetUseNode()->GetIndex(), i + 1u);
1134 inputs_[i].GetUseNode()->SetIndex(i);
Nicolas Geoffray5d7b7f82015-04-28 00:52:43 +01001135 }
David Brazdil2d7352b2015-04-20 14:52:42 +01001136}
1137
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001138#define DEFINE_ACCEPT(name, super) \
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001139void H##name::Accept(HGraphVisitor* visitor) { \
1140 visitor->Visit##name(this); \
1141}
1142
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001143FOR_EACH_CONCRETE_INSTRUCTION(DEFINE_ACCEPT)
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001144
1145#undef DEFINE_ACCEPT
1146
1147void HGraphVisitor::VisitInsertionOrder() {
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001148 const ArenaVector<HBasicBlock*>& blocks = graph_->GetBlocks();
1149 for (HBasicBlock* block : blocks) {
David Brazdil46e2a392015-03-16 17:31:52 +00001150 if (block != nullptr) {
1151 VisitBasicBlock(block);
1152 }
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001153 }
1154}
1155
Roland Levillain633021e2014-10-01 14:12:25 +01001156void HGraphVisitor::VisitReversePostOrder() {
Vladimir Marko2c45bc92016-10-25 16:54:12 +01001157 for (HBasicBlock* block : graph_->GetReversePostOrder()) {
1158 VisitBasicBlock(block);
Roland Levillain633021e2014-10-01 14:12:25 +01001159 }
1160}
1161
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001162void HGraphVisitor::VisitBasicBlock(HBasicBlock* block) {
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001163 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001164 it.Current()->Accept(this);
1165 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001166 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001167 it.Current()->Accept(this);
1168 }
1169}
1170
Mark Mendelle82549b2015-05-06 10:55:34 -04001171HConstant* HTypeConversion::TryStaticEvaluation() const {
1172 HGraph* graph = GetBlock()->GetGraph();
1173 if (GetInput()->IsIntConstant()) {
1174 int32_t value = GetInput()->AsIntConstant()->GetValue();
1175 switch (GetResultType()) {
1176 case Primitive::kPrimLong:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001177 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001178 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001179 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001180 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001181 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001182 default:
1183 return nullptr;
1184 }
1185 } else if (GetInput()->IsLongConstant()) {
1186 int64_t value = GetInput()->AsLongConstant()->GetValue();
1187 switch (GetResultType()) {
1188 case Primitive::kPrimInt:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001189 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001190 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001191 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001192 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001193 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001194 default:
1195 return nullptr;
1196 }
1197 } else if (GetInput()->IsFloatConstant()) {
1198 float value = GetInput()->AsFloatConstant()->GetValue();
1199 switch (GetResultType()) {
1200 case Primitive::kPrimInt:
1201 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001202 return graph->GetIntConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001203 if (value >= kPrimIntMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001204 return graph->GetIntConstant(kPrimIntMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001205 if (value <= kPrimIntMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001206 return graph->GetIntConstant(kPrimIntMin, GetDexPc());
1207 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001208 case Primitive::kPrimLong:
1209 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001210 return graph->GetLongConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001211 if (value >= kPrimLongMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001212 return graph->GetLongConstant(kPrimLongMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001213 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001214 return graph->GetLongConstant(kPrimLongMin, GetDexPc());
1215 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001216 case Primitive::kPrimDouble:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001217 return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001218 default:
1219 return nullptr;
1220 }
1221 } else if (GetInput()->IsDoubleConstant()) {
1222 double value = GetInput()->AsDoubleConstant()->GetValue();
1223 switch (GetResultType()) {
1224 case Primitive::kPrimInt:
1225 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001226 return graph->GetIntConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001227 if (value >= kPrimIntMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001228 return graph->GetIntConstant(kPrimIntMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001229 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001230 return graph->GetIntConstant(kPrimIntMin, GetDexPc());
1231 return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001232 case Primitive::kPrimLong:
1233 if (std::isnan(value))
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001234 return graph->GetLongConstant(0, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001235 if (value >= kPrimLongMax)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001236 return graph->GetLongConstant(kPrimLongMax, GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001237 if (value <= kPrimLongMin)
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001238 return graph->GetLongConstant(kPrimLongMin, GetDexPc());
1239 return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001240 case Primitive::kPrimFloat:
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001241 return graph->GetFloatConstant(static_cast<float>(value), GetDexPc());
Mark Mendelle82549b2015-05-06 10:55:34 -04001242 default:
1243 return nullptr;
1244 }
1245 }
1246 return nullptr;
1247}
1248
Roland Levillain9240d6a2014-10-20 16:47:04 +01001249HConstant* HUnaryOperation::TryStaticEvaluation() const {
1250 if (GetInput()->IsIntConstant()) {
Roland Levillain9867bc72015-08-05 10:21:34 +01001251 return Evaluate(GetInput()->AsIntConstant());
Roland Levillain9240d6a2014-10-20 16:47:04 +01001252 } else if (GetInput()->IsLongConstant()) {
Roland Levillain9867bc72015-08-05 10:21:34 +01001253 return Evaluate(GetInput()->AsLongConstant());
Roland Levillain31dd3d62016-02-16 12:21:02 +00001254 } else if (kEnableFloatingPointStaticEvaluation) {
1255 if (GetInput()->IsFloatConstant()) {
1256 return Evaluate(GetInput()->AsFloatConstant());
1257 } else if (GetInput()->IsDoubleConstant()) {
1258 return Evaluate(GetInput()->AsDoubleConstant());
1259 }
Roland Levillain9240d6a2014-10-20 16:47:04 +01001260 }
1261 return nullptr;
1262}
1263
1264HConstant* HBinaryOperation::TryStaticEvaluation() const {
Roland Levillaine53bd812016-02-24 14:54:18 +00001265 if (GetLeft()->IsIntConstant() && GetRight()->IsIntConstant()) {
1266 return Evaluate(GetLeft()->AsIntConstant(), GetRight()->AsIntConstant());
Roland Levillain9867bc72015-08-05 10:21:34 +01001267 } else if (GetLeft()->IsLongConstant()) {
1268 if (GetRight()->IsIntConstant()) {
Roland Levillaine53bd812016-02-24 14:54:18 +00001269 // The binop(long, int) case is only valid for shifts and rotations.
1270 DCHECK(IsShl() || IsShr() || IsUShr() || IsRor()) << DebugName();
Roland Levillain9867bc72015-08-05 10:21:34 +01001271 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsIntConstant());
1272 } else if (GetRight()->IsLongConstant()) {
1273 return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsLongConstant());
Nicolas Geoffray9ee66182015-01-16 12:35:40 +00001274 }
Vladimir Marko9e23df52015-11-10 17:14:35 +00001275 } else if (GetLeft()->IsNullConstant() && GetRight()->IsNullConstant()) {
Roland Levillaine53bd812016-02-24 14:54:18 +00001276 // The binop(null, null) case is only valid for equal and not-equal conditions.
1277 DCHECK(IsEqual() || IsNotEqual()) << DebugName();
Vladimir Marko9e23df52015-11-10 17:14:35 +00001278 return Evaluate(GetLeft()->AsNullConstant(), GetRight()->AsNullConstant());
Roland Levillain31dd3d62016-02-16 12:21:02 +00001279 } else if (kEnableFloatingPointStaticEvaluation) {
1280 if (GetLeft()->IsFloatConstant() && GetRight()->IsFloatConstant()) {
1281 return Evaluate(GetLeft()->AsFloatConstant(), GetRight()->AsFloatConstant());
1282 } else if (GetLeft()->IsDoubleConstant() && GetRight()->IsDoubleConstant()) {
1283 return Evaluate(GetLeft()->AsDoubleConstant(), GetRight()->AsDoubleConstant());
1284 }
Roland Levillain556c3d12014-09-18 15:25:07 +01001285 }
1286 return nullptr;
1287}
Dave Allison20dfc792014-06-16 20:44:29 -07001288
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00001289HConstant* HBinaryOperation::GetConstantRight() const {
1290 if (GetRight()->IsConstant()) {
1291 return GetRight()->AsConstant();
1292 } else if (IsCommutative() && GetLeft()->IsConstant()) {
1293 return GetLeft()->AsConstant();
1294 } else {
1295 return nullptr;
1296 }
1297}
1298
1299// If `GetConstantRight()` returns one of the input, this returns the other
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001300// one. Otherwise it returns null.
Alexandre Ramesb2fd7bc2015-03-11 16:48:16 +00001301HInstruction* HBinaryOperation::GetLeastConstantLeft() const {
1302 HInstruction* most_constant_right = GetConstantRight();
1303 if (most_constant_right == nullptr) {
1304 return nullptr;
1305 } else if (most_constant_right == GetLeft()) {
1306 return GetRight();
1307 } else {
1308 return GetLeft();
1309 }
1310}
1311
Roland Levillain31dd3d62016-02-16 12:21:02 +00001312std::ostream& operator<<(std::ostream& os, const ComparisonBias& rhs) {
1313 switch (rhs) {
1314 case ComparisonBias::kNoBias:
1315 return os << "no_bias";
1316 case ComparisonBias::kGtBias:
1317 return os << "gt_bias";
1318 case ComparisonBias::kLtBias:
1319 return os << "lt_bias";
1320 default:
1321 LOG(FATAL) << "Unknown ComparisonBias: " << static_cast<int>(rhs);
1322 UNREACHABLE();
1323 }
1324}
1325
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001326bool HCondition::IsBeforeWhenDisregardMoves(HInstruction* instruction) const {
1327 return this == instruction->GetPreviousDisregardingMoves();
Nicolas Geoffray18efde52014-09-22 15:51:11 +01001328}
1329
Vladimir Marko372f10e2016-05-17 16:30:10 +01001330bool HInstruction::Equals(const HInstruction* other) const {
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001331 if (!InstructionTypeEquals(other)) return false;
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001332 DCHECK_EQ(GetKind(), other->GetKind());
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001333 if (!InstructionDataEquals(other)) return false;
1334 if (GetType() != other->GetType()) return false;
Vladimir Markoe9004912016-06-16 16:50:52 +01001335 HConstInputsRef inputs = GetInputs();
1336 HConstInputsRef other_inputs = other->GetInputs();
Vladimir Marko372f10e2016-05-17 16:30:10 +01001337 if (inputs.size() != other_inputs.size()) return false;
1338 for (size_t i = 0; i != inputs.size(); ++i) {
1339 if (inputs[i] != other_inputs[i]) return false;
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001340 }
Vladimir Marko372f10e2016-05-17 16:30:10 +01001341
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +01001342 DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode());
Nicolas Geoffray065bf772014-09-03 14:51:22 +01001343 return true;
1344}
1345
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001346std::ostream& operator<<(std::ostream& os, const HInstruction::InstructionKind& rhs) {
1347#define DECLARE_CASE(type, super) case HInstruction::k##type: os << #type; break;
1348 switch (rhs) {
1349 FOR_EACH_INSTRUCTION(DECLARE_CASE)
1350 default:
1351 os << "Unknown instruction kind " << static_cast<int>(rhs);
1352 break;
1353 }
1354#undef DECLARE_CASE
1355 return os;
1356}
1357
Alexandre Rames22aa54b2016-10-18 09:32:29 +01001358void HInstruction::MoveBefore(HInstruction* cursor, bool do_checks) {
1359 if (do_checks) {
1360 DCHECK(!IsPhi());
1361 DCHECK(!IsControlFlow());
1362 DCHECK(CanBeMoved() ||
1363 // HShouldDeoptimizeFlag can only be moved by CHAGuardOptimization.
1364 IsShouldDeoptimizeFlag());
1365 DCHECK(!cursor->IsPhi());
1366 }
David Brazdild6c205e2016-06-07 14:20:52 +01001367
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001368 next_->previous_ = previous_;
1369 if (previous_ != nullptr) {
1370 previous_->next_ = next_;
1371 }
1372 if (block_->instructions_.first_instruction_ == this) {
1373 block_->instructions_.first_instruction_ = next_;
1374 }
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001375 DCHECK_NE(block_->instructions_.last_instruction_, this);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001376
1377 previous_ = cursor->previous_;
1378 if (previous_ != nullptr) {
1379 previous_->next_ = this;
1380 }
1381 next_ = cursor;
1382 cursor->previous_ = this;
1383 block_ = cursor->block_;
Nicolas Geoffray82091da2015-01-26 10:02:45 +00001384
1385 if (block_->instructions_.first_instruction_ == cursor) {
1386 block_->instructions_.first_instruction_ = this;
1387 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001388}
1389
Vladimir Markofb337ea2015-11-25 15:25:10 +00001390void HInstruction::MoveBeforeFirstUserAndOutOfLoops() {
1391 DCHECK(!CanThrow());
1392 DCHECK(!HasSideEffects());
1393 DCHECK(!HasEnvironmentUses());
1394 DCHECK(HasNonEnvironmentUses());
1395 DCHECK(!IsPhi()); // Makes no sense for Phi.
1396 DCHECK_EQ(InputCount(), 0u);
1397
1398 // Find the target block.
Vladimir Marko46817b82016-03-29 12:21:58 +01001399 auto uses_it = GetUses().begin();
1400 auto uses_end = GetUses().end();
1401 HBasicBlock* target_block = uses_it->GetUser()->GetBlock();
1402 ++uses_it;
1403 while (uses_it != uses_end && uses_it->GetUser()->GetBlock() == target_block) {
1404 ++uses_it;
Vladimir Markofb337ea2015-11-25 15:25:10 +00001405 }
Vladimir Marko46817b82016-03-29 12:21:58 +01001406 if (uses_it != uses_end) {
Vladimir Markofb337ea2015-11-25 15:25:10 +00001407 // This instruction has uses in two or more blocks. Find the common dominator.
1408 CommonDominator finder(target_block);
Vladimir Marko46817b82016-03-29 12:21:58 +01001409 for (; uses_it != uses_end; ++uses_it) {
1410 finder.Update(uses_it->GetUser()->GetBlock());
Vladimir Markofb337ea2015-11-25 15:25:10 +00001411 }
1412 target_block = finder.Get();
1413 DCHECK(target_block != nullptr);
1414 }
1415 // Move to the first dominator not in a loop.
1416 while (target_block->IsInLoop()) {
1417 target_block = target_block->GetDominator();
1418 DCHECK(target_block != nullptr);
1419 }
1420
1421 // Find insertion position.
1422 HInstruction* insert_pos = nullptr;
Vladimir Marko46817b82016-03-29 12:21:58 +01001423 for (const HUseListNode<HInstruction*>& use : GetUses()) {
1424 if (use.GetUser()->GetBlock() == target_block &&
1425 (insert_pos == nullptr || use.GetUser()->StrictlyDominates(insert_pos))) {
1426 insert_pos = use.GetUser();
Vladimir Markofb337ea2015-11-25 15:25:10 +00001427 }
1428 }
1429 if (insert_pos == nullptr) {
1430 // No user in `target_block`, insert before the control flow instruction.
1431 insert_pos = target_block->GetLastInstruction();
1432 DCHECK(insert_pos->IsControlFlow());
1433 // Avoid splitting HCondition from HIf to prevent unnecessary materialization.
1434 if (insert_pos->IsIf()) {
1435 HInstruction* if_input = insert_pos->AsIf()->InputAt(0);
1436 if (if_input == insert_pos->GetPrevious()) {
1437 insert_pos = if_input;
1438 }
1439 }
1440 }
1441 MoveBefore(insert_pos);
1442}
1443
David Brazdilfc6a86a2015-06-26 10:33:45 +00001444HBasicBlock* HBasicBlock::SplitBefore(HInstruction* cursor) {
David Brazdil9bc43612015-11-05 21:25:24 +00001445 DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented.";
David Brazdilfc6a86a2015-06-26 10:33:45 +00001446 DCHECK_EQ(cursor->GetBlock(), this);
1447
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001448 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(),
1449 cursor->GetDexPc());
David Brazdilfc6a86a2015-06-26 10:33:45 +00001450 new_block->instructions_.first_instruction_ = cursor;
1451 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1452 instructions_.last_instruction_ = cursor->previous_;
1453 if (cursor->previous_ == nullptr) {
1454 instructions_.first_instruction_ = nullptr;
1455 } else {
1456 cursor->previous_->next_ = nullptr;
1457 cursor->previous_ = nullptr;
1458 }
1459
1460 new_block->instructions_.SetBlockOfInstructions(new_block);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001461 AddInstruction(new (GetGraph()->GetArena()) HGoto(new_block->GetDexPc()));
David Brazdilfc6a86a2015-06-26 10:33:45 +00001462
Vladimir Marko60584552015-09-03 13:35:12 +00001463 for (HBasicBlock* successor : GetSuccessors()) {
Vladimir Marko60584552015-09-03 13:35:12 +00001464 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
David Brazdilfc6a86a2015-06-26 10:33:45 +00001465 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001466 new_block->successors_.swap(successors_);
1467 DCHECK(successors_.empty());
David Brazdilfc6a86a2015-06-26 10:33:45 +00001468 AddSuccessor(new_block);
1469
David Brazdil56e1acc2015-06-30 15:41:36 +01001470 GetGraph()->AddBlock(new_block);
David Brazdilfc6a86a2015-06-26 10:33:45 +00001471 return new_block;
1472}
1473
David Brazdild7558da2015-09-22 13:04:14 +01001474HBasicBlock* HBasicBlock::CreateImmediateDominator() {
David Brazdil9bc43612015-11-05 21:25:24 +00001475 DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented.";
David Brazdild7558da2015-09-22 13:04:14 +01001476 DCHECK(!IsCatchBlock()) << "Support for updating try/catch information not implemented.";
1477
1478 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc());
1479
1480 for (HBasicBlock* predecessor : GetPredecessors()) {
David Brazdild7558da2015-09-22 13:04:14 +01001481 predecessor->successors_[predecessor->GetSuccessorIndexOf(this)] = new_block;
1482 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001483 new_block->predecessors_.swap(predecessors_);
1484 DCHECK(predecessors_.empty());
David Brazdild7558da2015-09-22 13:04:14 +01001485 AddPredecessor(new_block);
1486
1487 GetGraph()->AddBlock(new_block);
1488 return new_block;
1489}
1490
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001491HBasicBlock* HBasicBlock::SplitBeforeForInlining(HInstruction* cursor) {
1492 DCHECK_EQ(cursor->GetBlock(), this);
1493
1494 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(),
1495 cursor->GetDexPc());
1496 new_block->instructions_.first_instruction_ = cursor;
1497 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1498 instructions_.last_instruction_ = cursor->previous_;
1499 if (cursor->previous_ == nullptr) {
1500 instructions_.first_instruction_ = nullptr;
1501 } else {
1502 cursor->previous_->next_ = nullptr;
1503 cursor->previous_ = nullptr;
1504 }
1505
1506 new_block->instructions_.SetBlockOfInstructions(new_block);
1507
1508 for (HBasicBlock* successor : GetSuccessors()) {
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001509 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
1510 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001511 new_block->successors_.swap(successors_);
1512 DCHECK(successors_.empty());
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001513
1514 for (HBasicBlock* dominated : GetDominatedBlocks()) {
1515 dominated->dominator_ = new_block;
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001516 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001517 new_block->dominated_blocks_.swap(dominated_blocks_);
1518 DCHECK(dominated_blocks_.empty());
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001519 return new_block;
1520}
1521
1522HBasicBlock* HBasicBlock::SplitAfterForInlining(HInstruction* cursor) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001523 DCHECK(!cursor->IsControlFlow());
1524 DCHECK_NE(instructions_.last_instruction_, cursor);
1525 DCHECK_EQ(cursor->GetBlock(), this);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001526
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001527 HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc());
1528 new_block->instructions_.first_instruction_ = cursor->GetNext();
1529 new_block->instructions_.last_instruction_ = instructions_.last_instruction_;
1530 cursor->next_->previous_ = nullptr;
1531 cursor->next_ = nullptr;
1532 instructions_.last_instruction_ = cursor;
1533
1534 new_block->instructions_.SetBlockOfInstructions(new_block);
Vladimir Marko60584552015-09-03 13:35:12 +00001535 for (HBasicBlock* successor : GetSuccessors()) {
Vladimir Marko60584552015-09-03 13:35:12 +00001536 successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001537 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001538 new_block->successors_.swap(successors_);
1539 DCHECK(successors_.empty());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001540
Vladimir Marko60584552015-09-03 13:35:12 +00001541 for (HBasicBlock* dominated : GetDominatedBlocks()) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001542 dominated->dominator_ = new_block;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001543 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001544 new_block->dominated_blocks_.swap(dominated_blocks_);
1545 DCHECK(dominated_blocks_.empty());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001546 return new_block;
1547}
1548
David Brazdilec16f792015-08-19 15:04:01 +01001549const HTryBoundary* HBasicBlock::ComputeTryEntryOfSuccessors() const {
David Brazdilffee3d32015-07-06 11:48:53 +01001550 if (EndsWithTryBoundary()) {
1551 HTryBoundary* try_boundary = GetLastInstruction()->AsTryBoundary();
1552 if (try_boundary->IsEntry()) {
David Brazdilec16f792015-08-19 15:04:01 +01001553 DCHECK(!IsTryBlock());
David Brazdilffee3d32015-07-06 11:48:53 +01001554 return try_boundary;
1555 } else {
David Brazdilec16f792015-08-19 15:04:01 +01001556 DCHECK(IsTryBlock());
1557 DCHECK(try_catch_information_->GetTryEntry().HasSameExceptionHandlersAs(*try_boundary));
David Brazdilffee3d32015-07-06 11:48:53 +01001558 return nullptr;
1559 }
David Brazdilec16f792015-08-19 15:04:01 +01001560 } else if (IsTryBlock()) {
1561 return &try_catch_information_->GetTryEntry();
David Brazdilffee3d32015-07-06 11:48:53 +01001562 } else {
David Brazdilec16f792015-08-19 15:04:01 +01001563 return nullptr;
David Brazdilffee3d32015-07-06 11:48:53 +01001564 }
David Brazdilfc6a86a2015-06-26 10:33:45 +00001565}
1566
David Brazdild7558da2015-09-22 13:04:14 +01001567bool HBasicBlock::HasThrowingInstructions() const {
1568 for (HInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) {
1569 if (it.Current()->CanThrow()) {
1570 return true;
1571 }
1572 }
1573 return false;
1574}
1575
David Brazdilfc6a86a2015-06-26 10:33:45 +00001576static bool HasOnlyOneInstruction(const HBasicBlock& block) {
1577 return block.GetPhis().IsEmpty()
1578 && !block.GetInstructions().IsEmpty()
1579 && block.GetFirstInstruction() == block.GetLastInstruction();
1580}
1581
David Brazdil46e2a392015-03-16 17:31:52 +00001582bool HBasicBlock::IsSingleGoto() const {
David Brazdilfc6a86a2015-06-26 10:33:45 +00001583 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsGoto();
1584}
1585
1586bool HBasicBlock::IsSingleTryBoundary() const {
1587 return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsTryBoundary();
David Brazdil46e2a392015-03-16 17:31:52 +00001588}
1589
David Brazdil8d5b8b22015-03-24 10:51:52 +00001590bool HBasicBlock::EndsWithControlFlowInstruction() const {
1591 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsControlFlow();
1592}
1593
David Brazdilb2bd1c52015-03-25 11:17:37 +00001594bool HBasicBlock::EndsWithIf() const {
1595 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsIf();
1596}
1597
David Brazdilffee3d32015-07-06 11:48:53 +01001598bool HBasicBlock::EndsWithTryBoundary() const {
1599 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsTryBoundary();
1600}
1601
David Brazdilb2bd1c52015-03-25 11:17:37 +00001602bool HBasicBlock::HasSinglePhi() const {
1603 return !GetPhis().IsEmpty() && GetFirstPhi()->GetNext() == nullptr;
1604}
1605
David Brazdild26a4112015-11-10 11:07:31 +00001606ArrayRef<HBasicBlock* const> HBasicBlock::GetNormalSuccessors() const {
1607 if (EndsWithTryBoundary()) {
1608 // The normal-flow successor of HTryBoundary is always stored at index zero.
1609 DCHECK_EQ(successors_[0], GetLastInstruction()->AsTryBoundary()->GetNormalFlowSuccessor());
1610 return ArrayRef<HBasicBlock* const>(successors_).SubArray(0u, 1u);
1611 } else {
1612 // All successors of blocks not ending with TryBoundary are normal.
1613 return ArrayRef<HBasicBlock* const>(successors_);
1614 }
1615}
1616
1617ArrayRef<HBasicBlock* const> HBasicBlock::GetExceptionalSuccessors() const {
1618 if (EndsWithTryBoundary()) {
1619 return GetLastInstruction()->AsTryBoundary()->GetExceptionHandlers();
1620 } else {
1621 // Blocks not ending with TryBoundary do not have exceptional successors.
1622 return ArrayRef<HBasicBlock* const>();
1623 }
1624}
1625
David Brazdilffee3d32015-07-06 11:48:53 +01001626bool HTryBoundary::HasSameExceptionHandlersAs(const HTryBoundary& other) const {
David Brazdild26a4112015-11-10 11:07:31 +00001627 ArrayRef<HBasicBlock* const> handlers1 = GetExceptionHandlers();
1628 ArrayRef<HBasicBlock* const> handlers2 = other.GetExceptionHandlers();
1629
1630 size_t length = handlers1.size();
1631 if (length != handlers2.size()) {
David Brazdilffee3d32015-07-06 11:48:53 +01001632 return false;
1633 }
1634
David Brazdilb618ade2015-07-29 10:31:29 +01001635 // Exception handlers need to be stored in the same order.
David Brazdild26a4112015-11-10 11:07:31 +00001636 for (size_t i = 0; i < length; ++i) {
1637 if (handlers1[i] != handlers2[i]) {
David Brazdilffee3d32015-07-06 11:48:53 +01001638 return false;
1639 }
1640 }
1641 return true;
1642}
1643
David Brazdil2d7352b2015-04-20 14:52:42 +01001644size_t HInstructionList::CountSize() const {
1645 size_t size = 0;
1646 HInstruction* current = first_instruction_;
1647 for (; current != nullptr; current = current->GetNext()) {
1648 size++;
1649 }
1650 return size;
1651}
1652
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001653void HInstructionList::SetBlockOfInstructions(HBasicBlock* block) const {
1654 for (HInstruction* current = first_instruction_;
1655 current != nullptr;
1656 current = current->GetNext()) {
1657 current->SetBlock(block);
1658 }
1659}
1660
1661void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) {
1662 DCHECK(Contains(cursor));
1663 if (!instruction_list.IsEmpty()) {
1664 if (cursor == last_instruction_) {
1665 last_instruction_ = instruction_list.last_instruction_;
1666 } else {
1667 cursor->next_->previous_ = instruction_list.last_instruction_;
1668 }
1669 instruction_list.last_instruction_->next_ = cursor->next_;
1670 cursor->next_ = instruction_list.first_instruction_;
1671 instruction_list.first_instruction_->previous_ = cursor;
1672 }
1673}
1674
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00001675void HInstructionList::AddBefore(HInstruction* cursor, const HInstructionList& instruction_list) {
1676 DCHECK(Contains(cursor));
1677 if (!instruction_list.IsEmpty()) {
1678 if (cursor == first_instruction_) {
1679 first_instruction_ = instruction_list.first_instruction_;
1680 } else {
1681 cursor->previous_->next_ = instruction_list.first_instruction_;
1682 }
1683 instruction_list.last_instruction_->next_ = cursor;
1684 instruction_list.first_instruction_->previous_ = cursor->previous_;
1685 cursor->previous_ = instruction_list.last_instruction_;
1686 }
1687}
1688
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001689void HInstructionList::Add(const HInstructionList& instruction_list) {
David Brazdil46e2a392015-03-16 17:31:52 +00001690 if (IsEmpty()) {
1691 first_instruction_ = instruction_list.first_instruction_;
1692 last_instruction_ = instruction_list.last_instruction_;
1693 } else {
1694 AddAfter(last_instruction_, instruction_list);
1695 }
1696}
1697
David Brazdil04ff4e82015-12-10 13:54:52 +00001698// Should be called on instructions in a dead block in post order. This method
1699// assumes `insn` has been removed from all users with the exception of catch
1700// phis because of missing exceptional edges in the graph. It removes the
1701// instruction from catch phi uses, together with inputs of other catch phis in
1702// the catch block at the same index, as these must be dead too.
1703static void RemoveUsesOfDeadInstruction(HInstruction* insn) {
1704 DCHECK(!insn->HasEnvironmentUses());
1705 while (insn->HasNonEnvironmentUses()) {
Vladimir Marko46817b82016-03-29 12:21:58 +01001706 const HUseListNode<HInstruction*>& use = insn->GetUses().front();
1707 size_t use_index = use.GetIndex();
1708 HBasicBlock* user_block = use.GetUser()->GetBlock();
1709 DCHECK(use.GetUser()->IsPhi() && user_block->IsCatchBlock());
David Brazdil04ff4e82015-12-10 13:54:52 +00001710 for (HInstructionIterator phi_it(user_block->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1711 phi_it.Current()->AsPhi()->RemoveInputAt(use_index);
1712 }
1713 }
1714}
1715
David Brazdil2d7352b2015-04-20 14:52:42 +01001716void HBasicBlock::DisconnectAndDelete() {
1717 // Dominators must be removed after all the blocks they dominate. This way
1718 // a loop header is removed last, a requirement for correct loop information
1719 // iteration.
Vladimir Marko60584552015-09-03 13:35:12 +00001720 DCHECK(dominated_blocks_.empty());
David Brazdil46e2a392015-03-16 17:31:52 +00001721
David Brazdil9eeebf62016-03-24 11:18:15 +00001722 // The following steps gradually remove the block from all its dependants in
1723 // post order (b/27683071).
1724
1725 // (1) Store a basic block that we'll use in step (5) to find loops to be updated.
1726 // We need to do this before step (4) which destroys the predecessor list.
1727 HBasicBlock* loop_update_start = this;
1728 if (IsLoopHeader()) {
1729 HLoopInformation* loop_info = GetLoopInformation();
1730 // All other blocks in this loop should have been removed because the header
1731 // was their dominator.
1732 // Note that we do not remove `this` from `loop_info` as it is unreachable.
1733 DCHECK(!loop_info->IsIrreducible());
1734 DCHECK_EQ(loop_info->GetBlocks().NumSetBits(), 1u);
1735 DCHECK_EQ(static_cast<uint32_t>(loop_info->GetBlocks().GetHighestBitSet()), GetBlockId());
1736 loop_update_start = loop_info->GetPreHeader();
David Brazdil2d7352b2015-04-20 14:52:42 +01001737 }
1738
David Brazdil9eeebf62016-03-24 11:18:15 +00001739 // (2) Disconnect the block from its successors and update their phis.
1740 for (HBasicBlock* successor : successors_) {
1741 // Delete this block from the list of predecessors.
1742 size_t this_index = successor->GetPredecessorIndexOf(this);
1743 successor->predecessors_.erase(successor->predecessors_.begin() + this_index);
1744
1745 // Check that `successor` has other predecessors, otherwise `this` is the
1746 // dominator of `successor` which violates the order DCHECKed at the top.
1747 DCHECK(!successor->predecessors_.empty());
1748
1749 // Remove this block's entries in the successor's phis. Skip exceptional
1750 // successors because catch phi inputs do not correspond to predecessor
1751 // blocks but throwing instructions. The inputs of the catch phis will be
1752 // updated in step (3).
1753 if (!successor->IsCatchBlock()) {
1754 if (successor->predecessors_.size() == 1u) {
1755 // The successor has just one predecessor left. Replace phis with the only
1756 // remaining input.
1757 for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1758 HPhi* phi = phi_it.Current()->AsPhi();
1759 phi->ReplaceWith(phi->InputAt(1 - this_index));
1760 successor->RemovePhi(phi);
1761 }
1762 } else {
1763 for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) {
1764 phi_it.Current()->AsPhi()->RemoveInputAt(this_index);
1765 }
1766 }
1767 }
1768 }
1769 successors_.clear();
1770
1771 // (3) Remove instructions and phis. Instructions should have no remaining uses
1772 // except in catch phis. If an instruction is used by a catch phi at `index`,
1773 // remove `index`-th input of all phis in the catch block since they are
1774 // guaranteed dead. Note that we may miss dead inputs this way but the
1775 // graph will always remain consistent.
1776 for (HBackwardInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) {
1777 HInstruction* insn = it.Current();
1778 RemoveUsesOfDeadInstruction(insn);
1779 RemoveInstruction(insn);
1780 }
1781 for (HInstructionIterator it(GetPhis()); !it.Done(); it.Advance()) {
1782 HPhi* insn = it.Current()->AsPhi();
1783 RemoveUsesOfDeadInstruction(insn);
1784 RemovePhi(insn);
1785 }
1786
1787 // (4) Disconnect the block from its predecessors and update their
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001788 // control-flow instructions.
Vladimir Marko60584552015-09-03 13:35:12 +00001789 for (HBasicBlock* predecessor : predecessors_) {
David Brazdil9eeebf62016-03-24 11:18:15 +00001790 // We should not see any back edges as they would have been removed by step (3).
1791 DCHECK(!IsInLoop() || !GetLoopInformation()->IsBackEdge(*predecessor));
1792
David Brazdil2d7352b2015-04-20 14:52:42 +01001793 HInstruction* last_instruction = predecessor->GetLastInstruction();
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001794 if (last_instruction->IsTryBoundary() && !IsCatchBlock()) {
1795 // This block is the only normal-flow successor of the TryBoundary which
1796 // makes `predecessor` dead. Since DCE removes blocks in post order,
1797 // exception handlers of this TryBoundary were already visited and any
1798 // remaining handlers therefore must be live. We remove `predecessor` from
1799 // their list of predecessors.
1800 DCHECK_EQ(last_instruction->AsTryBoundary()->GetNormalFlowSuccessor(), this);
1801 while (predecessor->GetSuccessors().size() > 1) {
1802 HBasicBlock* handler = predecessor->GetSuccessors()[1];
1803 DCHECK(handler->IsCatchBlock());
1804 predecessor->RemoveSuccessor(handler);
1805 handler->RemovePredecessor(predecessor);
1806 }
1807 }
1808
David Brazdil2d7352b2015-04-20 14:52:42 +01001809 predecessor->RemoveSuccessor(this);
Mark Mendellfe57faa2015-09-18 09:26:15 -04001810 uint32_t num_pred_successors = predecessor->GetSuccessors().size();
1811 if (num_pred_successors == 1u) {
1812 // If we have one successor after removing one, then we must have
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001813 // had an HIf, HPackedSwitch or HTryBoundary, as they have more than one
1814 // successor. Replace those with a HGoto.
1815 DCHECK(last_instruction->IsIf() ||
1816 last_instruction->IsPackedSwitch() ||
1817 (last_instruction->IsTryBoundary() && IsCatchBlock()));
Mark Mendellfe57faa2015-09-18 09:26:15 -04001818 predecessor->RemoveInstruction(last_instruction);
Yevgeny Rouban3ecfd652015-09-07 17:57:00 +06001819 predecessor->AddInstruction(new (graph_->GetArena()) HGoto(last_instruction->GetDexPc()));
Mark Mendellfe57faa2015-09-18 09:26:15 -04001820 } else if (num_pred_successors == 0u) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001821 // The predecessor has no remaining successors and therefore must be dead.
1822 // We deliberately leave it without a control-flow instruction so that the
David Brazdilbadd8262016-02-02 16:28:56 +00001823 // GraphChecker fails unless it is not removed during the pass too.
Mark Mendellfe57faa2015-09-18 09:26:15 -04001824 predecessor->RemoveInstruction(last_instruction);
1825 } else {
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001826 // There are multiple successors left. The removed block might be a successor
1827 // of a PackedSwitch which will be completely removed (perhaps replaced with
1828 // a Goto), or we are deleting a catch block from a TryBoundary. In either
1829 // case, leave `last_instruction` as is for now.
1830 DCHECK(last_instruction->IsPackedSwitch() ||
1831 (last_instruction->IsTryBoundary() && IsCatchBlock()));
David Brazdil2d7352b2015-04-20 14:52:42 +01001832 }
David Brazdil46e2a392015-03-16 17:31:52 +00001833 }
Vladimir Marko60584552015-09-03 13:35:12 +00001834 predecessors_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001835
David Brazdil9eeebf62016-03-24 11:18:15 +00001836 // (5) Remove the block from all loops it is included in. Skip the inner-most
1837 // loop if this is the loop header (see definition of `loop_update_start`)
1838 // because the loop header's predecessor list has been destroyed in step (4).
1839 for (HLoopInformationOutwardIterator it(*loop_update_start); !it.Done(); it.Advance()) {
1840 HLoopInformation* loop_info = it.Current();
1841 loop_info->Remove(this);
1842 if (loop_info->IsBackEdge(*this)) {
1843 // If this was the last back edge of the loop, we deliberately leave the
1844 // loop in an inconsistent state and will fail GraphChecker unless the
1845 // entire loop is removed during the pass.
1846 loop_info->RemoveBackEdge(this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001847 }
1848 }
David Brazdil2d7352b2015-04-20 14:52:42 +01001849
David Brazdil9eeebf62016-03-24 11:18:15 +00001850 // (6) Disconnect from the dominator.
David Brazdil2d7352b2015-04-20 14:52:42 +01001851 dominator_->RemoveDominatedBlock(this);
1852 SetDominator(nullptr);
1853
David Brazdil9eeebf62016-03-24 11:18:15 +00001854 // (7) Delete from the graph, update reverse post order.
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001855 graph_->DeleteDeadEmptyBlock(this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001856 SetGraph(nullptr);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001857}
1858
Aart Bik6b69e0a2017-01-11 10:20:43 -08001859void HBasicBlock::MergeInstructionsWith(HBasicBlock* other) {
1860 DCHECK(EndsWithControlFlowInstruction());
1861 RemoveInstruction(GetLastInstruction());
1862 instructions_.Add(other->GetInstructions());
1863 other->instructions_.SetBlockOfInstructions(this);
1864 other->instructions_.Clear();
1865}
1866
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001867void HBasicBlock::MergeWith(HBasicBlock* other) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001868 DCHECK_EQ(GetGraph(), other->GetGraph());
Vladimir Marko60584552015-09-03 13:35:12 +00001869 DCHECK(ContainsElement(dominated_blocks_, other));
1870 DCHECK_EQ(GetSingleSuccessor(), other);
1871 DCHECK_EQ(other->GetSinglePredecessor(), this);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001872 DCHECK(other->GetPhis().IsEmpty());
1873
David Brazdil2d7352b2015-04-20 14:52:42 +01001874 // Move instructions from `other` to `this`.
Aart Bik6b69e0a2017-01-11 10:20:43 -08001875 MergeInstructionsWith(other);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001876
David Brazdil2d7352b2015-04-20 14:52:42 +01001877 // Remove `other` from the loops it is included in.
1878 for (HLoopInformationOutwardIterator it(*other); !it.Done(); it.Advance()) {
1879 HLoopInformation* loop_info = it.Current();
1880 loop_info->Remove(other);
1881 if (loop_info->IsBackEdge(*other)) {
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001882 loop_info->ReplaceBackEdge(other, this);
David Brazdil2d7352b2015-04-20 14:52:42 +01001883 }
1884 }
1885
1886 // Update links to the successors of `other`.
Vladimir Marko60584552015-09-03 13:35:12 +00001887 successors_.clear();
Vladimir Marko661b69b2016-11-09 14:11:37 +00001888 for (HBasicBlock* successor : other->GetSuccessors()) {
1889 successor->predecessors_[successor->GetPredecessorIndexOf(other)] = this;
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001890 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001891 successors_.swap(other->successors_);
1892 DCHECK(other->successors_.empty());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001893
David Brazdil2d7352b2015-04-20 14:52:42 +01001894 // Update the dominator tree.
Vladimir Marko60584552015-09-03 13:35:12 +00001895 RemoveDominatedBlock(other);
1896 for (HBasicBlock* dominated : other->GetDominatedBlocks()) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001897 dominated->SetDominator(this);
1898 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001899 dominated_blocks_.insert(
1900 dominated_blocks_.end(), other->dominated_blocks_.begin(), other->dominated_blocks_.end());
Vladimir Marko60584552015-09-03 13:35:12 +00001901 other->dominated_blocks_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001902 other->dominator_ = nullptr;
1903
1904 // Clear the list of predecessors of `other` in preparation of deleting it.
Vladimir Marko60584552015-09-03 13:35:12 +00001905 other->predecessors_.clear();
David Brazdil2d7352b2015-04-20 14:52:42 +01001906
1907 // Delete `other` from the graph. The function updates reverse post order.
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001908 graph_->DeleteDeadEmptyBlock(other);
David Brazdil2d7352b2015-04-20 14:52:42 +01001909 other->SetGraph(nullptr);
1910}
1911
1912void HBasicBlock::MergeWithInlined(HBasicBlock* other) {
1913 DCHECK_NE(GetGraph(), other->GetGraph());
Vladimir Marko60584552015-09-03 13:35:12 +00001914 DCHECK(GetDominatedBlocks().empty());
1915 DCHECK(GetSuccessors().empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001916 DCHECK(!EndsWithControlFlowInstruction());
Vladimir Marko60584552015-09-03 13:35:12 +00001917 DCHECK(other->GetSinglePredecessor()->IsEntryBlock());
David Brazdil2d7352b2015-04-20 14:52:42 +01001918 DCHECK(other->GetPhis().IsEmpty());
1919 DCHECK(!other->IsInLoop());
1920
1921 // Move instructions from `other` to `this`.
1922 instructions_.Add(other->GetInstructions());
1923 other->instructions_.SetBlockOfInstructions(this);
1924
1925 // Update links to the successors of `other`.
Vladimir Marko60584552015-09-03 13:35:12 +00001926 successors_.clear();
Vladimir Marko661b69b2016-11-09 14:11:37 +00001927 for (HBasicBlock* successor : other->GetSuccessors()) {
1928 successor->predecessors_[successor->GetPredecessorIndexOf(other)] = this;
David Brazdil2d7352b2015-04-20 14:52:42 +01001929 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001930 successors_.swap(other->successors_);
1931 DCHECK(other->successors_.empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001932
1933 // Update the dominator tree.
Vladimir Marko60584552015-09-03 13:35:12 +00001934 for (HBasicBlock* dominated : other->GetDominatedBlocks()) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001935 dominated->SetDominator(this);
1936 }
Vladimir Marko661b69b2016-11-09 14:11:37 +00001937 dominated_blocks_.insert(
1938 dominated_blocks_.end(), other->dominated_blocks_.begin(), other->dominated_blocks_.end());
Vladimir Marko60584552015-09-03 13:35:12 +00001939 other->dominated_blocks_.clear();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001940 other->dominator_ = nullptr;
1941 other->graph_ = nullptr;
1942}
1943
1944void HBasicBlock::ReplaceWith(HBasicBlock* other) {
Vladimir Marko60584552015-09-03 13:35:12 +00001945 while (!GetPredecessors().empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001946 HBasicBlock* predecessor = GetPredecessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001947 predecessor->ReplaceSuccessor(this, other);
1948 }
Vladimir Marko60584552015-09-03 13:35:12 +00001949 while (!GetSuccessors().empty()) {
Vladimir Markoec7802a2015-10-01 20:57:57 +01001950 HBasicBlock* successor = GetSuccessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001951 successor->ReplacePredecessor(this, other);
1952 }
Vladimir Marko60584552015-09-03 13:35:12 +00001953 for (HBasicBlock* dominated : GetDominatedBlocks()) {
1954 other->AddDominatedBlock(dominated);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00001955 }
1956 GetDominator()->ReplaceDominatedBlock(this, other);
1957 other->SetDominator(GetDominator());
1958 dominator_ = nullptr;
1959 graph_ = nullptr;
1960}
1961
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001962void HGraph::DeleteDeadEmptyBlock(HBasicBlock* block) {
David Brazdil2d7352b2015-04-20 14:52:42 +01001963 DCHECK_EQ(block->GetGraph(), this);
Vladimir Marko60584552015-09-03 13:35:12 +00001964 DCHECK(block->GetSuccessors().empty());
1965 DCHECK(block->GetPredecessors().empty());
1966 DCHECK(block->GetDominatedBlocks().empty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001967 DCHECK(block->GetDominator() == nullptr);
David Brazdil8a7c0fe2015-11-02 20:24:55 +00001968 DCHECK(block->GetInstructions().IsEmpty());
1969 DCHECK(block->GetPhis().IsEmpty());
David Brazdil2d7352b2015-04-20 14:52:42 +01001970
David Brazdilc7af85d2015-05-26 12:05:55 +01001971 if (block->IsExitBlock()) {
Serguei Katkov7ba99662016-03-02 16:25:36 +06001972 SetExitBlock(nullptr);
David Brazdilc7af85d2015-05-26 12:05:55 +01001973 }
1974
Vladimir Markofa6b93c2015-09-15 10:15:55 +01001975 RemoveElement(reverse_post_order_, block);
1976 blocks_[block->GetBlockId()] = nullptr;
David Brazdil86ea7ee2016-02-16 09:26:07 +00001977 block->SetGraph(nullptr);
David Brazdil2d7352b2015-04-20 14:52:42 +01001978}
1979
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00001980void HGraph::UpdateLoopAndTryInformationOfNewBlock(HBasicBlock* block,
1981 HBasicBlock* reference,
1982 bool replace_if_back_edge) {
1983 if (block->IsLoopHeader()) {
1984 // Clear the information of which blocks are contained in that loop. Since the
1985 // information is stored as a bit vector based on block ids, we have to update
1986 // it, as those block ids were specific to the callee graph and we are now adding
1987 // these blocks to the caller graph.
1988 block->GetLoopInformation()->ClearAllBlocks();
1989 }
1990
1991 // If not already in a loop, update the loop information.
1992 if (!block->IsInLoop()) {
1993 block->SetLoopInformation(reference->GetLoopInformation());
1994 }
1995
1996 // If the block is in a loop, update all its outward loops.
1997 HLoopInformation* loop_info = block->GetLoopInformation();
1998 if (loop_info != nullptr) {
1999 for (HLoopInformationOutwardIterator loop_it(*block);
2000 !loop_it.Done();
2001 loop_it.Advance()) {
2002 loop_it.Current()->Add(block);
2003 }
2004 if (replace_if_back_edge && loop_info->IsBackEdge(*reference)) {
2005 loop_info->ReplaceBackEdge(reference, block);
2006 }
2007 }
2008
2009 // Copy TryCatchInformation if `reference` is a try block, not if it is a catch block.
2010 TryCatchInformation* try_catch_info = reference->IsTryBlock()
2011 ? reference->GetTryCatchInformation()
2012 : nullptr;
2013 block->SetTryCatchInformation(try_catch_info);
2014}
2015
Calin Juravle2e768302015-07-28 14:41:11 +00002016HInstruction* HGraph::InlineInto(HGraph* outer_graph, HInvoke* invoke) {
David Brazdilc7af85d2015-05-26 12:05:55 +01002017 DCHECK(HasExitBlock()) << "Unimplemented scenario";
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002018 // Update the environments in this graph to have the invoke's environment
2019 // as parent.
2020 {
Vladimir Marko2c45bc92016-10-25 16:54:12 +01002021 // Skip the entry block, we do not need to update the entry's suspend check.
2022 for (HBasicBlock* block : GetReversePostOrderSkipEntryBlock()) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002023 for (HInstructionIterator instr_it(block->GetInstructions());
2024 !instr_it.Done();
2025 instr_it.Advance()) {
2026 HInstruction* current = instr_it.Current();
2027 if (current->NeedsEnvironment()) {
David Brazdildee58d62016-04-07 09:54:26 +00002028 DCHECK(current->HasEnvironment());
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002029 current->GetEnvironment()->SetAndCopyParentChain(
2030 outer_graph->GetArena(), invoke->GetEnvironment());
2031 }
2032 }
2033 }
2034 }
2035 outer_graph->UpdateMaximumNumberOfOutVRegs(GetMaximumNumberOfOutVRegs());
Mingyao Yang69d75ff2017-02-07 13:06:06 -08002036
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002037 if (HasBoundsChecks()) {
2038 outer_graph->SetHasBoundsChecks(true);
2039 }
Mingyao Yang69d75ff2017-02-07 13:06:06 -08002040 if (HasLoops()) {
2041 outer_graph->SetHasLoops(true);
2042 }
2043 if (HasIrreducibleLoops()) {
2044 outer_graph->SetHasIrreducibleLoops(true);
2045 }
2046 if (HasTryCatch()) {
2047 outer_graph->SetHasTryCatch(true);
2048 }
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +01002049
Calin Juravle2e768302015-07-28 14:41:11 +00002050 HInstruction* return_value = nullptr;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002051 if (GetBlocks().size() == 3) {
Nicolas Geoffrayfdb7d632017-02-08 15:07:18 +00002052 // Inliner already made sure we don't inline methods that always throw.
2053 DCHECK(!GetBlocks()[1]->GetLastInstruction()->IsThrow());
Nicolas Geoffraybe31ff92015-02-04 14:52:20 +00002054 // Simple case of an entry block, a body block, and an exit block.
2055 // Put the body block's instruction into `invoke`'s block.
Vladimir Markoec7802a2015-10-01 20:57:57 +01002056 HBasicBlock* body = GetBlocks()[1];
2057 DCHECK(GetBlocks()[0]->IsEntryBlock());
2058 DCHECK(GetBlocks()[2]->IsExitBlock());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002059 DCHECK(!body->IsExitBlock());
Nicolas Geoffray788f2f02016-01-22 12:41:38 +00002060 DCHECK(!body->IsInLoop());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002061 HInstruction* last = body->GetLastInstruction();
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002062
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00002063 // Note that we add instructions before the invoke only to simplify polymorphic inlining.
2064 invoke->GetBlock()->instructions_.AddBefore(invoke, body->GetInstructions());
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002065 body->GetInstructions().SetBlockOfInstructions(invoke->GetBlock());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002066
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002067 // Replace the invoke with the return value of the inlined graph.
2068 if (last->IsReturn()) {
Calin Juravle2e768302015-07-28 14:41:11 +00002069 return_value = last->InputAt(0);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002070 } else {
2071 DCHECK(last->IsReturnVoid());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002072 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002073
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002074 invoke->GetBlock()->RemoveInstruction(last);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002075 } else {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002076 // Need to inline multiple blocks. We split `invoke`'s block
2077 // into two blocks, merge the first block of the inlined graph into
Nicolas Geoffraybe31ff92015-02-04 14:52:20 +00002078 // the first half, and replace the exit block of the inlined graph
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002079 // with the second half.
2080 ArenaAllocator* allocator = outer_graph->GetArena();
2081 HBasicBlock* at = invoke->GetBlock();
Nicolas Geoffray916cc1d2016-02-18 11:12:31 +00002082 // Note that we split before the invoke only to simplify polymorphic inlining.
2083 HBasicBlock* to = at->SplitBeforeForInlining(invoke);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002084
Vladimir Markoec7802a2015-10-01 20:57:57 +01002085 HBasicBlock* first = entry_block_->GetSuccessors()[0];
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002086 DCHECK(!first->IsInLoop());
David Brazdil2d7352b2015-04-20 14:52:42 +01002087 at->MergeWithInlined(first);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002088 exit_block_->ReplaceWith(to);
2089
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002090 // Update the meta information surrounding blocks:
2091 // (1) the graph they are now in,
2092 // (2) the reverse post order of that graph,
Nicolas Geoffray788f2f02016-01-22 12:41:38 +00002093 // (3) their potential loop information, inner and outer,
David Brazdil95177982015-10-30 12:56:58 -05002094 // (4) try block membership.
David Brazdil59a850e2015-11-10 13:04:30 +00002095 // Note that we do not need to update catch phi inputs because they
2096 // correspond to the register file of the outer method which the inlinee
2097 // cannot modify.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002098
2099 // We don't add the entry block, the exit block, and the first block, which
2100 // has been merged with `at`.
2101 static constexpr int kNumberOfSkippedBlocksInCallee = 3;
2102
2103 // We add the `to` block.
2104 static constexpr int kNumberOfNewBlocksInCaller = 1;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002105 size_t blocks_added = (reverse_post_order_.size() - kNumberOfSkippedBlocksInCallee)
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002106 + kNumberOfNewBlocksInCaller;
2107
2108 // Find the location of `at` in the outer graph's reverse post order. The new
2109 // blocks will be added after it.
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002110 size_t index_of_at = IndexOfElement(outer_graph->reverse_post_order_, at);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002111 MakeRoomFor(&outer_graph->reverse_post_order_, blocks_added, index_of_at);
2112
David Brazdil95177982015-10-30 12:56:58 -05002113 // Do a reverse post order of the blocks in the callee and do (1), (2), (3)
2114 // and (4) to the blocks that apply.
Vladimir Marko2c45bc92016-10-25 16:54:12 +01002115 for (HBasicBlock* current : GetReversePostOrder()) {
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002116 if (current != exit_block_ && current != entry_block_ && current != first) {
David Brazdil95177982015-10-30 12:56:58 -05002117 DCHECK(current->GetTryCatchInformation() == nullptr);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002118 DCHECK(current->GetGraph() == this);
2119 current->SetGraph(outer_graph);
2120 outer_graph->AddBlock(current);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002121 outer_graph->reverse_post_order_[++index_of_at] = current;
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00002122 UpdateLoopAndTryInformationOfNewBlock(current, at, /* replace_if_back_edge */ false);
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002123 }
2124 }
2125
David Brazdil95177982015-10-30 12:56:58 -05002126 // Do (1), (2), (3) and (4) to `to`.
Nicolas Geoffray276d9da2015-02-02 18:24:11 +00002127 to->SetGraph(outer_graph);
2128 outer_graph->AddBlock(to);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002129 outer_graph->reverse_post_order_[++index_of_at] = to;
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00002130 // Only `to` can become a back edge, as the inlined blocks
2131 // are predecessors of `to`.
2132 UpdateLoopAndTryInformationOfNewBlock(to, at, /* replace_if_back_edge */ true);
Nicolas Geoffray7c5367b2014-12-17 10:13:46 +00002133
David Brazdil3f523062016-02-29 16:53:33 +00002134 // Update all predecessors of the exit block (now the `to` block)
Nicolas Geoffrayfdb7d632017-02-08 15:07:18 +00002135 // to not `HReturn` but `HGoto` instead. Special case throwing blocks
2136 // to now get the outer graph exit block as successor. Note that the inliner
2137 // currently doesn't support inlining methods with try/catch.
2138 HPhi* return_value_phi = nullptr;
2139 bool rerun_dominance = false;
2140 bool rerun_loop_analysis = false;
2141 for (size_t pred = 0; pred < to->GetPredecessors().size(); ++pred) {
2142 HBasicBlock* predecessor = to->GetPredecessors()[pred];
David Brazdil3f523062016-02-29 16:53:33 +00002143 HInstruction* last = predecessor->GetLastInstruction();
Nicolas Geoffrayfdb7d632017-02-08 15:07:18 +00002144 if (last->IsThrow()) {
2145 DCHECK(!at->IsTryBlock());
2146 predecessor->ReplaceSuccessor(to, outer_graph->GetExitBlock());
2147 --pred;
2148 // We need to re-run dominance information, as the exit block now has
2149 // a new dominator.
2150 rerun_dominance = true;
2151 if (predecessor->GetLoopInformation() != nullptr) {
2152 // The exit block and blocks post dominated by the exit block do not belong
2153 // to any loop. Because we do not compute the post dominators, we need to re-run
2154 // loop analysis to get the loop information correct.
2155 rerun_loop_analysis = true;
2156 }
2157 } else {
2158 if (last->IsReturnVoid()) {
2159 DCHECK(return_value == nullptr);
2160 DCHECK(return_value_phi == nullptr);
2161 } else {
David Brazdil3f523062016-02-29 16:53:33 +00002162 DCHECK(last->IsReturn());
Nicolas Geoffrayfdb7d632017-02-08 15:07:18 +00002163 if (return_value_phi != nullptr) {
2164 return_value_phi->AddInput(last->InputAt(0));
2165 } else if (return_value == nullptr) {
2166 return_value = last->InputAt(0);
2167 } else {
2168 // There will be multiple returns.
2169 return_value_phi = new (allocator) HPhi(
2170 allocator, kNoRegNumber, 0, HPhi::ToPhiType(invoke->GetType()), to->GetDexPc());
2171 to->AddPhi(return_value_phi);
2172 return_value_phi->AddInput(return_value);
2173 return_value_phi->AddInput(last->InputAt(0));
2174 return_value = return_value_phi;
2175 }
David Brazdil3f523062016-02-29 16:53:33 +00002176 }
2177 predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc()));
2178 predecessor->RemoveInstruction(last);
2179 }
2180 }
Nicolas Geoffrayfdb7d632017-02-08 15:07:18 +00002181 if (rerun_loop_analysis) {
2182 outer_graph->ClearLoopInformation();
2183 outer_graph->ClearDominanceInformation();
2184 outer_graph->BuildDominatorTree();
2185 } else if (rerun_dominance) {
2186 outer_graph->ClearDominanceInformation();
2187 outer_graph->ComputeDominanceInformation();
2188 }
David Brazdil3f523062016-02-29 16:53:33 +00002189 }
David Brazdil05144f42015-04-16 15:18:00 +01002190
2191 // Walk over the entry block and:
2192 // - Move constants from the entry block to the outer_graph's entry block,
2193 // - Replace HParameterValue instructions with their real value.
2194 // - Remove suspend checks, that hold an environment.
2195 // We must do this after the other blocks have been inlined, otherwise ids of
2196 // constants could overlap with the inner graph.
Roland Levillain4c0eb422015-04-24 16:43:49 +01002197 size_t parameter_index = 0;
David Brazdil05144f42015-04-16 15:18:00 +01002198 for (HInstructionIterator it(entry_block_->GetInstructions()); !it.Done(); it.Advance()) {
2199 HInstruction* current = it.Current();
Calin Juravle214bbcd2015-10-20 14:54:07 +01002200 HInstruction* replacement = nullptr;
David Brazdil05144f42015-04-16 15:18:00 +01002201 if (current->IsNullConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002202 replacement = outer_graph->GetNullConstant(current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01002203 } else if (current->IsIntConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002204 replacement = outer_graph->GetIntConstant(
2205 current->AsIntConstant()->GetValue(), current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01002206 } else if (current->IsLongConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002207 replacement = outer_graph->GetLongConstant(
2208 current->AsLongConstant()->GetValue(), current->GetDexPc());
Nicolas Geoffrayf213e052015-04-27 08:53:46 +00002209 } else if (current->IsFloatConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002210 replacement = outer_graph->GetFloatConstant(
2211 current->AsFloatConstant()->GetValue(), current->GetDexPc());
Nicolas Geoffrayf213e052015-04-27 08:53:46 +00002212 } else if (current->IsDoubleConstant()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002213 replacement = outer_graph->GetDoubleConstant(
2214 current->AsDoubleConstant()->GetValue(), current->GetDexPc());
David Brazdil05144f42015-04-16 15:18:00 +01002215 } else if (current->IsParameterValue()) {
Roland Levillain4c0eb422015-04-24 16:43:49 +01002216 if (kIsDebugBuild
2217 && invoke->IsInvokeStaticOrDirect()
2218 && invoke->AsInvokeStaticOrDirect()->IsStaticWithExplicitClinitCheck()) {
2219 // Ensure we do not use the last input of `invoke`, as it
2220 // contains a clinit check which is not an actual argument.
2221 size_t last_input_index = invoke->InputCount() - 1;
2222 DCHECK(parameter_index != last_input_index);
2223 }
Calin Juravle214bbcd2015-10-20 14:54:07 +01002224 replacement = invoke->InputAt(parameter_index++);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01002225 } else if (current->IsCurrentMethod()) {
Calin Juravle214bbcd2015-10-20 14:54:07 +01002226 replacement = outer_graph->GetCurrentMethod();
David Brazdil05144f42015-04-16 15:18:00 +01002227 } else {
2228 DCHECK(current->IsGoto() || current->IsSuspendCheck());
2229 entry_block_->RemoveInstruction(current);
2230 }
Calin Juravle214bbcd2015-10-20 14:54:07 +01002231 if (replacement != nullptr) {
2232 current->ReplaceWith(replacement);
2233 // If the current is the return value then we need to update the latter.
2234 if (current == return_value) {
2235 DCHECK_EQ(entry_block_, return_value->GetBlock());
2236 return_value = replacement;
2237 }
2238 }
2239 }
2240
Calin Juravle2e768302015-07-28 14:41:11 +00002241 return return_value;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002242}
2243
Mingyao Yang3584bce2015-05-19 16:01:59 -07002244/*
2245 * Loop will be transformed to:
2246 * old_pre_header
2247 * |
2248 * if_block
2249 * / \
Aart Bik3fc7f352015-11-20 22:03:03 -08002250 * true_block false_block
Mingyao Yang3584bce2015-05-19 16:01:59 -07002251 * \ /
2252 * new_pre_header
2253 * |
2254 * header
2255 */
2256void HGraph::TransformLoopHeaderForBCE(HBasicBlock* header) {
2257 DCHECK(header->IsLoopHeader());
Aart Bik3fc7f352015-11-20 22:03:03 -08002258 HBasicBlock* old_pre_header = header->GetDominator();
Mingyao Yang3584bce2015-05-19 16:01:59 -07002259
Aart Bik3fc7f352015-11-20 22:03:03 -08002260 // Need extra block to avoid critical edge.
Mingyao Yang3584bce2015-05-19 16:01:59 -07002261 HBasicBlock* if_block = new (arena_) HBasicBlock(this, header->GetDexPc());
Aart Bik3fc7f352015-11-20 22:03:03 -08002262 HBasicBlock* true_block = new (arena_) HBasicBlock(this, header->GetDexPc());
2263 HBasicBlock* false_block = new (arena_) HBasicBlock(this, header->GetDexPc());
Mingyao Yang3584bce2015-05-19 16:01:59 -07002264 HBasicBlock* new_pre_header = new (arena_) HBasicBlock(this, header->GetDexPc());
2265 AddBlock(if_block);
Aart Bik3fc7f352015-11-20 22:03:03 -08002266 AddBlock(true_block);
2267 AddBlock(false_block);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002268 AddBlock(new_pre_header);
2269
Aart Bik3fc7f352015-11-20 22:03:03 -08002270 header->ReplacePredecessor(old_pre_header, new_pre_header);
2271 old_pre_header->successors_.clear();
2272 old_pre_header->dominated_blocks_.clear();
Mingyao Yang3584bce2015-05-19 16:01:59 -07002273
Aart Bik3fc7f352015-11-20 22:03:03 -08002274 old_pre_header->AddSuccessor(if_block);
2275 if_block->AddSuccessor(true_block); // True successor
2276 if_block->AddSuccessor(false_block); // False successor
2277 true_block->AddSuccessor(new_pre_header);
2278 false_block->AddSuccessor(new_pre_header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002279
Aart Bik3fc7f352015-11-20 22:03:03 -08002280 old_pre_header->dominated_blocks_.push_back(if_block);
2281 if_block->SetDominator(old_pre_header);
2282 if_block->dominated_blocks_.push_back(true_block);
2283 true_block->SetDominator(if_block);
2284 if_block->dominated_blocks_.push_back(false_block);
2285 false_block->SetDominator(if_block);
Vladimir Marko60584552015-09-03 13:35:12 +00002286 if_block->dominated_blocks_.push_back(new_pre_header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002287 new_pre_header->SetDominator(if_block);
Vladimir Marko60584552015-09-03 13:35:12 +00002288 new_pre_header->dominated_blocks_.push_back(header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002289 header->SetDominator(new_pre_header);
2290
Aart Bik3fc7f352015-11-20 22:03:03 -08002291 // Fix reverse post order.
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002292 size_t index_of_header = IndexOfElement(reverse_post_order_, header);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002293 MakeRoomFor(&reverse_post_order_, 4, index_of_header - 1);
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002294 reverse_post_order_[index_of_header++] = if_block;
Aart Bik3fc7f352015-11-20 22:03:03 -08002295 reverse_post_order_[index_of_header++] = true_block;
2296 reverse_post_order_[index_of_header++] = false_block;
Vladimir Markofa6b93c2015-09-15 10:15:55 +01002297 reverse_post_order_[index_of_header++] = new_pre_header;
Mingyao Yang3584bce2015-05-19 16:01:59 -07002298
Nicolas Geoffraya1d8ddf2016-02-29 11:46:58 +00002299 // The pre_header can never be a back edge of a loop.
2300 DCHECK((old_pre_header->GetLoopInformation() == nullptr) ||
2301 !old_pre_header->GetLoopInformation()->IsBackEdge(*old_pre_header));
2302 UpdateLoopAndTryInformationOfNewBlock(
2303 if_block, old_pre_header, /* replace_if_back_edge */ false);
2304 UpdateLoopAndTryInformationOfNewBlock(
2305 true_block, old_pre_header, /* replace_if_back_edge */ false);
2306 UpdateLoopAndTryInformationOfNewBlock(
2307 false_block, old_pre_header, /* replace_if_back_edge */ false);
2308 UpdateLoopAndTryInformationOfNewBlock(
2309 new_pre_header, old_pre_header, /* replace_if_back_edge */ false);
Mingyao Yang3584bce2015-05-19 16:01:59 -07002310}
2311
David Brazdilf5552582015-12-27 13:36:12 +00002312static void CheckAgainstUpperBound(ReferenceTypeInfo rti, ReferenceTypeInfo upper_bound_rti)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07002313 REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdilf5552582015-12-27 13:36:12 +00002314 if (rti.IsValid()) {
2315 DCHECK(upper_bound_rti.IsSupertypeOf(rti))
2316 << " upper_bound_rti: " << upper_bound_rti
2317 << " rti: " << rti;
Nicolas Geoffray18401b72016-03-11 13:35:51 +00002318 DCHECK(!upper_bound_rti.GetTypeHandle()->CannotBeAssignedFromOtherTypes() || rti.IsExact())
2319 << " upper_bound_rti: " << upper_bound_rti
2320 << " rti: " << rti;
David Brazdilf5552582015-12-27 13:36:12 +00002321 }
2322}
2323
Calin Juravle2e768302015-07-28 14:41:11 +00002324void HInstruction::SetReferenceTypeInfo(ReferenceTypeInfo rti) {
2325 if (kIsDebugBuild) {
2326 DCHECK_EQ(GetType(), Primitive::kPrimNot);
2327 ScopedObjectAccess soa(Thread::Current());
2328 DCHECK(rti.IsValid()) << "Invalid RTI for " << DebugName();
2329 if (IsBoundType()) {
2330 // Having the test here spares us from making the method virtual just for
2331 // the sake of a DCHECK.
David Brazdilf5552582015-12-27 13:36:12 +00002332 CheckAgainstUpperBound(rti, AsBoundType()->GetUpperBound());
Calin Juravle2e768302015-07-28 14:41:11 +00002333 }
2334 }
Vladimir Markoa1de9182016-02-25 11:37:38 +00002335 reference_type_handle_ = rti.GetTypeHandle();
2336 SetPackedFlag<kFlagReferenceTypeIsExact>(rti.IsExact());
Calin Juravle2e768302015-07-28 14:41:11 +00002337}
2338
David Brazdilf5552582015-12-27 13:36:12 +00002339void HBoundType::SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null) {
2340 if (kIsDebugBuild) {
2341 ScopedObjectAccess soa(Thread::Current());
2342 DCHECK(upper_bound.IsValid());
2343 DCHECK(!upper_bound_.IsValid()) << "Upper bound should only be set once.";
2344 CheckAgainstUpperBound(GetReferenceTypeInfo(), upper_bound);
2345 }
2346 upper_bound_ = upper_bound;
Vladimir Markoa1de9182016-02-25 11:37:38 +00002347 SetPackedFlag<kFlagUpperCanBeNull>(can_be_null);
David Brazdilf5552582015-12-27 13:36:12 +00002348}
2349
Vladimir Markoa1de9182016-02-25 11:37:38 +00002350ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) {
Calin Juravle2e768302015-07-28 14:41:11 +00002351 if (kIsDebugBuild) {
2352 ScopedObjectAccess soa(Thread::Current());
2353 DCHECK(IsValidHandle(type_handle));
Nicolas Geoffray18401b72016-03-11 13:35:51 +00002354 if (!is_exact) {
2355 DCHECK(!type_handle->CannotBeAssignedFromOtherTypes())
2356 << "Callers of ReferenceTypeInfo::Create should ensure is_exact is properly computed";
2357 }
Calin Juravle2e768302015-07-28 14:41:11 +00002358 }
Vladimir Markoa1de9182016-02-25 11:37:38 +00002359 return ReferenceTypeInfo(type_handle, is_exact);
Calin Juravle2e768302015-07-28 14:41:11 +00002360}
2361
Calin Juravleacf735c2015-02-12 15:25:22 +00002362std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs) {
2363 ScopedObjectAccess soa(Thread::Current());
2364 os << "["
Calin Juravle2e768302015-07-28 14:41:11 +00002365 << " is_valid=" << rhs.IsValid()
David Sehr709b0702016-10-13 09:12:37 -07002366 << " type=" << (!rhs.IsValid() ? "?" : mirror::Class::PrettyClass(rhs.GetTypeHandle().Get()))
Calin Juravleacf735c2015-02-12 15:25:22 +00002367 << " is_exact=" << rhs.IsExact()
2368 << " ]";
2369 return os;
2370}
2371
Mark Mendellc4701932015-04-10 13:18:51 -04002372bool HInstruction::HasAnyEnvironmentUseBefore(HInstruction* other) {
2373 // For now, assume that instructions in different blocks may use the
2374 // environment.
2375 // TODO: Use the control flow to decide if this is true.
2376 if (GetBlock() != other->GetBlock()) {
2377 return true;
2378 }
2379
2380 // We know that we are in the same block. Walk from 'this' to 'other',
2381 // checking to see if there is any instruction with an environment.
2382 HInstruction* current = this;
2383 for (; current != other && current != nullptr; current = current->GetNext()) {
2384 // This is a conservative check, as the instruction result may not be in
2385 // the referenced environment.
2386 if (current->HasEnvironment()) {
2387 return true;
2388 }
2389 }
2390
2391 // We should have been called with 'this' before 'other' in the block.
2392 // Just confirm this.
2393 DCHECK(current != nullptr);
2394 return false;
2395}
2396
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002397void HInvoke::SetIntrinsic(Intrinsics intrinsic,
Aart Bik5d75afe2015-12-14 11:57:01 -08002398 IntrinsicNeedsEnvironmentOrCache needs_env_or_cache,
2399 IntrinsicSideEffects side_effects,
2400 IntrinsicExceptions exceptions) {
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002401 intrinsic_ = intrinsic;
2402 IntrinsicOptimizations opt(this);
Nicolas Geoffraya3eca2d2016-01-12 16:03:16 +00002403
Aart Bik5d75afe2015-12-14 11:57:01 -08002404 // Adjust method's side effects from intrinsic table.
2405 switch (side_effects) {
2406 case kNoSideEffects: SetSideEffects(SideEffects::None()); break;
2407 case kReadSideEffects: SetSideEffects(SideEffects::AllReads()); break;
2408 case kWriteSideEffects: SetSideEffects(SideEffects::AllWrites()); break;
2409 case kAllSideEffects: SetSideEffects(SideEffects::AllExceptGCDependency()); break;
2410 }
Nicolas Geoffraya3eca2d2016-01-12 16:03:16 +00002411
2412 if (needs_env_or_cache == kNoEnvironmentOrCache) {
2413 opt.SetDoesNotNeedDexCache();
2414 opt.SetDoesNotNeedEnvironment();
2415 } else {
2416 // If we need an environment, that means there will be a call, which can trigger GC.
2417 SetSideEffects(GetSideEffects().Union(SideEffects::CanTriggerGC()));
2418 }
Aart Bik5d75afe2015-12-14 11:57:01 -08002419 // Adjust method's exception status from intrinsic table.
Aart Bik09e8d5f2016-01-22 16:49:55 -08002420 SetCanThrow(exceptions == kCanThrow);
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002421}
2422
David Brazdil6de19382016-01-08 17:37:10 +00002423bool HNewInstance::IsStringAlloc() const {
2424 ScopedObjectAccess soa(Thread::Current());
2425 return GetReferenceTypeInfo().IsStringClass();
2426}
2427
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002428bool HInvoke::NeedsEnvironment() const {
2429 if (!IsIntrinsic()) {
2430 return true;
2431 }
2432 IntrinsicOptimizations opt(*this);
2433 return !opt.GetDoesNotNeedEnvironment();
2434}
2435
Nicolas Geoffray5d37c152017-01-12 13:25:19 +00002436const DexFile& HInvokeStaticOrDirect::GetDexFileForPcRelativeDexCache() const {
2437 ArtMethod* caller = GetEnvironment()->GetMethod();
2438 ScopedObjectAccess soa(Thread::Current());
2439 // `caller` is null for a top-level graph representing a method whose declaring
2440 // class was not resolved.
2441 return caller == nullptr ? GetBlock()->GetGraph()->GetDexFile() : *caller->GetDexFile();
2442}
2443
Vladimir Markodc151b22015-10-15 18:02:30 +01002444bool HInvokeStaticOrDirect::NeedsDexCacheOfDeclaringClass() const {
2445 if (GetMethodLoadKind() != MethodLoadKind::kDexCacheViaMethod) {
Nicolas Geoffraya83a54d2015-10-02 17:30:26 +01002446 return false;
2447 }
2448 if (!IsIntrinsic()) {
2449 return true;
2450 }
2451 IntrinsicOptimizations opt(*this);
2452 return !opt.GetDoesNotNeedDexCache();
2453}
2454
Vladimir Markof64242a2015-12-01 14:58:23 +00002455std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::MethodLoadKind rhs) {
2456 switch (rhs) {
2457 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
2458 return os << "string_init";
2459 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
2460 return os << "recursive";
2461 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
2462 return os << "direct";
Vladimir Markof64242a2015-12-01 14:58:23 +00002463 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative:
2464 return os << "dex_cache_pc_relative";
2465 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod:
2466 return os << "dex_cache_via_method";
2467 default:
2468 LOG(FATAL) << "Unknown MethodLoadKind: " << static_cast<int>(rhs);
2469 UNREACHABLE();
2470 }
2471}
2472
Vladimir Markofbb184a2015-11-13 14:47:00 +00002473std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::ClinitCheckRequirement rhs) {
2474 switch (rhs) {
2475 case HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit:
2476 return os << "explicit";
2477 case HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit:
2478 return os << "implicit";
2479 case HInvokeStaticOrDirect::ClinitCheckRequirement::kNone:
2480 return os << "none";
2481 default:
Vladimir Markof64242a2015-12-01 14:58:23 +00002482 LOG(FATAL) << "Unknown ClinitCheckRequirement: " << static_cast<int>(rhs);
2483 UNREACHABLE();
Vladimir Markofbb184a2015-11-13 14:47:00 +00002484 }
2485}
2486
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002487bool HLoadClass::InstructionDataEquals(const HInstruction* other) const {
2488 const HLoadClass* other_load_class = other->AsLoadClass();
2489 // TODO: To allow GVN for HLoadClass from different dex files, we should compare the type
2490 // names rather than type indexes. However, we shall also have to re-think the hash code.
2491 if (type_index_ != other_load_class->type_index_ ||
2492 GetPackedFields() != other_load_class->GetPackedFields()) {
2493 return false;
2494 }
Nicolas Geoffray9b1583e2016-12-13 13:43:31 +00002495 switch (GetLoadKind()) {
2496 case LoadKind::kBootImageAddress:
Nicolas Geoffray1ea9efc2017-01-16 22:57:39 +00002497 case LoadKind::kJitTableAddress: {
2498 ScopedObjectAccess soa(Thread::Current());
2499 return GetClass().Get() == other_load_class->GetClass().Get();
2500 }
Nicolas Geoffray9b1583e2016-12-13 13:43:31 +00002501 default:
Vladimir Marko48886c22017-01-06 11:45:47 +00002502 DCHECK(HasTypeReference(GetLoadKind()));
Nicolas Geoffray9b1583e2016-12-13 13:43:31 +00002503 return IsSameDexFile(GetDexFile(), other_load_class->GetDexFile());
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002504 }
2505}
2506
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00002507void HLoadClass::SetLoadKind(LoadKind load_kind) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002508 SetPackedField<LoadKindField>(load_kind);
2509
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00002510 if (load_kind != LoadKind::kDexCacheViaMethod &&
2511 load_kind != LoadKind::kReferrersClass) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002512 RemoveAsUserOfInput(0u);
2513 SetRawInputAt(0u, nullptr);
2514 }
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00002515
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002516 if (!NeedsEnvironment()) {
2517 RemoveEnvironment();
2518 SetSideEffects(SideEffects::None());
2519 }
2520}
2521
2522std::ostream& operator<<(std::ostream& os, HLoadClass::LoadKind rhs) {
2523 switch (rhs) {
2524 case HLoadClass::LoadKind::kReferrersClass:
2525 return os << "ReferrersClass";
2526 case HLoadClass::LoadKind::kBootImageLinkTimeAddress:
2527 return os << "BootImageLinkTimeAddress";
2528 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
2529 return os << "BootImageLinkTimePcRelative";
2530 case HLoadClass::LoadKind::kBootImageAddress:
2531 return os << "BootImageAddress";
Vladimir Marko6bec91c2017-01-09 15:03:12 +00002532 case HLoadClass::LoadKind::kBssEntry:
2533 return os << "BssEntry";
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00002534 case HLoadClass::LoadKind::kJitTableAddress:
2535 return os << "JitTableAddress";
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002536 case HLoadClass::LoadKind::kDexCacheViaMethod:
2537 return os << "DexCacheViaMethod";
2538 default:
2539 LOG(FATAL) << "Unknown HLoadClass::LoadKind: " << static_cast<int>(rhs);
2540 UNREACHABLE();
2541 }
2542}
2543
Vladimir Marko372f10e2016-05-17 16:30:10 +01002544bool HLoadString::InstructionDataEquals(const HInstruction* other) const {
2545 const HLoadString* other_load_string = other->AsLoadString();
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01002546 // TODO: To allow GVN for HLoadString from different dex files, we should compare the strings
2547 // rather than their indexes. However, we shall also have to re-think the hash code.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002548 if (string_index_ != other_load_string->string_index_ ||
2549 GetPackedFields() != other_load_string->GetPackedFields()) {
2550 return false;
2551 }
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00002552 switch (GetLoadKind()) {
2553 case LoadKind::kBootImageAddress:
Nicolas Geoffray1ea9efc2017-01-16 22:57:39 +00002554 case LoadKind::kJitTableAddress: {
2555 ScopedObjectAccess soa(Thread::Current());
2556 return GetString().Get() == other_load_string->GetString().Get();
2557 }
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00002558 default:
2559 return IsSameDexFile(GetDexFile(), other_load_string->GetDexFile());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002560 }
2561}
2562
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00002563void HLoadString::SetLoadKind(LoadKind load_kind) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002564 // Once sharpened, the load kind should not be changed again.
2565 DCHECK_EQ(GetLoadKind(), LoadKind::kDexCacheViaMethod);
2566 SetPackedField<LoadKindField>(load_kind);
2567
2568 if (load_kind != LoadKind::kDexCacheViaMethod) {
2569 RemoveAsUserOfInput(0u);
2570 SetRawInputAt(0u, nullptr);
2571 }
2572 if (!NeedsEnvironment()) {
2573 RemoveEnvironment();
Vladimir Markoace7a002016-04-05 11:18:49 +01002574 SetSideEffects(SideEffects::None());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002575 }
2576}
2577
2578std::ostream& operator<<(std::ostream& os, HLoadString::LoadKind rhs) {
2579 switch (rhs) {
2580 case HLoadString::LoadKind::kBootImageLinkTimeAddress:
2581 return os << "BootImageLinkTimeAddress";
2582 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
2583 return os << "BootImageLinkTimePcRelative";
2584 case HLoadString::LoadKind::kBootImageAddress:
2585 return os << "BootImageAddress";
Vladimir Markoaad75c62016-10-03 08:46:48 +00002586 case HLoadString::LoadKind::kBssEntry:
2587 return os << "BssEntry";
Mingyao Yangbe44dcf2016-11-30 14:17:32 -08002588 case HLoadString::LoadKind::kJitTableAddress:
2589 return os << "JitTableAddress";
Vladimir Marko6bec91c2017-01-09 15:03:12 +00002590 case HLoadString::LoadKind::kDexCacheViaMethod:
2591 return os << "DexCacheViaMethod";
Vladimir Markocac5a7e2016-02-22 10:39:50 +00002592 default:
2593 LOG(FATAL) << "Unknown HLoadString::LoadKind: " << static_cast<int>(rhs);
2594 UNREACHABLE();
2595 }
2596}
2597
Mark Mendellc4701932015-04-10 13:18:51 -04002598void HInstruction::RemoveEnvironmentUsers() {
Vladimir Marko46817b82016-03-29 12:21:58 +01002599 for (const HUseListNode<HEnvironment*>& use : GetEnvUses()) {
2600 HEnvironment* user = use.GetUser();
2601 user->SetRawEnvAt(use.GetIndex(), nullptr);
Mark Mendellc4701932015-04-10 13:18:51 -04002602 }
Vladimir Marko46817b82016-03-29 12:21:58 +01002603 env_uses_.clear();
Mark Mendellc4701932015-04-10 13:18:51 -04002604}
2605
Roland Levillainc9b21f82016-03-23 16:36:59 +00002606// Returns an instruction with the opposite Boolean value from 'cond'.
Mark Mendellf6529172015-11-17 11:16:56 -05002607HInstruction* HGraph::InsertOppositeCondition(HInstruction* cond, HInstruction* cursor) {
2608 ArenaAllocator* allocator = GetArena();
2609
2610 if (cond->IsCondition() &&
2611 !Primitive::IsFloatingPointType(cond->InputAt(0)->GetType())) {
2612 // Can't reverse floating point conditions. We have to use HBooleanNot in that case.
2613 HInstruction* lhs = cond->InputAt(0);
2614 HInstruction* rhs = cond->InputAt(1);
David Brazdil5c004852015-11-23 09:44:52 +00002615 HInstruction* replacement = nullptr;
Mark Mendellf6529172015-11-17 11:16:56 -05002616 switch (cond->AsCondition()->GetOppositeCondition()) { // get *opposite*
2617 case kCondEQ: replacement = new (allocator) HEqual(lhs, rhs); break;
2618 case kCondNE: replacement = new (allocator) HNotEqual(lhs, rhs); break;
2619 case kCondLT: replacement = new (allocator) HLessThan(lhs, rhs); break;
2620 case kCondLE: replacement = new (allocator) HLessThanOrEqual(lhs, rhs); break;
2621 case kCondGT: replacement = new (allocator) HGreaterThan(lhs, rhs); break;
2622 case kCondGE: replacement = new (allocator) HGreaterThanOrEqual(lhs, rhs); break;
2623 case kCondB: replacement = new (allocator) HBelow(lhs, rhs); break;
2624 case kCondBE: replacement = new (allocator) HBelowOrEqual(lhs, rhs); break;
2625 case kCondA: replacement = new (allocator) HAbove(lhs, rhs); break;
2626 case kCondAE: replacement = new (allocator) HAboveOrEqual(lhs, rhs); break;
David Brazdil5c004852015-11-23 09:44:52 +00002627 default:
2628 LOG(FATAL) << "Unexpected condition";
2629 UNREACHABLE();
Mark Mendellf6529172015-11-17 11:16:56 -05002630 }
2631 cursor->GetBlock()->InsertInstructionBefore(replacement, cursor);
2632 return replacement;
2633 } else if (cond->IsIntConstant()) {
2634 HIntConstant* int_const = cond->AsIntConstant();
Roland Levillain1a653882016-03-18 18:05:57 +00002635 if (int_const->IsFalse()) {
Mark Mendellf6529172015-11-17 11:16:56 -05002636 return GetIntConstant(1);
2637 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00002638 DCHECK(int_const->IsTrue()) << int_const->GetValue();
Mark Mendellf6529172015-11-17 11:16:56 -05002639 return GetIntConstant(0);
2640 }
2641 } else {
2642 HInstruction* replacement = new (allocator) HBooleanNot(cond);
2643 cursor->GetBlock()->InsertInstructionBefore(replacement, cursor);
2644 return replacement;
2645 }
2646}
2647
Roland Levillainc9285912015-12-18 10:38:42 +00002648std::ostream& operator<<(std::ostream& os, const MoveOperands& rhs) {
2649 os << "["
2650 << " source=" << rhs.GetSource()
2651 << " destination=" << rhs.GetDestination()
2652 << " type=" << rhs.GetType()
2653 << " instruction=";
2654 if (rhs.GetInstruction() != nullptr) {
2655 os << rhs.GetInstruction()->DebugName() << ' ' << rhs.GetInstruction()->GetId();
2656 } else {
2657 os << "null";
2658 }
2659 os << " ]";
2660 return os;
2661}
2662
Roland Levillain86503782016-02-11 19:07:30 +00002663std::ostream& operator<<(std::ostream& os, TypeCheckKind rhs) {
2664 switch (rhs) {
2665 case TypeCheckKind::kUnresolvedCheck:
2666 return os << "unresolved_check";
2667 case TypeCheckKind::kExactCheck:
2668 return os << "exact_check";
2669 case TypeCheckKind::kClassHierarchyCheck:
2670 return os << "class_hierarchy_check";
2671 case TypeCheckKind::kAbstractClassCheck:
2672 return os << "abstract_class_check";
2673 case TypeCheckKind::kInterfaceCheck:
2674 return os << "interface_check";
2675 case TypeCheckKind::kArrayObjectCheck:
2676 return os << "array_object_check";
2677 case TypeCheckKind::kArrayCheck:
2678 return os << "array_check";
2679 default:
2680 LOG(FATAL) << "Unknown TypeCheckKind: " << static_cast<int>(rhs);
2681 UNREACHABLE();
2682 }
2683}
2684
Andreas Gampe26de38b2016-07-27 17:53:11 -07002685std::ostream& operator<<(std::ostream& os, const MemBarrierKind& kind) {
2686 switch (kind) {
2687 case MemBarrierKind::kAnyStore:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002688 return os << "AnyStore";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002689 case MemBarrierKind::kLoadAny:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002690 return os << "LoadAny";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002691 case MemBarrierKind::kStoreStore:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002692 return os << "StoreStore";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002693 case MemBarrierKind::kAnyAny:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002694 return os << "AnyAny";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002695 case MemBarrierKind::kNTStoreStore:
Andreas Gampe75d2df22016-07-27 21:25:41 -07002696 return os << "NTStoreStore";
Andreas Gampe26de38b2016-07-27 17:53:11 -07002697
2698 default:
2699 LOG(FATAL) << "Unknown MemBarrierKind: " << static_cast<int>(kind);
2700 UNREACHABLE();
2701 }
2702}
2703
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002704} // namespace art