| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(kUnexpectedTestTypeofLiteralFlag, \ | 240 V(kUnexpectedTestTypeofLiteralFlag, \ |
| 241 "Unexpected literal flag for TestTypeof bytecode") \ | 241 "Unexpected literal flag for TestTypeof bytecode") \ |
| 242 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ | 242 V(kUnexpectedRegExpExecCall, "Unexpected call to the RegExpExecStub") \ |
| 243 "Unexpected type for RegExp data, FixedArray expected") \ | |
| 244 V(kUnexpectedValue, "Unexpected value") \ | 243 V(kUnexpectedValue, "Unexpected value") \ |
| 245 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ | 244 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ |
| 246 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ | 245 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ |
| 247 V(kUnsupportedLookupSlotInDeclaration, \ | 246 V(kUnsupportedLookupSlotInDeclaration, \ |
| 248 "Unsupported lookup slot in declaration") \ | 247 "Unsupported lookup slot in declaration") \ |
| 249 V(kUnsupportedModuleOperation, "Unsupported module operation") \ | 248 V(kUnsupportedModuleOperation, "Unsupported module operation") \ |
| 250 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ | 249 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ |
| 251 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ | 250 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ |
| 252 V(kUnsupportedPhiUseOfConstVariable, \ | 251 V(kUnsupportedPhiUseOfConstVariable, \ |
| 253 "Unsupported phi use of const or let variable") \ | 252 "Unsupported phi use of const or let variable") \ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 275 }; | 274 }; |
| 276 #undef ERROR_MESSAGES_CONSTANTS | 275 #undef ERROR_MESSAGES_CONSTANTS |
| 277 | 276 |
| 278 | 277 |
| 279 const char* GetBailoutReason(BailoutReason reason); | 278 const char* GetBailoutReason(BailoutReason reason); |
| 280 | 279 |
| 281 } // namespace internal | 280 } // namespace internal |
| 282 } // namespace v8 | 281 } // namespace v8 |
| 283 | 282 |
| 284 #endif // V8_BAILOUT_REASON_H_ | 283 #endif // V8_BAILOUT_REASON_H_ |
| OLD | NEW |