V8 Project
|
Initial configuration parameters for a new Isolate. More...
#include <v8.h>
Public Member Functions | |
CreateParams () | |
Public Attributes | |
FunctionEntryHook | entry_hook |
The optional entry_hook allows the host application to provide the address of a function that's invoked on entry to every V8-generated function. More... | |
JitCodeEventHandler | code_event_handler |
Allows the host application to provide the address of a function that is notified each time code is added, moved or removed. More... | |
ResourceConstraints | constraints |
ResourceConstraints to use for the new Isolate. More... | |
bool | enable_serializer |
This flag currently renders the Isolate unusable. More... | |
|
inline |
Definition at line 4362 of file v8.h.
JitCodeEventHandler v8::Isolate::CreateParams::code_event_handler |
Allows the host application to provide the address of a function that is notified each time code is added, moved or removed.
Definition at line 4380 of file v8.h.
Referenced by vTune::InitializeVtuneForV8(), v8::Shell::Main(), and v8::Isolate::New().
ResourceConstraints v8::Isolate::CreateParams::constraints |
ResourceConstraints to use for the new Isolate.
Definition at line 4385 of file v8.h.
Referenced by v8::Shell::Main(), and v8::Isolate::New().
bool v8::Isolate::CreateParams::enable_serializer |
This flag currently renders the Isolate unusable.
Definition at line 4390 of file v8.h.
Referenced by main(), and v8::Isolate::New().
FunctionEntryHook v8::Isolate::CreateParams::entry_hook |
The optional entry_hook allows the host application to provide the address of a function that's invoked on entry to every V8-generated function.
Note that entry_hook is invoked at the very start of each generated function. Furthermore, if an entry_hook is given, V8 will always run without a context snapshot.
Definition at line 4374 of file v8.h.
Referenced by v8::Isolate::New().