Status: New
Owner: ----

New issue 3849 by [email protected]: Performance strategy
https://code.google.com/p/v8/issues/detail?id=3849

Hi,

there is/was this big debate about whether asm.js should be integrated in v8 (#2599). I don't want to open this debate again, I just want to know what way of optimization you now prefer. I remember that some v8 people said, that v8 includes already optimizations to let asm.js run moderately fast.

I generate pretty large amounts of JavaScript code and want to know how I should generate it, either the asm.js way with basic instructions per line:

x[0] = 0;
x[0]+= a[0];
x[0]+= a[1];
x[0]+= a[m];
...
x[n] = 0;
x[n]+= a[0];
...
x[n]+= a[m];

... or as a normal statement:

x[0] = a[0] + ... + a[m];
...
x[n] = a[0] + ... + a[m];

... or should both ways be equivalent fast?

Thanks

--
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/d/optout.

Reply via email to