Updates:
Summary: Closures are not inlined. They should be.
Comment #1 on issue 3179 by [email protected]: Closures are not inlined.
They should be.
http://code.google.com/p/v8/issues/detail?id=3179
In the second example, function b is declared as function literal, and is
inlined into the loop. The closure produced in function a is not inlined.
If you disable inlining using --js-flags="--nouse-inlining", you would get
original closure(carry): 76
closure - make closure var global: 63
That small difference is probably because the global var is treated as a
constant.
We should inline closures.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.