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

Unified Diff: src/mips/lithium-codegen-mips.cc

Issue 11773013: MIPS: Elide unnecessary context reload in generated stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 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/lithium-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/lithium-codegen-mips.cc
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc
index aeafb7874aa165cc31b0e1fc9b8f029b7b05c2fc..5e419b1abd4a6324604ed3f1a8da31c3cb49a7e6 100644
--- a/src/mips/lithium-codegen-mips.cc
+++ b/src/mips/lithium-codegen-mips.cc
@@ -2460,9 +2460,6 @@ void LCodeGen::DoReturn(LReturn* instr) {
__ Pop(ra, fp);
__ Addu(sp, sp, Operand(sp_delta));
}
- if (info()->IsStub()) {
- __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
- }
__ Jump(ra);
}
« no previous file with comments | « no previous file | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698