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

Side by Side 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, 2 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 unified diff | Download patch
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceOperand.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceCfgNode.cpp - Basic block (node) implementation -----===// 1 //===- subzero/src/IceCfgNode.cpp - Basic block (node) implementation -----===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 } 971 }
972 972
973 } // end of anonymous namespace 973 } // end of anonymous namespace
974 974
975 void CfgNode::emit(Cfg *Func) const { 975 void CfgNode::emit(Cfg *Func) const {
976 if (!BuildDefs::dump()) 976 if (!BuildDefs::dump())
977 return; 977 return;
978 Func->setCurrentNode(this); 978 Func->setCurrentNode(this);
979 Ostream &Str = Func->getContext()->getStrEmit(); 979 Ostream &Str = Func->getContext()->getStrEmit();
980 Liveness *Liveness = Func->getLiveness(); 980 Liveness *Liveness = Func->getLiveness();
981 bool DecorateAsm = 981 const bool DecorateAsm =
982 Liveness && Func->getContext()->getFlags().getDecorateAsm(); 982 Liveness && Func->getContext()->getFlags().getDecorateAsm();
983 Str << getAsmName() << ":\n"; 983 Str << getAsmName() << ":\n";
984 // LiveRegCount keeps track of the number of currently live variables that 984 // LiveRegCount keeps track of the number of currently live variables that
985 // each register is assigned to. Normally that would be only 0 or 1, but the 985 // each register is assigned to. Normally that would be only 0 or 1, but the
986 // register allocator's AllowOverlap inference allows it to be greater than 1 986 // register allocator's AllowOverlap inference allows it to be greater than 1
987 // for short periods. 987 // for short periods.
988 CfgVector<SizeT> LiveRegCount(Func->getTarget()->getNumRegisters()); 988 CfgVector<SizeT> LiveRegCount(Func->getTarget()->getNumRegisters());
989 if (DecorateAsm) { 989 if (DecorateAsm) {
990 constexpr bool IsLiveIn = true; 990 constexpr bool IsLiveIn = true;
991 emitRegisterUsage(Str, Func, this, IsLiveIn, LiveRegCount); 991 emitRegisterUsage(Str, Func, this, IsLiveIn, LiveRegCount);
992 if (getInEdges().size()) {
993 Str << "\t\t\t\t# preds=";
994 bool First = true;
995 for (CfgNode *I : getInEdges()) {
996 if (!First)
997 Str << ",";
998 First = false;
999 Str << I->getAsmName();
1000 }
1001 Str << "\n";
1002 }
1003 if (getLoopNestDepth()) {
1004 Str << "\t\t\t\t# loop depth=" << getLoopNestDepth() << "\n";
1005 }
992 } 1006 }
993 1007
994 for (const Inst &I : Phis) { 1008 for (const Inst &I : Phis) {
995 if (I.isDeleted()) 1009 if (I.isDeleted())
996 continue; 1010 continue;
997 // Emitting a Phi instruction should cause an error. 1011 // Emitting a Phi instruction should cause an error.
998 I.emit(Func); 1012 I.emit(Func);
999 } 1013 }
1000 for (const Inst &I : Insts) { 1014 for (const Inst &I : Insts) {
1001 if (I.isDeleted()) 1015 if (I.isDeleted())
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1353 InstIntrinsicCall *Inst = InstIntrinsicCall::create( 1367 InstIntrinsicCall *Inst = InstIntrinsicCall::create(
1354 Func, 5, Func->makeVariable(IceType_i64), RMWI64Name, Info->Info); 1368 Func, 5, Func->makeVariable(IceType_i64), RMWI64Name, Info->Info);
1355 Inst->addArg(AtomicRMWOp); 1369 Inst->addArg(AtomicRMWOp);
1356 Inst->addArg(Counter); 1370 Inst->addArg(Counter);
1357 Inst->addArg(One); 1371 Inst->addArg(One);
1358 Inst->addArg(OrderAcquireRelease); 1372 Inst->addArg(OrderAcquireRelease);
1359 Insts.push_front(Inst); 1373 Insts.push_front(Inst);
1360 } 1374 }
1361 1375
1362 } // end of namespace Ice 1376 } // end of namespace Ice
OLDNEW
« 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