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

Unified Diff: src/code-factory.cc

Issue 2147013002: [stubs] Removed "Vector" ornamentation from StoreIC stubs names. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 96b87fe561a23a3ec1963185fd14c38d53d91171..0a3a33933e174c889f283158b5265840a66ddb52 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -83,7 +83,7 @@ Callable CodeFactory::CallICInOptimizedCode(Isolate* isolate, int argc,
// static
Callable CodeFactory::StoreIC(Isolate* isolate, LanguageMode language_mode) {
- VectorStoreICTrampolineStub stub(isolate, StoreICState(language_mode));
+ StoreICTrampolineStub stub(isolate, StoreICState(language_mode));
return Callable(stub.GetCode(), VectorStoreICTrampolineDescriptor(isolate));
}
@@ -101,7 +101,7 @@ Callable CodeFactory::StoreICInOptimizedCode(Isolate* isolate,
// static
Callable CodeFactory::KeyedStoreIC(Isolate* isolate,
LanguageMode language_mode) {
- VectorKeyedStoreICTrampolineStub stub(isolate, StoreICState(language_mode));
+ KeyedStoreICTrampolineStub stub(isolate, StoreICState(language_mode));
return Callable(stub.GetCode(), VectorStoreICTrampolineDescriptor(isolate));
}
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/code-stubs.h » ('j') | src/code-stubs.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698