![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include <v8-local-handle.h>
Public Member Functions | |
HandleScope (Isolate *isolate) | |
~HandleScope () | |
V8_INLINE Isolate * | GetIsolate () const |
HandleScope (const HandleScope &)=delete | |
void | operator= (const HandleScope &)=delete |
Static Public Member Functions | |
static int | NumberOfHandles (Isolate *isolate) |
static internal::Address * | CreateHandleForCurrentIsolate (internal::Address value) |
Protected Member Functions | |
V8_INLINE | HandleScope ()=default |
void | Initialize (Isolate *isolate) |
Static Protected Member Functions | |
static internal::Address * | CreateHandle (internal::Isolate *i_isolate, internal::Address value) |
Private Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *, size_t) |
void | operator delete[] (void *, size_t) |
Private Attributes | |
internal::Isolate * | i_isolate_ |
internal::Address * | prev_next_ |
internal::Address * | prev_limit_ |
Friends | |
template<typename T > | |
class | LocalBase |
class | Object |
class | Context |
A stack-allocated class that governs a number of local handles. After a handle scope has been created, all local handles will be allocated within that handle scope until either the handle scope is deleted or another handle scope is created. If there is already a handle scope and a new one is created, all allocations will take place in the new handle scope until it is deleted. After that, new handles will again be allocated in the original handle scope.
After the handle scope of a local handle has been deleted the garbage collector will no longer track the object stored in the handle and may deallocate it. The behavior of accessing a handle for which the handle scope has been deleted is undefined.
Definition at line 97 of file v8-local-handle.h.
|
explicit |
v8::HandleScope::~HandleScope | ( | ) |
|
delete |
|
protecteddefault |
|
staticprotected |
|
static |
|
protected |
|
static |
|
private |
|
private |
|
private |
|
private |
|
delete |
|
friend |
Definition at line 148 of file v8-local-handle.h.
Definition at line 143 of file v8-local-handle.h.
|
friend |
Definition at line 147 of file v8-local-handle.h.
|
private |
Definition at line 134 of file v8-local-handle.h.
|
private |
Definition at line 136 of file v8-local-handle.h.
|
private |
Definition at line 135 of file v8-local-handle.h.