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 | */ |
| 16 | |
| 17 | #ifndef ART_COMPILER_OPTIMIZING_NODES_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_NODES_H_ |
| 19 | |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 20 | #include "locations.h" |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 21 | #include "utils/allocation.h" |
Nicolas Geoffray | 0e33643 | 2014-02-26 18:24:38 +0000 | [diff] [blame] | 22 | #include "utils/arena_bit_vector.h" |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 23 | #include "utils/growable_array.h" |
| 24 | |
| 25 | namespace art { |
| 26 | |
| 27 | class HBasicBlock; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 28 | class HEnvironment; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 29 | class HInstruction; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 30 | class HIntConstant; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 31 | class HGraphVisitor; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 32 | class HPhi; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 33 | class LiveInterval; |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 34 | class LocationSummary; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 35 | |
| 36 | static const int kDefaultNumberOfBlocks = 8; |
| 37 | static const int kDefaultNumberOfSuccessors = 2; |
| 38 | static const int kDefaultNumberOfPredecessors = 2; |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 39 | static const int kDefaultNumberOfBackEdges = 1; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 40 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 41 | class HInstructionList { |
| 42 | public: |
| 43 | HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} |
| 44 | |
| 45 | void AddInstruction(HInstruction* instruction); |
| 46 | void RemoveInstruction(HInstruction* instruction); |
| 47 | |
| 48 | private: |
| 49 | HInstruction* first_instruction_; |
| 50 | HInstruction* last_instruction_; |
| 51 | |
| 52 | friend class HBasicBlock; |
| 53 | friend class HInstructionIterator; |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 54 | friend class HBackwardInstructionIterator; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 55 | |
| 56 | DISALLOW_COPY_AND_ASSIGN(HInstructionList); |
| 57 | }; |
| 58 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 59 | // Control-flow graph of a method. Contains a list of basic blocks. |
| 60 | class HGraph : public ArenaObject { |
| 61 | public: |
| 62 | explicit HGraph(ArenaAllocator* arena) |
| 63 | : arena_(arena), |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 64 | blocks_(arena, kDefaultNumberOfBlocks), |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 65 | reverse_post_order_(arena, kDefaultNumberOfBlocks), |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 66 | maximum_number_of_out_vregs_(0), |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 67 | number_of_vregs_(0), |
| 68 | number_of_in_vregs_(0), |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 69 | current_instruction_id_(0) { } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 70 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 71 | ArenaAllocator* GetArena() const { return arena_; } |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 72 | const GrowableArray<HBasicBlock*>& GetBlocks() const { return blocks_; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 73 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 74 | HBasicBlock* GetEntryBlock() const { return entry_block_; } |
| 75 | HBasicBlock* GetExitBlock() const { return exit_block_; } |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 76 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 77 | void SetEntryBlock(HBasicBlock* block) { entry_block_ = block; } |
| 78 | void SetExitBlock(HBasicBlock* block) { exit_block_ = block; } |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 79 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 80 | void AddBlock(HBasicBlock* block); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 81 | |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 82 | void BuildDominatorTree(); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 83 | void TransformToSSA(); |
| 84 | void SimplifyCFG(); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 85 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 86 | // Find all natural loops in this graph. Aborts computation and returns false |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 87 | // if one loop is not natural, that is the header does not dominate the back |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 88 | // edge. |
| 89 | bool FindNaturalLoops() const; |
| 90 | |
| 91 | void SplitCriticalEdge(HBasicBlock* block, HBasicBlock* successor); |
| 92 | void SimplifyLoop(HBasicBlock* header); |
| 93 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 94 | int GetNextInstructionId() { |
| 95 | return current_instruction_id_++; |
| 96 | } |
| 97 | |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 98 | uint16_t GetMaximumNumberOfOutVRegs() const { |
| 99 | return maximum_number_of_out_vregs_; |
| 100 | } |
| 101 | |
| 102 | void UpdateMaximumNumberOfOutVRegs(uint16_t new_value) { |
| 103 | maximum_number_of_out_vregs_ = std::max(new_value, maximum_number_of_out_vregs_); |
| 104 | } |
| 105 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 106 | void SetNumberOfVRegs(uint16_t number_of_vregs) { |
| 107 | number_of_vregs_ = number_of_vregs; |
| 108 | } |
| 109 | |
| 110 | uint16_t GetNumberOfVRegs() const { |
| 111 | return number_of_vregs_; |
| 112 | } |
| 113 | |
| 114 | void SetNumberOfInVRegs(uint16_t value) { |
| 115 | number_of_in_vregs_ = value; |
| 116 | } |
| 117 | |
| 118 | uint16_t GetNumberOfInVRegs() const { |
| 119 | return number_of_in_vregs_; |
| 120 | } |
| 121 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 122 | const GrowableArray<HBasicBlock*>& GetReversePostOrder() const { |
| 123 | return reverse_post_order_; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 124 | } |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 125 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 126 | private: |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 127 | HBasicBlock* FindCommonDominator(HBasicBlock* first, HBasicBlock* second) const; |
| 128 | void VisitBlockForDominatorTree(HBasicBlock* block, |
| 129 | HBasicBlock* predecessor, |
| 130 | GrowableArray<size_t>* visits); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 131 | void FindBackEdges(ArenaBitVector* visited); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 132 | void VisitBlockForBackEdges(HBasicBlock* block, |
| 133 | ArenaBitVector* visited, |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 134 | ArenaBitVector* visiting); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 135 | void RemoveDeadBlocks(const ArenaBitVector& visited) const; |
| 136 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 137 | ArenaAllocator* const arena_; |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 138 | |
| 139 | // List of blocks in insertion order. |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 140 | GrowableArray<HBasicBlock*> blocks_; |
| 141 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 142 | // List of blocks to perform a reverse post order tree traversal. |
| 143 | GrowableArray<HBasicBlock*> reverse_post_order_; |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 144 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 145 | HBasicBlock* entry_block_; |
| 146 | HBasicBlock* exit_block_; |
| 147 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 148 | // The maximum number of virtual registers arguments passed to a HInvoke in this graph. |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 149 | uint16_t maximum_number_of_out_vregs_; |
| 150 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 151 | // The number of virtual registers in this method. Contains the parameters. |
| 152 | uint16_t number_of_vregs_; |
| 153 | |
| 154 | // The number of virtual registers used by parameters of this method. |
| 155 | uint16_t number_of_in_vregs_; |
| 156 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 157 | // The current id to assign to a newly added instruction. See HInstruction.id_. |
| 158 | int current_instruction_id_; |
| 159 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 160 | DISALLOW_COPY_AND_ASSIGN(HGraph); |
| 161 | }; |
| 162 | |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 163 | class HLoopInformation : public ArenaObject { |
| 164 | public: |
| 165 | HLoopInformation(HBasicBlock* header, HGraph* graph) |
| 166 | : header_(header), |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 167 | back_edges_(graph->GetArena(), kDefaultNumberOfBackEdges), |
| 168 | blocks_(graph->GetArena(), graph->GetBlocks().Size(), false) {} |
| 169 | |
| 170 | HBasicBlock* GetHeader() const { |
| 171 | return header_; |
| 172 | } |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 173 | |
| 174 | void AddBackEdge(HBasicBlock* back_edge) { |
| 175 | back_edges_.Add(back_edge); |
| 176 | } |
| 177 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 178 | void RemoveBackEdge(HBasicBlock* back_edge) { |
| 179 | back_edges_.Delete(back_edge); |
| 180 | } |
| 181 | |
| 182 | bool IsBackEdge(HBasicBlock* block) { |
| 183 | for (size_t i = 0, e = back_edges_.Size(); i < e; ++i) { |
| 184 | if (back_edges_.Get(i) == block) return true; |
| 185 | } |
| 186 | return false; |
| 187 | } |
| 188 | |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 189 | int NumberOfBackEdges() const { |
| 190 | return back_edges_.Size(); |
| 191 | } |
| 192 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 193 | HBasicBlock* GetPreHeader() const; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 194 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 195 | const GrowableArray<HBasicBlock*>& GetBackEdges() const { |
| 196 | return back_edges_; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 199 | void ClearBackEdges() { |
| 200 | back_edges_.Reset(); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 201 | } |
| 202 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 203 | // Find blocks that are part of this loop. Returns whether the loop is a natural loop, |
| 204 | // that is the header dominates the back edge. |
| 205 | bool Populate(); |
| 206 | |
| 207 | // Returns whether this loop information contains `block`. |
| 208 | // Note that this loop information *must* be populated before entering this function. |
| 209 | bool Contains(const HBasicBlock& block) const; |
| 210 | |
| 211 | // Returns whether this loop information is an inner loop of `other`. |
| 212 | // Note that `other` *must* be populated before entering this function. |
| 213 | bool IsIn(const HLoopInformation& other) const; |
| 214 | |
| 215 | const ArenaBitVector& GetBlocks() const { return blocks_; } |
| 216 | |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 217 | private: |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 218 | // Internal recursive implementation of `Populate`. |
| 219 | void PopulateRecursive(HBasicBlock* block); |
| 220 | |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 221 | HBasicBlock* header_; |
| 222 | GrowableArray<HBasicBlock*> back_edges_; |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 223 | ArenaBitVector blocks_; |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 224 | |
| 225 | DISALLOW_COPY_AND_ASSIGN(HLoopInformation); |
| 226 | }; |
| 227 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 228 | static constexpr size_t kNoLifetime = -1; |
| 229 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 230 | // A block in a method. Contains the list of instructions represented |
| 231 | // as a double linked list. Each block knows its predecessors and |
| 232 | // successors. |
| 233 | class HBasicBlock : public ArenaObject { |
| 234 | public: |
| 235 | explicit HBasicBlock(HGraph* graph) |
| 236 | : graph_(graph), |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 237 | predecessors_(graph->GetArena(), kDefaultNumberOfPredecessors), |
| 238 | successors_(graph->GetArena(), kDefaultNumberOfSuccessors), |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 239 | loop_information_(nullptr), |
| 240 | dominator_(nullptr), |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 241 | block_id_(-1), |
| 242 | lifetime_start_(kNoLifetime), |
| 243 | lifetime_end_(kNoLifetime) {} |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 244 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 245 | const GrowableArray<HBasicBlock*>& GetPredecessors() const { |
| 246 | return predecessors_; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 249 | const GrowableArray<HBasicBlock*>& GetSuccessors() const { |
| 250 | return successors_; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 253 | void AddBackEdge(HBasicBlock* back_edge) { |
| 254 | if (loop_information_ == nullptr) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 255 | loop_information_ = new (graph_->GetArena()) HLoopInformation(this, graph_); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 256 | } |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 257 | DCHECK_EQ(loop_information_->GetHeader(), this); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 258 | loop_information_->AddBackEdge(back_edge); |
| 259 | } |
| 260 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 261 | HGraph* GetGraph() const { return graph_; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 262 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 263 | int GetBlockId() const { return block_id_; } |
| 264 | void SetBlockId(int id) { block_id_ = id; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 265 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 266 | HBasicBlock* GetDominator() const { return dominator_; } |
| 267 | void SetDominator(HBasicBlock* dominator) { dominator_ = dominator; } |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 268 | |
| 269 | int NumberOfBackEdges() const { |
| 270 | return loop_information_ == nullptr |
| 271 | ? 0 |
| 272 | : loop_information_->NumberOfBackEdges(); |
| 273 | } |
| 274 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 275 | HInstruction* GetFirstInstruction() const { return instructions_.first_instruction_; } |
| 276 | HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 277 | const HInstructionList& GetInstructions() const { return instructions_; } |
| 278 | const HInstructionList& GetPhis() const { return phis_; } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 279 | HInstruction* GetFirstPhi() const { return phis_.first_instruction_; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 280 | |
| 281 | void AddSuccessor(HBasicBlock* block) { |
| 282 | successors_.Add(block); |
| 283 | block->predecessors_.Add(this); |
| 284 | } |
| 285 | |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 286 | void ReplaceSuccessor(HBasicBlock* existing, HBasicBlock* new_block) { |
| 287 | size_t successor_index = GetSuccessorIndexOf(existing); |
| 288 | DCHECK_NE(successor_index, static_cast<size_t>(-1)); |
| 289 | existing->RemovePredecessor(this); |
| 290 | new_block->predecessors_.Add(this); |
| 291 | successors_.Put(successor_index, new_block); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 294 | void RemovePredecessor(HBasicBlock* block) { |
| 295 | predecessors_.Delete(block); |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | void ClearAllPredecessors() { |
| 299 | predecessors_.Reset(); |
| 300 | } |
| 301 | |
| 302 | void AddPredecessor(HBasicBlock* block) { |
| 303 | predecessors_.Add(block); |
| 304 | block->successors_.Add(this); |
| 305 | } |
| 306 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 307 | size_t GetPredecessorIndexOf(HBasicBlock* predecessor) { |
| 308 | for (size_t i = 0, e = predecessors_.Size(); i < e; ++i) { |
| 309 | if (predecessors_.Get(i) == predecessor) { |
| 310 | return i; |
| 311 | } |
| 312 | } |
| 313 | return -1; |
| 314 | } |
| 315 | |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 316 | size_t GetSuccessorIndexOf(HBasicBlock* successor) { |
| 317 | for (size_t i = 0, e = successors_.Size(); i < e; ++i) { |
| 318 | if (successors_.Get(i) == successor) { |
| 319 | return i; |
| 320 | } |
| 321 | } |
| 322 | return -1; |
| 323 | } |
| 324 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 325 | void AddInstruction(HInstruction* instruction); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 326 | void RemoveInstruction(HInstruction* instruction); |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 327 | void InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 328 | void AddPhi(HPhi* phi); |
| 329 | void RemovePhi(HPhi* phi); |
| 330 | |
| 331 | bool IsLoopHeader() const { |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 332 | return (loop_information_ != nullptr) && (loop_information_->GetHeader() == this); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | HLoopInformation* GetLoopInformation() const { |
| 336 | return loop_information_; |
| 337 | } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 338 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 339 | // Set the loop_information_ on this block. This method overrides the current |
| 340 | // loop_information if it is an outer loop of the passed loop information. |
| 341 | void SetInLoop(HLoopInformation* info) { |
| 342 | if (IsLoopHeader()) { |
| 343 | // Nothing to do. This just means `info` is an outer loop. |
| 344 | } else if (loop_information_ == nullptr) { |
| 345 | loop_information_ = info; |
| 346 | } else if (loop_information_->Contains(*info->GetHeader())) { |
| 347 | // Block is currently part of an outer loop. Make it part of this inner loop. |
| 348 | // Note that a non loop header having a loop information means this loop information |
| 349 | // has already been populated |
| 350 | loop_information_ = info; |
| 351 | } else { |
| 352 | // Block is part of an inner loop. Do not update the loop information. |
| 353 | // Note that we cannot do the check `info->Contains(loop_information_)->GetHeader()` |
| 354 | // at this point, because this method is being called while populating `info`. |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | // Returns wheter this block dominates the blocked passed as parameter. |
| 359 | bool Dominates(HBasicBlock* block) const; |
| 360 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 361 | size_t GetLifetimeStart() const { return lifetime_start_; } |
| 362 | size_t GetLifetimeEnd() const { return lifetime_end_; } |
| 363 | |
| 364 | void SetLifetimeStart(size_t start) { lifetime_start_ = start; } |
| 365 | void SetLifetimeEnd(size_t end) { lifetime_end_ = end; } |
| 366 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 367 | private: |
| 368 | HGraph* const graph_; |
| 369 | GrowableArray<HBasicBlock*> predecessors_; |
| 370 | GrowableArray<HBasicBlock*> successors_; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 371 | HInstructionList instructions_; |
| 372 | HInstructionList phis_; |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 373 | HLoopInformation* loop_information_; |
| 374 | HBasicBlock* dominator_; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 375 | int block_id_; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 376 | size_t lifetime_start_; |
| 377 | size_t lifetime_end_; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 378 | |
| 379 | DISALLOW_COPY_AND_ASSIGN(HBasicBlock); |
| 380 | }; |
| 381 | |
| 382 | #define FOR_EACH_INSTRUCTION(M) \ |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 383 | M(Add) \ |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 384 | M(Equal) \ |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 385 | M(Exit) \ |
| 386 | M(Goto) \ |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 387 | M(If) \ |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 388 | M(IntConstant) \ |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 389 | M(InvokeStatic) \ |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 390 | M(LoadLocal) \ |
| 391 | M(Local) \ |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 392 | M(LongConstant) \ |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 393 | M(NewInstance) \ |
Nicolas Geoffray | b55f835 | 2014-04-07 15:26:35 +0100 | [diff] [blame] | 394 | M(Not) \ |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 395 | M(ParameterValue) \ |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 396 | M(ParallelMove) \ |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 397 | M(Phi) \ |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 398 | M(Return) \ |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 399 | M(ReturnVoid) \ |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 400 | M(StoreLocal) \ |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 401 | M(Sub) \ |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 402 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 403 | #define FORWARD_DECLARATION(type) class H##type; |
| 404 | FOR_EACH_INSTRUCTION(FORWARD_DECLARATION) |
| 405 | #undef FORWARD_DECLARATION |
| 406 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 407 | #define DECLARE_INSTRUCTION(type) \ |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 408 | virtual const char* DebugName() const { return #type; } \ |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 409 | virtual H##type* As##type() { return this; } \ |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 410 | virtual void Accept(HGraphVisitor* visitor) \ |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 411 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 412 | template <typename T> |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 413 | class HUseListNode : public ArenaObject { |
| 414 | public: |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 415 | HUseListNode(T* user, size_t index, HUseListNode* tail) |
| 416 | : user_(user), index_(index), tail_(tail) { } |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 417 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 418 | HUseListNode* GetTail() const { return tail_; } |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 419 | T* GetUser() const { return user_; } |
| 420 | size_t GetIndex() const { return index_; } |
| 421 | |
| 422 | void SetTail(HUseListNode<T>* node) { tail_ = node; } |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 423 | |
| 424 | private: |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 425 | T* const user_; |
| 426 | const size_t index_; |
| 427 | HUseListNode<T>* tail_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 428 | |
| 429 | DISALLOW_COPY_AND_ASSIGN(HUseListNode); |
| 430 | }; |
| 431 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 432 | class HInstruction : public ArenaObject { |
| 433 | public: |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 434 | HInstruction() |
| 435 | : previous_(nullptr), |
| 436 | next_(nullptr), |
| 437 | block_(nullptr), |
| 438 | id_(-1), |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 439 | ssa_index_(-1), |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 440 | uses_(nullptr), |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 441 | env_uses_(nullptr), |
| 442 | environment_(nullptr), |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 443 | locations_(nullptr), |
| 444 | live_interval_(nullptr), |
| 445 | lifetime_position_(kNoLifetime) {} |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 446 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 447 | virtual ~HInstruction() { } |
| 448 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 449 | HInstruction* GetNext() const { return next_; } |
| 450 | HInstruction* GetPrevious() const { return previous_; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 451 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 452 | HBasicBlock* GetBlock() const { return block_; } |
| 453 | void SetBlock(HBasicBlock* block) { block_ = block; } |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 454 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 455 | virtual size_t InputCount() const = 0; |
| 456 | virtual HInstruction* InputAt(size_t i) const = 0; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 457 | |
| 458 | virtual void Accept(HGraphVisitor* visitor) = 0; |
| 459 | virtual const char* DebugName() const = 0; |
| 460 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 461 | virtual Primitive::Type GetType() const { return Primitive::kPrimVoid; } |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 462 | virtual void SetRawInputAt(size_t index, HInstruction* input) = 0; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 463 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 464 | virtual bool NeedsEnvironment() const { return false; } |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 465 | virtual bool IsControlFlow() const { return false; } |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 466 | |
| 467 | void AddUseAt(HInstruction* user, size_t index) { |
| 468 | uses_ = new (block_->GetGraph()->GetArena()) HUseListNode<HInstruction>(user, index, uses_); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 469 | } |
| 470 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 471 | void AddEnvUseAt(HEnvironment* user, size_t index) { |
| 472 | env_uses_ = new (block_->GetGraph()->GetArena()) HUseListNode<HEnvironment>( |
| 473 | user, index, env_uses_); |
| 474 | } |
| 475 | |
| 476 | void RemoveUser(HInstruction* user, size_t index); |
| 477 | |
| 478 | HUseListNode<HInstruction>* GetUses() const { return uses_; } |
| 479 | HUseListNode<HEnvironment>* GetEnvUses() const { return env_uses_; } |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 480 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 481 | bool HasUses() const { return uses_ != nullptr || env_uses_ != nullptr; } |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 482 | |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 483 | size_t NumberOfUses() const { |
Nicolas Geoffray | 0d3f578 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 484 | // TODO: Optimize this method if it is used outside of the HGraphVisualizer. |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 485 | size_t result = 0; |
| 486 | HUseListNode<HInstruction>* current = uses_; |
| 487 | while (current != nullptr) { |
| 488 | current = current->GetTail(); |
| 489 | ++result; |
| 490 | } |
| 491 | return result; |
| 492 | } |
| 493 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 494 | int GetId() const { return id_; } |
| 495 | void SetId(int id) { id_ = id; } |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 496 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 497 | int GetSsaIndex() const { return ssa_index_; } |
| 498 | void SetSsaIndex(int ssa_index) { ssa_index_ = ssa_index; } |
| 499 | bool HasSsaIndex() const { return ssa_index_ != -1; } |
| 500 | |
| 501 | bool HasEnvironment() const { return environment_ != nullptr; } |
| 502 | HEnvironment* GetEnvironment() const { return environment_; } |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 503 | void SetEnvironment(HEnvironment* environment) { environment_ = environment; } |
| 504 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 505 | LocationSummary* GetLocations() const { return locations_; } |
| 506 | void SetLocations(LocationSummary* locations) { locations_ = locations; } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 507 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 508 | void ReplaceWith(HInstruction* instruction); |
| 509 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 510 | #define INSTRUCTION_TYPE_CHECK(type) \ |
| 511 | virtual H##type* As##type() { return nullptr; } |
| 512 | |
| 513 | FOR_EACH_INSTRUCTION(INSTRUCTION_TYPE_CHECK) |
| 514 | #undef INSTRUCTION_TYPE_CHECK |
| 515 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 516 | size_t GetLifetimePosition() const { return lifetime_position_; } |
| 517 | void SetLifetimePosition(size_t position) { lifetime_position_ = position; } |
| 518 | LiveInterval* GetLiveInterval() const { return live_interval_; } |
| 519 | void SetLiveInterval(LiveInterval* interval) { live_interval_ = interval; } |
| 520 | bool HasLiveInterval() const { return live_interval_ != nullptr; } |
| 521 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 522 | private: |
| 523 | HInstruction* previous_; |
| 524 | HInstruction* next_; |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 525 | HBasicBlock* block_; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 526 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 527 | // An instruction gets an id when it is added to the graph. |
| 528 | // It reflects creation order. A negative id means the instruction |
| 529 | // has not beed added to the graph. |
| 530 | int id_; |
| 531 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 532 | // When doing liveness analysis, instructions that have uses get an SSA index. |
| 533 | int ssa_index_; |
| 534 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 535 | // List of instructions that have this instruction as input. |
| 536 | HUseListNode<HInstruction>* uses_; |
| 537 | |
| 538 | // List of environments that contain this instruction. |
| 539 | HUseListNode<HEnvironment>* env_uses_; |
| 540 | |
| 541 | HEnvironment* environment_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 542 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 543 | // Set by the code generator. |
| 544 | LocationSummary* locations_; |
| 545 | |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 546 | // Set by the liveness analysis. |
| 547 | LiveInterval* live_interval_; |
| 548 | |
| 549 | // Set by the liveness analysis, this is the position in a linear |
| 550 | // order of blocks where this instruction's live interval start. |
| 551 | size_t lifetime_position_; |
| 552 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 553 | friend class HBasicBlock; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 554 | friend class HInstructionList; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 555 | |
| 556 | DISALLOW_COPY_AND_ASSIGN(HInstruction); |
| 557 | }; |
| 558 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 559 | template<typename T> |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 560 | class HUseIterator : public ValueObject { |
| 561 | public: |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 562 | explicit HUseIterator(HUseListNode<T>* uses) : current_(uses) {} |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 563 | |
| 564 | bool Done() const { return current_ == nullptr; } |
| 565 | |
| 566 | void Advance() { |
| 567 | DCHECK(!Done()); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 568 | current_ = current_->GetTail(); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 569 | } |
| 570 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 571 | HUseListNode<T>* Current() const { |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 572 | DCHECK(!Done()); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 573 | return current_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | private: |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 577 | HUseListNode<T>* current_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 578 | |
| 579 | friend class HValue; |
| 580 | }; |
| 581 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 582 | // A HEnvironment object contains the values of virtual registers at a given location. |
| 583 | class HEnvironment : public ArenaObject { |
| 584 | public: |
| 585 | HEnvironment(ArenaAllocator* arena, size_t number_of_vregs) : vregs_(arena, number_of_vregs) { |
| 586 | vregs_.SetSize(number_of_vregs); |
| 587 | for (size_t i = 0; i < number_of_vregs; i++) { |
| 588 | vregs_.Put(i, nullptr); |
| 589 | } |
| 590 | } |
| 591 | |
| 592 | void Populate(const GrowableArray<HInstruction*>& env) { |
| 593 | for (size_t i = 0; i < env.Size(); i++) { |
| 594 | HInstruction* instruction = env.Get(i); |
| 595 | vregs_.Put(i, instruction); |
| 596 | if (instruction != nullptr) { |
| 597 | instruction->AddEnvUseAt(this, i); |
| 598 | } |
| 599 | } |
| 600 | } |
| 601 | |
| 602 | void SetRawEnvAt(size_t index, HInstruction* instruction) { |
| 603 | vregs_.Put(index, instruction); |
| 604 | } |
| 605 | |
| 606 | GrowableArray<HInstruction*>* GetVRegs() { |
| 607 | return &vregs_; |
| 608 | } |
| 609 | |
| 610 | private: |
| 611 | GrowableArray<HInstruction*> vregs_; |
| 612 | |
| 613 | DISALLOW_COPY_AND_ASSIGN(HEnvironment); |
| 614 | }; |
| 615 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 616 | class HInputIterator : public ValueObject { |
| 617 | public: |
| 618 | explicit HInputIterator(HInstruction* instruction) : instruction_(instruction), index_(0) { } |
| 619 | |
| 620 | bool Done() const { return index_ == instruction_->InputCount(); } |
| 621 | HInstruction* Current() const { return instruction_->InputAt(index_); } |
| 622 | void Advance() { index_++; } |
| 623 | |
| 624 | private: |
| 625 | HInstruction* instruction_; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 626 | size_t index_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 627 | |
| 628 | DISALLOW_COPY_AND_ASSIGN(HInputIterator); |
| 629 | }; |
| 630 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 631 | class HInstructionIterator : public ValueObject { |
| 632 | public: |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 633 | explicit HInstructionIterator(const HInstructionList& instructions) |
| 634 | : instruction_(instructions.first_instruction_) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 635 | next_ = Done() ? nullptr : instruction_->GetNext(); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 636 | } |
| 637 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 638 | bool Done() const { return instruction_ == nullptr; } |
| 639 | HInstruction* Current() const { return instruction_; } |
| 640 | void Advance() { |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 641 | instruction_ = next_; |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 642 | next_ = Done() ? nullptr : instruction_->GetNext(); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | private: |
| 646 | HInstruction* instruction_; |
| 647 | HInstruction* next_; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 648 | |
| 649 | DISALLOW_COPY_AND_ASSIGN(HInstructionIterator); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 650 | }; |
| 651 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 652 | class HBackwardInstructionIterator : public ValueObject { |
| 653 | public: |
| 654 | explicit HBackwardInstructionIterator(const HInstructionList& instructions) |
| 655 | : instruction_(instructions.last_instruction_) { |
| 656 | next_ = Done() ? nullptr : instruction_->GetPrevious(); |
| 657 | } |
| 658 | |
| 659 | bool Done() const { return instruction_ == nullptr; } |
| 660 | HInstruction* Current() const { return instruction_; } |
| 661 | void Advance() { |
| 662 | instruction_ = next_; |
| 663 | next_ = Done() ? nullptr : instruction_->GetPrevious(); |
| 664 | } |
| 665 | |
| 666 | private: |
| 667 | HInstruction* instruction_; |
| 668 | HInstruction* next_; |
Nicolas Geoffray | ddb311f | 2014-05-16 09:28:54 +0100 | [diff] [blame] | 669 | |
| 670 | DISALLOW_COPY_AND_ASSIGN(HBackwardInstructionIterator); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 671 | }; |
| 672 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 673 | // An embedded container with N elements of type T. Used (with partial |
| 674 | // specialization for N=0) because embedded arrays cannot have size 0. |
| 675 | template<typename T, intptr_t N> |
| 676 | class EmbeddedArray { |
| 677 | public: |
| 678 | EmbeddedArray() : elements_() { } |
| 679 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 680 | intptr_t GetLength() const { return N; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 681 | |
| 682 | const T& operator[](intptr_t i) const { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 683 | DCHECK_LT(i, GetLength()); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 684 | return elements_[i]; |
| 685 | } |
| 686 | |
| 687 | T& operator[](intptr_t i) { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 688 | DCHECK_LT(i, GetLength()); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 689 | return elements_[i]; |
| 690 | } |
| 691 | |
| 692 | const T& At(intptr_t i) const { |
| 693 | return (*this)[i]; |
| 694 | } |
| 695 | |
| 696 | void SetAt(intptr_t i, const T& val) { |
| 697 | (*this)[i] = val; |
| 698 | } |
| 699 | |
| 700 | private: |
| 701 | T elements_[N]; |
| 702 | }; |
| 703 | |
| 704 | template<typename T> |
| 705 | class EmbeddedArray<T, 0> { |
| 706 | public: |
| 707 | intptr_t length() const { return 0; } |
| 708 | const T& operator[](intptr_t i) const { |
| 709 | LOG(FATAL) << "Unreachable"; |
| 710 | static T sentinel = 0; |
| 711 | return sentinel; |
| 712 | } |
| 713 | T& operator[](intptr_t i) { |
| 714 | LOG(FATAL) << "Unreachable"; |
| 715 | static T sentinel = 0; |
| 716 | return sentinel; |
| 717 | } |
| 718 | }; |
| 719 | |
| 720 | template<intptr_t N> |
| 721 | class HTemplateInstruction: public HInstruction { |
| 722 | public: |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 723 | HTemplateInstruction<N>() : inputs_() { } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 724 | virtual ~HTemplateInstruction() { } |
| 725 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 726 | virtual size_t InputCount() const { return N; } |
| 727 | virtual HInstruction* InputAt(size_t i) const { return inputs_[i]; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 728 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 729 | protected: |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 730 | virtual void SetRawInputAt(size_t i, HInstruction* instruction) { |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 731 | inputs_[i] = instruction; |
| 732 | } |
| 733 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 734 | private: |
| 735 | EmbeddedArray<HInstruction*, N> inputs_; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 736 | |
| 737 | friend class SsaBuilder; |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 738 | }; |
| 739 | |
| 740 | // Represents dex's RETURN_VOID opcode. A HReturnVoid is a control flow |
| 741 | // instruction that branches to the exit block. |
| 742 | class HReturnVoid : public HTemplateInstruction<0> { |
| 743 | public: |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 744 | HReturnVoid() {} |
| 745 | |
| 746 | virtual bool IsControlFlow() const { return true; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 747 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 748 | DECLARE_INSTRUCTION(ReturnVoid); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 749 | |
| 750 | private: |
| 751 | DISALLOW_COPY_AND_ASSIGN(HReturnVoid); |
| 752 | }; |
| 753 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 754 | // Represents dex's RETURN opcodes. A HReturn is a control flow |
| 755 | // instruction that branches to the exit block. |
| 756 | class HReturn : public HTemplateInstruction<1> { |
| 757 | public: |
| 758 | explicit HReturn(HInstruction* value) { |
| 759 | SetRawInputAt(0, value); |
| 760 | } |
| 761 | |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 762 | virtual bool IsControlFlow() const { return true; } |
| 763 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 764 | DECLARE_INSTRUCTION(Return); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 765 | |
| 766 | private: |
| 767 | DISALLOW_COPY_AND_ASSIGN(HReturn); |
| 768 | }; |
| 769 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 770 | // The exit instruction is the only instruction of the exit block. |
| 771 | // Instructions aborting the method (HTrow and HReturn) must branch to the |
| 772 | // exit block. |
| 773 | class HExit : public HTemplateInstruction<0> { |
| 774 | public: |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 775 | HExit() {} |
| 776 | |
| 777 | virtual bool IsControlFlow() const { return true; } |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 778 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 779 | DECLARE_INSTRUCTION(Exit); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 780 | |
| 781 | private: |
| 782 | DISALLOW_COPY_AND_ASSIGN(HExit); |
| 783 | }; |
| 784 | |
| 785 | // Jumps from one block to another. |
| 786 | class HGoto : public HTemplateInstruction<0> { |
| 787 | public: |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 788 | HGoto() {} |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 789 | |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 790 | HBasicBlock* GetSuccessor() const { |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 791 | return GetBlock()->GetSuccessors().Get(0); |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 792 | } |
| 793 | |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 794 | virtual bool IsControlFlow() const { return true; } |
| 795 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 796 | DECLARE_INSTRUCTION(Goto); |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 797 | |
| 798 | private: |
| 799 | DISALLOW_COPY_AND_ASSIGN(HGoto); |
| 800 | }; |
| 801 | |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 802 | // Conditional branch. A block ending with an HIf instruction must have |
| 803 | // two successors. |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 804 | class HIf : public HTemplateInstruction<1> { |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 805 | public: |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 806 | explicit HIf(HInstruction* input) { |
| 807 | SetRawInputAt(0, input); |
| 808 | } |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 809 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 810 | HBasicBlock* IfTrueSuccessor() const { |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 811 | return GetBlock()->GetSuccessors().Get(0); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | HBasicBlock* IfFalseSuccessor() const { |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 815 | return GetBlock()->GetSuccessors().Get(1); |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 816 | } |
| 817 | |
Nicolas Geoffray | ec7e472 | 2014-06-06 11:24:33 +0100 | [diff] [blame] | 818 | virtual bool IsControlFlow() const { return true; } |
| 819 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 820 | DECLARE_INSTRUCTION(If); |
Nicolas Geoffray | be9a92a | 2014-02-25 14:22:56 +0000 | [diff] [blame] | 821 | |
| 822 | private: |
| 823 | DISALLOW_COPY_AND_ASSIGN(HIf); |
| 824 | }; |
| 825 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 826 | class HBinaryOperation : public HTemplateInstruction<2> { |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 827 | public: |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 828 | HBinaryOperation(Primitive::Type result_type, |
| 829 | HInstruction* left, |
| 830 | HInstruction* right) : result_type_(result_type) { |
| 831 | SetRawInputAt(0, left); |
| 832 | SetRawInputAt(1, right); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 833 | } |
| 834 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 835 | HInstruction* GetLeft() const { return InputAt(0); } |
| 836 | HInstruction* GetRight() const { return InputAt(1); } |
| 837 | Primitive::Type GetResultType() const { return result_type_; } |
| 838 | |
| 839 | virtual bool IsCommutative() { return false; } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 840 | virtual Primitive::Type GetType() const { return GetResultType(); } |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 841 | |
| 842 | private: |
| 843 | const Primitive::Type result_type_; |
| 844 | |
| 845 | DISALLOW_COPY_AND_ASSIGN(HBinaryOperation); |
| 846 | }; |
| 847 | |
| 848 | |
| 849 | // Instruction to check if two inputs are equal to each other. |
| 850 | class HEqual : public HBinaryOperation { |
| 851 | public: |
| 852 | HEqual(HInstruction* first, HInstruction* second) |
| 853 | : HBinaryOperation(Primitive::kPrimBoolean, first, second) {} |
| 854 | |
| 855 | virtual bool IsCommutative() { return true; } |
| 856 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 857 | virtual Primitive::Type GetType() const { return Primitive::kPrimBoolean; } |
| 858 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 859 | DECLARE_INSTRUCTION(Equal); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 860 | |
| 861 | private: |
| 862 | DISALLOW_COPY_AND_ASSIGN(HEqual); |
| 863 | }; |
| 864 | |
| 865 | // A local in the graph. Corresponds to a Dex register. |
| 866 | class HLocal : public HTemplateInstruction<0> { |
| 867 | public: |
| 868 | explicit HLocal(uint16_t reg_number) : reg_number_(reg_number) { } |
| 869 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 870 | DECLARE_INSTRUCTION(Local); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 871 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 872 | uint16_t GetRegNumber() const { return reg_number_; } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 873 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 874 | private: |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 875 | // The Dex register number. |
| 876 | const uint16_t reg_number_; |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 877 | |
| 878 | DISALLOW_COPY_AND_ASSIGN(HLocal); |
| 879 | }; |
| 880 | |
| 881 | // Load a given local. The local is an input of this instruction. |
| 882 | class HLoadLocal : public HTemplateInstruction<1> { |
| 883 | public: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 884 | explicit HLoadLocal(HLocal* local, Primitive::Type type) : type_(type) { |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 885 | SetRawInputAt(0, local); |
| 886 | } |
| 887 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 888 | virtual Primitive::Type GetType() const { return type_; } |
| 889 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 890 | HLocal* GetLocal() const { return reinterpret_cast<HLocal*>(InputAt(0)); } |
| 891 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 892 | DECLARE_INSTRUCTION(LoadLocal); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 893 | |
| 894 | private: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 895 | const Primitive::Type type_; |
| 896 | |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 897 | DISALLOW_COPY_AND_ASSIGN(HLoadLocal); |
| 898 | }; |
| 899 | |
| 900 | // Store a value in a given local. This instruction has two inputs: the value |
| 901 | // and the local. |
| 902 | class HStoreLocal : public HTemplateInstruction<2> { |
| 903 | public: |
| 904 | HStoreLocal(HLocal* local, HInstruction* value) { |
| 905 | SetRawInputAt(0, local); |
| 906 | SetRawInputAt(1, value); |
| 907 | } |
| 908 | |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 909 | HLocal* GetLocal() const { return reinterpret_cast<HLocal*>(InputAt(0)); } |
| 910 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 911 | DECLARE_INSTRUCTION(StoreLocal); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 912 | |
| 913 | private: |
| 914 | DISALLOW_COPY_AND_ASSIGN(HStoreLocal); |
| 915 | }; |
| 916 | |
| 917 | // Constants of the type int. Those can be from Dex instructions, or |
| 918 | // synthesized (for example with the if-eqz instruction). |
| 919 | class HIntConstant : public HTemplateInstruction<0> { |
| 920 | public: |
| 921 | explicit HIntConstant(int32_t value) : value_(value) { } |
| 922 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 923 | int32_t GetValue() const { return value_; } |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 924 | virtual Primitive::Type GetType() const { return Primitive::kPrimInt; } |
Nicolas Geoffray | bab4ed7 | 2014-03-11 17:53:17 +0000 | [diff] [blame] | 925 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 926 | DECLARE_INSTRUCTION(IntConstant); |
Nicolas Geoffray | 3ff386a | 2014-03-04 14:46:47 +0000 | [diff] [blame] | 927 | |
| 928 | private: |
| 929 | const int32_t value_; |
| 930 | |
| 931 | DISALLOW_COPY_AND_ASSIGN(HIntConstant); |
| 932 | }; |
| 933 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 934 | class HLongConstant : public HTemplateInstruction<0> { |
| 935 | public: |
| 936 | explicit HLongConstant(int64_t value) : value_(value) { } |
| 937 | |
| 938 | int64_t GetValue() const { return value_; } |
| 939 | |
| 940 | virtual Primitive::Type GetType() const { return Primitive::kPrimLong; } |
| 941 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 942 | DECLARE_INSTRUCTION(LongConstant); |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 943 | |
| 944 | private: |
| 945 | const int64_t value_; |
| 946 | |
| 947 | DISALLOW_COPY_AND_ASSIGN(HLongConstant); |
| 948 | }; |
| 949 | |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 950 | class HInvoke : public HInstruction { |
| 951 | public: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 952 | HInvoke(ArenaAllocator* arena, |
| 953 | uint32_t number_of_arguments, |
| 954 | Primitive::Type return_type, |
| 955 | uint32_t dex_pc) |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 956 | : inputs_(arena, number_of_arguments), |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 957 | return_type_(return_type), |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 958 | dex_pc_(dex_pc) { |
| 959 | inputs_.SetSize(number_of_arguments); |
| 960 | } |
| 961 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 962 | virtual size_t InputCount() const { return inputs_.Size(); } |
| 963 | virtual HInstruction* InputAt(size_t i) const { return inputs_.Get(i); } |
| 964 | |
| 965 | // Runtime needs to walk the stack, so Dex -> Dex calls need to |
| 966 | // know their environment. |
| 967 | virtual bool NeedsEnvironment() const { return true; } |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 968 | |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 969 | void SetArgumentAt(size_t index, HInstruction* argument) { |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 970 | SetRawInputAt(index, argument); |
| 971 | } |
| 972 | |
| 973 | virtual void SetRawInputAt(size_t index, HInstruction* input) { |
| 974 | inputs_.Put(index, input); |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 975 | } |
| 976 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 977 | virtual Primitive::Type GetType() const { return return_type_; } |
| 978 | |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 979 | uint32_t GetDexPc() const { return dex_pc_; } |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 980 | |
| 981 | protected: |
| 982 | GrowableArray<HInstruction*> inputs_; |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 983 | const Primitive::Type return_type_; |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 984 | const uint32_t dex_pc_; |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 985 | |
| 986 | private: |
| 987 | DISALLOW_COPY_AND_ASSIGN(HInvoke); |
| 988 | }; |
| 989 | |
| 990 | class HInvokeStatic : public HInvoke { |
| 991 | public: |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 992 | HInvokeStatic(ArenaAllocator* arena, |
| 993 | uint32_t number_of_arguments, |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 994 | Primitive::Type return_type, |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 995 | uint32_t dex_pc, |
| 996 | uint32_t index_in_dex_cache) |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 997 | : HInvoke(arena, number_of_arguments, return_type, dex_pc), |
| 998 | index_in_dex_cache_(index_in_dex_cache) {} |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 999 | |
| 1000 | uint32_t GetIndexInDexCache() const { return index_in_dex_cache_; } |
| 1001 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1002 | DECLARE_INSTRUCTION(InvokeStatic); |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1003 | |
| 1004 | private: |
Nicolas Geoffray | 4a34a42 | 2014-04-03 10:38:37 +0100 | [diff] [blame] | 1005 | const uint32_t index_in_dex_cache_; |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 1006 | |
| 1007 | DISALLOW_COPY_AND_ASSIGN(HInvokeStatic); |
| 1008 | }; |
| 1009 | |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 1010 | class HNewInstance : public HTemplateInstruction<0> { |
| 1011 | public: |
| 1012 | HNewInstance(uint32_t dex_pc, uint16_t type_index) : dex_pc_(dex_pc), type_index_(type_index) {} |
| 1013 | |
| 1014 | uint32_t GetDexPc() const { return dex_pc_; } |
| 1015 | uint16_t GetTypeIndex() const { return type_index_; } |
| 1016 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1017 | virtual Primitive::Type GetType() const { return Primitive::kPrimNot; } |
| 1018 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1019 | // Calls runtime so needs an environment. |
| 1020 | virtual bool NeedsEnvironment() const { return true; } |
| 1021 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1022 | DECLARE_INSTRUCTION(NewInstance); |
Nicolas Geoffray | 2e7038a | 2014-04-03 18:49:58 +0100 | [diff] [blame] | 1023 | |
| 1024 | private: |
| 1025 | const uint32_t dex_pc_; |
| 1026 | const uint16_t type_index_; |
| 1027 | |
| 1028 | DISALLOW_COPY_AND_ASSIGN(HNewInstance); |
| 1029 | }; |
| 1030 | |
Nicolas Geoffray | d8ee737 | 2014-03-28 15:43:40 +0000 | [diff] [blame] | 1031 | class HAdd : public HBinaryOperation { |
| 1032 | public: |
| 1033 | HAdd(Primitive::Type result_type, HInstruction* left, HInstruction* right) |
| 1034 | : HBinaryOperation(result_type, left, right) {} |
| 1035 | |
| 1036 | virtual bool IsCommutative() { return true; } |
| 1037 | |
| 1038 | DECLARE_INSTRUCTION(Add); |
| 1039 | |
| 1040 | private: |
| 1041 | DISALLOW_COPY_AND_ASSIGN(HAdd); |
| 1042 | }; |
| 1043 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1044 | class HSub : public HBinaryOperation { |
| 1045 | public: |
| 1046 | HSub(Primitive::Type result_type, HInstruction* left, HInstruction* right) |
| 1047 | : HBinaryOperation(result_type, left, right) {} |
| 1048 | |
| 1049 | virtual bool IsCommutative() { return false; } |
| 1050 | |
| 1051 | DECLARE_INSTRUCTION(Sub); |
| 1052 | |
| 1053 | private: |
| 1054 | DISALLOW_COPY_AND_ASSIGN(HSub); |
| 1055 | }; |
| 1056 | |
| 1057 | // The value of a parameter in this method. Its location depends on |
| 1058 | // the calling convention. |
| 1059 | class HParameterValue : public HTemplateInstruction<0> { |
| 1060 | public: |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1061 | HParameterValue(uint8_t index, Primitive::Type parameter_type) |
| 1062 | : index_(index), parameter_type_(parameter_type) {} |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1063 | |
| 1064 | uint8_t GetIndex() const { return index_; } |
| 1065 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1066 | virtual Primitive::Type GetType() const { return parameter_type_; } |
| 1067 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1068 | DECLARE_INSTRUCTION(ParameterValue); |
| 1069 | |
| 1070 | private: |
| 1071 | // The index of this parameter in the parameters list. Must be less |
| 1072 | // than HGraph::number_of_in_vregs_; |
| 1073 | const uint8_t index_; |
| 1074 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1075 | const Primitive::Type parameter_type_; |
| 1076 | |
Nicolas Geoffray | f583e59 | 2014-04-07 13:20:42 +0100 | [diff] [blame] | 1077 | DISALLOW_COPY_AND_ASSIGN(HParameterValue); |
| 1078 | }; |
| 1079 | |
Nicolas Geoffray | b55f835 | 2014-04-07 15:26:35 +0100 | [diff] [blame] | 1080 | class HNot : public HTemplateInstruction<1> { |
| 1081 | public: |
| 1082 | explicit HNot(HInstruction* input) { |
| 1083 | SetRawInputAt(0, input); |
| 1084 | } |
| 1085 | |
Nicolas Geoffray | 01bc96d | 2014-04-11 17:43:50 +0100 | [diff] [blame] | 1086 | virtual Primitive::Type GetType() const { return Primitive::kPrimBoolean; } |
| 1087 | |
Nicolas Geoffray | b55f835 | 2014-04-07 15:26:35 +0100 | [diff] [blame] | 1088 | DECLARE_INSTRUCTION(Not); |
| 1089 | |
| 1090 | private: |
| 1091 | DISALLOW_COPY_AND_ASSIGN(HNot); |
| 1092 | }; |
| 1093 | |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1094 | class HPhi : public HInstruction { |
| 1095 | public: |
| 1096 | HPhi(ArenaAllocator* arena, uint32_t reg_number, size_t number_of_inputs, Primitive::Type type) |
| 1097 | : inputs_(arena, number_of_inputs), |
| 1098 | reg_number_(reg_number), |
| 1099 | type_(type) { |
| 1100 | inputs_.SetSize(number_of_inputs); |
| 1101 | } |
| 1102 | |
| 1103 | virtual size_t InputCount() const { return inputs_.Size(); } |
| 1104 | virtual HInstruction* InputAt(size_t i) const { return inputs_.Get(i); } |
| 1105 | |
| 1106 | virtual void SetRawInputAt(size_t index, HInstruction* input) { |
| 1107 | inputs_.Put(index, input); |
| 1108 | } |
| 1109 | |
| 1110 | void AddInput(HInstruction* input); |
| 1111 | |
| 1112 | virtual Primitive::Type GetType() const { return type_; } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1113 | void SetType(Primitive::Type type) { type_ = type; } |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1114 | |
| 1115 | uint32_t GetRegNumber() const { return reg_number_; } |
| 1116 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1117 | DECLARE_INSTRUCTION(Phi); |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1118 | |
| 1119 | protected: |
| 1120 | GrowableArray<HInstruction*> inputs_; |
| 1121 | const uint32_t reg_number_; |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1122 | Primitive::Type type_; |
Nicolas Geoffray | c32e770 | 2014-04-24 12:43:16 +0100 | [diff] [blame] | 1123 | |
| 1124 | private: |
| 1125 | DISALLOW_COPY_AND_ASSIGN(HPhi); |
| 1126 | }; |
| 1127 | |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 1128 | class MoveOperands : public ArenaObject { |
| 1129 | public: |
| 1130 | MoveOperands(Location source, Location destination) |
| 1131 | : source_(source), destination_(destination) {} |
| 1132 | |
| 1133 | Location GetSource() const { return source_; } |
| 1134 | Location GetDestination() const { return destination_; } |
| 1135 | |
| 1136 | void SetSource(Location value) { source_ = value; } |
| 1137 | void SetDestination(Location value) { destination_ = value; } |
| 1138 | |
| 1139 | // The parallel move resolver marks moves as "in-progress" by clearing the |
| 1140 | // destination (but not the source). |
| 1141 | Location MarkPending() { |
| 1142 | DCHECK(!IsPending()); |
| 1143 | Location dest = destination_; |
| 1144 | destination_ = Location::NoLocation(); |
| 1145 | return dest; |
| 1146 | } |
| 1147 | |
| 1148 | void ClearPending(Location dest) { |
| 1149 | DCHECK(IsPending()); |
| 1150 | destination_ = dest; |
| 1151 | } |
| 1152 | |
| 1153 | bool IsPending() const { |
| 1154 | DCHECK(!source_.IsInvalid() || destination_.IsInvalid()); |
| 1155 | return destination_.IsInvalid() && !source_.IsInvalid(); |
| 1156 | } |
| 1157 | |
| 1158 | // True if this blocks a move from the given location. |
| 1159 | bool Blocks(Location loc) const { |
| 1160 | return !IsEliminated() && source_.Equals(loc); |
| 1161 | } |
| 1162 | |
| 1163 | // A move is redundant if it's been eliminated, if its source and |
| 1164 | // destination are the same, or if its destination is unneeded. |
| 1165 | bool IsRedundant() const { |
| 1166 | return IsEliminated() || destination_.IsInvalid() || source_.Equals(destination_); |
| 1167 | } |
| 1168 | |
| 1169 | // We clear both operands to indicate move that's been eliminated. |
| 1170 | void Eliminate() { |
| 1171 | source_ = destination_ = Location::NoLocation(); |
| 1172 | } |
| 1173 | |
| 1174 | bool IsEliminated() const { |
| 1175 | DCHECK(!source_.IsInvalid() || destination_.IsInvalid()); |
| 1176 | return source_.IsInvalid(); |
| 1177 | } |
| 1178 | |
| 1179 | private: |
| 1180 | Location source_; |
| 1181 | Location destination_; |
| 1182 | |
| 1183 | DISALLOW_COPY_AND_ASSIGN(MoveOperands); |
| 1184 | }; |
| 1185 | |
| 1186 | static constexpr size_t kDefaultNumberOfMoves = 4; |
| 1187 | |
| 1188 | class HParallelMove : public HTemplateInstruction<0> { |
| 1189 | public: |
| 1190 | explicit HParallelMove(ArenaAllocator* arena) : moves_(arena, kDefaultNumberOfMoves) {} |
| 1191 | |
| 1192 | void AddMove(MoveOperands* move) { |
| 1193 | moves_.Add(move); |
| 1194 | } |
| 1195 | |
| 1196 | MoveOperands* MoveOperandsAt(size_t index) const { |
| 1197 | return moves_.Get(index); |
| 1198 | } |
| 1199 | |
| 1200 | size_t NumMoves() const { return moves_.Size(); } |
| 1201 | |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 1202 | DECLARE_INSTRUCTION(ParallelMove); |
Nicolas Geoffray | 4e3d23a | 2014-05-22 18:32:45 +0100 | [diff] [blame] | 1203 | |
| 1204 | private: |
| 1205 | GrowableArray<MoveOperands*> moves_; |
| 1206 | |
| 1207 | DISALLOW_COPY_AND_ASSIGN(HParallelMove); |
| 1208 | }; |
| 1209 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1210 | class HGraphVisitor : public ValueObject { |
| 1211 | public: |
| 1212 | explicit HGraphVisitor(HGraph* graph) : graph_(graph) { } |
| 1213 | virtual ~HGraphVisitor() { } |
| 1214 | |
| 1215 | virtual void VisitInstruction(HInstruction* instruction) { } |
| 1216 | virtual void VisitBasicBlock(HBasicBlock* block); |
| 1217 | |
| 1218 | void VisitInsertionOrder(); |
| 1219 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 1220 | HGraph* GetGraph() const { return graph_; } |
Nicolas Geoffray | d4dd255 | 2014-02-28 10:23:58 +0000 | [diff] [blame] | 1221 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1222 | // Visit functions for instruction classes. |
| 1223 | #define DECLARE_VISIT_INSTRUCTION(name) \ |
| 1224 | virtual void Visit##name(H##name* instr) { VisitInstruction(instr); } |
| 1225 | |
| 1226 | FOR_EACH_INSTRUCTION(DECLARE_VISIT_INSTRUCTION) |
| 1227 | |
| 1228 | #undef DECLARE_VISIT_INSTRUCTION |
| 1229 | |
| 1230 | private: |
| 1231 | HGraph* graph_; |
| 1232 | |
| 1233 | DISALLOW_COPY_AND_ASSIGN(HGraphVisitor); |
| 1234 | }; |
| 1235 | |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1236 | class HInsertionOrderIterator : public ValueObject { |
| 1237 | public: |
| 1238 | explicit HInsertionOrderIterator(const HGraph& graph) : graph_(graph), index_(0) {} |
| 1239 | |
| 1240 | bool Done() const { return index_ == graph_.GetBlocks().Size(); } |
| 1241 | HBasicBlock* Current() const { return graph_.GetBlocks().Get(index_); } |
| 1242 | void Advance() { ++index_; } |
| 1243 | |
| 1244 | private: |
| 1245 | const HGraph& graph_; |
| 1246 | size_t index_; |
| 1247 | |
| 1248 | DISALLOW_COPY_AND_ASSIGN(HInsertionOrderIterator); |
| 1249 | }; |
| 1250 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1251 | class HReversePostOrderIterator : public ValueObject { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1252 | public: |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1253 | explicit HReversePostOrderIterator(const HGraph& graph) : graph_(graph), index_(0) {} |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1254 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1255 | bool Done() const { return index_ == graph_.GetReversePostOrder().Size(); } |
| 1256 | HBasicBlock* Current() const { return graph_.GetReversePostOrder().Get(index_); } |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1257 | void Advance() { ++index_; } |
| 1258 | |
| 1259 | private: |
| 1260 | const HGraph& graph_; |
| 1261 | size_t index_; |
| 1262 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1263 | DISALLOW_COPY_AND_ASSIGN(HReversePostOrderIterator); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1264 | }; |
| 1265 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1266 | class HPostOrderIterator : public ValueObject { |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1267 | public: |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1268 | explicit HPostOrderIterator(const HGraph& graph) |
| 1269 | : graph_(graph), index_(graph_.GetReversePostOrder().Size()) {} |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1270 | |
| 1271 | bool Done() const { return index_ == 0; } |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1272 | HBasicBlock* Current() const { return graph_.GetReversePostOrder().Get(index_ - 1); } |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1273 | void Advance() { --index_; } |
| 1274 | |
| 1275 | private: |
| 1276 | const HGraph& graph_; |
| 1277 | size_t index_; |
| 1278 | |
Nicolas Geoffray | 622d9c3 | 2014-05-12 16:11:02 +0100 | [diff] [blame] | 1279 | DISALLOW_COPY_AND_ASSIGN(HPostOrderIterator); |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 1280 | }; |
| 1281 | |
Nicolas Geoffray | 818f210 | 2014-02-18 16:43:35 +0000 | [diff] [blame] | 1282 | } // namespace art |
| 1283 | |
| 1284 | #endif // ART_COMPILER_OPTIMIZING_NODES_H_ |