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

Unified Diff: src/interface-descriptors.h

Issue 2263253002: [interpreter] Make the binary op with Smi bytecode handlers collect type feedback. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update. Created 4 years, 4 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 dce4d97b908771490e412cc308d46631ef8e78ee..af59bdb121727e2eaf4c0f9c8ad6782fbc412ab1 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -74,6 +74,7 @@ class PlatformInterfaceDescriptor;
V(Compare) \
V(BinaryOp) \
V(BinaryOpWithAllocationSite) \
+ V(BinaryOpWithVector) \
V(CountOp) \
V(StringAdd) \
V(StringCompare) \
@@ -722,6 +723,13 @@ class BinaryOpWithAllocationSiteDescriptor : public CallInterfaceDescriptor {
CallInterfaceDescriptor)
};
+class BinaryOpWithVectorDescriptor : public CallInterfaceDescriptor {
+ public:
+ DEFINE_PARAMETERS(kLeft, kRight, kSlot, kVector)
+ DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(BinaryOpWithVectorDescriptor,
+ CallInterfaceDescriptor)
+};
+
class CountOpDescriptor final : public CallInterfaceDescriptor {
public:
DECLARE_DESCRIPTOR(CountOpDescriptor, CallInterfaceDescriptor)
« 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