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

Unified Diff: src/heap.h

Issue 6715028: Preserve marking bits across scavenges if incremental marker is running. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: fix review comments, add more tracing Created 9 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 | « no previous file | src/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.h
diff --git a/src/heap.h b/src/heap.h
index c91f2ab8d81e6da376a1712694727f063f89cef1..fa1c34d45f186873990e7992e4e52d72e3a57591 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -1473,6 +1473,8 @@ class Heap : public AllStatic {
return high_survival_rate_period_length_ > 0;
}
+ static void SelectScavengingVisitorsTable();
+
static const int kInitialSymbolTableSize = 2048;
static const int kInitialEvalCacheSize = 64;
@@ -1791,6 +1793,10 @@ class MarkingStack {
return object;
}
+ HeapObject** low() { return low_; }
+ HeapObject** top() { return top_; }
+ void set_top(HeapObject** top) { top_ = top; }
+
private:
HeapObject** low_;
HeapObject** top_;
« no previous file with comments | « no previous file | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698