Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.24 #271

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.24.0 (2024-04-08)
===

* Update mmtk-core to v0.24.0.
* Update Rust toolchain to 1.77.0.

0.23.0 (2024-02-09)
===

Expand Down
10 changes: 5 additions & 5 deletions mmtk/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions mmtk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "mmtk_openjdk"
version = "0.23.0"
version = "0.24.0"
authors = [" <>"]
rust-version = "1.70.0"
rust-version = "1.71.1"
build = "build.rs"
edition = "2021"

Expand Down Expand Up @@ -32,7 +32,7 @@ memoffset = "0.9.0"
# - change branch
# - change repo name
# But other changes including adding/removing whitespaces in commented lines may break the CI.
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "2d3677d6a0099d1ff561f5668bf89b432f7cad00" }
mmtk = { git = "https://github.com/qinsoon/mmtk-core.git", rev = "2186c215d2f038fc3a21e0571a04113b18210067" }
# Uncomment the following to build locally
# mmtk = { path = "../repos/mmtk-core" }

Expand Down
2 changes: 1 addition & 1 deletion mmtk/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.71.1
1.77.0
2 changes: 1 addition & 1 deletion mmtk/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ pub extern "C" fn get_finalized_object() -> ObjectReference {

thread_local! {
/// Cache all the pointers reported by the current thread.
static NMETHOD_SLOTS: RefCell<Vec<Address>> = RefCell::new(vec![]);
static NMETHOD_SLOTS: RefCell<Vec<Address>> = const { RefCell::new(vec![]) };
}

/// Report a list of pointers in nmethod to mmtk.
Expand Down
2 changes: 1 addition & 1 deletion mmtk/src/object_scanning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ fn oop_iterate<const COMPRESSED: bool>(oop: Oop, closure: &mut impl EdgeVisitor<
}

thread_local! {
static CLOSURE: UnsafeCell<*mut u8> = UnsafeCell::new(std::ptr::null_mut());
static CLOSURE: UnsafeCell<*mut u8> = const { UnsafeCell::new(std::ptr::null_mut()) };
}

pub unsafe extern "C" fn scan_object_fn<
Expand Down
Loading