Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: src/interface-descriptors.h

Issue 1259963002: [stubs] Don't pass name to Load/StoreGlobalViaContext stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | src/interface-descriptors.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/ia32/lithium-ia32.cc ('k') | src/interface-descriptors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698