| 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/js-generic-lowering.h" |
| 6 |
| 7 #include "src/ast/ast.h" |
| 5 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
| 6 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
| 7 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
| 8 #include "src/compiler/js-generic-lowering.h" | |
| 9 #include "src/compiler/js-graph.h" | 11 #include "src/compiler/js-graph.h" |
| 10 #include "src/compiler/machine-operator.h" | 12 #include "src/compiler/machine-operator.h" |
| 11 #include "src/compiler/node-matchers.h" | 13 #include "src/compiler/node-matchers.h" |
| 12 #include "src/compiler/node-properties.h" | 14 #include "src/compiler/node-properties.h" |
| 13 #include "src/compiler/operator-properties.h" | 15 #include "src/compiler/operator-properties.h" |
| 14 | 16 |
| 15 namespace v8 { | 17 namespace v8 { |
| 16 namespace internal { | 18 namespace internal { |
| 17 namespace compiler { | 19 namespace compiler { |
| 18 | 20 |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 } | 679 } |
| 678 | 680 |
| 679 | 681 |
| 680 MachineOperatorBuilder* JSGenericLowering::machine() const { | 682 MachineOperatorBuilder* JSGenericLowering::machine() const { |
| 681 return jsgraph()->machine(); | 683 return jsgraph()->machine(); |
| 682 } | 684 } |
| 683 | 685 |
| 684 } // namespace compiler | 686 } // namespace compiler |
| 685 } // namespace internal | 687 } // namespace internal |
| 686 } // namespace v8 | 688 } // namespace v8 |
| OLD | NEW |