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

Unified Diff: src/arm/deoptimizer-arm.cc

Issue 2821273004: [ARM] Save all single precision float registers in the deoptimizer. (Closed)
Patch Set: Created 3 years, 8 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/arm/deoptimizer-arm.cc
diff --git a/src/arm/deoptimizer-arm.cc b/src/arm/deoptimizer-arm.cc
index fc7567f8309972eca4d08599dcd73c289942348e..d92adee7fbcaae9d386f9bf5464486346ed24665 100644
--- a/src/arm/deoptimizer-arm.cc
+++ b/src/arm/deoptimizer-arm.cc
@@ -141,11 +141,8 @@ void Deoptimizer::TableEntryGenerator::Generate() {
__ sub(sp, sp, Operand(16 * kDoubleSize), LeaveCC, eq);
__ vstm(db_w, sp, d0, d15);
- // Push registers s0-s15, and possibly s16-s31, on the stack.
- // If s16-s31 are not pushed, decrease the stack pointer instead.
- __ vstm(db_w, sp, s16, s31, ne);
- __ sub(sp, sp, Operand(16 * kFloatSize), LeaveCC, eq);
- __ vstm(db_w, sp, s0, s15);
+ // Push registers s0-s31 on the stack.
+ __ vstm(db_w, sp, s0, s31);
}
// Push all 16 registers (needed to populate FrameDescription::registers_).
« 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