Status: Accepted
Owner: ----
CC: [email protected],  [email protected]
Labels: Type-Bug Priority-Medium

New issue 3417 by [email protected]: When we fail to grow an array in new space, maybe don't deopt
http://code.google.com/p/v8/issues/detail?id=3417

instead, we could use a stub that calls to runtime if we can't grow the array inline

e.g. a loop like this:

<script>
var nodes = [];
var nodes2 = [];
for (var k = 0; k < 100; ++k) {
for (var i = 0; i < 1000 * 200 + 1000; ++i) {
    a = document.createElement("div");
    nodes.push(a);
   nodes2.push(a);
}
}
</script>

will repeatedly deopt and eventually gives up optimizing.

--
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