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

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

Issue 760493003: Make generic algorithm a little less generic. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-generic-stuff-3
Patch Set: Rebased. Created 6 years 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 | « src/compiler/generic-algorithm-inl.h ('k') | src/compiler/graph-inl.h » ('j') | 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_GRAPH_H_ 5 #ifndef V8_COMPILER_GRAPH_H_
6 #define V8_COMPILER_GRAPH_H_ 6 #define V8_COMPILER_GRAPH_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 10
11 #include "src/compiler/generic-algorithm.h"
12 #include "src/compiler/node.h" 11 #include "src/compiler/node.h"
13 #include "src/compiler/node-aux-data.h" 12 #include "src/compiler/node-aux-data.h"
14 #include "src/compiler/source-position.h" 13 #include "src/compiler/source-position.h"
15 14
16 namespace v8 { 15 namespace v8 {
17 namespace internal { 16 namespace internal {
18 namespace compiler { 17 namespace compiler {
19 18
20 class GraphDecorator; 19 class GraphDecorator;
21 20
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 public: 140 public:
142 virtual ~GraphDecorator() {} 141 virtual ~GraphDecorator() {}
143 virtual void Decorate(Node* node) = 0; 142 virtual void Decorate(Node* node) = 0;
144 }; 143 };
145 144
146 } // namespace compiler 145 } // namespace compiler
147 } // namespace internal 146 } // namespace internal
148 } // namespace v8 147 } // namespace v8
149 148
150 #endif // V8_COMPILER_GRAPH_H_ 149 #endif // V8_COMPILER_GRAPH_H_
OLDNEW
« no previous file with comments | « src/compiler/generic-algorithm-inl.h ('k') | src/compiler/graph-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698