Yi Lin
Yi Lin
We should count malloc size by pages in malloc mark sweep. And when we provide counted malloc, we should also count in pages (which means we will need to maintain...
Currently `Plan` is a public trait, and all the methods in `Plan` are public. However, many methods in `Plan` should not be public. We can either split `Plan` into two...
This PR adds an action which is triggered when an issue is created or is edited. If there is no `P-*` labels on the issue, it automatically adds a `F-triage`...
We currently output stats in `harness_end` as tab-separated values. We should support different human-/machine-readable output formats for stats
In GitLab by @pzakopaylo01 on Dec 16, 2017, 19:40 e.g. large object space, code space etc. This would mean we don't have to give the entire heap `PROT_EXEC` permissions, which...
In GitLab by @steveblackburn on Jan 22, 2020, 01:41 Spaces are principally an algorithm-specific (and thus VM-neutral) concept. **Therefore the abstraction of spaces should be fully contained within MMTk.** On...
`trait SFT` (Space Function Table) was created so that we can use it as trait objects, as at that time, `Space` could not be used as trait objects. To solve...