| 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_SCHEDULE_H_ | 5 #ifndef V8_COMPILER_SCHEDULE_H_ |
| 6 #define V8_COMPILER_SCHEDULE_H_ | 6 #define V8_COMPILER_SCHEDULE_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 | 9 |
| 10 #include "src/zone-containers.h" | 10 #include "src/zone-containers.h" |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 Zone* zone_; | 260 Zone* zone_; |
| 261 BasicBlockVector all_blocks_; // All basic blocks in the schedule. | 261 BasicBlockVector all_blocks_; // All basic blocks in the schedule. |
| 262 BasicBlockVector nodeid_to_block_; // Map from node to containing block. | 262 BasicBlockVector nodeid_to_block_; // Map from node to containing block. |
| 263 BasicBlockVector rpo_order_; // Reverse-post-order block list. | 263 BasicBlockVector rpo_order_; // Reverse-post-order block list. |
| 264 BasicBlock* start_; | 264 BasicBlock* start_; |
| 265 BasicBlock* end_; | 265 BasicBlock* end_; |
| 266 | 266 |
| 267 DISALLOW_COPY_AND_ASSIGN(Schedule); | 267 DISALLOW_COPY_AND_ASSIGN(Schedule); |
| 268 }; | 268 }; |
| 269 | 269 |
| 270 std::ostream& operator<<(std::ostream&, const Schedule&); | |
| 271 | |
| 272 } // namespace compiler | 270 } // namespace compiler |
| 273 } // namespace internal | 271 } // namespace internal |
| 274 } // namespace v8 | 272 } // namespace v8 |
| 275 | 273 |
| 276 #endif // V8_COMPILER_SCHEDULE_H_ | 274 #endif // V8_COMPILER_SCHEDULE_H_ |
| OLD | NEW |