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_CALL_INTERFACE_DESCRIPTOR_H_ | 5 #ifndef V8_CALL_INTERFACE_DESCRIPTOR_H_ |
6 #define V8_CALL_INTERFACE_DESCRIPTOR_H_ | 6 #define V8_CALL_INTERFACE_DESCRIPTOR_H_ |
7 | 7 |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/macro-assembler.h" | 9 #include "src/macro-assembler.h" |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 V(AllocateFloat32x4) \ | 51 V(AllocateFloat32x4) \ |
52 V(AllocateInt32x4) \ | 52 V(AllocateInt32x4) \ |
53 V(AllocateUint32x4) \ | 53 V(AllocateUint32x4) \ |
54 V(AllocateBool32x4) \ | 54 V(AllocateBool32x4) \ |
55 V(AllocateInt16x8) \ | 55 V(AllocateInt16x8) \ |
56 V(AllocateUint16x8) \ | 56 V(AllocateUint16x8) \ |
57 V(AllocateBool16x8) \ | 57 V(AllocateBool16x8) \ |
58 V(AllocateInt8x16) \ | 58 V(AllocateInt8x16) \ |
59 V(AllocateUint8x16) \ | 59 V(AllocateUint8x16) \ |
60 V(AllocateBool8x16) \ | 60 V(AllocateBool8x16) \ |
61 V(Allocate) \ | |
62 V(ArrayConstructorConstantArgCount) \ | 61 V(ArrayConstructorConstantArgCount) \ |
63 V(ArrayConstructor) \ | 62 V(ArrayConstructor) \ |
64 V(InternalArrayConstructorConstantArgCount) \ | 63 V(InternalArrayConstructorConstantArgCount) \ |
65 V(InternalArrayConstructor) \ | 64 V(InternalArrayConstructor) \ |
66 V(Compare) \ | 65 V(Compare) \ |
67 V(BinaryOp) \ | 66 V(BinaryOp) \ |
68 V(BinaryOpWithAllocationSite) \ | 67 V(BinaryOpWithAllocationSite) \ |
69 V(CountOp) \ | 68 V(CountOp) \ |
70 V(StringAdd) \ | 69 V(StringAdd) \ |
71 V(StringCompare) \ | 70 V(StringCompare) \ |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 }; | 570 }; |
572 SIMD128_TYPES(SIMD128_ALLOC_DESC) | 571 SIMD128_TYPES(SIMD128_ALLOC_DESC) |
573 #undef SIMD128_ALLOC_DESC | 572 #undef SIMD128_ALLOC_DESC |
574 | 573 |
575 class AllocateMutableHeapNumberDescriptor : public CallInterfaceDescriptor { | 574 class AllocateMutableHeapNumberDescriptor : public CallInterfaceDescriptor { |
576 public: | 575 public: |
577 DECLARE_DESCRIPTOR(AllocateMutableHeapNumberDescriptor, | 576 DECLARE_DESCRIPTOR(AllocateMutableHeapNumberDescriptor, |
578 CallInterfaceDescriptor) | 577 CallInterfaceDescriptor) |
579 }; | 578 }; |
580 | 579 |
581 class AllocateDescriptor : public CallInterfaceDescriptor { | |
582 public: | |
583 DECLARE_DESCRIPTOR(AllocateDescriptor, CallInterfaceDescriptor) | |
584 }; | |
585 | |
586 | 580 |
587 class ArrayConstructorConstantArgCountDescriptor | 581 class ArrayConstructorConstantArgCountDescriptor |
588 : public CallInterfaceDescriptor { | 582 : public CallInterfaceDescriptor { |
589 public: | 583 public: |
590 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, | 584 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, |
591 CallInterfaceDescriptor) | 585 CallInterfaceDescriptor) |
592 }; | 586 }; |
593 | 587 |
594 | 588 |
595 class ArrayConstructorDescriptor : public CallInterfaceDescriptor { | 589 class ArrayConstructorDescriptor : public CallInterfaceDescriptor { |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 } // namespace v8 | 840 } // namespace v8 |
847 | 841 |
848 | 842 |
849 #if V8_TARGET_ARCH_ARM64 | 843 #if V8_TARGET_ARCH_ARM64 |
850 #include "src/arm64/interface-descriptors-arm64.h" | 844 #include "src/arm64/interface-descriptors-arm64.h" |
851 #elif V8_TARGET_ARCH_ARM | 845 #elif V8_TARGET_ARCH_ARM |
852 #include "src/arm/interface-descriptors-arm.h" | 846 #include "src/arm/interface-descriptors-arm.h" |
853 #endif | 847 #endif |
854 | 848 |
855 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 849 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
OLD | NEW |