mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
remove various std::ostream version of printing methods from
MachineInstr and MachineOperand. This required eliminating a bunch of stuff that was using DOUT, I hope that bill doesn't mind me stealing his fun. ;-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79813 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -517,19 +517,21 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
|
||||
|
||||
/// print - Implement the dump method.
|
||||
void LiveIntervals::print(std::ostream &O, const Module* ) const {
|
||||
O << "********** INTERVALS **********\n";
|
||||
raw_os_ostream OS(O);
|
||||
OS << "********** INTERVALS **********\n";
|
||||
for (const_iterator I = begin(), E = end(); I != E; ++I) {
|
||||
I->second->print(O, tri_);
|
||||
O << "\n";
|
||||
I->second->print(OS, tri_);
|
||||
OS << "\n";
|
||||
}
|
||||
|
||||
O << "********** MACHINEINSTRS **********\n";
|
||||
OS << "********** MACHINEINSTRS **********\n";
|
||||
|
||||
for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
|
||||
mbbi != mbbe; ++mbbi) {
|
||||
O << ((Value*)mbbi->getBasicBlock())->getNameStr() << ":\n";
|
||||
OS << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
|
||||
for (MachineBasicBlock::iterator mii = mbbi->begin(),
|
||||
mie = mbbi->end(); mii != mie; ++mii) {
|
||||
O << getInstructionIndex(mii) << '\t' << *mii;
|
||||
OS << getInstructionIndex(mii) << '\t' << *mii;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user