Status: New
Owner: ----
New issue 1671 by [email protected]: extreme memory usage
http://code.google.com/p/v8/issues/detail?id=1671
While running nodejs, memory spikes when using the code below. it will
eventually crash. The same code also crashes the dev build of google
chrome on mac osx (and probably others). I seem to think that the issue is
actually in v8. Not sure though.
var cur = 167772160;
var bcast = 184549375;
var addresses = [];
while (cur <= bcast){
... cur += 1;
... addresses.push(cur);
... }
16777216
addresses.length
16777216
addresses
FATAL ERROR: CALL_AND_RETRY_2 Allocation failed - process out of memory
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev