heap-object-header.cc 1.44 KB
Newer Older
1 2 3 4 5 6
// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/heap/cppgc/heap-object-header.h"

7
#include "include/cppgc/internal/api-constants.h"
8
#include "src/base/macros.h"
9
#include "src/heap/cppgc/gc-info-table.h"
10 11
#include "src/heap/cppgc/heap-page.h"
#include "src/heap/cppgc/sanitizers.h"
12 13 14 15

namespace cppgc {
namespace internal {

16 17
STATIC_ASSERT((kAllocationGranularity % sizeof(HeapObjectHeader)) == 0);

18 19 20 21 22 23 24
void HeapObjectHeader::CheckApiConstants() {
  STATIC_ASSERT(api_constants::kFullyConstructedBitMask ==
                FullyConstructedField::kMask);
  STATIC_ASSERT(api_constants::kFullyConstructedBitFieldOffsetFromPayload ==
                (sizeof(encoded_high_) + sizeof(encoded_low_)));
}

25
void HeapObjectHeader::Finalize() {
26 27 28 29 30 31 32
#ifdef V8_USE_ADDRESS_SANITIZER
  const size_t size =
      IsLargeObject()
          ? LargePage::From(BasePage::FromPayload(this))->ObjectSize()
          : ObjectSize();
  ASAN_UNPOISON_MEMORY_REGION(Payload(), size);
#endif  // V8_USE_ADDRESS_SANITIZER
33 34 35 36 37 38
  const GCInfo& gc_info = GlobalGCInfoTable::GCInfoFromIndex(GetGCInfoIndex());
  if (gc_info.finalize) {
    gc_info.finalize(Payload());
  }
}

39 40 41 42 43
HeapObjectName HeapObjectHeader::GetName() const {
  const GCInfo& gc_info = GlobalGCInfoTable::GCInfoFromIndex(GetGCInfoIndex());
  return gc_info.name(Payload());
}

44 45
}  // namespace internal
}  // namespace cppgc