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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 F(IsJSModule, 1, 1) \ | 546 F(IsJSModule, 1, 1) \ |
547 F(PushModuleContext, 2, 1) \ | 547 F(PushModuleContext, 2, 1) \ |
548 F(DeclareModules, 1, 1) \ | 548 F(DeclareModules, 1, 1) \ |
549 F(DeleteLookupSlot, 2, 1) \ | 549 F(DeleteLookupSlot, 2, 1) \ |
550 F(StoreLookupSlot, 4, 1) \ | 550 F(StoreLookupSlot, 4, 1) \ |
551 F(GetArgumentsProperty, 1, 1) \ | 551 F(GetArgumentsProperty, 1, 1) \ |
552 F(ArgumentsLength, 0, 1) \ | 552 F(ArgumentsLength, 0, 1) \ |
553 F(Arguments, 1, 1) | 553 F(Arguments, 1, 1) |
554 | 554 |
555 | 555 |
| 556 #define FOR_EACH_INTRINSIC_SIMD(F) \ |
| 557 F(CreateFloat32x4, 4, 1) \ |
| 558 F(NewFloat32x4Wrapper, 1, 1) \ |
| 559 F(Float32x4Check, 1, 1) \ |
| 560 F(Float32x4ExtractLane, 2, 1) \ |
| 561 F(Float32x4Equals, 2, 1) \ |
| 562 F(Float32x4SameValue, 2, 1) \ |
| 563 F(Float32x4SameValueZero, 2, 1) |
| 564 |
| 565 |
556 #define FOR_EACH_INTRINSIC_STRINGS(F) \ | 566 #define FOR_EACH_INTRINSIC_STRINGS(F) \ |
557 F(StringReplaceOneCharWithString, 3, 1) \ | 567 F(StringReplaceOneCharWithString, 3, 1) \ |
558 F(StringIndexOf, 3, 1) \ | 568 F(StringIndexOf, 3, 1) \ |
559 F(StringLastIndexOf, 3, 1) \ | 569 F(StringLastIndexOf, 3, 1) \ |
560 F(StringLocaleCompare, 2, 1) \ | 570 F(StringLocaleCompare, 2, 1) \ |
561 F(SubStringRT, 3, 1) \ | 571 F(SubStringRT, 3, 1) \ |
562 F(SubString, 3, 1) \ | 572 F(SubString, 3, 1) \ |
563 F(StringAddRT, 2, 1) \ | 573 F(StringAddRT, 2, 1) \ |
564 F(StringAdd, 2, 1) \ | 574 F(StringAdd, 2, 1) \ |
565 F(InternalizeString, 1, 1) \ | 575 F(InternalizeString, 1, 1) \ |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 FOR_EACH_INTRINSIC_JSON(F) \ | 731 FOR_EACH_INTRINSIC_JSON(F) \ |
722 FOR_EACH_INTRINSIC_LITERALS(F) \ | 732 FOR_EACH_INTRINSIC_LITERALS(F) \ |
723 FOR_EACH_INTRINSIC_LIVEEDIT(F) \ | 733 FOR_EACH_INTRINSIC_LIVEEDIT(F) \ |
724 FOR_EACH_INTRINSIC_MATHS(F) \ | 734 FOR_EACH_INTRINSIC_MATHS(F) \ |
725 FOR_EACH_INTRINSIC_NUMBERS(F) \ | 735 FOR_EACH_INTRINSIC_NUMBERS(F) \ |
726 FOR_EACH_INTRINSIC_OBJECT(F) \ | 736 FOR_EACH_INTRINSIC_OBJECT(F) \ |
727 FOR_EACH_INTRINSIC_OBSERVE(F) \ | 737 FOR_EACH_INTRINSIC_OBSERVE(F) \ |
728 FOR_EACH_INTRINSIC_PROXY(F) \ | 738 FOR_EACH_INTRINSIC_PROXY(F) \ |
729 FOR_EACH_INTRINSIC_REGEXP(F) \ | 739 FOR_EACH_INTRINSIC_REGEXP(F) \ |
730 FOR_EACH_INTRINSIC_SCOPES(F) \ | 740 FOR_EACH_INTRINSIC_SCOPES(F) \ |
| 741 FOR_EACH_INTRINSIC_SIMD(F) \ |
731 FOR_EACH_INTRINSIC_STRINGS(F) \ | 742 FOR_EACH_INTRINSIC_STRINGS(F) \ |
732 FOR_EACH_INTRINSIC_SYMBOL(F) \ | 743 FOR_EACH_INTRINSIC_SYMBOL(F) \ |
733 FOR_EACH_INTRINSIC_TEST(F) \ | 744 FOR_EACH_INTRINSIC_TEST(F) \ |
734 FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ | 745 FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ |
735 FOR_EACH_INTRINSIC_URI(F) | 746 FOR_EACH_INTRINSIC_URI(F) |
736 | 747 |
737 // FOR_EACH_INTRINSIC defines the list of all intrinsics, coming in 2 flavors, | 748 // FOR_EACH_INTRINSIC defines the list of all intrinsics, coming in 2 flavors, |
738 // either returning an object or a pair. | 749 // either returning an object or a pair. |
739 #define FOR_EACH_INTRINSIC(F) \ | 750 #define FOR_EACH_INTRINSIC(F) \ |
740 FOR_EACH_INTRINSIC_RETURN_PAIR(F) \ | 751 FOR_EACH_INTRINSIC_RETURN_PAIR(F) \ |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
932 inline bool Runtime::AtomicIsLockFree(uint32_t size) { | 943 inline bool Runtime::AtomicIsLockFree(uint32_t size) { |
933 return size == 1 || size == 2 || size == 4; | 944 return size == 1 || size == 2 || size == 4; |
934 } | 945 } |
935 | 946 |
936 #endif | 947 #endif |
937 | 948 |
938 } // namespace internal | 949 } // namespace internal |
939 } // namespace v8 | 950 } // namespace v8 |
940 | 951 |
941 #endif // V8_RUNTIME_RUNTIME_H_ | 952 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |