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

Unified Diff: src/code-factory.cc

Issue 2147043002: Cleanup interface descriptors to reflect that vectors are part of stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@rename-store-ic
Patch Set: Rebasing Created 4 years, 5 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/builtins/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 4285ea64e2ea8aea713de48ef16c9abb723e8116..3480fe2b0d5e2367b2d5b44def9f4435781f8ca9 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -84,14 +84,14 @@ Callable CodeFactory::CallICInOptimizedCode(Isolate* isolate, int argc,
// static
Callable CodeFactory::StoreIC(Isolate* isolate, LanguageMode language_mode) {
StoreICTrampolineStub stub(isolate, StoreICState(language_mode));
- return Callable(stub.GetCode(), VectorStoreICTrampolineDescriptor(isolate));
+ return Callable(stub.GetCode(), StoreDescriptor(isolate));
}
// static
Callable CodeFactory::StoreICInOptimizedCode(Isolate* isolate,
LanguageMode language_mode) {
- CallInterfaceDescriptor descriptor = VectorStoreICDescriptor(isolate);
+ CallInterfaceDescriptor descriptor = StoreWithVectorDescriptor(isolate);
return Callable(
StoreIC::initialize_stub_in_optimized_code(isolate, language_mode),
descriptor);
@@ -102,14 +102,14 @@ Callable CodeFactory::StoreICInOptimizedCode(Isolate* isolate,
Callable CodeFactory::KeyedStoreIC(Isolate* isolate,
LanguageMode language_mode) {
KeyedStoreICTrampolineStub stub(isolate, StoreICState(language_mode));
- return Callable(stub.GetCode(), VectorStoreICTrampolineDescriptor(isolate));
+ return Callable(stub.GetCode(), StoreDescriptor(isolate));
}
// static
Callable CodeFactory::KeyedStoreICInOptimizedCode(Isolate* isolate,
LanguageMode language_mode) {
- CallInterfaceDescriptor descriptor = VectorStoreICDescriptor(isolate);
+ CallInterfaceDescriptor descriptor = StoreWithVectorDescriptor(isolate);
return Callable(
KeyedStoreIC::initialize_stub_in_optimized_code(isolate, language_mode),
descriptor);
« no previous file with comments | « src/builtins/builtins.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698