summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-22 20:25:44 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-22 20:25:44 +0000
commitb7a89928f495da21e77bae788e3d6b1c57ecc192 (patch)
tree269a6816ae77edce2dcd2b7a2cc1e80d6321595b /lib
parent0d6b1b124888e568b4dd2037a9e31dcd54e62d18 (diff)
downloadllvm-b7a89928f495da21e77bae788e3d6b1c57ecc192.tar.gz
llvm-b7a89928f495da21e77bae788e3d6b1c57ecc192.tar.bz2
llvm-b7a89928f495da21e77bae788e3d6b1c57ecc192.tar.xz
Convert DOUT to DEBUG(errs()...).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79754 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/MachineLICM.cpp17
1 files changed, 8 insertions, 9 deletions
diff --git a/lib/CodeGen/MachineLICM.cpp b/lib/CodeGen/MachineLICM.cpp
index 4ef065f176..bb0d832172 100644
--- a/lib/CodeGen/MachineLICM.cpp
+++ b/lib/CodeGen/MachineLICM.cpp
@@ -130,7 +130,7 @@ bool MachineLICM::runOnMachineFunction(MachineFunction &MF) {
if (F->hasFnAttr(Attribute::OptimizeForSize))
return false;
- DOUT << "******** Machine LICM ********\n";
+ DEBUG(errs() << "******** Machine LICM ********\n");
Changed = false;
TM = &MF.getTarget();
@@ -218,28 +218,28 @@ bool MachineLICM::IsLoopInvariantInst(MachineInstr &I) {
}
DEBUG({
- DOUT << "--- Checking if we can hoist " << I;
+ errs() << "--- Checking if we can hoist " << I;
if (I.getDesc().getImplicitUses()) {
- DOUT << " * Instruction has implicit uses:\n";
+ errs() << " * Instruction has implicit uses:\n";
const TargetRegisterInfo *TRI = TM->getRegisterInfo();
for (const unsigned *ImpUses = I.getDesc().getImplicitUses();
*ImpUses; ++ImpUses)
- DOUT << " -> " << TRI->getName(*ImpUses) << "\n";
+ errs() << " -> " << TRI->getName(*ImpUses) << "\n";
}
if (I.getDesc().getImplicitDefs()) {
- DOUT << " * Instruction has implicit defines:\n";
+ errs() << " * Instruction has implicit defines:\n";
const TargetRegisterInfo *TRI = TM->getRegisterInfo();
for (const unsigned *ImpDefs = I.getDesc().getImplicitDefs();
*ImpDefs; ++ImpDefs)
- DOUT << " -> " << TRI->getName(*ImpDefs) << "\n";
+ errs() << " -> " << TRI->getName(*ImpDefs) << "\n";
}
});
if (I.getDesc().getImplicitDefs() || I.getDesc().getImplicitUses()) {
- DOUT << "Cannot hoist with implicit defines or uses\n";
+ DEBUG(errs() << "Cannot hoist with implicit defines or uses\n");
return false;
}
@@ -374,8 +374,7 @@ void MachineLICM::Hoist(MachineInstr &MI) {
if (CI != CSEMap.end()) {
const MachineInstr *Dup = LookForDuplicate(&MI, CI->second, RegInfo);
if (Dup) {
- DOUT << "CSEing " << MI;
- DOUT << " with " << *Dup;
+ DEBUG(errs() << "CSEing " << MI << " with " << *Dup);
for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
const MachineOperand &MO = MI.getOperand(i);
if (MO.isReg() && MO.isDef())