OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_BAILOUT_REASON_H_ | 5 #ifndef V8_BAILOUT_REASON_H_ |
6 #define V8_BAILOUT_REASON_H_ | 6 #define V8_BAILOUT_REASON_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 | 10 |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 "Unexpected initial map for Array function") \ | 227 "Unexpected initial map for Array function") \ |
228 V(kUnexpectedInitialMapForInternalArrayFunction, \ | 228 V(kUnexpectedInitialMapForInternalArrayFunction, \ |
229 "Unexpected initial map for InternalArray function") \ | 229 "Unexpected initial map for InternalArray function") \ |
230 V(kUnexpectedLevelAfterReturnFromApiCall, \ | 230 V(kUnexpectedLevelAfterReturnFromApiCall, \ |
231 "Unexpected level after return from api call") \ | 231 "Unexpected level after return from api call") \ |
232 V(kUnexpectedNegativeValue, "Unexpected negative value") \ | 232 V(kUnexpectedNegativeValue, "Unexpected negative value") \ |
233 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ | 233 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ |
234 "Unexpected number of pre-allocated property fields") \ | 234 "Unexpected number of pre-allocated property fields") \ |
235 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ | 235 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ |
236 V(kUnexpectedSmi, "Unexpected smi value") \ | 236 V(kUnexpectedSmi, "Unexpected smi value") \ |
| 237 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ |
237 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ | 238 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ |
238 V(kUnexpectedStringType, "Unexpected string type") \ | 239 V(kUnexpectedStringType, "Unexpected string type") \ |
239 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ | 240 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ |
240 "Unexpected type for RegExp data, FixedArray expected") \ | 241 "Unexpected type for RegExp data, FixedArray expected") \ |
241 V(kUnexpectedValue, "Unexpected value") \ | 242 V(kUnexpectedValue, "Unexpected value") \ |
242 V(kUnsupportedConstCompoundAssignment, \ | 243 V(kUnsupportedConstCompoundAssignment, \ |
243 "Unsupported const compound assignment") \ | 244 "Unsupported const compound assignment") \ |
244 V(kUnsupportedCountOperationWithConst, \ | 245 V(kUnsupportedCountOperationWithConst, \ |
245 "Unsupported count operation with const") \ | 246 "Unsupported count operation with const") \ |
246 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ | 247 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ |
(...skipping 26 matching lines...) Expand all Loading... |
273 }; | 274 }; |
274 #undef ERROR_MESSAGES_CONSTANTS | 275 #undef ERROR_MESSAGES_CONSTANTS |
275 | 276 |
276 | 277 |
277 const char* GetBailoutReason(BailoutReason reason); | 278 const char* GetBailoutReason(BailoutReason reason); |
278 | 279 |
279 } // namespace internal | 280 } // namespace internal |
280 } // namespace v8 | 281 } // namespace v8 |
281 | 282 |
282 #endif // V8_BAILOUT_REASON_H_ | 283 #endif // V8_BAILOUT_REASON_H_ |
OLD | NEW |