Andreas Rossberg (2015-04-29T22:41:20.000Z)
On 29 April 2015 at 18:37, Brendan Eich <brendan at mozilla.org> wrote:

> Andreas Rossberg wrote:
>
>> On 29 April 2015 at 02:21, John Lenz <concavelenz at gmail.com <mailto:
>> concavelenz at gmail.com>> wrote:
>>
>>     I missed it, thanks.    I know things will improve in time but I'm
>>     just coming from a discussion with folks complaining about the
>>     performance of generators and GC overhead in real code with Chrome
>>     and Firefox relative to simple hand written loops.
>>
>>
>> Note that there is a huge difference between optimising iterators (in
>> particular, for-of), and optimising generators. I expect that VMs will
>> start getting better on the former relatively soon, for iterators that are
>> not generators. Making generators fast is a much more complicated problem.
>>
>
> 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.

/Andreas
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20150430/1a87ce75/attachment.html>
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.