| 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/compiler/type-cache.h" |
| 16 #include "src/field-index-inl.h" | 17 #include "src/field-index-inl.h" |
| 17 #include "src/isolate-inl.h" | 18 #include "src/isolate-inl.h" |
| 18 #include "src/type-cache.h" | |
| 19 #include "src/type-feedback-vector.h" | 19 #include "src/type-feedback-vector.h" |
| 20 | 20 |
| 21 namespace v8 { | 21 namespace v8 { |
| 22 namespace internal { | 22 namespace internal { |
| 23 namespace compiler { | 23 namespace compiler { |
| 24 | 24 |
| 25 namespace { | 25 namespace { |
| 26 | 26 |
| 27 bool HasNumberMaps(MapList const& maps) { | 27 bool HasNumberMaps(MapList const& maps) { |
| 28 for (auto map : maps) { | 28 for (auto map : maps) { |
| (...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1486 } | 1486 } |
| 1487 | 1487 |
| 1488 | 1488 |
| 1489 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { | 1489 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { |
| 1490 return jsgraph()->simplified(); | 1490 return jsgraph()->simplified(); |
| 1491 } | 1491 } |
| 1492 | 1492 |
| 1493 } // namespace compiler | 1493 } // namespace compiler |
| 1494 } // namespace internal | 1494 } // namespace internal |
| 1495 } // namespace v8 | 1495 } // namespace v8 |
| OLD | NEW |