refactor(core): simplify module loading code (#10385)

General cleanup of module loading code, tried to reduce indentation in various methods
on "JsRuntime" to improve readability.

Added "JsRuntime::handle_scope" helper function, which returns a "v8::HandleScope".
This was done to reduce a code pattern that happens all over the "deno_core".

Additionally if event loop hangs during loading of dynamic modules a list of
currently pending dynamic imports is printed.
This commit is contained in:
Bartek Iwańczuk 2021-04-28 18:28:46 +02:00 committed by GitHub
parent 6a33d2073f
commit b28f9445aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 166 additions and 171 deletions

View file

@ -31,8 +31,7 @@ pub fn bench_js_sync(
setup: impl FnOnce(&mut JsRuntime), setup: impl FnOnce(&mut JsRuntime),
) { ) {
let mut runtime = create_js_runtime(setup); let mut runtime = create_js_runtime(setup);
let context = runtime.global_context(); let scope = &mut runtime.handle_scope();
let scope = &mut v8::HandleScope::with_context(runtime.v8_isolate(), context);
// Increase JS iterations if profiling for nicer flamegraphs // Increase JS iterations if profiling for nicer flamegraphs
let inner_iters = 1000 * if is_profiling() { 10000 } else { 1 }; let inner_iters = 1000 * if is_profiling() { 10000 } else { 1 };

View file

@ -5,3 +5,5 @@ timeout loop 3
timeout loop 4 timeout loop 4
timeout loop 5 timeout loop 5
error: Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promise. error: Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promise.
Pending dynamic modules:
- [WILDCARD]tests/tla3/b.js

View file

@ -36,8 +36,7 @@ async fn op_pi_async(
pub fn bench_runtime_js(b: &mut Bencher, src: &str) { pub fn bench_runtime_js(b: &mut Bencher, src: &str) {
let mut runtime = create_js_runtime(); let mut runtime = create_js_runtime();
let context = runtime.global_context(); let scope = &mut runtime.handle_scope();
let scope = &mut v8::HandleScope::with_context(runtime.v8_isolate(), context);
let code = v8::String::new(scope, src).unwrap(); let code = v8::String::new(scope, src).unwrap();
let script = v8::Script::compile(scope, code, None).unwrap(); let script = v8::Script::compile(scope, code, None).unwrap();
b.iter(|| { b.iter(|| {

View file

@ -495,6 +495,10 @@ impl ModuleMap {
None None
} }
pub fn get_info_by_id(&self, id: &ModuleId) -> Option<&ModuleInfo> {
self.info.get(id)
}
} }
#[cfg(test)] #[cfg(test)]

View file

@ -36,6 +36,7 @@ use log::debug;
use std::any::Any; use std::any::Any;
use std::cell::RefCell; use std::cell::RefCell;
use std::collections::HashMap; use std::collections::HashMap;
use std::collections::VecDeque;
use std::convert::TryFrom; use std::convert::TryFrom;
use std::ffi::c_void; use std::ffi::c_void;
use std::mem::forget; use std::mem::forget;
@ -86,6 +87,7 @@ pub struct JsRuntime {
} }
struct DynImportModEvaluate { struct DynImportModEvaluate {
load_id: ModuleLoadId,
module_id: ModuleId, module_id: ModuleId,
promise: v8::Global<v8::Promise>, promise: v8::Global<v8::Promise>,
module: v8::Global<v8::Module>, module: v8::Global<v8::Module>,
@ -104,7 +106,7 @@ pub(crate) struct JsRuntimeState {
pub(crate) js_macrotask_cb: Option<v8::Global<v8::Function>>, pub(crate) js_macrotask_cb: Option<v8::Global<v8::Function>>,
pub(crate) pending_promise_exceptions: pub(crate) pending_promise_exceptions:
HashMap<v8::Global<v8::Promise>, v8::Global<v8::Value>>, HashMap<v8::Global<v8::Promise>, v8::Global<v8::Value>>,
pending_dyn_mod_evaluate: HashMap<ModuleLoadId, DynImportModEvaluate>, pending_dyn_mod_evaluate: VecDeque<DynImportModEvaluate>,
pending_mod_evaluate: Option<ModEvaluate>, pending_mod_evaluate: Option<ModEvaluate>,
pub(crate) js_error_create_fn: Rc<JsErrorCreateFn>, pub(crate) js_error_create_fn: Rc<JsErrorCreateFn>,
pub(crate) pending_ops: FuturesUnordered<PendingOpFuture>, pub(crate) pending_ops: FuturesUnordered<PendingOpFuture>,
@ -279,7 +281,7 @@ impl JsRuntime {
isolate.set_slot(Rc::new(RefCell::new(JsRuntimeState { isolate.set_slot(Rc::new(RefCell::new(JsRuntimeState {
global_context: Some(global_context), global_context: Some(global_context),
pending_promise_exceptions: HashMap::new(), pending_promise_exceptions: HashMap::new(),
pending_dyn_mod_evaluate: HashMap::new(), pending_dyn_mod_evaluate: VecDeque::new(),
pending_mod_evaluate: None, pending_mod_evaluate: None,
js_recv_cb: None, js_recv_cb: None,
js_macrotask_cb: None, js_macrotask_cb: None,
@ -321,6 +323,11 @@ impl JsRuntime {
self.v8_isolate.as_mut().unwrap() self.v8_isolate.as_mut().unwrap()
} }
pub fn handle_scope(&mut self) -> v8::HandleScope {
let context = self.global_context();
v8::HandleScope::with_context(self.v8_isolate(), context)
}
fn setup_isolate(mut isolate: v8::OwnedIsolate) -> v8::OwnedIsolate { fn setup_isolate(mut isolate: v8::OwnedIsolate) -> v8::OwnedIsolate {
isolate.set_capture_stack_trace_for_uncaught_exceptions(true, 10); isolate.set_capture_stack_trace_for_uncaught_exceptions(true, 10);
isolate.set_promise_reject_callback(bindings::promise_reject_callback); isolate.set_promise_reject_callback(bindings::promise_reject_callback);
@ -352,8 +359,7 @@ impl JsRuntime {
/// Grabs a reference to core.js' handleAsyncMsgFromRust /// Grabs a reference to core.js' handleAsyncMsgFromRust
fn init_recv_cb(&mut self) { fn init_recv_cb(&mut self) {
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
// Get Deno.core.handleAsyncMsgFromRust // Get Deno.core.handleAsyncMsgFromRust
let code = let code =
@ -394,9 +400,7 @@ impl JsRuntime {
js_filename: &str, js_filename: &str,
js_source: &str, js_source: &str,
) -> Result<(), AnyError> { ) -> Result<(), AnyError> {
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let source = v8::String::new(scope, js_source).unwrap(); let source = v8::String::new(scope, js_source).unwrap();
let name = v8::String::new(scope, js_filename).unwrap(); let name = v8::String::new(scope, js_filename).unwrap();
@ -591,7 +595,15 @@ impl JsRuntime {
if has_pending_ops || has_pending_dyn_imports { if has_pending_ops || has_pending_dyn_imports {
// pass, will be polled again // pass, will be polled again
} else { } else {
let msg = "Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promise."; let mut msg = "Dynamically imported module evaluation is still pending but there are no pending ops. This situation is often caused by unresolved promise.
Pending dynamic modules:\n".to_string();
for pending_evaluate in &state.pending_dyn_mod_evaluate {
let module_info = state
.module_map
.get_info_by_id(&pending_evaluate.module_id)
.unwrap();
msg.push_str(&format!("- {}", module_info.name.as_str()));
}
return Poll::Ready(Err(generic_error(msg))); return Poll::Ready(Err(generic_error(msg)));
} }
} }
@ -687,8 +699,7 @@ impl JsRuntime {
source: &str, source: &str,
) -> Result<ModuleId, AnyError> { ) -> Result<ModuleId, AnyError> {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let name_str = v8::String::new(scope, name).unwrap(); let name_str = v8::String::new(scope, name).unwrap();
let source_str = v8::String::new(scope, source).unwrap(); let source_str = v8::String::new(scope, source).unwrap();
@ -745,9 +756,7 @@ impl JsRuntime {
/// be a different type if `RuntimeOptions::js_error_create_fn` has been set. /// be a different type if `RuntimeOptions::js_error_create_fn` has been set.
fn mod_instantiate(&mut self, id: ModuleId) -> Result<(), AnyError> { fn mod_instantiate(&mut self, id: ModuleId) -> Result<(), AnyError> {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let tc_scope = &mut v8::TryCatch::new(scope); let tc_scope = &mut v8::TryCatch::new(scope);
let module = state_rc let module = state_rc
@ -786,8 +795,6 @@ impl JsRuntime {
id: ModuleId, id: ModuleId,
) -> Result<(), AnyError> { ) -> Result<(), AnyError> {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
let context = self.global_context();
let context1 = self.global_context();
let module_handle = state_rc let module_handle = state_rc
.borrow() .borrow()
@ -796,8 +803,7 @@ impl JsRuntime {
.expect("ModuleInfo not found"); .expect("ModuleInfo not found");
let status = { let status = {
let scope = let scope = &mut self.handle_scope();
&mut v8::HandleScope::with_context(self.v8_isolate(), context);
let module = module_handle.get(scope); let module = module_handle.get(scope);
module.get_status() module.get_status()
}; };
@ -818,7 +824,7 @@ impl JsRuntime {
// For more details see: // For more details see:
// https://github.com/denoland/deno/issues/4908 // https://github.com/denoland/deno/issues/4908
// https://v8.dev/features/top-level-await#module-execution-order // https://v8.dev/features/top-level-await#module-execution-order
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context1); let scope = &mut self.handle_scope();
let module = v8::Local::new(scope, &module_handle); let module = v8::Local::new(scope, &module_handle);
let maybe_value = module.evaluate(scope); let maybe_value = module.evaluate(scope);
@ -843,6 +849,7 @@ impl JsRuntime {
let module_global = v8::Global::new(scope, module); let module_global = v8::Global::new(scope, module);
let dyn_import_mod_evaluate = DynImportModEvaluate { let dyn_import_mod_evaluate = DynImportModEvaluate {
load_id,
module_id: id, module_id: id,
promise: promise_global, promise: promise_global,
module: module_global, module: module_global,
@ -850,7 +857,7 @@ impl JsRuntime {
state state
.pending_dyn_mod_evaluate .pending_dyn_mod_evaluate
.insert(load_id, dyn_import_mod_evaluate); .push_back(dyn_import_mod_evaluate);
} else { } else {
assert!(status == v8::ModuleStatus::Errored); assert!(status == v8::ModuleStatus::Errored);
} }
@ -875,9 +882,7 @@ impl JsRuntime {
id: ModuleId, id: ModuleId,
) -> mpsc::Receiver<Result<(), AnyError>> { ) -> mpsc::Receiver<Result<(), AnyError>> {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let module = state_rc let module = state_rc
.borrow() .borrow()
@ -941,9 +946,7 @@ impl JsRuntime {
fn dyn_import_error(&mut self, id: ModuleLoadId, err: AnyError) { fn dyn_import_error(&mut self, id: ModuleLoadId, err: AnyError) {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let resolver_handle = state_rc let resolver_handle = state_rc
.borrow_mut() .borrow_mut()
@ -967,10 +970,7 @@ impl JsRuntime {
fn dyn_import_done(&mut self, id: ModuleLoadId, mod_id: ModuleId) { fn dyn_import_done(&mut self, id: ModuleLoadId, mod_id: ModuleId) {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
let context = self.global_context(); let scope = &mut self.handle_scope();
debug!("dyn_import_done {} {:?}", id, mod_id);
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let resolver_handle = state_rc let resolver_handle = state_rc
.borrow_mut() .borrow_mut()
@ -1006,30 +1006,32 @@ impl JsRuntime {
} }
loop { loop {
let r = { let poll_result = state_rc
let mut state = state_rc.borrow_mut(); .borrow_mut()
state.preparing_dyn_imports.poll_next_unpin(cx) .preparing_dyn_imports
}; .poll_next_unpin(cx);
match r {
Poll::Pending | Poll::Ready(None) => {
// There are no active dynamic import loaders, or none are ready.
return Poll::Ready(Ok(()));
}
Poll::Ready(Some(prepare_poll)) => {
let dyn_import_id = prepare_poll.0;
let prepare_result = prepare_poll.1;
match prepare_result { if let Poll::Ready(Some(prepare_poll)) = poll_result {
Ok(load) => { let dyn_import_id = prepare_poll.0;
let state = state_rc.borrow_mut(); let prepare_result = prepare_poll.1;
state.pending_dyn_imports.push(load.into_future());
} match prepare_result {
Err(err) => { Ok(load) => {
self.dyn_import_error(dyn_import_id, err); state_rc
} .borrow_mut()
.pending_dyn_imports
.push(load.into_future());
}
Err(err) => {
self.dyn_import_error(dyn_import_id, err);
} }
} }
// Continue polling for more prepared dynamic imports.
continue;
} }
// There are no active dynamic import loads, or none are ready.
return Poll::Ready(Ok(()));
} }
} }
@ -1044,55 +1046,57 @@ impl JsRuntime {
} }
loop { loop {
let poll_result = { let poll_result = state_rc
let mut state = state_rc.borrow_mut(); .borrow_mut()
state.pending_dyn_imports.poll_next_unpin(cx) .pending_dyn_imports
}; .poll_next_unpin(cx);
match poll_result { if let Poll::Ready(Some(load_stream_poll)) = poll_result {
Poll::Pending | Poll::Ready(None) => { let maybe_result = load_stream_poll.0;
// There are no active dynamic import loaders, or none are ready. let mut load = load_stream_poll.1;
return Poll::Ready(Ok(())); let dyn_import_id = load.id;
}
Poll::Ready(Some(load_stream_poll)) => {
let maybe_result = load_stream_poll.0;
let mut load = load_stream_poll.1;
let dyn_import_id = load.id;
if let Some(load_stream_result) = maybe_result { if let Some(load_stream_result) = maybe_result {
match load_stream_result { match load_stream_result {
Ok(info) => { Ok(info) => {
// A module (not necessarily the one dynamically imported) has been // A module (not necessarily the one dynamically imported) has been
// fetched. Create and register it, and if successful, poll for the // fetched. Create and register it, and if successful, poll for the
// next recursive-load event related to this dynamic import. // next recursive-load event related to this dynamic import.
match self.register_during_load(info, &mut load) { match self.register_during_load(info, &mut load) {
Ok(()) => { Ok(()) => {
// Keep importing until it's fully drained // Keep importing until it's fully drained
let state = state_rc.borrow_mut(); state_rc
state.pending_dyn_imports.push(load.into_future()); .borrow_mut()
} .pending_dyn_imports
Err(err) => self.dyn_import_error(dyn_import_id, err), .push(load.into_future());
} }
} Err(err) => self.dyn_import_error(dyn_import_id, err),
Err(err) => {
// A non-javascript error occurred; this could be due to a an invalid
// module specifier, or a problem with the source map, or a failure
// to fetch the module source code.
self.dyn_import_error(dyn_import_id, err)
} }
} }
} else { Err(err) => {
// The top-level module from a dynamic import has been instantiated. // A non-javascript error occurred; this could be due to a an invalid
// Load is done. // module specifier, or a problem with the source map, or a failure
let module_id = load.root_module_id.unwrap(); // to fetch the module source code.
let result = self.mod_instantiate(module_id); self.dyn_import_error(dyn_import_id, err)
if let Err(err) = result {
self.dyn_import_error(dyn_import_id, err);
} }
self.dyn_mod_evaluate(dyn_import_id, module_id)?;
} }
} else {
// The top-level module from a dynamic import has been instantiated.
// Load is done.
let module_id = load.root_module_id.unwrap();
let result = self.mod_instantiate(module_id);
if let Err(err) = result {
self.dyn_import_error(dyn_import_id, err);
}
self.dyn_mod_evaluate(dyn_import_id, module_id)?;
} }
// Continue polling for more ready dynamic imports.
continue;
} }
// There are no active dynamic import loads, or none are ready.
return Poll::Ready(Ok(()));
} }
} }
@ -1112,89 +1116,81 @@ impl JsRuntime {
fn evaluate_pending_module(&mut self) { fn evaluate_pending_module(&mut self) {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
let context = self.global_context(); let maybe_module_evaluation =
{ state_rc.borrow_mut().pending_mod_evaluate.take();
let scope =
&mut v8::HandleScope::with_context(self.v8_isolate(), context);
let mut state = state_rc.borrow_mut(); if maybe_module_evaluation.is_none() {
return;
}
if let Some(module_evaluation) = state.pending_mod_evaluate.as_ref() { let module_evaluation = maybe_module_evaluation.unwrap();
let promise = module_evaluation.promise.get(scope); let scope = &mut self.handle_scope();
let mut sender = module_evaluation.sender.clone();
let promise_state = promise.state();
match promise_state { let promise = module_evaluation.promise.get(scope);
v8::PromiseState::Pending => { let mut sender = module_evaluation.sender.clone();
// pass, poll_event_loop will decide if let promise_state = promise.state();
// runtime would be woken soon
} match promise_state {
v8::PromiseState::Fulfilled => { v8::PromiseState::Pending => {
state.pending_mod_evaluate.take(); // NOTE: `poll_event_loop` will decide if
scope.perform_microtask_checkpoint(); // runtime would be woken soon
// Receiver end might have been already dropped, ignore the result state_rc.borrow_mut().pending_mod_evaluate = Some(module_evaluation);
let _ = sender.try_send(Ok(()));
}
v8::PromiseState::Rejected => {
let exception = promise.result(scope);
state.pending_mod_evaluate.take();
drop(state);
scope.perform_microtask_checkpoint();
let err1 = exception_to_err_result::<()>(scope, exception, false)
.map_err(|err| attach_handle_to_error(scope, err, exception))
.unwrap_err();
// Receiver end might have been already dropped, ignore the result
let _ = sender.try_send(Err(err1));
}
}
} }
}; v8::PromiseState::Fulfilled => {
scope.perform_microtask_checkpoint();
// Receiver end might have been already dropped, ignore the result
let _ = sender.try_send(Ok(()));
}
v8::PromiseState::Rejected => {
let exception = promise.result(scope);
scope.perform_microtask_checkpoint();
let err1 = exception_to_err_result::<()>(scope, exception, false)
.map_err(|err| attach_handle_to_error(scope, err, exception))
.unwrap_err();
// Receiver end might have been already dropped, ignore the result
let _ = sender.try_send(Err(err1));
}
}
} }
fn evaluate_dyn_imports(&mut self) { fn evaluate_dyn_imports(&mut self) {
let state_rc = Self::state(self.v8_isolate()); let state_rc = Self::state(self.v8_isolate());
loop { loop {
let context = self.global_context(); let maybe_pending_dyn_evaluate =
state_rc.borrow_mut().pending_dyn_mod_evaluate.pop_front();
if maybe_pending_dyn_evaluate.is_none() {
break;
}
let maybe_result = { let maybe_result = {
let scope = let scope = &mut self.handle_scope();
&mut v8::HandleScope::with_context(self.v8_isolate(), context); let pending_dyn_evaluate = maybe_pending_dyn_evaluate.unwrap();
let mut state = state_rc.borrow_mut(); let module_id = pending_dyn_evaluate.module_id;
if let Some(&dyn_import_id) = let promise = pending_dyn_evaluate.promise.get(scope);
state.pending_dyn_mod_evaluate.keys().next() let _module = pending_dyn_evaluate.module.get(scope);
{ let promise_state = promise.state();
let handle = state
.pending_dyn_mod_evaluate
.remove(&dyn_import_id)
.unwrap();
drop(state);
let module_id = handle.module_id; match promise_state {
let promise = handle.promise.get(scope); v8::PromiseState::Pending => {
let _module = handle.module.get(scope); state_rc
.borrow_mut()
let promise_state = promise.state(); .pending_dyn_mod_evaluate
.push_back(pending_dyn_evaluate);
match promise_state { None
v8::PromiseState::Pending => { }
state_rc v8::PromiseState::Fulfilled => {
.borrow_mut() Some(Ok((pending_dyn_evaluate.load_id, module_id)))
.pending_dyn_mod_evaluate }
.insert(dyn_import_id, handle); v8::PromiseState::Rejected => {
None let exception = promise.result(scope);
} let err1 = exception_to_err_result::<()>(scope, exception, false)
v8::PromiseState::Fulfilled => Some(Ok((dyn_import_id, module_id))), .map_err(|err| attach_handle_to_error(scope, err, exception))
v8::PromiseState::Rejected => { .unwrap_err();
let exception = promise.result(scope); Some(Err((pending_dyn_evaluate.load_id, err1)))
let err1 = exception_to_err_result::<()>(scope, exception, false)
.map_err(|err| attach_handle_to_error(scope, err, exception))
.unwrap_err();
Some(Err((dyn_import_id, err1)))
}
} }
} else {
None
} }
}; };
@ -1387,9 +1383,7 @@ impl JsRuntime {
let handle = state.pending_promise_exceptions.remove(&key).unwrap(); let handle = state.pending_promise_exceptions.remove(&key).unwrap();
drop(state); drop(state);
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let exception = v8::Local::new(scope, handle); let exception = v8::Local::new(scope, handle);
exception_to_err_result(scope, exception, true) exception_to_err_result(scope, exception, true)
} }
@ -1408,8 +1402,7 @@ impl JsRuntime {
let js_recv_cb_handle = state_rc.borrow().js_recv_cb.clone().unwrap(); let js_recv_cb_handle = state_rc.borrow().js_recv_cb.clone().unwrap();
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
// We return async responses to JS in unbounded batches (may change), // We return async responses to JS in unbounded batches (may change),
// each batch is a flat vector of tuples: // each batch is a flat vector of tuples:
@ -1449,8 +1442,7 @@ impl JsRuntime {
None => return Ok(()), None => return Ok(()),
}; };
let context = self.global_context(); let scope = &mut self.handle_scope();
let scope = &mut v8::HandleScope::with_context(self.v8_isolate(), context);
let js_macrotask_cb = js_macrotask_cb_handle.get(scope); let js_macrotask_cb = js_macrotask_cb_handle.get(scope);
// Repeatedly invoke macrotask callback until it returns true (done), // Repeatedly invoke macrotask callback until it returns true (done),

View file

@ -33,8 +33,7 @@ fn create_js_runtime() -> JsRuntime {
pub fn bench_runtime_js(b: &mut Bencher, src: &str) { pub fn bench_runtime_js(b: &mut Bencher, src: &str) {
let mut runtime = create_js_runtime(); let mut runtime = create_js_runtime();
let context = runtime.global_context(); let scope = &mut runtime.handle_scope();
let scope = &mut v8::HandleScope::with_context(runtime.v8_isolate(), context);
let code = v8::String::new(scope, src).unwrap(); let code = v8::String::new(scope, src).unwrap();
let script = v8::Script::compile(scope, code, None).unwrap(); let script = v8::Script::compile(scope, code, None).unwrap();
b.iter(|| { b.iter(|| {