Skip to content

Commit 40c260c

Browse files
committed
Rename edge to slot
Parent PR: mmtk/mmtk-core#1134
1 parent 9024617 commit 40c260c

13 files changed

+205
-198
lines changed

mmtk/Cargo.lock

+46-39
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
@@ -32,7 +32,7 @@ memoffset = "0.9.0"
3232
# - change branch
3333
# - change repo name
3434
# But other changes including adding/removing whitespaces in commented lines may break the CI.
35-
mmtk = { git = "https://github.com/mmtk/mmtk-core.git", rev = "fea59e4f5cc6176093da1d8efa7d7b3b4b8d0fa7" }
35+
mmtk = { git = "https://github.com/wks/mmtk-core.git", rev = "e46383ddbc60b3e418999294712e3b10a2c6282a" }
3636
# Uncomment the following to build locally
3737
# mmtk = { path = "../repos/mmtk-core" }
3838

mmtk/src/abi.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use super::UPCALLS;
2-
use crate::OpenJDKEdge;
2+
use crate::OpenJDKSlot;
33
use atomic::Atomic;
44
use atomic::Ordering;
55
use mmtk::util::constants::*;
@@ -278,10 +278,10 @@ impl InstanceRefKlass {
278278
}
279279
*DISCOVERED_OFFSET
280280
}
281-
pub fn referent_address<const COMPRESSED: bool>(oop: Oop) -> OpenJDKEdge<COMPRESSED> {
281+
pub fn referent_address<const COMPRESSED: bool>(oop: Oop) -> OpenJDKSlot<COMPRESSED> {
282282
oop.get_field_address(Self::referent_offset()).into()
283283
}
284-
pub fn discovered_address<const COMPRESSED: bool>(oop: Oop) -> OpenJDKEdge<COMPRESSED> {
284+
pub fn discovered_address<const COMPRESSED: bool>(oop: Oop) -> OpenJDKSlot<COMPRESSED> {
285285
oop.get_field_address(Self::discovered_offset()).into()
286286
}
287287
}
@@ -461,10 +461,10 @@ impl ArrayOopDesc {
461461
pub unsafe fn slice<const COMPRESSED: bool>(
462462
&self,
463463
ty: BasicType,
464-
) -> crate::OpenJDKEdgeRange<COMPRESSED> {
464+
) -> crate::OpenJDKSlotRange<COMPRESSED> {
465465
let base = self.base::<COMPRESSED>(ty);
466466
let start = base;
467-
let lshift = OpenJDKEdge::<COMPRESSED>::LOG_BYTES_IN_EDGE;
467+
let lshift = OpenJDKSlot::<COMPRESSED>::LOG_BYTES_IN_SLOT;
468468
let end = base + ((self.length::<COMPRESSED>() as usize) << lshift);
469469
(start..end).into()
470470
}

mmtk/src/api.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::edges::OpenJDKEdge;
1+
use crate::slots::OpenJDKSlot;
22
use crate::OpenJDK;
33
use crate::OpenJDK_Upcalls;
44
use crate::BUILDER;
@@ -254,7 +254,7 @@ pub extern "C" fn handle_user_collection_request(tls: VMMutatorThread) {
254254

255255
#[no_mangle]
256256
pub extern "C" fn mmtk_enable_compressed_oops() {
257-
crate::edges::enable_compressed_oops()
257+
crate::slots::enable_compressed_oops()
258258
}
259259

260260
#[no_mangle]
@@ -366,13 +366,13 @@ pub extern "C" fn process_bulk(options: *const c_char) -> bool {
366366
#[no_mangle]
367367
pub extern "C" fn mmtk_narrow_oop_base() -> Address {
368368
debug_assert!(crate::use_compressed_oops());
369-
crate::edges::BASE.load(Ordering::Relaxed)
369+
crate::slots::BASE.load(Ordering::Relaxed)
370370
}
371371

372372
#[no_mangle]
373373
pub extern "C" fn mmtk_narrow_oop_shift() -> usize {
374374
debug_assert!(crate::use_compressed_oops());
375-
crate::edges::SHIFT.load(Ordering::Relaxed)
375+
crate::slots::SHIFT.load(Ordering::Relaxed)
376376
}
377377

378378
#[no_mangle]
@@ -440,11 +440,11 @@ pub extern "C" fn mmtk_object_reference_write_slow(
440440
})
441441
}
442442

443-
fn log_bytes_in_edge() -> usize {
443+
fn log_bytes_in_slot() -> usize {
444444
if crate::use_compressed_oops() {
445-
OpenJDKEdge::<true>::LOG_BYTES_IN_EDGE
445+
OpenJDKSlot::<true>::LOG_BYTES_IN_SLOT
446446
} else {
447-
OpenJDKEdge::<false>::LOG_BYTES_IN_EDGE
447+
OpenJDKSlot::<false>::LOG_BYTES_IN_SLOT
448448
}
449449
}
450450

@@ -456,7 +456,7 @@ pub extern "C" fn mmtk_array_copy_pre(
456456
dst: Address,
457457
count: usize,
458458
) {
459-
let bytes = count << log_bytes_in_edge();
459+
let bytes = count << log_bytes_in_slot();
460460
with_mutator!(|mutator| {
461461
mutator
462462
.barrier()
@@ -473,7 +473,7 @@ pub extern "C" fn mmtk_array_copy_post(
473473
count: usize,
474474
) {
475475
with_mutator!(|mutator| {
476-
let bytes = count << log_bytes_in_edge();
476+
let bytes = count << log_bytes_in_slot();
477477
mutator
478478
.barrier()
479479
.memory_region_copy_post((src..src + bytes).into(), (dst..dst + bytes).into());

0 commit comments

Comments
 (0)