| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 V(Keyed) \ | 62 V(Keyed) \ |
| 63 V(Named) \ | 63 V(Named) \ |
| 64 V(CallHandler) \ | 64 V(CallHandler) \ |
| 65 V(ArgumentAdaptor) \ | 65 V(ArgumentAdaptor) \ |
| 66 V(ApiFunction) \ | 66 V(ApiFunction) \ |
| 67 V(ApiAccessor) \ | 67 V(ApiAccessor) \ |
| 68 V(ApiGetter) \ | 68 V(ApiGetter) \ |
| 69 V(ArgumentsAccessRead) \ | 69 V(ArgumentsAccessRead) \ |
| 70 V(ArgumentsAccessNew) \ | 70 V(ArgumentsAccessNew) \ |
| 71 V(RestParamAccess) \ | 71 V(RestParamAccess) \ |
| 72 V(StoreArrayLiteralElement) \ | |
| 73 V(LoadGlobalViaContext) \ | 72 V(LoadGlobalViaContext) \ |
| 74 V(StoreGlobalViaContext) \ | 73 V(StoreGlobalViaContext) \ |
| 75 V(MathPowTagged) \ | 74 V(MathPowTagged) \ |
| 76 V(MathPowInteger) \ | 75 V(MathPowInteger) \ |
| 77 V(ContextOnly) \ | 76 V(ContextOnly) \ |
| 78 V(GrowArrayElements) \ | 77 V(GrowArrayElements) \ |
| 79 V(InterpreterPushArgsAndCall) \ | 78 V(InterpreterPushArgsAndCall) \ |
| 80 V(InterpreterPushArgsAndConstruct) \ | 79 V(InterpreterPushArgsAndConstruct) \ |
| 81 V(InterpreterCEntry) | 80 V(InterpreterCEntry) |
| 82 | 81 |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 class RestParamAccessDescriptor : public CallInterfaceDescriptor { | 714 class RestParamAccessDescriptor : public CallInterfaceDescriptor { |
| 716 public: | 715 public: |
| 717 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(RestParamAccessDescriptor, | 716 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(RestParamAccessDescriptor, |
| 718 CallInterfaceDescriptor) | 717 CallInterfaceDescriptor) |
| 719 static const Register parameter_count(); | 718 static const Register parameter_count(); |
| 720 static const Register parameter_pointer(); | 719 static const Register parameter_pointer(); |
| 721 static const Register rest_parameter_index(); | 720 static const Register rest_parameter_index(); |
| 722 }; | 721 }; |
| 723 | 722 |
| 724 | 723 |
| 725 class StoreArrayLiteralElementDescriptor : public CallInterfaceDescriptor { | |
| 726 public: | |
| 727 DECLARE_DESCRIPTOR(StoreArrayLiteralElementDescriptor, | |
| 728 CallInterfaceDescriptor) | |
| 729 }; | |
| 730 | |
| 731 | |
| 732 class MathPowTaggedDescriptor : public CallInterfaceDescriptor { | 724 class MathPowTaggedDescriptor : public CallInterfaceDescriptor { |
| 733 public: | 725 public: |
| 734 DECLARE_DESCRIPTOR(MathPowTaggedDescriptor, CallInterfaceDescriptor) | 726 DECLARE_DESCRIPTOR(MathPowTaggedDescriptor, CallInterfaceDescriptor) |
| 735 | 727 |
| 736 static const Register exponent(); | 728 static const Register exponent(); |
| 737 }; | 729 }; |
| 738 | 730 |
| 739 | 731 |
| 740 class MathPowIntegerDescriptor : public CallInterfaceDescriptor { | 732 class MathPowIntegerDescriptor : public CallInterfaceDescriptor { |
| 741 public: | 733 public: |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 } // namespace v8 | 787 } // namespace v8 |
| 796 | 788 |
| 797 | 789 |
| 798 #if V8_TARGET_ARCH_ARM64 | 790 #if V8_TARGET_ARCH_ARM64 |
| 799 #include "src/arm64/interface-descriptors-arm64.h" | 791 #include "src/arm64/interface-descriptors-arm64.h" |
| 800 #elif V8_TARGET_ARCH_ARM | 792 #elif V8_TARGET_ARCH_ARM |
| 801 #include "src/arm/interface-descriptors-arm.h" | 793 #include "src/arm/interface-descriptors-arm.h" |
| 802 #endif | 794 #endif |
| 803 | 795 |
| 804 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 796 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
| OLD | NEW |