Skip to content

Commit

Permalink
Update JikesRVM's boot image address (#170)
Browse files Browse the repository at this point in the history
Update to mmtk/jikesrvm#20. This closes
#168.
  • Loading branch information
qinsoon authored Apr 22, 2024
1 parent bd0ef5d commit f60ecd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mmtk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lto = true
[package.metadata.jikesrvm]
# Our CI matches the following line and extract mmtk/jikesrvm. If this line is updated, please check ci yaml files and make sure it works.
jikesrvm_repo = "https://github.com/mmtk/jikesrvm.git"
jikesrvm_version = "a43efe4f33a6a69aabeb03e5c5e2e8880f96f047"
jikesrvm_version = "1191b3846b6528011bce12996bbb5e15a23a043f"

[dependencies]
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion mmtk/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub extern "C" fn jikesrvm_gc_init(jtoc: *mut c_void, heap_size: usize) {
builder
.options
.vm_space_start
.set(unsafe { Address::from_usize(0x6000_0000) });
.set(unsafe { Address::from_usize(0x7000_0000) });
builder.options.vm_space_size.set(0x800_0000);
}

Expand Down

0 comments on commit f60ecd6

Please sign in to comment.