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

Unified Diff: src/mips/code-stubs-mips.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/interface-descriptors.cc ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/code-stubs-mips.cc
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
index 1c9ef37ccdc1fc929ae2dd1b3d9bb6cdc0f467d8..47a0a8ea7930394875b406521881cda289432e48 100644
--- a/src/mips/code-stubs-mips.cc
+++ b/src/mips/code-stubs-mips.cc
@@ -3798,13 +3798,13 @@ void KeyedLoadICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
}
void StoreICTrampolineStub::Generate(MacroAssembler* masm) {
- __ EmitLoadTypeFeedbackVector(VectorStoreICDescriptor::VectorRegister());
+ __ EmitLoadTypeFeedbackVector(StoreWithVectorDescriptor::VectorRegister());
StoreICStub stub(isolate(), state());
stub.GenerateForTrampoline(masm);
}
void KeyedStoreICTrampolineStub::Generate(MacroAssembler* masm) {
- __ EmitLoadTypeFeedbackVector(VectorStoreICDescriptor::VectorRegister());
+ __ EmitLoadTypeFeedbackVector(StoreWithVectorDescriptor::VectorRegister());
KeyedStoreICStub stub(isolate(), state());
stub.GenerateForTrampoline(masm);
}
@@ -3816,11 +3816,11 @@ void StoreICStub::GenerateForTrampoline(MacroAssembler* masm) {
}
void StoreICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
- Register receiver = VectorStoreICDescriptor::ReceiverRegister(); // a1
- Register key = VectorStoreICDescriptor::NameRegister(); // a2
- Register vector = VectorStoreICDescriptor::VectorRegister(); // a3
- Register slot = VectorStoreICDescriptor::SlotRegister(); // t0
- DCHECK(VectorStoreICDescriptor::ValueRegister().is(a0)); // a0
+ Register receiver = StoreWithVectorDescriptor::ReceiverRegister(); // a1
+ Register key = StoreWithVectorDescriptor::NameRegister(); // a2
+ Register vector = StoreWithVectorDescriptor::VectorRegister(); // a3
+ Register slot = StoreWithVectorDescriptor::SlotRegister(); // t0
+ DCHECK(StoreWithVectorDescriptor::ValueRegister().is(a0)); // a0
Register feedback = t1;
Register receiver_map = t2;
Register scratch1 = t5;
@@ -3931,11 +3931,11 @@ static void HandlePolymorphicStoreCase(MacroAssembler* masm, Register feedback,
}
void KeyedStoreICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
- Register receiver = VectorStoreICDescriptor::ReceiverRegister(); // a1
- Register key = VectorStoreICDescriptor::NameRegister(); // a2
- Register vector = VectorStoreICDescriptor::VectorRegister(); // a3
- Register slot = VectorStoreICDescriptor::SlotRegister(); // t0
- DCHECK(VectorStoreICDescriptor::ValueRegister().is(a0)); // a0
+ Register receiver = StoreWithVectorDescriptor::ReceiverRegister(); // a1
+ Register key = StoreWithVectorDescriptor::NameRegister(); // a2
+ Register vector = StoreWithVectorDescriptor::VectorRegister(); // a3
+ Register slot = StoreWithVectorDescriptor::SlotRegister(); // t0
+ DCHECK(StoreWithVectorDescriptor::ValueRegister().is(a0)); // a0
Register feedback = t1;
Register receiver_map = t2;
Register scratch1 = t5;
« no previous file with comments | « src/interface-descriptors.cc ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698