OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_COMPILER_GENERIC_NODE_H_ | 5 #ifndef V8_COMPILER_GENERIC_NODE_H_ |
6 #define V8_COMPILER_GENERIC_NODE_H_ | 6 #define V8_COMPILER_GENERIC_NODE_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 | 9 |
10 #include "src/v8.h" | 10 #include "src/v8.h" |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 bool operator==(const iterator& other) const { | 197 bool operator==(const iterator& other) const { |
198 return other.index_ == index_ && other.node_ == node_; | 198 return other.index_ == index_ && other.node_ == node_; |
199 } | 199 } |
200 bool operator!=(const iterator& other) const { return !(other == *this); } | 200 bool operator!=(const iterator& other) const { return !(other == *this); } |
201 iterator& operator++() { | 201 iterator& operator++() { |
202 DCHECK(node_ != NULL); | 202 DCHECK(node_ != NULL); |
203 DCHECK(index_ < node_->input_count_); | 203 DCHECK(index_ < node_->input_count_); |
204 ++index_; | 204 ++index_; |
205 return *this; | 205 return *this; |
206 } | 206 } |
207 iterator& UpdateToAndIncrement(GenericNode<B, S>* new_to) { | |
208 typename GenericNode<B, S>::Input* input = GetInput(); | |
209 input->Update(new_to); | |
210 index_++; | |
211 return *this; | |
212 } | |
213 int index() { return index_; } | 207 int index() { return index_; } |
214 | 208 |
215 private: | 209 private: |
216 friend class GenericNode; | 210 friend class GenericNode; |
217 | 211 |
218 explicit iterator(GenericNode* node, int index) | 212 explicit iterator(GenericNode* node, int index) |
219 : node_(node), index_(index) {} | 213 : node_(node), index_(index) {} |
220 | 214 |
221 Input* GetInput() const { return node_->GetInputRecordPtr(index_); } | 215 Input* GetInput() const { return node_->GetInputRecordPtr(index_); } |
222 | 216 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 } | 262 } |
269 | 263 |
270 typename GenericNode<B, S>::Use* current_; | 264 typename GenericNode<B, S>::Use* current_; |
271 int index_; | 265 int index_; |
272 }; | 266 }; |
273 } | 267 } |
274 } | 268 } |
275 } // namespace v8::internal::compiler | 269 } // namespace v8::internal::compiler |
276 | 270 |
277 #endif // V8_COMPILER_GENERIC_NODE_H_ | 271 #endif // V8_COMPILER_GENERIC_NODE_H_ |
OLD | NEW |