![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include "src/heap/heap.h"#include <atomic>#include <optional>#include "src/base/atomic-utils.h"#include "src/base/platform/mutex.h"#include "src/common/assert-scope.h"#include "src/common/code-memory-access-inl.h"#include "src/execution/isolate-data.h"#include "src/execution/isolate.h"#include "src/heap/heap-allocator-inl.h"#include "src/heap/heap-layout-inl.h"#include "src/heap/heap-write-barrier.h"#include "src/heap/large-spaces.h"#include "src/heap/memory-allocator.h"#include "src/heap/memory-chunk-inl.h"#include "src/heap/memory-chunk-layout.h"#include "src/heap/mutable-page-metadata.h"#include "src/heap/new-spaces-inl.h"#include "src/heap/paged-spaces-inl.h"#include "src/heap/read-only-heap.h"#include "src/heap/safepoint.h"#include "src/heap/spaces-inl.h"#include "src/objects/allocation-site-inl.h"#include "src/objects/cell-inl.h"#include "src/objects/objects-inl.h"#include "src/objects/slots-inl.h"#include "src/objects/visitors-inl.h"#include "src/roots/static-roots.h"#include "src/utils/ostreams.h"#include "src/zone/zone-list-inl.h"Go to the source code of this file.
Namespaces | |
| namespace | v8 |
| namespace | v8::internal |
Macros | |
| #define | ROOT_ACCESSOR(Type, name, CamelName) |
| #define | STATIC_ROOTS_FAILED_MSG |
| #define | DCHECK_STATIC_ROOT(obj, name) |
| #define | ROOT_ACCESSOR(type, name, CamelName) |
Functions | |
| template<typename T > | |
| Tagged< T > | v8::internal::ForwardingAddress (Tagged< T > heap_obj) |
| #define DCHECK_STATIC_ROOT | ( | obj, | |
| name ) |
Definition at line 98 of file heap-inl.h.
| #define ROOT_ACCESSOR | ( | Type, | |
| name, | |||
| CamelName ) |
Definition at line 71 of file heap-inl.h.
| #define ROOT_ACCESSOR | ( | type, | |
| name, | |||
| CamelName ) |
Definition at line 71 of file heap-inl.h.
| #define STATIC_ROOTS_FAILED_MSG |
Definition at line 83 of file heap-inl.h.