Convert DOUT to DEBUG(errs()...).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79765 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2009-08-22 20:52:46 +00:00
parent 52283486bc
commit 70357db30a

View File

@ -181,13 +181,18 @@ bool SimpleRegisterCoalescing::AdjustCopiesBackFrom(LiveInterval &IntA,
*tri_->getSubRegisters(IntB.reg)) { *tri_->getSubRegisters(IntB.reg)) {
for (const unsigned* SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR) for (const unsigned* SR = tri_->getSubRegisters(IntB.reg); *SR; ++SR)
if (li_->hasInterval(*SR) && IntA.overlaps(li_->getInterval(*SR))) { if (li_->hasInterval(*SR) && IntA.overlaps(li_->getInterval(*SR))) {
DOUT << "Interfere with sub-register "; DEBUG({
DEBUG(li_->getInterval(*SR).print(DOUT, tri_)); errs() << "Interfere with sub-register ";
li_->getInterval(*SR).print(errs(), tri_);
});
return false; return false;
} }
} }
DOUT << "\nExtending: "; IntB.print(DOUT, tri_); DEBUG({
errs() << "\nExtending: ";
IntB.print(errs(), tri_);
});
unsigned FillerStart = ValLR->end, FillerEnd = BLR->start; unsigned FillerStart = ValLR->end, FillerEnd = BLR->start;
// We are about to delete CopyMI, so need to remove it as the 'instruction // We are about to delete CopyMI, so need to remove it as the 'instruction
@ -217,8 +222,11 @@ bool SimpleRegisterCoalescing::AdjustCopiesBackFrom(LiveInterval &IntA,
IntB.addKills(ValLR->valno, BValNo->kills); IntB.addKills(ValLR->valno, BValNo->kills);
IntB.MergeValueNumberInto(BValNo, ValLR->valno); IntB.MergeValueNumberInto(BValNo, ValLR->valno);
} }
DOUT << " result = "; IntB.print(DOUT, tri_); DEBUG({
DOUT << "\n"; errs() << " result = ";
IntB.print(errs(), tri_);
errs() << "\n";
});
// If the source instruction was killing the source register before the // If the source instruction was killing the source register before the
// merge, unset the isKill marker given the live range has been extended. // merge, unset the isKill marker given the live range has been extended.
@ -444,7 +452,10 @@ bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(LiveInterval &IntA,
// We need to insert a new liverange: [ALR.start, LastUse). It may be we can // We need to insert a new liverange: [ALR.start, LastUse). It may be we can
// simply extend BLR if CopyMI doesn't end the range. // simply extend BLR if CopyMI doesn't end the range.
DOUT << "\nExtending: "; IntB.print(DOUT, tri_); DEBUG({
errs() << "\nExtending: ";
IntB.print(errs(), tri_);
});
// Remove val#'s defined by copies that will be coalesced away. // Remove val#'s defined by copies that will be coalesced away.
for (unsigned i = 0, e = BDeadValNos.size(); i != e; ++i) { for (unsigned i = 0, e = BDeadValNos.size(); i != e; ++i) {
@ -491,13 +502,21 @@ bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(LiveInterval &IntA,
IntB.addKills(ValNo, BKills); IntB.addKills(ValNo, BKills);
ValNo->setHasPHIKill(BHasPHIKill); ValNo->setHasPHIKill(BHasPHIKill);
DOUT << " result = "; IntB.print(DOUT, tri_); DEBUG({
DOUT << "\n"; errs() << " result = ";
IntB.print(errs(), tri_);
errs() << '\n';
errs() << "\nShortening: ";
IntA.print(errs(), tri_);
});
DOUT << "\nShortening: "; IntA.print(DOUT, tri_);
IntA.removeValNo(AValNo); IntA.removeValNo(AValNo);
DOUT << " result = "; IntA.print(DOUT, tri_);
DOUT << "\n"; DEBUG({
errs() << " result = ";
IntA.print(errs(), tri_);
errs() << '\n';
});
++numCommutes; ++numCommutes;
return true; return true;
@ -1185,14 +1204,18 @@ SimpleRegisterCoalescing::CanJoinExtractSubRegToPhysReg(unsigned DstReg,
LiveInterval &RHS = li_->getInterval(SrcReg); LiveInterval &RHS = li_->getInterval(SrcReg);
if (li_->hasInterval(RealDstReg) && if (li_->hasInterval(RealDstReg) &&
RHS.overlaps(li_->getInterval(RealDstReg))) { RHS.overlaps(li_->getInterval(RealDstReg))) {
DOUT << "Interfere with register "; DEBUG({
DEBUG(li_->getInterval(RealDstReg).print(DOUT, tri_)); errs() << "Interfere with register ";
li_->getInterval(RealDstReg).print(errs(), tri_);
});
return false; // Not coalescable return false; // Not coalescable
} }
for (const unsigned* SR = tri_->getSubRegisters(RealDstReg); *SR; ++SR) for (const unsigned* SR = tri_->getSubRegisters(RealDstReg); *SR; ++SR)
if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) { if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
DOUT << "Interfere with sub-register "; DEBUG({
DEBUG(li_->getInterval(*SR).print(DOUT, tri_)); errs() << "Interfere with sub-register ";
li_->getInterval(*SR).print(errs(), tri_);
});
return false; // Not coalescable return false; // Not coalescable
} }
return true; return true;
@ -1212,14 +1235,18 @@ SimpleRegisterCoalescing::CanJoinInsertSubRegToPhysReg(unsigned DstReg,
LiveInterval &RHS = li_->getInterval(DstReg); LiveInterval &RHS = li_->getInterval(DstReg);
if (li_->hasInterval(RealSrcReg) && if (li_->hasInterval(RealSrcReg) &&
RHS.overlaps(li_->getInterval(RealSrcReg))) { RHS.overlaps(li_->getInterval(RealSrcReg))) {
DOUT << "Interfere with register "; DEBUG({
DEBUG(li_->getInterval(RealSrcReg).print(DOUT, tri_)); errs() << "Interfere with register ";
li_->getInterval(RealSrcReg).print(errs(), tri_);
});
return false; // Not coalescable return false; // Not coalescable
} }
for (const unsigned* SR = tri_->getSubRegisters(RealSrcReg); *SR; ++SR) for (const unsigned* SR = tri_->getSubRegisters(RealSrcReg); *SR; ++SR)
if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) { if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
DOUT << "Interfere with sub-register "; DEBUG({
DEBUG(li_->getInterval(*SR).print(DOUT, tri_)); errs() << "Interfere with sub-register ";
li_->getInterval(*SR).print(errs(), tri_);
});
return false; // Not coalescable return false; // Not coalescable
} }
return true; return true;
@ -1248,7 +1275,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
if (JoinedCopies.count(CopyMI) || ReMatCopies.count(CopyMI)) if (JoinedCopies.count(CopyMI) || ReMatCopies.count(CopyMI))
return false; // Already done. return false; // Already done.
DOUT << li_->getInstructionIndex(CopyMI) << '\t' << *CopyMI; DEBUG(errs() << li_->getInstructionIndex(CopyMI) << '\t' << *CopyMI);
unsigned SrcReg, DstReg, SrcSubIdx = 0, DstSubIdx = 0; unsigned SrcReg, DstReg, SrcSubIdx = 0, DstSubIdx = 0;
bool isExtSubReg = CopyMI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG; bool isExtSubReg = CopyMI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG;
@ -1268,8 +1295,8 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
if (SrcSubIdx && SrcSubIdx != DstSubIdx) { if (SrcSubIdx && SrcSubIdx != DstSubIdx) {
// r1025 = INSERT_SUBREG r1025, r1024<2>, 2 Then r1024 has already been // r1025 = INSERT_SUBREG r1025, r1024<2>, 2 Then r1024 has already been
// coalesced to a larger register so the subreg indices cancel out. // coalesced to a larger register so the subreg indices cancel out.
DOUT << "\tSource of insert_subreg is already coalesced " DEBUG(errs() << "\tSource of insert_subreg is already coalesced "
<< "to another register.\n"; << "to another register.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
} else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)){ } else if (!tii_->isMoveInstr(*CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx)){
@ -1278,7 +1305,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
// If they are already joined we continue. // If they are already joined we continue.
if (SrcReg == DstReg) { if (SrcReg == DstReg) {
DOUT << "\tCopy already coalesced.\n"; DEBUG(errs() << "\tCopy already coalesced.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
@ -1287,17 +1314,17 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
// If they are both physical registers, we cannot join them. // If they are both physical registers, we cannot join them.
if (SrcIsPhys && DstIsPhys) { if (SrcIsPhys && DstIsPhys) {
DOUT << "\tCan not coalesce physregs.\n"; DEBUG(errs() << "\tCan not coalesce physregs.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
// We only join virtual registers with allocatable physical registers. // We only join virtual registers with allocatable physical registers.
if (SrcIsPhys && !allocatableRegs_[SrcReg]) { if (SrcIsPhys && !allocatableRegs_[SrcReg]) {
DOUT << "\tSrc reg is unallocatable physreg.\n"; DEBUG(errs() << "\tSrc reg is unallocatable physreg.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
if (DstIsPhys && !allocatableRegs_[DstReg]) { if (DstIsPhys && !allocatableRegs_[DstReg]) {
DOUT << "\tDst reg is unallocatable physreg.\n"; DEBUG(errs() << "\tDst reg is unallocatable physreg.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
@ -1312,8 +1339,8 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
assert(DstSubRC && "Illegal subregister index"); assert(DstSubRC && "Illegal subregister index");
if (!DstSubRC->contains(SrcSubReg)) { if (!DstSubRC->contains(SrcSubReg)) {
DEBUG(errs() << "\tIncompatible destination regclass: " DEBUG(errs() << "\tIncompatible destination regclass: "
<< tri_->getName(SrcSubReg) << " not in " << DstSubRC->getName() << tri_->getName(SrcSubReg) << " not in "
<< ".\n"); << DstSubRC->getName() << ".\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
} }
@ -1329,8 +1356,8 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
assert(SrcSubRC && "Illegal subregister index"); assert(SrcSubRC && "Illegal subregister index");
if (!SrcSubRC->contains(DstReg)) { if (!SrcSubRC->contains(DstReg)) {
DEBUG(errs() << "\tIncompatible source regclass: " DEBUG(errs() << "\tIncompatible source regclass: "
<< tri_->getName(DstSubReg) << " not in " << SrcSubRC->getName() << tri_->getName(DstSubReg) << " not in "
<< ".\n"); << SrcSubRC->getName() << ".\n");
(void)DstSubReg; (void)DstSubReg;
return false; // Not coalescable. return false; // Not coalescable.
} }
@ -1354,7 +1381,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
// r1024<2> = EXTRACT_SUBREG EAX, 2. Then r1024 has already been // r1024<2> = EXTRACT_SUBREG EAX, 2. Then r1024 has already been
// coalesced to a larger register so the subreg indices cancel out. // coalesced to a larger register so the subreg indices cancel out.
if (DstSubIdx != SubIdx) { if (DstSubIdx != SubIdx) {
DOUT << "\t Sub-register indices mismatch.\n"; DEBUG(errs() << "\t Sub-register indices mismatch.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
} else } else
@ -1367,7 +1394,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
// EAX = INSERT_SUBREG EAX, r1024<2>, 2 Then r1024 has already been // EAX = INSERT_SUBREG EAX, r1024<2>, 2 Then r1024 has already been
// coalesced to a larger register so the subreg indices cancel out. // coalesced to a larger register so the subreg indices cancel out.
if (SrcSubIdx != SubIdx) { if (SrcSubIdx != SubIdx) {
DOUT << "\t Sub-register indices mismatch.\n"; DEBUG(errs() << "\t Sub-register indices mismatch.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
} else } else
@ -1376,8 +1403,8 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
} else if ((DstIsPhys && isExtSubReg) || } else if ((DstIsPhys && isExtSubReg) ||
(SrcIsPhys && (isInsSubReg || isSubRegToReg))) { (SrcIsPhys && (isInsSubReg || isSubRegToReg))) {
if (!isSubRegToReg && CopyMI->getOperand(1).getSubReg()) { if (!isSubRegToReg && CopyMI->getOperand(1).getSubReg()) {
DOUT << "\tSrc of extract_subreg already coalesced with reg" DEBUG(errs() << "\tSrc of extract_subreg already coalesced with reg"
<< " of a super-class.\n"; << " of a super-class.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
@ -1400,7 +1427,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
// class as the would be resulting register. // class as the would be resulting register.
SubIdx = 0; SubIdx = 0;
else { else {
DOUT << "\t Sub-register indices mismatch.\n"; DEBUG(errs() << "\t Sub-register indices mismatch.\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
} }
@ -1412,7 +1439,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
NewRC = tri_->getMatchingSuperRegClass(SrcRC, DstRC, SubIdx); NewRC = tri_->getMatchingSuperRegClass(SrcRC, DstRC, SubIdx);
} }
if (!NewRC) { if (!NewRC) {
DOUT << "\t Conflicting sub-register indices.\n"; DEBUG(errs() << "\t Conflicting sub-register indices.\n");
return false; // Not coalescable return false; // Not coalescable
} }
@ -1485,8 +1512,8 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
NewRC = getCommonSubClass(SrcRC, DstRC); NewRC = getCommonSubClass(SrcRC, DstRC);
if (!NewRC) { if (!NewRC) {
DEBUG(errs() << "\tDisjoint regclasses: " DEBUG(errs() << "\tDisjoint regclasses: "
<< SrcRC->getName() << ", " << SrcRC->getName() << ", "
<< DstRC->getName() << ".\n"); << DstRC->getName() << ".\n");
return false; // Not coalescable. return false; // Not coalescable.
} }
if (DstRC->getSize() > SrcRC->getSize()) if (DstRC->getSize() > SrcRC->getSize())
@ -1500,7 +1527,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
(isExtSubReg || DstRC->isASubClass()) && (isExtSubReg || DstRC->isASubClass()) &&
!isWinToJoinCrossClass(LargeReg, SmallReg, !isWinToJoinCrossClass(LargeReg, SmallReg,
allocatableRCRegs_[NewRC].count())) { allocatableRCRegs_[NewRC].count())) {
DOUT << "\tSrc/Dest are different register classes.\n"; DEBUG(errs() << "\tSrc/Dest are different register classes.\n");
// Allow the coalescer to try again in case either side gets coalesced to // Allow the coalescer to try again in case either side gets coalesced to
// a physical register that's compatible with the other side. e.g. // a physical register that's compatible with the other side. e.g.
// r1024 = MOV32to32_ r1025 // r1024 = MOV32to32_ r1025
@ -1521,9 +1548,11 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
assert(SrcInt.reg == SrcReg && DstInt.reg == DstReg && assert(SrcInt.reg == SrcReg && DstInt.reg == DstReg &&
"Register mapping is horribly broken!"); "Register mapping is horribly broken!");
DOUT << "\t\tInspecting "; SrcInt.print(DOUT, tri_); DEBUG({
DOUT << " and "; DstInt.print(DOUT, tri_); errs() << "\t\tInspecting "; SrcInt.print(errs(), tri_);
DOUT << ": "; errs() << " and "; DstInt.print(errs(), tri_);
errs() << ": ";
});
// Save a copy of the virtual register live interval. We'll manually // Save a copy of the virtual register live interval. We'll manually
// merge this into the "real" physical register live interval this is // merge this into the "real" physical register live interval this is
@ -1553,7 +1582,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
if (!isWinToJoinVRWithSrcPhysReg(CopyMI, CopyMBB, DstInt, SrcInt)) { if (!isWinToJoinVRWithSrcPhysReg(CopyMI, CopyMBB, DstInt, SrcInt)) {
mri_->setRegAllocationHint(DstInt.reg, 0, SrcReg); mri_->setRegAllocationHint(DstInt.reg, 0, SrcReg);
++numAborts; ++numAborts;
DOUT << "\tMay tie down a physical register, abort!\n"; DEBUG(errs() << "\tMay tie down a physical register, abort!\n");
Again = true; // May be possible to coalesce later. Again = true; // May be possible to coalesce later.
return false; return false;
} }
@ -1561,7 +1590,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
if (!isWinToJoinVRWithDstPhysReg(CopyMI, CopyMBB, DstInt, SrcInt)) { if (!isWinToJoinVRWithDstPhysReg(CopyMI, CopyMBB, DstInt, SrcInt)) {
mri_->setRegAllocationHint(SrcInt.reg, 0, DstReg); mri_->setRegAllocationHint(SrcInt.reg, 0, DstReg);
++numAborts; ++numAborts;
DOUT << "\tMay tie down a physical register, abort!\n"; DEBUG(errs() << "\tMay tie down a physical register, abort!\n");
Again = true; // May be possible to coalesce later. Again = true; // May be possible to coalesce later.
return false; return false;
} }
@ -1585,7 +1614,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
mri_->use_end()) / Length) < Ratio)) { mri_->use_end()) / Length) < Ratio)) {
mri_->setRegAllocationHint(JoinVInt.reg, 0, JoinPReg); mri_->setRegAllocationHint(JoinVInt.reg, 0, JoinPReg);
++numAborts; ++numAborts;
DOUT << "\tMay tie down a physical register, abort!\n"; DEBUG(errs() << "\tMay tie down a physical register, abort!\n");
Again = true; // May be possible to coalesce later. Again = true; // May be possible to coalesce later.
return false; return false;
} }
@ -1604,7 +1633,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
// Only coalesce an empty interval (defined by implicit_def) with // Only coalesce an empty interval (defined by implicit_def) with
// another interval which has a valno defined by the CopyMI and the CopyMI // another interval which has a valno defined by the CopyMI and the CopyMI
// is a kill of the implicit def. // is a kill of the implicit def.
DOUT << "Not profitable!\n"; DEBUG(errs() << "Not profitable!\n");
return false; return false;
} }
@ -1626,7 +1655,7 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
} }
// Otherwise, we are unable to join the intervals. // Otherwise, we are unable to join the intervals.
DOUT << "Interference!\n"; DEBUG(errs() << "Interference!\n");
Again = true; // May be possible to coalesce later. Again = true; // May be possible to coalesce later.
return false; return false;
} }
@ -1749,8 +1778,11 @@ bool SimpleRegisterCoalescing::JoinCopy(CopyRec &TheCopy, bool &Again) {
mri_->setRegAllocationHint(ResDstInt->reg, 0, 0); mri_->setRegAllocationHint(ResDstInt->reg, 0, 0);
} }
DOUT << "\n\t\tJoined. Result = "; ResDstInt->print(DOUT, tri_); DEBUG({
DOUT << "\n"; errs() << "\n\t\tJoined. Result = ";
ResDstInt->print(errs(), tri_);
errs() << "\n";
});
++numJoins; ++numJoins;
return true; return true;
@ -2060,8 +2092,10 @@ SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, LiveInterval &RHS,
} else { } else {
for (const unsigned* SR = tri_->getSubRegisters(LHS.reg); *SR; ++SR) for (const unsigned* SR = tri_->getSubRegisters(LHS.reg); *SR; ++SR)
if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) { if (li_->hasInterval(*SR) && RHS.overlaps(li_->getInterval(*SR))) {
DOUT << "Interfere with sub-register "; DEBUG({
DEBUG(li_->getInterval(*SR).print(DOUT, tri_)); errs() << "Interfere with sub-register ";
li_->getInterval(*SR).print(errs(), tri_);
});
return false; return false;
} }
} }
@ -2075,8 +2109,10 @@ SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, LiveInterval &RHS,
} else { } else {
for (const unsigned* SR = tri_->getSubRegisters(RHS.reg); *SR; ++SR) for (const unsigned* SR = tri_->getSubRegisters(RHS.reg); *SR; ++SR)
if (li_->hasInterval(*SR) && LHS.overlaps(li_->getInterval(*SR))) { if (li_->hasInterval(*SR) && LHS.overlaps(li_->getInterval(*SR))) {
DOUT << "Interfere with sub-register "; DEBUG({
DEBUG(li_->getInterval(*SR).print(DOUT, tri_)); errs() << "Interfere with sub-register ";
li_->getInterval(*SR).print(errs(), tri_);
});
return false; return false;
} }
} }
@ -2402,7 +2438,7 @@ void SimpleRegisterCoalescing::CopyCoalesceInMBB(MachineBasicBlock *MBB,
} }
void SimpleRegisterCoalescing::joinIntervals() { void SimpleRegisterCoalescing::joinIntervals() {
DOUT << "********** JOINING INTERVALS ***********\n"; DEBUG(errs() << "********** JOINING INTERVALS ***********\n");
if (NewHeuristic) if (NewHeuristic)
JoinQueue = new JoinPriorityQueue<CopyRecSort>(this); JoinQueue = new JoinPriorityQueue<CopyRecSort>(this);
@ -2592,8 +2628,8 @@ bool SimpleRegisterCoalescing::runOnMachineFunction(MachineFunction &fn) {
loopInfo = &getAnalysis<MachineLoopInfo>(); loopInfo = &getAnalysis<MachineLoopInfo>();
DEBUG(errs() << "********** SIMPLE REGISTER COALESCING **********\n" DEBUG(errs() << "********** SIMPLE REGISTER COALESCING **********\n"
<< "********** Function: " << "********** Function: "
<< ((Value*)mf_->getFunction())->getName() << '\n'); << ((Value*)mf_->getFunction())->getName() << '\n');
allocatableRegs_ = tri_->getAllocatableSet(fn); allocatableRegs_ = tri_->getAllocatableSet(fn);
for (TargetRegisterInfo::regclass_iterator I = tri_->regclass_begin(), for (TargetRegisterInfo::regclass_iterator I = tri_->regclass_begin(),
@ -2605,10 +2641,10 @@ bool SimpleRegisterCoalescing::runOnMachineFunction(MachineFunction &fn) {
if (EnableJoining) { if (EnableJoining) {
joinIntervals(); joinIntervals();
DEBUG({ DEBUG({
DOUT << "********** INTERVALS POST JOINING **********\n"; errs() << "********** INTERVALS POST JOINING **********\n";
for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I){ for (LiveIntervals::iterator I = li_->begin(), E = li_->end(); I != E; ++I){
I->second->print(DOUT, tri_); I->second->print(errs(), tri_);
DOUT << "\n"; errs() << "\n";
} }
}); });
} }