| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_DEOPTIMIZER_H_ | 5 #ifndef V8_DEOPTIMIZER_H_ |
| 6 #define V8_DEOPTIMIZER_H_ | 6 #define V8_DEOPTIMIZER_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/macro-assembler.h" | 9 #include "src/macro-assembler.h" |
| 10 | 10 |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 "Insufficient type feedback for generic named access") \ | 328 "Insufficient type feedback for generic named access") \ |
| 329 V(kInsufficientTypeFeedbackForKeyedLoad, \ | 329 V(kInsufficientTypeFeedbackForKeyedLoad, \ |
| 330 "Insufficient type feedback for keyed load") \ | 330 "Insufficient type feedback for keyed load") \ |
| 331 V(kInsufficientTypeFeedbackForKeyedStore, \ | 331 V(kInsufficientTypeFeedbackForKeyedStore, \ |
| 332 "Insufficient type feedback for keyed store") \ | 332 "Insufficient type feedback for keyed store") \ |
| 333 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \ | 333 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \ |
| 334 "Insufficient type feedback for LHS of binary operation") \ | 334 "Insufficient type feedback for LHS of binary operation") \ |
| 335 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \ | 335 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \ |
| 336 "Insufficient type feedback for RHS of binary operation") \ | 336 "Insufficient type feedback for RHS of binary operation") \ |
| 337 V(kKeyIsNegative, "key is negative") \ | 337 V(kKeyIsNegative, "key is negative") \ |
| 338 V(kLiteralsWereDisposed, "literals have been disposed") \ |
| 338 V(kLostPrecision, "lost precision") \ | 339 V(kLostPrecision, "lost precision") \ |
| 339 V(kLostPrecisionOrNaN, "lost precision or NaN") \ | 340 V(kLostPrecisionOrNaN, "lost precision or NaN") \ |
| 340 V(kMementoFound, "memento found") \ | 341 V(kMementoFound, "memento found") \ |
| 341 V(kMinusZero, "minus zero") \ | 342 V(kMinusZero, "minus zero") \ |
| 342 V(kNaN, "NaN") \ | 343 V(kNaN, "NaN") \ |
| 343 V(kNegativeKeyEncountered, "Negative key encountered") \ | 344 V(kNegativeKeyEncountered, "Negative key encountered") \ |
| 344 V(kNegativeValue, "negative value") \ | 345 V(kNegativeValue, "negative value") \ |
| 345 V(kNoCache, "no cache") \ | 346 V(kNoCache, "no cache") \ |
| 346 V(kNonStrictElementsInKeyedLoadGenericStub, \ | 347 V(kNonStrictElementsInKeyedLoadGenericStub, \ |
| 347 "non-strict elements in KeyedLoadGenericStub") \ | 348 "non-strict elements in KeyedLoadGenericStub") \ |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 Object** expression_stack_; | 1131 Object** expression_stack_; |
| 1131 int source_position_; | 1132 int source_position_; |
| 1132 | 1133 |
| 1133 friend class Deoptimizer; | 1134 friend class Deoptimizer; |
| 1134 }; | 1135 }; |
| 1135 | 1136 |
| 1136 } // namespace internal | 1137 } // namespace internal |
| 1137 } // namespace v8 | 1138 } // namespace v8 |
| 1138 | 1139 |
| 1139 #endif // V8_DEOPTIMIZER_H_ | 1140 #endif // V8_DEOPTIMIZER_H_ |
| OLD | NEW |