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

Unified Diff: src/incremental-marking.h

Issue 7834018: Support compaction for code space pages. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: port changes from ia32 to arm & x64 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
Index: src/incremental-marking.h
diff --git a/src/incremental-marking.h b/src/incremental-marking.h
index d9593749d6b351b15cd0b433c308329080948f2a..7589556f8461ec2e93a7af00673f08c491082445 100644
--- a/src/incremental-marking.h
+++ b/src/incremental-marking.h
@@ -120,8 +120,16 @@ class IncrementalMarking {
Object** slot,
Isolate* isolate);
+ inline bool BaseRecordWrite(HeapObject* obj, Object** slot, Object* value);
+
+
inline void RecordWrite(HeapObject* obj, Object** slot, Object* value);
- inline void RecordWriteOf(HeapObject* value);
+ inline void RecordWriteIntoCode(HeapObject* obj,
+ RelocInfo* rinfo,
+ Object* value);
+ void RecordCodeTargetPatch(Address pc, HeapObject* value);
+ void RecordWriteOfCodeEntry(JSFunction* host, Object** slot, Code* value);
+
inline void RecordWrites(HeapObject* obj);
inline void BlackToGreyAndUnshift(HeapObject* obj, MarkBit mark_bit);

Powered by Google App Engine
This is Rietveld 408576698