OLD | NEW |
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 Loading... |
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) |
| 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 20 matching lines...) Expand all Loading... |
322 // objects have vtables we have to have the callback as an | 327 // objects have vtables we have to have the callback as an |
323 // explicit argument, but we can use the templated one-argument | 328 // explicit argument, but we can use the templated one-argument |
324 // mark method above to automatically provide the callback | 329 // mark method above to automatically provide the callback |
325 // function. | 330 // function. |
326 virtual void mark(const void*, TraceCallback) = 0; | 331 virtual void mark(const void*, TraceCallback) = 0; |
327 virtual void markNoTracing(const void* pointer) { mark(pointer, reinterpret_
cast<TraceCallback>(0)); } | 332 virtual void markNoTracing(const void* pointer) { mark(pointer, reinterpret_
cast<TraceCallback>(0)); } |
328 | 333 |
329 // Used to mark objects during conservative scanning. | 334 // Used to mark objects during conservative scanning. |
330 virtual void mark(HeapObjectHeader*, TraceCallback) = 0; | 335 virtual void mark(HeapObjectHeader*, TraceCallback) = 0; |
331 virtual void mark(FinalizedHeapObjectHeader*, TraceCallback) = 0; | 336 virtual void mark(FinalizedHeapObjectHeader*, TraceCallback) = 0; |
332 virtual void markConservatively(HeapObjectHeader*) = 0; | |
333 virtual void markConservatively(FinalizedHeapObjectHeader*) = 0; | |
334 | 337 |
335 // If the object calls this during the regular trace callback, then the | 338 // If the object calls this during the regular trace callback, then the |
336 // WeakPointerCallback argument may be called later, when the strong roots | 339 // WeakPointerCallback argument may be called later, when the strong roots |
337 // have all been found. The WeakPointerCallback will normally use isAlive | 340 // have all been found. The WeakPointerCallback will normally use isAlive |
338 // to find out whether some pointers are pointing to dying objects. When | 341 // to find out whether some pointers are pointing to dying objects. When |
339 // the WeakPointerCallback is done the object must have purged all pointers | 342 // the WeakPointerCallback is done the object must have purged all pointers |
340 // to objects where isAlive returned false. In the weak callback it is not | 343 // to objects where isAlive returned false. In the weak callback it is not |
341 // allowed to touch other objects (except using isAlive) or to allocate on | 344 // allowed to touch other objects (except using isAlive) or to allocate on |
342 // the GC heap. Note that even removing things from HeapHashSet or | 345 // the GC heap. Note that even removing things from HeapHashSet or |
343 // HeapHashMap can cause an allocation if the backing store resizes, but | 346 // HeapHashMap can cause an allocation if the backing store resizes, but |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 struct GCInfoTrait { | 644 struct GCInfoTrait { |
642 static const GCInfo* get() | 645 static const GCInfo* get() |
643 { | 646 { |
644 return GCInfoAtBase<typename GetGarbageCollectedBase<T>::type>::get(); | 647 return GCInfoAtBase<typename GetGarbageCollectedBase<T>::type>::get(); |
645 } | 648 } |
646 }; | 649 }; |
647 | 650 |
648 } | 651 } |
649 | 652 |
650 #endif | 653 #endif |
OLD | NEW |