| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 225     "Unexpected initial map for Array function")                               \ | 225     "Unexpected initial map for Array function")                               \ | 
| 226   V(kUnexpectedInitialMapForInternalArrayFunction,                             \ | 226   V(kUnexpectedInitialMapForInternalArrayFunction,                             \ | 
| 227     "Unexpected initial map for InternalArray function")                       \ | 227     "Unexpected initial map for InternalArray function")                       \ | 
| 228   V(kUnexpectedLevelAfterReturnFromApiCall,                                    \ | 228   V(kUnexpectedLevelAfterReturnFromApiCall,                                    \ | 
| 229     "Unexpected level after return from api call")                             \ | 229     "Unexpected level after return from api call")                             \ | 
| 230   V(kUnexpectedNegativeValue, "Unexpected negative value")                     \ | 230   V(kUnexpectedNegativeValue, "Unexpected negative value")                     \ | 
| 231   V(kUnexpectedNumberOfPreAllocatedPropertyFields,                             \ | 231   V(kUnexpectedNumberOfPreAllocatedPropertyFields,                             \ | 
| 232     "Unexpected number of pre-allocated property fields")                      \ | 232     "Unexpected number of pre-allocated property fields")                      \ | 
| 233   V(kUnexpectedFPCRMode, "Unexpected FPCR mode.")                              \ | 233   V(kUnexpectedFPCRMode, "Unexpected FPCR mode.")                              \ | 
| 234   V(kUnexpectedSmi, "Unexpected smi value")                                    \ | 234   V(kUnexpectedSmi, "Unexpected smi value")                                    \ | 
|  | 235   V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen")   \ | 
| 235   V(kUnexpectedStackPointer, "The stack pointer is not the expected value")    \ | 236   V(kUnexpectedStackPointer, "The stack pointer is not the expected value")    \ | 
| 236   V(kUnexpectedStringType, "Unexpected string type")                           \ | 237   V(kUnexpectedStringType, "Unexpected string type")                           \ | 
| 237   V(kUnexpectedTypeForRegExpDataFixedArrayExpected,                            \ | 238   V(kUnexpectedTypeForRegExpDataFixedArrayExpected,                            \ | 
| 238     "Unexpected type for RegExp data, FixedArray expected")                    \ | 239     "Unexpected type for RegExp data, FixedArray expected")                    \ | 
| 239   V(kUnexpectedValue, "Unexpected value")                                      \ | 240   V(kUnexpectedValue, "Unexpected value")                                      \ | 
| 240   V(kUnsupportedConstCompoundAssignment,                                       \ | 241   V(kUnsupportedConstCompoundAssignment,                                       \ | 
| 241     "Unsupported const compound assignment")                                   \ | 242     "Unsupported const compound assignment")                                   \ | 
| 242   V(kUnsupportedCountOperationWithConst,                                       \ | 243   V(kUnsupportedCountOperationWithConst,                                       \ | 
| 243     "Unsupported count operation with const")                                  \ | 244     "Unsupported count operation with const")                                  \ | 
| 244   V(kUnsupportedDoubleImmediate, "Unsupported double immediate")               \ | 245   V(kUnsupportedDoubleImmediate, "Unsupported double immediate")               \ | 
| (...skipping 26 matching lines...) Expand all  Loading... | 
| 271 }; | 272 }; | 
| 272 #undef ERROR_MESSAGES_CONSTANTS | 273 #undef ERROR_MESSAGES_CONSTANTS | 
| 273 | 274 | 
| 274 | 275 | 
| 275 const char* GetBailoutReason(BailoutReason reason); | 276 const char* GetBailoutReason(BailoutReason reason); | 
| 276 | 277 | 
| 277 }  // namespace internal | 278 }  // namespace internal | 
| 278 }  // namespace v8 | 279 }  // namespace v8 | 
| 279 | 280 | 
| 280 #endif  // V8_BAILOUT_REASON_H_ | 281 #endif  // V8_BAILOUT_REASON_H_ | 
| OLD | NEW | 
|---|