| 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")        \ |  | 
| 238   V(kUnexpectedValue, "Unexpected value")                                      \ | 237   V(kUnexpectedValue, "Unexpected value")                                      \ | 
| 239   V(kUnsupportedDoubleImmediate, "Unsupported double immediate")               \ | 238   V(kUnsupportedDoubleImmediate, "Unsupported double immediate")               \ | 
| 240   V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment")  \ | 239   V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment")  \ | 
| 241   V(kUnsupportedLookupSlotInDeclaration,                                       \ | 240   V(kUnsupportedLookupSlotInDeclaration,                                       \ | 
| 242     "Unsupported lookup slot in declaration")                                  \ | 241     "Unsupported lookup slot in declaration")                                  \ | 
| 243   V(kUnsupportedModuleOperation, "Unsupported module operation")               \ | 242   V(kUnsupportedModuleOperation, "Unsupported module operation")               \ | 
| 244   V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare")      \ | 243   V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare")      \ | 
| 245   V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments")         \ | 244   V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments")         \ | 
| 246   V(kUnsupportedPhiUseOfConstVariable,                                         \ | 245   V(kUnsupportedPhiUseOfConstVariable,                                         \ | 
| 247     "Unsupported phi use of const or let variable")                            \ | 246     "Unsupported phi use of const or let variable")                            \ | 
| (...skipping 21 matching lines...) Expand all  Loading... | 
| 269 }; | 268 }; | 
| 270 #undef ERROR_MESSAGES_CONSTANTS | 269 #undef ERROR_MESSAGES_CONSTANTS | 
| 271 | 270 | 
| 272 | 271 | 
| 273 const char* GetBailoutReason(BailoutReason reason); | 272 const char* GetBailoutReason(BailoutReason reason); | 
| 274 | 273 | 
| 275 }  // namespace internal | 274 }  // namespace internal | 
| 276 }  // namespace v8 | 275 }  // namespace v8 | 
| 277 | 276 | 
| 278 #endif  // V8_BAILOUT_REASON_H_ | 277 #endif  // V8_BAILOUT_REASON_H_ | 
| OLD | NEW | 
|---|