![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include <cstddef>#include <cstdint>#include <cstring>#include "src/base/macros.h"#include "src/base/sanitizer/asan.h"#include "src/base/sanitizer/msan.h"#include "src/heap/cppgc/globals.h"Go to the source code of this file.
Namespaces | |
| namespace | cppgc |
| namespace | cppgc::internal |
Functions | |
| void | cppgc::internal::NoSanitizeMemset (void *address, char c, size_t bytes) |
| V8_INLINE void | cppgc::internal::ZapMemory (void *address, size_t size) |
| V8_INLINE void | cppgc::internal::CheckMemoryIsZapped (const void *address, size_t size) |
| V8_INLINE void | cppgc::internal::CheckMemoryIsZero (const void *address, size_t size) |
| V8_INLINE void | cppgc::internal::SetMemoryAccessible (void *address, size_t size) |
| V8_INLINE void | cppgc::internal::CheckMemoryIsInaccessible (const void *address, size_t size) |
| constexpr bool | cppgc::internal::CheckMemoryIsInaccessibleIsNoop () |
| V8_INLINE void | cppgc::internal::SetMemoryInaccessible (void *address, size_t size) |
Variables | |
| static constexpr uint8_t | cppgc::internal::kZappedValue = 0xdc |