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

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

Issue 662513005: [turbofan] delete graph and schedule before register allocation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/common-operator.h ('k') | src/compiler/js-operator.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_JS_GRAPH_H_ 5 #ifndef V8_COMPILER_JS_GRAPH_H_
6 #define V8_COMPILER_JS_GRAPH_H_ 6 #define V8_COMPILER_JS_GRAPH_H_
7 7
8 #include "src/compiler/common-node-cache.h" 8 #include "src/compiler/common-node-cache.h"
9 #include "src/compiler/common-operator.h" 9 #include "src/compiler/common-operator.h"
10 #include "src/compiler/graph.h" 10 #include "src/compiler/graph.h"
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 SetOncePointer<Node> zero_constant_; 121 SetOncePointer<Node> zero_constant_;
122 SetOncePointer<Node> one_constant_; 122 SetOncePointer<Node> one_constant_;
123 SetOncePointer<Node> nan_constant_; 123 SetOncePointer<Node> nan_constant_;
124 124
125 CommonNodeCache cache_; 125 CommonNodeCache cache_;
126 126
127 Node* ImmovableHeapConstant(Handle<HeapObject> value); 127 Node* ImmovableHeapConstant(Handle<HeapObject> value);
128 Node* NumberConstant(double value); 128 Node* NumberConstant(double value);
129 129
130 Factory* factory() { return isolate()->factory(); } 130 Factory* factory() { return isolate()->factory(); }
131
132 DISALLOW_COPY_AND_ASSIGN(JSGraph);
131 }; 133 };
132 134
133 } // namespace compiler 135 } // namespace compiler
134 } // namespace internal 136 } // namespace internal
135 } // namespace v8 137 } // namespace v8
136 138
137 #endif 139 #endif
OLDNEW
« no previous file with comments | « src/compiler/common-operator.h ('k') | src/compiler/js-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698