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

Unified Diff: src/IceCfg.cpp

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 | « no previous file | src/IceCfgNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.cpp
diff --git a/src/IceCfg.cpp b/src/IceCfg.cpp
index eaebd1ea9b930894e6d8507abfcaa148d55a427b..d89fa49a0d02bc570cb8faf4e8c9a347b8668297 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -743,6 +743,14 @@ void Cfg::emit() {
emitTextHeader(MangledName, Ctx, Asm);
deleteJumpTableInsts();
+ if (Ctx->getFlags().getDecorateAsm()) {
+ for (Variable *Var : getVariables()) {
+ if (Var->getStackOffset()) {
+ Str << "\t" << Var->getSymbolicStackOffset(this) << " = "
+ << Var->getStackOffset() << "\n";
+ }
+ }
+ }
for (CfgNode *Node : Nodes) {
if (NeedSandboxing && Node->needsAlignment()) {
Str << "\t" << Asm->getAlignDirective() << " "
« no previous file with comments | « no previous file | src/IceCfgNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698