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

Side by Side Diff: third_party/WebKit/Source/platform/heap/HeapTest.cpp

Issue 1549143002: Add thread affinity and ASSERT() for same-thread restriction to WTF::Function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@TRV_ThreadSafeBindByVariadicTemplate
Patch Set: Rebase. Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 4977 matching lines...) Expand 10 before | Expand all | Expand 10 after
4988 { 4988 {
4989 Persistent<HeapHashMap<int, WeakMember<IntWrapper>>> map = new HeapHashMap<i nt, WeakMember<IntWrapper>>(); 4989 Persistent<HeapHashMap<int, WeakMember<IntWrapper>>> map = new HeapHashMap<i nt, WeakMember<IntWrapper>>();
4990 addElementsToWeakMap(map); 4990 addElementsToWeakMap(map);
4991 HeapHashMap<int, WeakMember<IntWrapper>>::AddResult result = map->add(800, n ullptr); 4991 HeapHashMap<int, WeakMember<IntWrapper>>::AddResult result = map->add(800, n ullptr);
4992 conservativelyCollectGarbage(); 4992 conservativelyCollectGarbage();
4993 result.storedValue->value = IntWrapper::create(42); 4993 result.storedValue->value = IntWrapper::create(42);
4994 } 4994 }
4995 4995
4996 TEST(HeapTest, Bind) 4996 TEST(HeapTest, Bind)
4997 { 4997 {
4998 OwnPtr<Closure> closure = bind(static_cast<void (Bar::*)(Visitor*)>(&Bar::tr ace), Bar::create(), static_cast<Visitor*>(0)); 4998 OwnPtr<SameThreadClosure> closure = bind(static_cast<void (Bar::*)(Visitor*) >(&Bar::trace), Bar::create(), static_cast<Visitor*>(0));
4999 preciselyCollectGarbage(); 4999 preciselyCollectGarbage();
5000 // The closure should have a persistent handle to the Bar. 5000 // The closure should have a persistent handle to the Bar.
5001 EXPECT_EQ(1u, Bar::s_live); 5001 EXPECT_EQ(1u, Bar::s_live);
5002 5002
5003 OwnPtr<Closure> closure2 = bind(static_cast<void (Bar::*)(Visitor*)>(&Bar::t race), RawPtr<Bar>(Bar::create()), static_cast<Visitor*>(0)); 5003 OwnPtr<SameThreadClosure> closure2 = bind(static_cast<void (Bar::*)(Visitor* )>(&Bar::trace), RawPtr<Bar>(Bar::create()), static_cast<Visitor*>(0));
5004 preciselyCollectGarbage(); 5004 preciselyCollectGarbage();
5005 // The closure should have a persistent handle to the Bar. 5005 // The closure should have a persistent handle to the Bar.
5006 EXPECT_EQ(2u, Bar::s_live); 5006 EXPECT_EQ(2u, Bar::s_live);
5007 // RawPtr<OffHeapInt> should not make Persistent. 5007 // RawPtr<OffHeapInt> should not make Persistent.
5008 OwnPtr<Closure> closure3 = bind(&OffHeapInt::voidFunction, RawPtr<OffHeapInt >(OffHeapInt::create(1).get())); 5008 OwnPtr<SameThreadClosure> closure3 = bind(&OffHeapInt::voidFunction, RawPtr< OffHeapInt>(OffHeapInt::create(1).get()));
5009 5009
5010 UseMixin::s_traceCount = 0; 5010 UseMixin::s_traceCount = 0;
5011 Mixin* mixin = UseMixin::create(); 5011 Mixin* mixin = UseMixin::create();
5012 OwnPtr<Closure> mixinClosure = bind(static_cast<void (Mixin::*)(Visitor*)>(& Mixin::trace), mixin, static_cast<Visitor*>(0)); 5012 OwnPtr<SameThreadClosure> mixinClosure = bind(static_cast<void (Mixin::*)(Vi sitor*)>(&Mixin::trace), mixin, static_cast<Visitor*>(0));
5013 preciselyCollectGarbage(); 5013 preciselyCollectGarbage();
5014 // The closure should have a persistent handle to the mixin. 5014 // The closure should have a persistent handle to the mixin.
5015 EXPECT_EQ(1, UseMixin::s_traceCount); 5015 EXPECT_EQ(1, UseMixin::s_traceCount);
5016 } 5016 }
5017 5017
5018 typedef HeapHashSet<WeakMember<IntWrapper>> WeakSet; 5018 typedef HeapHashSet<WeakMember<IntWrapper>> WeakSet;
5019 5019
5020 // These special traits will remove a set from a map when the set is empty. 5020 // These special traits will remove a set from a map when the set is empty.
5021 struct EmptyClearingHashSetTraits : HashTraits<WeakSet> { 5021 struct EmptyClearingHashSetTraits : HashTraits<WeakSet> {
5022 static const WTF::WeakHandlingFlag weakHandlingFlag = WTF::WeakHandlingInCol lections; 5022 static const WTF::WeakHandlingFlag weakHandlingFlag = WTF::WeakHandlingInCol lections;
(...skipping 1508 matching lines...) Expand 10 before | Expand all | Expand 10 after
6531 EXPECT_EQ(1u, vector2.size()); 6531 EXPECT_EQ(1u, vector2.size());
6532 // TODO(Oilpan): when Vector.h's contiguous container support no longer disables 6532 // TODO(Oilpan): when Vector.h's contiguous container support no longer disables
6533 // Vector<>s with inline capacity, remove. 6533 // Vector<>s with inline capacity, remove.
6534 #if !defined(ANNOTATE_CONTIGUOUS_CONTAINER) 6534 #if !defined(ANNOTATE_CONTIGUOUS_CONTAINER)
6535 EXPECT_EQ(16u, vector1.capacity()); 6535 EXPECT_EQ(16u, vector1.capacity());
6536 EXPECT_EQ(16u, vector2.capacity()); 6536 EXPECT_EQ(16u, vector2.capacity());
6537 #endif 6537 #endif
6538 } 6538 }
6539 6539
6540 } // namespace blink 6540 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698