| 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(FastCloneRegExp) \ | 34 V(FastCloneRegExp) \ |
| 35 V(FastCloneShallowArray) \ | 35 V(FastCloneShallowArray) \ |
| 36 V(FastCloneShallowObject) \ | 36 V(FastCloneShallowObject) \ |
| 37 V(CreateAllocationSite) \ | 37 V(CreateAllocationSite) \ |
| 38 V(CreateWeakCell) \ | 38 V(CreateWeakCell) \ |
| 39 V(CallFunction) \ | 39 V(CallFunction) \ |
| 40 V(CallFunctionWithFeedback) \ | 40 V(CallFunctionWithFeedback) \ |
| 41 V(CallFunctionWithFeedbackAndVector) \ | 41 V(CallFunctionWithFeedbackAndVector) \ |
| 42 V(CallConstruct) \ | 42 V(CallConstruct) \ |
| 43 V(CallTrampoline) \ | 43 V(CallTrampoline) \ |
| 44 V(ConstructStub) \ |
| 44 V(ConstructTrampoline) \ | 45 V(ConstructTrampoline) \ |
| 45 V(RegExpConstructResult) \ | 46 V(RegExpConstructResult) \ |
| 46 V(TransitionElementsKind) \ | 47 V(TransitionElementsKind) \ |
| 47 V(AllocateHeapNumber) \ | 48 V(AllocateHeapNumber) \ |
| 48 V(AllocateMutableHeapNumber) \ | 49 V(AllocateMutableHeapNumber) \ |
| 49 V(AllocateInNewSpace) \ | 50 V(AllocateInNewSpace) \ |
| 50 V(ArrayConstructorConstantArgCount) \ | 51 V(ArrayConstructorConstantArgCount) \ |
| 51 V(ArrayConstructor) \ | 52 V(ArrayConstructor) \ |
| 52 V(InternalArrayConstructorConstantArgCount) \ | 53 V(InternalArrayConstructorConstantArgCount) \ |
| 53 V(InternalArrayConstructor) \ | 54 V(InternalArrayConstructor) \ |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 }; | 468 }; |
| 468 | 469 |
| 469 | 470 |
| 470 class CallTrampolineDescriptor : public CallInterfaceDescriptor { | 471 class CallTrampolineDescriptor : public CallInterfaceDescriptor { |
| 471 public: | 472 public: |
| 472 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(CallTrampolineDescriptor, | 473 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(CallTrampolineDescriptor, |
| 473 CallInterfaceDescriptor) | 474 CallInterfaceDescriptor) |
| 474 }; | 475 }; |
| 475 | 476 |
| 476 | 477 |
| 478 class ConstructStubDescriptor : public CallInterfaceDescriptor { |
| 479 public: |
| 480 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(ConstructStubDescriptor, |
| 481 CallInterfaceDescriptor) |
| 482 }; |
| 483 |
| 484 |
| 477 class ConstructTrampolineDescriptor : public CallInterfaceDescriptor { | 485 class ConstructTrampolineDescriptor : public CallInterfaceDescriptor { |
| 478 public: | 486 public: |
| 479 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(ConstructTrampolineDescriptor, | 487 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(ConstructTrampolineDescriptor, |
| 480 CallInterfaceDescriptor) | 488 CallInterfaceDescriptor) |
| 481 }; | 489 }; |
| 482 | 490 |
| 483 | 491 |
| 484 class CallFunctionDescriptor : public CallInterfaceDescriptor { | 492 class CallFunctionDescriptor : public CallInterfaceDescriptor { |
| 485 public: | 493 public: |
| 486 DECLARE_DESCRIPTOR(CallFunctionDescriptor, CallInterfaceDescriptor) | 494 DECLARE_DESCRIPTOR(CallFunctionDescriptor, CallInterfaceDescriptor) |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 } // namespace v8 | 784 } // namespace v8 |
| 777 | 785 |
| 778 | 786 |
| 779 #if V8_TARGET_ARCH_ARM64 | 787 #if V8_TARGET_ARCH_ARM64 |
| 780 #include "src/arm64/interface-descriptors-arm64.h" | 788 #include "src/arm64/interface-descriptors-arm64.h" |
| 781 #elif V8_TARGET_ARCH_ARM | 789 #elif V8_TARGET_ARCH_ARM |
| 782 #include "src/arm/interface-descriptors-arm.h" | 790 #include "src/arm/interface-descriptors-arm.h" |
| 783 #endif | 791 #endif |
| 784 | 792 |
| 785 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 793 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
| OLD | NEW |