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

Unified Diff: src/interface-descriptors.h

Issue 871063002: Use a trampoline stub to load the type feedback vector for CallICs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ports. Created 5 years, 11 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/ic/ic.cc ('k') | src/x64/code-stubs-x64.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 2de7469758a7e93594b92492feb90943b140ffe2..8308d83a27688635556e940098dd9a66510589b3 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -30,6 +30,7 @@ class PlatformInterfaceDescriptor;
V(CreateAllocationSite) \
V(CallFunction) \
V(CallFunctionWithFeedback) \
+ V(CallFunctionWithFeedbackAndVector) \
V(CallConstruct) \
V(RegExpConstructResult) \
V(TransitionElementsKind) \
@@ -330,6 +331,14 @@ class CallFunctionWithFeedbackDescriptor : public CallInterfaceDescriptor {
};
+class CallFunctionWithFeedbackAndVectorDescriptor
+ : public CallInterfaceDescriptor {
+ public:
+ DECLARE_DESCRIPTOR(CallFunctionWithFeedbackAndVectorDescriptor,
+ CallInterfaceDescriptor)
+};
+
+
class CallConstructDescriptor : public CallInterfaceDescriptor {
public:
DECLARE_DESCRIPTOR(CallConstructDescriptor, CallInterfaceDescriptor)
« no previous file with comments | « src/ic/ic.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698