Reviewers: Erik Corry,

Description:
Allow larger regexp stack if necessary, which includes specific layout
tests.

Please review this at http://codereview.chromium.org/18844

Affected files:
   M src/regexp-stack.h


Index: src/regexp-stack.h
diff --git a/src/regexp-stack.h b/src/regexp-stack.h
index  
43f8f3d84c5091bf98ac26f4a4461fa154079499..e47462ffd49e1f632689f5aeed5bbe4fdfe30606
  
100644
--- a/src/regexp-stack.h
+++ b/src/regexp-stack.h
@@ -79,7 +79,7 @@ class RegExpStack {
    static const size_t kMinimumStackSize = 1 * KB;

    // Maximal size of allocated stack area.
-  static const size_t kMaximumStackSize = 256 * KB;
+  static const size_t kMaximumStackSize = 64 * MB;

    // Structure holding the allocated memory, size and limit.
    struct ThreadLocal {



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

Reply via email to