Andreas Rossberg (2015-04-29T22:41:20.000Z)
d at domenic.me (2015-05-11T17:02:08.624Z)
On 29 April 2015 at 18:37, Brendan Eich <brendan at mozilla.org> wrote: > But in either case, escape analysis and object allocation elimination can > avoid the flood of eden objects John cited, right? Yes, together with inlining. ? I'm inferring your comment about generator optimization hardship has to do > with a function that yields -- whose CFG has multiple entry points and > whose activation record must live in the heap. Yes, the biggest challenge perhaps is not even generator CFGs per se, but getting inlining to work with them, which is necessary to take advantage of escape analysis.