Loading...
Searching...
No Matches
v8-internal.h
Go to the documentation of this file.
1// Copyright 2018 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef INCLUDE_V8_INTERNAL_H_
6#define INCLUDE_V8_INTERNAL_H_
7
8#include <stddef.h>
9#include <stdint.h>
10#include <string.h>
11
12#include <atomic>
13#include <compare>
14#include <concepts>
15#include <iterator>
16#include <limits>
17#include <memory>
18#include <optional>
19#include <type_traits>
20
21#include "v8config.h" // NOLINT(build/include_directory)
22
23namespace v8 {
24
25class Array;
26class Context;
27class Data;
28class Isolate;
29
30namespace internal {
31
32class Heap;
33class LocalHeap;
34class Isolate;
35class IsolateGroup;
36class LocalIsolate;
37
38typedef uintptr_t Address;
39static constexpr Address kNullAddress = 0;
40
41constexpr int KB = 1024;
42constexpr int MB = KB * 1024;
43constexpr int GB = MB * 1024;
44#ifdef V8_TARGET_ARCH_X64
45constexpr size_t TB = size_t{GB} * 1024;
46#endif
47
51const int kApiSystemPointerSize = sizeof(void*);
52const int kApiDoubleSize = sizeof(double);
53const int kApiInt32Size = sizeof(int32_t);
54const int kApiInt64Size = sizeof(int64_t);
55const int kApiSizetSize = sizeof(size_t);
56
57// Tag information for HeapObject.
58const int kHeapObjectTag = 1;
59const int kWeakHeapObjectTag = 3;
60const int kHeapObjectTagSize = 2;
61const intptr_t kHeapObjectTagMask = (1 << kHeapObjectTagSize) - 1;
63
64// Tag information for fowarding pointers stored in object headers.
65// 0b00 at the lowest 2 bits in the header indicates that the map word is a
66// forwarding pointer.
67const int kForwardingTag = 0;
68const int kForwardingTagSize = 2;
69const intptr_t kForwardingTagMask = (1 << kForwardingTagSize) - 1;
70
71// Tag information for Smi.
72const int kSmiTag = 0;
73const int kSmiTagSize = 1;
74const intptr_t kSmiTagMask = (1 << kSmiTagSize) - 1;
75
76template <size_t tagged_ptr_size>
78
79constexpr intptr_t kIntptrAllBitsSet = intptr_t{-1};
80constexpr uintptr_t kUintptrAllBitsSet =
81 static_cast<uintptr_t>(kIntptrAllBitsSet);
82
83// Smi constants for systems where tagged pointer is a 32-bit value.
84template <>
85struct SmiTagging<4> {
86 enum { kSmiShiftSize = 0, kSmiValueSize = 31 };
87
88 static constexpr intptr_t kSmiMinValue =
89 static_cast<intptr_t>(kUintptrAllBitsSet << (kSmiValueSize - 1));
90 static constexpr intptr_t kSmiMaxValue = -(kSmiMinValue + 1);
91
92 V8_INLINE static constexpr int SmiToInt(Address value) {
93 int shift_bits = kSmiTagSize + kSmiShiftSize;
94 // Truncate and shift down (requires >> to be sign extending).
95 return static_cast<int32_t>(static_cast<uint32_t>(value)) >> shift_bits;
96 }
97
98 template <class T, typename std::enable_if_t<std::is_integral_v<T> &&
99 std::is_signed_v<T>>* = nullptr>
100 V8_INLINE static constexpr bool IsValidSmi(T value) {
101 // Is value in range [kSmiMinValue, kSmiMaxValue].
102 // Use unsigned operations in order to avoid undefined behaviour in case of
103 // signed integer overflow.
104 return (static_cast<uintptr_t>(value) -
105 static_cast<uintptr_t>(kSmiMinValue)) <=
106 (static_cast<uintptr_t>(kSmiMaxValue) -
107 static_cast<uintptr_t>(kSmiMinValue));
108 }
109
110 template <class T,
111 typename std::enable_if_t<std::is_integral_v<T> &&
112 std::is_unsigned_v<T>>* = nullptr>
113 V8_INLINE static constexpr bool IsValidSmi(T value) {
114 static_assert(kSmiMaxValue <= std::numeric_limits<uintptr_t>::max());
115 return value <= static_cast<uintptr_t>(kSmiMaxValue);
116 }
117
118 // Same as the `intptr_t` version but works with int64_t on 32-bit builds
119 // without slowing down anything else.
120 V8_INLINE static constexpr bool IsValidSmi(int64_t value) {
121 return (static_cast<uint64_t>(value) -
122 static_cast<uint64_t>(kSmiMinValue)) <=
123 (static_cast<uint64_t>(kSmiMaxValue) -
124 static_cast<uint64_t>(kSmiMinValue));
125 }
126
127 V8_INLINE static constexpr bool IsValidSmi(uint64_t value) {
128 static_assert(kSmiMaxValue <= std::numeric_limits<uint64_t>::max());
129 return value <= static_cast<uint64_t>(kSmiMaxValue);
130 }
131};
132
133// Smi constants for systems where tagged pointer is a 64-bit value.
134template <>
135struct SmiTagging<8> {
136 enum { kSmiShiftSize = 31, kSmiValueSize = 32 };
137
138 static constexpr intptr_t kSmiMinValue =
139 static_cast<intptr_t>(kUintptrAllBitsSet << (kSmiValueSize - 1));
140 static constexpr intptr_t kSmiMaxValue = -(kSmiMinValue + 1);
141
142 V8_INLINE static constexpr int SmiToInt(Address value) {
143 int shift_bits = kSmiTagSize + kSmiShiftSize;
144 // Shift down and throw away top 32 bits.
145 return static_cast<int>(static_cast<intptr_t>(value) >> shift_bits);
146 }
147
148 template <class T, typename std::enable_if_t<std::is_integral_v<T> &&
149 std::is_signed_v<T>>* = nullptr>
150 V8_INLINE static constexpr bool IsValidSmi(T value) {
151 // To be representable as a long smi, the value must be a 32-bit integer.
152 return std::numeric_limits<int32_t>::min() <= value &&
153 value <= std::numeric_limits<int32_t>::max();
154 }
155
156 template <class T,
157 typename std::enable_if_t<std::is_integral_v<T> &&
158 std::is_unsigned_v<T>>* = nullptr>
159 V8_INLINE static constexpr bool IsValidSmi(T value) {
160 return value <= std::numeric_limits<int32_t>::max();
161 }
162};
163
164#ifdef V8_COMPRESS_POINTERS
165// See v8:7703 or src/common/ptr-compr-inl.h for details about pointer
166// compression.
167constexpr size_t kPtrComprCageReservationSize = size_t{1} << 32;
168constexpr size_t kPtrComprCageBaseAlignment = size_t{1} << 32;
169
170static_assert(
172 "Pointer compression can be enabled only for 64-bit architectures");
173const int kApiTaggedSize = kApiInt32Size;
174#else
176#endif
177
180}
181
182#ifdef V8_31BIT_SMIS_ON_64BIT_ARCH
183using PlatformSmiTagging = SmiTagging<kApiInt32Size>;
184#else
186#endif
187
188// TODO(ishell): Consinder adding kSmiShiftBits = kSmiShiftSize + kSmiTagSize
189// since it's used much more often than the inividual constants.
190const int kSmiShiftSize = PlatformSmiTagging::kSmiShiftSize;
191const int kSmiValueSize = PlatformSmiTagging::kSmiValueSize;
192const int kSmiMinValue = static_cast<int>(PlatformSmiTagging::kSmiMinValue);
193const int kSmiMaxValue = static_cast<int>(PlatformSmiTagging::kSmiMaxValue);
194constexpr bool SmiValuesAre31Bits() { return kSmiValueSize == 31; }
195constexpr bool SmiValuesAre32Bits() { return kSmiValueSize == 32; }
196constexpr bool Is64() { return kApiSystemPointerSize == sizeof(int64_t); }
197
198V8_INLINE static constexpr Address IntToSmi(int value) {
199 return (static_cast<Address>(value) << (kSmiTagSize + kSmiShiftSize)) |
200 kSmiTag;
201}
202
203/*
204 * Sandbox related types, constants, and functions.
205 */
206constexpr bool SandboxIsEnabled() {
207#ifdef V8_ENABLE_SANDBOX
208 return true;
209#else
210 return false;
211#endif
212}
213
214// SandboxedPointers are guaranteed to point into the sandbox. This is achieved
215// for example by storing them as offset rather than as raw pointers.
217
218#ifdef V8_ENABLE_SANDBOX
219
220// Size of the sandbox, excluding the guard regions surrounding it.
221#if defined(V8_TARGET_OS_ANDROID)
222// On Android, most 64-bit devices seem to be configured with only 39 bits of
223// virtual address space for userspace. As such, limit the sandbox to 128GB (a
224// quarter of the total available address space).
225constexpr size_t kSandboxSizeLog2 = 37; // 128 GB
226#elif defined(V8_TARGET_OS_IOS)
227// On iOS, we only get 64 GB of usable virtual address space even with the
228// "jumbo" extended virtual addressing entitlement. Limit the sandbox size to
229// 16 GB so that the base address + size for the emulated virtual address space
230// lies within the 64 GB total virtual address space.
231constexpr size_t kSandboxSizeLog2 = 34; // 16 GB
232#elif defined(V8_HOST_ARCH_RISCV64)
233// Most RISC-V hardware currently uses Sv39 (39-bit VA, 256GB userspace).
234// Limit the sandbox to 128GB (a quarter of Sv39 userspace) to avoid exceeding
235// the available virtual address space. Uses V8_HOST_ARCH so that simulator
236// builds on x64 are not unnecessarily constrained.
237constexpr size_t kSandboxSizeLog2 = 37; // 128 GB
238#else
239// Everywhere else use a 1TB sandbox.
240constexpr size_t kSandboxSizeLog2 = 40; // 1 TB
241#endif // V8_TARGET_OS_ANDROID
242constexpr size_t kSandboxSize = 1ULL << kSandboxSizeLog2;
243
244// Required alignment of the sandbox. For simplicity, we require the
245// size of the guard regions to be a multiple of this, so that this specifies
246// the alignment of the sandbox including and excluding surrounding guard
247// regions. The alignment requirement is due to the pointer compression cage
248// being located at the start of the sandbox.
249constexpr size_t kSandboxAlignment = kPtrComprCageBaseAlignment;
250
251// Sandboxed pointers are stored inside the heap as offset from the sandbox
252// base shifted to the left. This way, it is guaranteed that the offset is
253// smaller than the sandbox size after shifting it to the right again. This
254// constant specifies the shift amount.
255constexpr uint64_t kSandboxedPointerShift = 64 - kSandboxSizeLog2;
256
257// On OSes where reserving virtual memory is too expensive to reserve the
258// entire address space backing the sandbox, notably Windows pre 8.1, we create
259// a partially reserved sandbox that doesn't actually reserve most of the
260// memory, and so doesn't have the desired security properties as unrelated
261// memory allocations could end up inside of it, but which still ensures that
262// objects that should be located inside the sandbox are allocated within
263// kSandboxSize bytes from the start of the sandbox. The minimum size of the
264// region that is actually reserved for such a sandbox is specified by this
265// constant and should be big enough to contain the pointer compression cage as
266// well as the ArrayBuffer partition.
267constexpr size_t kSandboxMinimumReservationSize = 8ULL * GB;
268
269static_assert(kSandboxMinimumReservationSize > kPtrComprCageReservationSize,
270 "The minimum reservation size for a sandbox must be larger than "
271 "the pointer compression cage contained within it.");
272
273// The maximum buffer size allowed inside the sandbox. This is mostly dependent
274// on the size of the guard regions around the sandbox: an attacker must not be
275// able to construct a buffer that appears larger than the guard regions and
276// thereby "reach out of" the sandbox.
277constexpr size_t kMaxSafeBufferSizeForSandbox = 32ULL * GB - 1;
278
279constexpr size_t kBoundedSizeShift = 29;
280static_assert(1ULL << (64 - kBoundedSizeShift) ==
281 kMaxSafeBufferSizeForSandbox + 1,
282 "The maximum size of a BoundedSize must be synchronized with the "
283 "kMaxSafeBufferSizeForSandbox");
284constexpr size_t kBoundedSizeMask = (1ULL << (64 - kBoundedSizeShift)) - 1;
285
286// Size of the guard regions surrounding the sandbox. This assumes a worst-case
287// scenario of a 32-bit unsigned index used to access an array of 64-bit values
288// with an additional 32GB (bounded size) offset. In particular, accesses to
289// TypedArrays are effectively computed as
290// `entry_pointer = array->base + array->offset + index * array->element_size`.
291// See also https://crbug.com/40070746 for more details.
292constexpr size_t kSandboxGuardRegionSize =
293 32ULL * GB + (kMaxSafeBufferSizeForSandbox + 1);
294
295static_assert((kSandboxGuardRegionSize % kSandboxAlignment) == 0,
296 "The size of the guard regions around the sandbox must be a "
297 "multiple of its required alignment.");
298static_assert(kMaxSafeBufferSizeForSandbox <= kSandboxGuardRegionSize,
299 "The maximum allowed buffer size must not be larger than the "
300 "sandbox's guard regions");
301
302#if defined(V8_TARGET_OS_ANDROID)
303// On Android, we often won't have sufficient virtual address space available.
304constexpr size_t kAdditionalTrailingGuardRegionSize = 0;
305#else
306// Worst-case, we need 8 (max element size) * 32GB (max ArrayBuffer size) +
307// 32GB (additional bounded size offset for TypedArray access).
308constexpr size_t kAdditionalTrailingGuardRegionSize =
309 288ULL * GB - kSandboxGuardRegionSize;
310#endif
311
312constexpr bool kRequiresTypedArrayAccessMasks =
313 kAdditionalTrailingGuardRegionSize == 0;
314
315#endif // V8_ENABLE_SANDBOX
316
317#ifdef V8_COMPRESS_POINTERS
318
319#ifdef V8_TARGET_OS_ANDROID
320// The size of the virtual memory reservation for an external pointer table.
321// This determines the maximum number of entries in a table. Using a maximum
322// size allows omitting bounds checks on table accesses if the indices are
323// guaranteed (e.g. through shifting) to be below the maximum index. This
324// value must be a power of two.
325constexpr size_t kExternalPointerTableReservationSize = 256 * MB;
326
327// The external pointer table indices stored in HeapObjects as external
328// pointers are shifted to the left by this amount to guarantee that they are
329// smaller than the maximum table size even after the C++ compiler multiplies
330// them by 8 to be used as indexes into a table of 64 bit pointers.
331constexpr uint32_t kExternalPointerIndexShift = 7;
332#elif defined(V8_TARGET_OS_IOS)
333// iOS restricts large memory allocations, with 128 MB being the maximum size we
334// can configure. If we exceed this, SegmentedTable::Initialize will throw a V8
335// out-of-memory error when running the JetStream benchmark
336// (https://browserbench.org/JetStream/).
337constexpr size_t kExternalPointerTableReservationSize = 128 * MB;
338constexpr uint32_t kExternalPointerIndexShift = 8;
339#else
340constexpr size_t kExternalPointerTableReservationSize = 512 * MB;
341constexpr uint32_t kExternalPointerIndexShift = 6;
342#endif // V8_TARGET_OS_ANDROID
343
344// The byte size of an entry in an external pointer table.
345constexpr int kExternalPointerTableEntrySize = 8;
346constexpr int kExternalPointerTableEntrySizeLog2 = 3;
347// The maximum number of entries in an external pointer table.
348constexpr size_t kMaxExternalPointers =
349 kExternalPointerTableReservationSize / kExternalPointerTableEntrySize;
350static_assert((1 << (32 - kExternalPointerIndexShift)) == kMaxExternalPointers,
351 "kExternalPointerTableReservationSize and "
352 "kExternalPointerIndexShift don't match");
353
354#else // !V8_COMPRESS_POINTERS
355
356// Needed for the V8.SandboxedExternalPointersCount histogram.
357constexpr size_t kMaxExternalPointers = 0;
358
359#endif // V8_COMPRESS_POINTERS
360
361constexpr uint64_t kExternalPointerMarkBit = 1ULL << 48;
362constexpr uint64_t kExternalPointerTagShift = 49;
363constexpr uint64_t kExternalPointerTagMask = 0x00fe000000000000ULL;
368constexpr uint64_t kExternalPointerTagAndMarkbitMask = 0x00ff000000000000ULL;
369constexpr uint64_t kExternalPointerPayloadMask = 0xff00ffffffffffffULL;
370
371// A ExternalPointerHandle represents a (opaque) reference to an external
372// pointer that can be stored inside the sandbox. A ExternalPointerHandle has
373// meaning only in combination with an (active) Isolate as it references an
374// external pointer stored in the currently active Isolate's
375// ExternalPointerTable. Internally, an ExternalPointerHandles is simply an
376// index into an ExternalPointerTable that is shifted to the left to guarantee
377// that it is smaller than the size of the table.
378using ExternalPointerHandle = uint32_t;
379
380// ExternalPointers point to objects located outside the sandbox. When the V8
381// sandbox is enabled, these are stored on heap as ExternalPointerHandles,
382// otherwise they are simply raw pointers.
383#ifdef V8_ENABLE_SANDBOX
385#else
387#endif
388
391
392// See `ExternalPointerHandle` for the main documentation. The difference to
393// `ExternalPointerHandle` is that the handle does not represent an arbitrary
394// external pointer but always refers to an object managed by `CppHeap`. The
395// handles are using in combination with a dedicated table for `CppHeap`
396// references.
397using CppHeapPointerHandle = uint32_t;
398
399// The actual pointer to objects located on the `CppHeap`. When pointer
400// compression is enabled these pointers are stored as `CppHeapPointerHandle`.
401// In non-compressed configurations the pointers are simply stored as raw
402// pointers.
403#ifdef V8_COMPRESS_POINTERS
405#else
407#endif
408
411
412constexpr uint64_t kCppHeapPointerMarkBit = 1ULL;
413constexpr uint64_t kCppHeapPointerTagShift = 1;
414constexpr uint64_t kCppHeapPointerPayloadShift = 16;
415
416#ifdef V8_COMPRESS_POINTERS
417// CppHeapPointers use a dedicated pointer table. These constants control the
418// size and layout of the table. See the corresponding constants for the
419// external pointer table for further details.
420constexpr size_t kCppHeapPointerTableReservationSize =
421 kExternalPointerTableReservationSize;
422constexpr uint32_t kCppHeapPointerIndexShift = kExternalPointerIndexShift;
423
424constexpr int kCppHeapPointerTableEntrySize = 8;
425constexpr int kCppHeapPointerTableEntrySizeLog2 = 3;
426constexpr size_t kMaxCppHeapPointers =
427 kCppHeapPointerTableReservationSize / kCppHeapPointerTableEntrySize;
428static_assert((1 << (32 - kCppHeapPointerIndexShift)) == kMaxCppHeapPointers,
429 "kCppHeapPointerTableReservationSize and "
430 "kCppHeapPointerIndexShift don't match");
431
432#else // !V8_COMPRESS_POINTERS
433
434// Needed for the V8.SandboxedCppHeapPointersCount histogram.
435constexpr size_t kMaxCppHeapPointers = 0;
436
437#endif // V8_COMPRESS_POINTERS
438
439// The number of tags reserved for embedder data stored in internal fields. The
440// value is picked arbitrarily, and is slightly larger than the number of tags
441// currently used in Chrome.
442#define V8_EMBEDDER_DATA_TAG_COUNT 15
443
444// The number of tags reserved for pointers stored in v8::External. The value is
445// picked arbitrarily, and is slightly larger than the number of tags currently
446// used in Chrome.
447#define V8_EXTERNAL_POINTER_TAG_COUNT 40
448
449// Generic tag range struct to represent ranges of type tags.
450//
451// When referencing external objects via pointer tables, type tags are
452// frequently necessary to guarantee type safety for the external objects. When
453// support for subtyping is necessary, range-based type checks are used in
454// which all subtypes of a given supertype use contiguous tags. This struct can
455// then be used to represent such a type range.
456//
457// As an example, consider the following type hierarchy:
458//
459// A F
460// / \
461// B E
462// / \
463// C D
464//
465// A potential type id assignment for range-based type checks is
466// {A: 0, B: 1, C: 2, D: 3, E: 4, F: 5}. With that, the type check for type A
467// would check for the range [A, E], while the check for B would check range
468// [B, D], and for F it would simply check [F, F].
469//
470// In addition, there is an option for performance tweaks: if the size of the
471// type range corresponding to a supertype is a power of two and starts at a
472// power of two (e.g. [0x100, 0x13f]), then the compiler can often optimize
473// the type check to use even fewer instructions (essentially replace a AND +
474// SUB with a single AND).
475//
476// Tag ranges can also to a limited degree be used for union types. For
477// example, with the type graph as above, it would be possible to specify a
478// Union(D, E, F) as the tag range [D, F]. However, this only works as long as
479// the (otherwise independent) types that form the union have adjacent tags.
480//
481//
482// There are broadly speaking two options for performing the type check when
483// given the expected type range and the actual tag of the entry.
484//
485// The first option is to simply have the equivalent of
486//
487// CHECK(expected_tag_range.Contains(actual_tag))
488//
489// This is nice and simple, and friendly to both the branch-predictor and the
490// user/developer as it produces clear error messages. However, this approach
491// may result in quite a bit of code being generated, for example for calling
492// RuntimeAbort from generated code or similar.
493//
494// The second option is to generate code such as
495//
496// if (!expected_tag_range.Contains(actual_tag)) return nullptr;
497//
498// With this, we are also guaranteed to crash safely when the returned pointer
499// is used, but this may result in significantly less code being generated, for
500// example because the compiler can implement this with a single conditional
501// select in combination with the zero register (e.g. on Arm).
502//
503// The choice of which approach to use therefore depends on the use case, the
504// performance and code size constraints, and the importance of debuggability.
505template <typename Tag>
506struct TagRange {
507 static_assert(std::is_enum_v<Tag> &&
508 std::is_same_v<std::underlying_type_t<Tag>, uint16_t>,
509 "Tag parameter must be an enum with base type uint16_t");
510
511 // Construct the inclusive tag range [first, last].
512 constexpr TagRange(Tag first, Tag last) : first(first), last(last) {
513#ifdef V8_ENABLE_CHECKS
514 // This would typically be a DCHECK, but that's not available here.
515 if (first > last) __builtin_unreachable(); // Invalid tag range.
516#endif
517 }
518
519 // Construct a tag range consisting of a single tag.
520 //
521 // A single tag is always implicitly convertible to a tag range. This greatly
522 // increases readability as most of the time, the exact tag of a field is
523 // known and so no tag range needs to explicitly be created for it.
524 constexpr TagRange(Tag tag) // NOLINT(runtime/explicit)
525 : first(tag), last(tag) {}
526
527 // Construct an empty tag range.
528 constexpr TagRange() : TagRange(static_cast<Tag>(0)) {}
529
530 // A tag range is considered empty if it only contains the null tag.
531 constexpr bool IsEmpty() const { return first == 0 && last == 0; }
532
533 constexpr size_t Size() const {
534 if (IsEmpty()) {
535 return 0;
536 } else {
537 return last - first + 1;
538 }
539 }
540
541 constexpr bool Contains(Tag tag) const {
542 // Need to perform the math with uint32_t. Otherwise, the uint16_ts would
543 // be promoted to (signed) int, allowing the compiler to (wrongly) assume
544 // that an underflow cannot happen as that would be undefined behavior.
545 return static_cast<uint32_t>(tag) - static_cast<uint32_t>(first) <=
546 static_cast<uint32_t>(last) - static_cast<uint32_t>(first);
547 }
548
549 constexpr bool Contains(TagRange tag_range) const {
550 return tag_range.first >= first && tag_range.last <= last;
551 }
552
553 constexpr bool operator==(const TagRange other) const {
554 return first == other.first && last == other.last;
555 }
556
557 constexpr size_t hash_value() const {
558 static_assert(std::is_same_v<std::underlying_type_t<Tag>, uint16_t>);
559 return (static_cast<size_t>(first) << 16) | last;
560 }
561
562 // Internally we represent tag ranges as closed ranges [first, last].
563 Tag first;
564 Tag last;
565};
566
567#define SHARED_MANAGED_TAG_LIST(V) V(WasmFutexManagedObjectWaitListTag)
568
569#define MANAGED_TAG_LIST(V) \
570 SHARED_MANAGED_TAG_LIST(V) \
571 V(GenericManagedTag) \
572 V(WasmWasmStreamingTag) \
573 V(WasmFuncDataTag) \
574 V(WasmManagedDataTag) \
575 V(WasmNativeModuleTag) \
576 V(BackingStoreTag) \
577 V(CFunctionWithSignatureTag) \
578 V(IcuBreakIteratorTag) \
579 V(IcuListFormatterTag) \
580 V(IcuLocaleTag) \
581 V(IcuSimpleDateFormatTag) \
582 V(IcuDateIntervalFormatTag) \
583 V(IcuRelativeDateTimeFormatterTag) \
584 V(IcuLocalizedNumberFormatterTag) \
585 V(IcuPluralRulesTag) \
586 V(IcuCollatorTag) \
587 V(IcuBreakIteratorWithTextTag) \
588 V(TemporalDurationTag) \
589 V(TemporalInstantTag) \
590 V(TemporalPlainDateTag) \
591 V(TemporalPlainTimeTag) \
592 V(TemporalPlainDateTimeTag) \
593 V(TemporalPlainYearMonthTag) \
594 V(TemporalPlainMonthDayTag) \
595 V(TemporalZonedDateTimeTag) \
596 V(DisplayNamesInternalTag) \
597 V(D8WorkerTag) \
598 V(D8ModuleEmbedderDataTag)
599
600#define FOREIGN_TAG_LIST(V) \
601 V(GenericForeignTag) \
602 V(ApiAccessCheckCallbackTag) \
603 V(ApiAbortScriptExecutionCallbackTag) \
604 V(SyntheticModuleTag) \
605 V(MicrotaskCallbackTag) \
606 V(MicrotaskCallbackDataTag) \
607 V(MessageListenerTag) \
608 V(WaiterQueueForeignTag) \
609 /* Needs to stay last to form a range for resources. */ \
610 MANAGED_TAG_LIST(V)
611
612//
613// External Pointers.
614//
615// When the sandbox is enabled, external pointers are stored in an external
616// pointer table and are referenced from HeapObjects through an index (a
617// "handle"). When stored in the table, the pointers are tagged with per-type
618// tags to prevent type confusion attacks between different external objects.
619//
620// When loading an external pointer, a range of allowed tags can be specified.
621// This way, type hierarchies can be supported. The main requirement for that
622// is that all (transitive) child classes of a given parent class have type ids
623// in the same range, and that there are no unrelated types in that range. For
624// more details about how to assign type tags to types, see the TagRange class.
625//
626// The external pointer sandboxing mechanism ensures that every access to an
627// external pointer field will result in a valid pointer of the expected type
628// even in the presence of an attacker able to corrupt memory inside the
629// sandbox. However, if any data related to the external object is stored
630// inside the sandbox it may still be corrupted and so must be validated before
631// use or moved into the external object. Further, an attacker will always be
632// able to substitute different external pointers of the same type for each
633// other. Therefore, code using external pointers must be written in a
634// "substitution-safe" way, i.e. it must always be possible to substitute
635// external pointers of the same type without causing memory corruption outside
636// of the sandbox. Generally this is achieved by referencing any group of
637// related external objects through a single external pointer.
638//
639// Currently we use bit 62 for the marking bit which should always be unused as
640// it's part of the non-canonical address range. When Arm's top-byte ignore
641// (TBI) is enabled, this bit will be part of the ignored byte, and we assume
642// that the Embedder is not using this byte (really only this one bit) for any
643// other purpose. This bit also does not collide with the memory tagging
644// extension (MTE) which would use bits [56, 60).
645//
646// External pointer tables are also available even when the sandbox is off but
647// pointer compression is on. In that case, the mechanism can be used to ease
648// alignment requirements as it turns unaligned 64-bit raw pointers into
649// aligned 32-bit indices. To "opt-in" to the external pointer table mechanism
650// for this purpose, instead of using the ExternalPointer accessors one needs to
651// use ExternalPointerHandles directly and use them to access the pointers in an
652// ExternalPointerTable.
653//
654// The tag is currently in practice limited to 15 bits since it needs to fit
655// together with a marking bit into the unused parts of a pointer.
656enum ExternalPointerTag : uint16_t {
659
660 // When adding new tags, please ensure that the code using these tags is
661 // "substitution-safe", i.e. still operate safely if external pointers of the
662 // same type are swapped by an attacker. See comment above for more details.
663
664 // Shared external pointers are owned by the shared Isolate and stored in the
665 // shared external pointer table associated with that Isolate, where they can
666 // be accessed from multiple threads at the same time. The objects referenced
667 // in this way must therefore always be thread-safe.
673
674 // External pointers using these tags are kept in a per-Isolate external
675 // pointer table and can only be accessed when this Isolate is active.
677
678 // Placeholders for embedder data.
681
682 // Placeholders for pointers store in v8::External.
686 // This tag is used when a fast-api callback as a parameter of type
687 // `kPointer`. The V8 fast API is only able to use this generic tag, and is
688 // therefore not supposed to be used in Chrome.
694
695 // InterceptorInfo external pointers.
714
716
718
719#define AS_ENUM(name) k##name,
721
722#undef AS_ENUM
723
724 // External resources whose lifetime is tied to their entry in the
725 // external pointer table but which are not referenced via a Managed
732 // The tags are limited to 7 bits, so the last tag is 0x7f.
735
736constexpr const char* ToString(ExternalPointerTag tag) {
737 switch (tag) {
738#define ENUM_CASE(name) \
739 case ExternalPointerTag::k##name: \
740 return #name;
741
743
744#undef ENUM_CASE
745 default:
746 return "Unknown tag";
747 }
749
750using ExternalPointerTagRange = TagRange<ExternalPointerTag>;
751
752#define AS_LIST(name) ExternalPointerTag::k##name,
753
754#define GET_FIRST(LIST) \
755 []() { \
756 ExternalPointerTag items[] = {LIST(AS_LIST)}; \
757 return items[0]; \
758 }()
759
760#define GET_LAST(LIST) \
761 []() { \
762 ExternalPointerTag items[] = {LIST(AS_LIST)}; \
763 return items[(sizeof(items) / sizeof(items[0])) - 1]; \
764 }()
768
778
785
792// kLastManagedResourceTag defined in the enum.
795
803
804#undef AS_LIST
805#undef GET_FIRST
806#undef GET_LAST
807
808// True if the external pointer must be accessed from the shared isolate's
809// external pointer table.
810V8_INLINE static constexpr bool IsSharedExternalPointerType(
811 ExternalPointerTagRange tag_range) {
812 // This range should only be used together with
813 // kAnySharedManagedExternalPointerTagRange in this predicate. Therefore
814 // it is defined in this scope.
815 constexpr ExternalPointerTagRange kAnySharedExternalPointerTagRange(
817 return kAnySharedExternalPointerTagRange.Contains(tag_range) ||
819}
820
821// True if the external pointer may live in a read-only object, in which case
822// the table entry will be in the shared read-only segment of the external
823// pointer table.
824V8_INLINE static constexpr bool IsMaybeReadOnlyExternalPointerType(
825 ExternalPointerTagRange tag_range) {
827}
828
829// True if the external pointer references an external object whose lifetime is
830// tied to the entry in the external pointer table.
831// In this case, the entry in the ExternalPointerTable always points to an
832// object derived from ExternalPointerTable::ManagedResource.
833V8_INLINE static constexpr bool IsManagedExternalPointerType(
834 ExternalPointerTagRange tag_range) {
836}
837
838// When an external poiner field can contain the null external pointer handle,
839// the type checking mechanism needs to also check for null.
840// TODO(saelo): this is mostly a temporary workaround to introduce range-based
841// type checks. In the future, we should either (a) change the type tagging
842// scheme so that null always passes or (b) (more likely) introduce dedicated
843// null entries for those tags that need them (similar to other well-known
844// empty value constants such as the empty fixed array).
845V8_INLINE static constexpr bool ExternalPointerCanBeEmpty(
846 ExternalPointerTagRange tag_range) {
847 return tag_range.Contains(kArrayBufferExtensionTag) ||
848 (tag_range.first <= kLastEmbedderDataTag &&
849 kFirstEmbedderDataTag <= tag_range.last) ||
851}
852
853// Indirect Pointers.
854//
855// When the sandbox is enabled, indirect pointers are used to reference
856// HeapObjects that live outside of the sandbox (but are still managed by V8's
857// garbage collector). When object A references an object B through an indirect
858// pointer, object A will contain a IndirectPointerHandle, i.e. a shifted
859// 32-bit index, which identifies an entry in a pointer table (either the
860// trusted pointer table for TrustedObjects, or the code pointer table if it is
861// a Code object). This table entry then contains the actual pointer to object
862// B. Further, object B owns this pointer table entry, and it is responsible
863// for updating the "self-pointer" in the entry when it is relocated in memory.
864// This way, in contrast to "normal" pointers, indirect pointers never need to
865// be tracked by the GC (i.e. there is no remembered set for them).
866// These pointers do not exist when the sandbox is disabled.
867
868// An IndirectPointerHandle represents a 32-bit index into a pointer table.
869using IndirectPointerHandle = uint32_t;
870
871// A null handle always references an entry that contains nullptr.
873
874// When the sandbox is enabled, indirect pointers are used to implement:
875// - TrustedPointers: an indirect pointer using the trusted pointer table (TPT)
876// and referencing a TrustedObject in one of the trusted heap spaces.
877// - CodePointers, an indirect pointer using the code pointer table (CPT) and
878// referencing a Code object together with its instruction stream.
879
880//
881// Trusted Pointers.
882//
883// A pointer to a TrustedObject.
884// When the sandbox is enabled, these are indirect pointers using the trusted
885// pointer table (TPT). They are used to reference trusted objects (located in
886// one of V8's trusted heap spaces, outside of the sandbox) from inside the
887// sandbox in a memory-safe way. When the sandbox is disabled, these are
888// regular tagged pointers.
891// The size of the virtual memory reservation for the trusted pointer table.
892// As with the external pointer table, a maximum table size in combination with
893// shifted indices allows omitting bounds checks.
895
896// The trusted pointer handles are stored shifted to the left by this amount
897// to guarantee that they are smaller than the maximum table size.
898constexpr uint32_t kTrustedPointerHandleShift = 9;
899
900// A null handle always references an entry that contains nullptr.
903
904// The byte size of an entry in the trusted pointer table.
905constexpr int kTrustedPointerTableEntrySize = 8;
906constexpr int kTrustedPointerTableEntrySizeLog2 = 3;
907// The maximum number of entries in the trusted pointer table.
908constexpr size_t kMaxTrustedPointers =
910static_assert((1 << (32 - kTrustedPointerHandleShift)) == kMaxTrustedPointers,
911 "kTrustedPointerTableReservationSize and "
912 "kTrustedPointerHandleShift don't match");
913
914//
915// Code Pointers.
916//
917// A pointer to a Code object.
918// Essentially a specialized version of a trusted pointer that (when the
919// sandbox is enabled) uses the code pointer table (CPT) instead of the TPT.
920// Each entry in the CPT contains both a pointer to a Code object as well as a
921// pointer to the Code's entrypoint. This allows calling/jumping into Code with
922// one fewer memory access (compared to the case where the entrypoint pointer
923// first needs to be loaded from the Code object). As such, a CodePointerHandle
924// can be used both to obtain the referenced Code object and to directly load
925// its entrypoint.
926//
927// When the sandbox is disabled, these are regular tagged pointers.
928//
929// TODO(498510170): Removing these explicit code pointer handles is work in
930// progress.
933// The size of the virtual memory reservation for the code pointer table.
934// As with the other tables, a maximum table size in combination with shifted
935// indices allows omitting bounds checks.
936constexpr size_t kCodePointerTableReservationSize = 128 * MB;
937
938// Code pointer handles are shifted by a different amount than indirect pointer
939// handles as the tables have a different maximum size.
940constexpr uint32_t kCodePointerHandleShift = 8;
941
942// A null handle always references an entry that contains nullptr.
944
945// It can sometimes be necessary to distinguish a code pointer handle from a
946// trusted pointer handle. A typical example would be a union trusted pointer
947// field that can refer to both Code objects and other trusted objects. To
948// support these use-cases, we use a simple marking scheme where some of the
949// low bits of a code pointer handle are set, while they will be unset on a
950// trusted pointer handle. This way, the correct table to resolve the handle
951// can be determined even in the absence of a type tag.
952constexpr uint32_t kCodePointerHandleMarker = 0x1;
953static_assert(kCodePointerHandleShift > 0);
954static_assert(kTrustedPointerHandleShift > 0);
955
956// The byte size of an entry in a code pointer table.
957constexpr int kCodePointerTableEntrySize = 8;
958constexpr int kCodePointerTableEntrySizeLog2 = 3;
959// The maximum number of entries in a code pointer table.
960constexpr size_t kMaxCodePointers =
962static_assert(
964 "kCodePointerTableReservationSize and kCodePointerHandleShift don't match");
965
968// Constants that can be used to mark places that should be modified once
969// certain types of objects are moved out of the sandbox and into trusted space.
971constexpr bool kBuiltinCodeObjectsLiveInTrustedSpace = false;
975
976// {obj} must be the raw tagged pointer representation of a HeapObject
977// that's guaranteed to never be in ReadOnlySpace.
979 "Use GetCurrentIsolate() instead, which is guaranteed to return the same "
980 "isolate since https://crrev.com/c/6458560.")
983// Returns if we need to throw when an error occurs. This infers the language
984// mode based on the current context and the closure. This returns true if the
985// language mode is strict.
986V8_EXPORT bool ShouldThrowOnError(internal::Isolate* isolate);
987
988struct HandleScopeData final {
989 static constexpr uint32_t kSizeInBytes =
992 Address* next;
993 Address* limit;
994 int level;
995 int sealed_level;
996
997 void Initialize() {
998 next = limit = nullptr;
999 sealed_level = level = 0;
1000 }
1001};
1002
1003static_assert(HandleScopeData::kSizeInBytes == sizeof(HandleScopeData));
1004
1010class Internals {
1011#ifdef V8_MAP_PACKING
1012 V8_INLINE static constexpr Address UnpackMapWord(Address mapword) {
1013 // TODO(wenyuzhao): Clear header metadata.
1014 return mapword ^ kMapWordXorMask;
1015 }
1016#endif
1018 public:
1019 // These values match non-compiler-dependent values defined within
1020 // the implementation of v8.
1021 static const int kHeapObjectMapOffset = 0;
1023 static const int kStringResourceOffset =
1024 1 * kApiTaggedSize + 2 * kApiInt32Size;
1025
1026 static const int kOddballKindOffset = 4 * kApiTaggedSize + kApiDoubleSize;
1027 static const int kJSObjectHeaderSize = 3 * kApiTaggedSize;
1028#ifdef V8_COMPRESS_POINTERS
1031#else // !V8_COMPRESS_POINTERS
1034#endif // !V8_COMPRESS_POINTERS
1035 static const int kFixedArrayHeaderSize = 2 * kApiTaggedSize;
1036 static const int kEmbedderDataArrayHeaderSize = 2 * kApiTaggedSize;
1038#ifdef V8_ENABLE_SANDBOX
1040#else
1042#endif
1044 static const int kStringRepresentationAndEncodingMask = 0x0f;
1045 static const int kStringEncodingMask = 0x8;
1046 static const int kExternalTwoByteRepresentationTag = 0x02;
1047 static const int kExternalOneByteRepresentationTag = 0x0a;
1049 // AccessorInfo::data and InterceptorInfo::data field.
1052 static const uint32_t kNumIsolateDataSlots = 4;
1054 static const int kNumberOfBooleanFlags = 6;
1055 static const int kErrorMessageParamSize = 1;
1056 static const int kTablesAlignmentPaddingSize = 1;
1059 static const int kBuiltinTier0TableSize = 7 * kApiSystemPointerSize;
1060 static const int kLinearAllocationAreaSize = 3 * kApiSystemPointerSize;
1061 static const int kThreadLocalTopSize = 29 * kApiSystemPointerSize;
1062 static const int kHandleScopeDataSize =
1065 // ExternalPointerTable and TrustedPointerTable layout guarantees.
1066 static const int kExternalEntityTableBasePointerOffset = 0;
1067 static const int kSegmentedTableSegmentPoolSize = 4;
1068 static const int kExternalEntityTableSize =
1071
1072 // IsolateData layout guarantees.
1073 static const int kIsolateCageBaseOffset = 0;
1074 static const int kIsolateStackGuardOffset =
1078 static const int kErrorMessageParamOffset =
1080 static const int kBuiltinTier0EntryTableOffset =
1083 static const int kBuiltinTier0TableOffset =
1085 static const int kNewAllocationInfoOffset =
1087 static const int kOldAllocationInfoOffset =
1089 static const int kLastYoungAllocationOffset =
1092 static const int kFastCCallAlignmentPaddingSize =
1095 static const int kIsolateFastCCallCallerPcOffset =
1106 static const int kIsolateHandleScopeDataOffset =
1108 static const int kIsolateEmbedderDataOffset =
1110#ifdef V8_COMPRESS_POINTERS
1111 static const int kIsolateExternalPointerTableOffset =
1113 static const int kIsolateSharedExternalPointerTableAddressOffset =
1114 kIsolateExternalPointerTableOffset + kExternalEntityTableSize;
1115 static const int kIsolateCppHeapPointerTableOffset =
1116 kIsolateSharedExternalPointerTableAddressOffset + kApiSystemPointerSize;
1117#ifdef V8_ENABLE_SANDBOX
1118 static const int kIsolateTrustedCageBaseOffset =
1119 kIsolateCppHeapPointerTableOffset + kExternalEntityTableSize;
1120 static const int kIsolateTrustedPointerTableOffset =
1121 kIsolateTrustedCageBaseOffset + kApiSystemPointerSize;
1122 static const int kIsolateSharedTrustedPointerTableAddressOffset =
1123 kIsolateTrustedPointerTableOffset + kExternalEntityTableSize;
1124 static const int kIsolateTrustedPointerPublishingScopeOffset =
1125 kIsolateSharedTrustedPointerTableAddressOffset + kApiSystemPointerSize;
1126 static const int kIsolateCodePointerTableBaseAddressOffset =
1127 kIsolateTrustedPointerPublishingScopeOffset + kApiSystemPointerSize;
1128 static const int kIsolateJSDispatchTableOffset =
1129 kIsolateCodePointerTableBaseAddressOffset + kApiSystemPointerSize;
1130#else
1132 kIsolateCppHeapPointerTableOffset + kExternalEntityTableSize;
1133#endif // V8_ENABLE_SANDBOX
1134#else
1135 static const int kIsolateJSDispatchTableOffset =
1137#endif // V8_COMPRESS_POINTERS
1146 static const int kCurrentMicrotaskNativeContextOffset =
1148 static const int kIsolateRootsOffset =
1151#if V8_TARGET_ARCH_PPC64
1152 static constexpr int kFrameCPSlotCount = 1;
1153#else
1154 static constexpr int kFrameCPSlotCount = 0;
1155#endif
1156
1157#if V8_TARGET_ARCH_ARM64
1158 // The padding required to keep SP 16-byte aligned.
1159 static constexpr int kSPAlignmentSlotCount = 1;
1160#else
1161 static constexpr int kSPAlignmentSlotCount = 0;
1162#endif
1164 static const int kFrameTypeApiCallExit = 18;
1165 static const int kFrameTypeApiConstructExit = 19;
1166 static const int kFrameTypeApiNamedAccessorExit = 20;
1168
1169 // Assert scopes
1170 static const int kDisallowGarbageCollectionAlign = alignof(uint32_t);
1171 static const int kDisallowGarbageCollectionSize = sizeof(uint32_t);
1172
1173#if V8_STATIC_ROOTS_BOOL
1174
1175// These constants are copied from static-roots.h and guarded by static asserts.
1176#define EXPORTED_STATIC_ROOTS_PTR_LIST(V) \
1177 V(UndefinedValue, 0x11) \
1178 V(NullValue, 0x2d) \
1179 V(TrueValue, 0x71) \
1180 V(FalseValue, 0x55) \
1181 V(EmptyString, 0x49) \
1182 /* The Hole moves around depending on build flags, so define it */ \
1183 /* separately inside StaticReadOnlyRoot using build macros */ \
1184 V(TheHoleValue, kBuildDependentTheHoleValue)
1185
1186 using Tagged_t = uint32_t;
1187 struct StaticReadOnlyRoot {
1188#ifdef V8_ENABLE_WEBASSEMBLY
1189 static constexpr Tagged_t kBuildDependentTheHoleValue = 0x2fffd;
1190#else
1191 static constexpr Tagged_t kBuildDependentTheHoleValue = 0xfffd;
1192#endif
1193
1194#define DEF_ROOT(name, value) static constexpr Tagged_t k##name = value;
1195 EXPORTED_STATIC_ROOTS_PTR_LIST(DEF_ROOT)
1196#undef DEF_ROOT
1197
1198 // Use 0 for kStringMapLowerBound since string maps are the first maps.
1199 static constexpr Tagged_t kStringMapLowerBound = 0;
1200 static constexpr Tagged_t kStringMapUpperBound = 0x425;
1201
1202#define PLUSONE(...) +1
1203 static constexpr size_t kNumberOfExportedStaticRoots =
1204 2 + EXPORTED_STATIC_ROOTS_PTR_LIST(PLUSONE);
1205#undef PLUSONE
1208#endif // V8_STATIC_ROOTS_BOOL
1210 static const int kUndefinedValueRootIndex = 0;
1211 static const int kTheHoleValueRootIndex = 1;
1212 static const int kNullValueRootIndex = 2;
1213 static const int kTrueValueRootIndex = 3;
1214 static const int kFalseValueRootIndex = 4;
1215 static const int kEmptyStringRootIndex = 5;
1217 static const int kNodeClassIdOffset = 1 * kApiSystemPointerSize;
1218 static const int kNodeFlagsOffset = 1 * kApiSystemPointerSize + 3;
1219 static const int kNodeStateMask = 0x3;
1220 static const int kNodeStateIsWeakValue = 2;
1222 static const int kFirstNonstringType = 0x80;
1223 static const int kOddballType = 0x83;
1224 static const int kForeignType = 0xcc;
1225 static const int kJSSpecialApiObjectType = 0x410;
1226 static const int kJSObjectType = 0x421;
1227 static const int kFirstJSApiObjectType = 0x422;
1228 static const int kLastJSApiObjectType = 0x80A;
1229 // Defines a range [kFirstEmbedderJSApiObjectType, kJSApiObjectTypesCount]
1230 // of JSApiObject instance type values that an embedder can use.
1231 static const int kFirstEmbedderJSApiObjectType = 0;
1234
1235 static const int kUndefinedOddballKind = 4;
1236 static const int kNullOddballKind = 3;
1238 // Constants used by PropertyCallbackInfo to check if we should throw when an
1239 // error occurs.
1240 static const int kDontThrow = 0;
1241 static const int kThrowOnError = 1;
1242 static const int kInferShouldThrowMode = 2;
1243
1244 // Soft limit for AdjustAmountofExternalAllocatedMemory. Trigger an
1245 // incremental GC once the external memory reaches this limit.
1246 static constexpr size_t kExternalAllocationSoftLimit = 64 * 1024 * 1024;
1247
1248#ifdef V8_MAP_PACKING
1249 static const uintptr_t kMapWordMetadataMask = 0xffffULL << 48;
1250 // The lowest two bits of mapwords are always `0b10`
1251 static const uintptr_t kMapWordSignature = 0b10;
1252 // XORing a (non-compressed) map with this mask ensures that the two
1253 // low-order bits are 0b10. The 0 at the end makes this look like a Smi,
1254 // although real Smis have all lower 32 bits unset. We only rely on these
1255 // values passing as Smis in very few places.
1256 static const int kMapWordXorMask = 0b11;
1257#endif
1258
1259 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
1260 V8_INLINE static void CheckInitialized(v8::Isolate* isolate) {
1261#ifdef V8_ENABLE_CHECKS
1263#endif
1264 }
1265
1266 V8_INLINE static constexpr bool HasHeapObjectTag(Address value) {
1267 return (value & kHeapObjectTagMask) == static_cast<Address>(kHeapObjectTag);
1268 }
1269
1270 V8_INLINE static constexpr int SmiValue(Address value) {
1271 return PlatformSmiTagging::SmiToInt(value);
1272 }
1273
1274 V8_INLINE static constexpr Address AddressToSmi(Address value) {
1275 return (value << (kSmiTagSize + PlatformSmiTagging::kSmiShiftSize)) |
1276 kSmiTag;
1277 }
1278
1279 V8_INLINE static constexpr Address IntToSmi(int value) {
1280 return AddressToSmi(static_cast<Address>(value));
1282
1283 template <typename T,
1284 typename std::enable_if_t<std::is_integral_v<T>>* = nullptr>
1285 V8_INLINE static constexpr Address IntegralToSmi(T value) {
1286 return AddressToSmi(static_cast<Address>(value));
1288
1289 template <typename T,
1290 typename std::enable_if_t<std::is_integral_v<T>>* = nullptr>
1291 V8_INLINE static constexpr bool IsValidSmi(T value) {
1292 return PlatformSmiTagging::IsValidSmi(value);
1294
1295 template <typename T,
1296 typename std::enable_if_t<std::is_integral_v<T>>* = nullptr>
1297 static constexpr std::optional<Address> TryIntegralToSmi(T value) {
1298 if (V8_LIKELY(PlatformSmiTagging::IsValidSmi(value))) {
1299 return {AddressToSmi(static_cast<Address>(value))};
1300 }
1301 return {};
1302 }
1303
1304#if V8_STATIC_ROOTS_BOOL
1305 V8_INLINE static bool is_identical(Address obj, Tagged_t constant) {
1306 return static_cast<Tagged_t>(obj) == constant;
1307 }
1308
1309 V8_INLINE static bool CheckInstanceMapRange(Address obj, Tagged_t first_map,
1310 Tagged_t last_map) {
1311 auto map = ReadRawField<Tagged_t>(obj, kHeapObjectMapOffset);
1312#ifdef V8_MAP_PACKING
1313 map = UnpackMapWord(map);
1314#endif
1315 return map >= first_map && map <= last_map;
1316 }
1317#endif
1318
1319 V8_INLINE static int GetInstanceType(Address obj) {
1321#ifdef V8_MAP_PACKING
1322 map = UnpackMapWord(map);
1323#endif
1324 return ReadRawField<uint16_t>(map, kMapInstanceTypeOffset);
1325 }
1326
1327 V8_INLINE static Address LoadMap(Address obj) {
1328 if (!HasHeapObjectTag(obj)) return kNullAddress;
1330#ifdef V8_MAP_PACKING
1331 map = UnpackMapWord(map);
1332#endif
1333 return map;
1334 }
1335
1338 }
1339
1340 V8_INLINE static bool IsExternalTwoByteString(int instance_type) {
1341 int representation = (instance_type & kStringRepresentationAndEncodingMask);
1342 return representation == kExternalTwoByteRepresentationTag;
1343 }
1344
1345 V8_INLINE static bool IsExternalOneByteString(int instance_type) {
1346 int representation = (instance_type & kStringRepresentationAndEncodingMask);
1347 return representation == kExternalOneByteRepresentationTag;
1348 }
1349
1350 V8_INLINE static constexpr bool CanHaveInternalField(int instance_type) {
1351 static_assert(kJSObjectType + 1 == kFirstJSApiObjectType);
1352 static_assert(kJSObjectType < kLastJSApiObjectType);
1354 // Check for IsJSObject() || IsJSSpecialApiObject() || IsJSApiObject()
1355 return instance_type == kJSSpecialApiObjectType ||
1356 // inlined version of base::IsInRange
1357 (static_cast<unsigned>(static_cast<unsigned>(instance_type) -
1358 static_cast<unsigned>(kJSObjectType)) <=
1359 static_cast<unsigned>(kLastJSApiObjectType - kJSObjectType));
1360 }
1361
1362 V8_INLINE static uint8_t GetNodeFlag(Address* obj, int shift) {
1363 uint8_t* addr = reinterpret_cast<uint8_t*>(obj) + kNodeFlagsOffset;
1364 return *addr & static_cast<uint8_t>(1U << shift);
1365 }
1366
1367 V8_INLINE static void UpdateNodeFlag(Address* obj, bool value, int shift) {
1368 uint8_t* addr = reinterpret_cast<uint8_t*>(obj) + kNodeFlagsOffset;
1369 uint8_t mask = static_cast<uint8_t>(1U << shift);
1370 *addr = static_cast<uint8_t>((*addr & ~mask) | (value << shift));
1371 }
1372
1373 V8_INLINE static uint8_t GetNodeState(Address* obj) {
1374 uint8_t* addr = reinterpret_cast<uint8_t*>(obj) + kNodeFlagsOffset;
1375 return *addr & kNodeStateMask;
1376 }
1377
1378 V8_INLINE static void UpdateNodeState(Address* obj, uint8_t value) {
1379 uint8_t* addr = reinterpret_cast<uint8_t*>(obj) + kNodeFlagsOffset;
1380 *addr = static_cast<uint8_t>((*addr & ~kNodeStateMask) | value);
1381 }
1382
1383 V8_INLINE static void SetEmbedderData(v8::Isolate* isolate, uint32_t slot,
1384 void* data) {
1385 Address addr = reinterpret_cast<Address>(isolate) +
1387 *reinterpret_cast<void**>(addr) = data;
1388 }
1389
1390 V8_INLINE static void* GetEmbedderData(const v8::Isolate* isolate,
1391 uint32_t slot) {
1392 Address addr = reinterpret_cast<Address>(isolate) +
1394 return *reinterpret_cast<void* const*>(addr);
1395 }
1396
1398 Address addr =
1399 reinterpret_cast<Address>(isolate) + kIsolateHandleScopeDataOffset;
1400 return reinterpret_cast<HandleScopeData*>(addr);
1401 }
1402
1404 Address addr =
1405 reinterpret_cast<Address>(isolate) + kIsolateLongTaskStatsCounterOffset;
1406 ++(*reinterpret_cast<size_t*>(addr));
1407 }
1408
1409 V8_INLINE static Address* GetRootSlot(v8::Isolate* isolate, int index) {
1410 Address addr = reinterpret_cast<Address>(isolate) + kIsolateRootsOffset +
1412 return reinterpret_cast<Address*>(addr);
1413 }
1414
1415 V8_INLINE static Address GetRoot(v8::Isolate* isolate, int index) {
1416#if V8_STATIC_ROOTS_BOOL
1417 Address base = *reinterpret_cast<Address*>(
1418 reinterpret_cast<uintptr_t>(isolate) + kIsolateCageBaseOffset);
1419 switch (index) {
1420#define DECOMPRESS_ROOT(name, ...) \
1421 case k##name##RootIndex: \
1422 return base + StaticReadOnlyRoot::k##name;
1423 EXPORTED_STATIC_ROOTS_PTR_LIST(DECOMPRESS_ROOT)
1424#undef DECOMPRESS_ROOT
1425#undef EXPORTED_STATIC_ROOTS_PTR_LIST
1426 default:
1427 break;
1428 }
1429#endif // V8_STATIC_ROOTS_BOOL
1430 return *GetRootSlot(isolate, index);
1431 }
1432
1433#ifdef V8_ENABLE_SANDBOX
1434 V8_INLINE static Address* GetExternalPointerTableBase(v8::Isolate* isolate) {
1435 Address addr = reinterpret_cast<Address>(isolate) +
1436 kIsolateExternalPointerTableOffset +
1438 return *reinterpret_cast<Address**>(addr);
1439 }
1440
1441 V8_INLINE static Address* GetSharedExternalPointerTableBase(
1442 v8::Isolate* isolate) {
1443 Address addr = reinterpret_cast<Address>(isolate) +
1444 kIsolateSharedExternalPointerTableAddressOffset;
1445 addr = *reinterpret_cast<Address*>(addr);
1447 return *reinterpret_cast<Address**>(addr);
1449#endif
1450
1451 template <typename T>
1452 V8_INLINE static T ReadRawField(Address heap_object_ptr, int offset) {
1453 Address addr = heap_object_ptr + offset - kHeapObjectTag;
1454#ifdef V8_COMPRESS_POINTERS
1455 if constexpr (sizeof(T) > kApiTaggedSize) {
1456 // TODO(ishell, v8:8875): When pointer compression is enabled 8-byte size
1457 // fields (external pointers, doubles and BigInt data) are only
1458 // kTaggedSize aligned so we have to use unaligned pointer friendly way of
1459 // accessing them in order to avoid undefined behavior in C++ code.
1460 T r;
1461 memcpy(&r, reinterpret_cast<void*>(addr), sizeof(T));
1462 return r;
1463 }
1464#endif
1465 return *reinterpret_cast<const T*>(addr);
1466 }
1467
1468 V8_INLINE static Address ReadTaggedPointerField(Address heap_object_ptr,
1469 int offset) {
1470#ifdef V8_COMPRESS_POINTERS
1471 uint32_t value = ReadRawField<uint32_t>(heap_object_ptr, offset);
1472 Address base = GetPtrComprCageBaseFromOnHeapAddress(heap_object_ptr);
1473 return base + static_cast<Address>(static_cast<uintptr_t>(value));
1474#else
1475 return ReadRawField<Address>(heap_object_ptr, offset);
1476#endif
1477 }
1478
1479 V8_INLINE static Address ReadTaggedSignedField(Address heap_object_ptr,
1480 int offset) {
1481#ifdef V8_COMPRESS_POINTERS
1482 uint32_t value = ReadRawField<uint32_t>(heap_object_ptr, offset);
1483 return static_cast<Address>(static_cast<uintptr_t>(value));
1484#else
1485 return ReadRawField<Address>(heap_object_ptr, offset);
1486#endif
1488
1489 // Returns v8::Isolate::Current(), but without needing to include the
1490 // v8-isolate.h header.
1492
1494#ifdef V8_ENABLE_SANDBOX
1495 return GetCurrentIsolate();
1496#else
1497 // Not used in non-sandbox mode.
1498 return nullptr;
1499#endif
1500 }
1501
1502 template <ExternalPointerTagRange tag_range>
1504 Address heap_object_ptr,
1505 int offset) {
1506#ifdef V8_ENABLE_SANDBOX
1507 static_assert(!tag_range.IsEmpty());
1508 // See src/sandbox/external-pointer-table.h. Logic duplicated here so
1509 // it can be inlined and doesn't require an additional call.
1510 Address* table = IsSharedExternalPointerType(tag_range)
1511 ? GetSharedExternalPointerTableBase(isolate)
1512 : GetExternalPointerTableBase(isolate);
1514 ReadRawField<ExternalPointerHandle>(heap_object_ptr, offset);
1515 uint32_t index = handle >> kExternalPointerIndexShift;
1516 std::atomic<Address>* ptr =
1517 reinterpret_cast<std::atomic<Address>*>(&table[index]);
1518 Address entry = std::atomic_load_explicit(ptr, std::memory_order_relaxed);
1519 ExternalPointerTag actual_tag = static_cast<ExternalPointerTag>(
1521 if (V8_LIKELY(tag_range.Contains(actual_tag))) {
1522 return entry & kExternalPointerPayloadMask;
1523 } else {
1524 return 0;
1525 }
1526 return entry;
1527#else
1528 return ReadRawField<Address>(heap_object_ptr, offset);
1529#endif // V8_ENABLE_SANDBOX
1530 }
1531
1533 v8::Isolate* isolate, Address heap_object_ptr, int offset,
1534 ExternalPointerTagRange tag_range) {
1535#ifdef V8_ENABLE_SANDBOX
1536 // See src/sandbox/external-pointer-table.h. Logic duplicated here so
1537 // it can be inlined and doesn't require an additional call.
1538 Address* table = IsSharedExternalPointerType(tag_range)
1539 ? GetSharedExternalPointerTableBase(isolate)
1540 : GetExternalPointerTableBase(isolate);
1542 ReadRawField<ExternalPointerHandle>(heap_object_ptr, offset);
1543 uint32_t index = handle >> kExternalPointerIndexShift;
1544 std::atomic<Address>* ptr =
1545 reinterpret_cast<std::atomic<Address>*>(&table[index]);
1546 Address entry = std::atomic_load_explicit(ptr, std::memory_order_relaxed);
1547 ExternalPointerTag actual_tag = static_cast<ExternalPointerTag>(
1549 if (V8_LIKELY(tag_range.Contains(actual_tag))) {
1550 return entry & kExternalPointerPayloadMask;
1551 } else {
1552 return 0;
1553 }
1554 return entry;
1555#else
1556 return ReadRawField<Address>(heap_object_ptr, offset);
1557#endif // V8_ENABLE_SANDBOX
1558 }
1559
1560#ifdef V8_COMPRESS_POINTERS
1561 V8_INLINE static Address GetPtrComprCageBaseFromOnHeapAddress(Address addr) {
1562 return addr & -static_cast<intptr_t>(kPtrComprCageBaseAlignment);
1563 }
1564
1565 V8_INLINE static uint32_t CompressTagged(Address value) {
1566 return static_cast<uint32_t>(value);
1567 }
1568
1569 V8_INLINE static Address DecompressTaggedField(Address heap_object_ptr,
1570 uint32_t value) {
1571 Address base = GetPtrComprCageBaseFromOnHeapAddress(heap_object_ptr);
1572 return base + static_cast<Address>(static_cast<uintptr_t>(value));
1573 }
1574
1575#endif // V8_COMPRESS_POINTERS
1576};
1578// Only perform cast check for types derived from v8::Data since
1579// other types do not implement the Cast method.
1580template <bool PerformCheck>
1581struct CastCheck {
1582 template <class T>
1583 static void Perform(T* data);
1585
1586template <>
1587template <class T>
1588void CastCheck<true>::Perform(T* data) {
1589 T::Cast(data);
1591
1592template <>
1593template <class T>
1594void CastCheck<false>::Perform(T* data) {}
1595
1596template <class T>
1597V8_INLINE void PerformCastCheck(T* data) {
1598 CastCheck<std::is_base_of_v<Data, T> &&
1599 !std::is_same_v<Data, std::remove_cv_t<T>>>::Perform(data);
1601
1602// A base class for backing stores, which is needed due to vagaries of
1603// how static casts work with std::shared_ptr.
1605
1606// The maximum value in enum GarbageCollectionReason, defined in heap.h.
1607// This is needed for histograms sampling garbage collection reasons.
1609
1610// Base class for the address block allocator compatible with standard
1611// containers, which registers its allocated range as strong roots.
1613 public:
1614 Heap* heap() const { return heap_; }
1616 constexpr bool operator==(const StrongRootAllocatorBase&) const = default;
1618 protected:
1619 explicit StrongRootAllocatorBase(Heap* heap) : heap_(heap) {}
1620 explicit StrongRootAllocatorBase(LocalHeap* heap);
1621 explicit StrongRootAllocatorBase(Isolate* isolate);
1623 explicit StrongRootAllocatorBase(LocalIsolate* isolate);
1624
1625 // Allocate/deallocate a range of n elements of type internal::Address.
1626 Address* allocate_impl(size_t n);
1627 void deallocate_impl(Address* p, size_t n) noexcept;
1628
1629 private:
1630 Heap* heap_;
1631};
1632
1633// The general version of this template behaves just as std::allocator, with
1634// the exception that the constructor takes the isolate as parameter. Only
1635// specialized versions, e.g., internal::StrongRootAllocator<internal::Address>
1636// and internal::StrongRootAllocator<v8::Local<T>> register the allocated range
1637// as strong roots.
1638template <typename T>
1639class StrongRootAllocator : private std::allocator<T> {
1640 public:
1641 using value_type = T;
1643 template <typename HeapOrIsolateT>
1644 explicit StrongRootAllocator(HeapOrIsolateT*) {}
1645 template <typename U>
1646 StrongRootAllocator(const StrongRootAllocator<U>& other) noexcept {}
1647
1648 using std::allocator<T>::allocate;
1649 using std::allocator<T>::deallocate;
1650};
1651
1652template <typename Iterator>
1653concept HasIteratorConcept = requires { typename Iterator::iterator_concept; };
1654
1655template <typename Iterator>
1656concept HasIteratorCategory =
1657 requires { typename Iterator::iterator_category; };
1658
1659// Helper struct that contains an `iterator_concept` type alias only when either
1660// `Iterator` or `std::iterator_traits<Iterator>` do.
1661// Default: no alias.
1662template <typename Iterator>
1664// Use `Iterator::iterator_concept` if available.
1665template <HasIteratorConcept Iterator>
1666struct MaybeDefineIteratorConcept<Iterator> {
1667 using iterator_concept = typename Iterator::iterator_concept;
1668};
1669// Otherwise fall back to `std::iterator_traits<Iterator>` if possible.
1670template <typename Iterator>
1673 using iterator_concept =
1674 typename std::iterator_traits<Iterator>::iterator_concept;
1675};
1676
1677// A class of iterators that wrap some different iterator type.
1678// If specified, ElementType is the type of element accessed by the wrapper
1679// iterator; in this case, the actual reference and pointer types of Iterator
1680// must be convertible to ElementType& and ElementType*, respectively.
1681template <typename Iterator, typename ElementType = void>
1682class WrappedIterator : public MaybeDefineIteratorConcept<Iterator> {
1683 public:
1684 static_assert(
1685 std::is_void_v<ElementType> ||
1686 (std::is_convertible_v<typename std::iterator_traits<Iterator>::pointer,
1687 std::add_pointer_t<ElementType>> &&
1688 std::is_convertible_v<typename std::iterator_traits<Iterator>::reference,
1689 std::add_lvalue_reference_t<ElementType>>));
1690
1691 using difference_type =
1692 typename std::iterator_traits<Iterator>::difference_type;
1694 std::conditional_t<std::is_void_v<ElementType>,
1695 typename std::iterator_traits<Iterator>::value_type,
1696 ElementType>;
1697 using pointer =
1698 std::conditional_t<std::is_void_v<ElementType>,
1699 typename std::iterator_traits<Iterator>::pointer,
1700 std::add_pointer_t<ElementType>>;
1702 std::conditional_t<std::is_void_v<ElementType>,
1703 typename std::iterator_traits<Iterator>::reference,
1704 std::add_lvalue_reference_t<ElementType>>;
1706 typename std::iterator_traits<Iterator>::iterator_category;
1707
1708 constexpr WrappedIterator() noexcept = default;
1709 constexpr explicit WrappedIterator(Iterator it) noexcept : it_(it) {}
1710
1711 template <typename OtherIterator, typename OtherElementType>
1712 requires std::is_convertible_v<OtherIterator, Iterator>
1715 : it_(other.base()) {}
1716
1717 [[nodiscard]] constexpr reference operator*() const noexcept { return *it_; }
1718 [[nodiscard]] constexpr pointer operator->() const noexcept {
1719 if constexpr (std::is_pointer_v<Iterator>) {
1720 return it_;
1721 } else {
1722 return it_.operator->();
1724 }
1725
1726 template <typename OtherIterator, typename OtherElementType>
1727 [[nodiscard]] constexpr bool operator==(
1728 const WrappedIterator<OtherIterator, OtherElementType>& other)
1729 const noexcept {
1730 return it_ == other.base();
1731 }
1732
1733 template <typename OtherIterator, typename OtherElementType>
1734 [[nodiscard]] constexpr auto operator<=>(
1736 const noexcept {
1737 if constexpr (std::three_way_comparable_with<Iterator, OtherIterator>) {
1738 return it_ <=> other.base();
1739 } else if constexpr (std::totally_ordered_with<Iterator, OtherIterator>) {
1740 if (it_ < other.base()) {
1741 return std::strong_ordering::less;
1742 }
1743 return (it_ > other.base()) ? std::strong_ordering::greater
1744 : std::strong_ordering::equal;
1745 } else {
1746 if (it_ < other.base()) {
1747 return std::partial_ordering::less;
1748 }
1749 if (other.base() < it_) {
1750 return std::partial_ordering::greater;
1751 }
1752 return (it_ == other.base()) ? std::partial_ordering::equivalent
1753 : std::partial_ordering::unordered;
1754 }
1755 }
1756
1757 constexpr WrappedIterator& operator++() noexcept {
1758 ++it_;
1759 return *this;
1760 }
1761 constexpr WrappedIterator operator++(int) noexcept {
1762 WrappedIterator result(*this);
1763 ++(*this);
1764 return result;
1765 }
1766
1767 constexpr WrappedIterator& operator--() noexcept {
1768 --it_;
1769 return *this;
1770 }
1771 constexpr WrappedIterator operator--(int) noexcept {
1772 WrappedIterator result(*this);
1773 --(*this);
1774 return result;
1775 }
1776 [[nodiscard]] constexpr WrappedIterator operator+(
1777 difference_type n) const noexcept {
1778 WrappedIterator result(*this);
1779 result += n;
1780 return result;
1781 }
1782 [[nodiscard]] friend constexpr WrappedIterator operator+(
1783 difference_type n, const WrappedIterator& x) noexcept {
1784 return x + n;
1785 }
1787 it_ += n;
1788 return *this;
1789 }
1790 [[nodiscard]] constexpr WrappedIterator operator-(
1791 difference_type n) const noexcept {
1792 return *this + -n;
1793 }
1795 return *this += -n;
1796 }
1797 template <typename OtherIterator, typename OtherElementType>
1798 [[nodiscard]] constexpr auto operator-(
1800 const noexcept {
1801 return it_ - other.base();
1802 }
1803 [[nodiscard]] constexpr reference operator[](
1804 difference_type n) const noexcept {
1805 return it_[n];
1806 }
1807
1808 [[nodiscard]] constexpr const Iterator& base() const noexcept { return it_; }
1809
1810 private:
1811 Iterator it_;
1812};
1814// Helper functions about values contained in handles.
1815// A value is either an indirect pointer or a direct pointer, depending on
1816// whether direct local support is enabled.
1817class ValueHelper final {
1818 public:
1819 // ValueHelper::InternalRepresentationType is an abstract type that
1820 // corresponds to the internal representation of v8::Local and essentially
1821 // to what T* really is (these two are always in sync). This type is used in
1822 // methods like GetDataFromSnapshotOnce that need access to a handle's
1823 // internal representation. In particular, if `x` is a `v8::Local<T>`, then
1824 // `v8::Local<T>::FromRepr(x.repr())` gives exactly the same handle as `x`.
1825#ifdef V8_ENABLE_DIRECT_HANDLE
1826 static constexpr Address kTaggedNullAddress = 1;
1829 static constexpr InternalRepresentationType kEmpty = kTaggedNullAddress;
1830#else
1832 static constexpr InternalRepresentationType kEmpty = nullptr;
1833#endif // V8_ENABLE_DIRECT_HANDLE
1834
1835 template <typename T>
1836 V8_INLINE static bool IsEmpty(T* value) {
1837 return ValueAsRepr(value) == kEmpty;
1838 }
1839
1840 // Returns a handle's "value" for all kinds of abstract handles. For Local,
1841 // it is equivalent to `*handle`. The variadic parameters support handle
1842 // types with extra type parameters, like `Persistent<T, M>`.
1843 template <template <typename T, typename... Ms> typename H, typename T,
1844 typename... Ms>
1845 V8_INLINE static T* HandleAsValue(const H<T, Ms...>& handle) {
1846 return handle.template value<T>();
1847 }
1848
1849#ifdef V8_ENABLE_DIRECT_HANDLE
1850
1851 template <typename T>
1852 V8_INLINE static Address ValueAsAddress(const T* value) {
1853 return reinterpret_cast<Address>(value);
1854 }
1855
1856 template <typename T, bool check_null = true, typename S>
1857 V8_INLINE static T* SlotAsValue(S* slot) {
1858 if (check_null && slot == nullptr) {
1859 return reinterpret_cast<T*>(kTaggedNullAddress);
1860 }
1861 return *reinterpret_cast<T**>(slot);
1862 }
1863
1864 template <typename T>
1865 V8_INLINE static InternalRepresentationType ValueAsRepr(const T* value) {
1866 return reinterpret_cast<InternalRepresentationType>(value);
1867 }
1868
1869 template <typename T>
1871 return reinterpret_cast<T*>(repr);
1872 }
1874#else // !V8_ENABLE_DIRECT_HANDLE
1875
1876 template <typename T>
1877 V8_INLINE static Address ValueAsAddress(const T* value) {
1878 return *reinterpret_cast<const Address*>(value);
1879 }
1880
1881 template <typename T, bool check_null = true, typename S>
1882 V8_INLINE static T* SlotAsValue(S* slot) {
1883 return reinterpret_cast<T*>(slot);
1884 }
1885
1886 template <typename T>
1887 V8_INLINE static InternalRepresentationType ValueAsRepr(const T* value) {
1888 return const_cast<InternalRepresentationType>(
1889 reinterpret_cast<const Address*>(value));
1890 }
1891
1892 template <typename T>
1894 return reinterpret_cast<T*>(repr);
1895 }
1896
1897#endif // V8_ENABLE_DIRECT_HANDLE
1898};
1903class HandleHelper final {
1904 public:
1915 template <typename T1, typename T2>
1916 V8_INLINE static bool EqualHandles(const T1& lhs, const T2& rhs) {
1917 if (lhs.IsEmpty()) return rhs.IsEmpty();
1918 if (rhs.IsEmpty()) return false;
1919 return lhs.ptr() == rhs.ptr();
1920 }
1921};
1922
1923V8_EXPORT void VerifyHandleIsNonEmpty(bool is_empty);
1924
1925// These functions are here just to match friend declarations in
1926// XxxCallbackInfo classes allowing these functions to access the internals
1927// of the info objects. These functions are supposed to be called by debugger
1928// macros.
1929void PrintFunctionCallbackInfo(void* function_callback_info);
1930void PrintPropertyCallbackInfo(void* property_callback_info);
1931
1932} // namespace internal
1933} // namespace v8
1934
1935#endif // INCLUDE_V8_INTERNAL_H_
Definition: v8-isolate.h:291
Definition: v8-internal.h:1600
Definition: v8-internal.h:1899
static bool EqualHandles(const T1 &lhs, const T2 &rhs)
Definition: v8-internal.h:1912
static Address LoadMap(Address obj)
Definition: v8-internal.h:1323
static constexpr size_t kExternalAllocationSoftLimit
Definition: v8-internal.h:1242
static bool IsExternalTwoByteString(int instance_type)
Definition: v8-internal.h:1336
static const int kIsolateCageBaseOffset
Definition: v8-internal.h:1069
static const int kEmbedderDataArrayHeaderSize
Definition: v8-internal.h:1032
static const int kHeapObjectMapOffset
Definition: v8-internal.h:1017
static const int kEmbedderDataSlotSize
Definition: v8-internal.h:1033
static const int kIsolateApiCallbackThunkArgumentOffset
Definition: v8-internal.h:1134
static Address ReadExternalPointerField(v8::Isolate *isolate, Address heap_object_ptr, int offset)
Definition: v8-internal.h:1499
static const int kJSAPIObjectWithEmbedderSlotsHeaderSize
Definition: v8-internal.h:1028
static constexpr bool HasHeapObjectTag(Address value)
Definition: v8-internal.h:1262
static const int kOddballType
Definition: v8-internal.h:1219
static const int kInferShouldThrowMode
Definition: v8-internal.h:1238
static const int kNewAllocationInfoOffset
Definition: v8-internal.h:1081
static Address GetRoot(v8::Isolate *isolate, int index)
Definition: v8-internal.h:1411
static const int kStringEncodingMask
Definition: v8-internal.h:1041
static const int kIsolateFastCCallCallerPcOffset
Definition: v8-internal.h:1091
static uint8_t GetNodeFlag(Address *obj, int shift)
Definition: v8-internal.h:1358
static const int kIsolateThreadLocalTopOffset
Definition: v8-internal.h:1100
static const uint32_t kNumIsolateDataSlots
Definition: v8-internal.h:1048
static const int kForeignType
Definition: v8-internal.h:1220
static const int kFirstEmbedderJSApiObjectType
Definition: v8-internal.h:1227
static const int kNumberOfBooleanFlags
Definition: v8-internal.h:1050
static uint8_t GetNodeState(Address *obj)
Definition: v8-internal.h:1369
static const int kThreadLocalTopSize
Definition: v8-internal.h:1057
static const int kIsolateRootsOffset
Definition: v8-internal.h:1144
static const int kFrameTypeApiCallExit
Definition: v8-internal.h:1160
static const int kUndefinedOddballKind
Definition: v8-internal.h:1231
static const int kMapInstanceTypeOffset
Definition: v8-internal.h:1018
static constexpr Address AddressToSmi(Address value)
Definition: v8-internal.h:1270
static const int kIsolateStackGuardOffset
Definition: v8-internal.h:1070
static const int kLinearAllocationAreaSize
Definition: v8-internal.h:1056
static const int kFastCCallAlignmentPaddingSize
Definition: v8-internal.h:1088
static const int kDisallowGarbageCollectionAlign
Definition: v8-internal.h:1166
static const int kIsolateFastCCallCallerFpOffset
Definition: v8-internal.h:1094
static const int kErrorMessageParamSize
Definition: v8-internal.h:1051
static const int kSegmentedTableSegmentPoolSize
Definition: v8-internal.h:1063
static void CheckInitialized(v8::Isolate *isolate)
Definition: v8-internal.h:1256
static void UpdateNodeState(Address *obj, uint8_t value)
Definition: v8-internal.h:1374
static constexpr Address IntegralToSmi(T value)
Definition: v8-internal.h:1281
static constexpr bool IsValidSmi(T value)
Definition: v8-internal.h:1287
static const int kJSObjectType
Definition: v8-internal.h:1222
static const int kExternalEntityTableBasePointerOffset
Definition: v8-internal.h:1062
static const int kBuiltinTier0TableOffset
Definition: v8-internal.h:1079
static const int kIsolateLongTaskStatsCounterOffset
Definition: v8-internal.h:1098
static const int kNativeContextEmbedderDataOffset
Definition: v8-internal.h:1039
static const int kLastJSApiObjectType
Definition: v8-internal.h:1224
static constexpr bool CanHaveInternalField(int instance_type)
Definition: v8-internal.h:1346
static constexpr int kSPAlignmentSlotCount
Definition: v8-internal.h:1157
static const int kIsolateHandleScopeDataOffset
Definition: v8-internal.h:1102
static const int kFirstNonstringType
Definition: v8-internal.h:1218
static const int kEmptyStringRootIndex
Definition: v8-internal.h:1211
static const int kBuiltinTier0EntryTableOffset
Definition: v8-internal.h:1076
static const int kFrameTypeApiIndexedAccessorExit
Definition: v8-internal.h:1163
static const int kFixedArrayHeaderSize
Definition: v8-internal.h:1031
static const int kNullOddballKind
Definition: v8-internal.h:1232
static const int kUndefinedValueRootIndex
Definition: v8-internal.h:1206
static const int kExternalTwoByteRepresentationTag
Definition: v8-internal.h:1042
static constexpr Address IntToSmi(int value)
Definition: v8-internal.h:1275
static const int kDontThrow
Definition: v8-internal.h:1236
static void CheckInitializedImpl(v8::Isolate *isolate)
static void * GetEmbedderData(const v8::Isolate *isolate, uint32_t slot)
Definition: v8-internal.h:1386
static const int kStackGuardSize
Definition: v8-internal.h:1049
static const int kNodeStateMask
Definition: v8-internal.h:1215
static HandleScopeData * GetHandleScopeData(v8::Isolate *isolate)
Definition: v8-internal.h:1393
static const int kNodeStateIsWeakValue
Definition: v8-internal.h:1216
static const int kFirstJSApiObjectType
Definition: v8-internal.h:1223
static const int kStringResourceOffset
Definition: v8-internal.h:1019
static bool IsExternalOneByteString(int instance_type)
Definition: v8-internal.h:1341
static const int kErrorMessageParamOffset
Definition: v8-internal.h:1074
static const int kCurrentMicrotaskNativeContextOffset
Definition: v8-internal.h:1142
static const int kFalseValueRootIndex
Definition: v8-internal.h:1210
static const int kIsolateRegexpExecVectorArgumentOffset
Definition: v8-internal.h:1136
static const int kIsolateFastApiCallTargetOffset
Definition: v8-internal.h:1096
static const int kTrueValueRootIndex
Definition: v8-internal.h:1209
static int GetInstanceType(Address obj)
Definition: v8-internal.h:1315
static const int kThrowOnError
Definition: v8-internal.h:1237
static Address ReadTaggedSignedField(Address heap_object_ptr, int offset)
Definition: v8-internal.h:1475
static const int kOddballKindOffset
Definition: v8-internal.h:1022
static const int kBuiltinTier0TableSize
Definition: v8-internal.h:1055
static const int kExternalEntityTableSize
Definition: v8-internal.h:1064
static const int kFrameTypeApiConstructExit
Definition: v8-internal.h:1161
static const int kContinuationPreservedEmbedderDataOffset
Definition: v8-internal.h:1138
static const int kLastYoungAllocationOffset
Definition: v8-internal.h:1085
static const int kCurrentMicrotaskQueueOffset
Definition: v8-internal.h:1140
static Address ReadTaggedPointerField(Address heap_object_ptr, int offset)
Definition: v8-internal.h:1464
static const int kFrameTypeApiNamedAccessorExit
Definition: v8-internal.h:1162
static const int kNullValueRootIndex
Definition: v8-internal.h:1208
static void SetEmbedderData(v8::Isolate *isolate, uint32_t slot, void *data)
Definition: v8-internal.h:1379
static Address * GetRootSlot(v8::Isolate *isolate, int index)
Definition: v8-internal.h:1405
static const int kIsolateJSDispatchTableOffset
Definition: v8-internal.h:1131
static const int kTheHoleValueRootIndex
Definition: v8-internal.h:1207
static constexpr int SmiValue(Address value)
Definition: v8-internal.h:1266
static const int kTablesAlignmentPaddingSize
Definition: v8-internal.h:1052
static const int kHandleScopeDataSize
Definition: v8-internal.h:1058
static const int kExternalOneByteRepresentationTag
Definition: v8-internal.h:1043
static const int kBuiltinTier0EntryTableSize
Definition: v8-internal.h:1054
static void UpdateNodeFlag(Address *obj, bool value, int shift)
Definition: v8-internal.h:1363
static const int kCallbackInfoDataOffset
Definition: v8-internal.h:1046
static void IncrementLongTasksStatsCounter(v8::Isolate *isolate)
Definition: v8-internal.h:1399
static const int kDisallowGarbageCollectionSize
Definition: v8-internal.h:1167
static const int kOldAllocationInfoOffset
Definition: v8-internal.h:1083
static const int kIsolateEmbedderDataOffset
Definition: v8-internal.h:1104
static T ReadRawField(Address heap_object_ptr, int offset)
Definition: v8-internal.h:1448
static v8::Isolate * GetCurrentIsolate()
static constexpr int kFrameCPSlotCount
Definition: v8-internal.h:1150
static const int kEmbedderDataSlotExternalPointerOffset
Definition: v8-internal.h:1037
static v8::Isolate * GetCurrentIsolateForSandbox()
Definition: v8-internal.h:1489
static int GetOddballKind(Address obj)
Definition: v8-internal.h:1332
static const int kNodeFlagsOffset
Definition: v8-internal.h:1214
static const int kRegExpStaticResultOffsetsVectorSize
Definition: v8-internal.h:1053
static const int kLastEmbedderJSApiObjectType
Definition: v8-internal.h:1228
static const int kVariousBooleanFlagsOffset
Definition: v8-internal.h:1072
static constexpr std::optional< Address > TryIntegralToSmi(T value)
Definition: v8-internal.h:1293
static const int kNodeClassIdOffset
Definition: v8-internal.h:1213
static const int kStringRepresentationAndEncodingMask
Definition: v8-internal.h:1040
static const int kJSObjectHeaderSize
Definition: v8-internal.h:1023
static const int kJSSpecialApiObjectType
Definition: v8-internal.h:1221
Definition: v8-internal.h:1608
StrongRootAllocatorBase(LocalIsolate *isolate)
Definition: v8-internal.h:1635
T value_type
Definition: v8-internal.h:1637
Definition: v8-internal.h:1813
static Address ValueAsAddress(const T *value)
Definition: v8-internal.h:1873
static T * ReprAsValue(InternalRepresentationType repr)
Definition: v8-internal.h:1889
internal::Address * InternalRepresentationType
Definition: v8-internal.h:1827
static T * SlotAsValue(S *slot)
Definition: v8-internal.h:1878
static T * HandleAsValue(const H< T, Ms... > &handle)
Definition: v8-internal.h:1841
static InternalRepresentationType ValueAsRepr(const T *value)
Definition: v8-internal.h:1883
static bool IsEmpty(T *value)
Definition: v8-internal.h:1832
static constexpr InternalRepresentationType kEmpty
Definition: v8-internal.h:1828
Definition: v8-internal.h:1678
constexpr WrappedIterator & operator-=(difference_type n) noexcept
Definition: v8-internal.h:1790
constexpr WrappedIterator operator--(int) noexcept
Definition: v8-internal.h:1767
constexpr WrappedIterator & operator+=(difference_type n) noexcept
Definition: v8-internal.h:1782
constexpr const Iterator & base() const noexcept
Definition: v8-internal.h:1804
std::conditional_t< std::is_void_v< ElementType >, typename std::iterator_traits< Iterator >::value_type, ElementType > value_type
Definition: v8-internal.h:1692
constexpr WrappedIterator & operator++() noexcept
Definition: v8-internal.h:1753
constexpr pointer operator->() const noexcept
Definition: v8-internal.h:1714
constexpr reference operator[](difference_type n) const noexcept
Definition: v8-internal.h:1799
typename std::iterator_traits< Iterator >::difference_type difference_type
Definition: v8-internal.h:1688
constexpr auto operator<=>(const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept
Definition: v8-internal.h:1730
std::conditional_t< std::is_void_v< ElementType >, typename std::iterator_traits< Iterator >::reference, std::add_lvalue_reference_t< ElementType > > reference
Definition: v8-internal.h:1700
constexpr WrappedIterator & operator--() noexcept
Definition: v8-internal.h:1763
constexpr WrappedIterator() noexcept=default
typename std::iterator_traits< Iterator >::iterator_category iterator_category
Definition: v8-internal.h:1702
constexpr reference operator*() const noexcept
Definition: v8-internal.h:1713
friend constexpr WrappedIterator operator+(difference_type n, const WrappedIterator &x) noexcept
Definition: v8-internal.h:1778
constexpr WrappedIterator operator++(int) noexcept
Definition: v8-internal.h:1757
constexpr WrappedIterator operator-(difference_type n) const noexcept
Definition: v8-internal.h:1786
std::conditional_t< std::is_void_v< ElementType >, typename std::iterator_traits< Iterator >::pointer, std::add_pointer_t< ElementType > > pointer
Definition: v8-internal.h:1696
constexpr bool operator==(const WrappedIterator< OtherIterator, OtherElementType > &other) const noexcept
Definition: v8-internal.h:1723
Definition: v8-internal.h:1652
Definition: v8-internal.h:1649
const intptr_t kHeapObjectTagMask
Definition: v8-internal.h:61
constexpr uint64_t kCppHeapPointerMarkBit
Definition: v8-internal.h:412
constexpr int kCodePointerTableEntrySizeLog2
Definition: v8-internal.h:954
constexpr bool kRuntimeGeneratedCodeObjectsLiveInTrustedSpace
Definition: v8-internal.h:966
internal::Isolate * IsolateFromNeverReadOnlySpaceObject(Address obj)
constexpr uint64_t kExternalPointerTagShift
Definition: v8-internal.h:362
IndirectPointerHandle TrustedPointerHandle
Definition: v8-internal.h:885
const int kApiSystemPointerSize
Definition: v8-internal.h:51
constexpr const char * ToString(ExternalPointerTag tag)
Definition: v8-internal.h:734
constexpr bool SandboxIsEnabled()
Definition: v8-internal.h:206
const int kApiDoubleSize
Definition: v8-internal.h:52
constexpr size_t kMaxCppHeapPointers
Definition: v8-internal.h:435
constexpr intptr_t kIntptrAllBitsSet
Definition: v8-internal.h:79
constexpr int GB
Definition: v8-internal.h:43
void VerifyHandleIsNonEmpty(bool is_empty)
const int kApiInt32Size
Definition: v8-internal.h:53
const int kForwardingTagSize
Definition: v8-internal.h:68
uint32_t CppHeapPointerHandle
Definition: v8-internal.h:397
const intptr_t kForwardingTagMask
Definition: v8-internal.h:69
void PrintPropertyCallbackInfo(void *property_callback_info)
constexpr ExternalPointerTagRange kAnyManagedResourceExternalPointerTag(kFirstManagedResourceTag, kLastManagedResourceTag)
IndirectPointerHandle CodePointerHandle
Definition: v8-internal.h:927
constexpr uint64_t kExternalPointerPayloadMask
Definition: v8-internal.h:369
const int kSmiTagSize
Definition: v8-internal.h:73
const int kApiInt64Size
Definition: v8-internal.h:54
constexpr ExternalPointerTagRange kAnyExternalPointerTagRange(kFirstExternalPointerTag, kLastExternalPointerTag)
constexpr uint64_t kExternalPointerTagMask
Definition: v8-internal.h:363
constexpr int kCodePointerTableEntryCodeObjectOffset
Definition: v8-internal.h:962
constexpr int kTrustedPointerTableEntrySizeLog2
Definition: v8-internal.h:902
constexpr int kTrustedPointerTableEntrySize
Definition: v8-internal.h:901
constexpr uint64_t kCppHeapPointerPayloadShift
Definition: v8-internal.h:414
constexpr ExternalPointer_t kNullExternalPointer
Definition: v8-internal.h:389
Address ExternalPointer_t
Definition: v8-internal.h:386
uint32_t IndirectPointerHandle
Definition: v8-internal.h:865
constexpr CppHeapPointer_t kNullCppHeapPointer
Definition: v8-internal.h:409
const int kApiSizetSize
Definition: v8-internal.h:55
constexpr uint64_t kExternalPointerTagAndMarkbitMask
Definition: v8-internal.h:368
constexpr size_t kMaxExternalPointers
Definition: v8-internal.h:357
constexpr ExternalPointerTagRange kAnySharedManagedExternalPointerTagRange(kFirstSharedManagedExternalPointerTag, kLastSharedManagedExternalPointerTag)
constexpr size_t kCodePointerTableReservationSize
Definition: v8-internal.h:932
constexpr TrustedPointerHandle kNullTrustedPointerHandle
Definition: v8-internal.h:897
const int kWeakHeapObjectTag
Definition: v8-internal.h:59
constexpr ExternalPointerHandle kNullExternalPointerHandle
Definition: v8-internal.h:390
constexpr ExternalPointerTagRange kAnyMaybeReadOnlyExternalPointerTagRange(kFirstMaybeReadOnlyExternalPointerTag, kLastMaybeReadOnlyExternalPointerTag)
constexpr ExternalPointerTag kFirstSharedManagedExternalPointerTag
Definition: v8-internal.h:792
constexpr uintptr_t kUintptrAllBitsSet
Definition: v8-internal.h:80
const int kForwardingTag
Definition: v8-internal.h:67
const intptr_t kHeapObjectReferenceTagMask
Definition: v8-internal.h:62
constexpr bool SmiValuesAre31Bits()
Definition: v8-internal.h:194
constexpr size_t kMaxTrustedPointers
Definition: v8-internal.h:904
bool ShouldThrowOnError(internal::Isolate *isolate)
constexpr uint64_t kCppHeapPointerTagShift
Definition: v8-internal.h:413
constexpr ExternalPointerTagRange kAnyInterceptorInfoExternalPointerTagRange(kFirstInterceptorInfoExternalPointerTag, kLastInterceptorInfoExternalPointerTag)
constexpr ExternalPointerTag kFirstManagedExternalPointerTag
Definition: v8-internal.h:775
constexpr int KB
Definition: v8-internal.h:41
constexpr bool kBuiltinCodeObjectsLiveInTrustedSpace
Definition: v8-internal.h:967
constexpr uint32_t kTrustedPointerHandleShift
Definition: v8-internal.h:894
constexpr uint32_t kCodePointerHandleShift
Definition: v8-internal.h:936
constexpr ExternalPointerTagRange kAnyManagedExternalPointerTagRange(kFirstManagedExternalPointerTag, kLastManagedExternalPointerTag)
const int kHeapObjectTag
Definition: v8-internal.h:58
const int kSmiShiftSize
Definition: v8-internal.h:190
constexpr size_t kMaxCodePointers
Definition: v8-internal.h:956
SmiTagging< kApiTaggedSize > PlatformSmiTagging
Definition: v8-internal.h:185
ExternalPointerTag
Definition: v8-internal.h:656
@ kApiIndexedPropertyDescriptorCallbackTag
Definition: v8-internal.h:707
@ kFirstMaybeReadOnlyExternalPointerTag
Definition: v8-internal.h:690
@ kExternalPointerEvacuationEntryTag
Definition: v8-internal.h:728
@ kFirstSharedExternalPointerTag
Definition: v8-internal.h:668
@ kApiNamedPropertyDefinerCallbackTag
Definition: v8-internal.h:701
@ kLastSharedExternalPointerTag
Definition: v8-internal.h:672
@ kApiIndexedPropertySetterCallbackTag
Definition: v8-internal.h:706
@ kLastExternalPointerTag
Definition: v8-internal.h:731
@ kLastExternalTypeTag
Definition: v8-internal.h:684
@ kApiIndexedPropertyGetterCallbackTag
Definition: v8-internal.h:705
@ kApiNamedPropertyDescriptorCallbackTag
Definition: v8-internal.h:700
@ kAccessorInfoGetterTag
Definition: v8-internal.h:692
@ kApiIndexedPropertyDefinerCallbackTag
Definition: v8-internal.h:708
@ kFirstExternalTypeTag
Definition: v8-internal.h:683
@ kExternalStringResourceTag
Definition: v8-internal.h:670
@ kAccessorInfoSetterTag
Definition: v8-internal.h:693
@ kApiNamedPropertyDeleterCallbackTag
Definition: v8-internal.h:702
@ kApiNamedPropertyGetterCallbackTag
Definition: v8-internal.h:698
@ kApiNamedPropertySetterCallbackTag
Definition: v8-internal.h:699
@ kApiIndexedPropertyIndexOfCallbackTag
Definition: v8-internal.h:711
@ kApiIndexedPropertyEnumeratorCallbackTag
Definition: v8-internal.h:710
@ kExternalPointerFreeEntryTag
Definition: v8-internal.h:729
@ kFirstInterceptorInfoExternalPointerTag
Definition: v8-internal.h:696
@ kWaiterQueueNodeTag
Definition: v8-internal.h:669
@ kExternalPointerNullTag
Definition: v8-internal.h:658
@ kExternalStringResourceDataTag
Definition: v8-internal.h:671
@ kWasmStackMemoryTag
Definition: v8-internal.h:717
@ kLastManagedResourceTag
Definition: v8-internal.h:725
@ kFastApiExternalTypeTag
Definition: v8-internal.h:689
@ kExternalPointerZappedEntryTag
Definition: v8-internal.h:727
@ kApiNamedPropertyQueryCallbackTag
Definition: v8-internal.h:697
@ kFirstEmbedderDataTag
Definition: v8-internal.h:679
@ kApiIndexedPropertyQueryCallbackTag
Definition: v8-internal.h:704
@ kApiIndexedPropertyDeleterCallbackTag
Definition: v8-internal.h:709
@ kLastInterceptorInfoExternalPointerTag
Definition: v8-internal.h:712
@ kNativeContextMicrotaskQueueTag
Definition: v8-internal.h:676
@ kLastMaybeReadOnlyExternalPointerTag
Definition: v8-internal.h:715
@ kLastEmbedderDataTag
Definition: v8-internal.h:680
@ kArrayBufferExtensionTag
Definition: v8-internal.h:724
@ kFirstExternalPointerTag
Definition: v8-internal.h:657
@ kApiNamedPropertyEnumeratorCallbackTag
Definition: v8-internal.h:703
@ kFunctionTemplateInfoCallbackTag
Definition: v8-internal.h:691
const int kSmiValueSize
Definition: v8-internal.h:191
constexpr ExternalPointerTag kLastSharedManagedExternalPointerTag
Definition: v8-internal.h:794
constexpr ExternalPointerTagRange kAnyForeignExternalPointerTagRange(kFirstForeignExternalPointerTag, kLastForeignExternalPointerTag)
constexpr bool SmiValuesAre32Bits()
Definition: v8-internal.h:195
constexpr ExternalPointerTag kLastManagedExternalPointerTag
Definition: v8-internal.h:777
TagRange< ExternalPointerTag > ExternalPointerTagRange
Definition: v8-internal.h:746
constexpr ExternalPointerTag kFirstForeignExternalPointerTag
Definition: v8-internal.h:765
constexpr IndirectPointerHandle kNullIndirectPointerHandle
Definition: v8-internal.h:868
uintptr_t Address
Definition: v8-internal.h:38
void PerformCastCheck(T *data)
Definition: v8-internal.h:1593
void PrintFunctionCallbackInfo(void *function_callback_info)
constexpr size_t kTrustedPointerTableReservationSize
Definition: v8-internal.h:890
uint32_t ExternalPointerHandle
Definition: v8-internal.h:378
const intptr_t kSmiTagMask
Definition: v8-internal.h:74
const int kHeapObjectTagSize
Definition: v8-internal.h:60
const int kSmiMaxValue
Definition: v8-internal.h:193
constexpr bool Is64()
Definition: v8-internal.h:196
constexpr bool kAllCodeObjectsLiveInTrustedSpace
Definition: v8-internal.h:968
const int kSmiTag
Definition: v8-internal.h:72
constexpr ExternalPointerTag kFirstManagedResourceTag
Definition: v8-internal.h:786
constexpr CodePointerHandle kNullCodePointerHandle
Definition: v8-internal.h:939
Address CppHeapPointer_t
Definition: v8-internal.h:406
constexpr CppHeapPointerHandle kNullCppHeapPointerHandle
Definition: v8-internal.h:410
constexpr int kGarbageCollectionReasonMaxValue
Definition: v8-internal.h:1604
constexpr int kCodePointerTableEntrySize
Definition: v8-internal.h:953
constexpr uint32_t kCodePointerHandleMarker
Definition: v8-internal.h:948
const int kSmiMinValue
Definition: v8-internal.h:192
constexpr int MB
Definition: v8-internal.h:42
constexpr uint64_t kExternalPointerShiftedTagMask
Definition: v8-internal.h:364
constexpr uint64_t kExternalPointerMarkBit
Definition: v8-internal.h:361
Address SandboxedPointer_t
Definition: v8-internal.h:216
const int kApiTaggedSize
Definition: v8-internal.h:175
constexpr bool PointerCompressionIsEnabled()
Definition: v8-internal.h:178
constexpr ExternalPointerTag kLastForeignExternalPointerTag
Definition: v8-internal.h:767
Definition: libplatform.h:15
Definition: v8-internal.h:1577
static void Perform(T *data)
Definition: v8-internal.h:984
static constexpr uint32_t kSizeInBytes
Definition: v8-internal.h:985
typename Iterator::iterator_concept iterator_concept
Definition: v8-internal.h:1663
Definition: v8-internal.h:1659
static constexpr bool IsValidSmi(uint64_t value)
Definition: v8-internal.h:127
static constexpr bool IsValidSmi(int64_t value)
Definition: v8-internal.h:120
static constexpr bool IsValidSmi(T value)
Definition: v8-internal.h:100
static constexpr int SmiToInt(Address value)
Definition: v8-internal.h:92
static constexpr bool IsValidSmi(T value)
Definition: v8-internal.h:150
static constexpr int SmiToInt(Address value)
Definition: v8-internal.h:142
Definition: v8-internal.h:77
Definition: v8-internal.h:506
constexpr size_t Size() const
Definition: v8-internal.h:533
constexpr bool IsEmpty() const
Definition: v8-internal.h:531
Tag last
Definition: v8-internal.h:564
Tag first
Definition: v8-internal.h:563
constexpr bool operator==(const TagRange other) const
Definition: v8-internal.h:553
constexpr bool Contains(Tag tag) const
Definition: v8-internal.h:541
constexpr TagRange()
Definition: v8-internal.h:528
constexpr TagRange(Tag tag)
Definition: v8-internal.h:524
constexpr size_t hash_value() const
Definition: v8-internal.h:557
constexpr TagRange(Tag first, Tag last)
Definition: v8-internal.h:512
constexpr bool Contains(TagRange tag_range) const
Definition: v8-internal.h:549
#define FOREIGN_TAG_LIST(V)
Definition: v8-internal.h:600
#define AS_ENUM(name)
Definition: v8-internal.h:719
#define V8_EXTERNAL_POINTER_TAG_COUNT
Definition: v8-internal.h:447
#define MANAGED_TAG_LIST(V)
Definition: v8-internal.h:569
#define SHARED_MANAGED_TAG_LIST(V)
Definition: v8-internal.h:567
#define ENUM_CASE(name)
#define GET_FIRST(LIST)
Definition: v8-internal.h:750
#define V8_EMBEDDER_DATA_TAG_COUNT
Definition: v8-internal.h:442
#define GET_LAST(LIST)
Definition: v8-internal.h:756
#define V8_EXPORT
Definition: v8config.h:854
#define V8_INLINE
Definition: v8config.h:508
#define V8_DEPRECATE_SOON(message)
Definition: v8config.h:621
#define V8_LIKELY(condition)
Definition: v8config.h:668