blob: 087b2857a4a020893ebd8cdb7c4806537fca6d3e [file] [log] [blame]
Gordon Henriksen5eca0752008-08-17 18:44:35 +00001//===-- GCStrategy.cpp - Garbage collection infrastructure -----------------===//
Gordon Henriksen364caf02007-09-29 02:13:43 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Gordon Henriksen364caf02007-09-29 02:13:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements target- and collector-independent garbage collection
11// infrastructure.
12//
Gordon Henriksen5eca0752008-08-17 18:44:35 +000013// MachineCodeAnalysis identifies the GC safe points in the machine code. Roots
14// are identified in SelectionDAGISel.
15//
Gordon Henriksen364caf02007-09-29 02:13:43 +000016//===----------------------------------------------------------------------===//
17
Gordon Henriksen5a29c9e2008-08-17 12:56:54 +000018#include "llvm/CodeGen/GCStrategy.h"
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000019#include "llvm/CodeGen/Passes.h"
Gordon Henriksen364caf02007-09-29 02:13:43 +000020#include "llvm/IntrinsicInst.h"
21#include "llvm/Module.h"
Gordon Henriksen364caf02007-09-29 02:13:43 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunctionPass.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Gordon Henriksen364caf02007-09-29 02:13:43 +000026#include "llvm/Target/TargetFrameInfo.h"
27#include "llvm/Target/TargetInstrInfo.h"
28#include "llvm/Target/TargetMachine.h"
Gordon Henriksenfcbcfaa2008-08-19 17:06:35 +000029#include "llvm/Target/TargetRegisterInfo.h"
David Greenecc54c7c2010-01-04 21:48:34 +000030#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000031#include "llvm/Support/ErrorHandling.h"
Chris Lattner45cfe542009-08-23 06:03:38 +000032#include "llvm/Support/raw_ostream.h"
Gordon Henriksen364caf02007-09-29 02:13:43 +000033
34using namespace llvm;
35
36namespace {
37
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000038 /// LowerIntrinsics - This pass rewrites calls to the llvm.gcread or
39 /// llvm.gcwrite intrinsics, replacing them with simple loads and stores as
Gordon Henriksen5eca0752008-08-17 18:44:35 +000040 /// directed by the GCStrategy. It also performs automatic root initialization
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000041 /// and custom intrinsic lowering.
Nick Lewycky6726b6d2009-10-25 06:33:48 +000042 class LowerIntrinsics : public FunctionPass {
Gordon Henriksen5eca0752008-08-17 18:44:35 +000043 static bool NeedsDefaultLoweringPass(const GCStrategy &C);
44 static bool NeedsCustomLoweringPass(const GCStrategy &C);
Gordon Henriksen364caf02007-09-29 02:13:43 +000045 static bool CouldBecomeSafePoint(Instruction *I);
Gordon Henriksen5eca0752008-08-17 18:44:35 +000046 bool PerformDefaultLowering(Function &F, GCStrategy &Coll);
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000047 static bool InsertRootInitializers(Function &F,
Gordon Henriksen364caf02007-09-29 02:13:43 +000048 AllocaInst **Roots, unsigned Count);
49
50 public:
51 static char ID;
52
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000053 LowerIntrinsics();
Gordon Henriksen364caf02007-09-29 02:13:43 +000054 const char *getPassName() const;
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000055 void getAnalysisUsage(AnalysisUsage &AU) const;
Gordon Henriksen364caf02007-09-29 02:13:43 +000056
57 bool doInitialization(Module &M);
58 bool runOnFunction(Function &F);
59 };
60
61
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000062 /// MachineCodeAnalysis - This is a target-independent pass over the machine
63 /// function representation to identify safe points for the garbage collector
64 /// in the machine code. It inserts labels at safe points and populates a
Gordon Henriksen5eca0752008-08-17 18:44:35 +000065 /// GCMetadata record for each function.
Nick Lewycky6726b6d2009-10-25 06:33:48 +000066 class MachineCodeAnalysis : public MachineFunctionPass {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000067 const TargetMachine *TM;
Gordon Henriksen5eca0752008-08-17 18:44:35 +000068 GCFunctionInfo *FI;
Gordon Henriksen364caf02007-09-29 02:13:43 +000069 MachineModuleInfo *MMI;
70 const TargetInstrInfo *TII;
Gordon Henriksen364caf02007-09-29 02:13:43 +000071
72 void FindSafePoints(MachineFunction &MF);
73 void VisitCallPoint(MachineBasicBlock::iterator MI);
Chris Lattneraba9bcb2010-03-14 07:27:07 +000074 MCSymbol *InsertLabel(MachineBasicBlock &MBB,
75 MachineBasicBlock::iterator MI,
76 DebugLoc DL) const;
Gordon Henriksen364caf02007-09-29 02:13:43 +000077
78 void FindStackOffsets(MachineFunction &MF);
79
80 public:
81 static char ID;
82
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000083 MachineCodeAnalysis();
Gordon Henriksen364caf02007-09-29 02:13:43 +000084 const char *getPassName() const;
85 void getAnalysisUsage(AnalysisUsage &AU) const;
86
87 bool runOnMachineFunction(MachineFunction &MF);
88 };
89
90}
91
92// -----------------------------------------------------------------------------
93
Gordon Henriksen5eca0752008-08-17 18:44:35 +000094GCStrategy::GCStrategy() :
Gordon Henriksen364caf02007-09-29 02:13:43 +000095 NeededSafePoints(0),
96 CustomReadBarriers(false),
97 CustomWriteBarriers(false),
98 CustomRoots(false),
Gordon Henriksenc317a602008-08-17 12:08:44 +000099 InitRoots(true),
100 UsesMetadata(false)
Gordon Henriksen364caf02007-09-29 02:13:43 +0000101{}
102
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000103GCStrategy::~GCStrategy() {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000104 for (iterator I = begin(), E = end(); I != E; ++I)
105 delete *I;
106
107 Functions.clear();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000108}
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000109
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000110bool GCStrategy::initializeCustomLowering(Module &M) { return false; }
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000111
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000112bool GCStrategy::performCustomLowering(Function &F) {
David Greenecc54c7c2010-01-04 21:48:34 +0000113 dbgs() << "gc " << getName() << " must override performCustomLowering.\n";
Torok Edwinc23197a2009-07-14 16:55:14 +0000114 llvm_unreachable(0);
Gordon Henriksen364caf02007-09-29 02:13:43 +0000115 return 0;
116}
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000117
118GCFunctionInfo *GCStrategy::insertFunctionInfo(const Function &F) {
119 GCFunctionInfo *FI = new GCFunctionInfo(F, *this);
120 Functions.push_back(FI);
121 return FI;
122}
Gordon Henriksen364caf02007-09-29 02:13:43 +0000123
124// -----------------------------------------------------------------------------
125
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000126FunctionPass *llvm::createGCLoweringPass() {
127 return new LowerIntrinsics();
128}
129
Gordon Henriksen364caf02007-09-29 02:13:43 +0000130char LowerIntrinsics::ID = 0;
131
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000132LowerIntrinsics::LowerIntrinsics()
Owen Anderson90c579d2010-08-06 18:33:48 +0000133 : FunctionPass(ID) {}
Gordon Henriksen364caf02007-09-29 02:13:43 +0000134
135const char *LowerIntrinsics::getPassName() const {
136 return "Lower Garbage Collection Instructions";
137}
138
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000139void LowerIntrinsics::getAnalysisUsage(AnalysisUsage &AU) const {
140 FunctionPass::getAnalysisUsage(AU);
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000141 AU.addRequired<GCModuleInfo>();
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000142}
143
144/// doInitialization - If this module uses the GC intrinsics, find them now.
Gordon Henriksen364caf02007-09-29 02:13:43 +0000145bool LowerIntrinsics::doInitialization(Module &M) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000146 // FIXME: This is rather antisocial in the context of a JIT since it performs
147 // work against the entire module. But this cannot be done at
148 // runFunction time (initializeCustomLowering likely needs to change
149 // the module).
Duncan Sands1465d612009-01-28 13:14:17 +0000150 GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000151 assert(MI && "LowerIntrinsics didn't require GCModuleInfo!?");
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000152 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000153 if (!I->isDeclaration() && I->hasGC())
154 MI->getFunctionInfo(*I); // Instantiate the GC strategy.
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000155
156 bool MadeChange = false;
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000157 for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000158 if (NeedsCustomLoweringPass(**I))
159 if ((*I)->initializeCustomLowering(M))
160 MadeChange = true;
161
162 return MadeChange;
Gordon Henriksen364caf02007-09-29 02:13:43 +0000163}
164
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000165bool LowerIntrinsics::InsertRootInitializers(Function &F, AllocaInst **Roots,
Gordon Henriksen364caf02007-09-29 02:13:43 +0000166 unsigned Count) {
167 // Scroll past alloca instructions.
168 BasicBlock::iterator IP = F.getEntryBlock().begin();
169 while (isa<AllocaInst>(IP)) ++IP;
170
171 // Search for initializers in the initial BB.
172 SmallPtrSet<AllocaInst*,16> InitedRoots;
173 for (; !CouldBecomeSafePoint(IP); ++IP)
174 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
Anton Korobeynikovb04addd2008-05-06 22:52:30 +0000175 if (AllocaInst *AI =
Anton Korobeynikov0b12ecf2008-05-07 22:54:15 +0000176 dyn_cast<AllocaInst>(SI->getOperand(1)->stripPointerCasts()))
Gordon Henriksen364caf02007-09-29 02:13:43 +0000177 InitedRoots.insert(AI);
178
179 // Add root initializers.
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000180 bool MadeChange = false;
181
Gordon Henriksen364caf02007-09-29 02:13:43 +0000182 for (AllocaInst **I = Roots, **E = Roots + Count; I != E; ++I)
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000183 if (!InitedRoots.count(*I)) {
Nicolas Geoffray8538f042010-04-15 19:53:35 +0000184 StoreInst* SI = new StoreInst(ConstantPointerNull::get(cast<PointerType>(
185 cast<PointerType>((*I)->getType())->getElementType())),
186 *I);
187 SI->insertAfter(*I);
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000188 MadeChange = true;
189 }
190
191 return MadeChange;
192}
193
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000194bool LowerIntrinsics::NeedsDefaultLoweringPass(const GCStrategy &C) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000195 // Default lowering is necessary only if read or write barriers have a default
196 // action. The default for roots is no action.
197 return !C.customWriteBarrier()
198 || !C.customReadBarrier()
199 || C.initializeRoots();
200}
201
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000202bool LowerIntrinsics::NeedsCustomLoweringPass(const GCStrategy &C) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000203 // Custom lowering is only necessary if enabled for some action.
204 return C.customWriteBarrier()
205 || C.customReadBarrier()
206 || C.customRoots();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000207}
208
209/// CouldBecomeSafePoint - Predicate to conservatively determine whether the
210/// instruction could introduce a safe point.
211bool LowerIntrinsics::CouldBecomeSafePoint(Instruction *I) {
212 // The natural definition of instructions which could introduce safe points
213 // are:
214 //
215 // - call, invoke (AfterCall, BeforeCall)
216 // - phis (Loops)
217 // - invoke, ret, unwind (Exit)
218 //
219 // However, instructions as seemingly inoccuous as arithmetic can become
220 // libcalls upon lowering (e.g., div i64 on a 32-bit platform), so instead
221 // it is necessary to take a conservative approach.
222
223 if (isa<AllocaInst>(I) || isa<GetElementPtrInst>(I) ||
224 isa<StoreInst>(I) || isa<LoadInst>(I))
225 return false;
226
227 // llvm.gcroot is safe because it doesn't do anything at runtime.
228 if (CallInst *CI = dyn_cast<CallInst>(I))
229 if (Function *F = CI->getCalledFunction())
230 if (unsigned IID = F->getIntrinsicID())
231 if (IID == Intrinsic::gcroot)
232 return false;
233
234 return true;
235}
236
237/// runOnFunction - Replace gcread/gcwrite intrinsics with loads and stores.
238/// Leave gcroot intrinsics; the code generator needs to see those.
239bool LowerIntrinsics::runOnFunction(Function &F) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000240 // Quick exit for functions that do not use GC.
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000241 if (!F.hasGC())
242 return false;
Gordon Henriksen364caf02007-09-29 02:13:43 +0000243
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000244 GCFunctionInfo &FI = getAnalysis<GCModuleInfo>().getFunctionInfo(F);
245 GCStrategy &S = FI.getStrategy();
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000246
247 bool MadeChange = false;
248
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000249 if (NeedsDefaultLoweringPass(S))
250 MadeChange |= PerformDefaultLowering(F, S);
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000251
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000252 if (NeedsCustomLoweringPass(S))
253 MadeChange |= S.performCustomLowering(F);
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000254
255 return MadeChange;
256}
257
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000258bool LowerIntrinsics::PerformDefaultLowering(Function &F, GCStrategy &S) {
259 bool LowerWr = !S.customWriteBarrier();
260 bool LowerRd = !S.customReadBarrier();
261 bool InitRoots = S.initializeRoots();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000262
Gabor Greifa3997812010-07-22 10:37:47 +0000263 SmallVector<AllocaInst*, 32> Roots;
Gordon Henriksen364caf02007-09-29 02:13:43 +0000264
265 bool MadeChange = false;
266 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
267 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;) {
Gordon Henriksena6c99252007-12-22 17:27:01 +0000268 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++)) {
Gordon Henriksen364caf02007-09-29 02:13:43 +0000269 Function *F = CI->getCalledFunction();
Gordon Henriksena6c99252007-12-22 17:27:01 +0000270 switch (F->getIntrinsicID()) {
271 case Intrinsic::gcwrite:
272 if (LowerWr) {
273 // Replace a write barrier with a simple store.
Gabor Greifa3997812010-07-22 10:37:47 +0000274 Value *St = new StoreInst(CI->getArgOperand(0),
275 CI->getArgOperand(2), CI);
Gordon Henriksena6c99252007-12-22 17:27:01 +0000276 CI->replaceAllUsesWith(St);
277 CI->eraseFromParent();
278 }
279 break;
280 case Intrinsic::gcread:
281 if (LowerRd) {
282 // Replace a read barrier with a simple load.
Gabor Greif89c4cea2010-06-25 08:48:19 +0000283 Value *Ld = new LoadInst(CI->getArgOperand(1), "", CI);
Gordon Henriksena6c99252007-12-22 17:27:01 +0000284 Ld->takeName(CI);
285 CI->replaceAllUsesWith(Ld);
286 CI->eraseFromParent();
287 }
288 break;
289 case Intrinsic::gcroot:
290 if (InitRoots) {
291 // Initialize the GC root, but do not delete the intrinsic. The
292 // backend needs the intrinsic to flag the stack slot.
293 Roots.push_back(cast<AllocaInst>(
Gabor Greif89c4cea2010-06-25 08:48:19 +0000294 CI->getArgOperand(0)->stripPointerCasts()));
Gordon Henriksena6c99252007-12-22 17:27:01 +0000295 }
296 break;
297 default:
Gordon Henriksen364caf02007-09-29 02:13:43 +0000298 continue;
299 }
300
301 MadeChange = true;
302 }
303 }
304 }
305
306 if (Roots.size())
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000307 MadeChange |= InsertRootInitializers(F, Roots.begin(), Roots.size());
Gordon Henriksen364caf02007-09-29 02:13:43 +0000308
309 return MadeChange;
310}
311
312// -----------------------------------------------------------------------------
313
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000314FunctionPass *llvm::createGCMachineCodeAnalysisPass() {
315 return new MachineCodeAnalysis();
316}
317
Gordon Henriksen364caf02007-09-29 02:13:43 +0000318char MachineCodeAnalysis::ID = 0;
319
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000320MachineCodeAnalysis::MachineCodeAnalysis()
Owen Anderson90c579d2010-08-06 18:33:48 +0000321 : MachineFunctionPass(ID) {}
Gordon Henriksen364caf02007-09-29 02:13:43 +0000322
323const char *MachineCodeAnalysis::getPassName() const {
324 return "Analyze Machine Code For Garbage Collection";
325}
326
327void MachineCodeAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
328 MachineFunctionPass::getAnalysisUsage(AU);
329 AU.setPreservesAll();
330 AU.addRequired<MachineModuleInfo>();
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000331 AU.addRequired<GCModuleInfo>();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000332}
333
Chris Lattneraba9bcb2010-03-14 07:27:07 +0000334MCSymbol *MachineCodeAnalysis::InsertLabel(MachineBasicBlock &MBB,
335 MachineBasicBlock::iterator MI,
336 DebugLoc DL) const {
Chris Lattner77e76942010-03-17 05:41:18 +0000337 MCSymbol *Label = MBB.getParent()->getContext().CreateTempSymbol();
Chris Lattneraba9bcb2010-03-14 07:27:07 +0000338 BuildMI(MBB, MI, DL, TII->get(TargetOpcode::GC_LABEL)).addSym(Label);
Gordon Henriksen364caf02007-09-29 02:13:43 +0000339 return Label;
340}
341
342void MachineCodeAnalysis::VisitCallPoint(MachineBasicBlock::iterator CI) {
343 // Find the return address (next instruction), too, so as to bracket the call
344 // instruction.
345 MachineBasicBlock::iterator RAI = CI;
346 ++RAI;
347
Nicolas Geoffray946e3c92010-09-24 17:27:50 +0000348 if (FI->getStrategy().needsSafePoint(GC::PreCall)) {
349 MCSymbol* Label = InsertLabel(*CI->getParent(), CI, CI->getDebugLoc());
350 FI->addSafePoint(GC::PreCall, Label, CI->getDebugLoc());
351 }
Gordon Henriksen364caf02007-09-29 02:13:43 +0000352
Nicolas Geoffray946e3c92010-09-24 17:27:50 +0000353 if (FI->getStrategy().needsSafePoint(GC::PostCall)) {
354 MCSymbol* Label = InsertLabel(*CI->getParent(), RAI, CI->getDebugLoc());
355 FI->addSafePoint(GC::PostCall, Label, CI->getDebugLoc());
356 }
Gordon Henriksen364caf02007-09-29 02:13:43 +0000357}
358
359void MachineCodeAnalysis::FindSafePoints(MachineFunction &MF) {
360 for (MachineFunction::iterator BBI = MF.begin(),
361 BBE = MF.end(); BBI != BBE; ++BBI)
362 for (MachineBasicBlock::iterator MI = BBI->begin(),
363 ME = BBI->end(); MI != ME; ++MI)
Chris Lattner749c6f62008-01-07 07:27:27 +0000364 if (MI->getDesc().isCall())
Dan Gohmanfd3ff032008-07-07 20:08:05 +0000365 VisitCallPoint(MI);
Gordon Henriksen364caf02007-09-29 02:13:43 +0000366}
367
368void MachineCodeAnalysis::FindStackOffsets(MachineFunction &MF) {
Gordon Henriksenfcbcfaa2008-08-19 17:06:35 +0000369 const TargetRegisterInfo *TRI = TM->getRegisterInfo();
370 assert(TRI && "TargetRegisterInfo not available!");
Gordon Henriksen364caf02007-09-29 02:13:43 +0000371
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000372 for (GCFunctionInfo::roots_iterator RI = FI->roots_begin(),
373 RE = FI->roots_end(); RI != RE; ++RI)
Gordon Henriksenfcbcfaa2008-08-19 17:06:35 +0000374 RI->StackOffset = TRI->getFrameIndexOffset(MF, RI->Num);
Gordon Henriksen364caf02007-09-29 02:13:43 +0000375}
376
377bool MachineCodeAnalysis::runOnMachineFunction(MachineFunction &MF) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000378 // Quick exit for functions that do not use GC.
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000379 if (!MF.getFunction()->hasGC())
380 return false;
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000381
Gordon Henriksen5eca0752008-08-17 18:44:35 +0000382 FI = &getAnalysis<GCModuleInfo>().getFunctionInfo(*MF.getFunction());
383 if (!FI->getStrategy().needsSafePoints())
Gordon Henriksen364caf02007-09-29 02:13:43 +0000384 return false;
385
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000386 TM = &MF.getTarget();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000387 MMI = &getAnalysis<MachineModuleInfo>();
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000388 TII = TM->getInstrInfo();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000389
390 // Find the size of the stack frame.
Gordon Henriksenfcbcfaa2008-08-19 17:06:35 +0000391 FI->setFrameSize(MF.getFrameInfo()->getStackSize());
Gordon Henriksen364caf02007-09-29 02:13:43 +0000392
393 // Find all safe points.
394 FindSafePoints(MF);
395
396 // Find the stack offsets for all roots.
397 FindStackOffsets(MF);
398
399 return false;
400}