| 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 "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/objects.h" | 9 #include "src/objects.h" |
| 10 #include "src/zone.h" | 10 #include "src/zone.h" |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 F(PushModuleContext, 2, 1) \ | 561 F(PushModuleContext, 2, 1) \ |
| 562 F(DeclareModules, 1, 1) \ | 562 F(DeclareModules, 1, 1) \ |
| 563 F(DeleteLookupSlot, 2, 1) \ | 563 F(DeleteLookupSlot, 2, 1) \ |
| 564 F(StoreLookupSlot, 4, 1) \ | 564 F(StoreLookupSlot, 4, 1) \ |
| 565 F(GetArgumentsProperty, 1, 1) \ | 565 F(GetArgumentsProperty, 1, 1) \ |
| 566 F(ArgumentsLength, 0, 1) \ | 566 F(ArgumentsLength, 0, 1) \ |
| 567 F(Arguments, 1, 1) | 567 F(Arguments, 1, 1) |
| 568 | 568 |
| 569 | 569 |
| 570 #define FOR_EACH_INTRINSIC_SIMD(F) \ | 570 #define FOR_EACH_INTRINSIC_SIMD(F) \ |
| 571 F(IsSimdObject, 1, 1) \ | 571 F(IsSimdValue, 1, 1) \ |
| 572 F(SimdToObject, 1, 1) \ | 572 F(SimdToObject, 1, 1) \ |
| 573 F(SimdEquals, 2, 1) \ | 573 F(SimdEquals, 2, 1) \ |
| 574 F(SimdSameValue, 2, 1) \ | 574 F(SimdSameValue, 2, 1) \ |
| 575 F(SimdSameValueZero, 2, 1) \ | 575 F(SimdSameValueZero, 2, 1) \ |
| 576 F(CreateFloat32x4, 4, 1) \ | 576 F(CreateFloat32x4, 4, 1) \ |
| 577 F(CreateInt32x4, 4, 1) \ | 577 F(CreateInt32x4, 4, 1) \ |
| 578 F(CreateBool32x4, 4, 1) \ | 578 F(CreateBool32x4, 4, 1) \ |
| 579 F(CreateInt16x8, 8, 1) \ | 579 F(CreateInt16x8, 8, 1) \ |
| 580 F(CreateBool16x8, 8, 1) \ | 580 F(CreateBool16x8, 8, 1) \ |
| 581 F(CreateInt8x16, 16, 1) \ | 581 F(CreateInt8x16, 16, 1) \ |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 inline bool Runtime::AtomicIsLockFree(uint32_t size) { | 1009 inline bool Runtime::AtomicIsLockFree(uint32_t size) { |
| 1010 return size == 1 || size == 2 || size == 4; | 1010 return size == 1 || size == 2 || size == 4; |
| 1011 } | 1011 } |
| 1012 | 1012 |
| 1013 #endif | 1013 #endif |
| 1014 | 1014 |
| 1015 } // namespace internal | 1015 } // namespace internal |
| 1016 } // namespace v8 | 1016 } // namespace v8 |
| 1017 | 1017 |
| 1018 #endif // V8_RUNTIME_RUNTIME_H_ | 1018 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |