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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 V(kUnexpectedInitialMapForArrayFunction1, \ | 224 V(kUnexpectedInitialMapForArrayFunction1, \ |
225 "Unexpected initial map for Array function (1)") \ | 225 "Unexpected initial map for Array function (1)") \ |
226 V(kUnexpectedInitialMapForArrayFunction2, \ | 226 V(kUnexpectedInitialMapForArrayFunction2, \ |
227 "Unexpected initial map for Array function (2)") \ | 227 "Unexpected initial map for Array function (2)") \ |
228 V(kUnexpectedInitialMapForArrayFunction, \ | 228 V(kUnexpectedInitialMapForArrayFunction, \ |
229 "Unexpected initial map for Array function") \ | 229 "Unexpected initial map for Array function") \ |
230 V(kUnexpectedInitialMapForInternalArrayFunction, \ | 230 V(kUnexpectedInitialMapForInternalArrayFunction, \ |
231 "Unexpected initial map for InternalArray function") \ | 231 "Unexpected initial map for InternalArray function") \ |
232 V(kUnexpectedLevelAfterReturnFromApiCall, \ | 232 V(kUnexpectedLevelAfterReturnFromApiCall, \ |
233 "Unexpected level after return from api call") \ | 233 "Unexpected level after return from api call") \ |
| 234 V(kUnexpectedMap, "Unexpected map on object") \ |
234 V(kUnexpectedNegativeValue, "Unexpected negative value") \ | 235 V(kUnexpectedNegativeValue, "Unexpected negative value") \ |
235 V(kUnexpectedFunctionIDForInvokeIntrinsic, \ | 236 V(kUnexpectedFunctionIDForInvokeIntrinsic, \ |
236 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ | 237 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ |
237 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ | 238 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ |
238 V(kUnexpectedSmi, "Unexpected smi value") \ | 239 V(kUnexpectedSmi, "Unexpected smi value") \ |
239 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ | 240 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ |
240 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ | 241 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ |
241 V(kUnexpectedStringType, "Unexpected string type") \ | 242 V(kUnexpectedStringType, "Unexpected string type") \ |
242 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ | 243 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ |
243 "Unexpected type for RegExp data, FixedArray expected") \ | 244 "Unexpected type for RegExp data, FixedArray expected") \ |
(...skipping 27 matching lines...) Expand all Loading... |
271 }; | 272 }; |
272 #undef ERROR_MESSAGES_CONSTANTS | 273 #undef ERROR_MESSAGES_CONSTANTS |
273 | 274 |
274 | 275 |
275 const char* GetBailoutReason(BailoutReason reason); | 276 const char* GetBailoutReason(BailoutReason reason); |
276 | 277 |
277 } // namespace internal | 278 } // namespace internal |
278 } // namespace v8 | 279 } // namespace v8 |
279 | 280 |
280 #endif // V8_BAILOUT_REASON_H_ | 281 #endif // V8_BAILOUT_REASON_H_ |
OLD | NEW |