| 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/js-graph.h" | 12 #include "src/compiler/js-graph.h" |
| 13 #include "src/compiler/js-operator.h" | 13 #include "src/compiler/js-operator.h" |
| 14 #include "src/compiler/linkage.h" | 14 #include "src/compiler/linkage.h" |
| 15 #include "src/compiler/node-matchers.h" | 15 #include "src/compiler/node-matchers.h" |
| 16 #include "src/field-index-inl.h" | 16 #include "src/field-index-inl.h" |
| 17 #include "src/isolate-inl.h" | 17 #include "src/isolate-inl.h" |
| 18 #include "src/objects-inl.h" // TODO(mstarzinger): Temporary cycle breaker! | |
| 19 #include "src/type-cache.h" | 18 #include "src/type-cache.h" |
| 20 #include "src/type-feedback-vector.h" | 19 #include "src/type-feedback-vector.h" |
| 21 | 20 |
| 22 namespace v8 { | 21 namespace v8 { |
| 23 namespace internal { | 22 namespace internal { |
| 24 namespace compiler { | 23 namespace compiler { |
| 25 | 24 |
| 26 JSNativeContextSpecialization::JSNativeContextSpecialization( | 25 JSNativeContextSpecialization::JSNativeContextSpecialization( |
| 27 Editor* editor, JSGraph* jsgraph, Flags flags, | 26 Editor* editor, JSGraph* jsgraph, Flags flags, |
| 28 MaybeHandle<Context> native_context, CompilationDependencies* dependencies, | 27 MaybeHandle<Context> native_context, CompilationDependencies* dependencies, |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 } | 1128 } |
| 1130 | 1129 |
| 1131 | 1130 |
| 1132 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { | 1131 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { |
| 1133 return jsgraph()->simplified(); | 1132 return jsgraph()->simplified(); |
| 1134 } | 1133 } |
| 1135 | 1134 |
| 1136 } // namespace compiler | 1135 } // namespace compiler |
| 1137 } // namespace internal | 1136 } // namespace internal |
| 1138 } // namespace v8 | 1137 } // namespace v8 |
| OLD | NEW |