1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00

perf: use jemalloc as global allocator (#18957)

Follow up to https://github.com/denoland/deno/pull/18875 that enables
`jemalloc` as a global allocator for the Deno CLI.
This commit is contained in:
Bartek Iwańczuk 2023-05-03 00:36:33 +02:00 committed by Levente Kurusa
parent 6f36535584
commit 3b36c36715
No known key found for this signature in database
GPG key ID: 9F72F3C05BA137C4
8 changed files with 42 additions and 11 deletions

11
Cargo.lock generated
View file

@ -770,6 +770,7 @@ dependencies = [
"text-size",
"text_lines",
"thiserror",
"tikv-jemallocator",
"tokio",
"tokio-util",
"tower-lsp",
@ -5141,6 +5142,16 @@ dependencies = [
"libc",
]
[[package]]
name = "tikv-jemallocator"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20612db8a13a6c06d57ec83953694185a367e16945f66565e8028d2c0bd76979"
dependencies = [
"libc",
"tikv-jemalloc-sys",
]
[[package]]
name = "time"
version = "0.3.20"

View file

@ -133,6 +133,8 @@ tar = "=0.4.38"
tempfile = "3.4.0"
thiserror = "=1.0.38"
tokio = { version = "1.25.0", features = ["full"] }
tikv-jemallocator = "0.5.0"
tikv-jemalloc-sys = "0.5.3"
tokio-rustls = "0.23.3"
tokio-util = "0.7.4"
tower-lsp = { version = "=0.17.0", features = ["proposed"] }

View file

@ -120,6 +120,9 @@ winapi = { workspace = true, features = ["knownfolders", "mswsock", "objbase", "
[target.'cfg(unix)'.dependencies]
nix.workspace = true
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator.workspace = true
[dev-dependencies]
deno_bench_util.workspace = true
dotenv = "=0.15.0"

View file

@ -26,6 +26,13 @@ mod version;
mod watcher;
mod worker;
#[cfg(not(target_env = "msvc"))]
use tikv_jemallocator::Jemalloc;
#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
use crate::args::flags_from_vec;
use crate::args::DenoSubcommand;
use crate::args::Flags;

View file

@ -24,7 +24,8 @@ fn napi_create_async_work(
execute,
complete,
};
*result = transmute::<Box<AsyncWork>, _>(Box::new(work));
let work_box = Box::new(work);
*result = transmute::<*mut AsyncWork, _>(Box::into_raw(work_box));
Ok(())
}

View file

@ -40,7 +40,7 @@ url.workspace = true
v8.workspace = true
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemalloc-sys = "0.5"
tikv-jemalloc-sys.workspace = true
[[example]]
name = "http_bench_json_ops"

View file

@ -49,7 +49,6 @@ unsafe extern "C" fn complete(
ptr::null(),
&mut _result
));
assert_napi_ok!(napi_delete_reference(env, baton.func));
assert_napi_ok!(napi_delete_async_work(env, baton.task));
}
@ -73,7 +72,7 @@ extern "C" fn test_async_work(
&mut resource_name,
));
let mut async_work: napi_async_work = ptr::null_mut();
let async_work: napi_async_work = ptr::null_mut();
let mut func: napi_ref = ptr::null_mut();
assert_napi_ok!(napi_create_reference(env, args[0], 1, &mut func));
@ -82,6 +81,8 @@ extern "C" fn test_async_work(
func,
task: async_work,
});
let mut async_work = baton.task;
let baton_ptr = Box::into_raw(baton) as *mut c_void;
assert_napi_ok!(napi_create_async_work(
env,
@ -89,9 +90,12 @@ extern "C" fn test_async_work(
resource_name,
Some(execute),
Some(complete),
Box::into_raw(baton) as *mut c_void,
baton_ptr,
&mut async_work,
));
let mut baton = unsafe { Box::from_raw(baton_ptr as *mut Baton) };
baton.task = async_work;
Box::into_raw(baton);
assert_napi_ok!(napi_queue_async_work(env, async_work));
ptr::null_mut()

View file

@ -28,9 +28,12 @@ Deno.test("napi typedarray float64", function () {
assertEquals(Math.round(10 * doubleResult[2]) / 10, -6.6);
});
Deno.test("napi typedarray external", function () {
assertEquals(
new Uint8Array(typedarray.test_external()),
new Uint8Array([0, 1, 2, 3]),
);
});
// TODO(bartlomieju): this test causes segfaults when used with jemalloc.
// Node documentation provides a hint that this function is not supported by
// other runtime like electron.
// Deno.test("napi typedarray external", function () {
// assertEquals(
// new Uint8Array(typedarray.test_external()),
// new Uint8Array([0, 1, 2, 3]),
// );
// });