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(RegExpConstructResult) \ | 51 V(RegExpConstructResult) \ |
52 V(TransitionElementsKind) \ | 52 V(TransitionElementsKind) \ |
53 V(AllocateHeapNumber) \ | 53 V(AllocateHeapNumber) \ |
54 V(AllocateMutableHeapNumber) \ | 54 V(AllocateMutableHeapNumber) \ |
55 V(AllocateInNewSpace) \ | 55 V(AllocateInNewSpace) \ |
56 V(ArrayConstructorConstantArgCount) \ | 56 V(ArrayConstructorConstantArgCount) \ |
57 V(ArrayConstructor) \ | 57 V(ArrayConstructor) \ |
58 V(InternalArrayConstructorConstantArgCount) \ | 58 V(InternalArrayConstructorConstantArgCount) \ |
59 V(InternalArrayConstructor) \ | 59 V(InternalArrayConstructor) \ |
60 V(Compare) \ | 60 V(Compare) \ |
61 V(CompareNil) \ | |
62 V(ToBoolean) \ | 61 V(ToBoolean) \ |
63 V(BinaryOp) \ | 62 V(BinaryOp) \ |
64 V(BinaryOpWithAllocationSite) \ | 63 V(BinaryOpWithAllocationSite) \ |
65 V(StringAdd) \ | 64 V(StringAdd) \ |
66 V(StringCompare) \ | 65 V(StringCompare) \ |
67 V(Keyed) \ | 66 V(Keyed) \ |
68 V(Named) \ | 67 V(Named) \ |
69 V(CallHandler) \ | 68 V(CallHandler) \ |
70 V(ArgumentAdaptor) \ | 69 V(ArgumentAdaptor) \ |
71 V(ApiFunction) \ | 70 V(ApiFunction) \ |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
624 InternalArrayConstructorDescriptor, CallInterfaceDescriptor) | 623 InternalArrayConstructorDescriptor, CallInterfaceDescriptor) |
625 }; | 624 }; |
626 | 625 |
627 | 626 |
628 class CompareDescriptor : public CallInterfaceDescriptor { | 627 class CompareDescriptor : public CallInterfaceDescriptor { |
629 public: | 628 public: |
630 DECLARE_DESCRIPTOR(CompareDescriptor, CallInterfaceDescriptor) | 629 DECLARE_DESCRIPTOR(CompareDescriptor, CallInterfaceDescriptor) |
631 }; | 630 }; |
632 | 631 |
633 | 632 |
634 class CompareNilDescriptor : public CallInterfaceDescriptor { | |
635 public: | |
636 DECLARE_DESCRIPTOR(CompareNilDescriptor, CallInterfaceDescriptor) | |
637 }; | |
638 | |
639 | |
640 class ToBooleanDescriptor : public CallInterfaceDescriptor { | 633 class ToBooleanDescriptor : public CallInterfaceDescriptor { |
641 public: | 634 public: |
642 DECLARE_DESCRIPTOR(ToBooleanDescriptor, CallInterfaceDescriptor) | 635 DECLARE_DESCRIPTOR(ToBooleanDescriptor, CallInterfaceDescriptor) |
643 }; | 636 }; |
644 | 637 |
645 | 638 |
646 class BinaryOpDescriptor : public CallInterfaceDescriptor { | 639 class BinaryOpDescriptor : public CallInterfaceDescriptor { |
647 public: | 640 public: |
648 DECLARE_DESCRIPTOR(BinaryOpDescriptor, CallInterfaceDescriptor) | 641 DECLARE_DESCRIPTOR(BinaryOpDescriptor, CallInterfaceDescriptor) |
649 }; | 642 }; |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
797 } // namespace v8 | 790 } // namespace v8 |
798 | 791 |
799 | 792 |
800 #if V8_TARGET_ARCH_ARM64 | 793 #if V8_TARGET_ARCH_ARM64 |
801 #include "src/arm64/interface-descriptors-arm64.h" | 794 #include "src/arm64/interface-descriptors-arm64.h" |
802 #elif V8_TARGET_ARCH_ARM | 795 #elif V8_TARGET_ARCH_ARM |
803 #include "src/arm/interface-descriptors-arm.h" | 796 #include "src/arm/interface-descriptors-arm.h" |
804 #endif | 797 #endif |
805 | 798 |
806 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 799 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
OLD | NEW |