![]() |
v8
5.5.372 (node 7.10.1)
V8 is Google's open source JavaScript engine
|
Namespaces | |
base | |
experimental | |
internal | |
platform | |
Typedefs | |
typedef uint32_t | SnapshotObjectId |
typedef uintptr_t | PersistentContainerValue |
template<class T > | |
using | Handle = Local< T > |
template<class T > | |
using | UniquePersistent = Global< T > |
typedef void(* | AccessorGetterCallback) (Local< String > property, const PropertyCallbackInfo< Value > &info) |
typedef void(* | AccessorNameGetterCallback) (Local< Name > property, const PropertyCallbackInfo< Value > &info) |
typedef void(* | AccessorSetterCallback) (Local< String > property, Local< Value > value, const PropertyCallbackInfo< void > &info) |
typedef void(* | AccessorNameSetterCallback) (Local< Name > property, Local< Value > value, const PropertyCallbackInfo< void > &info) |
typedef void(* | FunctionCallback) (const FunctionCallbackInfo< Value > &info) |
typedef void(* | NamedPropertyGetterCallback) (Local< String > property, const PropertyCallbackInfo< Value > &info) |
typedef void(* | NamedPropertySetterCallback) (Local< String > property, Local< Value > value, const PropertyCallbackInfo< Value > &info) |
typedef void(* | NamedPropertyQueryCallback) (Local< String > property, const PropertyCallbackInfo< Integer > &info) |
typedef void(* | NamedPropertyDeleterCallback) (Local< String > property, const PropertyCallbackInfo< Boolean > &info) |
typedef void(* | NamedPropertyEnumeratorCallback) (const PropertyCallbackInfo< Array > &info) |
typedef void(* | GenericNamedPropertyGetterCallback) (Local< Name > property, const PropertyCallbackInfo< Value > &info) |
typedef void(* | GenericNamedPropertySetterCallback) (Local< Name > property, Local< Value > value, const PropertyCallbackInfo< Value > &info) |
typedef void(* | GenericNamedPropertyQueryCallback) (Local< Name > property, const PropertyCallbackInfo< Integer > &info) |
typedef void(* | GenericNamedPropertyDeleterCallback) (Local< Name > property, const PropertyCallbackInfo< Boolean > &info) |
typedef void(* | GenericNamedPropertyEnumeratorCallback) (const PropertyCallbackInfo< Array > &info) |
typedef void(* | GenericNamedPropertyDefinerCallback) (Local< Name > property, const PropertyDescriptor &desc, const PropertyCallbackInfo< Value > &info) |
typedef void(* | GenericNamedPropertyDescriptorCallback) (Local< Name > property, const PropertyCallbackInfo< Value > &info) |
typedef void(* | IndexedPropertyGetterCallback) (uint32_t index, const PropertyCallbackInfo< Value > &info) |
typedef void(* | IndexedPropertySetterCallback) (uint32_t index, Local< Value > value, const PropertyCallbackInfo< Value > &info) |
typedef void(* | IndexedPropertyQueryCallback) (uint32_t index, const PropertyCallbackInfo< Integer > &info) |
typedef void(* | IndexedPropertyDeleterCallback) (uint32_t index, const PropertyCallbackInfo< Boolean > &info) |
typedef void(* | IndexedPropertyEnumeratorCallback) (const PropertyCallbackInfo< Array > &info) |
typedef void(* | IndexedPropertyDefinerCallback) (uint32_t index, const PropertyDescriptor &desc, const PropertyCallbackInfo< Value > &info) |
typedef void(* | IndexedPropertyDescriptorCallback) (uint32_t index, const PropertyCallbackInfo< Value > &info) |
typedef bool(* | AccessCheckCallback) (Local< Context > accessing_context, Local< Object > accessed_object, Local< Value > data) |
typedef void(* | FatalErrorCallback) (const char *location, const char *message) |
typedef void(* | OOMErrorCallback) (const char *location, bool is_heap_oom) |
typedef void(* | MessageCallback) (Local< Message > message, Local< Value > error) |
typedef void(* | LogEventCallback) (const char *name, int event) |
typedef int *(* | CounterLookupCallback) (const char *name) |
typedef void *(* | CreateHistogramCallback) (const char *name, int min, int max, size_t buckets) |
typedef void(* | AddHistogramSampleCallback) (void *histogram, int sample) |
typedef void(* | BeforeCallEnteredCallback) (Isolate *) |
typedef void(* | CallCompletedCallback) (Isolate *) |
typedef void(* | DeprecatedCallCompletedCallback) () |
typedef void(* | PromiseRejectCallback) (PromiseRejectMessage message) |
typedef void(* | MicrotasksCompletedCallback) (Isolate *) |
typedef void(* | MicrotaskCallback) (void *data) |
typedef void(* | FailedAccessCheckCallback) (Local< Object > target, AccessType type, Local< Value > data) |
typedef bool(* | AllowCodeGenerationFromStringsCallback) (Local< Context > context) |
typedef void(* | GCCallback) (GCType type, GCCallbackFlags flags) |
typedef void(* | InterruptCallback) (Isolate *isolate, void *data) |
typedef void(* | FunctionEntryHook) (uintptr_t function, uintptr_t return_addr_location) |
typedef void(* | JitCodeEventHandler) (const JitCodeEvent *event) |
typedef bool(* | EntropySource) (unsigned char *buffer, size_t length) |
typedef uintptr_t(* | ReturnAddressLocationResolver) (uintptr_t return_addr_location) |
Functions | |
void V8_EXPORT | RegisterExtension (Extension *extension) |
V8_INLINE Local< Primitive > | Undefined (Isolate *isolate) |
V8_INLINE Local< Primitive > | Null (Isolate *isolate) |
V8_INLINE Local< Boolean > | True (Isolate *isolate) |
V8_INLINE Local< Boolean > | False (Isolate *isolate) |
template<class T > | |
Maybe< T > | Nothing () |
template<class T > | |
Maybe< T > | Just (const T &t) |
Debugger support for the V8 JavaScript engine.
This header contains a set of experimental V8 APIs. We hope these will become a part of standard V8, but they may also be removed if we deem the experiment to not be successul.
Profiler support for the V8 JavaScript engine.
Testing support for the V8 JavaScript engine.
Support for Persistent containers.
C++11 embedders can use STL containers with Global values, but pre-C++11 does not support the required move semantic and hence may want these container classes.
The v8 JavaScript engine.
typedef void(* AccessorGetterCallback) (Local< String > property, const PropertyCallbackInfo< Value > &info) |
Accessor[Getter|Setter] are used as callback functions when setting|getting a particular property. See Object and ObjectTemplate's method SetAccessor.
typedef void(* AccessorNameGetterCallback) (Local< Name > property, const PropertyCallbackInfo< Value > &info) |
typedef void(* AccessorNameSetterCallback) (Local< Name > property, Local< Value > value, const PropertyCallbackInfo< void > &info) |
typedef void(* AccessorSetterCallback) (Local< String > property, Local< Value > value, const PropertyCallbackInfo< void > &info) |
typedef void(* AddHistogramSampleCallback) (void *histogram, int sample) |
Callback to check if code generation from strings is allowed. See Context::AllowCodeGenerationFromStrings.
typedef void*(* CreateHistogramCallback) (const char *name, int min, int max, size_t buckets) |
typedef bool(* EntropySource) (unsigned char *buffer, size_t length) |
typedef void(* FailedAccessCheckCallback) (Local< Object > target, AccessType type, Local< Value > data) |
typedef void(* FatalErrorCallback) (const char *location, const char *message) |
typedef void(* FunctionCallback) (const FunctionCallbackInfo< Value > &info) |
typedef void(* FunctionEntryHook) (uintptr_t function, uintptr_t return_addr_location) |
FunctionEntryHook is the type of the profile entry hook called at entry to any generated function when function-level profiling is enabled.
function | the address of the function that's being entered. |
return_addr_location | points to a location on stack where the machine return address resides. This can be used to identify the caller of function , and/or modified to divert execution when function exits. |
typedef void(* GCCallback) (GCType type, GCCallbackFlags flags) |
typedef void(* GenericNamedPropertyDefinerCallback) (Local< Name > property, const PropertyDescriptor &desc, const PropertyCallbackInfo< Value > &info) |
Interceptor for defineProperty requests on an object.
Use info.GetReturnValue()
to indicate whether the request was intercepted or not. If the definer successfully intercepts the request, i.e., if the request should not be further executed, call info.GetReturnValue().Set(value)
. If the definer did not intercept the request, i.e., if the request should be handled as if no interceptor is present, do not not call Set()
.
property | The name of the property for which the request was intercepted. |
desc | The property descriptor which is used to define the property if the request is not intercepted. |
info | Information about the intercepted request, such as isolate, receiver, return value, or whether running in ‘'use strict’mode. See PropertyCallbackInfo`. |
See also ObjectTemplate::SetHandler
.
typedef void(* GenericNamedPropertyDeleterCallback) (Local< Name > property, const PropertyCallbackInfo< Boolean > &info) |
Interceptor for delete requests on an object.
Use info.GetReturnValue()
to indicate whether the request was intercepted or not. If the deleter successfully intercepts the request, i.e., if the request should not be further executed, call info.GetReturnValue().Set(value)
with a boolean value
. The value
is used as the return value of delete
.
property | The name of the property for which the request was intercepted. |
info | Information about the intercepted request, such as isolate, receiver, return value, or whether running in ‘'use strict’mode. See PropertyCallbackInfo`. |
delete
, i.e., throw in strict mode instead of returning false, use info.ShouldThrowOnError()
to determine if you are in strict mode.See also ObjectTemplate::SetHandler.
typedef void(* GenericNamedPropertyDescriptorCallback) (Local< Name > property, const PropertyCallbackInfo< Value > &info) |
Interceptor for getOwnPropertyDescriptor requests on an object.
Use info.GetReturnValue().Set()
to set the return value of the intercepted request. The return value must be an object that can be converted to a PropertyDescriptor, e.g., a v8::value
returned from v8::Object::getOwnPropertyDescriptor
.
property | The name of the property for which the request was intercepted. \info Information about the intercepted request, such as isolate, receiver, return value, or whether running in ‘'use strict’mode. See PropertyCallbackInfo`. |
See also ObjectTemplate::SetHandler
.
typedef void(* GenericNamedPropertyEnumeratorCallback) (const PropertyCallbackInfo< Array > &info) |
typedef void(* GenericNamedPropertyGetterCallback) (Local< Name > property, const PropertyCallbackInfo< Value > &info) |
Interceptor for get requests on an object.
Use info.GetReturnValue().Set()
to set the return value of the intercepted get request.
property | The name of the property for which the request was intercepted. |
info | Information about the intercepted request, such as isolate, receiver, return value, or whether running in 'use strict ' mode. See PropertyCallbackInfo . |
See also ObjectTemplate::SetHandler
.
typedef void(* GenericNamedPropertyQueryCallback) (Local< Name > property, const PropertyCallbackInfo< Integer > &info) |
Intercepts all requests that query the attributes of the property, e.g., getOwnPropertyDescriptor(), propertyIsEnumerable(), and defineProperty().
Use info.GetReturnValue().Set(value)
to set the property attributes. The value is an interger encoding a v8::PropertyAttribute
.
property | The name of the property for which the request was intercepted. |
info | Information about the intercepted request, such as isolate, receiver, return value, or whether running in ‘'use strict’mode. See PropertyCallbackInfo`. |
hasOwnProperty()
can trigger this interceptor depending on the state of the object.See also ObjectTemplate::SetHandler.
typedef void(* GenericNamedPropertySetterCallback) (Local< Name > property, Local< Value > value, const PropertyCallbackInfo< Value > &info) |
Interceptor for set requests on an object.
Use info.GetReturnValue()
to indicate whether the request was intercepted or not. If the setter successfully intercepts the request, i.e., if the request should not be further executed, call info.GetReturnValue().Set(value)
. If the setter did not intercept the request, i.e., if the request should be handled as if no interceptor is present, do not not call Set()
.
property | The name of the property for which the request was intercepted. |
value | The value which the property will have if the request is not intercepted. |
info | Information about the intercepted request, such as isolate, receiver, return value, or whether running in ‘'use strict’mode. See PropertyCallbackInfo`. |
See also ObjectTemplate::SetHandler.
typedef void(* IndexedPropertyDefinerCallback) (uint32_t index, const PropertyDescriptor &desc, const PropertyCallbackInfo< Value > &info) |
typedef void(* IndexedPropertyDeleterCallback) (uint32_t index, const PropertyCallbackInfo< Boolean > &info) |
typedef void(* IndexedPropertyDescriptorCallback) (uint32_t index, const PropertyCallbackInfo< Value > &info) |
typedef void(* IndexedPropertyEnumeratorCallback) (const PropertyCallbackInfo< Array > &info) |
typedef void(* IndexedPropertyGetterCallback) (uint32_t index, const PropertyCallbackInfo< Value > &info) |
typedef void(* IndexedPropertyQueryCallback) (uint32_t index, const PropertyCallbackInfo< Integer > &info) |
typedef void(* IndexedPropertySetterCallback) (uint32_t index, Local< Value > value, const PropertyCallbackInfo< Value > &info) |
typedef void(* InterruptCallback) (Isolate *isolate, void *data) |
typedef void(* JitCodeEventHandler) (const JitCodeEvent *event) |
typedef void(* LogEventCallback) (const char *name, int event) |
typedef void(* NamedPropertyDeleterCallback) (Local< String > property, const PropertyCallbackInfo< Boolean > &info) |
typedef void(* NamedPropertyEnumeratorCallback) (const PropertyCallbackInfo< Array > &info) |
typedef void(* NamedPropertyGetterCallback) (Local< String > property, const PropertyCallbackInfo< Value > &info) |
NamedProperty[Getter|Setter] are used as interceptors on object. See ObjectTemplate::SetNamedPropertyHandler.
typedef void(* NamedPropertyQueryCallback) (Local< String > property, const PropertyCallbackInfo< Integer > &info) |
Returns a non-empty handle if the interceptor intercepts the request. The result is an integer encoding property attributes (like v8::None, v8::DontEnum, etc.)
typedef void(* OOMErrorCallback) (const char *location, bool is_heap_oom) |
typedef uintptr_t PersistentContainerValue |
typedef void(* PromiseRejectCallback) (PromiseRejectMessage message) |
typedef uintptr_t(* ReturnAddressLocationResolver) (uintptr_t return_addr_location) |
ReturnAddressLocationResolver is used as a callback function when v8 is resolving the location of a return address on the stack. Profilers that change the return address on the stack can use this to resolve the stack location to whereever the profiler stashed the original return address.
return_addr_location | A location on stack where a machine return address resides. |
typedef uint32_t SnapshotObjectId |
Definition at line 19 of file v8-profiler.h.
using UniquePersistent = Global<T> |
enum AccessControl |
Access control specifications.
Some accessors should be accessible across contexts. These accessors have an explicit access control parameter which specifies the kind of cross-context access that should be allowed.
TODO(dcarney): Remove PROHIBITS_OVERWRITING as it is now unused.
Enumerator | |
---|---|
DEFAULT | |
ALL_CAN_READ | |
ALL_CAN_WRITE | |
PROHIBITS_OVERWRITING |
enum AccessType |
enum AllocationAction |
|
strong |
|
strong |
enum DebugEvent |
Enumerator | |
---|---|
Break | |
Exception | |
NewFunction | |
BeforeCompile | |
AfterCompile | |
CompileError | |
AsyncTaskEvent |
Definition at line 16 of file v8-debug.h.
enum GCCallbackFlags |
GCCallbackFlags is used to notify additional information about the GC callback.
enum GCType |
Applications can register callback functions which will be called before and after certain garbage collection operations. Allocations are not allowed in the callback functions, you therefore cannot manipulate objects (set or delete properties for example) since it is possible such operations will result in the allocation of objects.
Enumerator | |
---|---|
kGCTypeScavenge | |
kGCTypeMarkSweepCompact | |
kGCTypeIncrementalMarking | |
kGCTypeProcessWeakCallbacks | |
kGCTypeAll |
|
strong |
|
strong |
enum JitCodeEventOptions |
|
strong |
Keys/Properties filter enums:
KeyCollectionMode limits the range of collected properties. kOwnOnly limits the collected properties to the given Object only. kIncludesPrototypes will include all keys of the objects's prototype chain as well.
Enumerator | |
---|---|
kOwnOnly | |
kIncludePrototypes |
|
strong |
Memory pressure level for the MemoryPressureNotification. kNone hints V8 that there is no memory pressure. kModerate hints V8 to speed up incremental garbage collection at the cost of of higher latency due to garbage collection pauses. kCritical hints V8 to free memory as soon as possible. Garbage collection pauses at this level will be large.
Enumerator | |
---|---|
kNone | |
kModerate | |
kCritical |
|
strong |
Policy for running microtasks:
Enumerator | |
---|---|
kExplicit | |
kScoped | |
kAuto |
|
strong |
enum ObjectSpace |
enum PromiseRejectEvent |
enum PropertyAttribute |
enum PropertyFilter |
|
strong |
Configuration flags for v8::NamedPropertyHandlerConfiguration or v8::IndexedPropertyHandlerConfiguration.
enum RAILMode |
Option flags passed to the SetRAILMode function. See documentation https://developers.google.com/web/tools/chrome-devtools/ profile/evaluate-performance/rail
Enumerator | |
---|---|
PERFORMANCE_RESPONSE | |
PERFORMANCE_ANIMATION | |
PERFORMANCE_IDLE | |
PERFORMANCE_LOAD |
|
strong |