| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 V(kNotADateObject, "not a date object") \ | 348 V(kNotADateObject, "not a date object") \ |
| 349 V(kNotAHeapNumber, "not a heap number") \ | 349 V(kNotAHeapNumber, "not a heap number") \ |
| 350 V(kNotAHeapNumberUndefinedBoolean, "not a heap number/undefined/true/false") \ | 350 V(kNotAHeapNumberUndefinedBoolean, "not a heap number/undefined/true/false") \ |
| 351 V(kNotAHeapNumberUndefined, "not a heap number/undefined") \ | 351 V(kNotAHeapNumberUndefined, "not a heap number/undefined") \ |
| 352 V(kNotAJavaScriptObject, "not a JavaScript object") \ | 352 V(kNotAJavaScriptObject, "not a JavaScript object") \ |
| 353 V(kNotASmi, "not a Smi") \ | 353 V(kNotASmi, "not a Smi") \ |
| 354 V(kNull, "null") \ | 354 V(kNull, "null") \ |
| 355 V(kOutOfBounds, "out of bounds") \ | 355 V(kOutOfBounds, "out of bounds") \ |
| 356 V(kOutsideOfRange, "Outside of range") \ | 356 V(kOutsideOfRange, "Outside of range") \ |
| 357 V(kOverflow, "overflow") \ | 357 V(kOverflow, "overflow") \ |
| 358 V(kProxy, "proxy") \ |
| 358 V(kReceiverWasAGlobalObject, "receiver was a global object") \ | 359 V(kReceiverWasAGlobalObject, "receiver was a global object") \ |
| 359 V(kSmi, "Smi") \ | 360 V(kSmi, "Smi") \ |
| 360 V(kTooManyArguments, "too many arguments") \ | 361 V(kTooManyArguments, "too many arguments") \ |
| 361 V(kTooManyUndetectableTypes, "Too many undetectable types") \ | 362 V(kTooManyUndetectableTypes, "Too many undetectable types") \ |
| 362 V(kTracingElementsTransitions, "Tracing elements transitions") \ | 363 V(kTracingElementsTransitions, "Tracing elements transitions") \ |
| 363 V(kTypeMismatchBetweenFeedbackAndConstant, \ | 364 V(kTypeMismatchBetweenFeedbackAndConstant, \ |
| 364 "Type mismatch between feedback and constant") \ | 365 "Type mismatch between feedback and constant") \ |
| 365 V(kUndefined, "undefined") \ | 366 V(kUndefined, "undefined") \ |
| 366 V(kUnexpectedCellContentsInConstantGlobalStore, \ | 367 V(kUnexpectedCellContentsInConstantGlobalStore, \ |
| 367 "Unexpected cell contents in constant global store") \ | 368 "Unexpected cell contents in constant global store") \ |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 Object** expression_stack_; | 1130 Object** expression_stack_; |
| 1130 int source_position_; | 1131 int source_position_; |
| 1131 | 1132 |
| 1132 friend class Deoptimizer; | 1133 friend class Deoptimizer; |
| 1133 }; | 1134 }; |
| 1134 | 1135 |
| 1135 } // namespace internal | 1136 } // namespace internal |
| 1136 } // namespace v8 | 1137 } // namespace v8 |
| 1137 | 1138 |
| 1138 #endif // V8_DEOPTIMIZER_H_ | 1139 #endif // V8_DEOPTIMIZER_H_ |
| OLD | NEW |