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 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 static void init(); | 811 static void init(); |
812 static void shutdown(); | 812 static void shutdown(); |
813 static void doShutdown(); | 813 static void doShutdown(); |
814 | 814 |
815 #if ENABLE(ASSERT) | 815 #if ENABLE(ASSERT) |
816 static BaseHeapPage* findPageFromAddress(Address); | 816 static BaseHeapPage* findPageFromAddress(Address); |
817 static BaseHeapPage* findPageFromAddress(void* pointer) { return findPageFro
mAddress(reinterpret_cast<Address>(pointer)); } | 817 static BaseHeapPage* findPageFromAddress(void* pointer) { return findPageFro
mAddress(reinterpret_cast<Address>(pointer)); } |
818 static bool containedInHeapOrOrphanedPage(void*); | 818 static bool containedInHeapOrOrphanedPage(void*); |
819 #endif | 819 #endif |
820 | 820 |
| 821 // Is the traceable GC object still alive? If no GC is in progress, |
| 822 // it will be true. If a GC (lazy sweep, really) is in progress, |
| 823 // it will be true iff the object has been marked. |
| 824 static bool isObjectAlive(const void*); |
| 825 |
821 // Push a trace callback on the marking stack. | 826 // Push a trace callback on the marking stack. |
822 static void pushTraceCallback(void* containerObject, TraceCallback); | 827 static void pushTraceCallback(void* containerObject, TraceCallback); |
823 | 828 |
824 // Push a trace callback on the post-marking callback stack. These | 829 // Push a trace callback on the post-marking callback stack. These |
825 // callbacks are called after normal marking (including ephemeron | 830 // callbacks are called after normal marking (including ephemeron |
826 // iteration). | 831 // iteration). |
827 static void pushPostMarkingCallback(void*, TraceCallback); | 832 static void pushPostMarkingCallback(void*, TraceCallback); |
828 | 833 |
829 // Add a weak pointer callback to the weak callback work list. General | 834 // 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 | 835 // 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> | 2401 template<typename T, size_t inlineCapacity> |
2397 struct GCInfoTrait<HeapVector<T, inlineCapacity>> : public GCInfoTrait<Vector<T,
inlineCapacity, HeapAllocator>> { }; | 2402 struct GCInfoTrait<HeapVector<T, inlineCapacity>> : public GCInfoTrait<Vector<T,
inlineCapacity, HeapAllocator>> { }; |
2398 template<typename T, size_t inlineCapacity> | 2403 template<typename T, size_t inlineCapacity> |
2399 struct GCInfoTrait<HeapDeque<T, inlineCapacity>> : public GCInfoTrait<Deque<T, i
nlineCapacity, HeapAllocator>> { }; | 2404 struct GCInfoTrait<HeapDeque<T, inlineCapacity>> : public GCInfoTrait<Deque<T, i
nlineCapacity, HeapAllocator>> { }; |
2400 template<typename T, typename U, typename V> | 2405 template<typename T, typename U, typename V> |
2401 struct GCInfoTrait<HeapHashCountedSet<T, U, V>> : public GCInfoTrait<HashCounted
Set<T, U, V, HeapAllocator>> { }; | 2406 struct GCInfoTrait<HeapHashCountedSet<T, U, V>> : public GCInfoTrait<HashCounted
Set<T, U, V, HeapAllocator>> { }; |
2402 | 2407 |
2403 } // namespace blink | 2408 } // namespace blink |
2404 | 2409 |
2405 #endif // Heap_h | 2410 #endif // Heap_h |
OLD | NEW |