mfichman / jogo

High(er) performance compiled programming language with clean, powerful syntax
MIT License
6 stars 1 forks source link

Escape analysis #35

Open mfichman opened 13 years ago

mfichman commented 13 years ago

Perform escape analysis to determine if heap allocations can be converted into stack allocations. A pointer 'escapes' a function if it is returned or assigned to a structure that is returned or passed into a function.