2009-07-31 18:16:33 +00:00
|
|
|
//===-- MachineFunctionAnalysis.cpp ---------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the definitions of the MachineFunctionAnalysis members.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineFunctionAnalysis.h"
|
2010-10-31 20:38:38 +00:00
|
|
|
#include "llvm/CodeGen/GCMetadata.h"
|
2009-07-31 18:16:33 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2010-03-13 20:55:24 +00:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2009-07-31 18:16:33 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
char MachineFunctionAnalysis::ID = 0;
|
|
|
|
|
2009-11-09 18:18:49 +00:00
|
|
|
MachineFunctionAnalysis::MachineFunctionAnalysis(const TargetMachine &tm,
|
2009-07-31 18:16:33 +00:00
|
|
|
CodeGenOpt::Level OL) :
|
2010-08-06 18:33:48 +00:00
|
|
|
FunctionPass(ID), TM(tm), OptLevel(OL), MF(0) {
|
2011-01-04 00:55:21 +00:00
|
|
|
initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry());
|
2009-07-31 18:16:33 +00:00
|
|
|
}
|
|
|
|
|
2009-08-01 04:19:43 +00:00
|
|
|
MachineFunctionAnalysis::~MachineFunctionAnalysis() {
|
2009-10-12 04:22:44 +00:00
|
|
|
releaseMemory();
|
2009-08-01 04:19:43 +00:00
|
|
|
assert(!MF && "MachineFunctionAnalysis left initialized!");
|
|
|
|
}
|
|
|
|
|
2010-04-06 00:51:52 +00:00
|
|
|
void MachineFunctionAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
AU.addRequired<MachineModuleInfo>();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MachineFunctionAnalysis::doInitialization(Module &M) {
|
|
|
|
MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>();
|
|
|
|
assert(MMI && "MMI not around yet??");
|
|
|
|
MMI->setModule(&M);
|
2010-04-17 16:29:15 +00:00
|
|
|
NextFnNum = 0;
|
|
|
|
return false;
|
2010-04-06 00:51:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-31 18:16:33 +00:00
|
|
|
bool MachineFunctionAnalysis::runOnFunction(Function &F) {
|
|
|
|
assert(!MF && "MachineFunctionAnalysis already initialized!");
|
2010-03-13 20:55:24 +00:00
|
|
|
MF = new MachineFunction(&F, TM, NextFnNum++,
|
2010-10-31 20:38:38 +00:00
|
|
|
getAnalysis<MachineModuleInfo>(),
|
|
|
|
getAnalysisIfAvailable<GCModuleInfo>());
|
2009-07-31 18:16:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachineFunctionAnalysis::releaseMemory() {
|
|
|
|
delete MF;
|
|
|
|
MF = 0;
|
|
|
|
}
|