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

Unified Diff: src/interface-descriptors.h

Issue 1476413003: Provide call counts for constructor calls, surface them as a vector IC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 5 years, 1 month 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/ic/ic.cc ('k') | src/log.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 dd1313d7276c93b308758e8c899c6beaac70731d..e7f23fc2a2f443e193945412ebfb8f3d11f18823 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -38,7 +38,7 @@ class PlatformInterfaceDescriptor;
V(CallFunction) \
V(CallFunctionWithFeedback) \
V(CallFunctionWithFeedbackAndVector) \
- V(CallConstruct) \
+ V(Construct) \
V(CallTrampoline) \
V(ConstructTrampoline) \
V(RegExpConstructResult) \
@@ -495,9 +495,9 @@ class CallFunctionWithFeedbackAndVectorDescriptor
};
-class CallConstructDescriptor : public CallInterfaceDescriptor {
+class ConstructDescriptor : public CallInterfaceDescriptor {
public:
- DECLARE_DESCRIPTOR(CallConstructDescriptor, CallInterfaceDescriptor)
+ DECLARE_DESCRIPTOR(ConstructDescriptor, CallInterfaceDescriptor)
};
« no previous file with comments | « src/ic/ic.cc ('k') | src/log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698