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

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

Issue 2045263002: [heap] Avoid the use of cells to point from code to new-space objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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/heap/incremental-marking.cc
diff --git a/src/heap/incremental-marking.cc b/src/heap/incremental-marking.cc
index 35b8508472ad2ed8b2fbbf5d06910c3d74228761..67165fd73c1c0b706a367defbfdc7f58aa3c1be8 100644
--- a/src/heap/incremental-marking.cc
+++ b/src/heap/incremental-marking.cc
@@ -132,6 +132,13 @@ void IncrementalMarking::RecordWriteOfCodeEntrySlow(JSFunction* host,
}
}
+void IncrementalMarking::RecordWriteIntoCodeToNewSpaceSlow(Code* host,
+ RelocInfo* rinfo,
+ Object* value) {
+ heap()->mark_compact_collector()->RecordRelocSlotToNewSpace(host, rinfo,
+ value);
+}
+
void IncrementalMarking::RecordWriteIntoCodeSlow(Code* host, RelocInfo* rinfo,
Object* value) {
if (BaseRecordWrite(host, value)) {

Powered by Google App Engine
This is Rietveld 408576698