Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: third_party/WebKit/Source/platform/heap/GCInfo.cpp

Issue 2684633004: Remove orphaned pages from Oilpan (Closed)
Patch Set: temp Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "platform/heap/GCInfo.h" 5 #include "platform/heap/GCInfo.h"
6 6
7 #include "platform/heap/Handle.h" 7 #include "platform/heap/Handle.h"
8 #include "platform/heap/Heap.h" 8 #include "platform/heap/Heap.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 WTF::Partitions::fastFree(s_gcInfoTable); 66 WTF::Partitions::fastFree(s_gcInfoTable);
67 s_gcInfoTable = nullptr; 67 s_gcInfoTable = nullptr;
68 } 68 }
69 69
70 #if DCHECK_IS_ON() 70 #if DCHECK_IS_ON()
71 void assertObjectHasGCInfo(const void* payload, size_t gcInfoIndex) { 71 void assertObjectHasGCInfo(const void* payload, size_t gcInfoIndex) {
72 ASSERT(HeapObjectHeader::fromPayload(payload)->checkHeader()); 72 ASSERT(HeapObjectHeader::fromPayload(payload)->checkHeader());
73 #if !defined(COMPONENT_BUILD) 73 #if !defined(COMPONENT_BUILD)
74 // On component builds we cannot compare the gcInfos as they are statically 74 // On component builds we cannot compare the gcInfos as they are statically
75 // defined in each of the components and hence will not match. 75 // defined in each of the components and hence will not match.
76 BasePage* page = pageFromObject(payload);
77 ASSERT(!page->orphaned());
78 ASSERT(HeapObjectHeader::fromPayload(payload)->gcInfoIndex() == gcInfoIndex); 76 ASSERT(HeapObjectHeader::fromPayload(payload)->gcInfoIndex() == gcInfoIndex);
79 #endif 77 #endif
80 } 78 }
81 #endif 79 #endif
82 80
83 } // namespace blink 81 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/Heap.h » ('j') | third_party/WebKit/Source/platform/heap/PagePool.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698