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

Unified Diff: src/interface-descriptors.h

Issue 1894953004: Add HasProperty code stub that tries simple lookups or jumps to runtime otherwise. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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 f41bc647e949a0912cacda552d99316db76ec7b6..a785501c831a4e4809a6b8622ce9edf743aef225 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -70,6 +70,7 @@ class PlatformInterfaceDescriptor;
V(StringCompare) \
V(Keyed) \
V(Named) \
+ V(HasProperty) \
V(CallHandler) \
V(ArgumentAdaptor) \
V(ApiCallbackWith0Args) \
@@ -432,6 +433,15 @@ class TypeConversionDescriptor final : public CallInterfaceDescriptor {
static const Register ArgumentRegister();
};
+class HasPropertyDescriptor final : public CallInterfaceDescriptor {
+ public:
+ enum ParameterIndices { kKeyIndex, kObjectIndex };
+
+ DECLARE_DESCRIPTOR(HasPropertyDescriptor, CallInterfaceDescriptor)
+
+ static const Register KeyRegister();
+ static const Register ObjectRegister();
+};
class TypeofDescriptor : public CallInterfaceDescriptor {
public:

Powered by Google App Engine
This is Rietveld 408576698