| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |