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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 virtual size_t size() = 0; | 394 virtual size_t size() = 0; |
395 virtual bool isLargeObject() { return false; } | 395 virtual bool isLargeObject() { return false; } |
396 | 396 |
397 Address address() { return reinterpret_cast<Address>(this); } | 397 Address address() { return reinterpret_cast<Address>(this); } |
398 PageMemory* storage() const { return m_storage; } | 398 PageMemory* storage() const { return m_storage; } |
399 ThreadHeap* heap() const { return m_heap; } | 399 ThreadHeap* heap() const { return m_heap; } |
400 bool orphaned() { return !m_heap; } | 400 bool orphaned() { return !m_heap; } |
401 bool terminating() { return m_terminating; } | 401 bool terminating() { return m_terminating; } |
402 void setTerminating() { m_terminating = true; } | 402 void setTerminating() { m_terminating = true; } |
403 | 403 |
| 404 void markAsLazilySwept(); |
| 405 PLATFORM_EXPORT bool hasBeenLazilySwept() const; |
| 406 |
404 private: | 407 private: |
405 PageMemory* m_storage; | 408 PageMemory* m_storage; |
406 ThreadHeap* m_heap; | 409 ThreadHeap* m_heap; |
407 // Whether the page is part of a terminating thread or not. | 410 // Whether the page is part of a terminating thread or not. |
408 bool m_terminating; | 411 bool m_terminating; |
| 412 |
| 413 protected: |
| 414 // Track the (lazy) sweeping state of a page. The page's |
| 415 // ThreadState keeps a sweep token value, with the page being |
| 416 // updated with that value as it is swept. |
| 417 // |
| 418 // By comparing the ThreadState's current sweep token value with |
| 419 // the page's sweep status, its swept/unswept status can |
| 420 // readily be determined. |
| 421 // |
| 422 // 0 represents the unused/no-toggle state. |
| 423 unsigned m_sweepStatus : 2; |
409 }; | 424 }; |
410 | 425 |
411 class HeapPage final : public BaseHeapPage { | 426 class HeapPage final : public BaseHeapPage { |
412 public: | 427 public: |
413 HeapPage(PageMemory*, ThreadHeap*); | 428 HeapPage(PageMemory*, ThreadHeap*); |
414 | 429 |
415 Address payload() | 430 Address payload() |
416 { | 431 { |
417 return address() + sizeof(HeapPage) + headerPadding(); | 432 return address() + sizeof(HeapPage) + headerPadding(); |
418 } | 433 } |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 FreeList m_freeList; | 814 FreeList m_freeList; |
800 | 815 |
801 // Index into the page pools. This is used to ensure that the pages of the | 816 // Index into the page pools. This is used to ensure that the pages of the |
802 // same type go into the correct page pool and thus avoid type confusion. | 817 // same type go into the correct page pool and thus avoid type confusion. |
803 int m_index; | 818 int m_index; |
804 | 819 |
805 // The size of promptly freed objects in the heap. | 820 // The size of promptly freed objects in the heap. |
806 size_t m_promptlyFreedSize; | 821 size_t m_promptlyFreedSize; |
807 }; | 822 }; |
808 | 823 |
| 824 extern BaseHeapPage* pageFromObject(const void*); |
| 825 |
809 class PLATFORM_EXPORT Heap { | 826 class PLATFORM_EXPORT Heap { |
810 public: | 827 public: |
811 static void init(); | 828 static void init(); |
812 static void shutdown(); | 829 static void shutdown(); |
813 static void doShutdown(); | 830 static void doShutdown(); |
814 | 831 |
815 #if ENABLE(ASSERT) | 832 #if ENABLE(ASSERT) |
816 static BaseHeapPage* findPageFromAddress(Address); | 833 static BaseHeapPage* findPageFromAddress(Address); |
817 static BaseHeapPage* findPageFromAddress(void* pointer) { return findPageFro
mAddress(reinterpret_cast<Address>(pointer)); } | 834 static BaseHeapPage* findPageFromAddress(void* pointer) { return findPageFro
mAddress(reinterpret_cast<Address>(pointer)); } |
818 static bool containedInHeapOrOrphanedPage(void*); | 835 static bool containedInHeapOrOrphanedPage(void*); |
819 #endif | 836 #endif |
820 | 837 |
| 838 // Is the finalizable GC object still alive? If no GC is in progress, |
| 839 // it must be true. If a lazy sweep is in progress, it will be true if |
| 840 // the object hasn't been swept yet and it is marked, or it has |
| 841 // been swept and it is still alive. |
| 842 // |
| 843 // isFinalizedObjectAlive() must not be used with already-finalized object |
| 844 // references. |
| 845 // |
| 846 template<typename T> |
| 847 static bool isFinalizedObjectAlive(const T* objectPointer) |
| 848 { |
| 849 static_assert(IsGarbageCollectedType<T>::value, "only objects deriving f
rom GarbageCollected can be used."); |
| 850 #if ENABLE(OILPAN) |
| 851 BaseHeapPage* page = pageFromObject(objectPointer); |
| 852 if (!page->heap()->threadState()->isSweepingInProgress()) |
| 853 return true; |
| 854 |
| 855 if (page->hasBeenLazilySwept()) |
| 856 return true; |
| 857 |
| 858 return ObjectAliveTrait<T>::isHeapObjectAlive(s_markingVisitor, const_ca
st<T*>(objectPointer)); |
| 859 #else |
| 860 // FIXME: remove when incremental sweeping is always on |
| 861 // (cf. ThreadState::postGCProcessing()). |
| 862 return true; |
| 863 #endif |
| 864 } |
| 865 |
821 // Push a trace callback on the marking stack. | 866 // Push a trace callback on the marking stack. |
822 static void pushTraceCallback(void* containerObject, TraceCallback); | 867 static void pushTraceCallback(void* containerObject, TraceCallback); |
823 | 868 |
824 // Push a trace callback on the post-marking callback stack. These | 869 // Push a trace callback on the post-marking callback stack. These |
825 // callbacks are called after normal marking (including ephemeron | 870 // callbacks are called after normal marking (including ephemeron |
826 // iteration). | 871 // iteration). |
827 static void pushPostMarkingCallback(void*, TraceCallback); | 872 static void pushPostMarkingCallback(void*, TraceCallback); |
828 | 873 |
829 // Add a weak pointer callback to the weak callback work list. General | 874 // Add a weak pointer callback to the weak callback work list. General |
830 // object pointer callbacks are added to a thread local weak callback work | 875 // object pointer callbacks are added to a thread local weak callback work |
(...skipping 1565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2396 template<typename T, size_t inlineCapacity> | 2441 template<typename T, size_t inlineCapacity> |
2397 struct GCInfoTrait<HeapVector<T, inlineCapacity>> : public GCInfoTrait<Vector<T,
inlineCapacity, HeapAllocator>> { }; | 2442 struct GCInfoTrait<HeapVector<T, inlineCapacity>> : public GCInfoTrait<Vector<T,
inlineCapacity, HeapAllocator>> { }; |
2398 template<typename T, size_t inlineCapacity> | 2443 template<typename T, size_t inlineCapacity> |
2399 struct GCInfoTrait<HeapDeque<T, inlineCapacity>> : public GCInfoTrait<Deque<T, i
nlineCapacity, HeapAllocator>> { }; | 2444 struct GCInfoTrait<HeapDeque<T, inlineCapacity>> : public GCInfoTrait<Deque<T, i
nlineCapacity, HeapAllocator>> { }; |
2400 template<typename T, typename U, typename V> | 2445 template<typename T, typename U, typename V> |
2401 struct GCInfoTrait<HeapHashCountedSet<T, U, V>> : public GCInfoTrait<HashCounted
Set<T, U, V, HeapAllocator>> { }; | 2446 struct GCInfoTrait<HeapHashCountedSet<T, U, V>> : public GCInfoTrait<HashCounted
Set<T, U, V, HeapAllocator>> { }; |
2402 | 2447 |
2403 } // namespace blink | 2448 } // namespace blink |
2404 | 2449 |
2405 #endif // Heap_h | 2450 #endif // Heap_h |
OLD | NEW |