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

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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/Heap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 RELEASE_ASSERT(!s_gcInfoTable); 61 RELEASE_ASSERT(!s_gcInfoTable);
62 resize(); 62 resize();
63 } 63 }
64 64
65 #if DCHECK_IS_ON() 65 #if DCHECK_IS_ON()
66 void assertObjectHasGCInfo(const void* payload, size_t gcInfoIndex) { 66 void assertObjectHasGCInfo(const void* payload, size_t gcInfoIndex) {
67 ASSERT(HeapObjectHeader::fromPayload(payload)->checkHeader()); 67 ASSERT(HeapObjectHeader::fromPayload(payload)->checkHeader());
68 #if !defined(COMPONENT_BUILD) 68 #if !defined(COMPONENT_BUILD)
69 // On component builds we cannot compare the gcInfos as they are statically 69 // On component builds we cannot compare the gcInfos as they are statically
70 // defined in each of the components and hence will not match. 70 // defined in each of the components and hence will not match.
71 BasePage* page = pageFromObject(payload);
72 ASSERT(!page->orphaned());
73 ASSERT(HeapObjectHeader::fromPayload(payload)->gcInfoIndex() == gcInfoIndex); 71 ASSERT(HeapObjectHeader::fromPayload(payload)->gcInfoIndex() == gcInfoIndex);
74 #endif 72 #endif
75 } 73 }
76 #endif 74 #endif
77 75
78 } // namespace blink 76 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/Heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698