| 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 22 matching lines...) Expand all Loading... |
| 33 V(CallFunctionWithFeedback) \ | 33 V(CallFunctionWithFeedback) \ |
| 34 V(CallFunctionWithFeedbackAndVector) \ | 34 V(CallFunctionWithFeedbackAndVector) \ |
| 35 V(CallConstruct) \ | 35 V(CallConstruct) \ |
| 36 V(RegExpConstructResult) \ | 36 V(RegExpConstructResult) \ |
| 37 V(TransitionElementsKind) \ | 37 V(TransitionElementsKind) \ |
| 38 V(AllocateHeapNumber) \ | 38 V(AllocateHeapNumber) \ |
| 39 V(ArrayConstructorConstantArgCount) \ | 39 V(ArrayConstructorConstantArgCount) \ |
| 40 V(ArrayConstructor) \ | 40 V(ArrayConstructor) \ |
| 41 V(InternalArrayConstructorConstantArgCount) \ | 41 V(InternalArrayConstructorConstantArgCount) \ |
| 42 V(InternalArrayConstructor) \ | 42 V(InternalArrayConstructor) \ |
| 43 V(Compare) \ |
| 43 V(CompareNil) \ | 44 V(CompareNil) \ |
| 44 V(ToBoolean) \ | 45 V(ToBoolean) \ |
| 45 V(BinaryOp) \ | 46 V(BinaryOp) \ |
| 46 V(BinaryOpWithAllocationSite) \ | 47 V(BinaryOpWithAllocationSite) \ |
| 47 V(StringAdd) \ | 48 V(StringAdd) \ |
| 48 V(Keyed) \ | 49 V(Keyed) \ |
| 49 V(Named) \ | 50 V(Named) \ |
| 50 V(CallHandler) \ | 51 V(CallHandler) \ |
| 51 V(ArgumentAdaptor) \ | 52 V(ArgumentAdaptor) \ |
| 52 V(ApiFunction) \ | 53 V(ApiFunction) \ |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 }; | 400 }; |
| 400 | 401 |
| 401 | 402 |
| 402 class InternalArrayConstructorDescriptor : public CallInterfaceDescriptor { | 403 class InternalArrayConstructorDescriptor : public CallInterfaceDescriptor { |
| 403 public: | 404 public: |
| 404 DECLARE_DESCRIPTOR(InternalArrayConstructorDescriptor, | 405 DECLARE_DESCRIPTOR(InternalArrayConstructorDescriptor, |
| 405 CallInterfaceDescriptor) | 406 CallInterfaceDescriptor) |
| 406 }; | 407 }; |
| 407 | 408 |
| 408 | 409 |
| 410 class CompareDescriptor : public CallInterfaceDescriptor { |
| 411 public: |
| 412 DECLARE_DESCRIPTOR(CompareDescriptor, CallInterfaceDescriptor) |
| 413 }; |
| 414 |
| 415 |
| 409 class CompareNilDescriptor : public CallInterfaceDescriptor { | 416 class CompareNilDescriptor : public CallInterfaceDescriptor { |
| 410 public: | 417 public: |
| 411 DECLARE_DESCRIPTOR(CompareNilDescriptor, CallInterfaceDescriptor) | 418 DECLARE_DESCRIPTOR(CompareNilDescriptor, CallInterfaceDescriptor) |
| 412 }; | 419 }; |
| 413 | 420 |
| 414 | 421 |
| 415 class ToBooleanDescriptor : public CallInterfaceDescriptor { | 422 class ToBooleanDescriptor : public CallInterfaceDescriptor { |
| 416 public: | 423 public: |
| 417 DECLARE_DESCRIPTOR(ToBooleanDescriptor, CallInterfaceDescriptor) | 424 DECLARE_DESCRIPTOR(ToBooleanDescriptor, CallInterfaceDescriptor) |
| 418 }; | 425 }; |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 } // namespace v8::internal | 538 } // namespace v8::internal |
| 532 | 539 |
| 533 | 540 |
| 534 #if V8_TARGET_ARCH_ARM64 | 541 #if V8_TARGET_ARCH_ARM64 |
| 535 #include "src/arm64/interface-descriptors-arm64.h" | 542 #include "src/arm64/interface-descriptors-arm64.h" |
| 536 #elif V8_TARGET_ARCH_ARM | 543 #elif V8_TARGET_ARCH_ARM |
| 537 #include "src/arm/interface-descriptors-arm.h" | 544 #include "src/arm/interface-descriptors-arm.h" |
| 538 #endif | 545 #endif |
| 539 | 546 |
| 540 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 547 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
| OLD | NEW |