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

Unified Diff: src/mark-compact.cc

Issue 9837005: Age inline caches after context disposal. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
Index: src/mark-compact.cc
diff --git a/src/mark-compact.cc b/src/mark-compact.cc
index b956e73e10e3a285b4dc6bb15b8926c50f5b11db..1d773188994873085592937d2739d9ffcb8dfef9 100644
--- a/src/mark-compact.cc
+++ b/src/mark-compact.cc
@@ -1049,7 +1049,9 @@ class StaticMarkingVisitor : public StaticVisitorBase {
Code* target = Code::GetCodeFromTargetAddress(rinfo->target_address());
if (FLAG_cleanup_code_caches_at_gc && target->is_inline_cache_stub()
&& (target->ic_state() == MEGAMORPHIC ||
- heap->mark_compact_collector()->flush_monomorphic_ics_)) {
+ heap->mark_compact_collector()->flush_monomorphic_ics_ ||
+ target->context_disposed_count() !=
+ heap->global_context_disposed_count())) {
IC::Clear(rinfo->pc());
Vyacheslav Egorov (Chromium) 2012/03/22 14:47:05 I would expect we reset counter to be equal to hea
ulan 2012/03/23 10:47:13 As discussed offline, this should work because we
target = Code::GetCodeFromTargetAddress(rinfo->target_address());
}
@@ -1405,6 +1407,12 @@ class StaticMarkingVisitor : public StaticVisitorBase {
if (shared->IsInobjectSlackTrackingInProgress()) shared->DetachInitialMap();
+ if (shared->context_disposed_count() !=
+ heap->global_context_disposed_count()) {
+ shared->set_context_disposed_count(heap->global_context_disposed_count());
Vyacheslav Egorov (Chromium) 2012/03/22 14:47:05 I suppose this piece of code is here to prevent op
ulan 2012/03/23 10:47:13 This is to prevent us from marking a function as n
+ shared->set_opt_count(0);
+ }
+
if (!known_flush_code_candidate) {
known_flush_code_candidate = IsFlushable(heap, shared);
if (known_flush_code_candidate) {

Powered by Google App Engine
This is Rietveld 408576698