v8  7.4.288(node12.0.0)
V8 is Google's open source JavaScript engine
Isolate::CreateParams Struct Reference

#include <v8.h>

Collaboration diagram for Isolate::CreateParams:

Public Member Functions

 CreateParams ()
 

Data Fields

JitCodeEventHandler code_event_handler
 
ResourceConstraints constraints
 
StartupDatasnapshot_blob
 
CounterLookupCallback counter_lookup_callback
 
CreateHistogramCallback create_histogram_callback
 
AddHistogramSampleCallback add_histogram_sample_callback
 
ArrayBuffer::Allocatorarray_buffer_allocator
 
const intptr_t * external_references
 
bool allow_atomics_wait
 
bool only_terminate_in_safe_scope
 

Detailed Description

Initial configuration parameters for a new Isolate.

Definition at line 7379 of file v8.h.

Constructor & Destructor Documentation

◆ CreateParams()

CreateParams ( )
inline

Definition at line 7380 of file v8.h.

Field Documentation

◆ add_histogram_sample_callback

AddHistogramSampleCallback add_histogram_sample_callback

Definition at line 7421 of file v8.h.

◆ allow_atomics_wait

bool allow_atomics_wait

Whether calling Atomics.wait (a function that may block) is allowed in this isolate. This can also be configured via SetAllowAtomicsWait.

Definition at line 7441 of file v8.h.

◆ array_buffer_allocator

ArrayBuffer::Allocator* array_buffer_allocator

The ArrayBuffer::Allocator to use for allocating and freeing the backing store of ArrayBuffers.

Definition at line 7427 of file v8.h.

◆ code_event_handler

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 7395 of file v8.h.

◆ constraints

ResourceConstraints constraints

ResourceConstraints to use for the new Isolate.

Definition at line 7400 of file v8.h.

◆ counter_lookup_callback

CounterLookupCallback counter_lookup_callback

Enables the host application to provide a mechanism for recording statistics counters.

Definition at line 7412 of file v8.h.

◆ create_histogram_callback

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 7420 of file v8.h.

◆ external_references

const 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 7435 of file v8.h.

◆ only_terminate_in_safe_scope

bool only_terminate_in_safe_scope

Termination is postponed when there is no active SafeForTerminationScope.

Definition at line 7446 of file v8.h.

◆ snapshot_blob

StartupData* snapshot_blob

Explicitly specify a startup snapshot blob. The embedder owns the blob.

Definition at line 7405 of file v8.h.


The documentation for this struct was generated from the following file: