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

Unified Diff: src/mips/code-stubs-mips.cc

Issue 12603003: MIPS: Refactoring Store ICs. A first step towards polymorphic store ICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 9 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 | « no previous file | src/mips/stub-cache-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 1af9d3f73b431fad996bf5e9912b7851e6491ef8..f398a4d2ff1462bf2bc3c6836084c83c7afac813 100644
--- a/src/mips/code-stubs-mips.cc
+++ b/src/mips/code-stubs-mips.cc
@@ -4585,7 +4585,7 @@ void ArrayLengthStub::Generate(MacroAssembler* masm) {
StubCompiler::GenerateLoadArrayLength(masm, receiver, a3, &miss);
__ bind(&miss);
- StubCompiler::GenerateLoadMiss(masm, kind());
+ StubCompiler::TailCallBuiltin(masm, StubCompiler::MissBuiltin(kind()));
}
@@ -4614,7 +4614,7 @@ void FunctionPrototypeStub::Generate(MacroAssembler* masm) {
StubCompiler::GenerateLoadFunctionPrototype(masm, receiver, a3, t0, &miss);
__ bind(&miss);
- StubCompiler::GenerateLoadMiss(masm, kind());
+ StubCompiler::TailCallBuiltin(masm, StubCompiler::MissBuiltin(kind()));
}
@@ -4645,7 +4645,7 @@ void StringLengthStub::Generate(MacroAssembler* masm) {
support_wrapper_);
__ bind(&miss);
- StubCompiler::GenerateLoadMiss(masm, kind());
+ StubCompiler::TailCallBuiltin(masm, StubCompiler::MissBuiltin(kind()));
}
@@ -4715,7 +4715,7 @@ void StoreArrayLengthStub::Generate(MacroAssembler* masm) {
__ bind(&miss);
- StubCompiler::GenerateStoreMiss(masm, kind());
+ StubCompiler::TailCallBuiltin(masm, StubCompiler::MissBuiltin(kind()));
}
« no previous file with comments | « no previous file | src/mips/stub-cache-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698