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

Unified Diff: Source/wtf/Deque.h

Issue 1051853003: Oilpan: like Vector<T>, restrict Deque<T> to certain part objects. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/Deque.h
diff --git a/Source/wtf/Deque.h b/Source/wtf/Deque.h
index 60eb8cfbe2c88d8f95231496efd8bcb717b580b8..ba354e23744677579254716fe65799271ef42808 100644
--- a/Source/wtf/Deque.h
+++ b/Source/wtf/Deque.h
@@ -226,6 +226,12 @@ namespace WTF {
: m_start(0)
, m_end(0)
{
+ // Unused buffer slots are initialized to zero so that the visitor and the
+ // finalizer can visit them safely. canInitializeWithMemset tells us
+ // that the class does not expect matching constructor and
+ // destructor calls as long as the memory is zeroed.
haraken 2015/04/22 05:29:40 Or can we add these static_assert to Vector::trace
sof 2015/04/22 16:05:21 It makes some sense to keep it associated with the
+ static_assert(!Allocator::isGarbageCollected || !VectorTraits<T>::needsDestruction || VectorTraits<T>::canInitializeWithMemset, "class has problems with finalizers called on cleared memory");
+ static_assert(!WTF::IsPolymorphic<T>::value || !VectorTraits<T>::canInitializeWithMemset, "cannot initialize with memset if there is a vtable");
}
template<typename T, size_t inlineCapacity, typename Allocator>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698