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

Unified Diff: src/compiler.h

Issue 1914943002: [turbofan] Run effect linearizer even for asm functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/pipeline.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler.h
diff --git a/src/compiler.h b/src/compiler.h
index 109940056376f97559dc2e9ec4e6932633b0efce..2e84c46686ec78d61452a9ab7e33976d79b937c9 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -159,9 +159,8 @@ class CompilationInfo {
kSplittingEnabled = 1 << 13,
kDeoptimizationEnabled = 1 << 14,
kSourcePositionsEnabled = 1 << 15,
- kEffectSchedulingEnabled = 1 << 16,
- kBailoutOnUninitialized = 1 << 17,
- kOptimizeFromBytecode = 1 << 18,
+ kBailoutOnUninitialized = 1 << 16,
+ kOptimizeFromBytecode = 1 << 17,
};
CompilationInfo(ParseInfo* parse_info, Handle<JSFunction> closure);
@@ -275,12 +274,6 @@ class CompilationInfo {
return GetFlag(kDeoptimizationEnabled);
}
- void MarkAsEffectSchedulingEnabled() { SetFlag(kEffectSchedulingEnabled); }
-
- bool is_effect_scheduling_enabled() const {
- return GetFlag(kEffectSchedulingEnabled);
- }
-
void MarkAsSourcePositionsEnabled() { SetFlag(kSourcePositionsEnabled); }
bool is_source_positions_enabled() const {
« no previous file with comments | « no previous file | src/compiler/pipeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698