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" | |
Michael Starzinger
2016/09/06 08:05:38
nit: Can we add an empty newline after the first i
marja
2016/09/06 08:24:07
Done.
| |
6 #include "src/ast/ast.h" | |
5 #include "src/code-factory.h" | 7 #include "src/code-factory.h" |
6 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
7 #include "src/compiler/common-operator.h" | 9 #include "src/compiler/common-operator.h" |
8 #include "src/compiler/js-generic-lowering.h" | |
9 #include "src/compiler/js-graph.h" | 10 #include "src/compiler/js-graph.h" |
10 #include "src/compiler/machine-operator.h" | 11 #include "src/compiler/machine-operator.h" |
11 #include "src/compiler/node-matchers.h" | 12 #include "src/compiler/node-matchers.h" |
12 #include "src/compiler/node-properties.h" | 13 #include "src/compiler/node-properties.h" |
13 #include "src/compiler/operator-properties.h" | 14 #include "src/compiler/operator-properties.h" |
14 | 15 |
15 namespace v8 { | 16 namespace v8 { |
16 namespace internal { | 17 namespace internal { |
17 namespace compiler { | 18 namespace compiler { |
18 | 19 |
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
677 } | 678 } |
678 | 679 |
679 | 680 |
680 MachineOperatorBuilder* JSGenericLowering::machine() const { | 681 MachineOperatorBuilder* JSGenericLowering::machine() const { |
681 return jsgraph()->machine(); | 682 return jsgraph()->machine(); |
682 } | 683 } |
683 | 684 |
684 } // namespace compiler | 685 } // namespace compiler |
685 } // namespace internal | 686 } // namespace internal |
686 } // namespace v8 | 687 } // namespace v8 |
OLD | NEW |