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

Unified Diff: src/interface-descriptors.h

Issue 2803853005: Inline Array.prototype.forEach in TurboFan (Closed)
Patch Set: Review feedback Created 3 years, 7 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
Index: src/interface-descriptors.h
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h
index 87f0d82db660132a901482d982aecdaffdfe7288..71b3968c12db613bf656d0d7b5d2645a2a7534ab 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -35,6 +35,7 @@ class PlatformInterfaceDescriptor;
V(FastNewObject) \
V(FastNewArguments) \
V(TypeConversion) \
+ V(TypeConversionStackParameter) \
V(Typeof) \
V(FastCloneRegExp) \
V(FastCloneShallowArray) \
@@ -506,6 +507,14 @@ class TypeConversionDescriptor final : public CallInterfaceDescriptor {
static const Register ArgumentRegister();
};
+class TypeConversionStackParameterDescriptor final
+ : public CallInterfaceDescriptor {
+ public:
+ DEFINE_PARAMETERS(kArgument)
+ DECLARE_DESCRIPTOR(TypeConversionStackParameterDescriptor,
+ CallInterfaceDescriptor)
+};
+
class ForInPrepareDescriptor final : public CallInterfaceDescriptor {
public:
DEFINE_PARAMETERS(kObject)

Powered by Google App Engine
This is Rietveld 408576698