Changes in directory llvm/lib/Target/PowerPC:
PPCAsmPrinter.cpp updated: 1.229 -> 1.230 PPCRegisterInfo.cpp updated: 1.100 -> 1.101 --- Log message: Change the MachineDebugInfo to MachineModuleInfo to better reflect usage for debugging and exception handling. --- Diffs of the changes: (+13 -13) PPCAsmPrinter.cpp | 10 +++++----- PPCRegisterInfo.cpp | 16 ++++++++-------- 2 files changed, 13 insertions(+), 13 deletions(-) Index: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp diff -u llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.229 llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.230 --- llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.229 Wed Jan 24 20:52:50 2007 +++ llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp Fri Jan 26 15:22:28 2007 @@ -27,7 +27,7 @@ #include "llvm/Assembly/Writer.h" #include "llvm/CodeGen/AsmPrinter.h" #include "llvm/CodeGen/DwarfWriter.h" -#include "llvm/CodeGen/MachineDebugInfo.h" +#include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/Support/Mangler.h" @@ -302,7 +302,7 @@ void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); - AU.addRequired<MachineDebugInfo>(); + AU.addRequired<MachineModuleInfo>(); PPCAsmPrinter::getAnalysisUsage(AU); } @@ -332,7 +332,7 @@ void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); - AU.addRequired<MachineDebugInfo>(); + AU.addRequired<MachineModuleInfo>(); PPCAsmPrinter::getAnalysisUsage(AU); } @@ -528,7 +528,7 @@ /// method to print assembly for each instruction. /// bool LinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) { - DW.SetDebugInfo(&getAnalysis<MachineDebugInfo>()); + DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>()); SetupMachineFunction(MF); O << "\n\n"; @@ -738,7 +738,7 @@ /// method to print assembly for each instruction. /// bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) { - DW.SetDebugInfo(&getAnalysis<MachineDebugInfo>()); + DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>()); SetupMachineFunction(MF); O << "\n\n"; Index: llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp diff -u llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.100 llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.101 --- llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp:1.100 Fri Jan 26 08:34:51 2007 +++ llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp Fri Jan 26 15:22:28 2007 @@ -22,7 +22,7 @@ #include "llvm/Type.h" #include "llvm/CodeGen/ValueTypes.h" #include "llvm/CodeGen/MachineInstrBuilder.h" -#include "llvm/CodeGen/MachineDebugInfo.h" +#include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineLocation.h" @@ -754,10 +754,10 @@ MachineBasicBlock &MBB = MF.front(); // Prolog goes in entry BB MachineBasicBlock::iterator MBBI = MBB.begin(); MachineFrameInfo *MFI = MF.getFrameInfo(); - MachineDebugInfo *DebugInfo = MFI->getMachineDebugInfo(); + MachineModuleInfo *MMI = MFI->getMachineModuleInfo(); // Prepare for debug frame info. - bool hasInfo = DebugInfo && DebugInfo->hasInfo(); + bool hasDebugInfo = MMI && MMI->hasDebugInfo(); unsigned FrameLabelId = 0; // Scan the prolog, looking for an UPDATE_VRSAVE instruction. If we find it, @@ -819,9 +819,9 @@ unsigned TargetAlign = MF.getTarget().getFrameInfo()->getStackAlignment(); unsigned MaxAlign = MFI->getMaxAlignment(); - if (hasInfo) { + if (hasDebugInfo) { // Mark effective beginning of when frame pointer becomes valid. - FrameLabelId = DebugInfo->NextLabelID(); + FrameLabelId = MMI->NextLabelID(); BuildMI(MBB, MBBI, TII.get(PPC::LABEL)).addImm(FrameLabelId); } @@ -870,8 +870,8 @@ } } - if (hasInfo) { - std::vector<MachineMove> &Moves = DebugInfo->getFrameMoves(); + if (hasDebugInfo) { + std::vector<MachineMove> &Moves = MMI->getFrameMoves(); if (NegFrameSize) { // Show update of SP. @@ -901,7 +901,7 @@ } // Mark effective beginning of when frame pointer is ready. - unsigned ReadyLabelId = DebugInfo->NextLabelID(); + unsigned ReadyLabelId = MMI->NextLabelID(); BuildMI(MBB, MBBI, TII.get(PPC::LABEL)).addImm(ReadyLabelId); MachineLocation FPDst(HasFP ? (IsPPC64 ? PPC::X31 : PPC::R31) : _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits