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 | 6 |
7 #include "src/code-factory.h" | 7 #include "src/code-factory.h" |
8 #include "src/compiler/diamond.h" | 8 #include "src/compiler/diamond.h" |
9 #include "src/compiler/js-graph.h" | 9 #include "src/compiler/js-graph.h" |
10 #include "src/compiler/linkage.h" | 10 #include "src/compiler/linkage.h" |
11 #include "src/compiler/machine-operator.h" | 11 #include "src/compiler/machine-operator.h" |
12 #include "src/compiler/node-properties-inl.h" | 12 #include "src/compiler/node-properties.h" |
| 13 #include "src/compiler/operator-properties.h" |
13 | 14 |
14 namespace v8 { | 15 namespace v8 { |
15 namespace internal { | 16 namespace internal { |
16 namespace compiler { | 17 namespace compiler { |
17 | 18 |
18 ChangeLowering::~ChangeLowering() {} | 19 ChangeLowering::~ChangeLowering() {} |
19 | 20 |
20 | 21 |
21 Reduction ChangeLowering::Reduce(Node* node) { | 22 Reduction ChangeLowering::Reduce(Node* node) { |
22 Node* control = graph()->start(); | 23 Node* control = graph()->start(); |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 } | 280 } |
280 | 281 |
281 | 282 |
282 MachineOperatorBuilder* ChangeLowering::machine() const { | 283 MachineOperatorBuilder* ChangeLowering::machine() const { |
283 return jsgraph()->machine(); | 284 return jsgraph()->machine(); |
284 } | 285 } |
285 | 286 |
286 } // namespace compiler | 287 } // namespace compiler |
287 } // namespace internal | 288 } // namespace internal |
288 } // namespace v8 | 289 } // namespace v8 |
OLD | NEW |