| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "Unexpected initial map for Array function") \ | 247 "Unexpected initial map for Array function") \ |
| 248 V(kUnexpectedInitialMapForInternalArrayFunction, \ | 248 V(kUnexpectedInitialMapForInternalArrayFunction, \ |
| 249 "Unexpected initial map for InternalArray function") \ | 249 "Unexpected initial map for InternalArray function") \ |
| 250 V(kUnexpectedLevelAfterReturnFromApiCall, \ | 250 V(kUnexpectedLevelAfterReturnFromApiCall, \ |
| 251 "Unexpected level after return from api call") \ | 251 "Unexpected level after return from api call") \ |
| 252 V(kUnexpectedNegativeValue, "Unexpected negative value") \ | 252 V(kUnexpectedNegativeValue, "Unexpected negative value") \ |
| 253 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ | 253 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ |
| 254 "Unexpected number of pre-allocated property fields") \ | 254 "Unexpected number of pre-allocated property fields") \ |
| 255 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ | 255 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ |
| 256 V(kUnexpectedSmi, "Unexpected smi value") \ | 256 V(kUnexpectedSmi, "Unexpected smi value") \ |
| 257 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ | |
| 258 V(kUnexpectedStringFunction, "Unexpected String function") \ | 257 V(kUnexpectedStringFunction, "Unexpected String function") \ |
| 259 V(kUnexpectedStringType, "Unexpected string type") \ | 258 V(kUnexpectedStringType, "Unexpected string type") \ |
| 260 V(kUnexpectedStringWrapperInstanceSize, \ | 259 V(kUnexpectedStringWrapperInstanceSize, \ |
| 261 "Unexpected string wrapper instance size") \ | 260 "Unexpected string wrapper instance size") \ |
| 262 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ | 261 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ |
| 263 "Unexpected type for RegExp data, FixedArray expected") \ | 262 "Unexpected type for RegExp data, FixedArray expected") \ |
| 264 V(kUnexpectedValue, "Unexpected value") \ | 263 V(kUnexpectedValue, "Unexpected value") \ |
| 265 V(kUnexpectedUnusedPropertiesOfStringWrapper, \ | 264 V(kUnexpectedUnusedPropertiesOfStringWrapper, \ |
| 266 "Unexpected unused properties of string wrapper") \ | 265 "Unexpected unused properties of string wrapper") \ |
| 267 V(kUnsupportedConstCompoundAssignment, \ | 266 V(kUnsupportedConstCompoundAssignment, \ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 295 }; | 294 }; |
| 296 #undef ERROR_MESSAGES_CONSTANTS | 295 #undef ERROR_MESSAGES_CONSTANTS |
| 297 | 296 |
| 298 | 297 |
| 299 const char* GetBailoutReason(BailoutReason reason); | 298 const char* GetBailoutReason(BailoutReason reason); |
| 300 | 299 |
| 301 } // namespace internal | 300 } // namespace internal |
| 302 } // namespace v8 | 301 } // namespace v8 |
| 303 | 302 |
| 304 #endif // V8_BAILOUT_REASON_H_ | 303 #endif // V8_BAILOUT_REASON_H_ |
| OLD | NEW |