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

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

Issue 1419173007: [turbofan] Add support for transitioning stores to double fields. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/compiler/property-access-info.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 24 matching lines...) Expand all
35 V(CreateAllocationSite) \ 35 V(CreateAllocationSite) \
36 V(CreateWeakCell) \ 36 V(CreateWeakCell) \
37 V(CallFunction) \ 37 V(CallFunction) \
38 V(CallFunctionWithFeedback) \ 38 V(CallFunctionWithFeedback) \
39 V(CallFunctionWithFeedbackAndVector) \ 39 V(CallFunctionWithFeedbackAndVector) \
40 V(CallConstruct) \ 40 V(CallConstruct) \
41 V(CallTrampoline) \ 41 V(CallTrampoline) \
42 V(RegExpConstructResult) \ 42 V(RegExpConstructResult) \
43 V(TransitionElementsKind) \ 43 V(TransitionElementsKind) \
44 V(AllocateHeapNumber) \ 44 V(AllocateHeapNumber) \
45 V(AllocateMutableHeapNumber) \
45 V(AllocateInNewSpace) \ 46 V(AllocateInNewSpace) \
46 V(ArrayConstructorConstantArgCount) \ 47 V(ArrayConstructorConstantArgCount) \
47 V(ArrayConstructor) \ 48 V(ArrayConstructor) \
48 V(InternalArrayConstructorConstantArgCount) \ 49 V(InternalArrayConstructorConstantArgCount) \
49 V(InternalArrayConstructor) \ 50 V(InternalArrayConstructor) \
50 V(Compare) \ 51 V(Compare) \
51 V(CompareNil) \ 52 V(CompareNil) \
52 V(ToBoolean) \ 53 V(ToBoolean) \
53 V(BinaryOp) \ 54 V(BinaryOp) \
54 V(BinaryOpWithAllocationSite) \ 55 V(BinaryOpWithAllocationSite) \
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor) 515 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor)
515 }; 516 };
516 517
517 518
518 class AllocateHeapNumberDescriptor : public CallInterfaceDescriptor { 519 class AllocateHeapNumberDescriptor : public CallInterfaceDescriptor {
519 public: 520 public:
520 DECLARE_DESCRIPTOR(AllocateHeapNumberDescriptor, CallInterfaceDescriptor) 521 DECLARE_DESCRIPTOR(AllocateHeapNumberDescriptor, CallInterfaceDescriptor)
521 }; 522 };
522 523
523 524
525 class AllocateMutableHeapNumberDescriptor : public CallInterfaceDescriptor {
526 public:
527 DECLARE_DESCRIPTOR(AllocateMutableHeapNumberDescriptor,
528 CallInterfaceDescriptor)
529 };
530
531
524 class AllocateInNewSpaceDescriptor : public CallInterfaceDescriptor { 532 class AllocateInNewSpaceDescriptor : public CallInterfaceDescriptor {
525 public: 533 public:
526 DECLARE_DESCRIPTOR(AllocateInNewSpaceDescriptor, CallInterfaceDescriptor) 534 DECLARE_DESCRIPTOR(AllocateInNewSpaceDescriptor, CallInterfaceDescriptor)
527 }; 535 };
528 536
529 537
530 class ArrayConstructorConstantArgCountDescriptor 538 class ArrayConstructorConstantArgCountDescriptor
531 : public CallInterfaceDescriptor { 539 : public CallInterfaceDescriptor {
532 public: 540 public:
533 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, 541 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor,
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 } // namespace v8 770 } // namespace v8
763 771
764 772
765 #if V8_TARGET_ARCH_ARM64 773 #if V8_TARGET_ARCH_ARM64
766 #include "src/arm64/interface-descriptors-arm64.h" 774 #include "src/arm64/interface-descriptors-arm64.h"
767 #elif V8_TARGET_ARCH_ARM 775 #elif V8_TARGET_ARCH_ARM
768 #include "src/arm/interface-descriptors-arm.h" 776 #include "src/arm/interface-descriptors-arm.h"
769 #endif 777 #endif
770 778
771 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ 779 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_
OLDNEW
« no previous file with comments | « src/compiler/property-access-info.cc ('k') | src/interface-descriptors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698