OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |