Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Unified Diff: src/regexp-stack.h

Issue 18844: * Irregexp-ia32: Grow stack larger if necessary. (Closed)
Patch Set: Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698