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

Unified Diff: src/ppc/builtins-ppc.cc

Issue 1554273002: PPC: [Interpreter] Fix some issues in the non-x64 InterpreterNotifyDeoptimized builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 12 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ppc/builtins-ppc.cc
diff --git a/src/ppc/builtins-ppc.cc b/src/ppc/builtins-ppc.cc
index 64c225f94a6e70ed923696218da9a038e2a64f69..3b7ec5ba3ae1950d0be1fb7704b110a8dd66b458 100644
--- a/src/ppc/builtins-ppc.cc
+++ b/src/ppc/builtins-ppc.cc
@@ -951,11 +951,8 @@ static void Generate_InterpreterNotifyDeoptimizedHelper(
// Tear down internal frame.
}
- // Drop state (we don't use these for interpreter deopts) and push PC at top
- // of stack (to simulate initial call to bytecode handler in interpreter entry
- // trampoline).
- __ pop(r4);
- __ StoreP(r4, MemOperand(sp, 0));
+ // Drop state (we don't use these for interpreter deopts).
+ __ Drop(1);
// Initialize register file register and dispatch table register.
__ addi(kInterpreterRegisterFileRegister, fp,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698