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