Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index b84ae70fe642dabf90def2373a6c4dea4144ce5c..7b7b92297760ffba6fa1288eec8b7fb14cdd256a 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -868,15 +868,11 @@ class HGraphBuilder: public AstVisitor { |
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; |
- |
// Even in the 'unlimited' case we have to have some limit in order not to |
// overflow the stack. |
- static const int kUnlimitedMaxInlinedNodes = 1000; |
- static const int kUnlimitedMaxInlinedSize = 1000; |
- static const int kUnlimitedMaxSourceSize = 600; |
+ static const int kUnlimitedMaxInlinedSourceSize = 100000; |
+ static const int kUnlimitedMaxInlinedNodes = 10000; |
+ static const int kUnlimitedMaxInlinedNodesCumulative = 10000; |
// Simple accessors. |
void set_function_state(FunctionState* state) { function_state_ = state; } |