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/escape-analysis.h" | 5 #include "src/compiler/escape-analysis.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "src/base/flags.h" | 9 #include "src/base/flags.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
11 #include "src/compilation-dependencies.h" | 11 #include "src/compilation-dependencies.h" |
12 #include "src/compiler/common-operator.h" | 12 #include "src/compiler/common-operator.h" |
13 #include "src/compiler/graph-reducer.h" | 13 #include "src/compiler/graph-reducer.h" |
14 #include "src/compiler/js-operator.h" | 14 #include "src/compiler/js-operator.h" |
15 #include "src/compiler/node.h" | |
16 #include "src/compiler/node-matchers.h" | 15 #include "src/compiler/node-matchers.h" |
17 #include "src/compiler/node-properties.h" | 16 #include "src/compiler/node-properties.h" |
| 17 #include "src/compiler/node.h" |
18 #include "src/compiler/operator-properties.h" | 18 #include "src/compiler/operator-properties.h" |
19 #include "src/compiler/simplified-operator.h" | 19 #include "src/compiler/simplified-operator.h" |
| 20 #include "src/compiler/type-cache.h" |
20 #include "src/objects-inl.h" | 21 #include "src/objects-inl.h" |
21 #include "src/type-cache.h" | |
22 | 22 |
23 namespace v8 { | 23 namespace v8 { |
24 namespace internal { | 24 namespace internal { |
25 namespace compiler { | 25 namespace compiler { |
26 | 26 |
27 typedef NodeId Alias; | 27 typedef NodeId Alias; |
28 | 28 |
29 #ifdef DEBUG | 29 #ifdef DEBUG |
30 #define TRACE(...) \ | 30 #define TRACE(...) \ |
31 do { \ | 31 do { \ |
(...skipping 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1605 } | 1605 } |
1606 } | 1606 } |
1607 return false; | 1607 return false; |
1608 } | 1608 } |
1609 | 1609 |
1610 Graph* EscapeAnalysis::graph() const { return status_analysis_->graph(); } | 1610 Graph* EscapeAnalysis::graph() const { return status_analysis_->graph(); } |
1611 | 1611 |
1612 } // namespace compiler | 1612 } // namespace compiler |
1613 } // namespace internal | 1613 } // namespace internal |
1614 } // namespace v8 | 1614 } // namespace v8 |
OLD | NEW |