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

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

Issue 869723003: [turbofan] Remove outdated forward declarations. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
11 11
12 namespace v8 { 12 namespace v8 {
13 namespace internal { 13 namespace internal {
14 namespace compiler { 14 namespace compiler {
15 15
16 // Forward declarations. 16 // Forward declarations.
17 class BasicBlock; 17 class BasicBlock;
18 class BasicBlockInstrumentor; 18 class BasicBlockInstrumentor;
19 class CodeGenerator; // Because of a namespace bug in clang.
20 class ConstructScheduleData;
21 class Node; 19 class Node;
22 20
23 21
24 typedef ZoneVector<BasicBlock*> BasicBlockVector; 22 typedef ZoneVector<BasicBlock*> BasicBlockVector;
25 typedef ZoneVector<Node*> NodeVector; 23 typedef ZoneVector<Node*> NodeVector;
26 24
27 25
28 // A basic block contains an ordered list of nodes and ends with a control 26 // A basic block contains an ordered list of nodes and ends with a control
29 // node. Note that if a basic block has phis, then all phis must appear as the 27 // node. Note that if a basic block has phis, then all phis must appear as the
30 // first nodes in the block. 28 // first nodes in the block.
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 DISALLOW_COPY_AND_ASSIGN(Schedule); 272 DISALLOW_COPY_AND_ASSIGN(Schedule);
275 }; 273 };
276 274
277 std::ostream& operator<<(std::ostream&, const Schedule&); 275 std::ostream& operator<<(std::ostream&, const Schedule&);
278 276
279 } // namespace compiler 277 } // namespace compiler
280 } // namespace internal 278 } // namespace internal
281 } // namespace v8 279 } // namespace v8
282 280
283 #endif // V8_COMPILER_SCHEDULE_H_ 281 #endif // V8_COMPILER_SCHEDULE_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698