Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(563)

Side by Side Diff: src/compiler/schedule.h

Issue 985023002: [turbofan] Add schedule to visualizer output (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove redundant cdoe Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/compiler/schedule.cc » ('j') | src/compiler/visualizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698