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 1964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1975 template<MarkingMode Mode> | 1975 template<MarkingMode Mode> |
1976 class MarkingVisitor final : public Visitor { | 1976 class MarkingVisitor final : public Visitor { |
1977 public: | 1977 public: |
1978 #if ENABLE(GC_PROFILE_MARKING) | 1978 #if ENABLE(GC_PROFILE_MARKING) |
1979 using LiveObjectSet = HashSet<uintptr_t>; | 1979 using LiveObjectSet = HashSet<uintptr_t>; |
1980 using LiveObjectMap = HashMap<String, LiveObjectSet>; | 1980 using LiveObjectMap = HashMap<String, LiveObjectSet>; |
1981 using ObjectGraph = HashMap<uintptr_t, std::pair<uintptr_t, String>>; | 1981 using ObjectGraph = HashMap<uintptr_t, std::pair<uintptr_t, String>>; |
1982 #endif | 1982 #endif |
1983 | 1983 |
1984 explicit MarkingVisitor(CallbackStack* markingStack) | 1984 explicit MarkingVisitor(CallbackStack* markingStack) |
1985 : m_markingStack(markingStack) | 1985 : Visitor(Mode == GlobalMarking ? Visitor::GlobalMarkingVisitorType : Vi
sitor::GenericVisitorType) |
| 1986 , m_markingStack(markingStack) |
1986 { | 1987 { |
1987 } | 1988 } |
1988 | 1989 |
1989 inline void visitHeader(HeapObjectHeader* header, const void* objectPointer,
TraceCallback callback) | 1990 inline void visitHeader(HeapObjectHeader* header, const void* objectPointer,
TraceCallback callback) |
1990 { | 1991 { |
1991 ASSERT(header); | 1992 ASSERT(header); |
1992 ASSERT(objectPointer); | 1993 ASSERT(objectPointer); |
1993 // Check that we are not marking objects that are outside | 1994 // Check that we are not marking objects that are outside |
1994 // the heap by calling Heap::contains. However we cannot | 1995 // the heap by calling Heap::contains. However we cannot |
1995 // call Heap::contains when outside a GC and we call mark | 1996 // call Heap::contains when outside a GC and we call mark |
(...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2942 bool Heap::s_shutdownCalled = false; | 2943 bool Heap::s_shutdownCalled = false; |
2943 bool Heap::s_lastGCWasConservative = false; | 2944 bool Heap::s_lastGCWasConservative = false; |
2944 FreePagePool* Heap::s_freePagePool; | 2945 FreePagePool* Heap::s_freePagePool; |
2945 OrphanedPagePool* Heap::s_orphanedPagePool; | 2946 OrphanedPagePool* Heap::s_orphanedPagePool; |
2946 Heap::RegionTree* Heap::s_regionTree = nullptr; | 2947 Heap::RegionTree* Heap::s_regionTree = nullptr; |
2947 size_t Heap::s_allocatedObjectSize = 0; | 2948 size_t Heap::s_allocatedObjectSize = 0; |
2948 size_t Heap::s_allocatedSpace = 0; | 2949 size_t Heap::s_allocatedSpace = 0; |
2949 size_t Heap::s_markedObjectSize = 0; | 2950 size_t Heap::s_markedObjectSize = 0; |
2950 | 2951 |
2951 } // namespace blink | 2952 } // namespace blink |
OLD | NEW |