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

Unified Diff: src/IceTargetLoweringX86BaseImpl.h

Issue 1449523002: Eliminate stack adjustment for float-returning functions (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 1 month 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
« src/IceInstX86BaseImpl.h ('K') | « src/IceTargetLoweringX8632.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringX86BaseImpl.h
diff --git a/src/IceTargetLoweringX86BaseImpl.h b/src/IceTargetLoweringX86BaseImpl.h
index 8f372196779cc6b3c068655afb1ccd4ff3948165..066bffc08a9da9626d6753302d5783c834cc51aa 100644
--- a/src/IceTargetLoweringX86BaseImpl.h
+++ b/src/IceTargetLoweringX86BaseImpl.h
@@ -5198,6 +5198,13 @@ template <class Machine>
void TargetX86Base<Machine>::lowerUnreachable(
const InstUnreachable * /*Inst*/) {
_ud2();
+ // Add a fake use of esp to make sure esp stays alive for the entire
Jim Stichnoth 2015/11/13 23:30:33 Could you factor this code and its lowerRet clone
sehr 2015/11/14 00:30:56 Done.
+ // function. Otherwise post-call esp adjustments get dead-code eliminated.
+ // TODO: Are there more places where the fake use should be inserted? E.g.
Jim Stichnoth 2015/11/13 23:30:33 Remove this TODO because I'm pretty sure this cove
sehr 2015/11/14 00:30:56 Done.
+ // "void f(int n){while(1) g(n);}" may not have an unreachable instruction.
+ Variable *esp =
+ Func->getTarget()->getPhysicalRegister(Traits::RegisterSet::Reg_esp);
Jim Stichnoth 2015/11/13 23:30:33 Use getStackReg() instead of Reg_esp. BTW, getSta
sehr 2015/11/14 00:30:56 Done.
+ Context.insert(InstFakeUse::create(Func, esp));
}
template <class Machine>
« src/IceInstX86BaseImpl.h ('K') | « src/IceTargetLoweringX8632.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698