Skip to content

Commit 4ca4edb

Browse files
committed
Move to Rust 1.83
1 parent 443a668 commit 4ca4edb

File tree

5 files changed

+26
-22
lines changed

5 files changed

+26
-22
lines changed

mmtk/Cargo.lock

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

mmtk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ features = ["is_mmtk_object", "object_pinning", "sticky_immix_non_moving_nursery
3737

3838
# Uncomment the following lines to use mmtk-core from the official repository.
3939
git = "https://github.com/mmtk/mmtk-core.git"
40-
rev = "e8ff7c63754a385047c4f1066af37a7b7ca1cd9d"
40+
rev = "ac80c8de8ac551959839dfaa79e87c1a05a9e89c"
4141

4242
# Uncomment the following line to use mmtk-core from a local repository.
4343
#path = "../../mmtk-core"

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/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ extern crate log;
66
extern crate probe;
77

88
use std::collections::HashSet;
9-
use std::panic::PanicInfo;
9+
use std::panic::PanicHookInfo;
1010
use std::sync::Mutex;
1111
use std::thread::ThreadId;
1212

@@ -95,7 +95,7 @@ pub(crate) fn is_gc_thread(thread_id: ThreadId) -> bool {
9595
gc_threads.contains(&thread_id)
9696
}
9797

98-
fn handle_gc_thread_panic(panic_info: &PanicInfo) {
98+
fn handle_gc_thread_panic(panic_info: &PanicHookInfo) {
9999
eprintln!("ERROR: An MMTk GC thread panicked. This is a bug.");
100100
eprintln!("{panic_info}");
101101

mmtk/src/weak_proc.rs

+17-13
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,23 @@ fn general_update_weak_table(getter: extern "C" fn() -> *mut st_table, cleaner:
302302
probe!(mmtk_ruby, weak_table_size_change, old_size, new_size);
303303
}
304304

305-
define_global_table_processor!(UpdateFrozenStringsTable, {
306-
general_update_weak_table(
307-
upcalls().get_frozen_strings_table,
308-
upcalls().update_frozen_strings_table,
309-
);
310-
});
305+
#[allow(dead_code)]
306+
mod unused {
307+
use super::*;
308+
define_global_table_processor!(UpdateFrozenStringsTable, {
309+
general_update_weak_table(
310+
upcalls().get_frozen_strings_table,
311+
upcalls().update_frozen_strings_table,
312+
);
313+
});
314+
315+
define_global_table_processor!(UpdateGlobalSymbolsTable, {
316+
general_update_weak_table(
317+
upcalls().get_global_symbols_table,
318+
upcalls().update_global_symbols_table,
319+
);
320+
});
321+
}
311322

312323
define_global_table_processor!(UpdateFinalizerAndObjIdTables, {
313324
let finalizer_table = (upcalls().get_finalizer_table)();
@@ -336,13 +347,6 @@ define_global_table_processor!(UpdateFinalizerAndObjIdTables, {
336347
);
337348
});
338349

339-
define_global_table_processor!(UpdateGlobalSymbolsTable, {
340-
general_update_weak_table(
341-
upcalls().get_global_symbols_table,
342-
upcalls().update_global_symbols_table,
343-
);
344-
});
345-
346350
define_global_table_processor!(UpdateOverloadedCmeTable, {
347351
general_update_weak_table(
348352
upcalls().get_overloaded_cme_table,

0 commit comments

Comments
 (0)