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

Unified Diff: src/code-stubs.cc

Issue 1424153003: VectorICs: Remove --vector-stores flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Response to Hannes comment. 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/code-stubs.h ('k') | src/compiler/js-generic-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 61df12781b119ca4ef6e770fff0780996761a6a2..690a64df4d1b61af1e69c9063397206bc3d0a3a4 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -640,8 +640,7 @@ CallInterfaceDescriptor HandlerStub::GetCallInterfaceDescriptor() const {
return LoadWithVectorDescriptor(isolate());
} else {
DCHECK(kind() == Code::STORE_IC || kind() == Code::KEYED_STORE_IC);
- return FLAG_vector_stores ? VectorStoreICDescriptor(isolate())
- : StoreDescriptor(isolate());
+ return VectorStoreICDescriptor(isolate());
}
}
@@ -667,19 +666,13 @@ void ToObjectStub::InitializeDescriptor(CodeStubDescriptor* descriptor) {
CallInterfaceDescriptor StoreTransitionStub::GetCallInterfaceDescriptor()
const {
- if (FLAG_vector_stores) {
- return VectorStoreTransitionDescriptor(isolate());
- }
- return StoreTransitionDescriptor(isolate());
+ return VectorStoreTransitionDescriptor(isolate());
}
CallInterfaceDescriptor
ElementsTransitionAndStoreStub::GetCallInterfaceDescriptor() const {
- if (FLAG_vector_stores) {
- return VectorStoreTransitionDescriptor(isolate());
- }
- return StoreTransitionDescriptor(isolate());
+ return VectorStoreTransitionDescriptor(isolate());
}
« no previous file with comments | « src/code-stubs.h ('k') | src/compiler/js-generic-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698