| 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 23 matching lines...) Expand all Loading... |
| 34 V(CreateAllocationSite) \ | 34 V(CreateAllocationSite) \ |
| 35 V(CreateWeakCell) \ | 35 V(CreateWeakCell) \ |
| 36 V(CallFunction) \ | 36 V(CallFunction) \ |
| 37 V(CallFunctionWithFeedback) \ | 37 V(CallFunctionWithFeedback) \ |
| 38 V(CallFunctionWithFeedbackAndVector) \ | 38 V(CallFunctionWithFeedbackAndVector) \ |
| 39 V(CallConstruct) \ | 39 V(CallConstruct) \ |
| 40 V(CallTrampoline) \ | 40 V(CallTrampoline) \ |
| 41 V(RegExpConstructResult) \ | 41 V(RegExpConstructResult) \ |
| 42 V(TransitionElementsKind) \ | 42 V(TransitionElementsKind) \ |
| 43 V(AllocateHeapNumber) \ | 43 V(AllocateHeapNumber) \ |
| 44 V(AllocateInNewSpace) \ |
| 44 V(ArrayConstructorConstantArgCount) \ | 45 V(ArrayConstructorConstantArgCount) \ |
| 45 V(ArrayConstructor) \ | 46 V(ArrayConstructor) \ |
| 46 V(InternalArrayConstructorConstantArgCount) \ | 47 V(InternalArrayConstructorConstantArgCount) \ |
| 47 V(InternalArrayConstructor) \ | 48 V(InternalArrayConstructor) \ |
| 48 V(Compare) \ | 49 V(Compare) \ |
| 49 V(CompareNil) \ | 50 V(CompareNil) \ |
| 50 V(ToBoolean) \ | 51 V(ToBoolean) \ |
| 51 V(BinaryOp) \ | 52 V(BinaryOp) \ |
| 52 V(BinaryOpWithAllocationSite) \ | 53 V(BinaryOpWithAllocationSite) \ |
| 53 V(StringAdd) \ | 54 V(StringAdd) \ |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor) | 502 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor) |
| 502 }; | 503 }; |
| 503 | 504 |
| 504 | 505 |
| 505 class AllocateHeapNumberDescriptor : public CallInterfaceDescriptor { | 506 class AllocateHeapNumberDescriptor : public CallInterfaceDescriptor { |
| 506 public: | 507 public: |
| 507 DECLARE_DESCRIPTOR(AllocateHeapNumberDescriptor, CallInterfaceDescriptor) | 508 DECLARE_DESCRIPTOR(AllocateHeapNumberDescriptor, CallInterfaceDescriptor) |
| 508 }; | 509 }; |
| 509 | 510 |
| 510 | 511 |
| 512 class AllocateInNewSpaceDescriptor : public CallInterfaceDescriptor { |
| 513 public: |
| 514 DECLARE_DESCRIPTOR(AllocateInNewSpaceDescriptor, CallInterfaceDescriptor) |
| 515 }; |
| 516 |
| 517 |
| 511 class ArrayConstructorConstantArgCountDescriptor | 518 class ArrayConstructorConstantArgCountDescriptor |
| 512 : public CallInterfaceDescriptor { | 519 : public CallInterfaceDescriptor { |
| 513 public: | 520 public: |
| 514 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, | 521 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, |
| 515 CallInterfaceDescriptor) | 522 CallInterfaceDescriptor) |
| 516 }; | 523 }; |
| 517 | 524 |
| 518 | 525 |
| 519 class ArrayConstructorDescriptor : public CallInterfaceDescriptor { | 526 class ArrayConstructorDescriptor : public CallInterfaceDescriptor { |
| 520 public: | 527 public: |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 } // namespace v8 | 742 } // namespace v8 |
| 736 | 743 |
| 737 | 744 |
| 738 #if V8_TARGET_ARCH_ARM64 | 745 #if V8_TARGET_ARCH_ARM64 |
| 739 #include "src/arm64/interface-descriptors-arm64.h" | 746 #include "src/arm64/interface-descriptors-arm64.h" |
| 740 #elif V8_TARGET_ARCH_ARM | 747 #elif V8_TARGET_ARCH_ARM |
| 741 #include "src/arm/interface-descriptors-arm.h" | 748 #include "src/arm/interface-descriptors-arm.h" |
| 742 #endif | 749 #endif |
| 743 | 750 |
| 744 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 751 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
| OLD | NEW |