OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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-native-context-specialization.h" | 5 #include "src/compiler/js-native-context-specialization.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/code-factory.h" | 8 #include "src/code-factory.h" |
9 #include "src/compilation-dependencies.h" | 9 #include "src/compilation-dependencies.h" |
10 #include "src/compiler/access-builder.h" | 10 #include "src/compiler/access-builder.h" |
11 #include "src/compiler/access-info.h" | 11 #include "src/compiler/access-info.h" |
| 12 #include "src/compiler/frame-states.h" |
12 #include "src/compiler/js-graph.h" | 13 #include "src/compiler/js-graph.h" |
13 #include "src/compiler/js-operator.h" | 14 #include "src/compiler/js-operator.h" |
14 #include "src/compiler/linkage.h" | 15 #include "src/compiler/linkage.h" |
15 #include "src/compiler/node-matchers.h" | 16 #include "src/compiler/node-matchers.h" |
16 #include "src/compiler/type-cache.h" | 17 #include "src/compiler/type-cache.h" |
17 #include "src/feedback-vector.h" | 18 #include "src/feedback-vector.h" |
18 #include "src/field-index-inl.h" | 19 #include "src/field-index-inl.h" |
19 #include "src/isolate-inl.h" | 20 #include "src/isolate-inl.h" |
20 | 21 |
21 namespace v8 { | 22 namespace v8 { |
(...skipping 2548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2570 return jsgraph()->javascript(); | 2571 return jsgraph()->javascript(); |
2571 } | 2572 } |
2572 | 2573 |
2573 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { | 2574 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { |
2574 return jsgraph()->simplified(); | 2575 return jsgraph()->simplified(); |
2575 } | 2576 } |
2576 | 2577 |
2577 } // namespace compiler | 2578 } // namespace compiler |
2578 } // namespace internal | 2579 } // namespace internal |
2579 } // namespace v8 | 2580 } // namespace v8 |
OLD | NEW |