![]() |
v8 14.1.146 (node 25.0.0)
V8 is Google's open source JavaScript engine
|
Namespaces | |
| namespace | wasm |
Data Structures | |
| class | BackingStoreBase |
| struct | CastCheck |
| class | CFunctionInfoImpl |
| struct | count |
| struct | count< T, T, Args... > |
| struct | count< T, U, Args... > |
| struct | CTypeInfoTraits |
| class | CustomArguments |
| class | HandleHelper |
| struct | HandleScopeData |
| class | Internals |
| class | LocalUnchecked |
| struct | MaybeDefineIteratorConcept |
| struct | MaybeDefineIteratorConcept< Iterator, std::enable_if_t< kHaveIteratorCategory< Iterator > &&!kHaveIteratorConcept< Iterator > > > |
| struct | MaybeDefineIteratorConcept< Iterator, std::enable_if_t< kHaveIteratorConcept< Iterator > > > |
| struct | NullMaybeType |
| struct | SmiTagging |
| struct | SmiTagging< 4 > |
| struct | SmiTagging< 8 > |
| class | StrongRootAllocator |
| class | StrongRootAllocatorBase |
| struct | TagRange |
| struct | TypeInfoHelper |
| struct | TypeInfoHelper< const FastOneByteString & > |
| struct | TypeInfoHelper< FastApiCallbackOptions & > |
| class | ValueHelper |
| class | WrappedIterator |
Typedefs | |
| typedef uintptr_t | Address |
| using | PlatformSmiTagging = SmiTagging< kApiTaggedSize > |
| using | SandboxedPointer_t = Address |
| using | ExternalPointerHandle = uint32_t |
| using | ExternalPointer_t = Address |
| using | CppHeapPointerHandle = uint32_t |
| using | CppHeapPointer_t = Address |
| using | ExternalPointerTagRange = TagRange< ExternalPointerTag > |
| using | IndirectPointerHandle = uint32_t |
| using | TrustedPointerHandle = IndirectPointerHandle |
| using | CodePointerHandle = IndirectPointerHandle |
Variables | |
| constexpr int | KB = 1024 |
| constexpr int | MB = KB * 1024 |
| constexpr int | GB = MB * 1024 |
| const int | kApiSystemPointerSize = sizeof(void*) |
| const int | kApiDoubleSize = sizeof(double) |
| const int | kApiInt32Size = sizeof(int32_t) |
| const int | kApiInt64Size = sizeof(int64_t) |
| const int | kApiSizetSize = sizeof(size_t) |
| const int | kHeapObjectTag = 1 |
| const int | kWeakHeapObjectTag = 3 |
| const int | kHeapObjectTagSize = 2 |
| const intptr_t | kHeapObjectTagMask = (1 << kHeapObjectTagSize) - 1 |
| const intptr_t | kHeapObjectReferenceTagMask = 1 << (kHeapObjectTagSize - 1) |
| const int | kForwardingTag = 0 |
| const int | kForwardingTagSize = 2 |
| const intptr_t | kForwardingTagMask = (1 << kForwardingTagSize) - 1 |
| const int | kSmiTag = 0 |
| const int | kSmiTagSize = 1 |
| const intptr_t | kSmiTagMask = (1 << kSmiTagSize) - 1 |
| constexpr intptr_t | kIntptrAllBitsSet = intptr_t{-1} |
| constexpr uintptr_t | kUintptrAllBitsSet |
| const int | kApiTaggedSize = kApiSystemPointerSize |
| const int | kSmiShiftSize = PlatformSmiTagging::kSmiShiftSize |
| const int | kSmiValueSize = PlatformSmiTagging::kSmiValueSize |
| const int | kSmiMinValue = static_cast<int>(PlatformSmiTagging::kSmiMinValue) |
| const int | kSmiMaxValue = static_cast<int>(PlatformSmiTagging::kSmiMaxValue) |
| constexpr size_t | kMaxExternalPointers = 0 |
| constexpr uint64_t | kExternalPointerMarkBit = 1ULL << 48 |
| constexpr uint64_t | kExternalPointerTagShift = 49 |
| constexpr uint64_t | kExternalPointerTagMask = 0x00fe000000000000ULL |
| constexpr uint64_t | kExternalPointerShiftedTagMask |
| constexpr uint64_t | kExternalPointerTagAndMarkbitMask = 0x00ff000000000000ULL |
| constexpr uint64_t | kExternalPointerPayloadMask = 0xff00ffffffffffffULL |
| constexpr ExternalPointer_t | kNullExternalPointer = 0 |
| constexpr ExternalPointerHandle | kNullExternalPointerHandle = 0 |
| constexpr CppHeapPointer_t | kNullCppHeapPointer = 0 |
| constexpr CppHeapPointerHandle | kNullCppHeapPointerHandle = 0 |
| constexpr uint64_t | kCppHeapPointerMarkBit = 1ULL |
| constexpr uint64_t | kCppHeapPointerTagShift = 1 |
| constexpr uint64_t | kCppHeapPointerPayloadShift = 16 |
| constexpr size_t | kMaxCppHeapPointers = 0 |
| constexpr IndirectPointerHandle | kNullIndirectPointerHandle = 0 |
| constexpr size_t | kTrustedPointerTableReservationSize = 64 * MB |
| constexpr uint32_t | kTrustedPointerHandleShift = 9 |
| constexpr TrustedPointerHandle | kNullTrustedPointerHandle |
| constexpr int | kTrustedPointerTableEntrySize = 8 |
| constexpr int | kTrustedPointerTableEntrySizeLog2 = 3 |
| constexpr size_t | kMaxTrustedPointers |
| constexpr size_t | kCodePointerTableReservationSize = 128 * MB |
| constexpr uint32_t | kCodePointerHandleShift = 9 |
| constexpr CodePointerHandle | kNullCodePointerHandle = kNullIndirectPointerHandle |
| constexpr uint32_t | kCodePointerHandleMarker = 0x1 |
| constexpr int | kCodePointerTableEntrySize = 16 |
| constexpr int | kCodePointerTableEntrySizeLog2 = 4 |
| constexpr size_t | kMaxCodePointers |
| constexpr int | kCodePointerTableEntryEntrypointOffset = 0 |
| constexpr int | kCodePointerTableEntryCodeObjectOffset = 8 |
| constexpr bool | kRuntimeGeneratedCodeObjectsLiveInTrustedSpace = true |
| constexpr bool | kBuiltinCodeObjectsLiveInTrustedSpace = false |
| constexpr bool | kAllCodeObjectsLiveInTrustedSpace |
| constexpr int | kGarbageCollectionReasonMaxValue = 30 |
| template<typename Iterator , typename = void> | |
| constexpr bool | kHaveIteratorConcept = false |
| template<typename Iterator , typename = void> | |
| constexpr bool | kHaveIteratorCategory = false |
| constexpr NullMaybeType | kNullMaybe |
| typedef uintptr_t Address |
Definition at line 52 of file v8-internal.h.
Definition at line 804 of file v8-internal.h.
| using CppHeapPointer_t = Address |
Definition at line 391 of file v8-internal.h.
| using CppHeapPointerHandle = uint32_t |
Definition at line 382 of file v8-internal.h.
| using ExternalPointer_t = Address |
Definition at line 371 of file v8-internal.h.
| using ExternalPointerHandle = uint32_t |
Definition at line 363 of file v8-internal.h.
Definition at line 672 of file v8-internal.h.
| using IndirectPointerHandle = uint32_t |
Definition at line 746 of file v8-internal.h.
| using PlatformSmiTagging = SmiTagging<kApiTaggedSize> |
Definition at line 199 of file v8-internal.h.
| using SandboxedPointer_t = Address |
Definition at line 230 of file v8-internal.h.
Definition at line 766 of file v8-internal.h.
| enum ExternalPointerTag : uint16_t |
Definition at line 557 of file v8-internal.h.
|
strong |
| Enumerator | |
|---|---|
| kDefault | |
| kDroppable | |
Definition at line 35 of file v8-traced-handle.h.
|
strong |
| Enumerator | |
|---|---|
| kInitializingStore | |
| kAssigningStore | |
Definition at line 30 of file v8-traced-handle.h.
Referenced by TracedReference< T >::operator=().
Referenced by TracedReferenceBase::Reset().
| V8_EXPORT Address * GlobalizeTracedReference | ( | Isolate * | isolate, |
| Address | value, | ||
| Address * | slot, | ||
| TracedReferenceStoreMode | store_mode, | ||
| TracedReferenceHandling | reference_handling | ||
| ) |
|
constexpr |
Definition at line 210 of file v8-internal.h.
References kApiSystemPointerSize.
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
Referenced by TracedReference< T >::operator=().
| V8_INLINE void PerformCastCheck | ( | T * | data | ) |
Definition at line 1436 of file v8-internal.h.
|
constexpr |
Definition at line 192 of file v8-internal.h.
References kApiSystemPointerSize, and kApiTaggedSize.
Referenced by V8::Initialize().
| void PrintFunctionCallbackInfo | ( | void * | function_callback_info | ) |
| void PrintPropertyCallbackInfo | ( | void * | property_callback_info | ) |
|
constexpr |
Definition at line 220 of file v8-internal.h.
Referenced by V8::Initialize().
| V8_DEPRECATE_SOON("Use GetCurrentIsolate() instead, which is guaranteed to return the same " "isolate since https://crrev.com/c/6458560.") V8_EXPORT internal V8_EXPORT bool ShouldThrowOnError | ( | internal::Isolate * | isolate | ) |
Referenced by PropertyCallbackInfo< T >::ShouldThrowOnError().
|
constexpr |
Definition at line 208 of file v8-internal.h.
References kSmiValueSize.
Referenced by V8::Initialize().
|
constexpr |
Definition at line 209 of file v8-internal.h.
References kSmiValueSize.
| V8_EXPORT void VerifyHandleIsNonEmpty | ( | bool | is_empty | ) |
|
constexpr |
Definition at line 57 of file v8-internal.h.
|
constexpr |
Definition at line 845 of file v8-internal.h.
| const int kApiDoubleSize = sizeof(double) |
Definition at line 66 of file v8-internal.h.
| const int kApiInt32Size = sizeof(int32_t) |
Definition at line 67 of file v8-internal.h.
| const int kApiInt64Size = sizeof(int64_t) |
Definition at line 68 of file v8-internal.h.
| const int kApiSizetSize = sizeof(size_t) |
Definition at line 69 of file v8-internal.h.
| const int kApiSystemPointerSize = sizeof(void*) |
Configuration of tagging scheme.
Definition at line 65 of file v8-internal.h.
Referenced by Internals::GetEmbedderData(), Internals::GetRootSlot(), Is64(), PointerCompressionIsEnabled(), and Internals::SetEmbedderData().
| const int kApiTaggedSize = kApiSystemPointerSize |
Definition at line 189 of file v8-internal.h.
Referenced by PointerCompressionIsEnabled().
|
constexpr |
Definition at line 55 of file v8-internal.h.
|
constexpr |
Definition at line 844 of file v8-internal.h.
|
constexpr |
Definition at line 825 of file v8-internal.h.
|
constexpr |
Definition at line 813 of file v8-internal.h.
|
constexpr |
Definition at line 839 of file v8-internal.h.
|
constexpr |
Definition at line 838 of file v8-internal.h.
|
constexpr |
Definition at line 830 of file v8-internal.h.
|
constexpr |
Definition at line 831 of file v8-internal.h.
|
constexpr |
Definition at line 809 of file v8-internal.h.
|
constexpr |
Definition at line 397 of file v8-internal.h.
|
constexpr |
Definition at line 399 of file v8-internal.h.
|
constexpr |
Definition at line 398 of file v8-internal.h.
Referenced by CppHeapPointerTagRange::CheckTagOf().
|
constexpr |
Definition at line 346 of file v8-internal.h.
|
constexpr |
Definition at line 354 of file v8-internal.h.
|
constexpr |
Definition at line 349 of file v8-internal.h.
|
constexpr |
Definition at line 353 of file v8-internal.h.
|
constexpr |
Definition at line 348 of file v8-internal.h.
|
constexpr |
Definition at line 347 of file v8-internal.h.
| const int kForwardingTag = 0 |
Definition at line 81 of file v8-internal.h.
| const intptr_t kForwardingTagMask = (1 << kForwardingTagSize) - 1 |
Definition at line 83 of file v8-internal.h.
| const int kForwardingTagSize = 2 |
Definition at line 82 of file v8-internal.h.
|
constexpr |
Definition at line 1447 of file v8-internal.h.
|
inlineconstexpr |
Definition at line 1505 of file v8-internal.h.
|
inlineconstexpr |
Definition at line 1499 of file v8-internal.h.
| const intptr_t kHeapObjectReferenceTagMask = 1 << (kHeapObjectTagSize - 1) |
Definition at line 76 of file v8-internal.h.
| const int kHeapObjectTag = 1 |
Definition at line 72 of file v8-internal.h.
Referenced by Internals::HasHeapObjectTag(), and Internals::ReadRawField().
| const intptr_t kHeapObjectTagMask = (1 << kHeapObjectTagSize) - 1 |
Definition at line 75 of file v8-internal.h.
Referenced by Internals::HasHeapObjectTag().
| const int kHeapObjectTagSize = 2 |
Definition at line 74 of file v8-internal.h.
|
constexpr |
Definition at line 93 of file v8-internal.h.
|
constexpr |
Definition at line 832 of file v8-internal.h.
|
constexpr |
Definition at line 420 of file v8-internal.h.
|
constexpr |
Definition at line 342 of file v8-internal.h.
|
constexpr |
Definition at line 784 of file v8-internal.h.
|
constexpr |
Definition at line 816 of file v8-internal.h.
|
constexpr |
Definition at line 394 of file v8-internal.h.
|
constexpr |
Definition at line 395 of file v8-internal.h.
|
constexpr |
Definition at line 374 of file v8-internal.h.
|
constexpr |
Definition at line 375 of file v8-internal.h.
|
constexpr |
Definition at line 749 of file v8-internal.h.
|
constexpr |
Definition at line 20 of file v8-maybe.h.
|
constexpr |
Definition at line 778 of file v8-internal.h.
|
constexpr |
Definition at line 843 of file v8-internal.h.
| const int kSmiMaxValue = static_cast<int>(PlatformSmiTagging::kSmiMaxValue) |
Definition at line 207 of file v8-internal.h.
| const int kSmiMinValue = static_cast<int>(PlatformSmiTagging::kSmiMinValue) |
Definition at line 206 of file v8-internal.h.
| const int kSmiShiftSize = PlatformSmiTagging::kSmiShiftSize |
Definition at line 204 of file v8-internal.h.
| const int kSmiTag = 0 |
Definition at line 86 of file v8-internal.h.
Referenced by Internals::AddressToSmi().
| const intptr_t kSmiTagMask = (1 << kSmiTagSize) - 1 |
Definition at line 88 of file v8-internal.h.
| const int kSmiTagSize = 1 |
Definition at line 87 of file v8-internal.h.
Referenced by Internals::AddressToSmi(), SmiTagging< 4 >::SmiToInt(), and SmiTagging< 8 >::SmiToInt().
| const int kSmiValueSize = PlatformSmiTagging::kSmiValueSize |
Definition at line 205 of file v8-internal.h.
Referenced by SmiValuesAre31Bits(), and SmiValuesAre32Bits().
|
constexpr |
Definition at line 775 of file v8-internal.h.
|
constexpr |
Definition at line 782 of file v8-internal.h.
|
constexpr |
Definition at line 783 of file v8-internal.h.
|
constexpr |
Definition at line 771 of file v8-internal.h.
|
constexpr |
Definition at line 94 of file v8-internal.h.
| const int kWeakHeapObjectTag = 3 |
Definition at line 73 of file v8-internal.h.
|
constexpr |
Definition at line 56 of file v8-internal.h.