| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |