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(AllocateInNewSpace) \ | 61 V(Allocate) \ |
62 V(ArrayConstructorConstantArgCount) \ | 62 V(ArrayConstructorConstantArgCount) \ |
63 V(ArrayConstructor) \ | 63 V(ArrayConstructor) \ |
64 V(InternalArrayConstructorConstantArgCount) \ | 64 V(InternalArrayConstructorConstantArgCount) \ |
65 V(InternalArrayConstructor) \ | 65 V(InternalArrayConstructor) \ |
66 V(Compare) \ | 66 V(Compare) \ |
67 V(BinaryOp) \ | 67 V(BinaryOp) \ |
68 V(BinaryOpWithAllocationSite) \ | 68 V(BinaryOpWithAllocationSite) \ |
69 V(StringAdd) \ | 69 V(StringAdd) \ |
70 V(StringCompare) \ | 70 V(StringCompare) \ |
71 V(Keyed) \ | 71 V(Keyed) \ |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 }; | 570 }; |
571 SIMD128_TYPES(SIMD128_ALLOC_DESC) | 571 SIMD128_TYPES(SIMD128_ALLOC_DESC) |
572 #undef SIMD128_ALLOC_DESC | 572 #undef SIMD128_ALLOC_DESC |
573 | 573 |
574 class AllocateMutableHeapNumberDescriptor : public CallInterfaceDescriptor { | 574 class AllocateMutableHeapNumberDescriptor : public CallInterfaceDescriptor { |
575 public: | 575 public: |
576 DECLARE_DESCRIPTOR(AllocateMutableHeapNumberDescriptor, | 576 DECLARE_DESCRIPTOR(AllocateMutableHeapNumberDescriptor, |
577 CallInterfaceDescriptor) | 577 CallInterfaceDescriptor) |
578 }; | 578 }; |
579 | 579 |
580 | 580 class AllocateDescriptor : public CallInterfaceDescriptor { |
581 class AllocateInNewSpaceDescriptor : public CallInterfaceDescriptor { | |
582 public: | 581 public: |
583 DECLARE_DESCRIPTOR(AllocateInNewSpaceDescriptor, CallInterfaceDescriptor) | 582 DECLARE_DESCRIPTOR(AllocateDescriptor, CallInterfaceDescriptor) |
584 }; | 583 }; |
585 | 584 |
586 | 585 |
587 class ArrayConstructorConstantArgCountDescriptor | 586 class ArrayConstructorConstantArgCountDescriptor |
588 : public CallInterfaceDescriptor { | 587 : public CallInterfaceDescriptor { |
589 public: | 588 public: |
590 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, | 589 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, |
591 CallInterfaceDescriptor) | 590 CallInterfaceDescriptor) |
592 }; | 591 }; |
593 | 592 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
843 } // namespace v8 | 842 } // namespace v8 |
844 | 843 |
845 | 844 |
846 #if V8_TARGET_ARCH_ARM64 | 845 #if V8_TARGET_ARCH_ARM64 |
847 #include "src/arm64/interface-descriptors-arm64.h" | 846 #include "src/arm64/interface-descriptors-arm64.h" |
848 #elif V8_TARGET_ARCH_ARM | 847 #elif V8_TARGET_ARCH_ARM |
849 #include "src/arm/interface-descriptors-arm.h" | 848 #include "src/arm/interface-descriptors-arm.h" |
850 #endif | 849 #endif |
851 | 850 |
852 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 851 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
OLD | NEW |