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

Side by Side Diff: Source/platform/heap/Visitor.h

Issue 455363002: Oilpan: fix tracing of un-initialized part objects during conservative GCs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/platform/heap/HeapTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 // to trace through a part object with visitor->trace(m_partObject). This 282 // to trace through a part object with visitor->trace(m_partObject). This
283 // takes a const argument, because otherwise it will match too eagerly: a 283 // takes a const argument, because otherwise it will match too eagerly: a
284 // non-const argument would match a non-const Vector<T>& argument better 284 // non-const argument would match a non-const Vector<T>& argument better
285 // than the specialization that takes const Vector<T>&. For a similar reason , 285 // than the specialization that takes const Vector<T>&. For a similar reason ,
286 // the other specializations take a const argument even though they are 286 // the other specializations take a const argument even though they are
287 // usually used with non-const arguments, otherwise this function would matc h 287 // usually used with non-const arguments, otherwise this function would matc h
288 // too well. 288 // too well.
289 template<typename T> 289 template<typename T>
290 void trace(const T& t) 290 void trace(const T& t)
291 { 291 {
292 if (WTF::IsPolymorphic<T>::value) {
293 intptr_t vtable = *reinterpret_cast<const intptr_t*>(&t);
294 if (!vtable)
haraken 2014/08/11 10:44:02 Can we merge this check with vTableInitialized() i
Mads Ager (chromium) 2014/08/11 12:17:36 These are two different checks: The check that we
295 return;
296 }
292 const_cast<T&>(t).trace(this); 297 const_cast<T&>(t).trace(this);
293 } 298 }
294 299
295 // The following trace methods are for off-heap collections. 300 // The following trace methods are for off-heap collections.
296 template<typename T, size_t inlineCapacity> 301 template<typename T, size_t inlineCapacity>
297 void trace(const Vector<T, inlineCapacity>& vector) 302 void trace(const Vector<T, inlineCapacity>& vector)
298 { 303 {
299 OffHeapCollectionTraceTrait<Vector<T, inlineCapacity, WTF::DefaultAlloca tor> >::trace(this, vector); 304 OffHeapCollectionTraceTrait<Vector<T, inlineCapacity, WTF::DefaultAlloca tor> >::trace(this, vector);
300 } 305 }
301 306
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 struct GCInfoTrait { 639 struct GCInfoTrait {
635 static const GCInfo* get() 640 static const GCInfo* get()
636 { 641 {
637 return GCInfoAtBase<typename GetGarbageCollectedBase<T>::type>::get(); 642 return GCInfoAtBase<typename GetGarbageCollectedBase<T>::type>::get();
638 } 643 }
639 }; 644 };
640 645
641 } 646 }
642 647
643 #endif 648 #endif
OLDNEW
« no previous file with comments | « Source/platform/heap/HeapTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698