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") \ | |
339 V(kLostPrecision, "lost precision") \ | 338 V(kLostPrecision, "lost precision") \ |
340 V(kLostPrecisionOrNaN, "lost precision or NaN") \ | 339 V(kLostPrecisionOrNaN, "lost precision or NaN") \ |
341 V(kMementoFound, "memento found") \ | 340 V(kMementoFound, "memento found") \ |
342 V(kMinusZero, "minus zero") \ | 341 V(kMinusZero, "minus zero") \ |
343 V(kNaN, "NaN") \ | 342 V(kNaN, "NaN") \ |
344 V(kNegativeKeyEncountered, "Negative key encountered") \ | 343 V(kNegativeKeyEncountered, "Negative key encountered") \ |
345 V(kNegativeValue, "negative value") \ | 344 V(kNegativeValue, "negative value") \ |
346 V(kNoCache, "no cache") \ | 345 V(kNoCache, "no cache") \ |
347 V(kNonStrictElementsInKeyedLoadGenericStub, \ | 346 V(kNonStrictElementsInKeyedLoadGenericStub, \ |
348 "non-strict elements in KeyedLoadGenericStub") \ | 347 "non-strict elements in KeyedLoadGenericStub") \ |
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1131 Object** expression_stack_; | 1130 Object** expression_stack_; |
1132 int source_position_; | 1131 int source_position_; |
1133 | 1132 |
1134 friend class Deoptimizer; | 1133 friend class Deoptimizer; |
1135 }; | 1134 }; |
1136 | 1135 |
1137 } // namespace internal | 1136 } // namespace internal |
1138 } // namespace v8 | 1137 } // namespace v8 |
1139 | 1138 |
1140 #endif // V8_DEOPTIMIZER_H_ | 1139 #endif // V8_DEOPTIMIZER_H_ |
OLD | NEW |