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

Unified Diff: src/interface-descriptors.h

Issue 2065113002: [ic] LoadGlobalIC caches PropertyCells in the feedback vector. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing Created 4 years, 6 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/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 7ac27ad88b5e51a2660cc2f64386e7023236d920..986df2caf9877fd7d6c816b68fc3554a18897cc3 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -17,6 +17,7 @@ class PlatformInterfaceDescriptor;
V(Void) \
V(Load) \
V(LoadGlobal) \
+ V(LoadGlobalWithVector) \
V(Store) \
V(StoreTransition) \
V(VectorStoreTransition) \
@@ -80,7 +81,6 @@ class PlatformInterfaceDescriptor;
V(ApiCallbackWith6Args) \
V(ApiCallbackWith7Args) \
V(ApiGetter) \
- V(LoadGlobalViaContext) \
V(StoreGlobalViaContext) \
V(MathPowTagged) \
V(MathPowInteger) \
@@ -296,6 +296,14 @@ class LoadGlobalDescriptor : public CallInterfaceDescriptor {
DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(LoadGlobalDescriptor,
CallInterfaceDescriptor)
+ enum ParameterIndices { kNameIndex, kSlotIndex };
+};
+
+class LoadGlobalWithVectorDescriptor : public CallInterfaceDescriptor {
+ public:
+ DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(LoadGlobalWithVectorDescriptor,
+ CallInterfaceDescriptor)
+
enum ParameterIndices { kNameIndex, kSlotIndex, kVectorIndex };
};
@@ -552,15 +560,6 @@ class RegExpConstructResultDescriptor : public CallInterfaceDescriptor {
};
-class LoadGlobalViaContextDescriptor : public CallInterfaceDescriptor {
- public:
- DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(LoadGlobalViaContextDescriptor,
- CallInterfaceDescriptor)
-
- static const Register SlotRegister();
-};
-
-
class StoreGlobalViaContextDescriptor : public CallInterfaceDescriptor {
public:
DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE(StoreGlobalViaContextDescriptor,
« no previous file with comments | « src/ic/ic.cc ('k') | src/interface-descriptors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698