Loading...
Searching...
No Matches
v8-callbacks.h
Go to the documentation of this file.
1// Copyright 2021 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef INCLUDE_V8_ISOLATE_CALLBACKS_H_
6#define INCLUDE_V8_ISOLATE_CALLBACKS_H_
7
8#include <stddef.h>
9
10#include <functional>
11#include <string>
12
13#include "cppgc/common.h"
14#include "v8-data.h" // NOLINT(build/include_directory)
15#include "v8-local-handle.h" // NOLINT(build/include_directory)
16#include "v8-promise.h" // NOLINT(build/include_directory)
17#include "v8config.h" // NOLINT(build/include_directory)
18
19#if defined(V8_OS_WIN)
20struct _EXCEPTION_POINTERS;
21#endif
22
23namespace v8 {
24
25template <typename T>
26class FunctionCallbackInfo;
27class Isolate;
28class Message;
29class Module;
30class Object;
31class Promise;
32class ScriptOrModule;
33class String;
34class UnboundScript;
35class Value;
36
43 enum EventType {
50 };
51 // Definition of the code position type. The "POSITION" type means the place
52 // in the source code which are of interest when making stack traces to
53 // pin-point the source location of a stack frame as close as possible.
54 // The "STATEMENT_POSITION" means the place at the beginning of each
55 // statement, and is used to indicate possible break locations.
57
58 // There are three different kinds of CodeType, one for JIT code generated
59 // by the optimizing compiler, one for byte code generated for the
60 // interpreter, and one for code generated from Wasm. For JIT_CODE and
61 // WASM_CODE, |code_start| points to the beginning of jitted assembly code,
62 // while for BYTE_CODE events, |code_start| points to the first bytecode of
63 // the interpreted function.
65
66 // Type of event.
69 // Start of the instructions.
71 // Size of the instructions.
72 size_t code_len;
73 // Script info for CODE_ADDED event.
75 // User-defined data for *_LINE_INFO_* event. It's used to hold the source
76 // code line information which is returned from the
77 // CODE_START_LINE_INFO_RECORDING event. And it's passed to subsequent
78 // CODE_ADD_LINE_POS_INFO and CODE_END_LINE_INFO_RECORDING events.
79 void* user_data;
80
81 struct name_t {
82 // Name of the object associated with the code, note that the string is not
83 // zero-terminated.
84 const char* str;
85 // Number of chars in str.
86 size_t len;
87 };
88
89 struct line_info_t {
90 // PC offset
91 size_t offset;
92 // Code position
93 size_t pos;
94 // The position type.
96 };
97
99 // Source file name.
100 const char* filename;
101 // Length of filename.
103 // Line number table, which maps offsets of JITted code to line numbers of
104 // source file.
106 // Number of entries in the line number table.
108 };
109
111
112 union {
113 // Only valid for CODE_ADDED.
114 struct name_t name;
115
116 // Only valid for CODE_ADD_LINE_POS_INFO
118
119 // New location of instructions. Only valid for CODE_MOVED.
121 };
122
124};
125
131 // Generate callbacks for already existent code.
134
140using JitCodeEventHandler = void (*)(const JitCodeEvent* event);
141
142// --- Garbage Collection Callbacks ---
143
152enum GCType {
162
185};
186
187using GCCallback = void (*)(GCType type, GCCallbackFlags flags);
188
189using InterruptCallback = void (*)(Isolate* isolate, void* data);
190
198using NearHeapLimitCallback = size_t (*)(void* data, size_t current_heap_limit,
199 size_t initial_heap_limit);
200
204#if defined(V8_OS_WIN)
205using UnhandledExceptionCallback =
206 int (*)(_EXCEPTION_POINTERS* exception_pointers);
207#endif
208
209// --- Counters Callbacks ---
210
211using CounterLookupCallback = int* (*)(const char* name);
212
213using CreateHistogramCallback = void* (*)(const char* name, int min, int max,
214 size_t buckets);
215
216using AddHistogramSampleCallback = void (*)(void* histogram, int sample);
217
218// --- Exceptions ---
219
220using FatalErrorCallback = void (*)(const char* location, const char* message);
221
223 bool is_heap_oom = false;
224 const char* detail = nullptr;
225};
226
227using OOMErrorCallback = void (*)(const char* location,
228 const OOMDetails& details);
229
230using MessageCallback = void (*)(Local<Message> message, Local<Value> data);
231
232// --- Tracing ---
233
234enum LogEventStatus : int { kStart = 0, kEnd = 1, kLog = 2 };
235using LogEventCallback = void (*)(const char* name,
236 int /* LogEventStatus */ status);
237
238// --- Crashkeys Callback ---
239enum class CrashKeyId {
242 kMapSpaceFirstPageAddress V8_ENUM_DEPRECATE_SOON("Map space got removed"),
246 kDumpType,
249};
250
251using AddCrashKeyCallback = void (*)(CrashKeyId id, const std::string& value);
252
253// --- Enter/Leave Script Callback ---
256
257// --- Modify Code Generation From Strings Callback ---
259 // If true, proceed with the codegen algorithm. Otherwise, block it.
260 bool codegen_allowed = false;
261 // Overwrite the original source with this string, if present.
262 // Use the original source if empty.
263 // This field is considered only if codegen_allowed is true.
265};
266
273 Local<Value> source);
276 Local<Value> source,
277 bool is_code_like);
278
279// --- Failed Access Check Callback ---
280
291
293 AccessType type, Local<Value> data);
294
295// --- WebAssembly compilation callbacks ---
297
299 Local<String> source);
300
301// --- Callback for APIs defined on v8-supported objects, but implemented
302// by the embedder. Example: WebAssembly.{compile|instantiate}Streaming ---
304
305// --- Callback for WebAssembly.compileStreaming ---
307
309
310// --- Callback called when async WebAssembly operations finish ---
312 Isolate* isolate, Local<Context> context, Local<Promise::Resolver> resolver,
313 Local<Value> result, WasmAsyncSuccess success);
314
315// --- Callback for loading source map file for Wasm profiling support
317 const char* name);
318
319// --- Callback for checking if WebAssembly imported strings are enabled ---
321
322// --- Callback for checking if the SharedArrayBuffer constructor is enabled ---
324 bool (*)(Local<Context> context);
325
326// --- Callback for checking if the compile hints magic comments are enabled ---
328 bool (*)(Local<Context> context);
329
330// --- Callback for checking if WebAssembly JSPI is enabled ---
331using WasmJSPIEnabledCallback = bool (*)(Local<Context> context);
332
337 kSource,
339};
340
368 Local<Context> context, Local<Data> host_defined_options,
369 Local<Value> resource_name, Local<String> specifier,
370 Local<FixedArray> import_attributes);
371
409 Local<Context> context, Local<Data> host_defined_options,
410 Local<Value> resource_name, Local<String> specifier,
411 ModuleImportPhase phase, Local<FixedArray> import_attributes);
412
418using CompileHintCallback = bool (*)(int, void*);
419
431 Local<Module> module,
432 Local<Object> meta);
433
446 MaybeLocal<Context> (*)(Local<Context> initiator_context);
447
456 Local<Value> error,
457 Local<Array> sites);
458
459#if defined(V8_OS_WIN)
494using FilterETWSessionByURLCallback =
495 bool (*)(Local<Context> context, const std::string& etw_filter_payload);
496#endif // V8_OS_WIN
497
498} // namespace v8
499
500#endif // INCLUDE_V8_ISOLATE_CALLBACKS_H_
Definition: v8-function-callback.h:118
Definition: v8-isolate.h:212
Definition: v8-local-handle.h:266
Definition: v8-local-handle.h:632
Definition: libplatform.h:15
void(*)(const JitCodeEvent *event) JitCodeEventHandler
Definition: v8-callbacks.h:140
JitCodeEventOptions
Definition: v8-callbacks.h:129
@ kJitCodeEventEnumExisting
Definition: v8-callbacks.h:132
@ kJitCodeEventDefault
Definition: v8-callbacks.h:130
void(*)(const char *location, const OOMDetails &details) OOMErrorCallback
Definition: v8-callbacks.h:228
ModifyCodeGenerationFromStringsResult(*)(Local< Context > context, Local< Value > source) ModifyCodeGenerationFromStringsCallback
Definition: v8-callbacks.h:273
bool(*)(Local< Context > context) SharedArrayBufferConstructorEnabledCallback
Definition: v8-callbacks.h:324
GCCallbackFlags
Definition: v8-callbacks.h:177
@ kGCCallbackScheduleIdleGarbageCollection
Definition: v8-callbacks.h:184
@ kGCCallbackFlagConstructRetainedObjectInfos
Definition: v8-callbacks.h:179
@ kGCCallbackFlagForced
Definition: v8-callbacks.h:180
@ kNoGCCallbackFlags
Definition: v8-callbacks.h:178
@ kGCCallbackFlagCollectAllExternalMemory
Definition: v8-callbacks.h:183
@ kGCCallbackFlagSynchronousPhantomCallbackProcessing
Definition: v8-callbacks.h:181
@ kGCCallbackFlagCollectAllAvailableGarbage
Definition: v8-callbacks.h:182
CrashKeyId
Definition: v8-callbacks.h:239
@ kSnapshotChecksumCalculated
@ kCodeSpaceFirstPageAddress
@ kReadonlySpaceFirstPageAddress
LogEventStatus
Definition: v8-callbacks.h:234
@ kEnd
Definition: v8-callbacks.h:234
@ kStart
Definition: v8-callbacks.h:234
@ kLog
Definition: v8-callbacks.h:234
bool(*)(Local< Context > context) WasmJSPIEnabledCallback
Definition: v8-callbacks.h:331
void(*)(Isolate *isolate, Local< Context > context, Local< Promise::Resolver > resolver, Local< Value > result, WasmAsyncSuccess success) WasmAsyncResolvePromiseCallback
Definition: v8-callbacks.h:313
bool(*)(const FunctionCallbackInfo< Value > &) ExtensionCallback
Definition: v8-callbacks.h:296
bool(*)(Local< Context > context) JavaScriptCompileHintsMagicEnabledCallback
Definition: v8-callbacks.h:328
void(*)(const FunctionCallbackInfo< Value > &) WasmStreamingCallback
Definition: v8-callbacks.h:306
void *(*)(const char *name, int min, int max, size_t buckets) CreateHistogramCallback
Definition: v8-callbacks.h:214
void(*)(Local< Context > context, Local< Module > module, Local< Object > meta) HostInitializeImportMetaObjectCallback
Definition: v8-callbacks.h:432
void(*)(Local< Message > message, Local< Value > data) MessageCallback
Definition: v8-callbacks.h:230
void(*)(GCType type, GCCallbackFlags flags) GCCallback
Definition: v8-callbacks.h:187
void(*)(CrashKeyId id, const std::string &value) AddCrashKeyCallback
Definition: v8-callbacks.h:251
void(*)(Isolate *isolate, void *data) InterruptCallback
Definition: v8-callbacks.h:189
void(*)(Isolate *) CallCompletedCallback
Definition: v8-callbacks.h:255
void(*)(void *histogram, int sample) AddHistogramSampleCallback
Definition: v8-callbacks.h:216
size_t(*)(void *data, size_t current_heap_limit, size_t initial_heap_limit) NearHeapLimitCallback
Definition: v8-callbacks.h:199
void(*)(Isolate *) BeforeCallEnteredCallback
Definition: v8-callbacks.h:254
bool(*)(Local< Context > context, Local< String > source) AllowWasmCodeGenerationCallback
Definition: v8-callbacks.h:299
void(*)(const char *location, const char *message) FatalErrorCallback
Definition: v8-callbacks.h:220
WasmAsyncSuccess
Definition: v8-callbacks.h:308
GCType
Definition: v8-callbacks.h:152
@ kGCTypeMinorMarkSweep
Definition: v8-callbacks.h:154
@ kGCTypeScavenge
Definition: v8-callbacks.h:153
@ kGCTypeProcessWeakCallbacks
Definition: v8-callbacks.h:157
@ kGCTypeMarkSweepCompact
Definition: v8-callbacks.h:155
@ kGCTypeAll
Definition: v8-callbacks.h:158
@ kGCTypeIncrementalMarking
Definition: v8-callbacks.h:156
bool(*)(int, void *) CompileHintCallback
Definition: v8-callbacks.h:418
void(*)(const FunctionCallbackInfo< Value > &) ApiImplementationCallback
Definition: v8-callbacks.h:303
ModifyCodeGenerationFromStringsResult(*)(Local< Context > context, Local< Value > source, bool is_code_like) ModifyCodeGenerationFromStringsCallback2
Definition: v8-callbacks.h:277
void(*)(Local< Object > target, AccessType type, Local< Value > data) FailedAccessCheckCallback
Definition: v8-callbacks.h:293
bool(*)(Local< Context > context) WasmImportedStringsEnabledCallback
Definition: v8-callbacks.h:320
AccessType
Definition: v8-callbacks.h:284
@ ACCESS_SET
Definition: v8-callbacks.h:286
@ ACCESS_HAS
Definition: v8-callbacks.h:287
@ ACCESS_KEYS
Definition: v8-callbacks.h:289
@ ACCESS_GET
Definition: v8-callbacks.h:285
@ ACCESS_DELETE
Definition: v8-callbacks.h:288
void(*)(const char *name, int status) LogEventCallback
Definition: v8-callbacks.h:236
int *(*)(const char *name) CounterLookupCallback
Definition: v8-callbacks.h:211
ModuleImportPhase
Definition: v8-callbacks.h:336
Definition: v8-callbacks.h:89
size_t offset
Definition: v8-callbacks.h:91
size_t pos
Definition: v8-callbacks.h:93
PositionType position_type
Definition: v8-callbacks.h:95
Definition: v8-callbacks.h:81
const char * str
Definition: v8-callbacks.h:84
size_t len
Definition: v8-callbacks.h:86
Definition: v8-callbacks.h:98
const char * filename
Definition: v8-callbacks.h:100
const line_info_t * line_number_table
Definition: v8-callbacks.h:105
size_t filename_size
Definition: v8-callbacks.h:102
size_t line_number_table_size
Definition: v8-callbacks.h:107
Definition: v8-callbacks.h:42
PositionType
Definition: v8-callbacks.h:56
@ POSITION
Definition: v8-callbacks.h:56
@ STATEMENT_POSITION
Definition: v8-callbacks.h:56
CodeType
Definition: v8-callbacks.h:64
@ JIT_CODE
Definition: v8-callbacks.h:64
@ BYTE_CODE
Definition: v8-callbacks.h:64
@ WASM_CODE
Definition: v8-callbacks.h:64
struct name_t name
Definition: v8-callbacks.h:114
Local< UnboundScript > script
Definition: v8-callbacks.h:74
struct line_info_t line_info
Definition: v8-callbacks.h:117
Isolate * isolate
Definition: v8-callbacks.h:123
void * user_data
Definition: v8-callbacks.h:79
wasm_source_info_t * wasm_source_info
Definition: v8-callbacks.h:110
void * new_code_start
Definition: v8-callbacks.h:120
EventType
Definition: v8-callbacks.h:43
@ CODE_END_LINE_INFO_RECORDING
Definition: v8-callbacks.h:49
@ CODE_ADDED
Definition: v8-callbacks.h:44
@ CODE_MOVED
Definition: v8-callbacks.h:45
@ CODE_ADD_LINE_POS_INFO
Definition: v8-callbacks.h:47
@ CODE_REMOVED
Definition: v8-callbacks.h:46
@ CODE_START_LINE_INFO_RECORDING
Definition: v8-callbacks.h:48
EventType type
Definition: v8-callbacks.h:67
size_t code_len
Definition: v8-callbacks.h:72
void * code_start
Definition: v8-callbacks.h:70
CodeType code_type
Definition: v8-callbacks.h:68
Definition: v8-callbacks.h:258
bool codegen_allowed
Definition: v8-callbacks.h:260
MaybeLocal< String > modified_source
Definition: v8-callbacks.h:264
Definition: v8-callbacks.h:222
const char * detail
Definition: v8-callbacks.h:224
bool is_heap_oom
Definition: v8-callbacks.h:223
#define V8_ENUM_DEPRECATE_SOON(message)
Definition: v8config.h:640