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 2274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2285 struct GCInfoTrait<HeapLinkedHashSet<T, U, V> > : public GCInfoTrait<LinkedHashS
et<T, U, V, HeapAllocator> > { }; | 2285 struct GCInfoTrait<HeapLinkedHashSet<T, U, V> > : public GCInfoTrait<LinkedHashS
et<T, U, V, HeapAllocator> > { }; |
2286 template<typename T, size_t inlineCapacity, typename U> | 2286 template<typename T, size_t inlineCapacity, typename U> |
2287 struct GCInfoTrait<HeapListHashSet<T, inlineCapacity, U> > : public GCInfoTrait<
ListHashSet<T, inlineCapacity, U, HeapListHashSetAllocator<T, inlineCapacity> >
> { }; | 2287 struct GCInfoTrait<HeapListHashSet<T, inlineCapacity, U> > : public GCInfoTrait<
ListHashSet<T, inlineCapacity, U, HeapListHashSetAllocator<T, inlineCapacity> >
> { }; |
2288 template<typename T, size_t inlineCapacity> | 2288 template<typename T, size_t inlineCapacity> |
2289 struct GCInfoTrait<HeapVector<T, inlineCapacity> > : public GCInfoTrait<Vector<T
, inlineCapacity, HeapAllocator> > { }; | 2289 struct GCInfoTrait<HeapVector<T, inlineCapacity> > : public GCInfoTrait<Vector<T
, inlineCapacity, HeapAllocator> > { }; |
2290 template<typename T, size_t inlineCapacity> | 2290 template<typename T, size_t inlineCapacity> |
2291 struct GCInfoTrait<HeapDeque<T, inlineCapacity> > : public GCInfoTrait<Deque<T,
inlineCapacity, HeapAllocator> > { }; | 2291 struct GCInfoTrait<HeapDeque<T, inlineCapacity> > : public GCInfoTrait<Deque<T,
inlineCapacity, HeapAllocator> > { }; |
2292 template<typename T, typename U, typename V> | 2292 template<typename T, typename U, typename V> |
2293 struct GCInfoTrait<HeapHashCountedSet<T, U, V> > : public GCInfoTrait<HashCounte
dSet<T, U, V, HeapAllocator> > { }; | 2293 struct GCInfoTrait<HeapHashCountedSet<T, U, V> > : public GCInfoTrait<HashCounte
dSet<T, U, V, HeapAllocator> > { }; |
2294 | 2294 |
| 2295 static inline bool objectInTerminatingThreadHeap(const void* objectPointer) |
| 2296 { |
| 2297 BaseHeapPage* page = pageFromObject(objectPointer); |
| 2298 ASSERT(!page->orphaned()); |
| 2299 // When doing a thread local GC, the marker checks if |
| 2300 // the object resides in another thread's heap. The |
| 2301 // object should not be traced, if it does. |
| 2302 return page->terminating(); |
| 2303 } |
| 2304 |
| 2305 NO_SANITIZE_ADDRESS inline |
| 2306 void HeapObjectHeader::mark() |
| 2307 { |
| 2308 checkHeader(); |
| 2309 ASSERT(!isMarked()); |
| 2310 m_size = m_size | markBitMask; |
| 2311 } |
| 2312 |
| 2313 NO_SANITIZE_ADDRESS inline |
| 2314 bool HeapObjectHeader::isMarked() const |
| 2315 { |
| 2316 checkHeader(); |
| 2317 return m_size & markBitMask; |
| 2318 } |
| 2319 |
| 2320 inline |
| 2321 HeapObjectHeader* HeapObjectHeader::fromPayload(const void* payload) |
| 2322 { |
| 2323 Address addr = reinterpret_cast<Address>(const_cast<void*>(payload)); |
| 2324 HeapObjectHeader* header = |
| 2325 reinterpret_cast<HeapObjectHeader*>(addr - sizeof(HeapObjectHeader)); |
| 2326 return header; |
| 2327 } |
| 2328 |
| 2329 inline |
| 2330 GeneralHeapObjectHeader* GeneralHeapObjectHeader::fromPayload(const void* payloa
d) |
| 2331 { |
| 2332 Address addr = reinterpret_cast<Address>(const_cast<void*>(payload)); |
| 2333 GeneralHeapObjectHeader* header = |
| 2334 reinterpret_cast<GeneralHeapObjectHeader*>(addr - sizeof(GeneralHeapObje
ctHeader)); |
| 2335 return header; |
| 2336 } |
| 2337 |
| 2338 inline bool Visitor::ensureMarked(const void* objectPointer) |
| 2339 { |
| 2340 (void)m_mode; |
| 2341 if (!objectPointer) |
| 2342 return false; |
| 2343 // if (UNLIKELY(m_mode && !objectInTerminatingThreadHeap(objectPointer))
) |
| 2344 // return false; |
| 2345 //#if ENABLE(ASSERT) |
| 2346 // if (isMarked(objectPointer)) |
| 2347 // return false; |
| 2348 // |
| 2349 // markNoTracing(objectPointer); |
| 2350 //#else |
| 2351 // Inline what the above markNoTracing() call expands to, |
| 2352 // so as to make sure that we do get all the benefits. |
| 2353 GeneralHeapObjectHeader* header = |
| 2354 GeneralHeapObjectHeader::fromPayload(objectPointer); |
| 2355 if (header->isMarked()) |
| 2356 return false; |
| 2357 header->mark(); |
| 2358 // #endif |
| 2359 return true; |
| 2360 } |
| 2361 |
| 2362 // if (UNLIKELY(m_mode && !objectInTerminatingThreadHeap(objectPointer))
) |
| 2363 // return false;
|
| 2364 #define DEFINE_ENSURE_MARKED_METHOD(Type)
\ |
| 2365 inline bool Visitor::ensureMarked(const Type* objectPointer) \ |
| 2366 {
\ |
| 2367 if (!objectPointer)
\ |
| 2368 return false;
\ |
| 2369 HeapObjectHeader* header =
\ |
| 2370 HeapObjectHeader::fromPayload(objectPointer);
\ |
| 2371 if (header->isMarked())
\ |
| 2372 return false;
\ |
| 2373 header->mark();
\ |
| 2374 return true;
\ |
| 2375 } |
| 2376 FOR_EACH_TYPED_HEAP(DEFINE_ENSURE_MARKED_METHOD) |
| 2377 #undef DEFINE_ENSURE_MARKED_METHOD |
| 2378 |
2295 } // namespace blink | 2379 } // namespace blink |
2296 | 2380 |
2297 #endif // Heap_h | 2381 #endif // Heap_h |
OLD | NEW |