| Index: src/deoptimizer.h
|
| diff --git a/src/deoptimizer.h b/src/deoptimizer.h
|
| index 9b8509e0f5973180a6284ef6f0e466f487c276f2..21ca84ed5271134c020e8b2c02aad19cab6c4890 100644
|
| --- a/src/deoptimizer.h
|
| +++ b/src/deoptimizer.h
|
| @@ -317,7 +317,6 @@ class OptimizedFunctionVisitor BASE_EMBEDDED {
|
| virtual void LeaveContext(Context* context) = 0;
|
| };
|
|
|
| -
|
| #define DEOPT_MESSAGES_LIST(V) \
|
| V(kAccessCheck, "Access check needed") \
|
| V(kNoReason, "no reason") \
|
| @@ -335,6 +334,7 @@ class OptimizedFunctionVisitor BASE_EMBEDDED {
|
| V(kInstanceMigrationFailed, "instance migration failed") \
|
| V(kInsufficientTypeFeedbackForCallWithArguments, \
|
| "Insufficient type feedback for call with arguments") \
|
| + V(kFastArrayPushFailed, "Falling off the fast path for FastArrayPush") \
|
| V(kInsufficientTypeFeedbackForCombinedTypeOfBinaryOperation, \
|
| "Insufficient type feedback for combined type of binary operation") \
|
| V(kInsufficientTypeFeedbackForGenericNamedAccess, \
|
| @@ -398,7 +398,6 @@ class OptimizedFunctionVisitor BASE_EMBEDDED {
|
| V(kUndefinedOrNullInForIn, "null or undefined in for-in") \
|
| V(kUndefinedOrNullInToObject, "null or undefined in ToObject")
|
|
|
| -
|
| class Deoptimizer : public Malloced {
|
| public:
|
| enum BailoutType { EAGER, LAZY, SOFT, kLastBailoutType = SOFT };
|
|
|