Teaching the Essentials of Garbage Collection
That's actually pretty cool; I remember the joy when my own malloc/free ran without crashing real-world programs; doing the same witha GC would be both satisfying and a good way to find bugs.
I've actually used this system as a student in a programming language design class, in which we had to implement semispace and mark-and-sweep collectors. I had the misfortune (unique in 2 sections of the class that semester) of running into a bug in the framework, but I believe that got fixed, and it was otherwise pretty dang cool.
That looks like a great tool! I recently took a class in programming language design where we had to implement a simulated Treadmill garbage collector using a circular linked list in Java. It taught us the basics of how the algorithm works but not really how it functions within the context of an actual programming language implementation.
The proposed framework looks like it has a lot of potential.
Brown PLT is jokingly said to do every programming language research unrelated to the type theory (not saying the type theory is unimportant of course). I hope to see more researches and directions like that.
This is really an awesome pedagogical tool.