Chromium Code Reviews

Unified Diff: Source/platform/heap/HeapTest.cpp

Issue 1112363003: Oilpan: Remove OffHeapCollectionTrait (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.
Jump to:
View side-by-side diff with in-line comments
Index: Source/platform/heap/HeapTest.cpp
diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp
index 6ab59b333557b5d238ebb0b8d90b1fe790308be8..d82dc35c5749d7f9fc6b4ccaaf6a405a80fecb27 100644
--- a/Source/platform/heap/HeapTest.cpp
+++ b/Source/platform/heap/HeapTest.cpp
@@ -2175,47 +2175,6 @@ struct ShouldBeTraced {
Member<IntWrapper> m_wrapper;
};
-class OffHeapContainer : public GarbageCollectedFinalized<OffHeapContainer> {
-public:
- static OffHeapContainer* create() { return new OffHeapContainer(); }
-
- static const int iterations = 300;
- static const int deadWrappers = 600;
-
- OffHeapContainer()
- {
- for (int i = 0; i < iterations; i++) {
- m_deque1.append(ShouldBeTraced(IntWrapper::create(i)));
- m_vector1.append(ShouldBeTraced(IntWrapper::create(i)));
- }
-
- Deque<ShouldBeTraced>::iterator d1Iterator(m_deque1.begin());
- Vector<ShouldBeTraced>::iterator v1Iterator(m_vector1.begin());
-
- for (int i = 0; i < iterations; i++) {
- EXPECT_EQ(i, m_vector1[i].m_wrapper->value());
- EXPECT_EQ(i, d1Iterator->m_wrapper->value());
- EXPECT_EQ(i, v1Iterator->m_wrapper->value());
- ++d1Iterator;
- ++v1Iterator;
- }
- EXPECT_EQ(d1Iterator, m_deque1.end());
- EXPECT_EQ(v1Iterator, m_vector1.end());
- }
-
- DEFINE_INLINE_TRACE()
- {
- visitor->trace(m_deque1);
- visitor->trace(m_vector1);
- }
-
- Deque<ShouldBeTraced> m_deque1;
- Vector<ShouldBeTraced> m_vector1;
-};
-
-const int OffHeapContainer::iterations;
-const int OffHeapContainer::deadWrappers;
-
// These class definitions test compile-time asserts with transition
// types. They are therefore unused in test code and just need to
// compile. This is intentional; do not delete the A and B classes below.
@@ -3623,18 +3582,6 @@ TEST(HeapTest, CheckAndMarkPointer)
clearOutOldGarbage();
}
-TEST(HeapTest, VisitOffHeapCollections)
-{
- clearOutOldGarbage();
- IntWrapper::s_destructorCalls = 0;
- Persistent<OffHeapContainer> container = OffHeapContainer::create();
- Heap::collectGarbage(ThreadState::NoHeapPointersOnStack, ThreadState::GCWithSweep, Heap::ForcedGC);
- EXPECT_EQ(0, IntWrapper::s_destructorCalls);
- container = nullptr;
- Heap::collectGarbage(ThreadState::NoHeapPointersOnStack, ThreadState::GCWithSweep, Heap::ForcedGC);
- EXPECT_EQ(OffHeapContainer::deadWrappers, IntWrapper::s_destructorCalls);
-}
-
TEST(HeapTest, PersistentHeapCollectionTypes)
{
IntWrapper::s_destructorCalls = 0;
« no previous file with comments | « Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.cpp ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »

Powered by Google App Engine