%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// 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. #ifndef V8_HEAP_CPPGC_GLOBALS_H_ #define V8_HEAP_CPPGC_GLOBALS_H_ #include <stddef.h> #include <stdint.h> #include "include/cppgc/internal/gc-info.h" #include "src/base/build_config.h" namespace cppgc { namespace internal { using Address = uint8_t*; using ConstAddress = const uint8_t*; constexpr size_t kKB = 1024; constexpr size_t kMB = kKB * 1024; constexpr size_t kGB = kMB * 1024; // AccessMode used for choosing between atomic and non-atomic accesses. enum class AccessMode : uint8_t { kNonAtomic, kAtomic }; // See 6.7.6 (http://eel.is/c++draft/basic.align) for alignment restrictions. We // do not fully support all alignment restrictions (following // alignof(std::max_align_t)) but limit to alignof(double). // // This means that any scalar type with stricter alignment requirements (in // practice: long double) cannot be used unrestricted in garbage-collected // objects. #if defined(V8_TARGET_ARCH_64_BIT) constexpr size_t kAllocationGranularity = 8; #else // !V8_TARGET_ARCH_64_BIT constexpr size_t kAllocationGranularity = 4; #endif // !V8_TARGET_ARCH_64_BIT constexpr size_t kAllocationMask = kAllocationGranularity - 1; constexpr size_t kPageSizeLog2 = 17; constexpr size_t kPageSize = 1 << kPageSizeLog2; constexpr size_t kPageOffsetMask = kPageSize - 1; constexpr size_t kPageBaseMask = ~kPageOffsetMask; // Guard pages are always put into memory. Whether they are actually protected // depends on the allocator provided to the garbage collector. constexpr size_t kGuardPageSize = 4096; constexpr size_t kLargeObjectSizeThreshold = kPageSize / 2; constexpr GCInfoIndex kFreeListGCInfoIndex = 0; constexpr size_t kFreeListEntrySize = 2 * sizeof(uintptr_t); constexpr size_t kCagedHeapReservationSize = static_cast<size_t>(4) * kGB; constexpr size_t kCagedHeapReservationAlignment = kCagedHeapReservationSize; } // namespace internal } // namespace cppgc #endif // V8_HEAP_CPPGC_GLOBALS_H_