Index: src/compilation-cache.h |
diff --git a/src/compilation-cache.h b/src/compilation-cache.h |
index 887d4e84e98b9c8d8ccedc5167310a3b373b8a97..1fcf75313ec482943219d29f13cd512af01d8d1b 100644 |
--- a/src/compilation-cache.h |
+++ b/src/compilation-cache.h |
@@ -223,14 +223,6 @@ class CompilationCache { |
JSRegExp::Flags flags, |
Handle<FixedArray> data); |
- // Support for eager optimization tracking. |
- bool ShouldOptimizeEagerly(Handle<JSFunction> function); |
- void MarkForEagerOptimizing(Handle<JSFunction> function); |
- void MarkForLazyOptimizing(Handle<JSFunction> function); |
- |
- // Reset the eager optimization tracking data. |
- void ResetEagerOptimizingData(); |
- |
// Clear the cache - also used to initialize the cache at startup. |
void Clear(); |
@@ -274,8 +266,6 @@ class CompilationCache { |
// Current enable state of the compilation cache. |
bool enabled_; |
- HashMap* eager_optimizing_set_; |
- |
friend class Isolate; |
DISALLOW_COPY_AND_ASSIGN(CompilationCache); |