Chromium Code Reviews| 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" | |
|
Michael Starzinger
2017/06/06 14:32:54
nit: Can't find a reason this is needed in this fi
danno
2017/06/07 09:00:56
Done.
| |
| 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 2590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2612 return jsgraph()->javascript(); | 2613 return jsgraph()->javascript(); |
| 2613 } | 2614 } |
| 2614 | 2615 |
| 2615 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { | 2616 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { |
| 2616 return jsgraph()->simplified(); | 2617 return jsgraph()->simplified(); |
| 2617 } | 2618 } |
| 2618 | 2619 |
| 2619 } // namespace compiler | 2620 } // namespace compiler |
| 2620 } // namespace internal | 2621 } // namespace internal |
| 2621 } // namespace v8 | 2622 } // namespace v8 |
| OLD | NEW |