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

Unified Diff: src/interface-descriptors.h

Issue 1701653002: Revert of [runtime] Turn ArgumentAccessStub into FastNewSloppyArgumentsStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ia32/interface-descriptors-ia32.cc ('k') | src/interface-descriptors.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interface-descriptors.h
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h
index a713c36a08c97ec135e58835f47b2beb7aeddacd..d6d1e0e28ffedff7b2b61a20223c43bdb66f598c 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -26,8 +26,7 @@
V(FastNewClosure) \
V(FastNewContext) \
V(FastNewRestParameter) \
- V(FastNewSloppyArguments) \
- V(FastNewStrictArguments) \
+ V(FastNewStrictArguments) \
V(ToNumber) \
V(ToLength) \
V(ToString) \
@@ -70,6 +69,7 @@
V(ApiFunction) \
V(ApiAccessor) \
V(ApiGetter) \
+ V(ArgumentsAccessNew) \
V(LoadGlobalViaContext) \
V(StoreGlobalViaContext) \
V(MathPowTagged) \
@@ -379,12 +379,6 @@
DECLARE_DESCRIPTOR(FastNewRestParameterDescriptor, CallInterfaceDescriptor)
};
-class FastNewSloppyArgumentsDescriptor : public CallInterfaceDescriptor {
- public:
- DECLARE_DESCRIPTOR(FastNewSloppyArgumentsDescriptor,
- CallInterfaceDescriptor)
-};
-
class FastNewStrictArgumentsDescriptor : public CallInterfaceDescriptor {
public:
DECLARE_DESCRIPTOR(FastNewStrictArgumentsDescriptor,
@@ -711,6 +705,17 @@
CallInterfaceDescriptor)
static const Register function_address();
+};
+
+
+class ArgumentsAccessNewDescriptor : public CallInterfaceDescriptor {
+ public:
+ DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(ArgumentsAccessNewDescriptor,
+ CallInterfaceDescriptor)
+
+ static const Register function();
+ static const Register parameter_count();
+ static const Register parameter_pointer();
};
« no previous file with comments | « src/ia32/interface-descriptors-ia32.cc ('k') | src/interface-descriptors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698