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

Unified Diff: src/compiler/escape-analysis-reducer.h

Issue 1577273002: [turbofan] Fix double reduce in escape analysis (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@hash-maps
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/escape-analysis-reducer.cc » ('j') | src/compiler/escape-analysis-reducer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/escape-analysis-reducer.h
diff --git a/src/compiler/escape-analysis-reducer.h b/src/compiler/escape-analysis-reducer.h
index 04ec1a6e5cb5a0b9fea7c83ba6bb082f33e29074..1c0da165fb61e7f20b8a10bd7d21147273b15244 100644
--- a/src/compiler/escape-analysis-reducer.h
+++ b/src/compiler/escape-analysis-reducer.h
@@ -5,9 +5,11 @@
#ifndef V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_
#define V8_COMPILER_ESCAPE_ANALYSIS_REDUCER_H_
+#include "src/bit-vector.h"
#include "src/compiler/escape-analysis.h"
#include "src/compiler/graph-reducer.h"
+
namespace v8 {
namespace internal {
@@ -49,6 +51,7 @@ class EscapeAnalysisReducer final : public AdvancedReducer {
JSGraph* const jsgraph_;
EscapeAnalysis* escape_analysis_;
Zone* const zone_;
+ BitVector visited_;
DISALLOW_COPY_AND_ASSIGN(EscapeAnalysisReducer);
};
« no previous file with comments | « no previous file | src/compiler/escape-analysis-reducer.cc » ('j') | src/compiler/escape-analysis-reducer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698