diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 9fb7bbb68e5b..46202f1f58dd 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -72,21 +72,6 @@ Pass *createMachineCodeDestructionPass() { } -// get - This deprecated static method returns the MachineBasicBlock object -// for the specified BasicBlock. -// -MachineBasicBlock& MachineBasicBlock::get(const BasicBlock *BB) { - const Function *F = BB->getParent(); - MachineFunction &MF = MachineFunction::get(F); - - for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) - if (I->getBasicBlock() == BB) - return *I; - assert(0 && "MachineBasicBlock object not found for specified block!"); - return get(BB); -} - - //===---------------------------------------------------------------------===// // MachineFunction implementation //===---------------------------------------------------------------------===// diff --git a/llvm/lib/Target/Sparc/MappingInfo.cpp b/llvm/lib/Target/Sparc/MappingInfo.cpp index 087fba20595e..757247874b4e 100644 --- a/llvm/lib/Target/Sparc/MappingInfo.cpp +++ b/llvm/lib/Target/Sparc/MappingInfo.cpp @@ -10,7 +10,7 @@ #include "llvm/Pass.h" #include "llvm/Module.h" #include "llvm/CodeGen/MachineInstr.h" -#include "llvm/CodeGen/MachineBasicBlock.h" +#include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineCodeForInstruction.h" #include using std::vector; @@ -109,7 +109,7 @@ unsigned getMappingInfoForFunction::writeNumber(unsigned X) { } //Assign a number to each Function -bool getMappingInfoForFunction::doInitialization(Module &M){ +bool getMappingInfoForFunction::doInitialization(Module &M) { unsigned i = 0; for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI){ @@ -122,24 +122,25 @@ bool getMappingInfoForFunction::doInitialization(Module &M){ } //Assign a Number to each BB -void getMappingInfoForFunction::create_BB_to_MInumber_Key(Function &FI){ +void getMappingInfoForFunction::create_BB_to_MInumber_Key(Function &FI) { unsigned i = 0; - for (Function::iterator BI = FI.begin(), BE = FI.end(); - BI != BE; ++BI){ - MachineBasicBlock &miBB = MachineBasicBlock::get(BI); + MachineFunction &MF = MachineFunction::get(&FI); + for (MachineFunction::iterator BI = MF.begin(), BE = MF.end(); + BI != BE; ++BI) { + MachineBasicBlock &miBB = *BI; BBkey[miBB[0]] = i; i = i+(miBB.size()); } } //Assign a number to each MI wrt beginning of the BB -void getMappingInfoForFunction::create_MI_to_number_Key(Function &FI){ - for (Function::iterator BI=FI.begin(), BE=FI.end(); - BI != BE; ++BI){ - MachineBasicBlock &miBB = MachineBasicBlock::get(BI); +void getMappingInfoForFunction::create_MI_to_number_Key(Function &FI) { + MachineFunction &MF = MachineFunction::get(&FI); + for (MachineFunction::iterator BI=MF.begin(), BE=MF.end(); BI != BE; ++BI) { + MachineBasicBlock &miBB = *BI; unsigned j = 0; for(MachineBasicBlock::iterator miI=miBB.begin(), miE=miBB.end(); - miI!=miE; ++miI, ++j){ + miI!=miE; ++miI, ++j) { MIkey[*miI]=j; } } @@ -148,10 +149,11 @@ void getMappingInfoForFunction::create_MI_to_number_Key(Function &FI){ //BBtoMImap: contains F#, BB#, // MI#[wrt beginning of F], #MI in BB void getMappingInfoForFunction::writeBBToMImap(Function &FI){ - unsigned bb=0; - for (Function::iterator BI = FI.begin(), - BE = FI.end(); BI != BE; ++BI, ++bb){ - MachineBasicBlock &miBB = MachineBasicBlock::get(BI); + unsigned bb = 0; + MachineFunction &MF = MachineFunction::get(&FI); + for (MachineFunction::iterator BI = MF.begin(), BE = MF.end(); + BI != BE; ++BI, ++bb) { + MachineBasicBlock &miBB = *BI; writeNumber(bb); //Out << " BB: "<<(void *)BI<<"\n"; //for(int i=0; ibegin(), - IE = BI->end(); II != IE; ++II, ++li){ + IE = BI->end(); II != IE; ++II, ++li) { //Out << "I: "<<*II<<"\n"; MachineCodeForInstruction& miI = MachineCodeForInstruction::get(II); diff --git a/llvm/lib/Target/Sparc/PeepholeOpts.cpp b/llvm/lib/Target/Sparc/PeepholeOpts.cpp index b41290e57652..21cc5d79e12d 100644 --- a/llvm/lib/Target/Sparc/PeepholeOpts.cpp +++ b/llvm/lib/Target/Sparc/PeepholeOpts.cpp @@ -6,7 +6,7 @@ //===----------------------------------------------------------------------===// #include "llvm/CodeGen/PeepholeOpts.h" -#include "llvm/CodeGen/MachineBasicBlock.h" +#include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/MachineInstrInfo.h" @@ -100,7 +100,16 @@ bool PeepholeOpts::runOnBasicBlock(BasicBlock &BB) { // Get the machine instructions for this BB - MachineBasicBlock& mvec = MachineBasicBlock::get(&BB); + // FIXME: MachineBasicBlock::get() is deprecated, hence inlining the function + const Function *F = BB.getParent(); + MachineFunction &MF = MachineFunction::get(F); + MachineBasicBlock *MBB = NULL; + for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I) { + if (I->getBasicBlock() == &BB) + MBB = I; + } + assert(MBB && "MachineBasicBlock object not found for specified block!"); + MachineBasicBlock &mvec = *MBB; // Iterate over all machine instructions in the BB // Use a reverse iterator to allow deletion of MI or any instruction after it.