Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1 | /* |
| 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 Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 16 | #include "nodes.h" |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 17 | |
Roland Levillain | 31dd3d6 | 2016-02-16 12:21:02 +0000 | [diff] [blame] | 18 | #include <cfloat> |
| 19 | |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 20 | #include "code_generator.h" |
Vladimir Marko | 391d01f | 2015-11-06 11:02:08 +0000 | [diff] [blame] | 21 | #include "common_dominator.h" |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 22 | #include "ssa_builder.h" |
David Brazdil | a4b8c21 | 2015-05-07 09:59:30 +0100 | [diff] [blame] | 23 | #include "base/bit_vector-inl.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 24 | #include "base/bit_utils.h" |
Vladimir Marko | 1f8695c | 2015-09-24 13:11:31 +0100 | [diff] [blame] | 25 | #include "base/stl_util.h" |
Nicolas Geoffray | a83a54d | 2015-10-02 17:30:26 +0100 | [diff] [blame] | 26 | #include "intrinsics.h" |
David Brazdil | baf89b8 | 2015-09-15 11:36:54 +0100 | [diff] [blame] | 27 | #include "mirror/class-inl.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 28 | #include "scoped_thread_state_change-inl.h" |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 29 | |
| 30 | namespace art { |
| 31 | |
Roland Levillain | 31dd3d6 | 2016-02-16 12:21:02 +0000 | [diff] [blame] | 32 | // 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). |
| 36 | static constexpr bool kEnableFloatingPointStaticEvaluation = (FLT_EVAL_METHOD == 0); |
| 37 | |
Mathieu Chartier | e8a3c57 | 2016-10-11 16:52:17 -0700 | [diff] [blame] | 38 | void HGraph::InitializeInexactObjectRTI(VariableSizedHandleScope* handles) { |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 39 | 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 Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 47 | void HGraph::AddBlock(HBasicBlock* block) { |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 48 | block->SetBlockId(blocks_.size()); |
| 49 | blocks_.push_back(block); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 50 | } |
| 51 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 52 | void HGraph::FindBackEdges(ArenaBitVector* visited) { |
Vladimir Marko | 1f8695c | 2015-09-24 13:11:31 +0100 | [diff] [blame] | 53 | // "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 Marko | f6a35de | 2016-03-21 12:01:50 +0000 | [diff] [blame] | 57 | ArenaBitVector visiting(arena_, blocks_.size(), false, kArenaAllocGraphBuilder); |
Vladimir Marko | 1f8695c | 2015-09-24 13:11:31 +0100 | [diff] [blame] | 58 | // Number of successors visited from a given node, indexed by block id. |
Vladimir Marko | 3ea5a97 | 2016-05-09 20:23:34 +0100 | [diff] [blame] | 59 | ArenaVector<size_t> successors_visited(blocks_.size(), |
| 60 | 0u, |
| 61 | arena_->Adapter(kArenaAllocGraphBuilder)); |
Vladimir Marko | 1f8695c | 2015-09-24 13:11:31 +0100 | [diff] [blame] | 62 | // Stack of nodes that we're currently visiting (same as marked in "visiting" above). |
Vladimir Marko | 3ea5a97 | 2016-05-09 20:23:34 +0100 | [diff] [blame] | 63 | ArenaVector<HBasicBlock*> worklist(arena_->Adapter(kArenaAllocGraphBuilder)); |
Vladimir Marko | 1f8695c | 2015-09-24 13:11:31 +0100 | [diff] [blame] | 64 | 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 Marko | 1f8695c | 2015-09-24 13:11:31 +0100 | [diff] [blame] | 77 | 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 Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 91 | static void RemoveEnvironmentUses(HInstruction* instruction) { |
Nicolas Geoffray | 0a23d74 | 2015-05-07 11:57:35 +0100 | [diff] [blame] | 92 | for (HEnvironment* environment = instruction->GetEnvironment(); |
| 93 | environment != nullptr; |
| 94 | environment = environment->GetParent()) { |
Roland Levillain | fc600dc | 2014-12-02 17:16:31 +0000 | [diff] [blame] | 95 | for (size_t i = 0, e = environment->Size(); i < e; ++i) { |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 96 | if (environment->GetInstructionAt(i) != nullptr) { |
| 97 | environment->RemoveAsUserOfInput(i); |
Roland Levillain | fc600dc | 2014-12-02 17:16:31 +0000 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | } |
| 101 | } |
| 102 | |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 103 | static void RemoveAsUser(HInstruction* instruction) { |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 104 | instruction->RemoveAsUserOfAllInputs(); |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 105 | RemoveEnvironmentUses(instruction); |
| 106 | } |
| 107 | |
Roland Levillain | fc600dc | 2014-12-02 17:16:31 +0000 | [diff] [blame] | 108 | void HGraph::RemoveInstructionsAsUsersFromDeadBlocks(const ArenaBitVector& visited) const { |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 109 | for (size_t i = 0; i < blocks_.size(); ++i) { |
Roland Levillain | fc600dc | 2014-12-02 17:16:31 +0000 | [diff] [blame] | 110 | if (!visited.IsBitSet(i)) { |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 111 | HBasicBlock* block = blocks_[i]; |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 112 | if (block == nullptr) continue; |
Nicolas Geoffray | f776b92 | 2015-04-15 18:22:45 +0100 | [diff] [blame] | 113 | DCHECK(block->GetPhis().IsEmpty()) << "Phis are not inserted at this stage"; |
Roland Levillain | fc600dc | 2014-12-02 17:16:31 +0000 | [diff] [blame] | 114 | for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { |
| 115 | RemoveAsUser(it.Current()); |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | |
Nicolas Geoffray | f776b92 | 2015-04-15 18:22:45 +0100 | [diff] [blame] | 121 | void HGraph::RemoveDeadBlocks(const ArenaBitVector& visited) { |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 122 | for (size_t i = 0; i < blocks_.size(); ++i) { |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 123 | if (!visited.IsBitSet(i)) { |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 124 | HBasicBlock* block = blocks_[i]; |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 125 | if (block == nullptr) continue; |
Nicolas Geoffray | f776b92 | 2015-04-15 18:22:45 +0100 | [diff] [blame] | 126 | // We only need to update the successor, which might be live. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 127 | for (HBasicBlock* successor : block->GetSuccessors()) { |
| 128 | successor->RemovePredecessor(block); |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 129 | } |
Nicolas Geoffray | f776b92 | 2015-04-15 18:22:45 +0100 | [diff] [blame] | 130 | // Remove the block from the list of blocks, so that further analyses |
| 131 | // never see it. |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 132 | blocks_[i] = nullptr; |
Serguei Katkov | 7ba9966 | 2016-03-02 16:25:36 +0600 | [diff] [blame] | 133 | if (block->IsExitBlock()) { |
| 134 | SetExitBlock(nullptr); |
| 135 | } |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 136 | // 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 Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 139 | } |
| 140 | } |
| 141 | } |
| 142 | |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 143 | GraphAnalysisResult HGraph::BuildDominatorTree() { |
Vladimir Marko | f6a35de | 2016-03-21 12:01:50 +0000 | [diff] [blame] | 144 | ArenaBitVector visited(arena_, blocks_.size(), false, kArenaAllocGraphBuilder); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 145 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 146 | // (1) Find the back edges in the graph doing a DFS traversal. |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 147 | FindBackEdges(&visited); |
| 148 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 149 | // (2) Remove instructions and phis from blocks not visited during |
Roland Levillain | fc600dc | 2014-12-02 17:16:31 +0000 | [diff] [blame] | 150 | // the initial DFS as users from other instructions, so that |
| 151 | // users can be safely removed before uses later. |
| 152 | RemoveInstructionsAsUsersFromDeadBlocks(visited); |
| 153 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 154 | // (3) Remove blocks not visited during the initial DFS. |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 155 | // Step (5) requires dead blocks to be removed from the |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 156 | // predecessors list of live blocks. |
| 157 | RemoveDeadBlocks(visited); |
| 158 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 159 | // (4) Simplify the CFG now, so that we don't need to recompute |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 160 | // dominators and the reverse post order. |
| 161 | SimplifyCFG(); |
| 162 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 163 | // (5) Compute the dominance information and the reverse post order. |
Nicolas Geoffray | 1f82ecc | 2015-06-24 12:20:24 +0100 | [diff] [blame] | 164 | ComputeDominanceInformation(); |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 165 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 166 | // (6) Analyze loops discovered through back edge analysis, and |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 167 | // set the loop information on each block. |
| 168 | GraphAnalysisResult result = AnalyzeLoops(); |
| 169 | if (result != kAnalysisSuccess) { |
| 170 | return result; |
| 171 | } |
| 172 | |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 173 | // (7) Precompute per-block try membership before entering the SSA builder, |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 174 | // 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 Geoffray | 1f82ecc | 2015-06-24 12:20:24 +0100 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | void HGraph::ClearDominanceInformation() { |
Vladimir Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 182 | for (HBasicBlock* block : GetReversePostOrder()) { |
| 183 | block->ClearDominanceInformation(); |
Nicolas Geoffray | 1f82ecc | 2015-06-24 12:20:24 +0100 | [diff] [blame] | 184 | } |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 185 | reverse_post_order_.clear(); |
Nicolas Geoffray | 1f82ecc | 2015-06-24 12:20:24 +0100 | [diff] [blame] | 186 | } |
| 187 | |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 188 | void HGraph::ClearLoopInformation() { |
| 189 | SetHasIrreducibleLoops(false); |
Vladimir Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 190 | for (HBasicBlock* block : GetReversePostOrder()) { |
| 191 | block->SetLoopInformation(nullptr); |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 192 | } |
| 193 | } |
| 194 | |
Nicolas Geoffray | 1f82ecc | 2015-06-24 12:20:24 +0100 | [diff] [blame] | 195 | void HBasicBlock::ClearDominanceInformation() { |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 196 | dominated_blocks_.clear(); |
Nicolas Geoffray | 1f82ecc | 2015-06-24 12:20:24 +0100 | [diff] [blame] | 197 | dominator_ = nullptr; |
| 198 | } |
| 199 | |
Nicolas Geoffray | 09aa147 | 2016-01-19 10:52:54 +0000 | [diff] [blame] | 200 | HInstruction* HBasicBlock::GetFirstInstructionDisregardMoves() const { |
| 201 | HInstruction* instruction = GetFirstInstruction(); |
| 202 | while (instruction->IsParallelMove()) { |
| 203 | instruction = instruction->GetNext(); |
| 204 | } |
| 205 | return instruction; |
| 206 | } |
| 207 | |
David Brazdil | 3f4a522 | 2016-05-06 12:46:21 +0100 | [diff] [blame] | 208 | static 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 Geoffray | 1f82ecc | 2015-06-24 12:20:24 +0100 | [diff] [blame] | 224 | void HGraph::ComputeDominanceInformation() { |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 225 | DCHECK(reverse_post_order_.empty()); |
| 226 | reverse_post_order_.reserve(blocks_.size()); |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 227 | reverse_post_order_.push_back(entry_block_); |
Vladimir Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 228 | |
| 229 | // Number of visits of a given node, indexed by block id. |
Vladimir Marko | 3ea5a97 | 2016-05-09 20:23:34 +0100 | [diff] [blame] | 230 | ArenaVector<size_t> visits(blocks_.size(), 0u, arena_->Adapter(kArenaAllocGraphBuilder)); |
Vladimir Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 231 | // Number of successors visited from a given node, indexed by block id. |
Vladimir Marko | 3ea5a97 | 2016-05-09 20:23:34 +0100 | [diff] [blame] | 232 | ArenaVector<size_t> successors_visited(blocks_.size(), |
| 233 | 0u, |
| 234 | arena_->Adapter(kArenaAllocGraphBuilder)); |
Vladimir Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 235 | // Nodes for which we need to visit successors. |
Vladimir Marko | 3ea5a97 | 2016-05-09 20:23:34 +0100 | [diff] [blame] | 236 | ArenaVector<HBasicBlock*> worklist(arena_->Adapter(kArenaAllocGraphBuilder)); |
Vladimir Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 237 | 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 Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 247 | HBasicBlock* successor = current->GetSuccessors()[successors_visited[current_id]++]; |
David Brazdil | 3f4a522 | 2016-05-06 12:46:21 +0100 | [diff] [blame] | 248 | UpdateDominatorOfSuccessor(current, successor); |
Vladimir Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 249 | |
| 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 Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 252 | if (++visits[successor->GetBlockId()] == |
| 253 | successor->GetPredecessors().size() - successor->NumberOfBackEdges()) { |
Vladimir Marko | d76d139 | 2015-09-23 16:07:14 +0100 | [diff] [blame] | 254 | reverse_post_order_.push_back(successor); |
| 255 | worklist.push_back(successor); |
| 256 | } |
| 257 | } |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 258 | } |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 259 | |
David Brazdil | 3f4a522 | 2016-05-06 12:46:21 +0100 | [diff] [blame] | 260 | // 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 Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 278 | for (HBasicBlock* block : GetReversePostOrder()) { |
David Brazdil | 3f4a522 | 2016-05-06 12:46:21 +0100 | [diff] [blame] | 279 | 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 Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 289 | for (HBasicBlock* block : GetReversePostOrder()) { |
David Brazdil | 3f4a522 | 2016-05-06 12:46:21 +0100 | [diff] [blame] | 290 | for (HBasicBlock* successor : block->GetSuccessors()) { |
| 291 | DCHECK(!UpdateDominatorOfSuccessor(block, successor)); |
| 292 | } |
| 293 | } |
| 294 | } |
| 295 | |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 296 | // Populate `dominated_blocks_` information after computing all dominators. |
Roland Levillain | c9b21f8 | 2016-03-23 16:36:59 +0000 | [diff] [blame] | 297 | // The potential presence of irreducible loops requires to do it after. |
Vladimir Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 298 | for (HBasicBlock* block : GetReversePostOrder()) { |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 299 | if (!block->IsEntryBlock()) { |
| 300 | block->GetDominator()->AddDominatedBlock(block); |
| 301 | } |
| 302 | } |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 303 | } |
| 304 | |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 305 | HBasicBlock* HGraph::SplitEdge(HBasicBlock* block, HBasicBlock* successor) { |
David Brazdil | 3e18738 | 2015-06-26 09:59:52 +0000 | [diff] [blame] | 306 | HBasicBlock* new_block = new (arena_) HBasicBlock(this, successor->GetDexPc()); |
| 307 | AddBlock(new_block); |
David Brazdil | 3e18738 | 2015-06-26 09:59:52 +0000 | [diff] [blame] | 308 | // Use `InsertBetween` to ensure the predecessor index and successor index of |
| 309 | // `block` and `successor` are preserved. |
| 310 | new_block->InsertBetween(block, successor); |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 311 | return new_block; |
| 312 | } |
| 313 | |
| 314 | void 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 Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 318 | new_block->AddInstruction(new (arena_) HGoto(successor->GetDexPc())); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 319 | 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 Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 322 | if (info->IsBackEdge(*block)) { |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 323 | info->RemoveBackEdge(block); |
| 324 | info->AddBackEdge(new_block); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 325 | } |
| 326 | } |
| 327 | } |
| 328 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 329 | void HGraph::SimplifyLoop(HBasicBlock* header) { |
| 330 | HLoopInformation* info = header->GetLoopInformation(); |
| 331 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 332 | // 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 Geoffray | 788f2f0 | 2016-01-22 12:41:38 +0000 | [diff] [blame] | 334 | // loop. Also, don't allow the entry block to be a pre header: this simplifies inlining |
| 335 | // this graph. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 336 | size_t number_of_incomings = header->GetPredecessors().size() - info->NumberOfBackEdges(); |
Nicolas Geoffray | 788f2f0 | 2016-01-22 12:41:38 +0000 | [diff] [blame] | 337 | if (number_of_incomings != 1 || (GetEntryBlock()->GetSingleSuccessor() == header)) { |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 338 | HBasicBlock* pre_header = new (arena_) HBasicBlock(this, header->GetDexPc()); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 339 | AddBlock(pre_header); |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 340 | pre_header->AddInstruction(new (arena_) HGoto(header->GetDexPc())); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 341 | |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 342 | for (size_t pred = 0; pred < header->GetPredecessors().size(); ++pred) { |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 343 | HBasicBlock* predecessor = header->GetPredecessors()[pred]; |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 344 | if (!info->IsBackEdge(*predecessor)) { |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 345 | predecessor->ReplaceSuccessor(header, pre_header); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 346 | pred--; |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 347 | } |
| 348 | } |
| 349 | pre_header->AddSuccessor(header); |
| 350 | } |
Nicolas Geoffray | 604c6e4 | 2014-09-17 12:08:44 +0100 | [diff] [blame] | 351 | |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 352 | // Make sure the first predecessor of a loop header is the incoming block. |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 353 | if (info->IsBackEdge(*header->GetPredecessors()[0])) { |
| 354 | HBasicBlock* to_swap = header->GetPredecessors()[0]; |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 355 | for (size_t pred = 1, e = header->GetPredecessors().size(); pred < e; ++pred) { |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 356 | HBasicBlock* predecessor = header->GetPredecessors()[pred]; |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 357 | if (!info->IsBackEdge(*predecessor)) { |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 358 | header->predecessors_[pred] = to_swap; |
| 359 | header->predecessors_[0] = predecessor; |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 360 | break; |
| 361 | } |
| 362 | } |
Nicolas Geoffray | 604c6e4 | 2014-09-17 12:08:44 +0100 | [diff] [blame] | 363 | } |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 364 | |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 365 | HInstruction* first_instruction = header->GetFirstInstruction(); |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 366 | if (first_instruction != nullptr && first_instruction->IsSuspendCheck()) { |
| 367 | // Called from DeadBlockElimination. Update SuspendCheck pointer. |
| 368 | info->SetSuspendCheck(first_instruction->AsSuspendCheck()); |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 369 | } |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 370 | } |
| 371 | |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 372 | void HGraph::ComputeTryBlockInformation() { |
| 373 | // Iterate in reverse post order to propagate try membership information from |
| 374 | // predecessors to their successors. |
Vladimir Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 375 | for (HBasicBlock* block : GetReversePostOrder()) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 376 | 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 Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 385 | HBasicBlock* first_predecessor = block->GetPredecessors()[0]; |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 386 | DCHECK(!block->IsLoopHeader() || !block->GetLoopInformation()->IsBackEdge(*first_predecessor)); |
David Brazdil | ec16f79 | 2015-08-19 15:04:01 +0100 | [diff] [blame] | 387 | const HTryBoundary* try_entry = first_predecessor->ComputeTryEntryOfSuccessors(); |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 388 | 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 Brazdil | ec16f79 | 2015-08-19 15:04:01 +0100 | [diff] [blame] | 393 | block->SetTryCatchInformation(new (arena_) TryCatchInformation(*try_entry)); |
| 394 | } |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 395 | } |
| 396 | } |
| 397 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 398 | void HGraph::SimplifyCFG() { |
David Brazdil | db51efb | 2015-11-06 01:36:20 +0000 | [diff] [blame] | 399 | // Simplify the CFG for future analysis, and code generation: |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 400 | // (1): Split critical edges. |
David Brazdil | db51efb | 2015-11-06 01:36:20 +0000 | [diff] [blame] | 401 | // (2): Simplify loops by having only one preheader. |
Vladimir Marko | b7d8e8c | 2015-09-17 15:47:05 +0100 | [diff] [blame] | 402 | // 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 Geoffray | f776b92 | 2015-04-15 18:22:45 +0100 | [diff] [blame] | 406 | if (block == nullptr) continue; |
David Brazdil | db51efb | 2015-11-06 01:36:20 +0000 | [diff] [blame] | 407 | 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 Brazdil | d26a411 | 2015-11-10 11:07:31 +0000 | [diff] [blame] | 411 | 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 Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 414 | DCHECK(!successor->IsCatchBlock()); |
David Brazdil | db51efb | 2015-11-06 01:36:20 +0000 | [diff] [blame] | 415 | if (successor == exit_block_) { |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 416 | // (Throw/Return/ReturnVoid)->TryBoundary->Exit. Special case which we |
| 417 | // do not want to split because Goto->Exit is not allowed. |
David Brazdil | db51efb | 2015-11-06 01:36:20 +0000 | [diff] [blame] | 418 | DCHECK(block->IsSingleTryBoundary()); |
David Brazdil | db51efb | 2015-11-06 01:36:20 +0000 | [diff] [blame] | 419 | } else if (successor->GetPredecessors().size() > 1) { |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 420 | SplitCriticalEdge(block, successor); |
David Brazdil | d26a411 | 2015-11-10 11:07:31 +0000 | [diff] [blame] | 421 | // 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 Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 426 | } |
| 427 | } |
| 428 | } |
| 429 | if (block->IsLoopHeader()) { |
| 430 | SimplifyLoop(block); |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 431 | } 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 Geoffray | 09aa147 | 2016-01-19 10:52:54 +0000 | [diff] [blame] | 435 | // a loop got dismantled. Just remove the suspend check. |
| 436 | block->RemoveInstruction(block->GetFirstInstruction()); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 437 | } |
| 438 | } |
| 439 | } |
| 440 | |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 441 | GraphAnalysisResult HGraph::AnalyzeLoops() const { |
Nicolas Geoffray | d7c2fdc | 2016-05-10 14:35:34 +0100 | [diff] [blame] | 442 | // 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 Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 445 | for (HBasicBlock* block : GetPostOrder()) { |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 446 | if (block->IsLoopHeader()) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 447 | 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 Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 450 | return kAnalysisFailThrowCatchLoop; |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 451 | } |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 452 | block->GetLoopInformation()->Populate(); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 453 | } |
| 454 | } |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 455 | return kAnalysisSuccess; |
| 456 | } |
| 457 | |
| 458 | void 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 Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 470 | } |
| 471 | |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 472 | void HGraph::InsertConstant(HConstant* constant) { |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 473 | // 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 Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 489 | entry_block_->AddInstruction(constant); |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 490 | } else { |
| 491 | entry_block_->InsertInstructionBefore(constant, insert_before); |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 492 | } |
| 493 | } |
| 494 | |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 495 | HNullConstant* HGraph::GetNullConstant(uint32_t dex_pc) { |
Nicolas Geoffray | 18e6873 | 2015-06-17 23:09:05 +0100 | [diff] [blame] | 496 | // 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 Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 500 | cached_null_constant_ = new (arena_) HNullConstant(dex_pc); |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 501 | cached_null_constant_->SetReferenceTypeInfo(inexact_object_rti_); |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 502 | InsertConstant(cached_null_constant_); |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 503 | } |
David Brazdil | 4833f5a | 2015-12-16 10:37:39 +0000 | [diff] [blame] | 504 | if (kIsDebugBuild) { |
| 505 | ScopedObjectAccess soa(Thread::Current()); |
| 506 | DCHECK(cached_null_constant_->GetReferenceTypeInfo().IsValid()); |
| 507 | } |
Nicolas Geoffray | d6138ef | 2015-02-18 14:48:53 +0000 | [diff] [blame] | 508 | return cached_null_constant_; |
| 509 | } |
| 510 | |
Nicolas Geoffray | 76b1e17 | 2015-05-27 17:18:33 +0100 | [diff] [blame] | 511 | HCurrentMethod* HGraph::GetCurrentMethod() { |
Nicolas Geoffray | f78848f | 2015-06-17 11:57:56 +0100 | [diff] [blame] | 512 | // 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 Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 516 | cached_current_method_ = new (arena_) HCurrentMethod( |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 517 | Is64BitInstructionSet(instruction_set_) ? Primitive::kPrimLong : Primitive::kPrimInt, |
| 518 | entry_block_->GetDexPc()); |
Nicolas Geoffray | 76b1e17 | 2015-05-27 17:18:33 +0100 | [diff] [blame] | 519 | 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 Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 529 | HConstant* HGraph::GetConstant(Primitive::Type type, int64_t value, uint32_t dex_pc) { |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 530 | 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 Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 539 | return GetIntConstant(static_cast<int32_t>(value), dex_pc); |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 540 | |
| 541 | case Primitive::Type::kPrimLong: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 542 | return GetLongConstant(value, dex_pc); |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 543 | |
| 544 | default: |
| 545 | LOG(FATAL) << "Unsupported constant type"; |
| 546 | UNREACHABLE(); |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 547 | } |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 548 | } |
| 549 | |
Nicolas Geoffray | f213e05 | 2015-04-27 08:53:46 +0000 | [diff] [blame] | 550 | void 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 | |
| 556 | void 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 Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 562 | void HLoopInformation::Add(HBasicBlock* block) { |
| 563 | blocks_.SetBit(block->GetBlockId()); |
| 564 | } |
| 565 | |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 566 | void HLoopInformation::Remove(HBasicBlock* block) { |
| 567 | blocks_.ClearBit(block->GetBlockId()); |
| 568 | } |
| 569 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 570 | void HLoopInformation::PopulateRecursive(HBasicBlock* block) { |
| 571 | if (blocks_.IsBitSet(block->GetBlockId())) { |
| 572 | return; |
| 573 | } |
| 574 | |
| 575 | blocks_.SetBit(block->GetBlockId()); |
| 576 | block->SetInLoop(this); |
Nicolas Geoffray | d7c2fdc | 2016-05-10 14:35:34 +0100 | [diff] [blame] | 577 | 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 Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 585 | for (HBasicBlock* predecessor : block->GetPredecessors()) { |
| 586 | PopulateRecursive(predecessor); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 590 | void 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 Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 596 | return; |
| 597 | } |
| 598 | |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 599 | bool is_finalized = false; |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 600 | 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 Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 607 | PopulateIrreducibleRecursive(pre_header, finalized); |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 608 | if (blocks_.IsBitSet(pre_header->GetBlockId())) { |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 609 | block->SetInLoop(this); |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 610 | blocks_.SetBit(block_id); |
| 611 | finalized->SetBit(block_id); |
| 612 | is_finalized = true; |
| 613 | |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 614 | HLoopInformation* info = block->GetLoopInformation(); |
| 615 | for (HBasicBlock* back_edge : info->GetBackEdges()) { |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 616 | PopulateIrreducibleRecursive(back_edge, finalized); |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 617 | } |
| 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 Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 623 | PopulateIrreducibleRecursive(predecessor, finalized); |
| 624 | if (!is_finalized && blocks_.IsBitSet(predecessor->GetBlockId())) { |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 625 | block->SetInLoop(this); |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 626 | blocks_.SetBit(block_id); |
| 627 | finalized->SetBit(block_id); |
| 628 | is_finalized = true; |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 629 | } |
| 630 | } |
| 631 | } |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 632 | |
| 633 | // All predecessors have been recursively visited. Mark finalized if not marked yet. |
| 634 | if (!is_finalized) { |
| 635 | finalized->SetBit(block_id); |
| 636 | } |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | void HLoopInformation::Populate() { |
David Brazdil | a4b8c21 | 2015-05-07 09:59:30 +0100 | [diff] [blame] | 640 | DCHECK_EQ(blocks_.NumSetBits(), 0u) << "Loop information has already been populated"; |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 641 | // 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 Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 646 | HGraph* graph = header_->GetGraph(); |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 647 | blocks_.SetBit(header_->GetBlockId()); |
| 648 | header_->SetInLoop(this); |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 649 | |
David Brazdil | 3f4a522 | 2016-05-06 12:46:21 +0100 | [diff] [blame] | 650 | bool is_irreducible_loop = HasBackEdgeNotDominatedByHeader(); |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 651 | |
| 652 | if (is_irreducible_loop) { |
| 653 | ArenaBitVector visited(graph->GetArena(), |
| 654 | graph->GetBlocks().size(), |
| 655 | /* expandable */ false, |
| 656 | kArenaAllocGraphBuilder); |
David Brazdil | 5a62059 | 2016-05-05 11:27:03 +0100 | [diff] [blame] | 657 | // Stop marking blocks at the loop header. |
| 658 | visited.SetBit(header_->GetBlockId()); |
| 659 | |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 660 | for (HBasicBlock* back_edge : GetBackEdges()) { |
| 661 | PopulateIrreducibleRecursive(back_edge, &visited); |
| 662 | } |
| 663 | } else { |
| 664 | for (HBasicBlock* back_edge : GetBackEdges()) { |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 665 | PopulateRecursive(back_edge); |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 666 | } |
David Brazdil | a4b8c21 | 2015-05-07 09:59:30 +0100 | [diff] [blame] | 667 | } |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 668 | |
Vladimir Marko | fd66c50 | 2016-04-18 15:37:01 +0100 | [diff] [blame] | 669 | 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 Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 687 | irreducible_ = true; |
Nicolas Geoffray | d7c2fdc | 2016-05-10 14:35:34 +0100 | [diff] [blame] | 688 | contains_irreducible_loop_ = true; |
David Brazdil | c2e8af9 | 2016-04-05 17:15:19 +0100 | [diff] [blame] | 689 | graph->SetHasIrreducibleLoops(true); |
| 690 | } |
David Brazdil | a4b8c21 | 2015-05-07 09:59:30 +0100 | [diff] [blame] | 691 | } |
| 692 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 693 | HBasicBlock* HLoopInformation::GetPreHeader() const { |
Nicolas Geoffray | 15bd228 | 2016-01-05 15:55:41 +0000 | [diff] [blame] | 694 | HBasicBlock* block = header_->GetPredecessors()[0]; |
| 695 | DCHECK(irreducible_ || (block == header_->GetDominator())); |
| 696 | return block; |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | bool HLoopInformation::Contains(const HBasicBlock& block) const { |
| 700 | return blocks_.IsBitSet(block.GetBlockId()); |
| 701 | } |
| 702 | |
| 703 | bool HLoopInformation::IsIn(const HLoopInformation& other) const { |
| 704 | return other.blocks_.IsBitSet(header_->GetBlockId()); |
| 705 | } |
| 706 | |
Mingyao Yang | 4b467ed | 2015-11-19 17:04:22 -0800 | [diff] [blame] | 707 | bool HLoopInformation::IsDefinedOutOfTheLoop(HInstruction* instruction) const { |
| 708 | return !blocks_.IsBitSet(instruction->GetBlock()->GetBlockId()); |
Aart Bik | 73f1f3b | 2015-10-28 15:28:08 -0700 | [diff] [blame] | 709 | } |
| 710 | |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 711 | size_t HLoopInformation::GetLifetimeEnd() const { |
| 712 | size_t last_position = 0; |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 713 | for (HBasicBlock* back_edge : GetBackEdges()) { |
| 714 | last_position = std::max(back_edge->GetLifetimeEnd(), last_position); |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 715 | } |
| 716 | return last_position; |
| 717 | } |
| 718 | |
David Brazdil | 3f4a522 | 2016-05-06 12:46:21 +0100 | [diff] [blame] | 719 | bool HLoopInformation::HasBackEdgeNotDominatedByHeader() const { |
| 720 | for (HBasicBlock* back_edge : GetBackEdges()) { |
| 721 | DCHECK(back_edge->GetDominator() != nullptr); |
| 722 | if (!header_->Dominates(back_edge)) { |
| 723 | return true; |
| 724 | } |
| 725 | } |
| 726 | return false; |
| 727 | } |
| 728 | |
Anton Shamin | f89381f | 2016-05-16 16:44:13 +0600 | [diff] [blame] | 729 | bool HLoopInformation::DominatesAllBackEdges(HBasicBlock* block) { |
| 730 | for (HBasicBlock* back_edge : GetBackEdges()) { |
| 731 | if (!block->Dominates(back_edge)) { |
| 732 | return false; |
| 733 | } |
| 734 | } |
| 735 | return true; |
| 736 | } |
| 737 | |
David Sehr | c757dec | 2016-11-04 15:48:34 -0700 | [diff] [blame] | 738 | |
| 739 | bool HLoopInformation::HasExitEdge() const { |
| 740 | // Determine if this loop has at least one exit edge. |
| 741 | HBlocksInLoopReversePostOrderIterator it_loop(*this); |
| 742 | for (; !it_loop.Done(); it_loop.Advance()) { |
| 743 | for (HBasicBlock* successor : it_loop.Current()->GetSuccessors()) { |
| 744 | if (!Contains(*successor)) { |
| 745 | return true; |
| 746 | } |
| 747 | } |
| 748 | } |
| 749 | return false; |
| 750 | } |
| 751 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 752 | bool HBasicBlock::Dominates(HBasicBlock* other) const { |
| 753 | // Walk up the dominator tree from `other`, to find out if `this` |
| 754 | // is an ancestor. |
| 755 | HBasicBlock* current = other; |
| 756 | while (current != nullptr) { |
| 757 | if (current == this) { |
| 758 | return true; |
| 759 | } |
| 760 | current = current->GetDominator(); |
| 761 | } |
| 762 | return false; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 763 | } |
| 764 | |
Nicolas Geoffray | 191c4b1 | 2014-10-07 14:14:27 +0100 | [diff] [blame] | 765 | static void UpdateInputsUsers(HInstruction* instruction) { |
Vladimir Marko | e900491 | 2016-06-16 16:50:52 +0100 | [diff] [blame] | 766 | HInputsRef inputs = instruction->GetInputs(); |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 767 | for (size_t i = 0; i < inputs.size(); ++i) { |
| 768 | inputs[i]->AddUseAt(instruction, i); |
Nicolas Geoffray | 191c4b1 | 2014-10-07 14:14:27 +0100 | [diff] [blame] | 769 | } |
| 770 | // Environment should be created later. |
| 771 | DCHECK(!instruction->HasEnvironment()); |
| 772 | } |
| 773 | |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 774 | void HBasicBlock::ReplaceAndRemoveInstructionWith(HInstruction* initial, |
| 775 | HInstruction* replacement) { |
| 776 | DCHECK(initial->GetBlock() == this); |
Mark Mendell | 805b3b5 | 2015-09-18 14:10:29 -0400 | [diff] [blame] | 777 | if (initial->IsControlFlow()) { |
| 778 | // We can only replace a control flow instruction with another control flow instruction. |
| 779 | DCHECK(replacement->IsControlFlow()); |
| 780 | DCHECK_EQ(replacement->GetId(), -1); |
| 781 | DCHECK_EQ(replacement->GetType(), Primitive::kPrimVoid); |
| 782 | DCHECK_EQ(initial->GetBlock(), this); |
| 783 | DCHECK_EQ(initial->GetType(), Primitive::kPrimVoid); |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 784 | DCHECK(initial->GetUses().empty()); |
| 785 | DCHECK(initial->GetEnvUses().empty()); |
Mark Mendell | 805b3b5 | 2015-09-18 14:10:29 -0400 | [diff] [blame] | 786 | replacement->SetBlock(this); |
| 787 | replacement->SetId(GetGraph()->GetNextInstructionId()); |
| 788 | instructions_.InsertInstructionBefore(replacement, initial); |
| 789 | UpdateInputsUsers(replacement); |
| 790 | } else { |
| 791 | InsertInstructionBefore(replacement, initial); |
| 792 | initial->ReplaceWith(replacement); |
| 793 | } |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 794 | RemoveInstruction(initial); |
| 795 | } |
| 796 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 797 | static void Add(HInstructionList* instruction_list, |
| 798 | HBasicBlock* block, |
| 799 | HInstruction* instruction) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 800 | DCHECK(instruction->GetBlock() == nullptr); |
Nicolas Geoffray | 43c8642 | 2014-03-18 11:58:24 +0000 | [diff] [blame] | 801 | DCHECK_EQ(instruction->GetId(), -1); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 802 | instruction->SetBlock(block); |
| 803 | instruction->SetId(block->GetGraph()->GetNextInstructionId()); |
Nicolas Geoffray | 191c4b1 | 2014-10-07 14:14:27 +0100 | [diff] [blame] | 804 | UpdateInputsUsers(instruction); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 805 | instruction_list->AddInstruction(instruction); |
| 806 | } |
| 807 | |
| 808 | void HBasicBlock::AddInstruction(HInstruction* instruction) { |
| 809 | Add(&instructions_, this, instruction); |
| 810 | } |
| 811 | |
| 812 | void HBasicBlock::AddPhi(HPhi* phi) { |
| 813 | Add(&phis_, this, phi); |
| 814 | } |
| 815 | |
David Brazdil | c3d743f | 2015-04-22 13:40:50 +0100 | [diff] [blame] | 816 | void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { |
| 817 | DCHECK(!cursor->IsPhi()); |
| 818 | DCHECK(!instruction->IsPhi()); |
| 819 | DCHECK_EQ(instruction->GetId(), -1); |
| 820 | DCHECK_NE(cursor->GetId(), -1); |
| 821 | DCHECK_EQ(cursor->GetBlock(), this); |
| 822 | DCHECK(!instruction->IsControlFlow()); |
| 823 | instruction->SetBlock(this); |
| 824 | instruction->SetId(GetGraph()->GetNextInstructionId()); |
| 825 | UpdateInputsUsers(instruction); |
| 826 | instructions_.InsertInstructionBefore(instruction, cursor); |
| 827 | } |
| 828 | |
Guillaume "Vermeille" Sanchez | 2967ec6 | 2015-04-24 16:36:52 +0100 | [diff] [blame] | 829 | void HBasicBlock::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) { |
| 830 | DCHECK(!cursor->IsPhi()); |
| 831 | DCHECK(!instruction->IsPhi()); |
| 832 | DCHECK_EQ(instruction->GetId(), -1); |
| 833 | DCHECK_NE(cursor->GetId(), -1); |
| 834 | DCHECK_EQ(cursor->GetBlock(), this); |
| 835 | DCHECK(!instruction->IsControlFlow()); |
| 836 | DCHECK(!cursor->IsControlFlow()); |
| 837 | instruction->SetBlock(this); |
| 838 | instruction->SetId(GetGraph()->GetNextInstructionId()); |
| 839 | UpdateInputsUsers(instruction); |
| 840 | instructions_.InsertInstructionAfter(instruction, cursor); |
| 841 | } |
| 842 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 843 | void HBasicBlock::InsertPhiAfter(HPhi* phi, HPhi* cursor) { |
| 844 | DCHECK_EQ(phi->GetId(), -1); |
| 845 | DCHECK_NE(cursor->GetId(), -1); |
| 846 | DCHECK_EQ(cursor->GetBlock(), this); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 847 | phi->SetBlock(this); |
| 848 | phi->SetId(GetGraph()->GetNextInstructionId()); |
| 849 | UpdateInputsUsers(phi); |
David Brazdil | c3d743f | 2015-04-22 13:40:50 +0100 | [diff] [blame] | 850 | phis_.InsertInstructionAfter(phi, cursor); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 851 | } |
| 852 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 853 | static void Remove(HInstructionList* instruction_list, |
| 854 | HBasicBlock* block, |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 855 | HInstruction* instruction, |
| 856 | bool ensure_safety) { |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 857 | DCHECK_EQ(block, instruction->GetBlock()); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 858 | instruction->SetBlock(nullptr); |
| 859 | instruction_list->RemoveInstruction(instruction); |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 860 | if (ensure_safety) { |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 861 | DCHECK(instruction->GetUses().empty()); |
| 862 | DCHECK(instruction->GetEnvUses().empty()); |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 863 | RemoveAsUser(instruction); |
| 864 | } |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 865 | } |
| 866 | |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 867 | void HBasicBlock::RemoveInstruction(HInstruction* instruction, bool ensure_safety) { |
David Brazdil | c7508e9 | 2015-04-27 13:28:57 +0100 | [diff] [blame] | 868 | DCHECK(!instruction->IsPhi()); |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 869 | Remove(&instructions_, this, instruction, ensure_safety); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 870 | } |
| 871 | |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 872 | void HBasicBlock::RemovePhi(HPhi* phi, bool ensure_safety) { |
| 873 | Remove(&phis_, this, phi, ensure_safety); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 874 | } |
| 875 | |
David Brazdil | c7508e9 | 2015-04-27 13:28:57 +0100 | [diff] [blame] | 876 | void HBasicBlock::RemoveInstructionOrPhi(HInstruction* instruction, bool ensure_safety) { |
| 877 | if (instruction->IsPhi()) { |
| 878 | RemovePhi(instruction->AsPhi(), ensure_safety); |
| 879 | } else { |
| 880 | RemoveInstruction(instruction, ensure_safety); |
| 881 | } |
| 882 | } |
| 883 | |
Vladimir Marko | 71bf809 | 2015-09-15 15:33:14 +0100 | [diff] [blame] | 884 | void HEnvironment::CopyFrom(const ArenaVector<HInstruction*>& locals) { |
| 885 | for (size_t i = 0; i < locals.size(); i++) { |
| 886 | HInstruction* instruction = locals[i]; |
Nicolas Geoffray | 8c0c91a | 2015-05-07 11:46:05 +0100 | [diff] [blame] | 887 | SetRawEnvAt(i, instruction); |
| 888 | if (instruction != nullptr) { |
| 889 | instruction->AddEnvUseAt(this, i); |
| 890 | } |
| 891 | } |
| 892 | } |
| 893 | |
David Brazdil | ed59619 | 2015-01-23 10:39:45 +0000 | [diff] [blame] | 894 | void HEnvironment::CopyFrom(HEnvironment* env) { |
| 895 | for (size_t i = 0; i < env->Size(); i++) { |
| 896 | HInstruction* instruction = env->GetInstructionAt(i); |
| 897 | SetRawEnvAt(i, instruction); |
| 898 | if (instruction != nullptr) { |
| 899 | instruction->AddEnvUseAt(this, i); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 900 | } |
David Brazdil | ed59619 | 2015-01-23 10:39:45 +0000 | [diff] [blame] | 901 | } |
| 902 | } |
| 903 | |
Mingyao Yang | 206d6fd | 2015-04-13 16:46:28 -0700 | [diff] [blame] | 904 | void HEnvironment::CopyFromWithLoopPhiAdjustment(HEnvironment* env, |
| 905 | HBasicBlock* loop_header) { |
| 906 | DCHECK(loop_header->IsLoopHeader()); |
| 907 | for (size_t i = 0; i < env->Size(); i++) { |
| 908 | HInstruction* instruction = env->GetInstructionAt(i); |
| 909 | SetRawEnvAt(i, instruction); |
| 910 | if (instruction == nullptr) { |
| 911 | continue; |
| 912 | } |
| 913 | if (instruction->IsLoopHeaderPhi() && (instruction->GetBlock() == loop_header)) { |
| 914 | // At the end of the loop pre-header, the corresponding value for instruction |
| 915 | // is the first input of the phi. |
| 916 | HInstruction* initial = instruction->AsPhi()->InputAt(0); |
Mingyao Yang | 206d6fd | 2015-04-13 16:46:28 -0700 | [diff] [blame] | 917 | SetRawEnvAt(i, initial); |
| 918 | initial->AddEnvUseAt(this, i); |
| 919 | } else { |
| 920 | instruction->AddEnvUseAt(this, i); |
| 921 | } |
| 922 | } |
| 923 | } |
| 924 | |
David Brazdil | 1abb419 | 2015-02-17 18:33:36 +0000 | [diff] [blame] | 925 | void HEnvironment::RemoveAsUserOfInput(size_t index) const { |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 926 | const HUserRecord<HEnvironment*>& env_use = vregs_[index]; |
| 927 | HInstruction* user = env_use.GetInstruction(); |
| 928 | auto before_env_use_node = env_use.GetBeforeUseNode(); |
| 929 | user->env_uses_.erase_after(before_env_use_node); |
| 930 | user->FixUpUserRecordsAfterEnvUseRemoval(before_env_use_node); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 931 | } |
| 932 | |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 933 | HInstruction::InstructionKind HInstruction::GetKind() const { |
| 934 | return GetKindInternal(); |
| 935 | } |
| 936 | |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 937 | HInstruction* HInstruction::GetNextDisregardingMoves() const { |
| 938 | HInstruction* next = GetNext(); |
| 939 | while (next != nullptr && next->IsParallelMove()) { |
| 940 | next = next->GetNext(); |
| 941 | } |
| 942 | return next; |
| 943 | } |
| 944 | |
| 945 | HInstruction* HInstruction::GetPreviousDisregardingMoves() const { |
| 946 | HInstruction* previous = GetPrevious(); |
| 947 | while (previous != nullptr && previous->IsParallelMove()) { |
| 948 | previous = previous->GetPrevious(); |
| 949 | } |
| 950 | return previous; |
| 951 | } |
| 952 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 953 | void HInstructionList::AddInstruction(HInstruction* instruction) { |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 954 | if (first_instruction_ == nullptr) { |
| 955 | DCHECK(last_instruction_ == nullptr); |
| 956 | first_instruction_ = last_instruction_ = instruction; |
| 957 | } else { |
| 958 | last_instruction_->next_ = instruction; |
| 959 | instruction->previous_ = last_instruction_; |
| 960 | last_instruction_ = instruction; |
| 961 | } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 962 | } |
| 963 | |
David Brazdil | c3d743f | 2015-04-22 13:40:50 +0100 | [diff] [blame] | 964 | void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { |
| 965 | DCHECK(Contains(cursor)); |
| 966 | if (cursor == first_instruction_) { |
| 967 | cursor->previous_ = instruction; |
| 968 | instruction->next_ = cursor; |
| 969 | first_instruction_ = instruction; |
| 970 | } else { |
| 971 | instruction->previous_ = cursor->previous_; |
| 972 | instruction->next_ = cursor; |
| 973 | cursor->previous_ = instruction; |
| 974 | instruction->previous_->next_ = instruction; |
| 975 | } |
| 976 | } |
| 977 | |
| 978 | void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) { |
| 979 | DCHECK(Contains(cursor)); |
| 980 | if (cursor == last_instruction_) { |
| 981 | cursor->next_ = instruction; |
| 982 | instruction->previous_ = cursor; |
| 983 | last_instruction_ = instruction; |
| 984 | } else { |
| 985 | instruction->next_ = cursor->next_; |
| 986 | instruction->previous_ = cursor; |
| 987 | cursor->next_ = instruction; |
| 988 | instruction->next_->previous_ = instruction; |
| 989 | } |
| 990 | } |
| 991 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 992 | void HInstructionList::RemoveInstruction(HInstruction* instruction) { |
| 993 | if (instruction->previous_ != nullptr) { |
| 994 | instruction->previous_->next_ = instruction->next_; |
| 995 | } |
| 996 | if (instruction->next_ != nullptr) { |
| 997 | instruction->next_->previous_ = instruction->previous_; |
| 998 | } |
| 999 | if (instruction == first_instruction_) { |
| 1000 | first_instruction_ = instruction->next_; |
| 1001 | } |
| 1002 | if (instruction == last_instruction_) { |
| 1003 | last_instruction_ = instruction->previous_; |
| 1004 | } |
| 1005 | } |
| 1006 | |
Roland Levillain | 6b46923 | 2014-09-25 10:10:38 +0100 | [diff] [blame] | 1007 | bool HInstructionList::Contains(HInstruction* instruction) const { |
| 1008 | for (HInstructionIterator it(*this); !it.Done(); it.Advance()) { |
| 1009 | if (it.Current() == instruction) { |
| 1010 | return true; |
| 1011 | } |
| 1012 | } |
| 1013 | return false; |
| 1014 | } |
| 1015 | |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 1016 | bool HInstructionList::FoundBefore(const HInstruction* instruction1, |
| 1017 | const HInstruction* instruction2) const { |
| 1018 | DCHECK_EQ(instruction1->GetBlock(), instruction2->GetBlock()); |
| 1019 | for (HInstructionIterator it(*this); !it.Done(); it.Advance()) { |
| 1020 | if (it.Current() == instruction1) { |
| 1021 | return true; |
| 1022 | } |
| 1023 | if (it.Current() == instruction2) { |
| 1024 | return false; |
| 1025 | } |
| 1026 | } |
| 1027 | LOG(FATAL) << "Did not find an order between two instructions of the same block."; |
| 1028 | return true; |
| 1029 | } |
| 1030 | |
Roland Levillain | 6c82d40 | 2014-10-13 16:10:27 +0100 | [diff] [blame] | 1031 | bool HInstruction::StrictlyDominates(HInstruction* other_instruction) const { |
| 1032 | if (other_instruction == this) { |
| 1033 | // An instruction does not strictly dominate itself. |
| 1034 | return false; |
| 1035 | } |
Roland Levillain | ccc07a9 | 2014-09-16 14:48:16 +0100 | [diff] [blame] | 1036 | HBasicBlock* block = GetBlock(); |
| 1037 | HBasicBlock* other_block = other_instruction->GetBlock(); |
| 1038 | if (block != other_block) { |
| 1039 | return GetBlock()->Dominates(other_instruction->GetBlock()); |
| 1040 | } else { |
| 1041 | // If both instructions are in the same block, ensure this |
| 1042 | // instruction comes before `other_instruction`. |
| 1043 | if (IsPhi()) { |
| 1044 | if (!other_instruction->IsPhi()) { |
| 1045 | // Phis appear before non phi-instructions so this instruction |
| 1046 | // dominates `other_instruction`. |
| 1047 | return true; |
| 1048 | } else { |
| 1049 | // There is no order among phis. |
| 1050 | LOG(FATAL) << "There is no dominance between phis of a same block."; |
| 1051 | return false; |
| 1052 | } |
| 1053 | } else { |
| 1054 | // `this` is not a phi. |
| 1055 | if (other_instruction->IsPhi()) { |
| 1056 | // Phis appear before non phi-instructions so this instruction |
| 1057 | // does not dominate `other_instruction`. |
| 1058 | return false; |
| 1059 | } else { |
| 1060 | // Check whether this instruction comes before |
| 1061 | // `other_instruction` in the instruction list. |
| 1062 | return block->GetInstructions().FoundBefore(this, other_instruction); |
| 1063 | } |
| 1064 | } |
| 1065 | } |
| 1066 | } |
| 1067 | |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 1068 | void HInstruction::RemoveEnvironment() { |
| 1069 | RemoveEnvironmentUses(this); |
| 1070 | environment_ = nullptr; |
| 1071 | } |
| 1072 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1073 | void HInstruction::ReplaceWith(HInstruction* other) { |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1074 | DCHECK(other != nullptr); |
Vladimir Marko | 3c19d3e | 2016-04-19 14:36:35 +0100 | [diff] [blame] | 1075 | // Note: fixup_end remains valid across splice_after(). |
| 1076 | auto fixup_end = other->uses_.empty() ? other->uses_.begin() : ++other->uses_.begin(); |
| 1077 | other->uses_.splice_after(other->uses_.before_begin(), uses_); |
| 1078 | other->FixUpUserRecordsAfterUseInsertion(fixup_end); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1079 | |
Vladimir Marko | 3c19d3e | 2016-04-19 14:36:35 +0100 | [diff] [blame] | 1080 | // Note: env_fixup_end remains valid across splice_after(). |
| 1081 | auto env_fixup_end = |
| 1082 | other->env_uses_.empty() ? other->env_uses_.begin() : ++other->env_uses_.begin(); |
| 1083 | other->env_uses_.splice_after(other->env_uses_.before_begin(), env_uses_); |
| 1084 | other->FixUpUserRecordsAfterEnvUseInsertion(env_fixup_end); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1085 | |
Vladimir Marko | 3c19d3e | 2016-04-19 14:36:35 +0100 | [diff] [blame] | 1086 | DCHECK(uses_.empty()); |
| 1087 | DCHECK(env_uses_.empty()); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1088 | } |
| 1089 | |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1090 | void HInstruction::ReplaceInput(HInstruction* replacement, size_t index) { |
Vladimir Marko | 3c19d3e | 2016-04-19 14:36:35 +0100 | [diff] [blame] | 1091 | HUserRecord<HInstruction*> input_use = InputRecordAt(index); |
Vladimir Marko | c6b5627 | 2016-04-20 18:45:25 +0100 | [diff] [blame] | 1092 | if (input_use.GetInstruction() == replacement) { |
| 1093 | // Nothing to do. |
| 1094 | return; |
| 1095 | } |
Vladimir Marko | 3c19d3e | 2016-04-19 14:36:35 +0100 | [diff] [blame] | 1096 | HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode(); |
Vladimir Marko | 3c19d3e | 2016-04-19 14:36:35 +0100 | [diff] [blame] | 1097 | // Note: fixup_end remains valid across splice_after(). |
| 1098 | auto fixup_end = |
| 1099 | replacement->uses_.empty() ? replacement->uses_.begin() : ++replacement->uses_.begin(); |
| 1100 | replacement->uses_.splice_after(replacement->uses_.before_begin(), |
| 1101 | input_use.GetInstruction()->uses_, |
| 1102 | before_use_node); |
| 1103 | replacement->FixUpUserRecordsAfterUseInsertion(fixup_end); |
| 1104 | input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node); |
Nicolas Geoffray | 102cbed | 2014-10-15 18:31:05 +0100 | [diff] [blame] | 1105 | } |
| 1106 | |
Nicolas Geoffray | 3946844 | 2014-09-02 15:17:15 +0100 | [diff] [blame] | 1107 | size_t HInstruction::EnvironmentSize() const { |
| 1108 | return HasEnvironment() ? environment_->Size() : 0; |
| 1109 | } |
| 1110 | |
Mingyao Yang | a9dbe83 | 2016-12-15 12:02:53 -0800 | [diff] [blame] | 1111 | void HVariableInputSizeInstruction::AddInput(HInstruction* input) { |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1112 | DCHECK(input->GetBlock() != nullptr); |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 1113 | inputs_.push_back(HUserRecord<HInstruction*>(input)); |
| 1114 | input->AddUseAt(this, inputs_.size() - 1); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1115 | } |
| 1116 | |
Mingyao Yang | a9dbe83 | 2016-12-15 12:02:53 -0800 | [diff] [blame] | 1117 | void HVariableInputSizeInstruction::InsertInputAt(size_t index, HInstruction* input) { |
| 1118 | inputs_.insert(inputs_.begin() + index, HUserRecord<HInstruction*>(input)); |
| 1119 | input->AddUseAt(this, index); |
| 1120 | // Update indexes in use nodes of inputs that have been pushed further back by the insert(). |
| 1121 | for (size_t i = index + 1u, e = inputs_.size(); i < e; ++i) { |
| 1122 | DCHECK_EQ(inputs_[i].GetUseNode()->GetIndex(), i - 1u); |
| 1123 | inputs_[i].GetUseNode()->SetIndex(i); |
| 1124 | } |
| 1125 | } |
| 1126 | |
| 1127 | void HVariableInputSizeInstruction::RemoveInputAt(size_t index) { |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1128 | RemoveAsUserOfInput(index); |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 1129 | inputs_.erase(inputs_.begin() + index); |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 1130 | // Update indexes in use nodes of inputs that have been pulled forward by the erase(). |
| 1131 | for (size_t i = index, e = inputs_.size(); i < e; ++i) { |
| 1132 | DCHECK_EQ(inputs_[i].GetUseNode()->GetIndex(), i + 1u); |
| 1133 | inputs_[i].GetUseNode()->SetIndex(i); |
Nicolas Geoffray | 5d7b7f8 | 2015-04-28 00:52:43 +0100 | [diff] [blame] | 1134 | } |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1135 | } |
| 1136 | |
Nicolas Geoffray | 360231a | 2014-10-08 21:07:48 +0100 | [diff] [blame] | 1137 | #define DEFINE_ACCEPT(name, super) \ |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1138 | void H##name::Accept(HGraphVisitor* visitor) { \ |
| 1139 | visitor->Visit##name(this); \ |
| 1140 | } |
| 1141 | |
Vladimir Marko | 5f7b58e | 2015-11-23 19:49:34 +0000 | [diff] [blame] | 1142 | FOR_EACH_CONCRETE_INSTRUCTION(DEFINE_ACCEPT) |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1143 | |
| 1144 | #undef DEFINE_ACCEPT |
| 1145 | |
| 1146 | void HGraphVisitor::VisitInsertionOrder() { |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 1147 | const ArenaVector<HBasicBlock*>& blocks = graph_->GetBlocks(); |
| 1148 | for (HBasicBlock* block : blocks) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1149 | if (block != nullptr) { |
| 1150 | VisitBasicBlock(block); |
| 1151 | } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1152 | } |
| 1153 | } |
| 1154 | |
Roland Levillain | 633021e | 2014-10-01 14:12:25 +0100 | [diff] [blame] | 1155 | void HGraphVisitor::VisitReversePostOrder() { |
Vladimir Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 1156 | for (HBasicBlock* block : graph_->GetReversePostOrder()) { |
| 1157 | VisitBasicBlock(block); |
Roland Levillain | 633021e | 2014-10-01 14:12:25 +0100 | [diff] [blame] | 1158 | } |
| 1159 | } |
| 1160 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1161 | void HGraphVisitor::VisitBasicBlock(HBasicBlock* block) { |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 1162 | for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) { |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1163 | it.Current()->Accept(this); |
| 1164 | } |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 1165 | for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1166 | it.Current()->Accept(this); |
| 1167 | } |
| 1168 | } |
| 1169 | |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1170 | HConstant* HTypeConversion::TryStaticEvaluation() const { |
| 1171 | HGraph* graph = GetBlock()->GetGraph(); |
| 1172 | if (GetInput()->IsIntConstant()) { |
| 1173 | int32_t value = GetInput()->AsIntConstant()->GetValue(); |
| 1174 | switch (GetResultType()) { |
| 1175 | case Primitive::kPrimLong: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1176 | return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1177 | case Primitive::kPrimFloat: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1178 | return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1179 | case Primitive::kPrimDouble: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1180 | return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1181 | default: |
| 1182 | return nullptr; |
| 1183 | } |
| 1184 | } else if (GetInput()->IsLongConstant()) { |
| 1185 | int64_t value = GetInput()->AsLongConstant()->GetValue(); |
| 1186 | switch (GetResultType()) { |
| 1187 | case Primitive::kPrimInt: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1188 | return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1189 | case Primitive::kPrimFloat: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1190 | return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1191 | case Primitive::kPrimDouble: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1192 | return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1193 | default: |
| 1194 | return nullptr; |
| 1195 | } |
| 1196 | } else if (GetInput()->IsFloatConstant()) { |
| 1197 | float value = GetInput()->AsFloatConstant()->GetValue(); |
| 1198 | switch (GetResultType()) { |
| 1199 | case Primitive::kPrimInt: |
| 1200 | if (std::isnan(value)) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1201 | return graph->GetIntConstant(0, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1202 | if (value >= kPrimIntMax) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1203 | return graph->GetIntConstant(kPrimIntMax, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1204 | if (value <= kPrimIntMin) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1205 | return graph->GetIntConstant(kPrimIntMin, GetDexPc()); |
| 1206 | return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1207 | case Primitive::kPrimLong: |
| 1208 | if (std::isnan(value)) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1209 | return graph->GetLongConstant(0, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1210 | if (value >= kPrimLongMax) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1211 | return graph->GetLongConstant(kPrimLongMax, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1212 | if (value <= kPrimLongMin) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1213 | return graph->GetLongConstant(kPrimLongMin, GetDexPc()); |
| 1214 | return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1215 | case Primitive::kPrimDouble: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1216 | return graph->GetDoubleConstant(static_cast<double>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1217 | default: |
| 1218 | return nullptr; |
| 1219 | } |
| 1220 | } else if (GetInput()->IsDoubleConstant()) { |
| 1221 | double value = GetInput()->AsDoubleConstant()->GetValue(); |
| 1222 | switch (GetResultType()) { |
| 1223 | case Primitive::kPrimInt: |
| 1224 | if (std::isnan(value)) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1225 | return graph->GetIntConstant(0, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1226 | if (value >= kPrimIntMax) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1227 | return graph->GetIntConstant(kPrimIntMax, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1228 | if (value <= kPrimLongMin) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1229 | return graph->GetIntConstant(kPrimIntMin, GetDexPc()); |
| 1230 | return graph->GetIntConstant(static_cast<int32_t>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1231 | case Primitive::kPrimLong: |
| 1232 | if (std::isnan(value)) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1233 | return graph->GetLongConstant(0, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1234 | if (value >= kPrimLongMax) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1235 | return graph->GetLongConstant(kPrimLongMax, GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1236 | if (value <= kPrimLongMin) |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1237 | return graph->GetLongConstant(kPrimLongMin, GetDexPc()); |
| 1238 | return graph->GetLongConstant(static_cast<int64_t>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1239 | case Primitive::kPrimFloat: |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1240 | return graph->GetFloatConstant(static_cast<float>(value), GetDexPc()); |
Mark Mendell | e82549b | 2015-05-06 10:55:34 -0400 | [diff] [blame] | 1241 | default: |
| 1242 | return nullptr; |
| 1243 | } |
| 1244 | } |
| 1245 | return nullptr; |
| 1246 | } |
| 1247 | |
Roland Levillain | 9240d6a | 2014-10-20 16:47:04 +0100 | [diff] [blame] | 1248 | HConstant* HUnaryOperation::TryStaticEvaluation() const { |
| 1249 | if (GetInput()->IsIntConstant()) { |
Roland Levillain | 9867bc7 | 2015-08-05 10:21:34 +0100 | [diff] [blame] | 1250 | return Evaluate(GetInput()->AsIntConstant()); |
Roland Levillain | 9240d6a | 2014-10-20 16:47:04 +0100 | [diff] [blame] | 1251 | } else if (GetInput()->IsLongConstant()) { |
Roland Levillain | 9867bc7 | 2015-08-05 10:21:34 +0100 | [diff] [blame] | 1252 | return Evaluate(GetInput()->AsLongConstant()); |
Roland Levillain | 31dd3d6 | 2016-02-16 12:21:02 +0000 | [diff] [blame] | 1253 | } else if (kEnableFloatingPointStaticEvaluation) { |
| 1254 | if (GetInput()->IsFloatConstant()) { |
| 1255 | return Evaluate(GetInput()->AsFloatConstant()); |
| 1256 | } else if (GetInput()->IsDoubleConstant()) { |
| 1257 | return Evaluate(GetInput()->AsDoubleConstant()); |
| 1258 | } |
Roland Levillain | 9240d6a | 2014-10-20 16:47:04 +0100 | [diff] [blame] | 1259 | } |
| 1260 | return nullptr; |
| 1261 | } |
| 1262 | |
| 1263 | HConstant* HBinaryOperation::TryStaticEvaluation() const { |
Roland Levillain | e53bd81 | 2016-02-24 14:54:18 +0000 | [diff] [blame] | 1264 | if (GetLeft()->IsIntConstant() && GetRight()->IsIntConstant()) { |
| 1265 | return Evaluate(GetLeft()->AsIntConstant(), GetRight()->AsIntConstant()); |
Roland Levillain | 9867bc7 | 2015-08-05 10:21:34 +0100 | [diff] [blame] | 1266 | } else if (GetLeft()->IsLongConstant()) { |
| 1267 | if (GetRight()->IsIntConstant()) { |
Roland Levillain | e53bd81 | 2016-02-24 14:54:18 +0000 | [diff] [blame] | 1268 | // The binop(long, int) case is only valid for shifts and rotations. |
| 1269 | DCHECK(IsShl() || IsShr() || IsUShr() || IsRor()) << DebugName(); |
Roland Levillain | 9867bc7 | 2015-08-05 10:21:34 +0100 | [diff] [blame] | 1270 | return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsIntConstant()); |
| 1271 | } else if (GetRight()->IsLongConstant()) { |
| 1272 | return Evaluate(GetLeft()->AsLongConstant(), GetRight()->AsLongConstant()); |
Nicolas Geoffray | 9ee6618 | 2015-01-16 12:35:40 +0000 | [diff] [blame] | 1273 | } |
Vladimir Marko | 9e23df5 | 2015-11-10 17:14:35 +0000 | [diff] [blame] | 1274 | } else if (GetLeft()->IsNullConstant() && GetRight()->IsNullConstant()) { |
Roland Levillain | e53bd81 | 2016-02-24 14:54:18 +0000 | [diff] [blame] | 1275 | // The binop(null, null) case is only valid for equal and not-equal conditions. |
| 1276 | DCHECK(IsEqual() || IsNotEqual()) << DebugName(); |
Vladimir Marko | 9e23df5 | 2015-11-10 17:14:35 +0000 | [diff] [blame] | 1277 | return Evaluate(GetLeft()->AsNullConstant(), GetRight()->AsNullConstant()); |
Roland Levillain | 31dd3d6 | 2016-02-16 12:21:02 +0000 | [diff] [blame] | 1278 | } else if (kEnableFloatingPointStaticEvaluation) { |
| 1279 | if (GetLeft()->IsFloatConstant() && GetRight()->IsFloatConstant()) { |
| 1280 | return Evaluate(GetLeft()->AsFloatConstant(), GetRight()->AsFloatConstant()); |
| 1281 | } else if (GetLeft()->IsDoubleConstant() && GetRight()->IsDoubleConstant()) { |
| 1282 | return Evaluate(GetLeft()->AsDoubleConstant(), GetRight()->AsDoubleConstant()); |
| 1283 | } |
Roland Levillain | 556c3d1 | 2014-09-18 15:25:07 +0100 | [diff] [blame] | 1284 | } |
| 1285 | return nullptr; |
| 1286 | } |
Dave Allison | 20dfc79 | 2014-06-16 20:44:29 -0700 | [diff] [blame] | 1287 | |
Alexandre Rames | b2fd7bc | 2015-03-11 16:48:16 +0000 | [diff] [blame] | 1288 | HConstant* HBinaryOperation::GetConstantRight() const { |
| 1289 | if (GetRight()->IsConstant()) { |
| 1290 | return GetRight()->AsConstant(); |
| 1291 | } else if (IsCommutative() && GetLeft()->IsConstant()) { |
| 1292 | return GetLeft()->AsConstant(); |
| 1293 | } else { |
| 1294 | return nullptr; |
| 1295 | } |
| 1296 | } |
| 1297 | |
| 1298 | // If `GetConstantRight()` returns one of the input, this returns the other |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1299 | // one. Otherwise it returns null. |
Alexandre Rames | b2fd7bc | 2015-03-11 16:48:16 +0000 | [diff] [blame] | 1300 | HInstruction* HBinaryOperation::GetLeastConstantLeft() const { |
| 1301 | HInstruction* most_constant_right = GetConstantRight(); |
| 1302 | if (most_constant_right == nullptr) { |
| 1303 | return nullptr; |
| 1304 | } else if (most_constant_right == GetLeft()) { |
| 1305 | return GetRight(); |
| 1306 | } else { |
| 1307 | return GetLeft(); |
| 1308 | } |
| 1309 | } |
| 1310 | |
Roland Levillain | 31dd3d6 | 2016-02-16 12:21:02 +0000 | [diff] [blame] | 1311 | std::ostream& operator<<(std::ostream& os, const ComparisonBias& rhs) { |
| 1312 | switch (rhs) { |
| 1313 | case ComparisonBias::kNoBias: |
| 1314 | return os << "no_bias"; |
| 1315 | case ComparisonBias::kGtBias: |
| 1316 | return os << "gt_bias"; |
| 1317 | case ComparisonBias::kLtBias: |
| 1318 | return os << "lt_bias"; |
| 1319 | default: |
| 1320 | LOG(FATAL) << "Unknown ComparisonBias: " << static_cast<int>(rhs); |
| 1321 | UNREACHABLE(); |
| 1322 | } |
| 1323 | } |
| 1324 | |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 1325 | bool HCondition::IsBeforeWhenDisregardMoves(HInstruction* instruction) const { |
| 1326 | return this == instruction->GetPreviousDisregardingMoves(); |
Nicolas Geoffray | 18efde5 | 2014-09-22 15:51:11 +0100 | [diff] [blame] | 1327 | } |
| 1328 | |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 1329 | bool HInstruction::Equals(const HInstruction* other) const { |
Nicolas Geoffray | 065bf77 | 2014-09-03 14:51:22 +0100 | [diff] [blame] | 1330 | if (!InstructionTypeEquals(other)) return false; |
Nicolas Geoffray | d31cf3d | 2014-09-08 17:30:24 +0100 | [diff] [blame] | 1331 | DCHECK_EQ(GetKind(), other->GetKind()); |
Nicolas Geoffray | 065bf77 | 2014-09-03 14:51:22 +0100 | [diff] [blame] | 1332 | if (!InstructionDataEquals(other)) return false; |
| 1333 | if (GetType() != other->GetType()) return false; |
Vladimir Marko | e900491 | 2016-06-16 16:50:52 +0100 | [diff] [blame] | 1334 | HConstInputsRef inputs = GetInputs(); |
| 1335 | HConstInputsRef other_inputs = other->GetInputs(); |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 1336 | if (inputs.size() != other_inputs.size()) return false; |
| 1337 | for (size_t i = 0; i != inputs.size(); ++i) { |
| 1338 | if (inputs[i] != other_inputs[i]) return false; |
Nicolas Geoffray | 065bf77 | 2014-09-03 14:51:22 +0100 | [diff] [blame] | 1339 | } |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 1340 | |
Nicolas Geoffray | d31cf3d | 2014-09-08 17:30:24 +0100 | [diff] [blame] | 1341 | DCHECK_EQ(ComputeHashCode(), other->ComputeHashCode()); |
Nicolas Geoffray | 065bf77 | 2014-09-03 14:51:22 +0100 | [diff] [blame] | 1342 | return true; |
| 1343 | } |
| 1344 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1345 | std::ostream& operator<<(std::ostream& os, const HInstruction::InstructionKind& rhs) { |
| 1346 | #define DECLARE_CASE(type, super) case HInstruction::k##type: os << #type; break; |
| 1347 | switch (rhs) { |
| 1348 | FOR_EACH_INSTRUCTION(DECLARE_CASE) |
| 1349 | default: |
| 1350 | os << "Unknown instruction kind " << static_cast<int>(rhs); |
| 1351 | break; |
| 1352 | } |
| 1353 | #undef DECLARE_CASE |
| 1354 | return os; |
| 1355 | } |
| 1356 | |
Nicolas Geoffray | 82091da | 2015-01-26 10:02:45 +0000 | [diff] [blame] | 1357 | void HInstruction::MoveBefore(HInstruction* cursor) { |
David Brazdil | d6c205e | 2016-06-07 14:20:52 +0100 | [diff] [blame] | 1358 | DCHECK(!IsPhi()); |
| 1359 | DCHECK(!IsControlFlow()); |
Mingyao Yang | b0b051a | 2016-11-17 09:04:53 -0800 | [diff] [blame] | 1360 | DCHECK(CanBeMoved() || |
| 1361 | // HShouldDeoptimizeFlag can only be moved by CHAGuardOptimization. |
| 1362 | IsShouldDeoptimizeFlag()); |
David Brazdil | d6c205e | 2016-06-07 14:20:52 +0100 | [diff] [blame] | 1363 | DCHECK(!cursor->IsPhi()); |
| 1364 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1365 | next_->previous_ = previous_; |
| 1366 | if (previous_ != nullptr) { |
| 1367 | previous_->next_ = next_; |
| 1368 | } |
| 1369 | if (block_->instructions_.first_instruction_ == this) { |
| 1370 | block_->instructions_.first_instruction_ = next_; |
| 1371 | } |
Nicolas Geoffray | 82091da | 2015-01-26 10:02:45 +0000 | [diff] [blame] | 1372 | DCHECK_NE(block_->instructions_.last_instruction_, this); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1373 | |
| 1374 | previous_ = cursor->previous_; |
| 1375 | if (previous_ != nullptr) { |
| 1376 | previous_->next_ = this; |
| 1377 | } |
| 1378 | next_ = cursor; |
| 1379 | cursor->previous_ = this; |
| 1380 | block_ = cursor->block_; |
Nicolas Geoffray | 82091da | 2015-01-26 10:02:45 +0000 | [diff] [blame] | 1381 | |
| 1382 | if (block_->instructions_.first_instruction_ == cursor) { |
| 1383 | block_->instructions_.first_instruction_ = this; |
| 1384 | } |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1385 | } |
| 1386 | |
Vladimir Marko | fb337ea | 2015-11-25 15:25:10 +0000 | [diff] [blame] | 1387 | void HInstruction::MoveBeforeFirstUserAndOutOfLoops() { |
| 1388 | DCHECK(!CanThrow()); |
| 1389 | DCHECK(!HasSideEffects()); |
| 1390 | DCHECK(!HasEnvironmentUses()); |
| 1391 | DCHECK(HasNonEnvironmentUses()); |
| 1392 | DCHECK(!IsPhi()); // Makes no sense for Phi. |
| 1393 | DCHECK_EQ(InputCount(), 0u); |
| 1394 | |
| 1395 | // Find the target block. |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 1396 | auto uses_it = GetUses().begin(); |
| 1397 | auto uses_end = GetUses().end(); |
| 1398 | HBasicBlock* target_block = uses_it->GetUser()->GetBlock(); |
| 1399 | ++uses_it; |
| 1400 | while (uses_it != uses_end && uses_it->GetUser()->GetBlock() == target_block) { |
| 1401 | ++uses_it; |
Vladimir Marko | fb337ea | 2015-11-25 15:25:10 +0000 | [diff] [blame] | 1402 | } |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 1403 | if (uses_it != uses_end) { |
Vladimir Marko | fb337ea | 2015-11-25 15:25:10 +0000 | [diff] [blame] | 1404 | // This instruction has uses in two or more blocks. Find the common dominator. |
| 1405 | CommonDominator finder(target_block); |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 1406 | for (; uses_it != uses_end; ++uses_it) { |
| 1407 | finder.Update(uses_it->GetUser()->GetBlock()); |
Vladimir Marko | fb337ea | 2015-11-25 15:25:10 +0000 | [diff] [blame] | 1408 | } |
| 1409 | target_block = finder.Get(); |
| 1410 | DCHECK(target_block != nullptr); |
| 1411 | } |
| 1412 | // Move to the first dominator not in a loop. |
| 1413 | while (target_block->IsInLoop()) { |
| 1414 | target_block = target_block->GetDominator(); |
| 1415 | DCHECK(target_block != nullptr); |
| 1416 | } |
| 1417 | |
| 1418 | // Find insertion position. |
| 1419 | HInstruction* insert_pos = nullptr; |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 1420 | for (const HUseListNode<HInstruction*>& use : GetUses()) { |
| 1421 | if (use.GetUser()->GetBlock() == target_block && |
| 1422 | (insert_pos == nullptr || use.GetUser()->StrictlyDominates(insert_pos))) { |
| 1423 | insert_pos = use.GetUser(); |
Vladimir Marko | fb337ea | 2015-11-25 15:25:10 +0000 | [diff] [blame] | 1424 | } |
| 1425 | } |
| 1426 | if (insert_pos == nullptr) { |
| 1427 | // No user in `target_block`, insert before the control flow instruction. |
| 1428 | insert_pos = target_block->GetLastInstruction(); |
| 1429 | DCHECK(insert_pos->IsControlFlow()); |
| 1430 | // Avoid splitting HCondition from HIf to prevent unnecessary materialization. |
| 1431 | if (insert_pos->IsIf()) { |
| 1432 | HInstruction* if_input = insert_pos->AsIf()->InputAt(0); |
| 1433 | if (if_input == insert_pos->GetPrevious()) { |
| 1434 | insert_pos = if_input; |
| 1435 | } |
| 1436 | } |
| 1437 | } |
| 1438 | MoveBefore(insert_pos); |
| 1439 | } |
| 1440 | |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1441 | HBasicBlock* HBasicBlock::SplitBefore(HInstruction* cursor) { |
David Brazdil | 9bc4361 | 2015-11-05 21:25:24 +0000 | [diff] [blame] | 1442 | DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented."; |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1443 | DCHECK_EQ(cursor->GetBlock(), this); |
| 1444 | |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1445 | HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), |
| 1446 | cursor->GetDexPc()); |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1447 | new_block->instructions_.first_instruction_ = cursor; |
| 1448 | new_block->instructions_.last_instruction_ = instructions_.last_instruction_; |
| 1449 | instructions_.last_instruction_ = cursor->previous_; |
| 1450 | if (cursor->previous_ == nullptr) { |
| 1451 | instructions_.first_instruction_ = nullptr; |
| 1452 | } else { |
| 1453 | cursor->previous_->next_ = nullptr; |
| 1454 | cursor->previous_ = nullptr; |
| 1455 | } |
| 1456 | |
| 1457 | new_block->instructions_.SetBlockOfInstructions(new_block); |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1458 | AddInstruction(new (GetGraph()->GetArena()) HGoto(new_block->GetDexPc())); |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1459 | |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1460 | for (HBasicBlock* successor : GetSuccessors()) { |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1461 | successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block; |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1462 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1463 | new_block->successors_.swap(successors_); |
| 1464 | DCHECK(successors_.empty()); |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1465 | AddSuccessor(new_block); |
| 1466 | |
David Brazdil | 56e1acc | 2015-06-30 15:41:36 +0100 | [diff] [blame] | 1467 | GetGraph()->AddBlock(new_block); |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1468 | return new_block; |
| 1469 | } |
| 1470 | |
David Brazdil | d7558da | 2015-09-22 13:04:14 +0100 | [diff] [blame] | 1471 | HBasicBlock* HBasicBlock::CreateImmediateDominator() { |
David Brazdil | 9bc4361 | 2015-11-05 21:25:24 +0000 | [diff] [blame] | 1472 | DCHECK(!graph_->IsInSsaForm()) << "Support for SSA form not implemented."; |
David Brazdil | d7558da | 2015-09-22 13:04:14 +0100 | [diff] [blame] | 1473 | DCHECK(!IsCatchBlock()) << "Support for updating try/catch information not implemented."; |
| 1474 | |
| 1475 | HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc()); |
| 1476 | |
| 1477 | for (HBasicBlock* predecessor : GetPredecessors()) { |
David Brazdil | d7558da | 2015-09-22 13:04:14 +0100 | [diff] [blame] | 1478 | predecessor->successors_[predecessor->GetSuccessorIndexOf(this)] = new_block; |
| 1479 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1480 | new_block->predecessors_.swap(predecessors_); |
| 1481 | DCHECK(predecessors_.empty()); |
David Brazdil | d7558da | 2015-09-22 13:04:14 +0100 | [diff] [blame] | 1482 | AddPredecessor(new_block); |
| 1483 | |
| 1484 | GetGraph()->AddBlock(new_block); |
| 1485 | return new_block; |
| 1486 | } |
| 1487 | |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 1488 | HBasicBlock* HBasicBlock::SplitBeforeForInlining(HInstruction* cursor) { |
| 1489 | DCHECK_EQ(cursor->GetBlock(), this); |
| 1490 | |
| 1491 | HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), |
| 1492 | cursor->GetDexPc()); |
| 1493 | new_block->instructions_.first_instruction_ = cursor; |
| 1494 | new_block->instructions_.last_instruction_ = instructions_.last_instruction_; |
| 1495 | instructions_.last_instruction_ = cursor->previous_; |
| 1496 | if (cursor->previous_ == nullptr) { |
| 1497 | instructions_.first_instruction_ = nullptr; |
| 1498 | } else { |
| 1499 | cursor->previous_->next_ = nullptr; |
| 1500 | cursor->previous_ = nullptr; |
| 1501 | } |
| 1502 | |
| 1503 | new_block->instructions_.SetBlockOfInstructions(new_block); |
| 1504 | |
| 1505 | for (HBasicBlock* successor : GetSuccessors()) { |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 1506 | successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block; |
| 1507 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1508 | new_block->successors_.swap(successors_); |
| 1509 | DCHECK(successors_.empty()); |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 1510 | |
| 1511 | for (HBasicBlock* dominated : GetDominatedBlocks()) { |
| 1512 | dominated->dominator_ = new_block; |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 1513 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1514 | new_block->dominated_blocks_.swap(dominated_blocks_); |
| 1515 | DCHECK(dominated_blocks_.empty()); |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 1516 | return new_block; |
| 1517 | } |
| 1518 | |
| 1519 | HBasicBlock* HBasicBlock::SplitAfterForInlining(HInstruction* cursor) { |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1520 | DCHECK(!cursor->IsControlFlow()); |
| 1521 | DCHECK_NE(instructions_.last_instruction_, cursor); |
| 1522 | DCHECK_EQ(cursor->GetBlock(), this); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 1523 | |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1524 | HBasicBlock* new_block = new (GetGraph()->GetArena()) HBasicBlock(GetGraph(), GetDexPc()); |
| 1525 | new_block->instructions_.first_instruction_ = cursor->GetNext(); |
| 1526 | new_block->instructions_.last_instruction_ = instructions_.last_instruction_; |
| 1527 | cursor->next_->previous_ = nullptr; |
| 1528 | cursor->next_ = nullptr; |
| 1529 | instructions_.last_instruction_ = cursor; |
| 1530 | |
| 1531 | new_block->instructions_.SetBlockOfInstructions(new_block); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1532 | for (HBasicBlock* successor : GetSuccessors()) { |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1533 | successor->predecessors_[successor->GetPredecessorIndexOf(this)] = new_block; |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1534 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1535 | new_block->successors_.swap(successors_); |
| 1536 | DCHECK(successors_.empty()); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1537 | |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1538 | for (HBasicBlock* dominated : GetDominatedBlocks()) { |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1539 | dominated->dominator_ = new_block; |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1540 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1541 | new_block->dominated_blocks_.swap(dominated_blocks_); |
| 1542 | DCHECK(dominated_blocks_.empty()); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1543 | return new_block; |
| 1544 | } |
| 1545 | |
David Brazdil | ec16f79 | 2015-08-19 15:04:01 +0100 | [diff] [blame] | 1546 | const HTryBoundary* HBasicBlock::ComputeTryEntryOfSuccessors() const { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1547 | if (EndsWithTryBoundary()) { |
| 1548 | HTryBoundary* try_boundary = GetLastInstruction()->AsTryBoundary(); |
| 1549 | if (try_boundary->IsEntry()) { |
David Brazdil | ec16f79 | 2015-08-19 15:04:01 +0100 | [diff] [blame] | 1550 | DCHECK(!IsTryBlock()); |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1551 | return try_boundary; |
| 1552 | } else { |
David Brazdil | ec16f79 | 2015-08-19 15:04:01 +0100 | [diff] [blame] | 1553 | DCHECK(IsTryBlock()); |
| 1554 | DCHECK(try_catch_information_->GetTryEntry().HasSameExceptionHandlersAs(*try_boundary)); |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1555 | return nullptr; |
| 1556 | } |
David Brazdil | ec16f79 | 2015-08-19 15:04:01 +0100 | [diff] [blame] | 1557 | } else if (IsTryBlock()) { |
| 1558 | return &try_catch_information_->GetTryEntry(); |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1559 | } else { |
David Brazdil | ec16f79 | 2015-08-19 15:04:01 +0100 | [diff] [blame] | 1560 | return nullptr; |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1561 | } |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1562 | } |
| 1563 | |
David Brazdil | d7558da | 2015-09-22 13:04:14 +0100 | [diff] [blame] | 1564 | bool HBasicBlock::HasThrowingInstructions() const { |
| 1565 | for (HInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) { |
| 1566 | if (it.Current()->CanThrow()) { |
| 1567 | return true; |
| 1568 | } |
| 1569 | } |
| 1570 | return false; |
| 1571 | } |
| 1572 | |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1573 | static bool HasOnlyOneInstruction(const HBasicBlock& block) { |
| 1574 | return block.GetPhis().IsEmpty() |
| 1575 | && !block.GetInstructions().IsEmpty() |
| 1576 | && block.GetFirstInstruction() == block.GetLastInstruction(); |
| 1577 | } |
| 1578 | |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1579 | bool HBasicBlock::IsSingleGoto() const { |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 1580 | return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsGoto(); |
| 1581 | } |
| 1582 | |
| 1583 | bool HBasicBlock::IsSingleTryBoundary() const { |
| 1584 | return HasOnlyOneInstruction(*this) && GetLastInstruction()->IsTryBoundary(); |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1585 | } |
| 1586 | |
David Brazdil | 8d5b8b2 | 2015-03-24 10:51:52 +0000 | [diff] [blame] | 1587 | bool HBasicBlock::EndsWithControlFlowInstruction() const { |
| 1588 | return !GetInstructions().IsEmpty() && GetLastInstruction()->IsControlFlow(); |
| 1589 | } |
| 1590 | |
David Brazdil | b2bd1c5 | 2015-03-25 11:17:37 +0000 | [diff] [blame] | 1591 | bool HBasicBlock::EndsWithIf() const { |
| 1592 | return !GetInstructions().IsEmpty() && GetLastInstruction()->IsIf(); |
| 1593 | } |
| 1594 | |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1595 | bool HBasicBlock::EndsWithTryBoundary() const { |
| 1596 | return !GetInstructions().IsEmpty() && GetLastInstruction()->IsTryBoundary(); |
| 1597 | } |
| 1598 | |
David Brazdil | b2bd1c5 | 2015-03-25 11:17:37 +0000 | [diff] [blame] | 1599 | bool HBasicBlock::HasSinglePhi() const { |
| 1600 | return !GetPhis().IsEmpty() && GetFirstPhi()->GetNext() == nullptr; |
| 1601 | } |
| 1602 | |
David Brazdil | d26a411 | 2015-11-10 11:07:31 +0000 | [diff] [blame] | 1603 | ArrayRef<HBasicBlock* const> HBasicBlock::GetNormalSuccessors() const { |
| 1604 | if (EndsWithTryBoundary()) { |
| 1605 | // The normal-flow successor of HTryBoundary is always stored at index zero. |
| 1606 | DCHECK_EQ(successors_[0], GetLastInstruction()->AsTryBoundary()->GetNormalFlowSuccessor()); |
| 1607 | return ArrayRef<HBasicBlock* const>(successors_).SubArray(0u, 1u); |
| 1608 | } else { |
| 1609 | // All successors of blocks not ending with TryBoundary are normal. |
| 1610 | return ArrayRef<HBasicBlock* const>(successors_); |
| 1611 | } |
| 1612 | } |
| 1613 | |
| 1614 | ArrayRef<HBasicBlock* const> HBasicBlock::GetExceptionalSuccessors() const { |
| 1615 | if (EndsWithTryBoundary()) { |
| 1616 | return GetLastInstruction()->AsTryBoundary()->GetExceptionHandlers(); |
| 1617 | } else { |
| 1618 | // Blocks not ending with TryBoundary do not have exceptional successors. |
| 1619 | return ArrayRef<HBasicBlock* const>(); |
| 1620 | } |
| 1621 | } |
| 1622 | |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1623 | bool HTryBoundary::HasSameExceptionHandlersAs(const HTryBoundary& other) const { |
David Brazdil | d26a411 | 2015-11-10 11:07:31 +0000 | [diff] [blame] | 1624 | ArrayRef<HBasicBlock* const> handlers1 = GetExceptionHandlers(); |
| 1625 | ArrayRef<HBasicBlock* const> handlers2 = other.GetExceptionHandlers(); |
| 1626 | |
| 1627 | size_t length = handlers1.size(); |
| 1628 | if (length != handlers2.size()) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1629 | return false; |
| 1630 | } |
| 1631 | |
David Brazdil | b618ade | 2015-07-29 10:31:29 +0100 | [diff] [blame] | 1632 | // Exception handlers need to be stored in the same order. |
David Brazdil | d26a411 | 2015-11-10 11:07:31 +0000 | [diff] [blame] | 1633 | for (size_t i = 0; i < length; ++i) { |
| 1634 | if (handlers1[i] != handlers2[i]) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 1635 | return false; |
| 1636 | } |
| 1637 | } |
| 1638 | return true; |
| 1639 | } |
| 1640 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1641 | size_t HInstructionList::CountSize() const { |
| 1642 | size_t size = 0; |
| 1643 | HInstruction* current = first_instruction_; |
| 1644 | for (; current != nullptr; current = current->GetNext()) { |
| 1645 | size++; |
| 1646 | } |
| 1647 | return size; |
| 1648 | } |
| 1649 | |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1650 | void HInstructionList::SetBlockOfInstructions(HBasicBlock* block) const { |
| 1651 | for (HInstruction* current = first_instruction_; |
| 1652 | current != nullptr; |
| 1653 | current = current->GetNext()) { |
| 1654 | current->SetBlock(block); |
| 1655 | } |
| 1656 | } |
| 1657 | |
| 1658 | void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) { |
| 1659 | DCHECK(Contains(cursor)); |
| 1660 | if (!instruction_list.IsEmpty()) { |
| 1661 | if (cursor == last_instruction_) { |
| 1662 | last_instruction_ = instruction_list.last_instruction_; |
| 1663 | } else { |
| 1664 | cursor->next_->previous_ = instruction_list.last_instruction_; |
| 1665 | } |
| 1666 | instruction_list.last_instruction_->next_ = cursor->next_; |
| 1667 | cursor->next_ = instruction_list.first_instruction_; |
| 1668 | instruction_list.first_instruction_->previous_ = cursor; |
| 1669 | } |
| 1670 | } |
| 1671 | |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 1672 | void HInstructionList::AddBefore(HInstruction* cursor, const HInstructionList& instruction_list) { |
| 1673 | DCHECK(Contains(cursor)); |
| 1674 | if (!instruction_list.IsEmpty()) { |
| 1675 | if (cursor == first_instruction_) { |
| 1676 | first_instruction_ = instruction_list.first_instruction_; |
| 1677 | } else { |
| 1678 | cursor->previous_->next_ = instruction_list.first_instruction_; |
| 1679 | } |
| 1680 | instruction_list.last_instruction_->next_ = cursor; |
| 1681 | instruction_list.first_instruction_->previous_ = cursor->previous_; |
| 1682 | cursor->previous_ = instruction_list.last_instruction_; |
| 1683 | } |
| 1684 | } |
| 1685 | |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1686 | void HInstructionList::Add(const HInstructionList& instruction_list) { |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1687 | if (IsEmpty()) { |
| 1688 | first_instruction_ = instruction_list.first_instruction_; |
| 1689 | last_instruction_ = instruction_list.last_instruction_; |
| 1690 | } else { |
| 1691 | AddAfter(last_instruction_, instruction_list); |
| 1692 | } |
| 1693 | } |
| 1694 | |
David Brazdil | 04ff4e8 | 2015-12-10 13:54:52 +0000 | [diff] [blame] | 1695 | // Should be called on instructions in a dead block in post order. This method |
| 1696 | // assumes `insn` has been removed from all users with the exception of catch |
| 1697 | // phis because of missing exceptional edges in the graph. It removes the |
| 1698 | // instruction from catch phi uses, together with inputs of other catch phis in |
| 1699 | // the catch block at the same index, as these must be dead too. |
| 1700 | static void RemoveUsesOfDeadInstruction(HInstruction* insn) { |
| 1701 | DCHECK(!insn->HasEnvironmentUses()); |
| 1702 | while (insn->HasNonEnvironmentUses()) { |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 1703 | const HUseListNode<HInstruction*>& use = insn->GetUses().front(); |
| 1704 | size_t use_index = use.GetIndex(); |
| 1705 | HBasicBlock* user_block = use.GetUser()->GetBlock(); |
| 1706 | DCHECK(use.GetUser()->IsPhi() && user_block->IsCatchBlock()); |
David Brazdil | 04ff4e8 | 2015-12-10 13:54:52 +0000 | [diff] [blame] | 1707 | for (HInstructionIterator phi_it(user_block->GetPhis()); !phi_it.Done(); phi_it.Advance()) { |
| 1708 | phi_it.Current()->AsPhi()->RemoveInputAt(use_index); |
| 1709 | } |
| 1710 | } |
| 1711 | } |
| 1712 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1713 | void HBasicBlock::DisconnectAndDelete() { |
| 1714 | // Dominators must be removed after all the blocks they dominate. This way |
| 1715 | // a loop header is removed last, a requirement for correct loop information |
| 1716 | // iteration. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1717 | DCHECK(dominated_blocks_.empty()); |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1718 | |
David Brazdil | 9eeebf6 | 2016-03-24 11:18:15 +0000 | [diff] [blame] | 1719 | // The following steps gradually remove the block from all its dependants in |
| 1720 | // post order (b/27683071). |
| 1721 | |
| 1722 | // (1) Store a basic block that we'll use in step (5) to find loops to be updated. |
| 1723 | // We need to do this before step (4) which destroys the predecessor list. |
| 1724 | HBasicBlock* loop_update_start = this; |
| 1725 | if (IsLoopHeader()) { |
| 1726 | HLoopInformation* loop_info = GetLoopInformation(); |
| 1727 | // All other blocks in this loop should have been removed because the header |
| 1728 | // was their dominator. |
| 1729 | // Note that we do not remove `this` from `loop_info` as it is unreachable. |
| 1730 | DCHECK(!loop_info->IsIrreducible()); |
| 1731 | DCHECK_EQ(loop_info->GetBlocks().NumSetBits(), 1u); |
| 1732 | DCHECK_EQ(static_cast<uint32_t>(loop_info->GetBlocks().GetHighestBitSet()), GetBlockId()); |
| 1733 | loop_update_start = loop_info->GetPreHeader(); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1734 | } |
| 1735 | |
David Brazdil | 9eeebf6 | 2016-03-24 11:18:15 +0000 | [diff] [blame] | 1736 | // (2) Disconnect the block from its successors and update their phis. |
| 1737 | for (HBasicBlock* successor : successors_) { |
| 1738 | // Delete this block from the list of predecessors. |
| 1739 | size_t this_index = successor->GetPredecessorIndexOf(this); |
| 1740 | successor->predecessors_.erase(successor->predecessors_.begin() + this_index); |
| 1741 | |
| 1742 | // Check that `successor` has other predecessors, otherwise `this` is the |
| 1743 | // dominator of `successor` which violates the order DCHECKed at the top. |
| 1744 | DCHECK(!successor->predecessors_.empty()); |
| 1745 | |
| 1746 | // Remove this block's entries in the successor's phis. Skip exceptional |
| 1747 | // successors because catch phi inputs do not correspond to predecessor |
| 1748 | // blocks but throwing instructions. The inputs of the catch phis will be |
| 1749 | // updated in step (3). |
| 1750 | if (!successor->IsCatchBlock()) { |
| 1751 | if (successor->predecessors_.size() == 1u) { |
| 1752 | // The successor has just one predecessor left. Replace phis with the only |
| 1753 | // remaining input. |
| 1754 | for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) { |
| 1755 | HPhi* phi = phi_it.Current()->AsPhi(); |
| 1756 | phi->ReplaceWith(phi->InputAt(1 - this_index)); |
| 1757 | successor->RemovePhi(phi); |
| 1758 | } |
| 1759 | } else { |
| 1760 | for (HInstructionIterator phi_it(successor->GetPhis()); !phi_it.Done(); phi_it.Advance()) { |
| 1761 | phi_it.Current()->AsPhi()->RemoveInputAt(this_index); |
| 1762 | } |
| 1763 | } |
| 1764 | } |
| 1765 | } |
| 1766 | successors_.clear(); |
| 1767 | |
| 1768 | // (3) Remove instructions and phis. Instructions should have no remaining uses |
| 1769 | // except in catch phis. If an instruction is used by a catch phi at `index`, |
| 1770 | // remove `index`-th input of all phis in the catch block since they are |
| 1771 | // guaranteed dead. Note that we may miss dead inputs this way but the |
| 1772 | // graph will always remain consistent. |
| 1773 | for (HBackwardInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) { |
| 1774 | HInstruction* insn = it.Current(); |
| 1775 | RemoveUsesOfDeadInstruction(insn); |
| 1776 | RemoveInstruction(insn); |
| 1777 | } |
| 1778 | for (HInstructionIterator it(GetPhis()); !it.Done(); it.Advance()) { |
| 1779 | HPhi* insn = it.Current()->AsPhi(); |
| 1780 | RemoveUsesOfDeadInstruction(insn); |
| 1781 | RemovePhi(insn); |
| 1782 | } |
| 1783 | |
| 1784 | // (4) Disconnect the block from its predecessors and update their |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1785 | // control-flow instructions. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1786 | for (HBasicBlock* predecessor : predecessors_) { |
David Brazdil | 9eeebf6 | 2016-03-24 11:18:15 +0000 | [diff] [blame] | 1787 | // We should not see any back edges as they would have been removed by step (3). |
| 1788 | DCHECK(!IsInLoop() || !GetLoopInformation()->IsBackEdge(*predecessor)); |
| 1789 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1790 | HInstruction* last_instruction = predecessor->GetLastInstruction(); |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1791 | if (last_instruction->IsTryBoundary() && !IsCatchBlock()) { |
| 1792 | // This block is the only normal-flow successor of the TryBoundary which |
| 1793 | // makes `predecessor` dead. Since DCE removes blocks in post order, |
| 1794 | // exception handlers of this TryBoundary were already visited and any |
| 1795 | // remaining handlers therefore must be live. We remove `predecessor` from |
| 1796 | // their list of predecessors. |
| 1797 | DCHECK_EQ(last_instruction->AsTryBoundary()->GetNormalFlowSuccessor(), this); |
| 1798 | while (predecessor->GetSuccessors().size() > 1) { |
| 1799 | HBasicBlock* handler = predecessor->GetSuccessors()[1]; |
| 1800 | DCHECK(handler->IsCatchBlock()); |
| 1801 | predecessor->RemoveSuccessor(handler); |
| 1802 | handler->RemovePredecessor(predecessor); |
| 1803 | } |
| 1804 | } |
| 1805 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1806 | predecessor->RemoveSuccessor(this); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 1807 | uint32_t num_pred_successors = predecessor->GetSuccessors().size(); |
| 1808 | if (num_pred_successors == 1u) { |
| 1809 | // If we have one successor after removing one, then we must have |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1810 | // had an HIf, HPackedSwitch or HTryBoundary, as they have more than one |
| 1811 | // successor. Replace those with a HGoto. |
| 1812 | DCHECK(last_instruction->IsIf() || |
| 1813 | last_instruction->IsPackedSwitch() || |
| 1814 | (last_instruction->IsTryBoundary() && IsCatchBlock())); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 1815 | predecessor->RemoveInstruction(last_instruction); |
Yevgeny Rouban | 3ecfd65 | 2015-09-07 17:57:00 +0600 | [diff] [blame] | 1816 | predecessor->AddInstruction(new (graph_->GetArena()) HGoto(last_instruction->GetDexPc())); |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 1817 | } else if (num_pred_successors == 0u) { |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1818 | // The predecessor has no remaining successors and therefore must be dead. |
| 1819 | // We deliberately leave it without a control-flow instruction so that the |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 1820 | // GraphChecker fails unless it is not removed during the pass too. |
Mark Mendell | fe57faa | 2015-09-18 09:26:15 -0400 | [diff] [blame] | 1821 | predecessor->RemoveInstruction(last_instruction); |
| 1822 | } else { |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1823 | // There are multiple successors left. The removed block might be a successor |
| 1824 | // of a PackedSwitch which will be completely removed (perhaps replaced with |
| 1825 | // a Goto), or we are deleting a catch block from a TryBoundary. In either |
| 1826 | // case, leave `last_instruction` as is for now. |
| 1827 | DCHECK(last_instruction->IsPackedSwitch() || |
| 1828 | (last_instruction->IsTryBoundary() && IsCatchBlock())); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1829 | } |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 1830 | } |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1831 | predecessors_.clear(); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1832 | |
David Brazdil | 9eeebf6 | 2016-03-24 11:18:15 +0000 | [diff] [blame] | 1833 | // (5) Remove the block from all loops it is included in. Skip the inner-most |
| 1834 | // loop if this is the loop header (see definition of `loop_update_start`) |
| 1835 | // because the loop header's predecessor list has been destroyed in step (4). |
| 1836 | for (HLoopInformationOutwardIterator it(*loop_update_start); !it.Done(); it.Advance()) { |
| 1837 | HLoopInformation* loop_info = it.Current(); |
| 1838 | loop_info->Remove(this); |
| 1839 | if (loop_info->IsBackEdge(*this)) { |
| 1840 | // If this was the last back edge of the loop, we deliberately leave the |
| 1841 | // loop in an inconsistent state and will fail GraphChecker unless the |
| 1842 | // entire loop is removed during the pass. |
| 1843 | loop_info->RemoveBackEdge(this); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1844 | } |
| 1845 | } |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1846 | |
David Brazdil | 9eeebf6 | 2016-03-24 11:18:15 +0000 | [diff] [blame] | 1847 | // (6) Disconnect from the dominator. |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1848 | dominator_->RemoveDominatedBlock(this); |
| 1849 | SetDominator(nullptr); |
| 1850 | |
David Brazdil | 9eeebf6 | 2016-03-24 11:18:15 +0000 | [diff] [blame] | 1851 | // (7) Delete from the graph, update reverse post order. |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1852 | graph_->DeleteDeadEmptyBlock(this); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1853 | SetGraph(nullptr); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1854 | } |
| 1855 | |
| 1856 | void HBasicBlock::MergeWith(HBasicBlock* other) { |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1857 | DCHECK_EQ(GetGraph(), other->GetGraph()); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1858 | DCHECK(ContainsElement(dominated_blocks_, other)); |
| 1859 | DCHECK_EQ(GetSingleSuccessor(), other); |
| 1860 | DCHECK_EQ(other->GetSinglePredecessor(), this); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1861 | DCHECK(other->GetPhis().IsEmpty()); |
| 1862 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1863 | // Move instructions from `other` to `this`. |
| 1864 | DCHECK(EndsWithControlFlowInstruction()); |
| 1865 | RemoveInstruction(GetLastInstruction()); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1866 | instructions_.Add(other->GetInstructions()); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1867 | other->instructions_.SetBlockOfInstructions(this); |
| 1868 | other->instructions_.Clear(); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1869 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1870 | // Remove `other` from the loops it is included in. |
| 1871 | for (HLoopInformationOutwardIterator it(*other); !it.Done(); it.Advance()) { |
| 1872 | HLoopInformation* loop_info = it.Current(); |
| 1873 | loop_info->Remove(other); |
| 1874 | if (loop_info->IsBackEdge(*other)) { |
Nicolas Geoffray | db216f4 | 2015-05-05 17:02:20 +0100 | [diff] [blame] | 1875 | loop_info->ReplaceBackEdge(other, this); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1876 | } |
| 1877 | } |
| 1878 | |
| 1879 | // Update links to the successors of `other`. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1880 | successors_.clear(); |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1881 | for (HBasicBlock* successor : other->GetSuccessors()) { |
| 1882 | successor->predecessors_[successor->GetPredecessorIndexOf(other)] = this; |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1883 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1884 | successors_.swap(other->successors_); |
| 1885 | DCHECK(other->successors_.empty()); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1886 | |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1887 | // Update the dominator tree. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1888 | RemoveDominatedBlock(other); |
| 1889 | for (HBasicBlock* dominated : other->GetDominatedBlocks()) { |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1890 | dominated->SetDominator(this); |
| 1891 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1892 | dominated_blocks_.insert( |
| 1893 | dominated_blocks_.end(), other->dominated_blocks_.begin(), other->dominated_blocks_.end()); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1894 | other->dominated_blocks_.clear(); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1895 | other->dominator_ = nullptr; |
| 1896 | |
| 1897 | // Clear the list of predecessors of `other` in preparation of deleting it. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1898 | other->predecessors_.clear(); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1899 | |
| 1900 | // Delete `other` from the graph. The function updates reverse post order. |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1901 | graph_->DeleteDeadEmptyBlock(other); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1902 | other->SetGraph(nullptr); |
| 1903 | } |
| 1904 | |
| 1905 | void HBasicBlock::MergeWithInlined(HBasicBlock* other) { |
| 1906 | DCHECK_NE(GetGraph(), other->GetGraph()); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1907 | DCHECK(GetDominatedBlocks().empty()); |
| 1908 | DCHECK(GetSuccessors().empty()); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1909 | DCHECK(!EndsWithControlFlowInstruction()); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1910 | DCHECK(other->GetSinglePredecessor()->IsEntryBlock()); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1911 | DCHECK(other->GetPhis().IsEmpty()); |
| 1912 | DCHECK(!other->IsInLoop()); |
| 1913 | |
| 1914 | // Move instructions from `other` to `this`. |
| 1915 | instructions_.Add(other->GetInstructions()); |
| 1916 | other->instructions_.SetBlockOfInstructions(this); |
| 1917 | |
| 1918 | // Update links to the successors of `other`. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1919 | successors_.clear(); |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1920 | for (HBasicBlock* successor : other->GetSuccessors()) { |
| 1921 | successor->predecessors_[successor->GetPredecessorIndexOf(other)] = this; |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1922 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1923 | successors_.swap(other->successors_); |
| 1924 | DCHECK(other->successors_.empty()); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1925 | |
| 1926 | // Update the dominator tree. |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1927 | for (HBasicBlock* dominated : other->GetDominatedBlocks()) { |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1928 | dominated->SetDominator(this); |
| 1929 | } |
Vladimir Marko | 661b69b | 2016-11-09 14:11:37 +0000 | [diff] [blame] | 1930 | dominated_blocks_.insert( |
| 1931 | dominated_blocks_.end(), other->dominated_blocks_.begin(), other->dominated_blocks_.end()); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1932 | other->dominated_blocks_.clear(); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1933 | other->dominator_ = nullptr; |
| 1934 | other->graph_ = nullptr; |
| 1935 | } |
| 1936 | |
| 1937 | void HBasicBlock::ReplaceWith(HBasicBlock* other) { |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1938 | while (!GetPredecessors().empty()) { |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 1939 | HBasicBlock* predecessor = GetPredecessors()[0]; |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1940 | predecessor->ReplaceSuccessor(this, other); |
| 1941 | } |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1942 | while (!GetSuccessors().empty()) { |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 1943 | HBasicBlock* successor = GetSuccessors()[0]; |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1944 | successor->ReplacePredecessor(this, other); |
| 1945 | } |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1946 | for (HBasicBlock* dominated : GetDominatedBlocks()) { |
| 1947 | other->AddDominatedBlock(dominated); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 1948 | } |
| 1949 | GetDominator()->ReplaceDominatedBlock(this, other); |
| 1950 | other->SetDominator(GetDominator()); |
| 1951 | dominator_ = nullptr; |
| 1952 | graph_ = nullptr; |
| 1953 | } |
| 1954 | |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1955 | void HGraph::DeleteDeadEmptyBlock(HBasicBlock* block) { |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1956 | DCHECK_EQ(block->GetGraph(), this); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 1957 | DCHECK(block->GetSuccessors().empty()); |
| 1958 | DCHECK(block->GetPredecessors().empty()); |
| 1959 | DCHECK(block->GetDominatedBlocks().empty()); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1960 | DCHECK(block->GetDominator() == nullptr); |
David Brazdil | 8a7c0fe | 2015-11-02 20:24:55 +0000 | [diff] [blame] | 1961 | DCHECK(block->GetInstructions().IsEmpty()); |
| 1962 | DCHECK(block->GetPhis().IsEmpty()); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1963 | |
David Brazdil | c7af85d | 2015-05-26 12:05:55 +0100 | [diff] [blame] | 1964 | if (block->IsExitBlock()) { |
Serguei Katkov | 7ba9966 | 2016-03-02 16:25:36 +0600 | [diff] [blame] | 1965 | SetExitBlock(nullptr); |
David Brazdil | c7af85d | 2015-05-26 12:05:55 +0100 | [diff] [blame] | 1966 | } |
| 1967 | |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 1968 | RemoveElement(reverse_post_order_, block); |
| 1969 | blocks_[block->GetBlockId()] = nullptr; |
David Brazdil | 86ea7ee | 2016-02-16 09:26:07 +0000 | [diff] [blame] | 1970 | block->SetGraph(nullptr); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 1971 | } |
| 1972 | |
Nicolas Geoffray | a1d8ddf | 2016-02-29 11:46:58 +0000 | [diff] [blame] | 1973 | void HGraph::UpdateLoopAndTryInformationOfNewBlock(HBasicBlock* block, |
| 1974 | HBasicBlock* reference, |
| 1975 | bool replace_if_back_edge) { |
| 1976 | if (block->IsLoopHeader()) { |
| 1977 | // Clear the information of which blocks are contained in that loop. Since the |
| 1978 | // information is stored as a bit vector based on block ids, we have to update |
| 1979 | // it, as those block ids were specific to the callee graph and we are now adding |
| 1980 | // these blocks to the caller graph. |
| 1981 | block->GetLoopInformation()->ClearAllBlocks(); |
| 1982 | } |
| 1983 | |
| 1984 | // If not already in a loop, update the loop information. |
| 1985 | if (!block->IsInLoop()) { |
| 1986 | block->SetLoopInformation(reference->GetLoopInformation()); |
| 1987 | } |
| 1988 | |
| 1989 | // If the block is in a loop, update all its outward loops. |
| 1990 | HLoopInformation* loop_info = block->GetLoopInformation(); |
| 1991 | if (loop_info != nullptr) { |
| 1992 | for (HLoopInformationOutwardIterator loop_it(*block); |
| 1993 | !loop_it.Done(); |
| 1994 | loop_it.Advance()) { |
| 1995 | loop_it.Current()->Add(block); |
| 1996 | } |
| 1997 | if (replace_if_back_edge && loop_info->IsBackEdge(*reference)) { |
| 1998 | loop_info->ReplaceBackEdge(reference, block); |
| 1999 | } |
| 2000 | } |
| 2001 | |
| 2002 | // Copy TryCatchInformation if `reference` is a try block, not if it is a catch block. |
| 2003 | TryCatchInformation* try_catch_info = reference->IsTryBlock() |
| 2004 | ? reference->GetTryCatchInformation() |
| 2005 | : nullptr; |
| 2006 | block->SetTryCatchInformation(try_catch_info); |
| 2007 | } |
| 2008 | |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2009 | HInstruction* HGraph::InlineInto(HGraph* outer_graph, HInvoke* invoke) { |
David Brazdil | c7af85d | 2015-05-26 12:05:55 +0100 | [diff] [blame] | 2010 | DCHECK(HasExitBlock()) << "Unimplemented scenario"; |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 2011 | // Update the environments in this graph to have the invoke's environment |
| 2012 | // as parent. |
| 2013 | { |
Vladimir Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 2014 | // Skip the entry block, we do not need to update the entry's suspend check. |
| 2015 | for (HBasicBlock* block : GetReversePostOrderSkipEntryBlock()) { |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 2016 | for (HInstructionIterator instr_it(block->GetInstructions()); |
| 2017 | !instr_it.Done(); |
| 2018 | instr_it.Advance()) { |
| 2019 | HInstruction* current = instr_it.Current(); |
| 2020 | if (current->NeedsEnvironment()) { |
David Brazdil | dee58d6 | 2016-04-07 09:54:26 +0000 | [diff] [blame] | 2021 | DCHECK(current->HasEnvironment()); |
Nicolas Geoffray | d23eeef | 2015-05-18 22:31:29 +0100 | [diff] [blame] | 2022 | current->GetEnvironment()->SetAndCopyParentChain( |
| 2023 | outer_graph->GetArena(), invoke->GetEnvironment()); |
| 2024 | } |
| 2025 | } |
| 2026 | } |
| 2027 | } |
| 2028 | outer_graph->UpdateMaximumNumberOfOutVRegs(GetMaximumNumberOfOutVRegs()); |
| 2029 | if (HasBoundsChecks()) { |
| 2030 | outer_graph->SetHasBoundsChecks(true); |
| 2031 | } |
| 2032 | |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2033 | HInstruction* return_value = nullptr; |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2034 | if (GetBlocks().size() == 3) { |
Nicolas Geoffray | be31ff9 | 2015-02-04 14:52:20 +0000 | [diff] [blame] | 2035 | // Simple case of an entry block, a body block, and an exit block. |
| 2036 | // Put the body block's instruction into `invoke`'s block. |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 2037 | HBasicBlock* body = GetBlocks()[1]; |
| 2038 | DCHECK(GetBlocks()[0]->IsEntryBlock()); |
| 2039 | DCHECK(GetBlocks()[2]->IsExitBlock()); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2040 | DCHECK(!body->IsExitBlock()); |
Nicolas Geoffray | 788f2f0 | 2016-01-22 12:41:38 +0000 | [diff] [blame] | 2041 | DCHECK(!body->IsInLoop()); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2042 | HInstruction* last = body->GetLastInstruction(); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2043 | |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 2044 | // Note that we add instructions before the invoke only to simplify polymorphic inlining. |
| 2045 | invoke->GetBlock()->instructions_.AddBefore(invoke, body->GetInstructions()); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2046 | body->GetInstructions().SetBlockOfInstructions(invoke->GetBlock()); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2047 | |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2048 | // Replace the invoke with the return value of the inlined graph. |
| 2049 | if (last->IsReturn()) { |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2050 | return_value = last->InputAt(0); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2051 | } else { |
| 2052 | DCHECK(last->IsReturnVoid()); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2053 | } |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2054 | |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2055 | invoke->GetBlock()->RemoveInstruction(last); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2056 | } else { |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2057 | // Need to inline multiple blocks. We split `invoke`'s block |
| 2058 | // into two blocks, merge the first block of the inlined graph into |
Nicolas Geoffray | be31ff9 | 2015-02-04 14:52:20 +0000 | [diff] [blame] | 2059 | // the first half, and replace the exit block of the inlined graph |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2060 | // with the second half. |
| 2061 | ArenaAllocator* allocator = outer_graph->GetArena(); |
| 2062 | HBasicBlock* at = invoke->GetBlock(); |
Nicolas Geoffray | 916cc1d | 2016-02-18 11:12:31 +0000 | [diff] [blame] | 2063 | // Note that we split before the invoke only to simplify polymorphic inlining. |
| 2064 | HBasicBlock* to = at->SplitBeforeForInlining(invoke); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2065 | |
Vladimir Marko | ec7802a | 2015-10-01 20:57:57 +0100 | [diff] [blame] | 2066 | HBasicBlock* first = entry_block_->GetSuccessors()[0]; |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2067 | DCHECK(!first->IsInLoop()); |
David Brazdil | 2d7352b | 2015-04-20 14:52:42 +0100 | [diff] [blame] | 2068 | at->MergeWithInlined(first); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2069 | exit_block_->ReplaceWith(to); |
| 2070 | |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2071 | // Update the meta information surrounding blocks: |
| 2072 | // (1) the graph they are now in, |
| 2073 | // (2) the reverse post order of that graph, |
Nicolas Geoffray | 788f2f0 | 2016-01-22 12:41:38 +0000 | [diff] [blame] | 2074 | // (3) their potential loop information, inner and outer, |
David Brazdil | 9517798 | 2015-10-30 12:56:58 -0500 | [diff] [blame] | 2075 | // (4) try block membership. |
David Brazdil | 59a850e | 2015-11-10 13:04:30 +0000 | [diff] [blame] | 2076 | // Note that we do not need to update catch phi inputs because they |
| 2077 | // correspond to the register file of the outer method which the inlinee |
| 2078 | // cannot modify. |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2079 | |
| 2080 | // We don't add the entry block, the exit block, and the first block, which |
| 2081 | // has been merged with `at`. |
| 2082 | static constexpr int kNumberOfSkippedBlocksInCallee = 3; |
| 2083 | |
| 2084 | // We add the `to` block. |
| 2085 | static constexpr int kNumberOfNewBlocksInCaller = 1; |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2086 | size_t blocks_added = (reverse_post_order_.size() - kNumberOfSkippedBlocksInCallee) |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2087 | + kNumberOfNewBlocksInCaller; |
| 2088 | |
| 2089 | // Find the location of `at` in the outer graph's reverse post order. The new |
| 2090 | // blocks will be added after it. |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2091 | size_t index_of_at = IndexOfElement(outer_graph->reverse_post_order_, at); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2092 | MakeRoomFor(&outer_graph->reverse_post_order_, blocks_added, index_of_at); |
| 2093 | |
David Brazdil | 9517798 | 2015-10-30 12:56:58 -0500 | [diff] [blame] | 2094 | // Do a reverse post order of the blocks in the callee and do (1), (2), (3) |
| 2095 | // and (4) to the blocks that apply. |
Vladimir Marko | 2c45bc9 | 2016-10-25 16:54:12 +0100 | [diff] [blame] | 2096 | for (HBasicBlock* current : GetReversePostOrder()) { |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2097 | if (current != exit_block_ && current != entry_block_ && current != first) { |
David Brazdil | 9517798 | 2015-10-30 12:56:58 -0500 | [diff] [blame] | 2098 | DCHECK(current->GetTryCatchInformation() == nullptr); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2099 | DCHECK(current->GetGraph() == this); |
| 2100 | current->SetGraph(outer_graph); |
| 2101 | outer_graph->AddBlock(current); |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2102 | outer_graph->reverse_post_order_[++index_of_at] = current; |
Nicolas Geoffray | a1d8ddf | 2016-02-29 11:46:58 +0000 | [diff] [blame] | 2103 | UpdateLoopAndTryInformationOfNewBlock(current, at, /* replace_if_back_edge */ false); |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2104 | } |
| 2105 | } |
| 2106 | |
David Brazdil | 9517798 | 2015-10-30 12:56:58 -0500 | [diff] [blame] | 2107 | // Do (1), (2), (3) and (4) to `to`. |
Nicolas Geoffray | 276d9da | 2015-02-02 18:24:11 +0000 | [diff] [blame] | 2108 | to->SetGraph(outer_graph); |
| 2109 | outer_graph->AddBlock(to); |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2110 | outer_graph->reverse_post_order_[++index_of_at] = to; |
Nicolas Geoffray | a1d8ddf | 2016-02-29 11:46:58 +0000 | [diff] [blame] | 2111 | // Only `to` can become a back edge, as the inlined blocks |
| 2112 | // are predecessors of `to`. |
| 2113 | UpdateLoopAndTryInformationOfNewBlock(to, at, /* replace_if_back_edge */ true); |
Nicolas Geoffray | 7c5367b | 2014-12-17 10:13:46 +0000 | [diff] [blame] | 2114 | |
David Brazdil | 3f52306 | 2016-02-29 16:53:33 +0000 | [diff] [blame] | 2115 | // Update all predecessors of the exit block (now the `to` block) |
| 2116 | // to not `HReturn` but `HGoto` instead. |
| 2117 | bool returns_void = to->GetPredecessors()[0]->GetLastInstruction()->IsReturnVoid(); |
| 2118 | if (to->GetPredecessors().size() == 1) { |
| 2119 | HBasicBlock* predecessor = to->GetPredecessors()[0]; |
| 2120 | HInstruction* last = predecessor->GetLastInstruction(); |
| 2121 | if (!returns_void) { |
| 2122 | return_value = last->InputAt(0); |
| 2123 | } |
| 2124 | predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc())); |
| 2125 | predecessor->RemoveInstruction(last); |
| 2126 | } else { |
| 2127 | if (!returns_void) { |
| 2128 | // There will be multiple returns. |
| 2129 | return_value = new (allocator) HPhi( |
| 2130 | allocator, kNoRegNumber, 0, HPhi::ToPhiType(invoke->GetType()), to->GetDexPc()); |
| 2131 | to->AddPhi(return_value->AsPhi()); |
| 2132 | } |
| 2133 | for (HBasicBlock* predecessor : to->GetPredecessors()) { |
| 2134 | HInstruction* last = predecessor->GetLastInstruction(); |
| 2135 | if (!returns_void) { |
| 2136 | DCHECK(last->IsReturn()); |
| 2137 | return_value->AsPhi()->AddInput(last->InputAt(0)); |
| 2138 | } |
| 2139 | predecessor->AddInstruction(new (allocator) HGoto(last->GetDexPc())); |
| 2140 | predecessor->RemoveInstruction(last); |
| 2141 | } |
| 2142 | } |
| 2143 | } |
David Brazdil | 05144f4 | 2015-04-16 15:18:00 +0100 | [diff] [blame] | 2144 | |
| 2145 | // Walk over the entry block and: |
| 2146 | // - Move constants from the entry block to the outer_graph's entry block, |
| 2147 | // - Replace HParameterValue instructions with their real value. |
| 2148 | // - Remove suspend checks, that hold an environment. |
| 2149 | // We must do this after the other blocks have been inlined, otherwise ids of |
| 2150 | // constants could overlap with the inner graph. |
Roland Levillain | 4c0eb42 | 2015-04-24 16:43:49 +0100 | [diff] [blame] | 2151 | size_t parameter_index = 0; |
David Brazdil | 05144f4 | 2015-04-16 15:18:00 +0100 | [diff] [blame] | 2152 | for (HInstructionIterator it(entry_block_->GetInstructions()); !it.Done(); it.Advance()) { |
| 2153 | HInstruction* current = it.Current(); |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2154 | HInstruction* replacement = nullptr; |
David Brazdil | 05144f4 | 2015-04-16 15:18:00 +0100 | [diff] [blame] | 2155 | if (current->IsNullConstant()) { |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2156 | replacement = outer_graph->GetNullConstant(current->GetDexPc()); |
David Brazdil | 05144f4 | 2015-04-16 15:18:00 +0100 | [diff] [blame] | 2157 | } else if (current->IsIntConstant()) { |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2158 | replacement = outer_graph->GetIntConstant( |
| 2159 | current->AsIntConstant()->GetValue(), current->GetDexPc()); |
David Brazdil | 05144f4 | 2015-04-16 15:18:00 +0100 | [diff] [blame] | 2160 | } else if (current->IsLongConstant()) { |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2161 | replacement = outer_graph->GetLongConstant( |
| 2162 | current->AsLongConstant()->GetValue(), current->GetDexPc()); |
Nicolas Geoffray | f213e05 | 2015-04-27 08:53:46 +0000 | [diff] [blame] | 2163 | } else if (current->IsFloatConstant()) { |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2164 | replacement = outer_graph->GetFloatConstant( |
| 2165 | current->AsFloatConstant()->GetValue(), current->GetDexPc()); |
Nicolas Geoffray | f213e05 | 2015-04-27 08:53:46 +0000 | [diff] [blame] | 2166 | } else if (current->IsDoubleConstant()) { |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2167 | replacement = outer_graph->GetDoubleConstant( |
| 2168 | current->AsDoubleConstant()->GetValue(), current->GetDexPc()); |
David Brazdil | 05144f4 | 2015-04-16 15:18:00 +0100 | [diff] [blame] | 2169 | } else if (current->IsParameterValue()) { |
Roland Levillain | 4c0eb42 | 2015-04-24 16:43:49 +0100 | [diff] [blame] | 2170 | if (kIsDebugBuild |
| 2171 | && invoke->IsInvokeStaticOrDirect() |
| 2172 | && invoke->AsInvokeStaticOrDirect()->IsStaticWithExplicitClinitCheck()) { |
| 2173 | // Ensure we do not use the last input of `invoke`, as it |
| 2174 | // contains a clinit check which is not an actual argument. |
| 2175 | size_t last_input_index = invoke->InputCount() - 1; |
| 2176 | DCHECK(parameter_index != last_input_index); |
| 2177 | } |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2178 | replacement = invoke->InputAt(parameter_index++); |
Nicolas Geoffray | 76b1e17 | 2015-05-27 17:18:33 +0100 | [diff] [blame] | 2179 | } else if (current->IsCurrentMethod()) { |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2180 | replacement = outer_graph->GetCurrentMethod(); |
David Brazdil | 05144f4 | 2015-04-16 15:18:00 +0100 | [diff] [blame] | 2181 | } else { |
| 2182 | DCHECK(current->IsGoto() || current->IsSuspendCheck()); |
| 2183 | entry_block_->RemoveInstruction(current); |
| 2184 | } |
Calin Juravle | 214bbcd | 2015-10-20 14:54:07 +0100 | [diff] [blame] | 2185 | if (replacement != nullptr) { |
| 2186 | current->ReplaceWith(replacement); |
| 2187 | // If the current is the return value then we need to update the latter. |
| 2188 | if (current == return_value) { |
| 2189 | DCHECK_EQ(entry_block_, return_value->GetBlock()); |
| 2190 | return_value = replacement; |
| 2191 | } |
| 2192 | } |
| 2193 | } |
| 2194 | |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2195 | return return_value; |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 2196 | } |
| 2197 | |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2198 | /* |
| 2199 | * Loop will be transformed to: |
| 2200 | * old_pre_header |
| 2201 | * | |
| 2202 | * if_block |
| 2203 | * / \ |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2204 | * true_block false_block |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2205 | * \ / |
| 2206 | * new_pre_header |
| 2207 | * | |
| 2208 | * header |
| 2209 | */ |
| 2210 | void HGraph::TransformLoopHeaderForBCE(HBasicBlock* header) { |
| 2211 | DCHECK(header->IsLoopHeader()); |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2212 | HBasicBlock* old_pre_header = header->GetDominator(); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2213 | |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2214 | // Need extra block to avoid critical edge. |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2215 | HBasicBlock* if_block = new (arena_) HBasicBlock(this, header->GetDexPc()); |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2216 | HBasicBlock* true_block = new (arena_) HBasicBlock(this, header->GetDexPc()); |
| 2217 | HBasicBlock* false_block = new (arena_) HBasicBlock(this, header->GetDexPc()); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2218 | HBasicBlock* new_pre_header = new (arena_) HBasicBlock(this, header->GetDexPc()); |
| 2219 | AddBlock(if_block); |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2220 | AddBlock(true_block); |
| 2221 | AddBlock(false_block); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2222 | AddBlock(new_pre_header); |
| 2223 | |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2224 | header->ReplacePredecessor(old_pre_header, new_pre_header); |
| 2225 | old_pre_header->successors_.clear(); |
| 2226 | old_pre_header->dominated_blocks_.clear(); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2227 | |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2228 | old_pre_header->AddSuccessor(if_block); |
| 2229 | if_block->AddSuccessor(true_block); // True successor |
| 2230 | if_block->AddSuccessor(false_block); // False successor |
| 2231 | true_block->AddSuccessor(new_pre_header); |
| 2232 | false_block->AddSuccessor(new_pre_header); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2233 | |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2234 | old_pre_header->dominated_blocks_.push_back(if_block); |
| 2235 | if_block->SetDominator(old_pre_header); |
| 2236 | if_block->dominated_blocks_.push_back(true_block); |
| 2237 | true_block->SetDominator(if_block); |
| 2238 | if_block->dominated_blocks_.push_back(false_block); |
| 2239 | false_block->SetDominator(if_block); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 2240 | if_block->dominated_blocks_.push_back(new_pre_header); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2241 | new_pre_header->SetDominator(if_block); |
Vladimir Marko | 6058455 | 2015-09-03 13:35:12 +0000 | [diff] [blame] | 2242 | new_pre_header->dominated_blocks_.push_back(header); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2243 | header->SetDominator(new_pre_header); |
| 2244 | |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2245 | // Fix reverse post order. |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2246 | size_t index_of_header = IndexOfElement(reverse_post_order_, header); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2247 | MakeRoomFor(&reverse_post_order_, 4, index_of_header - 1); |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2248 | reverse_post_order_[index_of_header++] = if_block; |
Aart Bik | 3fc7f35 | 2015-11-20 22:03:03 -0800 | [diff] [blame] | 2249 | reverse_post_order_[index_of_header++] = true_block; |
| 2250 | reverse_post_order_[index_of_header++] = false_block; |
Vladimir Marko | fa6b93c | 2015-09-15 10:15:55 +0100 | [diff] [blame] | 2251 | reverse_post_order_[index_of_header++] = new_pre_header; |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2252 | |
Nicolas Geoffray | a1d8ddf | 2016-02-29 11:46:58 +0000 | [diff] [blame] | 2253 | // The pre_header can never be a back edge of a loop. |
| 2254 | DCHECK((old_pre_header->GetLoopInformation() == nullptr) || |
| 2255 | !old_pre_header->GetLoopInformation()->IsBackEdge(*old_pre_header)); |
| 2256 | UpdateLoopAndTryInformationOfNewBlock( |
| 2257 | if_block, old_pre_header, /* replace_if_back_edge */ false); |
| 2258 | UpdateLoopAndTryInformationOfNewBlock( |
| 2259 | true_block, old_pre_header, /* replace_if_back_edge */ false); |
| 2260 | UpdateLoopAndTryInformationOfNewBlock( |
| 2261 | false_block, old_pre_header, /* replace_if_back_edge */ false); |
| 2262 | UpdateLoopAndTryInformationOfNewBlock( |
| 2263 | new_pre_header, old_pre_header, /* replace_if_back_edge */ false); |
Mingyao Yang | 3584bce | 2015-05-19 16:01:59 -0700 | [diff] [blame] | 2264 | } |
| 2265 | |
David Brazdil | f555258 | 2015-12-27 13:36:12 +0000 | [diff] [blame] | 2266 | static void CheckAgainstUpperBound(ReferenceTypeInfo rti, ReferenceTypeInfo upper_bound_rti) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2267 | REQUIRES_SHARED(Locks::mutator_lock_) { |
David Brazdil | f555258 | 2015-12-27 13:36:12 +0000 | [diff] [blame] | 2268 | if (rti.IsValid()) { |
| 2269 | DCHECK(upper_bound_rti.IsSupertypeOf(rti)) |
| 2270 | << " upper_bound_rti: " << upper_bound_rti |
| 2271 | << " rti: " << rti; |
Nicolas Geoffray | 18401b7 | 2016-03-11 13:35:51 +0000 | [diff] [blame] | 2272 | DCHECK(!upper_bound_rti.GetTypeHandle()->CannotBeAssignedFromOtherTypes() || rti.IsExact()) |
| 2273 | << " upper_bound_rti: " << upper_bound_rti |
| 2274 | << " rti: " << rti; |
David Brazdil | f555258 | 2015-12-27 13:36:12 +0000 | [diff] [blame] | 2275 | } |
| 2276 | } |
| 2277 | |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2278 | void HInstruction::SetReferenceTypeInfo(ReferenceTypeInfo rti) { |
| 2279 | if (kIsDebugBuild) { |
| 2280 | DCHECK_EQ(GetType(), Primitive::kPrimNot); |
| 2281 | ScopedObjectAccess soa(Thread::Current()); |
| 2282 | DCHECK(rti.IsValid()) << "Invalid RTI for " << DebugName(); |
| 2283 | if (IsBoundType()) { |
| 2284 | // Having the test here spares us from making the method virtual just for |
| 2285 | // the sake of a DCHECK. |
David Brazdil | f555258 | 2015-12-27 13:36:12 +0000 | [diff] [blame] | 2286 | CheckAgainstUpperBound(rti, AsBoundType()->GetUpperBound()); |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2287 | } |
| 2288 | } |
Vladimir Marko | a1de918 | 2016-02-25 11:37:38 +0000 | [diff] [blame] | 2289 | reference_type_handle_ = rti.GetTypeHandle(); |
| 2290 | SetPackedFlag<kFlagReferenceTypeIsExact>(rti.IsExact()); |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2291 | } |
| 2292 | |
David Brazdil | f555258 | 2015-12-27 13:36:12 +0000 | [diff] [blame] | 2293 | void HBoundType::SetUpperBound(const ReferenceTypeInfo& upper_bound, bool can_be_null) { |
| 2294 | if (kIsDebugBuild) { |
| 2295 | ScopedObjectAccess soa(Thread::Current()); |
| 2296 | DCHECK(upper_bound.IsValid()); |
| 2297 | DCHECK(!upper_bound_.IsValid()) << "Upper bound should only be set once."; |
| 2298 | CheckAgainstUpperBound(GetReferenceTypeInfo(), upper_bound); |
| 2299 | } |
| 2300 | upper_bound_ = upper_bound; |
Vladimir Marko | a1de918 | 2016-02-25 11:37:38 +0000 | [diff] [blame] | 2301 | SetPackedFlag<kFlagUpperCanBeNull>(can_be_null); |
David Brazdil | f555258 | 2015-12-27 13:36:12 +0000 | [diff] [blame] | 2302 | } |
| 2303 | |
Vladimir Marko | a1de918 | 2016-02-25 11:37:38 +0000 | [diff] [blame] | 2304 | ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) { |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2305 | if (kIsDebugBuild) { |
| 2306 | ScopedObjectAccess soa(Thread::Current()); |
| 2307 | DCHECK(IsValidHandle(type_handle)); |
Nicolas Geoffray | 18401b7 | 2016-03-11 13:35:51 +0000 | [diff] [blame] | 2308 | if (!is_exact) { |
| 2309 | DCHECK(!type_handle->CannotBeAssignedFromOtherTypes()) |
| 2310 | << "Callers of ReferenceTypeInfo::Create should ensure is_exact is properly computed"; |
| 2311 | } |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2312 | } |
Vladimir Marko | a1de918 | 2016-02-25 11:37:38 +0000 | [diff] [blame] | 2313 | return ReferenceTypeInfo(type_handle, is_exact); |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2314 | } |
| 2315 | |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 2316 | std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs) { |
| 2317 | ScopedObjectAccess soa(Thread::Current()); |
| 2318 | os << "[" |
Calin Juravle | 2e76830 | 2015-07-28 14:41:11 +0000 | [diff] [blame] | 2319 | << " is_valid=" << rhs.IsValid() |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2320 | << " type=" << (!rhs.IsValid() ? "?" : mirror::Class::PrettyClass(rhs.GetTypeHandle().Get())) |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 2321 | << " is_exact=" << rhs.IsExact() |
| 2322 | << " ]"; |
| 2323 | return os; |
| 2324 | } |
| 2325 | |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2326 | bool HInstruction::HasAnyEnvironmentUseBefore(HInstruction* other) { |
| 2327 | // For now, assume that instructions in different blocks may use the |
| 2328 | // environment. |
| 2329 | // TODO: Use the control flow to decide if this is true. |
| 2330 | if (GetBlock() != other->GetBlock()) { |
| 2331 | return true; |
| 2332 | } |
| 2333 | |
| 2334 | // We know that we are in the same block. Walk from 'this' to 'other', |
| 2335 | // checking to see if there is any instruction with an environment. |
| 2336 | HInstruction* current = this; |
| 2337 | for (; current != other && current != nullptr; current = current->GetNext()) { |
| 2338 | // This is a conservative check, as the instruction result may not be in |
| 2339 | // the referenced environment. |
| 2340 | if (current->HasEnvironment()) { |
| 2341 | return true; |
| 2342 | } |
| 2343 | } |
| 2344 | |
| 2345 | // We should have been called with 'this' before 'other' in the block. |
| 2346 | // Just confirm this. |
| 2347 | DCHECK(current != nullptr); |
| 2348 | return false; |
| 2349 | } |
| 2350 | |
Nicolas Geoffray | a83a54d | 2015-10-02 17:30:26 +0100 | [diff] [blame] | 2351 | void HInvoke::SetIntrinsic(Intrinsics intrinsic, |
Aart Bik | 5d75afe | 2015-12-14 11:57:01 -0800 | [diff] [blame] | 2352 | IntrinsicNeedsEnvironmentOrCache needs_env_or_cache, |
| 2353 | IntrinsicSideEffects side_effects, |
| 2354 | IntrinsicExceptions exceptions) { |
Nicolas Geoffray | a83a54d | 2015-10-02 17:30:26 +0100 | [diff] [blame] | 2355 | intrinsic_ = intrinsic; |
| 2356 | IntrinsicOptimizations opt(this); |
Nicolas Geoffray | a3eca2d | 2016-01-12 16:03:16 +0000 | [diff] [blame] | 2357 | |
Aart Bik | 5d75afe | 2015-12-14 11:57:01 -0800 | [diff] [blame] | 2358 | // Adjust method's side effects from intrinsic table. |
| 2359 | switch (side_effects) { |
| 2360 | case kNoSideEffects: SetSideEffects(SideEffects::None()); break; |
| 2361 | case kReadSideEffects: SetSideEffects(SideEffects::AllReads()); break; |
| 2362 | case kWriteSideEffects: SetSideEffects(SideEffects::AllWrites()); break; |
| 2363 | case kAllSideEffects: SetSideEffects(SideEffects::AllExceptGCDependency()); break; |
| 2364 | } |
Nicolas Geoffray | a3eca2d | 2016-01-12 16:03:16 +0000 | [diff] [blame] | 2365 | |
| 2366 | if (needs_env_or_cache == kNoEnvironmentOrCache) { |
| 2367 | opt.SetDoesNotNeedDexCache(); |
| 2368 | opt.SetDoesNotNeedEnvironment(); |
| 2369 | } else { |
| 2370 | // If we need an environment, that means there will be a call, which can trigger GC. |
| 2371 | SetSideEffects(GetSideEffects().Union(SideEffects::CanTriggerGC())); |
| 2372 | } |
Aart Bik | 5d75afe | 2015-12-14 11:57:01 -0800 | [diff] [blame] | 2373 | // Adjust method's exception status from intrinsic table. |
Aart Bik | 09e8d5f | 2016-01-22 16:49:55 -0800 | [diff] [blame] | 2374 | SetCanThrow(exceptions == kCanThrow); |
Nicolas Geoffray | a83a54d | 2015-10-02 17:30:26 +0100 | [diff] [blame] | 2375 | } |
| 2376 | |
David Brazdil | 6de1938 | 2016-01-08 17:37:10 +0000 | [diff] [blame] | 2377 | bool HNewInstance::IsStringAlloc() const { |
| 2378 | ScopedObjectAccess soa(Thread::Current()); |
| 2379 | return GetReferenceTypeInfo().IsStringClass(); |
| 2380 | } |
| 2381 | |
Nicolas Geoffray | a83a54d | 2015-10-02 17:30:26 +0100 | [diff] [blame] | 2382 | bool HInvoke::NeedsEnvironment() const { |
| 2383 | if (!IsIntrinsic()) { |
| 2384 | return true; |
| 2385 | } |
| 2386 | IntrinsicOptimizations opt(*this); |
| 2387 | return !opt.GetDoesNotNeedEnvironment(); |
| 2388 | } |
| 2389 | |
Vladimir Marko | dc151b2 | 2015-10-15 18:02:30 +0100 | [diff] [blame] | 2390 | bool HInvokeStaticOrDirect::NeedsDexCacheOfDeclaringClass() const { |
| 2391 | if (GetMethodLoadKind() != MethodLoadKind::kDexCacheViaMethod) { |
Nicolas Geoffray | a83a54d | 2015-10-02 17:30:26 +0100 | [diff] [blame] | 2392 | return false; |
| 2393 | } |
| 2394 | if (!IsIntrinsic()) { |
| 2395 | return true; |
| 2396 | } |
| 2397 | IntrinsicOptimizations opt(*this); |
| 2398 | return !opt.GetDoesNotNeedDexCache(); |
| 2399 | } |
| 2400 | |
Vladimir Marko | f64242a | 2015-12-01 14:58:23 +0000 | [diff] [blame] | 2401 | std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::MethodLoadKind rhs) { |
| 2402 | switch (rhs) { |
| 2403 | case HInvokeStaticOrDirect::MethodLoadKind::kStringInit: |
| 2404 | return os << "string_init"; |
| 2405 | case HInvokeStaticOrDirect::MethodLoadKind::kRecursive: |
| 2406 | return os << "recursive"; |
| 2407 | case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress: |
| 2408 | return os << "direct"; |
Vladimir Marko | f64242a | 2015-12-01 14:58:23 +0000 | [diff] [blame] | 2409 | case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative: |
| 2410 | return os << "dex_cache_pc_relative"; |
| 2411 | case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: |
| 2412 | return os << "dex_cache_via_method"; |
| 2413 | default: |
| 2414 | LOG(FATAL) << "Unknown MethodLoadKind: " << static_cast<int>(rhs); |
| 2415 | UNREACHABLE(); |
| 2416 | } |
| 2417 | } |
| 2418 | |
Vladimir Marko | fbb184a | 2015-11-13 14:47:00 +0000 | [diff] [blame] | 2419 | std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::ClinitCheckRequirement rhs) { |
| 2420 | switch (rhs) { |
| 2421 | case HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit: |
| 2422 | return os << "explicit"; |
| 2423 | case HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit: |
| 2424 | return os << "implicit"; |
| 2425 | case HInvokeStaticOrDirect::ClinitCheckRequirement::kNone: |
| 2426 | return os << "none"; |
| 2427 | default: |
Vladimir Marko | f64242a | 2015-12-01 14:58:23 +0000 | [diff] [blame] | 2428 | LOG(FATAL) << "Unknown ClinitCheckRequirement: " << static_cast<int>(rhs); |
| 2429 | UNREACHABLE(); |
Vladimir Marko | fbb184a | 2015-11-13 14:47:00 +0000 | [diff] [blame] | 2430 | } |
| 2431 | } |
| 2432 | |
Nicolas Geoffray | 9b1583e | 2016-12-13 13:43:31 +0000 | [diff] [blame] | 2433 | // Helper for InstructionDataEquals to fetch the mirror Class out |
| 2434 | // from a kJitTableAddress LoadClass kind. |
| 2435 | // NO_THREAD_SAFETY_ANALYSIS because even though we're accessing |
| 2436 | // mirrors, they are stored in a variable size handle scope which is always |
| 2437 | // visited during a pause. Also, the only caller of this helper |
| 2438 | // only uses the mirror for pointer comparison. |
| 2439 | static inline mirror::Class* AsMirrorInternal(uint64_t address) |
| 2440 | NO_THREAD_SAFETY_ANALYSIS { |
| 2441 | return reinterpret_cast<StackReference<mirror::Class>*>(address)->AsMirrorPtr(); |
| 2442 | } |
| 2443 | |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 2444 | bool HLoadClass::InstructionDataEquals(const HInstruction* other) const { |
| 2445 | const HLoadClass* other_load_class = other->AsLoadClass(); |
| 2446 | // TODO: To allow GVN for HLoadClass from different dex files, we should compare the type |
| 2447 | // names rather than type indexes. However, we shall also have to re-think the hash code. |
| 2448 | if (type_index_ != other_load_class->type_index_ || |
| 2449 | GetPackedFields() != other_load_class->GetPackedFields()) { |
| 2450 | return false; |
| 2451 | } |
Nicolas Geoffray | 9b1583e | 2016-12-13 13:43:31 +0000 | [diff] [blame] | 2452 | switch (GetLoadKind()) { |
| 2453 | case LoadKind::kBootImageAddress: |
| 2454 | return GetAddress() == other_load_class->GetAddress(); |
| 2455 | case LoadKind::kJitTableAddress: |
| 2456 | return AsMirrorInternal(GetAddress()) == AsMirrorInternal(other_load_class->GetAddress()); |
| 2457 | default: |
| 2458 | DCHECK(HasTypeReference(GetLoadKind()) || HasDexCacheReference(GetLoadKind())); |
| 2459 | return IsSameDexFile(GetDexFile(), other_load_class->GetDexFile()); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 2460 | } |
| 2461 | } |
| 2462 | |
| 2463 | void HLoadClass::SetLoadKindInternal(LoadKind load_kind) { |
| 2464 | // Once sharpened, the load kind should not be changed again. |
| 2465 | // Also, kReferrersClass should never be overwritten. |
| 2466 | DCHECK_EQ(GetLoadKind(), LoadKind::kDexCacheViaMethod); |
| 2467 | SetPackedField<LoadKindField>(load_kind); |
| 2468 | |
| 2469 | if (load_kind != LoadKind::kDexCacheViaMethod) { |
| 2470 | RemoveAsUserOfInput(0u); |
| 2471 | SetRawInputAt(0u, nullptr); |
| 2472 | } |
| 2473 | if (!NeedsEnvironment()) { |
| 2474 | RemoveEnvironment(); |
| 2475 | SetSideEffects(SideEffects::None()); |
| 2476 | } |
| 2477 | } |
| 2478 | |
| 2479 | std::ostream& operator<<(std::ostream& os, HLoadClass::LoadKind rhs) { |
| 2480 | switch (rhs) { |
| 2481 | case HLoadClass::LoadKind::kReferrersClass: |
| 2482 | return os << "ReferrersClass"; |
| 2483 | case HLoadClass::LoadKind::kBootImageLinkTimeAddress: |
| 2484 | return os << "BootImageLinkTimeAddress"; |
| 2485 | case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: |
| 2486 | return os << "BootImageLinkTimePcRelative"; |
| 2487 | case HLoadClass::LoadKind::kBootImageAddress: |
| 2488 | return os << "BootImageAddress"; |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 2489 | case HLoadClass::LoadKind::kJitTableAddress: |
| 2490 | return os << "JitTableAddress"; |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 2491 | case HLoadClass::LoadKind::kDexCachePcRelative: |
| 2492 | return os << "DexCachePcRelative"; |
| 2493 | case HLoadClass::LoadKind::kDexCacheViaMethod: |
| 2494 | return os << "DexCacheViaMethod"; |
| 2495 | default: |
| 2496 | LOG(FATAL) << "Unknown HLoadClass::LoadKind: " << static_cast<int>(rhs); |
| 2497 | UNREACHABLE(); |
| 2498 | } |
| 2499 | } |
| 2500 | |
Nicolas Geoffray | f0acfe7 | 2017-01-09 20:54:52 +0000 | [diff] [blame] | 2501 | // Helper for InstructionDataEquals to fetch the mirror String out |
| 2502 | // from a kJitTableAddress LoadString kind. |
| 2503 | // NO_THREAD_SAFETY_ANALYSIS because even though we're accessing |
| 2504 | // mirrors, they are stored in a variable size handle scope which is always |
| 2505 | // visited during a pause. Also, the only caller of this helper |
| 2506 | // only uses the mirror for pointer comparison. |
| 2507 | static inline mirror::String* AsMirrorInternal(Handle<mirror::String> handle) |
| 2508 | NO_THREAD_SAFETY_ANALYSIS { |
| 2509 | return handle.Get(); |
| 2510 | } |
| 2511 | |
Vladimir Marko | 372f10e | 2016-05-17 16:30:10 +0100 | [diff] [blame] | 2512 | bool HLoadString::InstructionDataEquals(const HInstruction* other) const { |
| 2513 | const HLoadString* other_load_string = other->AsLoadString(); |
Vladimir Marko | dbb7f5b | 2016-03-30 13:23:58 +0100 | [diff] [blame] | 2514 | // TODO: To allow GVN for HLoadString from different dex files, we should compare the strings |
| 2515 | // rather than their indexes. However, we shall also have to re-think the hash code. |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 2516 | if (string_index_ != other_load_string->string_index_ || |
| 2517 | GetPackedFields() != other_load_string->GetPackedFields()) { |
| 2518 | return false; |
| 2519 | } |
Nicolas Geoffray | f0acfe7 | 2017-01-09 20:54:52 +0000 | [diff] [blame] | 2520 | switch (GetLoadKind()) { |
| 2521 | case LoadKind::kBootImageAddress: |
| 2522 | case LoadKind::kJitTableAddress: |
| 2523 | return AsMirrorInternal(GetString()) == AsMirrorInternal(other_load_string->GetString()); |
| 2524 | default: |
| 2525 | return IsSameDexFile(GetDexFile(), other_load_string->GetDexFile()); |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 2526 | } |
| 2527 | } |
| 2528 | |
Nicolas Geoffray | f0acfe7 | 2017-01-09 20:54:52 +0000 | [diff] [blame] | 2529 | void HLoadString::SetLoadKind(LoadKind load_kind) { |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 2530 | // Once sharpened, the load kind should not be changed again. |
| 2531 | DCHECK_EQ(GetLoadKind(), LoadKind::kDexCacheViaMethod); |
| 2532 | SetPackedField<LoadKindField>(load_kind); |
| 2533 | |
| 2534 | if (load_kind != LoadKind::kDexCacheViaMethod) { |
| 2535 | RemoveAsUserOfInput(0u); |
| 2536 | SetRawInputAt(0u, nullptr); |
| 2537 | } |
| 2538 | if (!NeedsEnvironment()) { |
| 2539 | RemoveEnvironment(); |
Vladimir Marko | ace7a00 | 2016-04-05 11:18:49 +0100 | [diff] [blame] | 2540 | SetSideEffects(SideEffects::None()); |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 2541 | } |
| 2542 | } |
| 2543 | |
| 2544 | std::ostream& operator<<(std::ostream& os, HLoadString::LoadKind rhs) { |
| 2545 | switch (rhs) { |
| 2546 | case HLoadString::LoadKind::kBootImageLinkTimeAddress: |
| 2547 | return os << "BootImageLinkTimeAddress"; |
| 2548 | case HLoadString::LoadKind::kBootImageLinkTimePcRelative: |
| 2549 | return os << "BootImageLinkTimePcRelative"; |
| 2550 | case HLoadString::LoadKind::kBootImageAddress: |
| 2551 | return os << "BootImageAddress"; |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 2552 | case HLoadString::LoadKind::kBssEntry: |
| 2553 | return os << "BssEntry"; |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 2554 | case HLoadString::LoadKind::kDexCacheViaMethod: |
| 2555 | return os << "DexCacheViaMethod"; |
Mingyao Yang | be44dcf | 2016-11-30 14:17:32 -0800 | [diff] [blame] | 2556 | case HLoadString::LoadKind::kJitTableAddress: |
| 2557 | return os << "JitTableAddress"; |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 2558 | default: |
| 2559 | LOG(FATAL) << "Unknown HLoadString::LoadKind: " << static_cast<int>(rhs); |
| 2560 | UNREACHABLE(); |
| 2561 | } |
| 2562 | } |
| 2563 | |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2564 | void HInstruction::RemoveEnvironmentUsers() { |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 2565 | for (const HUseListNode<HEnvironment*>& use : GetEnvUses()) { |
| 2566 | HEnvironment* user = use.GetUser(); |
| 2567 | user->SetRawEnvAt(use.GetIndex(), nullptr); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2568 | } |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 2569 | env_uses_.clear(); |
Mark Mendell | c470193 | 2015-04-10 13:18:51 -0400 | [diff] [blame] | 2570 | } |
| 2571 | |
Roland Levillain | c9b21f8 | 2016-03-23 16:36:59 +0000 | [diff] [blame] | 2572 | // Returns an instruction with the opposite Boolean value from 'cond'. |
Mark Mendell | f652917 | 2015-11-17 11:16:56 -0500 | [diff] [blame] | 2573 | HInstruction* HGraph::InsertOppositeCondition(HInstruction* cond, HInstruction* cursor) { |
| 2574 | ArenaAllocator* allocator = GetArena(); |
| 2575 | |
| 2576 | if (cond->IsCondition() && |
| 2577 | !Primitive::IsFloatingPointType(cond->InputAt(0)->GetType())) { |
| 2578 | // Can't reverse floating point conditions. We have to use HBooleanNot in that case. |
| 2579 | HInstruction* lhs = cond->InputAt(0); |
| 2580 | HInstruction* rhs = cond->InputAt(1); |
David Brazdil | 5c00485 | 2015-11-23 09:44:52 +0000 | [diff] [blame] | 2581 | HInstruction* replacement = nullptr; |
Mark Mendell | f652917 | 2015-11-17 11:16:56 -0500 | [diff] [blame] | 2582 | switch (cond->AsCondition()->GetOppositeCondition()) { // get *opposite* |
| 2583 | case kCondEQ: replacement = new (allocator) HEqual(lhs, rhs); break; |
| 2584 | case kCondNE: replacement = new (allocator) HNotEqual(lhs, rhs); break; |
| 2585 | case kCondLT: replacement = new (allocator) HLessThan(lhs, rhs); break; |
| 2586 | case kCondLE: replacement = new (allocator) HLessThanOrEqual(lhs, rhs); break; |
| 2587 | case kCondGT: replacement = new (allocator) HGreaterThan(lhs, rhs); break; |
| 2588 | case kCondGE: replacement = new (allocator) HGreaterThanOrEqual(lhs, rhs); break; |
| 2589 | case kCondB: replacement = new (allocator) HBelow(lhs, rhs); break; |
| 2590 | case kCondBE: replacement = new (allocator) HBelowOrEqual(lhs, rhs); break; |
| 2591 | case kCondA: replacement = new (allocator) HAbove(lhs, rhs); break; |
| 2592 | case kCondAE: replacement = new (allocator) HAboveOrEqual(lhs, rhs); break; |
David Brazdil | 5c00485 | 2015-11-23 09:44:52 +0000 | [diff] [blame] | 2593 | default: |
| 2594 | LOG(FATAL) << "Unexpected condition"; |
| 2595 | UNREACHABLE(); |
Mark Mendell | f652917 | 2015-11-17 11:16:56 -0500 | [diff] [blame] | 2596 | } |
| 2597 | cursor->GetBlock()->InsertInstructionBefore(replacement, cursor); |
| 2598 | return replacement; |
| 2599 | } else if (cond->IsIntConstant()) { |
| 2600 | HIntConstant* int_const = cond->AsIntConstant(); |
Roland Levillain | 1a65388 | 2016-03-18 18:05:57 +0000 | [diff] [blame] | 2601 | if (int_const->IsFalse()) { |
Mark Mendell | f652917 | 2015-11-17 11:16:56 -0500 | [diff] [blame] | 2602 | return GetIntConstant(1); |
| 2603 | } else { |
Roland Levillain | 1a65388 | 2016-03-18 18:05:57 +0000 | [diff] [blame] | 2604 | DCHECK(int_const->IsTrue()) << int_const->GetValue(); |
Mark Mendell | f652917 | 2015-11-17 11:16:56 -0500 | [diff] [blame] | 2605 | return GetIntConstant(0); |
| 2606 | } |
| 2607 | } else { |
| 2608 | HInstruction* replacement = new (allocator) HBooleanNot(cond); |
| 2609 | cursor->GetBlock()->InsertInstructionBefore(replacement, cursor); |
| 2610 | return replacement; |
| 2611 | } |
| 2612 | } |
| 2613 | |
Roland Levillain | c928591 | 2015-12-18 10:38:42 +0000 | [diff] [blame] | 2614 | std::ostream& operator<<(std::ostream& os, const MoveOperands& rhs) { |
| 2615 | os << "[" |
| 2616 | << " source=" << rhs.GetSource() |
| 2617 | << " destination=" << rhs.GetDestination() |
| 2618 | << " type=" << rhs.GetType() |
| 2619 | << " instruction="; |
| 2620 | if (rhs.GetInstruction() != nullptr) { |
| 2621 | os << rhs.GetInstruction()->DebugName() << ' ' << rhs.GetInstruction()->GetId(); |
| 2622 | } else { |
| 2623 | os << "null"; |
| 2624 | } |
| 2625 | os << " ]"; |
| 2626 | return os; |
| 2627 | } |
| 2628 | |
Roland Levillain | 8650378 | 2016-02-11 19:07:30 +0000 | [diff] [blame] | 2629 | std::ostream& operator<<(std::ostream& os, TypeCheckKind rhs) { |
| 2630 | switch (rhs) { |
| 2631 | case TypeCheckKind::kUnresolvedCheck: |
| 2632 | return os << "unresolved_check"; |
| 2633 | case TypeCheckKind::kExactCheck: |
| 2634 | return os << "exact_check"; |
| 2635 | case TypeCheckKind::kClassHierarchyCheck: |
| 2636 | return os << "class_hierarchy_check"; |
| 2637 | case TypeCheckKind::kAbstractClassCheck: |
| 2638 | return os << "abstract_class_check"; |
| 2639 | case TypeCheckKind::kInterfaceCheck: |
| 2640 | return os << "interface_check"; |
| 2641 | case TypeCheckKind::kArrayObjectCheck: |
| 2642 | return os << "array_object_check"; |
| 2643 | case TypeCheckKind::kArrayCheck: |
| 2644 | return os << "array_check"; |
| 2645 | default: |
| 2646 | LOG(FATAL) << "Unknown TypeCheckKind: " << static_cast<int>(rhs); |
| 2647 | UNREACHABLE(); |
| 2648 | } |
| 2649 | } |
| 2650 | |
Andreas Gampe | 26de38b | 2016-07-27 17:53:11 -0700 | [diff] [blame] | 2651 | std::ostream& operator<<(std::ostream& os, const MemBarrierKind& kind) { |
| 2652 | switch (kind) { |
| 2653 | case MemBarrierKind::kAnyStore: |
Andreas Gampe | 75d2df2 | 2016-07-27 21:25:41 -0700 | [diff] [blame] | 2654 | return os << "AnyStore"; |
Andreas Gampe | 26de38b | 2016-07-27 17:53:11 -0700 | [diff] [blame] | 2655 | case MemBarrierKind::kLoadAny: |
Andreas Gampe | 75d2df2 | 2016-07-27 21:25:41 -0700 | [diff] [blame] | 2656 | return os << "LoadAny"; |
Andreas Gampe | 26de38b | 2016-07-27 17:53:11 -0700 | [diff] [blame] | 2657 | case MemBarrierKind::kStoreStore: |
Andreas Gampe | 75d2df2 | 2016-07-27 21:25:41 -0700 | [diff] [blame] | 2658 | return os << "StoreStore"; |
Andreas Gampe | 26de38b | 2016-07-27 17:53:11 -0700 | [diff] [blame] | 2659 | case MemBarrierKind::kAnyAny: |
Andreas Gampe | 75d2df2 | 2016-07-27 21:25:41 -0700 | [diff] [blame] | 2660 | return os << "AnyAny"; |
Andreas Gampe | 26de38b | 2016-07-27 17:53:11 -0700 | [diff] [blame] | 2661 | case MemBarrierKind::kNTStoreStore: |
Andreas Gampe | 75d2df2 | 2016-07-27 21:25:41 -0700 | [diff] [blame] | 2662 | return os << "NTStoreStore"; |
Andreas Gampe | 26de38b | 2016-07-27 17:53:11 -0700 | [diff] [blame] | 2663 | |
| 2664 | default: |
| 2665 | LOG(FATAL) << "Unknown MemBarrierKind: " << static_cast<int>(kind); |
| 2666 | UNREACHABLE(); |
| 2667 | } |
| 2668 | } |
| 2669 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 2670 | } // namespace art |