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 {
156 "Use kGCTypeMinorMarkSweep instead of kGCTypeMinorMarkCompact.") =
165
188};
189
190using GCCallback = void (*)(GCType type, GCCallbackFlags flags);
191
192using InterruptCallback = void (*)(Isolate* isolate, void* data);
193
201using NearHeapLimitCallback = size_t (*)(void* data, size_t current_heap_limit,
202 size_t initial_heap_limit);
203
207#if defined(V8_OS_WIN)
208using UnhandledExceptionCallback =
209 int (*)(_EXCEPTION_POINTERS* exception_pointers);
210#endif
211
212// --- Counters Callbacks ---
213
214using CounterLookupCallback = int* (*)(const char* name);
215
216using CreateHistogramCallback = void* (*)(const char* name, int min, int max,
217 size_t buckets);
218
219using AddHistogramSampleCallback = void (*)(void* histogram, int sample);
220
221// --- Exceptions ---
222
223using FatalErrorCallback = void (*)(const char* location, const char* message);
224
226 bool is_heap_oom = false;
227 const char* detail = nullptr;
228};
229
230using OOMErrorCallback = void (*)(const char* location,
231 const OOMDetails& details);
232
233using MessageCallback = void (*)(Local<Message> message, Local<Value> data);
234
235// --- Tracing ---
236
237enum LogEventStatus : int { kStart = 0, kEnd = 1, kStamp = 2 };
238using LogEventCallback = void (*)(const char* name,
239 int /* LogEventStatus */ status);
240
241// --- Crashkeys Callback ---
242enum class CrashKeyId {
245 kMapSpaceFirstPageAddress V8_ENUM_DEPRECATE_SOON("Map space got removed"),
249 kDumpType,
252};
253
254using AddCrashKeyCallback = void (*)(CrashKeyId id, const std::string& value);
255
256// --- Enter/Leave Script Callback ---
259
260// --- AllowCodeGenerationFromStrings callbacks ---
261
267 Local<String> source);
268
270 // If true, proceed with the codegen algorithm. Otherwise, block it.
271 bool codegen_allowed = false;
272 // Overwrite the original source with this string, if present.
273 // Use the original source if empty.
274 // This field is considered only if codegen_allowed is true.
276};
277
288
289// --- Failed Access Check Callback ---
290
292 AccessType type, Local<Value> data);
293
300 Local<Value> source);
303 Local<Value> source,
304 bool is_code_like);
305
306// --- WebAssembly compilation callbacks ---
308
310 Local<String> source);
311
312// --- Callback for APIs defined on v8-supported objects, but implemented
313// by the embedder. Example: WebAssembly.{compile|instantiate}Streaming ---
315
316// --- Callback for WebAssembly.compileStreaming ---
318
320
321// --- Callback called when async WebAssembly operations finish ---
323 Isolate* isolate, Local<Context> context, Local<Promise::Resolver> resolver,
324 Local<Value> result, WasmAsyncSuccess success);
325
326// --- Callback for loading source map file for Wasm profiling support
328 const char* name);
329
330// --- Callback for checking if WebAssembly imported strings are enabled ---
332
333// --- Callback for checking if the SharedArrayBuffer constructor is enabled ---
335 bool (*)(Local<Context> context);
336
337// --- Callback for checking if the compile hints magic comments are enabled ---
339 bool (*)(Local<Context> context);
340
341// --- Callback for checking if WebAssembly JSPI is enabled ---
342using WasmJSPIEnabledCallback = bool (*)(Local<Context> context);
343
371 Local<Context> context, Local<Data> host_defined_options,
372 Local<Value> resource_name, Local<String> specifier,
373 Local<FixedArray> import_attributes);
374
380using CompileHintCallback = bool (*)(int, void*);
381
393 Local<Module> module,
394 Local<Object> meta);
395
408 MaybeLocal<Context> (*)(Local<Context> initiator_context);
409
418 Local<Value> error,
419 Local<Array> sites);
420
421#if defined(V8_OS_WIN)
456using FilterETWSessionByURLCallback =
457 bool (*)(Local<Context> context, const std::string& etw_filter_payload);
458#endif // V8_OS_WIN
459
460} // namespace v8
461
462#endif // INCLUDE_V8_ISOLATE_CALLBACKS_H_
Definition: v8-function-callback.h:109
Definition: v8-isolate.h:210
Definition: v8-local-handle.h:258
Definition: v8-local-handle.h:619
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:231
ModifyCodeGenerationFromStringsResult(*)(Local< Context > context, Local< Value > source) ModifyCodeGenerationFromStringsCallback
Definition: v8-callbacks.h:300
bool(*)(Local< Context > context) SharedArrayBufferConstructorEnabledCallback
Definition: v8-callbacks.h:335
GCCallbackFlags
Definition: v8-callbacks.h:180
@ kGCCallbackScheduleIdleGarbageCollection
Definition: v8-callbacks.h:187
@ kGCCallbackFlagConstructRetainedObjectInfos
Definition: v8-callbacks.h:182
@ kGCCallbackFlagForced
Definition: v8-callbacks.h:183
@ kNoGCCallbackFlags
Definition: v8-callbacks.h:181
@ kGCCallbackFlagCollectAllExternalMemory
Definition: v8-callbacks.h:186
@ kGCCallbackFlagSynchronousPhantomCallbackProcessing
Definition: v8-callbacks.h:184
@ kGCCallbackFlagCollectAllAvailableGarbage
Definition: v8-callbacks.h:185
CrashKeyId
Definition: v8-callbacks.h:242
@ kSnapshotChecksumCalculated
@ kCodeSpaceFirstPageAddress
@ kReadonlySpaceFirstPageAddress
LogEventStatus
Definition: v8-callbacks.h:237
@ kEnd
Definition: v8-callbacks.h:237
@ kStart
Definition: v8-callbacks.h:237
@ kStamp
Definition: v8-callbacks.h:237
bool(*)(Local< Context > context) WasmJSPIEnabledCallback
Definition: v8-callbacks.h:342
void(*)(Isolate *isolate, Local< Context > context, Local< Promise::Resolver > resolver, Local< Value > result, WasmAsyncSuccess success) WasmAsyncResolvePromiseCallback
Definition: v8-callbacks.h:324
bool(*)(const FunctionCallbackInfo< Value > &) ExtensionCallback
Definition: v8-callbacks.h:307
bool(*)(Local< Context > context) JavaScriptCompileHintsMagicEnabledCallback
Definition: v8-callbacks.h:339
void(*)(const FunctionCallbackInfo< Value > &) WasmStreamingCallback
Definition: v8-callbacks.h:317
void *(*)(const char *name, int min, int max, size_t buckets) CreateHistogramCallback
Definition: v8-callbacks.h:217
void(*)(Local< Context > context, Local< Module > module, Local< Object > meta) HostInitializeImportMetaObjectCallback
Definition: v8-callbacks.h:394
void(*)(Local< Message > message, Local< Value > data) MessageCallback
Definition: v8-callbacks.h:233
void(*)(GCType type, GCCallbackFlags flags) GCCallback
Definition: v8-callbacks.h:190
void(*)(CrashKeyId id, const std::string &value) AddCrashKeyCallback
Definition: v8-callbacks.h:254
void(*)(Isolate *isolate, void *data) InterruptCallback
Definition: v8-callbacks.h:192
bool(*)(Local< Context > context, Local< String > source) AllowCodeGenerationFromStringsCallback
Definition: v8-callbacks.h:267
void(*)(Isolate *) CallCompletedCallback
Definition: v8-callbacks.h:258
void(*)(void *histogram, int sample) AddHistogramSampleCallback
Definition: v8-callbacks.h:219
size_t(*)(void *data, size_t current_heap_limit, size_t initial_heap_limit) NearHeapLimitCallback
Definition: v8-callbacks.h:202
void(*)(Isolate *) BeforeCallEnteredCallback
Definition: v8-callbacks.h:257
bool(*)(Local< Context > context, Local< String > source) AllowWasmCodeGenerationCallback
Definition: v8-callbacks.h:310
void(*)(const char *location, const char *message) FatalErrorCallback
Definition: v8-callbacks.h:223
WasmAsyncSuccess
Definition: v8-callbacks.h:319
GCType
Definition: v8-callbacks.h:152
@ kGCTypeMinorMarkSweep
Definition: v8-callbacks.h:154
@ kGCTypeScavenge
Definition: v8-callbacks.h:153
@ kGCTypeMinorMarkCompact
Definition: v8-callbacks.h:155
@ kGCTypeProcessWeakCallbacks
Definition: v8-callbacks.h:160
@ kGCTypeMarkSweepCompact
Definition: v8-callbacks.h:158
@ kGCTypeAll
Definition: v8-callbacks.h:161
@ kGCTypeIncrementalMarking
Definition: v8-callbacks.h:159
bool(*)(int, void *) CompileHintCallback
Definition: v8-callbacks.h:380
void(*)(const FunctionCallbackInfo< Value > &) ApiImplementationCallback
Definition: v8-callbacks.h:314
ModifyCodeGenerationFromStringsResult(*)(Local< Context > context, Local< Value > source, bool is_code_like) ModifyCodeGenerationFromStringsCallback2
Definition: v8-callbacks.h:304
void(*)(Local< Object > target, AccessType type, Local< Value > data) FailedAccessCheckCallback
Definition: v8-callbacks.h:292
bool(*)(Local< Context > context) WasmImportedStringsEnabledCallback
Definition: v8-callbacks.h:331
AccessType
Definition: v8-callbacks.h:281
@ ACCESS_SET
Definition: v8-callbacks.h:283
@ ACCESS_HAS
Definition: v8-callbacks.h:284
@ ACCESS_KEYS
Definition: v8-callbacks.h:286
@ ACCESS_GET
Definition: v8-callbacks.h:282
@ ACCESS_DELETE
Definition: v8-callbacks.h:285
void(*)(const char *name, int status) LogEventCallback
Definition: v8-callbacks.h:239
int *(*)(const char *name) CounterLookupCallback
Definition: v8-callbacks.h:214
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:269
bool codegen_allowed
Definition: v8-callbacks.h:271
MaybeLocal< String > modified_source
Definition: v8-callbacks.h:275
Definition: v8-callbacks.h:225
const char * detail
Definition: v8-callbacks.h:227
bool is_heap_oom
Definition: v8-callbacks.h:226
#define V8_DEPRECATED(message)
Definition: v8config.h:572
#define V8_ENUM_DEPRECATE_SOON(message)
Definition: v8config.h:617