v8
5.5.372 (node 7.10.1)
V8 is Google's open source JavaScript engine
|
#include <v8.h>
Public Member Functions | |
CreateParams () | |
|
inline |
Definition at line 6241 of file v8.h.
References Isolate::CreateParams::add_histogram_sample_callback, Isolate::CreateParams::array_buffer_allocator, Isolate::CreateParams::code_event_handler, Isolate::CreateParams::counter_lookup_callback, Isolate::CreateParams::create_histogram_callback, Isolate::CreateParams::entry_hook, Isolate::CreateParams::external_references, and Isolate::CreateParams::snapshot_blob.
AddHistogramSampleCallback add_histogram_sample_callback |
Definition at line 6290 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().
ArrayBuffer::Allocator* array_buffer_allocator |
The ArrayBuffer::Allocator to use for allocating and freeing the backing store of ArrayBuffers.
Definition at line 6296 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().
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.
Definition at line 6264 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().
ResourceConstraints constraints |
ResourceConstraints to use for the new Isolate.
CounterLookupCallback counter_lookup_callback |
Enables the host application to provide a mechanism for recording statistics counters.
Definition at line 6281 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().
CreateHistogramCallback create_histogram_callback |
Enables the host application to provide a mechanism for recording histograms. The CreateHistogram function returns a histogram which will later be passed to the AddHistogramSample function.
Definition at line 6289 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().
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. Note that entry_hook is invoked at the very start of each generated function. Furthermore, if an entry_hook is given, V8 will not use a snapshot, including custom snapshots.
Definition at line 6258 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().
intptr_t* external_references |
Specifies an optional nullptr-terminated array of raw addresses in the embedder that V8 can match against during serialization and use for deserialization. This array and its content must stay valid for the entire lifetime of the isolate.
Definition at line 6304 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().
StartupData* snapshot_blob |
Explicitly specify a startup snapshot blob. The embedder owns the blob.
Definition at line 6274 of file v8.h.
Referenced by Isolate::CreateParams::CreateParams().