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

Unified Diff: Source/platform/heap/Heap.h

Issue 1146353002: Oilpan: insist on eager sweeping for some objects. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add some limited-lifetime comments Created 5 years, 7 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 | « Source/platform/LifecycleObserver.h ('k') | Source/platform/heap/HeapTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.h
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
index 12044af291ba0d0b25b49b2538bc3c76f609d2e4..b159ddd19f08192baa00d5e60ed7c1d69c004faa 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -1119,15 +1119,36 @@ public:
}
};
-#define EAGERLY_SWEEP(TYPE) \
-template<typename T> \
-class HeapIndexTrait<T, typename WTF::EnableIf<WTF::IsSubclass<T, TYPE>::value>::Type> { \
-public: \
- static int heapIndexForObject(size_t) \
- { \
- return EagerSweepHeapIndex; \
- } \
-}
+// TODO(Oilpan): enable this macro when enabling lazy sweeping, non-Oilpan.
+#if ENABLE(OILPAN)
+#define EAGERLY_SWEEP() typedef int IsEagerlySweptMarker
+#else
+#define EAGERLY_SWEEP()
+#endif
+
+template<typename T>
+struct IsEagerlySweptType {
+private:
+ typedef char YesType;
+ struct NoType {
+ char padding[8];
+ };
+
+ template <typename U> static YesType checkMarker(typename U::IsEagerlySweptMarker*);
+ template <typename U> static NoType checkMarker(...);
+
+public:
+ static const bool value = sizeof(checkMarker<T>(nullptr)) == sizeof(YesType);
+};
+
+template<typename T>
+class HeapIndexTrait<T, typename WTF::EnableIf<IsEagerlySweptType<T>::value>::Type> {
+public:
+ static int heapIndexForObject(size_t)
+ {
+ return EagerSweepHeapIndex;
+ }
+};
NO_SANITIZE_ADDRESS inline
size_t HeapObjectHeader::size() const
« no previous file with comments | « Source/platform/LifecycleObserver.h ('k') | Source/platform/heap/HeapTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698