-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Space-specific object semantics (#9)
* Use SFT_MAP and is_live() * Cleaned up interface, normalized names * Update mmtk-core version
- Loading branch information
1 parent
83de020
commit 2763eaf
Showing
6 changed files
with
17 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule jikesrvm
updated
6 files
Submodule mmtk-core
updated
25 files
+1 −3 | examples/mmtk.h | |
+10 −21 | src/mm/memory_manager.rs | |
+4 −0 | src/mmtk.rs | |
+6 −3 | src/plan/mutator_context.rs | |
+0 −31 | src/plan/nogc/nogc.rs | |
+0 −4 | src/plan/nogc/nogctracelocal.rs | |
+6 −200 | src/plan/plan.rs | |
+5 −45 | src/plan/semispace/ss.rs | |
+0 −28 | src/plan/semispace/sstracelocal.rs | |
+0 −1 | src/plan/tracelocal.rs | |
+18 −9 | src/policy/copyspace.rs | |
+28 −25 | src/policy/immortalspace.rs | |
+57 −52 | src/policy/largeobjectspace.rs | |
+138 −5 | src/policy/space.rs | |
+39 −0 | src/util/address.rs | |
+8 −0 | src/util/conversions.rs | |
+9 −6 | src/util/heap/layout/byte_map_mmapper.rs | |
+2 −0 | src/util/heap/layout/map32.rs | |
+1 −1 | src/util/heap/layout/mmapper.rs | |
+1 −1 | src/util/heap/layout/mod.rs | |
+1 −1 | src/util/reference_processor.rs | |
+3 −7 | src/util/sanity/memory_scan.rs | |
+2 −5 | src/util/sanity/sanity_checker.rs | |
+1 −3 | vmbindings/dummyvm/api/mmtk.h | |
+8 −13 | vmbindings/dummyvm/src/api.rs |