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

Unified Diff: src/heap/incremental-marking.h

Issue 2139133003: [heap] Untangle Marking and friends from heap dependencies. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix comment formatting Created 4 years, 5 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 | « src/heap/heap-inl.h ('k') | src/heap/incremental-marking.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/incremental-marking.h
diff --git a/src/heap/incremental-marking.h b/src/heap/incremental-marking.h
index 5f5a1deae781467544cc5d2db744ba433028a4fb..7ecbf3581e1dc8b7b2d09cd7a01af2b05c69a9e7 100644
--- a/src/heap/incremental-marking.h
+++ b/src/heap/incremental-marking.h
@@ -9,6 +9,7 @@
#include "src/execution.h"
#include "src/heap/heap.h"
#include "src/heap/incremental-marking-job.h"
+#include "src/heap/mark-compact.h"
#include "src/heap/spaces.h"
#include "src/objects.h"
@@ -205,6 +206,25 @@ class IncrementalMarking {
static void MarkObject(Heap* heap, HeapObject* object);
+ static void TransferMark(Heap* heap, Address old_start, Address new_start);
+
+ // Returns true if the transferred color is black.
+ INLINE(static bool TransferColor(HeapObject* from, HeapObject* to)) {
+ if (Page::FromAddress(to->address())->IsFlagSet(Page::BLACK_PAGE))
+ return true;
+ MarkBit from_mark_bit = ObjectMarking::MarkBitFrom(from);
+ MarkBit to_mark_bit = ObjectMarking::MarkBitFrom(to);
+ DCHECK(Marking::IsWhite(to_mark_bit));
+ if (from_mark_bit.Get()) {
+ to_mark_bit.Set();
+ if (from_mark_bit.Next().Get()) {
+ to_mark_bit.Next().Set();
+ return true;
+ }
+ }
+ return false;
+ }
+
void IterateBlackObject(HeapObject* object);
Heap* heap() const { return heap_; }
« no previous file with comments | « src/heap/heap-inl.h ('k') | src/heap/incremental-marking.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698