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

Unified Diff: src/ic/handler-compiler.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/ic/arm64/stub-cache-arm64.cc ('k') | src/ic/ia32/handler-compiler-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/handler-compiler.cc
diff --git a/src/ic/handler-compiler.cc b/src/ic/handler-compiler.cc
index 3ca7707d79410b5127d17a8a16b2c6c7857b3166..86a93b5ec4b7db337c9070b6cfd2e24b835a2ee1 100644
--- a/src/ic/handler-compiler.cc
+++ b/src/ic/handler-compiler.cc
@@ -475,7 +475,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreTransition(
if (details.type() == DATA_CONSTANT) {
DCHECK(descriptors->GetValue(descriptor)->IsJSFunction());
Register tmp =
- virtual_args ? VectorStoreICDescriptor::VectorRegister() : map_reg;
+ virtual_args ? StoreWithVectorDescriptor::VectorRegister() : map_reg;
GenerateRestoreMap(transition, tmp, scratch2(), &miss);
GenerateConstantCheck(tmp, descriptor, value(), scratch2(), &miss);
if (virtual_args) {
@@ -499,7 +499,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreTransition(
: StoreTransitionStub::StoreMapAndValue;
Register tmp =
- virtual_args ? VectorStoreICDescriptor::VectorRegister() : map_reg;
+ virtual_args ? StoreWithVectorDescriptor::VectorRegister() : map_reg;
GenerateRestoreMap(transition, tmp, scratch2(), &miss);
if (virtual_args) {
RearrangeVectorAndSlot(tmp, map_reg);
« no previous file with comments | « src/ic/arm64/stub-cache-arm64.cc ('k') | src/ic/ia32/handler-compiler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698