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 #include "src/compiler/generic-node-inl.h" |
5 #include "src/compiler/js-graph.h" | 6 #include "src/compiler/js-graph.h" |
6 #include "src/compiler/node-matchers.h" | 7 #include "src/compiler/node-matchers.h" |
7 #include "src/compiler/simplified-operator-reducer.h" | 8 #include "src/compiler/simplified-operator-reducer.h" |
8 | 9 |
9 namespace v8 { | 10 namespace v8 { |
10 namespace internal { | 11 namespace internal { |
11 namespace compiler { | 12 namespace compiler { |
12 | 13 |
13 SimplifiedOperatorReducer::~SimplifiedOperatorReducer() {} | 14 SimplifiedOperatorReducer::~SimplifiedOperatorReducer() {} |
14 | 15 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 Graph* SimplifiedOperatorReducer::graph() const { return jsgraph()->graph(); } | 127 Graph* SimplifiedOperatorReducer::graph() const { return jsgraph()->graph(); } |
127 | 128 |
128 | 129 |
129 Heap* SimplifiedOperatorReducer::heap() const { | 130 Heap* SimplifiedOperatorReducer::heap() const { |
130 return jsgraph()->isolate()->heap(); | 131 return jsgraph()->isolate()->heap(); |
131 } | 132 } |
132 | 133 |
133 } // namespace compiler | 134 } // namespace compiler |
134 } // namespace internal | 135 } // namespace internal |
135 } // namespace v8 | 136 } // namespace v8 |
OLD | NEW |