Comment #4 on issue 425 by [email protected]: Compiling very large expressions hits stack limit..
http://code.google.com/p/v8/issues/detail?id=425

This issue only addresses stack overflow during parsing/compiling, not at runtime.

RegExps on long strings can overflow the RegExp stack as well (although it is a separate stack from the system stack, it has a limit too).

Loops shouldn't use stack space per iteration, but recursive function calls can also run out of stack.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to