| 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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 DECLARE_DESCRIPTOR(RegExpConstructResultDescriptor, CallInterfaceDescriptor) | 417 DECLARE_DESCRIPTOR(RegExpConstructResultDescriptor, CallInterfaceDescriptor) |
| 418 }; | 418 }; |
| 419 | 419 |
| 420 | 420 |
| 421 class LoadGlobalViaContextDescriptor : public CallInterfaceDescriptor { | 421 class LoadGlobalViaContextDescriptor : public CallInterfaceDescriptor { |
| 422 public: | 422 public: |
| 423 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(LoadGlobalViaContextDescriptor, | 423 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(LoadGlobalViaContextDescriptor, |
| 424 CallInterfaceDescriptor) | 424 CallInterfaceDescriptor) |
| 425 | 425 |
| 426 static const Register SlotRegister(); | 426 static const Register SlotRegister(); |
| 427 static const Register NameRegister(); | |
| 428 }; | 427 }; |
| 429 | 428 |
| 430 | 429 |
| 431 class StoreGlobalViaContextDescriptor : public CallInterfaceDescriptor { | 430 class StoreGlobalViaContextDescriptor : public CallInterfaceDescriptor { |
| 432 public: | 431 public: |
| 433 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(StoreGlobalViaContextDescriptor, | 432 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(StoreGlobalViaContextDescriptor, |
| 434 CallInterfaceDescriptor) | 433 CallInterfaceDescriptor) |
| 435 | 434 |
| 436 static const Register SlotRegister(); | 435 static const Register SlotRegister(); |
| 437 static const Register NameRegister(); | |
| 438 static const Register ValueRegister(); | 436 static const Register ValueRegister(); |
| 439 }; | 437 }; |
| 440 | 438 |
| 441 | 439 |
| 442 class TransitionElementsKindDescriptor : public CallInterfaceDescriptor { | 440 class TransitionElementsKindDescriptor : public CallInterfaceDescriptor { |
| 443 public: | 441 public: |
| 444 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor) | 442 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor) |
| 445 }; | 443 }; |
| 446 | 444 |
| 447 | 445 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 } // namespace v8::internal | 641 } // namespace v8::internal |
| 644 | 642 |
| 645 | 643 |
| 646 #if V8_TARGET_ARCH_ARM64 | 644 #if V8_TARGET_ARCH_ARM64 |
| 647 #include "src/arm64/interface-descriptors-arm64.h" | 645 #include "src/arm64/interface-descriptors-arm64.h" |
| 648 #elif V8_TARGET_ARCH_ARM | 646 #elif V8_TARGET_ARCH_ARM |
| 649 #include "src/arm/interface-descriptors-arm.h" | 647 #include "src/arm/interface-descriptors-arm.h" |
| 650 #endif | 648 #endif |
| 651 | 649 |
| 652 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ | 650 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ |
| OLD | NEW |