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

Unified Diff: src/compilation-info.h

Issue 2457763003: [compiler] Remove dead kMustNotHaveEagerFrame flag. (Closed)
Patch Set: Created 4 years, 2 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/crankshaft/lithium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compilation-info.h
diff --git a/src/compilation-info.h b/src/compilation-info.h
index 676d868ff18db19db742fe9001c2f3a8f3b77b6b..0bd7bc46dc8037cfffb5a5fa7a65fed946387f86 100644
--- a/src/compilation-info.h
+++ b/src/compilation-info.h
@@ -37,20 +37,19 @@ class CompilationInfo final {
kNonDeferredCalling = 1 << 1,
kSavesCallerDoubles = 1 << 2,
kRequiresFrame = 1 << 3,
- kMustNotHaveEagerFrame = 1 << 4,
- kDeoptimizationSupport = 1 << 5,
- kAccessorInliningEnabled = 1 << 6,
- kSerializing = 1 << 7,
- kFunctionContextSpecializing = 1 << 8,
- kFrameSpecializing = 1 << 9,
- kInliningEnabled = 1 << 10,
- kDisableFutureOptimization = 1 << 11,
- kSplittingEnabled = 1 << 12,
- kDeoptimizationEnabled = 1 << 13,
- kSourcePositionsEnabled = 1 << 14,
- kBailoutOnUninitialized = 1 << 15,
- kOptimizeFromBytecode = 1 << 16,
- kTypeFeedbackEnabled = 1 << 17,
+ kDeoptimizationSupport = 1 << 4,
+ kAccessorInliningEnabled = 1 << 5,
+ kSerializing = 1 << 6,
+ kFunctionContextSpecializing = 1 << 7,
+ kFrameSpecializing = 1 << 8,
+ kInliningEnabled = 1 << 9,
+ kDisableFutureOptimization = 1 << 10,
+ kSplittingEnabled = 1 << 11,
+ kDeoptimizationEnabled = 1 << 12,
+ kSourcePositionsEnabled = 1 << 13,
+ kBailoutOnUninitialized = 1 << 14,
+ kOptimizeFromBytecode = 1 << 15,
+ kTypeFeedbackEnabled = 1 << 16,
};
CompilationInfo(ParseInfo* parse_info, Handle<JSFunction> closure);
@@ -110,12 +109,6 @@ class CompilationInfo final {
bool requires_frame() const { return GetFlag(kRequiresFrame); }
- void MarkMustNotHaveEagerFrame() { SetFlag(kMustNotHaveEagerFrame); }
-
- bool GetMustNotHaveEagerFrame() const {
- return GetFlag(kMustNotHaveEagerFrame);
- }
-
// Compiles marked as debug produce unoptimized code with debug break slots.
// Inner functions that cannot be compiled w/o context are compiled eagerly.
// Always include deoptimization support to avoid having to recompile again.
« no previous file with comments | « no previous file | src/crankshaft/lithium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698