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/change-lowering.h" | 5 #include "src/compiler/change-lowering.h" |
6 #include "src/compiler/machine-operator.h" | 6 #include "src/compiler/machine-operator.h" |
7 | 7 |
8 #include "src/compiler/js-graph.h" | 8 #include "src/compiler/js-graph.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 Isolate* ChangeLowering::isolate() const { return jsgraph()->isolate(); } | 239 Isolate* ChangeLowering::isolate() const { return jsgraph()->isolate(); } |
240 | 240 |
241 | 241 |
242 Graph* ChangeLowering::graph() const { return jsgraph()->graph(); } | 242 Graph* ChangeLowering::graph() const { return jsgraph()->graph(); } |
243 | 243 |
244 | 244 |
245 CommonOperatorBuilder* ChangeLowering::common() const { | 245 CommonOperatorBuilder* ChangeLowering::common() const { |
246 return jsgraph()->common(); | 246 return jsgraph()->common(); |
247 } | 247 } |
248 | 248 |
| 249 |
| 250 MachineOperatorBuilder* ChangeLowering::machine() const { |
| 251 return jsgraph()->machine(); |
| 252 } |
| 253 |
249 } // namespace compiler | 254 } // namespace compiler |
250 } // namespace internal | 255 } // namespace internal |
251 } // namespace v8 | 256 } // namespace v8 |
OLD | NEW |