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

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

Issue 1404523002: [heap] inline allocation steps refactor (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use virtual functions instead of callbacks Created 5 years, 2 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.h
diff --git a/src/heap/incremental-marking.h b/src/heap/incremental-marking.h
index ee1290e6c89de06b7be1a1b255ac971045a7e3cb..5aea6e4f4a4c68ac312254d73957c1022eba2d6c 100644
--- a/src/heap/incremental-marking.h
+++ b/src/heap/incremental-marking.h
@@ -16,6 +16,8 @@ namespace internal {
// Forward declarations.
class MarkBit;
class PagedSpace;
+class IncrementalMarking;
+class InlineAllocationObserver;
Hannes Payer (out of office) 2015/10/22 09:14:14 alphabetic order
ofrobots 2015/10/26 21:55:01 Done.
class IncrementalMarking {
public:
@@ -246,6 +248,8 @@ class IncrementalMarking {
Heap* heap_;
+ InlineAllocationObserver* observer_;
+
State state_;
bool is_compacting_;

Powered by Google App Engine
This is Rietveld 408576698