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

Unified Diff: src/IceTargetLoweringX86BaseImpl.h

Issue 1377323002: Subzero: Change -asm-verbose output to print more useful info. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Also add predecessors and loop depth Created 5 years, 3 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 | « src/IceOperand.h ('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 477c9f66e931329dfb24c4ea5551ebbf3dbde9ce..7f8b79b9e44dac74621c33eb44408ff2f3e6ac55 100644
--- a/src/IceTargetLoweringX86BaseImpl.h
+++ b/src/IceTargetLoweringX86BaseImpl.h
@@ -746,15 +746,35 @@ void TargetX86Base<Machine>::emitVariable(const Variable *Var) const {
if (Var->mustHaveReg()) {
llvm_unreachable("Infinite-weight Variable has no register assigned");
}
- int32_t Offset = Var->getStackOffset();
+ const int32_t Offset = Var->getStackOffset();
+ int32_t OffsetAdj = 0;
int32_t BaseRegNum = Var->getBaseRegNum();
if (BaseRegNum == Variable::NoRegister) {
BaseRegNum = getFrameOrStackReg();
if (!hasFramePointer())
- Offset += getStackAdjustment();
+ OffsetAdj = getStackAdjustment();
+ }
+ // Print in the form "OffsetAdj+Offset(%reg)", taking care that:
+ // - OffsetAdj may be 0
+ // - Offset is never printed when it is 0
+ // - Offset may be positive or symbolic, so a "+" might be needed
+
+ // Only print nonzero OffsetAdj.
+ if (OffsetAdj) {
+ Str << OffsetAdj;
+ }
+ const bool DecorateAsm = Func->getContext()->getFlags().getDecorateAsm();
+ // Only print Offset when it is nonzero, regardless of DecorateAsm.
+ if (Offset) {
+ if (OffsetAdj && (DecorateAsm || Offset > 0)) {
+ Str << "+";
+ }
+ if (DecorateAsm) {
+ Str << Var->getSymbolicStackOffset(Func);
+ } else {
+ Str << Offset;
+ }
}
- if (Offset)
- Str << Offset;
const Type FrameSPTy = Traits::WordType;
Str << "(%" << getRegName(BaseRegNum, FrameSPTy) << ")";
}
« no previous file with comments | « src/IceOperand.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698