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

Unified Diff: src/IceCfgNode.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 | « src/IceCfg.cpp ('k') | src/IceOperand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfgNode.cpp
diff --git a/src/IceCfgNode.cpp b/src/IceCfgNode.cpp
index a3f6dd5fd30093232c2c7dd403a4a0d4dc923249..9339b798cd2dd91fafdcda9228acfddaf5be5573 100644
--- a/src/IceCfgNode.cpp
+++ b/src/IceCfgNode.cpp
@@ -978,7 +978,7 @@ void CfgNode::emit(Cfg *Func) const {
Func->setCurrentNode(this);
Ostream &Str = Func->getContext()->getStrEmit();
Liveness *Liveness = Func->getLiveness();
- bool DecorateAsm =
+ const bool DecorateAsm =
Liveness && Func->getContext()->getFlags().getDecorateAsm();
Str << getAsmName() << ":\n";
// LiveRegCount keeps track of the number of currently live variables that
@@ -989,6 +989,20 @@ void CfgNode::emit(Cfg *Func) const {
if (DecorateAsm) {
constexpr bool IsLiveIn = true;
emitRegisterUsage(Str, Func, this, IsLiveIn, LiveRegCount);
+ if (getInEdges().size()) {
+ Str << "\t\t\t\t# preds=";
+ bool First = true;
+ for (CfgNode *I : getInEdges()) {
+ if (!First)
+ Str << ",";
+ First = false;
+ Str << I->getAsmName();
+ }
+ Str << "\n";
+ }
+ if (getLoopNestDepth()) {
+ Str << "\t\t\t\t# loop depth=" << getLoopNestDepth() << "\n";
+ }
}
for (const Inst &I : Phis) {
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceOperand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698