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

Unified Diff: src/incremental-marking.cc

Issue 7867040: Reduce imprecision of incremental marking. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 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
« no previous file with comments | « src/incremental-marking.h ('k') | src/mark-compact.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/incremental-marking.cc
diff --git a/src/incremental-marking.cc b/src/incremental-marking.cc
index 5e14baa9c557e905dd92451996d46835129309d7..c4ba62fada3941c5ee1121f3ae8d182942fffc41 100644
--- a/src/incremental-marking.cc
+++ b/src/incremental-marking.cc
@@ -30,6 +30,7 @@
#include "incremental-marking.h"
#include "code-stubs.h"
+#include "compilation-cache.h"
#include "v8conversions.h"
namespace v8 {
@@ -400,6 +401,14 @@ void IncrementalMarking::Start() {
}
+static void MarkObjectGrey(Object* obj) {
+ if (obj->IsHeapObject()) {
+ MarkBit mark_bit = Marking::MarkBitFrom(HeapObject::cast(obj));
+ Marking::AnyToGrey(mark_bit);
+ }
+}
+
+
void IncrementalMarking::StartMarking() {
if (FLAG_trace_incremental_marking) {
PrintF("[IncrementalMarking] Start marking\n");
@@ -430,6 +439,13 @@ void IncrementalMarking::StartMarking() {
heap_->mark_compact_collector()->VerifyMarkbitsAreClean();
#endif
+ heap_->CompletelyClearInstanceofCache();
+ heap_->isolate()->compilation_cache()->MarkCompactPrologue();
+
+ if (FLAG_cleanup_code_caches_at_gc) {
+ MarkObjectGrey(heap_->polymorphic_code_cache());
+ }
+
// Mark strong roots grey.
IncrementalMarkingRootMarkingVisitor visitor(heap_, this);
heap_->IterateStrongRoots(&visitor, VISIT_ONLY_STRONG);
@@ -492,6 +508,24 @@ void IncrementalMarking::UpdateMarkingDequeAfterScavenge() {
}
+void IncrementalMarking::VisitGlobalContext(Context* ctx, ObjectVisitor* v) {
+ v->VisitPointers(
+ HeapObject::RawField(
+ ctx, Context::MarkCompactBodyDescriptor::kStartOffset),
+ HeapObject::RawField(
+ ctx, Context::MarkCompactBodyDescriptor::kEndOffset));
+
+ MarkCompactCollector* collector = heap_->mark_compact_collector();
+ for (int idx = Context::FIRST_WEAK_SLOT;
+ idx < Context::GLOBAL_CONTEXT_SLOTS;
+ ++idx) {
+ Object** slot =
+ HeapObject::RawField(ctx, FixedArray::OffsetOfElementAt(idx));
+ collector->RecordSlot(slot, slot, *slot);
+ }
+}
+
+
void IncrementalMarking::Hurry() {
if (state() == MARKING) {
double start = 0.0;
@@ -502,19 +536,27 @@ void IncrementalMarking::Hurry() {
// TODO(gc) hurry can mark objects it encounters black as mutator
// was stopped.
Map* filler_map = heap_->one_pointer_filler_map();
+ Map* global_context_map = heap_->global_context_map();
IncrementalMarkingMarkingVisitor marking_visitor(heap_, this);
while (!marking_deque_.IsEmpty()) {
HeapObject* obj = marking_deque_.Pop();
// Explicitly skip one word fillers. Incremental markbit patterns are
// correct only for objects that occupy at least two words.
- if (obj->map() != filler_map) {
+ Map* map = obj->map();
+ if (map == filler_map) {
+ continue;
+ } else if (map == global_context_map) {
+ // Global contexts have weak fields.
+ VisitGlobalContext(Context::cast(obj), &marking_visitor);
+ } else {
obj->Iterate(&marking_visitor);
- MarkBit mark_bit = Marking::MarkBitFrom(obj);
- ASSERT(!Marking::IsBlack(mark_bit));
- Marking::MarkBlack(mark_bit);
- MemoryChunk::IncrementLiveBytes(obj->address(), obj->Size());
}
+
+ MarkBit mark_bit = Marking::MarkBitFrom(obj);
+ ASSERT(!Marking::IsBlack(mark_bit));
+ Marking::MarkBlack(mark_bit);
+ MemoryChunk::IncrementLiveBytes(obj->address(), obj->Size());
}
state_ = COMPLETE;
if (FLAG_trace_incremental_marking) {
@@ -523,6 +565,18 @@ void IncrementalMarking::Hurry() {
static_cast<int>(end - start));
}
}
+
+ if (FLAG_cleanup_code_caches_at_gc) {
+ Marking::GreyToBlack(Marking::MarkBitFrom(heap_->polymorphic_code_cache()));
+ }
+
+ Object* context = heap_->global_contexts_list();
+ while (!context->IsUndefined()) {
+ NormalizedMapCache* cache = Context::cast(context)->normalized_map_cache();
+ MarkBit mark_bit = Marking::MarkBitFrom(cache);
+ if (Marking::IsGrey(mark_bit)) Marking::GreyToBlack(mark_bit);
+ context = Context::cast(context)->get(Context::NEXT_CONTEXT_LINK);
+ }
}
@@ -602,6 +656,7 @@ void IncrementalMarking::Step(intptr_t allocated_bytes) {
}
} else if (state_ == MARKING) {
Map* filler_map = heap_->one_pointer_filler_map();
+ Map* global_context_map = heap_->global_context_map();
IncrementalMarkingMarkingVisitor marking_visitor(heap_, this);
while (!marking_deque_.IsEmpty() && bytes_to_process > 0) {
HeapObject* obj = marking_deque_.Pop();
@@ -609,21 +664,33 @@ void IncrementalMarking::Step(intptr_t allocated_bytes) {
// Explicitly skip one word fillers. Incremental markbit patterns are
// correct only for objects that occupy at least two words.
Map* map = obj->map();
- if (map != filler_map) {
- ASSERT(Marking::IsGrey(Marking::MarkBitFrom(obj)));
- int size = obj->SizeFromMap(map);
- bytes_to_process -= size;
- MarkBit map_mark_bit = Marking::MarkBitFrom(map);
- if (Marking::IsWhite(map_mark_bit)) {
- WhiteToGreyAndPush(map, map_mark_bit);
- }
- // TODO(gc) switch to static visitor instead of normal visitor.
+ if (map == filler_map) continue;
+
+ ASSERT(Marking::IsGrey(Marking::MarkBitFrom(obj)));
+ int size = obj->SizeFromMap(map);
+ bytes_to_process -= size;
+ MarkBit map_mark_bit = Marking::MarkBitFrom(map);
+ if (Marking::IsWhite(map_mark_bit)) {
+ WhiteToGreyAndPush(map, map_mark_bit);
+ }
+
+ // TODO(gc) switch to static visitor instead of normal visitor.
+ if (map == global_context_map) {
+ // Global contexts have weak fields.
+ Context* ctx = Context::cast(obj);
+
+ // Mark grey without pushing it to the stack.
+ MarkObjectGrey(ctx->normalized_map_cache());
Erik Corry 2011/09/13 07:07:44 Perhaps the fact that this routine does not push t
+
+ VisitGlobalContext(ctx, &marking_visitor);
+ } else {
obj->IterateBody(map->instance_type(), size, &marking_visitor);
- MarkBit obj_mark_bit = Marking::MarkBitFrom(obj);
- ASSERT(!Marking::IsBlack(obj_mark_bit));
- Marking::MarkBlack(obj_mark_bit);
- MemoryChunk::IncrementLiveBytes(obj->address(), size);
}
+
+ MarkBit obj_mark_bit = Marking::MarkBitFrom(obj);
+ ASSERT(!Marking::IsBlack(obj_mark_bit));
+ Marking::MarkBlack(obj_mark_bit);
+ MemoryChunk::IncrementLiveBytes(obj->address(), size);
}
if (marking_deque_.IsEmpty()) MarkingComplete();
}
« no previous file with comments | « src/incremental-marking.h ('k') | src/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698