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

Unified Diff: src/hydrogen.h

Issue 9290044: Fix intermittent stack overflow in Hydrogen code generation in tests. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 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 | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen.h
===================================================================
--- src/hydrogen.h (revision 10510)
+++ src/hydrogen.h (working copy)
@@ -769,10 +769,14 @@
static const int kMaxLoadPolymorphism = 4;
static const int kMaxStorePolymorphism = 4;
- static const int kMaxInlinedNodes = 196;
- static const int kMaxInlinedSize = 196;
- static const int kMaxSourceSize = 600;
+ static const int kSmallMaxInlinedNodes = 196;
+ static const int kSmallMaxInlinedSize = 196;
+ static const int kSmallMaxSourceSize = 600;
+ static const int kBigMaxInlinedNodes = 1000;
Vyacheslav Egorov (Chromium) 2012/01/26 10:42:57 big vs. small is a bit confusing. it's limited/unl
+ static const int kBigMaxInlinedSize = 1000;
+ static const int kBigMaxSourceSize = 600;
+
// Simple accessors.
void set_function_state(FunctionState* state) { function_state_ = state; }
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698