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

Unified Diff: src/incremental-marking.cc

Issue 23477061: Make objects embedded in optimized code weak. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix names Created 7 years, 3 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/incremental-marking.cc
diff --git a/src/incremental-marking.cc b/src/incremental-marking.cc
index df0f14a74cef8363e51c98bd3bdc8d2e60b44309..615c5437ddbd748076d88559eadf281371ae7bc0 100644
--- a/src/incremental-marking.cc
+++ b/src/incremental-marking.cc
@@ -648,6 +648,9 @@ void IncrementalMarking::StartMarking(CompactionFlag flag) {
IncrementalMarkingRootMarkingVisitor visitor(this);
heap_->IterateStrongRoots(&visitor, VISIT_ONLY_STRONG);
+ IncrementalMarkingMarkingVisitor::MarkObjectWithoutPush(
Hannes Payer (out of office) 2013/10/01 13:13:50 Why don't you call MarkWeakObjectToCode here?
ulan 2013/10/01 14:50:29 Done.
+ heap_, heap_->weak_object_to_code());
+
// Ready to start incremental marking.
if (FLAG_trace_incremental_marking) {
PrintF("[IncrementalMarking] Running\n");

Powered by Google App Engine
This is Rietveld 408576698