Chromium Code Reviews

Unified Diff: src/serialize.cc

Issue 7302003: Support slots recording for compaction during incremental marking. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/serialize.cc
diff --git a/src/serialize.cc b/src/serialize.cc
index 5b57d51607a0bbb545ab54602bf0e67b9185e05b..b2e78b705766c4bda0679669a8635ec620d4b30b 100644
--- a/src/serialize.cc
+++ b/src/serialize.cc
@@ -351,6 +351,12 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
RUNTIME_ENTRY,
6,
"StoreBuffer::StoreBufferOverflow");
+ Add(ExternalReference::
+ incremental_evacuation_record_write_function(isolate).address(),
+ RUNTIME_ENTRY,
+ 7,
+ "IncrementalMarking::RecordWrite");
+
// Miscellaneous

Powered by Google App Engine