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

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

Issue 1404773002: Introduce AllocateInNewSpace stub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@begin-macro
Patch Set: Rebase Created 5 years, 2 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/interface-descriptors-ia32.cc ('k') | src/mips/interface-descriptors-mips.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 23 matching lines...) Expand all
34 V(CreateAllocationSite) \ 34 V(CreateAllocationSite) \
35 V(CreateWeakCell) \ 35 V(CreateWeakCell) \
36 V(CallFunction) \ 36 V(CallFunction) \
37 V(CallFunctionWithFeedback) \ 37 V(CallFunctionWithFeedback) \
38 V(CallFunctionWithFeedbackAndVector) \ 38 V(CallFunctionWithFeedbackAndVector) \
39 V(CallConstruct) \ 39 V(CallConstruct) \
40 V(CallTrampoline) \ 40 V(CallTrampoline) \
41 V(RegExpConstructResult) \ 41 V(RegExpConstructResult) \
42 V(TransitionElementsKind) \ 42 V(TransitionElementsKind) \
43 V(AllocateHeapNumber) \ 43 V(AllocateHeapNumber) \
44 V(AllocateInNewSpace) \
44 V(ArrayConstructorConstantArgCount) \ 45 V(ArrayConstructorConstantArgCount) \
45 V(ArrayConstructor) \ 46 V(ArrayConstructor) \
46 V(InternalArrayConstructorConstantArgCount) \ 47 V(InternalArrayConstructorConstantArgCount) \
47 V(InternalArrayConstructor) \ 48 V(InternalArrayConstructor) \
48 V(Compare) \ 49 V(Compare) \
49 V(CompareNil) \ 50 V(CompareNil) \
50 V(ToBoolean) \ 51 V(ToBoolean) \
51 V(BinaryOp) \ 52 V(BinaryOp) \
52 V(BinaryOpWithAllocationSite) \ 53 V(BinaryOpWithAllocationSite) \
53 V(StringAdd) \ 54 V(StringAdd) \
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor) 502 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor)
502 }; 503 };
503 504
504 505
505 class AllocateHeapNumberDescriptor : public CallInterfaceDescriptor { 506 class AllocateHeapNumberDescriptor : public CallInterfaceDescriptor {
506 public: 507 public:
507 DECLARE_DESCRIPTOR(AllocateHeapNumberDescriptor, CallInterfaceDescriptor) 508 DECLARE_DESCRIPTOR(AllocateHeapNumberDescriptor, CallInterfaceDescriptor)
508 }; 509 };
509 510
510 511
512 class AllocateInNewSpaceDescriptor : public CallInterfaceDescriptor {
513 public:
514 DECLARE_DESCRIPTOR(AllocateInNewSpaceDescriptor, CallInterfaceDescriptor)
515 };
516
517
511 class ArrayConstructorConstantArgCountDescriptor 518 class ArrayConstructorConstantArgCountDescriptor
512 : public CallInterfaceDescriptor { 519 : public CallInterfaceDescriptor {
513 public: 520 public:
514 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, 521 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor,
515 CallInterfaceDescriptor) 522 CallInterfaceDescriptor)
516 }; 523 };
517 524
518 525
519 class ArrayConstructorDescriptor : public CallInterfaceDescriptor { 526 class ArrayConstructorDescriptor : public CallInterfaceDescriptor {
520 public: 527 public:
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 } // namespace v8 742 } // namespace v8
736 743
737 744
738 #if V8_TARGET_ARCH_ARM64 745 #if V8_TARGET_ARCH_ARM64
739 #include "src/arm64/interface-descriptors-arm64.h" 746 #include "src/arm64/interface-descriptors-arm64.h"
740 #elif V8_TARGET_ARCH_ARM 747 #elif V8_TARGET_ARCH_ARM
741 #include "src/arm/interface-descriptors-arm.h" 748 #include "src/arm/interface-descriptors-arm.h"
742 #endif 749 #endif
743 750
744 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ 751 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_
OLDNEW
« no previous file with comments | « src/ia32/interface-descriptors-ia32.cc ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698