Skip to content

Commit 3aaeb30

Browse files
authored
src: allow embedder control of code generation policy
PR-URL: #46368 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 82ee782 commit 3aaeb30

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

src/api/environment.cc

+9-1
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,16 @@ void SetIsolateMiscHandlers(v8::Isolate* isolate, const IsolateSettings& s) {
265265
auto* allow_wasm_codegen_cb = s.allow_wasm_code_generation_callback ?
266266
s.allow_wasm_code_generation_callback : AllowWasmCodeGenerationCallback;
267267
isolate->SetAllowWasmCodeGenerationCallback(allow_wasm_codegen_cb);
268+
269+
auto* modify_code_generation_from_strings_callback =
270+
ModifyCodeGenerationFromStrings;
271+
if (s.flags & ALLOW_MODIFY_CODE_GENERATION_FROM_STRINGS_CALLBACK &&
272+
s.modify_code_generation_from_strings_callback) {
273+
modify_code_generation_from_strings_callback =
274+
s.modify_code_generation_from_strings_callback;
275+
}
268276
isolate->SetModifyCodeGenerationFromStringsCallback(
269-
ModifyCodeGenerationFromStrings);
277+
modify_code_generation_from_strings_callback);
270278

271279
Mutex::ScopedLock lock(node::per_process::cli_options_mutex);
272280
if (per_process::cli_options->get_per_isolate_options()

src/node.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,8 @@ enum IsolateSettingsFlags {
450450
MESSAGE_LISTENER_WITH_ERROR_LEVEL = 1 << 0,
451451
DETAILED_SOURCE_POSITIONS_FOR_PROFILING = 1 << 1,
452452
SHOULD_NOT_SET_PROMISE_REJECTION_CALLBACK = 1 << 2,
453-
SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK = 1 << 3
453+
SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK = 1 << 3,
454+
ALLOW_MODIFY_CODE_GENERATION_FROM_STRINGS_CALLBACK = 1 << 4,
454455
};
455456

456457
struct IsolateSettings {
@@ -468,6 +469,8 @@ struct IsolateSettings {
468469
v8::PromiseRejectCallback promise_reject_callback = nullptr;
469470
v8::AllowWasmCodeGenerationCallback
470471
allow_wasm_code_generation_callback = nullptr;
472+
v8::ModifyCodeGenerationFromStringsCallback2
473+
modify_code_generation_from_strings_callback = nullptr;
471474
};
472475

473476
// Overriding IsolateSettings may produce unexpected behavior

0 commit comments

Comments
 (0)