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

Unified Diff: src/mark-compact.h

Issue 10959011: Allow partial scanning of large arrays in order to avoid (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 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/mark-compact.h
===================================================================
--- src/mark-compact.h (revision 12562)
+++ src/mark-compact.h (working copy)
@@ -240,6 +240,35 @@
int mask() { return mask_; }
void set_top(int top) { top_ = top; }
+ int space_left() {
+ // If we already overflowed we may as well just say there is lots of
+ // space left.
+ if (overflowed_) return mask_ + 1;
+ if (IsEmpty()) return mask_ + 1;
+ if (IsFull()) return 0;
+ return (bottom_ - top_) & mask_;
+ }
+
+#ifdef DEBUG
+ const char* Status() {
+ if (overflowed_) return "Overflowed";
+ if (IsEmpty()) return "Empty";
+ if (IsFull()) return "Full";
+ int oct = (((top_ - bottom_) & mask_) * 8) / (mask_ + 1);
+ switch (oct) {
+ case 0: return "Almost empty";
+ case 1: return "1/8 full";
+ case 2: return "2/8 full";
+ case 3: return "3/8 full";
+ case 4: return "4/8 full";
+ case 5: return "5/8 full";
+ case 6: return "6/8 full";
+ case 7: return "7/8 full";
+ }
+ return "??";
+ }
+#endif
+
private:
HeapObject** array_;
// array_[(top - 1) & mask_] is the top element in the deque. The Deque is
@@ -682,6 +711,10 @@
// overflow flag will be set.
void EmptyMarkingDeque();
+ // Find the large objects that are not completely scanned, but have been
+ // postponed to later.
+ void FillMarkingDequeFromLargePostponedArrays();
+
// Refill the marking stack with overflowed objects from the heap. This
// function either leaves the marking stack full or clears the overflow
// flag on the marking stack.
« no previous file with comments | « src/incremental-marking.cc ('k') | src/mark-compact.cc » ('j') | src/mark-compact.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698