Skip to content

Commit 3334932

Browse files
authoredFeb 27, 2025··
perf: Use mimalloc on linux (#10113)
**Description:** It's more performant than jemalloc.
1 parent cff6a64 commit 3334932

File tree

4 files changed

+11
-34
lines changed

4 files changed

+11
-34
lines changed
 

‎.changeset/calm-pillows-explain.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
swc_core: minor
3+
swc_malloc: minor
4+
---
5+
6+
perf: Use `mimalloc` on linux

‎Cargo.lock

-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎crates/swc_malloc/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ bench = false
1313

1414
[dependencies]
1515

16-
[target.'cfg(not(target_os = "linux"))'.dependencies]
17-
mimalloc = { version = "0.1" }
16+
[target.'cfg(not(any(target_os = "linux", target_family = "wasm", target_env = "musl")))'.dependencies]
17+
mimalloc = { version = "0.1.43", features = [] }
1818

19-
[target.'cfg(all(target_os = "linux", target_env = "gnu", any(target_arch = "x86_64", target_arch = "aarch64")))'.dependencies]
20-
tikv-jemallocator = { version = "0.5", features = ["disable_initial_exec_tls"] }
19+
[target.'cfg(all(target_os = "linux", not(any(target_family = "wasm", target_env = "musl"))))'.dependencies]
20+
mimalloc = { version = "0.1.43", features = ["local_dynamic_tls"] }

‎crates/swc_malloc/src/lib.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22
//!
33
//! The swc crates related to the node binding should depend on this crate.
44
5-
#[cfg(not(target_os = "linux"))]
5+
#[cfg(not(any(target_family = "wasm", target_env = "musl")))]
66
#[global_allocator]
77
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
8-
9-
#[cfg(all(
10-
target_os = "linux",
11-
target_env = "gnu",
12-
any(target_arch = "x86_64", target_arch = "aarch64")
13-
))]
14-
#[global_allocator]
15-
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;

0 commit comments

Comments
 (0)
Please sign in to comment.