Question About the Variable Allocator

2012-06-03 Thread Noah Lavine
Hello, I've always been puzzled about part of the variable allocator. In module/language/tree-il/analyze.scm, we deal with allocations, which are hash tables that say where in the stack each local variable goes. The maps are two level, symbol - {lambda - location}. The reason given is that

Re: Question About the Variable Allocator

2012-06-03 Thread Andy Wingo
Hi Noah, On Sun 03 Jun 2012 16:20, Noah Lavine noah.b.lav...@gmail.com writes: I've always been puzzled about part of the variable allocator. In module/language/tree-il/analyze.scm, we deal with allocations, which are hash tables that say where in the stack each local variable goes. The maps