Skip to content

Commit d471810

Browse files
committed
Move to Rust 1.83
1 parent ce09494 commit d471810

7 files changed

+14
-15
lines changed

mmtk/Cargo.lock

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

mmtk/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ probe = "0.5"
3535
# - change branch
3636
# - change repo name
3737
# But other changes including adding/removing whitespaces in commented lines may break the CI.
38-
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "c0f97884234b51b13c8ba5d1563a8e0f592d11c2" }
38+
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "ac80c8de8ac551959839dfaa79e87c1a05a9e89c" }
3939
# Uncomment the following to build locally
4040
# mmtk = { path = "../repos/mmtk-core" }
4141

@@ -72,3 +72,4 @@ pageprotect = []
7272
immix = []
7373
genimmix = []
7474
stickyimmix = []
75+
markcompact = []

mmtk/rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.77.0
1+
1.83.0

mmtk/src/abi.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,9 @@ impl OopDesc {
329329

330330
impl fmt::Debug for OopDesc {
331331
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
332-
let c_string = unsafe { ((*UPCALLS).dump_object_string)(mem::transmute(self)) };
332+
let c_string = unsafe {
333+
((*UPCALLS).dump_object_string)(mem::transmute::<&OopDesc, ObjectReference>(self))
334+
};
333335
let c_str: &CStr = unsafe { CStr::from_ptr(c_string) };
334336
let s: &str = c_str.to_str().unwrap();
335337
write!(f, "{}", s)

mmtk/src/active_plan.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ struct OpenJDKMutatorIterator<'a, const COMPRESSED: bool> {
1212
phantom_data: PhantomData<&'a ()>,
1313
}
1414

15-
impl<'a, const COMPRESSED: bool> OpenJDKMutatorIterator<'a, COMPRESSED> {
15+
impl<const COMPRESSED: bool> OpenJDKMutatorIterator<'_, COMPRESSED> {
1616
fn new() -> Self {
1717
let mut mutators = VecDeque::new();
1818
unsafe {

mmtk/src/api.rs

-6
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,6 @@ pub extern "C" fn total_bytes() -> usize {
235235
with_singleton!(|singleton| memory_manager::total_bytes(singleton))
236236
}
237237

238-
#[no_mangle]
239-
#[cfg(feature = "sanity")]
240-
pub extern "C" fn scan_region() {
241-
with_singleton!(|singleton| memory_manager::scan_region(singleton))
242-
}
243-
244238
#[no_mangle]
245239
pub extern "C" fn handle_user_collection_request(tls: VMMutatorThread) {
246240
with_singleton!(|singleton| {

mmtk/src/object_scanning.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ fn oop_iterate_slow<const COMPRESSED: bool, V: SlotVisitor<S<COMPRESSED>>>(
170170
unsafe {
171171
CLOSURE.with(|x| *x.get() = closure as *mut V as *mut u8);
172172
((*UPCALLS).scan_object)(
173-
mem::transmute(
173+
mem::transmute::<*const unsafe extern "C" fn(Address), *mut libc::c_void>(
174174
scan_object_fn::<COMPRESSED, V> as *const unsafe extern "C" fn(slot: Address),
175175
),
176-
mem::transmute(oop),
176+
mem::transmute::<&OopDesc, ObjectReference>(oop),
177177
tls,
178178
);
179179
}
@@ -235,5 +235,7 @@ pub fn scan_object<const COMPRESSED: bool>(
235235
closure: &mut impl SlotVisitor<S<COMPRESSED>>,
236236
_tls: VMWorkerThread,
237237
) {
238-
unsafe { oop_iterate::<COMPRESSED>(mem::transmute(object), closure) }
238+
unsafe {
239+
oop_iterate::<COMPRESSED>(mem::transmute::<ObjectReference, &OopDesc>(object), closure)
240+
}
239241
}

0 commit comments

Comments
 (0)