Move the loads after the calls so that the fix for
[llvm/stm8.git] / lib / CodeGen / MachineFunctionAnalysis.cpp
blob054c750c9f2b9efb8c2b2fecef42075b9906b976
1 //===-- MachineFunctionAnalysis.cpp ---------------------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the definitions of the MachineFunctionAnalysis members.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/CodeGen/MachineFunctionAnalysis.h"
15 #include "llvm/CodeGen/GCMetadata.h"
16 #include "llvm/CodeGen/MachineFunction.h"
17 #include "llvm/CodeGen/MachineModuleInfo.h"
18 using namespace llvm;
20 char MachineFunctionAnalysis::ID = 0;
22 MachineFunctionAnalysis::MachineFunctionAnalysis(const TargetMachine &tm,
23 CodeGenOpt::Level OL) :
24 FunctionPass(ID), TM(tm), OptLevel(OL), MF(0) {
25 initializeMachineModuleInfoPass(*PassRegistry::getPassRegistry());
28 MachineFunctionAnalysis::~MachineFunctionAnalysis() {
29 releaseMemory();
30 assert(!MF && "MachineFunctionAnalysis left initialized!");
33 void MachineFunctionAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
34 AU.setPreservesAll();
35 AU.addRequired<MachineModuleInfo>();
38 bool MachineFunctionAnalysis::doInitialization(Module &M) {
39 MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>();
40 assert(MMI && "MMI not around yet??");
41 MMI->setModule(&M);
42 NextFnNum = 0;
43 return false;
47 bool MachineFunctionAnalysis::runOnFunction(Function &F) {
48 assert(!MF && "MachineFunctionAnalysis already initialized!");
49 MF = new MachineFunction(&F, TM, NextFnNum++,
50 getAnalysis<MachineModuleInfo>(),
51 getAnalysisIfAvailable<GCModuleInfo>());
52 return false;
55 void MachineFunctionAnalysis::releaseMemory() {
56 delete MF;
57 MF = 0;