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 #include "src/compiler/schedule.h" | 5 #include "src/compiler/schedule.h" |
6 | 6 |
7 #include "src/compiler/node.h" | 7 #include "src/compiler/node.h" |
8 #include "src/compiler/node-properties.h" | 8 #include "src/compiler/node-properties.h" |
9 #include "src/compiler/node-properties-inl.h" | |
10 #include "src/ostreams.h" | 9 #include "src/ostreams.h" |
11 | 10 |
12 namespace v8 { | 11 namespace v8 { |
13 namespace internal { | 12 namespace internal { |
14 namespace compiler { | 13 namespace compiler { |
15 | 14 |
16 BasicBlock::BasicBlock(Zone* zone, Id id) | 15 BasicBlock::BasicBlock(Zone* zone, Id id) |
17 : loop_number_(-1), | 16 : loop_number_(-1), |
18 rpo_number_(-1), | 17 rpo_number_(-1), |
19 deferred_(false), | 18 deferred_(false), |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 } | 315 } |
317 os << "\n"; | 316 os << "\n"; |
318 } | 317 } |
319 } | 318 } |
320 return os; | 319 return os; |
321 } | 320 } |
322 | 321 |
323 } // namespace compiler | 322 } // namespace compiler |
324 } // namespace internal | 323 } // namespace internal |
325 } // namespace v8 | 324 } // namespace v8 |
OLD | NEW |