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

Unified Diff: src/heap/heap.h

Issue 1471703002: Optimize ClearNonLiveReferences: collect dependent code only from maps that are embedded in optimize (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/heap/gc-tracer.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.h
diff --git a/src/heap/heap.h b/src/heap/heap.h
index 071681076fc60b37a82b34be8ae3706e4ba4aa5a..4b6c63e0c9606be9ddeb9f86acc2ef4dfc14e19b 100644
--- a/src/heap/heap.h
+++ b/src/heap/heap.h
@@ -2149,6 +2149,11 @@ class Heap {
// For keeping track of context disposals.
int contexts_disposed_;
+ // The length of the retained_maps array at the time of context disposal.
+ // This separates maps in the retained_maps array that were created before
+ // and after context disposal.
+ int number_of_disposed_maps_;
+
int global_ic_age_;
int scan_on_scavenge_pages_;
« no previous file with comments | « src/heap/gc-tracer.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698