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

Unified Diff: src/interface-descriptors.h

Issue 2151773002: Avoid jumping to the runtime for ForInFilter (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove double label Created 4 years, 5 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/full-codegen/x64/full-codegen-x64.cc ('k') | src/runtime/runtime.h » ('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 3a46114f4bb249e9ac937e31b024bcf838469bcf..458a137e4bc6fdb8286510cda21cf0f67304b347 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -77,6 +77,7 @@ class PlatformInterfaceDescriptor;
V(Keyed) \
V(Named) \
V(HasProperty) \
+ V(ForInFilter) \
V(GetProperty) \
V(CallHandler) \
V(ArgumentAdaptor) \
@@ -530,6 +531,13 @@ class HasPropertyDescriptor final : public CallInterfaceDescriptor {
DECLARE_DEFAULT_DESCRIPTOR(HasPropertyDescriptor, CallInterfaceDescriptor, 2)
};
+class ForInFilterDescriptor final : public CallInterfaceDescriptor {
+ public:
+ enum ParameterIndices { kKeyIndex, kObjectIndex };
+
+ DECLARE_DEFAULT_DESCRIPTOR(ForInFilterDescriptor, CallInterfaceDescriptor, 2)
+};
+
class GetPropertyDescriptor final : public CallInterfaceDescriptor {
public:
enum ParameterIndices { kObjectIndex, kKeyIndex };
« no previous file with comments | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698