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

Unified Diff: src/heap.h

Issue 50011: Revert change 1509 that flush ICs when adding setters on an object or... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 9 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 | « src/accessors.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.h
===================================================================
--- src/heap.h (revision 1547)
+++ src/heap.h (working copy)
@@ -606,9 +606,6 @@
// Performs a full garbage collection.
static void CollectAllGarbage();
- // Clears all inline caches by forcing a global garbage collection.
- static void ClearStoreICs();
-
// Performs a full garbage collection if a context has been disposed
// since the last time the check was performed.
static void CollectAllGarbageIfContextDisposed();
@@ -811,14 +808,6 @@
> old_gen_allocation_limit_;
}
- static bool has_store_ics() {
- return has_store_ics_;
- }
-
- static void store_ic_created() {
- has_store_ics_ = true;
- }
-
private:
static int semispace_size_;
static int initial_semispace_size_;
@@ -884,8 +873,6 @@
// last GC.
static int old_gen_exhausted_;
- static bool has_store_ics_;
-
// Declare all the roots
#define ROOT_DECLARATION(type, name) static type* name##_;
ROOT_LIST(ROOT_DECLARATION)
« no previous file with comments | « src/accessors.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698