| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 F(GetInterceptorInfo, 1, 1) \ | 395 F(GetInterceptorInfo, 1, 1) \ |
| 396 F(ToFastProperties, 1, 1) \ | 396 F(ToFastProperties, 1, 1) \ |
| 397 F(AllocateHeapNumber, 0, 1) \ | 397 F(AllocateHeapNumber, 0, 1) \ |
| 398 F(NewObject, 2, 1) \ | 398 F(NewObject, 2, 1) \ |
| 399 F(FinalizeInstanceSize, 1, 1) \ | 399 F(FinalizeInstanceSize, 1, 1) \ |
| 400 F(LoadMutableDouble, 2, 1) \ | 400 F(LoadMutableDouble, 2, 1) \ |
| 401 F(TryMigrateInstance, 1, 1) \ | 401 F(TryMigrateInstance, 1, 1) \ |
| 402 F(IsJSGlobalProxy, 1, 1) \ | 402 F(IsJSGlobalProxy, 1, 1) \ |
| 403 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 403 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
| 404 F(DefineDataPropertyInLiteral, 6, 1) \ | 404 F(DefineDataPropertyInLiteral, 6, 1) \ |
| 405 F(CollectTypeProfile, 4, 1) \ | |
| 406 F(GetDataProperty, 2, 1) \ | 405 F(GetDataProperty, 2, 1) \ |
| 407 F(GetConstructorName, 1, 1) \ | 406 F(GetConstructorName, 1, 1) \ |
| 408 F(HasFastPackedElements, 1, 1) \ | 407 F(HasFastPackedElements, 1, 1) \ |
| 409 F(ValueOf, 1, 1) \ | 408 F(ValueOf, 1, 1) \ |
| 410 F(IsJSReceiver, 1, 1) \ | 409 F(IsJSReceiver, 1, 1) \ |
| 411 F(ClassOf, 1, 1) \ | 410 F(ClassOf, 1, 1) \ |
| 412 F(CopyDataProperties, 2, 1) \ | 411 F(CopyDataProperties, 2, 1) \ |
| 413 F(CopyDataPropertiesWithExcludedProperties, -1 /* >= 1 */, 1) \ | 412 F(CopyDataPropertiesWithExcludedProperties, -1 /* >= 1 */, 1) \ |
| 414 F(DefineGetterPropertyUnchecked, 4, 1) \ | 413 F(DefineGetterPropertyUnchecked, 4, 1) \ |
| 415 F(DefineSetterPropertyUnchecked, 4, 1) \ | 414 F(DefineSetterPropertyUnchecked, 4, 1) \ |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 kMaybeDeopted = 1 << 3, | 855 kMaybeDeopted = 1 << 3, |
| 857 kOptimized = 1 << 4, | 856 kOptimized = 1 << 4, |
| 858 kTurboFanned = 1 << 5, | 857 kTurboFanned = 1 << 5, |
| 859 kInterpreted = 1 << 6, | 858 kInterpreted = 1 << 6, |
| 860 }; | 859 }; |
| 861 | 860 |
| 862 } // namespace internal | 861 } // namespace internal |
| 863 } // namespace v8 | 862 } // namespace v8 |
| 864 | 863 |
| 865 #endif // V8_RUNTIME_RUNTIME_H_ | 864 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |