5/21/2025 at 9:26:27 PM
> Reference Counting with cycle detection at exit, 95% of reference count ops removed at compile time thanks to lifetime analysis.This is really clever. Why don't more languages do this? Also, is this the same analysis that does type checking? And does this technique make it unbearably slow?
by 90s_dev
5/22/2025 at 10:54:25 PM
No, this analysis is fairly linear.. the whole compiler is pretty fast.by Aardappel