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

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

Issue 2771483002: [Builtins] New Array.prototype.filter implementation observability bug. (Closed)
Patch Set: Created 3 years, 9 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/compiler/code-assembler.cc ('k') | no next file » | 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 <memory> 8 #include <memory>
9 9
10 #include "src/assembler.h" 10 #include "src/assembler.h"
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 class IteratingArrayBuiltinDescriptor : public BuiltinDescriptor { 713 class IteratingArrayBuiltinDescriptor : public BuiltinDescriptor {
714 public: 714 public:
715 DEFINE_BUILTIN_PARAMETERS(kCallback, kThisArg) 715 DEFINE_BUILTIN_PARAMETERS(kCallback, kThisArg)
716 DECLARE_BUILTIN_DESCRIPTOR(IteratingArrayBuiltinDescriptor) 716 DECLARE_BUILTIN_DESCRIPTOR(IteratingArrayBuiltinDescriptor)
717 }; 717 };
718 718
719 class IteratingArrayBuiltinLoopContinuationDescriptor 719 class IteratingArrayBuiltinLoopContinuationDescriptor
720 : public BuiltinDescriptor { 720 : public BuiltinDescriptor {
721 public: 721 public:
722 DEFINE_BUILTIN_PARAMETERS(kCallback, kThisArg, kArray, kObject, kInitialK, 722 DEFINE_BUILTIN_PARAMETERS(kCallback, kThisArg, kArray, kObject, kInitialK,
723 kLength) 723 kLength, kTo)
724 DECLARE_BUILTIN_DESCRIPTOR(IteratingArrayBuiltinLoopContinuationDescriptor) 724 DECLARE_BUILTIN_DESCRIPTOR(IteratingArrayBuiltinLoopContinuationDescriptor)
725 }; 725 };
726 726
727 class ArrayConstructorDescriptor : public CallInterfaceDescriptor { 727 class ArrayConstructorDescriptor : public CallInterfaceDescriptor {
728 public: 728 public:
729 DEFINE_PARAMETERS(kTarget, kNewTarget, kActualArgumentsCount, kAllocationSite) 729 DEFINE_PARAMETERS(kTarget, kNewTarget, kActualArgumentsCount, kAllocationSite)
730 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(ArrayConstructorDescriptor, 730 DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(ArrayConstructorDescriptor,
731 CallInterfaceDescriptor) 731 CallInterfaceDescriptor)
732 }; 732 };
733 733
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
997 } // namespace v8 997 } // namespace v8
998 998
999 999
1000 #if V8_TARGET_ARCH_ARM64 1000 #if V8_TARGET_ARCH_ARM64
1001 #include "src/arm64/interface-descriptors-arm64.h" 1001 #include "src/arm64/interface-descriptors-arm64.h"
1002 #elif V8_TARGET_ARCH_ARM 1002 #elif V8_TARGET_ARCH_ARM
1003 #include "src/arm/interface-descriptors-arm.h" 1003 #include "src/arm/interface-descriptors-arm.h"
1004 #endif 1004 #endif
1005 1005
1006 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ 1006 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_
OLDNEW
« no previous file with comments | « src/compiler/code-assembler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698