Skip to content

Commit ab0676d

Browse files
committed
update jemalloc to 5.3.0 (#23)
Signed-off-by: Jay Lee <[email protected]>
1 parent 2706fb3 commit ab0676d

33 files changed

+2121
-462
lines changed

.gitmodules

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
[submodule "jemalloc-sys/jemalloc"]
22
path = jemalloc-sys/jemalloc
3-
url = https://github.com/tikv/jemalloc
4-
branch = v5.2.x
3+
url = https://github.com/jemalloc/jemalloc

Cargo.toml

+1-58
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,2 @@
1-
[package]
2-
name = "tikv-jemallocator"
3-
# Make sure to update the version in the README as well:
4-
version = "0.4.3"
5-
authors = [
6-
"Alex Crichton <[email protected]>",
7-
"Gonzalo Brito Gadeschi <[email protected]>",
8-
"Simon Sapin <[email protected]>",
9-
"Steven Fackler <[email protected]>",
10-
"The TiKV Project Developers",
11-
]
12-
license = "MIT/Apache-2.0"
13-
readme = "README.md"
14-
keywords = ["allocator", "jemalloc"]
15-
categories = ["memory-management", "api-bindings"]
16-
repository = "https://github.com/tikv/jemallocator"
17-
homepage = "https://github.com/tikv/jemallocator"
18-
documentation = "https://docs.rs/tikv-jemallocator"
19-
description = """
20-
A Rust allocator backed by jemalloc
21-
"""
22-
edition = "2018"
23-
24-
[badges]
25-
travis-ci = { repository = "tikv/jemallocator" }
26-
codecov = { repository = "tikv/jemallocator" }
27-
is-it-maintained-issue-resolution = { repository = "tikv/jemallocator" }
28-
is-it-maintained-open-issues = { repository = "tikv/jemallocator" }
29-
maintenance = { status = "actively-developed" }
30-
31-
[lib]
32-
test = false
33-
bench = false
34-
351
[workspace]
36-
members = ["systest", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys" ]
37-
38-
[dependencies]
39-
tikv-jemalloc-sys = { path = "jemalloc-sys", version = "0.4.0", default-features = false }
40-
libc = { version = "^0.2.8", default-features = false }
41-
42-
[dev-dependencies]
43-
paste = "1"
44-
tikv-jemalloc-ctl = { path = "jemalloc-ctl", version = "0.4" }
45-
46-
[features]
47-
default = ["background_threads_runtime_support"]
48-
alloc_trait = []
49-
profiling = ["tikv-jemalloc-sys/profiling"]
50-
debug = ["tikv-jemalloc-sys/debug"]
51-
stats = ["tikv-jemalloc-sys/stats"]
52-
background_threads_runtime_support = ["tikv-jemalloc-sys/background_threads_runtime_support"]
53-
background_threads = ["tikv-jemalloc-sys/background_threads"]
54-
unprefixed_malloc_on_supported_platforms = ["tikv-jemalloc-sys/unprefixed_malloc_on_supported_platforms"]
55-
disable_initial_exec_tls = ["tikv-jemalloc-sys/disable_initial_exec_tls"]
56-
57-
[package.metadata.docs.rs]
58-
features = []
59-
rustdoc-args = [ "--cfg", "jemallocator_docs" ]
2+
members = ["jemallocator", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To use `tikv-jemallocator` add it as a dependency:
2828
[dependencies]
2929

3030
[target.'cfg(not(target_env = "msvc"))'.dependencies]
31-
tikv-jemallocator = "0.4.0"
31+
tikv-jemallocator = "0.4.3"
3232
```
3333

3434
To set `tikv_jemallocator::Jemalloc` as the global allocator add this to your project:

ci/run.sh

-4
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,6 @@ case "${TARGET}" in
6666
;;
6767
esac
6868

69-
if rustc --version | grep -v nightly >/dev/null; then
70-
# systest can't be built on nightly
71-
cargo test --target "${TARGET}" -p systest
72-
fi
7369
cargo test --target "${TARGET}" --manifest-path jemallocator-global/Cargo.toml
7470
cargo test --target "${TARGET}" \
7571
--manifest-path jemallocator-global/Cargo.toml \

jemalloc-ctl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-jemalloc-ctl"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = [
55
"Steven Fackler <[email protected]>",
66
"Gonzalo Brito Gadeschi <[email protected]>",
@@ -31,7 +31,7 @@ libc = { version = "0.2", default-features = false }
3131
paste = "1"
3232

3333
[dev-dependencies]
34-
tikv-jemallocator = { path = "..", version = "0.4.0" }
34+
tikv-jemallocator = { path = "../jemallocator", version = "0.4.0" }
3535

3636
[features]
3737
default = []

jemalloc-ctl/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ option! {
169169
/// use tikv_jemalloc_ctl::max_background_threads;
170170
/// let m = max_background_threads::mib().unwrap();
171171
/// println!("max_background_threads: {}", m.read().unwrap());
172-
/// m.write(0).unwrap();
173-
/// assert_eq!(m.read().unwrap(), 0);
172+
/// m.write(2).unwrap();
173+
/// assert_eq!(m.read().unwrap(), 2);
174174
/// #
175175
/// # } // #[cfg(..)]
176176
/// # }

jemalloc-ctl/src/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ macro_rules! types {
2626
Ok([<$id _mib>](Self::NAME.$name_to_mib()?))
2727
}
2828

29-
/// Key [`::keys::Name`].
29+
/// Key [`crate::keys::Name`].
3030
pub fn name() -> &'static crate::keys::Name {
3131
Self::NAME
3232
}

jemalloc-ctl/src/opt.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ option! {
166166
}
167167

168168
option! {
169-
lg_tcache_max[ str: b"opt.lg_tcache_max\0", non_str: 2 ] => libc::size_t |
169+
tcache_max[ str: b"opt.tcache_max\0", non_str: 2 ] => libc::size_t |
170170
ops: r |
171171
docs:
172172
/// Maximum size class (log base 2) to cache in the thread-specific cache
@@ -183,11 +183,11 @@ option! {
183183
/// #
184184
/// # fn main() {
185185
/// use tikv_jemalloc_ctl::opt;
186-
/// let lg_tcache_max = opt::lg_tcache_max::read().unwrap();
187-
/// println!("max cached allocation size: {}", 1 << lg_tcache_max);
186+
/// let tcache_max = opt::tcache_max::read().unwrap();
187+
/// println!("max cached allocation size: {}", tcache_max);
188188
/// # }
189189
/// ```
190-
mib_docs: /// See [`lg_tcache_max`].
190+
mib_docs: /// See [`tcache_max`].
191191
}
192192

193193
option! {

jemalloc-ctl/src/stats.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Global allocator statistics.
22
//!
33
//! `jemalloc` tracks a wide variety of statistics. Many of them are cached, and
4-
//! only refreshed when the `jemalloc` "epoch" is advanced. See the [`::epoch`] type
4+
//! only refreshed when the `jemalloc` "epoch" is advanced. See the [`crate::epoch`] type
55
//! for more information.
66
77
option! {
@@ -11,7 +11,7 @@ option! {
1111
/// Total number of bytes allocated by the application.
1212
///
1313
/// This statistic is cached, and is only refreshed when the epoch is
14-
/// advanced. See the [`::epoch`] type for more information.
14+
/// advanced. See the [`crate::epoch`] type for more information.
1515
///
1616
/// This corresponds to `stats.allocated` in jemalloc's API.
1717
///
@@ -46,7 +46,7 @@ option! {
4646
/// value returned by [`allocated`].
4747
///
4848
/// This statistic is cached, and is only refreshed when the epoch is
49-
/// advanced. See the [`::epoch`] type for more information.
49+
/// advanced. See the [`crate::epoch`] type for more information.
5050
///
5151
/// This corresponds to `stats.active` in jemalloc's API.
5252
///
@@ -78,7 +78,7 @@ option! {
7878
/// Total number of bytes dedicated to `jemalloc` metadata.
7979
///
8080
/// This statistic is cached, and is only refreshed when the epoch is
81-
/// advanced. See the [`::epoch`] type for more information.
81+
/// advanced. See the [`crate::epoch`] type for more information.
8282
///
8383
/// This corresponds to `stats.metadata` in jemalloc's API.
8484
///
@@ -116,7 +116,7 @@ option! {
116116
/// value returned by [`active`].
117117
///
118118
/// This statistic is cached, and is only refreshed when the epoch is
119-
/// advanced. See the [`::epoch`] type for more information.
119+
/// advanced. See the [`crate::epoch`] type for more information.
120120
///
121121
/// This corresponds to `stats.resident` in jemalloc's API.
122122
///
@@ -151,7 +151,7 @@ option! {
151151
/// larger than the value returned by [`active`].
152152
///
153153
/// This statistic is cached, and is only refreshed when the epoch is
154-
/// advanced. See the [`::epoch`] type for more information.
154+
/// advanced. See the [`crate::epoch`] type for more information.
155155
///
156156
/// This corresponds to `stats.mapped` in jemalloc's API.
157157
///
@@ -186,7 +186,7 @@ option! {
186186
/// excluded from mapped memory statistics, e.g. [`mapped`].
187187
///
188188
/// This statistic is cached, and is only refreshed when the epoch is
189-
/// advanced. See the [`::epoch`] type for more information.
189+
/// advanced. See the [`crate::epoch`] type for more information.
190190
///
191191
/// This corresponds to `stats.retained` in jemalloc's API.
192192
///

jemalloc-ctl/src/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ option! {
99
docs:
1010
/// Access to the total number of bytes allocated by the current thread.
1111
///
12-
/// Unlike [`::stats::allocated`], the value returned by this type is not the
12+
/// Unlike [`crate::stats::allocated`], the value returned by this type is not the
1313
/// number of bytes *currently* allocated, but rather the number of bytes
1414
/// that have *ever* been allocated by this thread.
1515
///

jemalloc-sys/Cargo.toml

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-jemalloc-sys"
3-
version = "0.4.3+5.2.1-patched.2"
3+
version = "0.4.3+5.3.0"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Gonzalo Brito Gadeschi <[email protected]>",
@@ -20,16 +20,11 @@ Rust FFI bindings to jemalloc
2020
edition = "2018"
2121

2222
[badges]
23-
travis-ci = { repository = "tikv/jemallocator" }
2423
codecov = { repository = "tikv/jemallocator" }
2524
is-it-maintained-issue-resolution = { repository = "tikv/jemallocator" }
2625
is-it-maintained-open-issues = { repository = "tikv/jemallocator" }
2726
maintenance = { status = "actively-developed" }
2827

29-
[lib]
30-
test = false
31-
bench = false
32-
3328
[dependencies]
3429
libc = { version = "^0.2.8", default-features = false }
3530

jemalloc-sys/build.rs

+10-29
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,7 @@ use std::fs;
1313
use std::path::{Path, PathBuf};
1414
use std::process::Command;
1515

16-
// `jemalloc` is known not to work on these targets:
17-
const UNSUPPORTED_TARGETS: &[&str] = &[
18-
"rumprun",
19-
"bitrig",
20-
"emscripten",
21-
"fuchsia",
22-
"redox",
23-
"wasm32",
24-
];
25-
26-
// `jemalloc-sys` is not tested on these targets in CI:
27-
const UNTESTED_TARGETS: &[&str] = &["openbsd", "msvc"];
28-
29-
// `jemalloc`'s background_thread support is known not to work on these targets:
30-
const NO_BG_THREAD_TARGETS: &[&str] = &["musl"];
31-
32-
// targets that don't support unprefixed `malloc`
33-
//
34-
// “it was found that the `realpath` function in libc would allocate with libc malloc
35-
// (not jemalloc malloc), and then the standard library would free with jemalloc free,
36-
// causing a segfault.”
37-
// https://github.com/rust-lang/rust/commit/e3b414d8612314e74e2b0ebde1ed5c6997d28e8d
38-
// https://github.com/rust-lang/rust/commit/536011d929ecbd1170baf34e09580e567c971f95
39-
// https://github.com/rust-lang/rust/commit/9f3de647326fbe50e0e283b9018ab7c41abccde3
40-
// https://github.com/rust-lang/rust/commit/ed015456a114ae907a36af80c06f81ea93182a24
41-
const NO_UNPREFIXED_MALLOC: &[&str] = &["android", "dragonfly", "musl", "darwin"];
16+
include!("src/env.rs");
4217

4318
macro_rules! info {
4419
($($args:tt)*) => { println!($($args)*) }
@@ -78,7 +53,11 @@ fn main() {
7853
let mut use_prefix =
7954
env::var("CARGO_FEATURE_UNPREFIXED_MALLOC_ON_SUPPORTED_PLATFORMS").is_err();
8055

81-
if !use_prefix && NO_UNPREFIXED_MALLOC.iter().any(|i| target.contains(i)) {
56+
if !use_prefix
57+
&& NO_UNPREFIXED_MALLOC_TARGETS
58+
.iter()
59+
.any(|i| target.contains(i))
60+
{
8261
warning!(
8362
"Unprefixed `malloc` requested on unsupported platform `{}` => using prefixed `malloc`",
8463
target
@@ -164,7 +143,9 @@ fn main() {
164143
.env("CFLAGS", cflags.clone())
165144
.env("LDFLAGS", cflags.clone())
166145
.env("CPPFLAGS", cflags)
167-
.arg("--disable-cxx");
146+
.arg("--disable-cxx")
147+
.arg("--enable-doc=no")
148+
.arg("--enable-shared=no");
168149

169150
if target.contains("ios") {
170151
// newer iOS deviced have 16kb page sizes:
@@ -307,7 +288,7 @@ fn main() {
307288
if target.contains("android") {
308289
println!("cargo:rustc-link-lib=gcc");
309290
} else if !target.contains("windows") {
310-
println!("cargo:rustc-link-lib=pthread");
291+
println!("cargo:rustc-link-arg=-pthread");
311292
}
312293
// GCC may generate a __atomic_exchange_1 library call which requires -latomic
313294
// during the final linking. https://github.com/riscv-collab/riscv-gcc/issues/12

jemalloc-sys/configure/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.2.1-2-g172143a2979d9d948035423ce347e35cd1388fc3
1+
5.3.0-0-g54eaed1d8b56b1aa528be3bdd1877e59c56fa90c

0 commit comments

Comments
 (0)