| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 V(kUnexpectedNegativeValue, "Unexpected negative value") \ | 227 V(kUnexpectedNegativeValue, "Unexpected negative value") \ |
| 228 V(kUnexpectedFunctionIDForInvokeIntrinsic, \ | 228 V(kUnexpectedFunctionIDForInvokeIntrinsic, \ |
| 229 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ | 229 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ |
| 230 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ | 230 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ |
| 231 V(kUnexpectedSmi, "Unexpected smi value") \ | 231 V(kUnexpectedSmi, "Unexpected smi value") \ |
| 232 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ | 232 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ |
| 233 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ | 233 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ |
| 234 V(kUnexpectedStringType, "Unexpected string type") \ | 234 V(kUnexpectedStringType, "Unexpected string type") \ |
| 235 V(kUnexpectedTestTypeofLiteralFlag, \ | 235 V(kUnexpectedTestTypeofLiteralFlag, \ |
| 236 "Unexpected literal flag for TestTypeof bytecode") \ | 236 "Unexpected literal flag for TestTypeof bytecode") \ |
| 237 V(kUnexpectedRegExpExecCall, "Unexpected call to the RegExpExecStub") \ |
| 237 V(kUnexpectedValue, "Unexpected value") \ | 238 V(kUnexpectedValue, "Unexpected value") \ |
| 238 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ | 239 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ |
| 239 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ | 240 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ |
| 240 V(kUnsupportedLookupSlotInDeclaration, \ | 241 V(kUnsupportedLookupSlotInDeclaration, \ |
| 241 "Unsupported lookup slot in declaration") \ | 242 "Unsupported lookup slot in declaration") \ |
| 242 V(kUnsupportedModuleOperation, "Unsupported module operation") \ | 243 V(kUnsupportedModuleOperation, "Unsupported module operation") \ |
| 243 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ | 244 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ |
| 244 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ | 245 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ |
| 245 V(kUnsupportedPhiUseOfConstVariable, \ | 246 V(kUnsupportedPhiUseOfConstVariable, \ |
| 246 "Unsupported phi use of const or let variable") \ | 247 "Unsupported phi use of const or let variable") \ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 268 }; | 269 }; |
| 269 #undef ERROR_MESSAGES_CONSTANTS | 270 #undef ERROR_MESSAGES_CONSTANTS |
| 270 | 271 |
| 271 | 272 |
| 272 const char* GetBailoutReason(BailoutReason reason); | 273 const char* GetBailoutReason(BailoutReason reason); |
| 273 | 274 |
| 274 } // namespace internal | 275 } // namespace internal |
| 275 } // namespace v8 | 276 } // namespace v8 |
| 276 | 277 |
| 277 #endif // V8_BAILOUT_REASON_H_ | 278 #endif // V8_BAILOUT_REASON_H_ |
| OLD | NEW |