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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 "Insufficient type feedback for generic named access") \ | 333 "Insufficient type feedback for generic named access") \ |
334 V(kInsufficientTypeFeedbackForKeyedLoad, \ | 334 V(kInsufficientTypeFeedbackForKeyedLoad, \ |
335 "Insufficient type feedback for keyed load") \ | 335 "Insufficient type feedback for keyed load") \ |
336 V(kInsufficientTypeFeedbackForKeyedStore, \ | 336 V(kInsufficientTypeFeedbackForKeyedStore, \ |
337 "Insufficient type feedback for keyed store") \ | 337 "Insufficient type feedback for keyed store") \ |
338 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \ | 338 V(kInsufficientTypeFeedbackForLHSOfBinaryOperation, \ |
339 "Insufficient type feedback for LHS of binary operation") \ | 339 "Insufficient type feedback for LHS of binary operation") \ |
340 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \ | 340 V(kInsufficientTypeFeedbackForRHSOfBinaryOperation, \ |
341 "Insufficient type feedback for RHS of binary operation") \ | 341 "Insufficient type feedback for RHS of binary operation") \ |
342 V(kKeyIsNegative, "key is negative") \ | 342 V(kKeyIsNegative, "key is negative") \ |
343 V(kLiteralsWereDisposed, "literals have been disposed") \ | |
344 V(kLostPrecision, "lost precision") \ | 343 V(kLostPrecision, "lost precision") \ |
345 V(kLostPrecisionOrNaN, "lost precision or NaN") \ | 344 V(kLostPrecisionOrNaN, "lost precision or NaN") \ |
346 V(kMementoFound, "memento found") \ | 345 V(kMementoFound, "memento found") \ |
347 V(kMinusZero, "minus zero") \ | 346 V(kMinusZero, "minus zero") \ |
348 V(kNaN, "NaN") \ | 347 V(kNaN, "NaN") \ |
349 V(kNegativeKeyEncountered, "Negative key encountered") \ | 348 V(kNegativeKeyEncountered, "Negative key encountered") \ |
350 V(kNegativeValue, "negative value") \ | 349 V(kNegativeValue, "negative value") \ |
351 V(kNoCache, "no cache") \ | 350 V(kNoCache, "no cache") \ |
352 V(kNonStrictElementsInKeyedLoadGenericStub, \ | 351 V(kNonStrictElementsInKeyedLoadGenericStub, \ |
353 "non-strict elements in KeyedLoadGenericStub") \ | 352 "non-strict elements in KeyedLoadGenericStub") \ |
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1138 Object** expression_stack_; | 1137 Object** expression_stack_; |
1139 int source_position_; | 1138 int source_position_; |
1140 | 1139 |
1141 friend class Deoptimizer; | 1140 friend class Deoptimizer; |
1142 }; | 1141 }; |
1143 | 1142 |
1144 } // namespace internal | 1143 } // namespace internal |
1145 } // namespace v8 | 1144 } // namespace v8 |
1146 | 1145 |
1147 #endif // V8_DEOPTIMIZER_H_ | 1146 #endif // V8_DEOPTIMIZER_H_ |
OLD | NEW |