Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: src/compiler/escape-analysis.h

Issue 1997353002: [turbofan] Skip data-flow analysis of code entry field. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/escape-analysis.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/escape-analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698