Chromium Code Reviews| 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; } |