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 #ifndef V8_COMPILER_ESCAPE_ANALYSIS_H_ | 5 #ifndef V8_COMPILER_ESCAPE_ANALYSIS_H_ |
6 #define V8_COMPILER_ESCAPE_ANALYSIS_H_ | 6 #define V8_COMPILER_ESCAPE_ANALYSIS_H_ |
7 | 7 |
8 #include "src/compiler/graph.h" | 8 #include "src/compiler/graph.h" |
9 | 9 |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 VirtualObject* GetVirtualObject(VirtualState* state, Node* node); | 63 VirtualObject* GetVirtualObject(VirtualState* state, Node* node); |
64 | 64 |
65 void DebugPrint(); | 65 void DebugPrint(); |
66 void DebugPrintState(VirtualState* state); | 66 void DebugPrintState(VirtualState* state); |
67 | 67 |
68 Graph* graph() const; | 68 Graph* graph() const; |
69 Zone* zone() const { return zone_; } | 69 Zone* zone() const { return zone_; } |
70 CommonOperatorBuilder* common() const { return common_; } | 70 CommonOperatorBuilder* common() const { return common_; } |
71 | 71 |
72 Zone* const zone_; | 72 Zone* const zone_; |
| 73 Node* const slot_not_analyzed_; |
73 CommonOperatorBuilder* const common_; | 74 CommonOperatorBuilder* const common_; |
74 EscapeStatusAnalysis* status_analysis_; | 75 EscapeStatusAnalysis* status_analysis_; |
75 ZoneVector<VirtualState*> virtual_states_; | 76 ZoneVector<VirtualState*> virtual_states_; |
76 ZoneVector<Node*> replacements_; | 77 ZoneVector<Node*> replacements_; |
77 MergeCache* cache_; | 78 MergeCache* cache_; |
78 | 79 |
79 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysis); | 80 DISALLOW_COPY_AND_ASSIGN(EscapeAnalysis); |
80 }; | 81 }; |
81 | 82 |
82 } // namespace compiler | 83 } // namespace compiler |
83 } // namespace internal | 84 } // namespace internal |
84 } // namespace v8 | 85 } // namespace v8 |
85 | 86 |
86 #endif // V8_COMPILER_ESCAPE_ANALYSIS_H_ | 87 #endif // V8_COMPILER_ESCAPE_ANALYSIS_H_ |
OLD | NEW |