| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(kUnexpectedFunctionIDForInvokeIntrinsic, \ | 233 V(kUnexpectedFunctionIDForInvokeIntrinsic, \ |
| 234 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ | 234 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ |
| 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(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ |
| 238 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ | 238 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ |
| 239 V(kUnexpectedStringType, "Unexpected string type") \ | 239 V(kUnexpectedStringType, "Unexpected string type") \ |
| 240 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ | 240 V(kUnexpectedRegExpExecCall, "Unexpected call to the RegExpExecStub") \ |
| 241 "Unexpected type for RegExp data, FixedArray expected") \ | |
| 242 V(kUnexpectedValue, "Unexpected value") \ | 241 V(kUnexpectedValue, "Unexpected value") \ |
| 243 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ | 242 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ |
| 244 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ | 243 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ |
| 245 V(kUnsupportedLookupSlotInDeclaration, \ | 244 V(kUnsupportedLookupSlotInDeclaration, \ |
| 246 "Unsupported lookup slot in declaration") \ | 245 "Unsupported lookup slot in declaration") \ |
| 247 V(kUnsupportedModuleOperation, "Unsupported module operation") \ | 246 V(kUnsupportedModuleOperation, "Unsupported module operation") \ |
| 248 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ | 247 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ |
| 249 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ | 248 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ |
| 250 V(kUnsupportedPhiUseOfConstVariable, \ | 249 V(kUnsupportedPhiUseOfConstVariable, \ |
| 251 "Unsupported phi use of const or let variable") \ | 250 "Unsupported phi use of const or let variable") \ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 273 }; | 272 }; |
| 274 #undef ERROR_MESSAGES_CONSTANTS | 273 #undef ERROR_MESSAGES_CONSTANTS |
| 275 | 274 |
| 276 | 275 |
| 277 const char* GetBailoutReason(BailoutReason reason); | 276 const char* GetBailoutReason(BailoutReason reason); |
| 278 | 277 |
| 279 } // namespace internal | 278 } // namespace internal |
| 280 } // namespace v8 | 279 } // namespace v8 |
| 281 | 280 |
| 282 #endif // V8_BAILOUT_REASON_H_ | 281 #endif // V8_BAILOUT_REASON_H_ |
| OLD | NEW |