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/access-builder.h" | 5 #include "src/compiler/access-builder.h" |
6 #include "src/compiler/js-graph.h" | 6 #include "src/compiler/js-graph.h" |
7 #include "src/compiler/js-typed-lowering.h" | 7 #include "src/compiler/js-typed-lowering.h" |
8 #include "src/compiler/node-aux-data-inl.h" | |
9 #include "src/compiler/node-matchers.h" | 8 #include "src/compiler/node-matchers.h" |
10 #include "src/compiler/node-properties.h" | 9 #include "src/compiler/node-properties.h" |
11 #include "src/compiler/operator-properties.h" | 10 #include "src/compiler/operator-properties.h" |
12 #include "src/types.h" | 11 #include "src/types.h" |
13 | 12 |
14 namespace v8 { | 13 namespace v8 { |
15 namespace internal { | 14 namespace internal { |
16 namespace compiler { | 15 namespace compiler { |
17 | 16 |
18 // TODO(turbofan): js-typed-lowering improvements possible | 17 // TODO(turbofan): js-typed-lowering improvements possible |
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1009 } | 1008 } |
1010 | 1009 |
1011 | 1010 |
1012 MachineOperatorBuilder* JSTypedLowering::machine() const { | 1011 MachineOperatorBuilder* JSTypedLowering::machine() const { |
1013 return jsgraph()->machine(); | 1012 return jsgraph()->machine(); |
1014 } | 1013 } |
1015 | 1014 |
1016 } // namespace compiler | 1015 } // namespace compiler |
1017 } // namespace internal | 1016 } // namespace internal |
1018 } // namespace v8 | 1017 } // namespace v8 |
OLD | NEW |