davexunit 34 minutes ago

If you like reading about GC implementation than keep reading wingo's blog. He's currently being funded by NLnet to finish the Whippet GC library.

ogogmad an hour ago

This approach makes sense if you have access to either all available memory or a fixed quantity of memory, half of which would go to the fromspace and the other half to the tospace. What I don't understand is: When should the heap be made bigger? What about smaller?

  • rurban an hour ago

    Making it bigger requires a stop the world, and moving some objects.

    You'll never need to make it smaller, but this requires the same efforts.

    But good to see someone finally explaining the simplest and fastest GC, because the objects are compacted, usually in the same cache line. MMTk is way underused