Lines Matching defs:JitCodeEvent
40 struct JitCodeEvent { struct
41 enum EventType {
54 enum PositionType { POSITION, STATEMENT_POSITION };
62 enum CodeType { BYTE_CODE, JIT_CODE, WASM_CODE };
65 EventType type;
66 CodeType code_type;
68 void* code_start;
70 size_t code_len;
72 Local<UnboundScript> script;
77 void* user_data;
79 struct name_t {
87 struct line_info_t {
96 struct wasm_source_info_t {
125 * Option flags passed to the SetJitCodeEventHandler function. argument
138 using JitCodeEventHandler = void (*)(const JitCodeEvent* event); argument