| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
| 6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 F(GetInterceptorInfo, 1, 1) \ | 394 F(GetInterceptorInfo, 1, 1) \ |
| 395 F(ToFastProperties, 1, 1) \ | 395 F(ToFastProperties, 1, 1) \ |
| 396 F(AllocateHeapNumber, 0, 1) \ | 396 F(AllocateHeapNumber, 0, 1) \ |
| 397 F(NewObject, 2, 1) \ | 397 F(NewObject, 2, 1) \ |
| 398 F(FinalizeInstanceSize, 1, 1) \ | 398 F(FinalizeInstanceSize, 1, 1) \ |
| 399 F(LoadMutableDouble, 2, 1) \ | 399 F(LoadMutableDouble, 2, 1) \ |
| 400 F(TryMigrateInstance, 1, 1) \ | 400 F(TryMigrateInstance, 1, 1) \ |
| 401 F(IsJSGlobalProxy, 1, 1) \ | 401 F(IsJSGlobalProxy, 1, 1) \ |
| 402 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 402 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
| 403 F(DefineDataPropertyInLiteral, 6, 1) \ | 403 F(DefineDataPropertyInLiteral, 6, 1) \ |
| 404 F(StoreTypeInformation, 4, 1) \ |
| 404 F(GetDataProperty, 2, 1) \ | 405 F(GetDataProperty, 2, 1) \ |
| 405 F(GetConstructorName, 1, 1) \ | 406 F(GetConstructorName, 1, 1) \ |
| 406 F(HasFastPackedElements, 1, 1) \ | 407 F(HasFastPackedElements, 1, 1) \ |
| 407 F(ValueOf, 1, 1) \ | 408 F(ValueOf, 1, 1) \ |
| 408 F(IsJSReceiver, 1, 1) \ | 409 F(IsJSReceiver, 1, 1) \ |
| 409 F(ClassOf, 1, 1) \ | 410 F(ClassOf, 1, 1) \ |
| 410 F(CopyDataProperties, 2, 1) \ | 411 F(CopyDataProperties, 2, 1) \ |
| 411 F(CopyDataPropertiesWithExcludedProperties, -1 /* >= 1 */, 1) \ | 412 F(CopyDataPropertiesWithExcludedProperties, -1 /* >= 1 */, 1) \ |
| 412 F(DefineGetterPropertyUnchecked, 4, 1) \ | 413 F(DefineGetterPropertyUnchecked, 4, 1) \ |
| 413 F(DefineSetterPropertyUnchecked, 4, 1) \ | 414 F(DefineSetterPropertyUnchecked, 4, 1) \ |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 kMaybeDeopted = 1 << 3, | 858 kMaybeDeopted = 1 << 3, |
| 858 kOptimized = 1 << 4, | 859 kOptimized = 1 << 4, |
| 859 kTurboFanned = 1 << 5, | 860 kTurboFanned = 1 << 5, |
| 860 kInterpreted = 1 << 6, | 861 kInterpreted = 1 << 6, |
| 861 }; | 862 }; |
| 862 | 863 |
| 863 } // namespace internal | 864 } // namespace internal |
| 864 } // namespace v8 | 865 } // namespace v8 |
| 865 | 866 |
| 866 #endif // V8_RUNTIME_RUNTIME_H_ | 867 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |