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