blob: 6cf253d2ffd8ff221ea38ac3d1b534dccfe31c4e [file] [log] [blame]
Gordon Henriksen364caf02007-09-29 02:13:43 +00001//===-- Collector.cpp - Garbage collection infrastructure -----------------===//
2//
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//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/CodeGen/Collector.h"
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000016#include "llvm/CodeGen/Passes.h"
Gordon Henriksen364caf02007-09-29 02:13:43 +000017#include "llvm/IntrinsicInst.h"
18#include "llvm/Module.h"
19#include "llvm/PassManager.h"
20#include "llvm/ADT/SmallPtrSet.h"
21#include "llvm/CodeGen/MachineFrameInfo.h"
22#include "llvm/CodeGen/MachineFunctionPass.h"
23#include "llvm/CodeGen/MachineInstrBuilder.h"
24#include "llvm/Target/TargetFrameInfo.h"
25#include "llvm/Target/TargetInstrInfo.h"
26#include "llvm/Target/TargetMachine.h"
27#include "llvm/Support/Compiler.h"
28
29using namespace llvm;
30
31namespace {
32
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000033 /// LowerIntrinsics - This pass rewrites calls to the llvm.gcread or
34 /// llvm.gcwrite intrinsics, replacing them with simple loads and stores as
35 /// directed by the Collector. It also performs automatic root initialization
36 /// and custom intrinsic lowering.
Gordon Henriksen364caf02007-09-29 02:13:43 +000037 class VISIBILITY_HIDDEN LowerIntrinsics : public FunctionPass {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000038 static bool NeedsDefaultLoweringPass(const Collector &C);
39 static bool NeedsCustomLoweringPass(const Collector &C);
Gordon Henriksen364caf02007-09-29 02:13:43 +000040 static bool CouldBecomeSafePoint(Instruction *I);
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000041 bool PerformDefaultLowering(Function &F, Collector &Coll);
42 static bool InsertRootInitializers(Function &F,
Gordon Henriksen364caf02007-09-29 02:13:43 +000043 AllocaInst **Roots, unsigned Count);
44
45 public:
46 static char ID;
47
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000048 LowerIntrinsics();
Gordon Henriksen364caf02007-09-29 02:13:43 +000049 const char *getPassName() const;
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000050 void getAnalysisUsage(AnalysisUsage &AU) const;
Gordon Henriksen364caf02007-09-29 02:13:43 +000051
52 bool doInitialization(Module &M);
53 bool runOnFunction(Function &F);
54 };
55
56
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000057 /// MachineCodeAnalysis - This is a target-independent pass over the machine
58 /// function representation to identify safe points for the garbage collector
59 /// in the machine code. It inserts labels at safe points and populates a
60 /// CollectorMetadata record for each function.
Gordon Henriksen364caf02007-09-29 02:13:43 +000061 class VISIBILITY_HIDDEN MachineCodeAnalysis : public MachineFunctionPass {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000062 const TargetMachine *TM;
Gordon Henriksen364caf02007-09-29 02:13:43 +000063 CollectorMetadata *MD;
64 MachineModuleInfo *MMI;
65 const TargetInstrInfo *TII;
66 MachineFrameInfo *MFI;
67
68 void FindSafePoints(MachineFunction &MF);
69 void VisitCallPoint(MachineBasicBlock::iterator MI);
70 unsigned InsertLabel(MachineBasicBlock &MBB,
71 MachineBasicBlock::iterator MI) const;
72
73 void FindStackOffsets(MachineFunction &MF);
74
75 public:
76 static char ID;
77
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000078 MachineCodeAnalysis();
Gordon Henriksen364caf02007-09-29 02:13:43 +000079 const char *getPassName() const;
80 void getAnalysisUsage(AnalysisUsage &AU) const;
81
82 bool runOnMachineFunction(MachineFunction &MF);
83 };
84
85}
86
87// -----------------------------------------------------------------------------
88
Gordon Henriksen364caf02007-09-29 02:13:43 +000089Collector::Collector() :
90 NeededSafePoints(0),
91 CustomReadBarriers(false),
92 CustomWriteBarriers(false),
93 CustomRoots(false),
94 InitRoots(true)
95{}
96
Gordon Henriksenad93c4f2007-12-11 00:30:17 +000097Collector::~Collector() {
98 for (iterator I = begin(), E = end(); I != E; ++I)
99 delete *I;
100
101 Functions.clear();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000102}
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000103
104bool Collector::initializeCustomLowering(Module &M) { return false; }
105
106bool Collector::performCustomLowering(Function &F) {
107 cerr << "gc " << getName() << " must override performCustomLowering.\n";
Gordon Henriksen364caf02007-09-29 02:13:43 +0000108 abort();
109 return 0;
110}
111
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000112void Collector::beginAssembly(std::ostream &OS, AsmPrinter &AP,
113 const TargetAsmInfo &TAI) {
Gordon Henriksen364caf02007-09-29 02:13:43 +0000114 // Default is no action.
115}
116
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000117void Collector::finishAssembly(std::ostream &OS, AsmPrinter &AP,
118 const TargetAsmInfo &TAI) {
Gordon Henriksen364caf02007-09-29 02:13:43 +0000119 // Default is no action.
120}
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000121
122CollectorMetadata *Collector::insertFunctionMetadata(const Function &F) {
123 CollectorMetadata *CM = new CollectorMetadata(F, *this);
124 Functions.push_back(CM);
125 return CM;
126}
Gordon Henriksen364caf02007-09-29 02:13:43 +0000127
128// -----------------------------------------------------------------------------
129
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000130FunctionPass *llvm::createGCLoweringPass() {
131 return new LowerIntrinsics();
132}
133
Gordon Henriksen364caf02007-09-29 02:13:43 +0000134char LowerIntrinsics::ID = 0;
135
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000136LowerIntrinsics::LowerIntrinsics()
Gordon Henriksena6c99252007-12-22 17:27:01 +0000137 : FunctionPass((intptr_t)&ID) {}
Gordon Henriksen364caf02007-09-29 02:13:43 +0000138
139const char *LowerIntrinsics::getPassName() const {
140 return "Lower Garbage Collection Instructions";
141}
142
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000143void LowerIntrinsics::getAnalysisUsage(AnalysisUsage &AU) const {
144 FunctionPass::getAnalysisUsage(AU);
145 AU.addRequired<CollectorModuleMetadata>();
146}
147
148/// doInitialization - If this module uses the GC intrinsics, find them now.
Gordon Henriksen364caf02007-09-29 02:13:43 +0000149bool LowerIntrinsics::doInitialization(Module &M) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000150 // FIXME: This is rather antisocial in the context of a JIT since it performs
151 // work against the entire module. But this cannot be done at
152 // runFunction time (initializeCustomLowering likely needs to change
153 // the module).
154 CollectorModuleMetadata *CMM = getAnalysisToUpdate<CollectorModuleMetadata>();
155 assert(CMM && "LowerIntrinsics didn't require CollectorModuleMetadata!?");
156 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
157 if (I->hasCollector())
158 CMM->get(*I); // Instantiate the Collector.
159
160 bool MadeChange = false;
161 for (CollectorModuleMetadata::iterator I = CMM->begin(),
162 E = CMM->end(); I != E; ++I)
163 if (NeedsCustomLoweringPass(**I))
164 if ((*I)->initializeCustomLowering(M))
165 MadeChange = true;
166
167 return MadeChange;
Gordon Henriksen364caf02007-09-29 02:13:43 +0000168}
169
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000170bool LowerIntrinsics::InsertRootInitializers(Function &F, AllocaInst **Roots,
Gordon Henriksen364caf02007-09-29 02:13:43 +0000171 unsigned Count) {
172 // Scroll past alloca instructions.
173 BasicBlock::iterator IP = F.getEntryBlock().begin();
174 while (isa<AllocaInst>(IP)) ++IP;
175
176 // Search for initializers in the initial BB.
177 SmallPtrSet<AllocaInst*,16> InitedRoots;
178 for (; !CouldBecomeSafePoint(IP); ++IP)
179 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
180 if (AllocaInst *AI = dyn_cast<AllocaInst>(
181 IntrinsicInst::StripPointerCasts(SI->getOperand(1))))
182 InitedRoots.insert(AI);
183
184 // Add root initializers.
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000185 bool MadeChange = false;
186
Gordon Henriksen364caf02007-09-29 02:13:43 +0000187 for (AllocaInst **I = Roots, **E = Roots + Count; I != E; ++I)
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000188 if (!InitedRoots.count(*I)) {
Gordon Henriksen364caf02007-09-29 02:13:43 +0000189 new StoreInst(ConstantPointerNull::get(cast<PointerType>(
190 cast<PointerType>((*I)->getType())->getElementType())),
191 *I, IP);
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000192 MadeChange = true;
193 }
194
195 return MadeChange;
196}
197
198bool LowerIntrinsics::NeedsDefaultLoweringPass(const Collector &C) {
199 // Default lowering is necessary only if read or write barriers have a default
200 // action. The default for roots is no action.
201 return !C.customWriteBarrier()
202 || !C.customReadBarrier()
203 || C.initializeRoots();
204}
205
206bool LowerIntrinsics::NeedsCustomLoweringPass(const Collector &C) {
207 // Custom lowering is only necessary if enabled for some action.
208 return C.customWriteBarrier()
209 || C.customReadBarrier()
210 || C.customRoots();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000211}
212
213/// CouldBecomeSafePoint - Predicate to conservatively determine whether the
214/// instruction could introduce a safe point.
215bool LowerIntrinsics::CouldBecomeSafePoint(Instruction *I) {
216 // The natural definition of instructions which could introduce safe points
217 // are:
218 //
219 // - call, invoke (AfterCall, BeforeCall)
220 // - phis (Loops)
221 // - invoke, ret, unwind (Exit)
222 //
223 // However, instructions as seemingly inoccuous as arithmetic can become
224 // libcalls upon lowering (e.g., div i64 on a 32-bit platform), so instead
225 // it is necessary to take a conservative approach.
226
227 if (isa<AllocaInst>(I) || isa<GetElementPtrInst>(I) ||
228 isa<StoreInst>(I) || isa<LoadInst>(I))
229 return false;
230
231 // llvm.gcroot is safe because it doesn't do anything at runtime.
232 if (CallInst *CI = dyn_cast<CallInst>(I))
233 if (Function *F = CI->getCalledFunction())
234 if (unsigned IID = F->getIntrinsicID())
235 if (IID == Intrinsic::gcroot)
236 return false;
237
238 return true;
239}
240
241/// runOnFunction - Replace gcread/gcwrite intrinsics with loads and stores.
242/// Leave gcroot intrinsics; the code generator needs to see those.
243bool LowerIntrinsics::runOnFunction(Function &F) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000244 // Quick exit for functions that do not use GC.
245 if (!F.hasCollector()) return false;
Gordon Henriksen364caf02007-09-29 02:13:43 +0000246
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000247 CollectorMetadata &MD = getAnalysis<CollectorModuleMetadata>().get(F);
248 Collector &Coll = MD.getCollector();
249
250 bool MadeChange = false;
251
252 if (NeedsDefaultLoweringPass(Coll))
253 MadeChange |= PerformDefaultLowering(F, Coll);
254
255 if (NeedsCustomLoweringPass(Coll))
256 MadeChange |= Coll.performCustomLowering(F);
257
258 return MadeChange;
259}
260
261bool LowerIntrinsics::PerformDefaultLowering(Function &F, Collector &Coll) {
Gordon Henriksen364caf02007-09-29 02:13:43 +0000262 bool LowerWr = !Coll.customWriteBarrier();
263 bool LowerRd = !Coll.customReadBarrier();
264 bool InitRoots = Coll.initializeRoots();
265
266 SmallVector<AllocaInst*,32> Roots;
267
268 bool MadeChange = false;
269 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
270 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;) {
Gordon Henriksena6c99252007-12-22 17:27:01 +0000271 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++)) {
Gordon Henriksen364caf02007-09-29 02:13:43 +0000272 Function *F = CI->getCalledFunction();
Gordon Henriksena6c99252007-12-22 17:27:01 +0000273 switch (F->getIntrinsicID()) {
274 case Intrinsic::gcwrite:
275 if (LowerWr) {
276 // Replace a write barrier with a simple store.
277 Value *St = new StoreInst(CI->getOperand(1), CI->getOperand(3), CI);
278 CI->replaceAllUsesWith(St);
279 CI->eraseFromParent();
280 }
281 break;
282 case Intrinsic::gcread:
283 if (LowerRd) {
284 // Replace a read barrier with a simple load.
285 Value *Ld = new LoadInst(CI->getOperand(2), "", CI);
286 Ld->takeName(CI);
287 CI->replaceAllUsesWith(Ld);
288 CI->eraseFromParent();
289 }
290 break;
291 case Intrinsic::gcroot:
292 if (InitRoots) {
293 // Initialize the GC root, but do not delete the intrinsic. The
294 // backend needs the intrinsic to flag the stack slot.
295 Roots.push_back(cast<AllocaInst>(
296 IntrinsicInst::StripPointerCasts(CI->getOperand(1))));
297 }
298 break;
299 default:
Gordon Henriksen364caf02007-09-29 02:13:43 +0000300 continue;
301 }
302
303 MadeChange = true;
304 }
305 }
306 }
307
308 if (Roots.size())
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000309 MadeChange |= InsertRootInitializers(F, Roots.begin(), Roots.size());
Gordon Henriksen364caf02007-09-29 02:13:43 +0000310
311 return MadeChange;
312}
313
314// -----------------------------------------------------------------------------
315
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000316FunctionPass *llvm::createGCMachineCodeAnalysisPass() {
317 return new MachineCodeAnalysis();
318}
319
Gordon Henriksen364caf02007-09-29 02:13:43 +0000320char MachineCodeAnalysis::ID = 0;
321
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000322MachineCodeAnalysis::MachineCodeAnalysis()
323 : MachineFunctionPass(intptr_t(&ID)) {}
Gordon Henriksen364caf02007-09-29 02:13:43 +0000324
325const char *MachineCodeAnalysis::getPassName() const {
326 return "Analyze Machine Code For Garbage Collection";
327}
328
329void MachineCodeAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
330 MachineFunctionPass::getAnalysisUsage(AU);
331 AU.setPreservesAll();
332 AU.addRequired<MachineModuleInfo>();
333 AU.addRequired<CollectorModuleMetadata>();
334}
335
336unsigned MachineCodeAnalysis::InsertLabel(MachineBasicBlock &MBB,
337 MachineBasicBlock::iterator MI) const {
338 unsigned Label = MMI->NextLabelID();
339 BuildMI(MBB, MI, TII->get(TargetInstrInfo::LABEL)).addImm(Label);
340 return Label;
341}
342
343void MachineCodeAnalysis::VisitCallPoint(MachineBasicBlock::iterator CI) {
344 // Find the return address (next instruction), too, so as to bracket the call
345 // instruction.
346 MachineBasicBlock::iterator RAI = CI;
347 ++RAI;
348
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000349 if (MD->getCollector().needsSafePoint(GC::PreCall))
Gordon Henriksen364caf02007-09-29 02:13:43 +0000350 MD->addSafePoint(GC::PreCall, InsertLabel(*CI->getParent(), CI));
351
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000352 if (MD->getCollector().needsSafePoint(GC::PostCall))
Gordon Henriksen364caf02007-09-29 02:13:43 +0000353 MD->addSafePoint(GC::PostCall, InsertLabel(*CI->getParent(), RAI));
354}
355
356void MachineCodeAnalysis::FindSafePoints(MachineFunction &MF) {
357 for (MachineFunction::iterator BBI = MF.begin(),
358 BBE = MF.end(); BBI != BBE; ++BBI)
359 for (MachineBasicBlock::iterator MI = BBI->begin(),
360 ME = BBI->end(); MI != ME; ++MI)
361 if (TII->isCall(MI->getOpcode()))
362 VisitCallPoint(*MI);
363}
364
365void MachineCodeAnalysis::FindStackOffsets(MachineFunction &MF) {
366 uint64_t StackSize = MFI->getStackSize();
367 uint64_t OffsetAdjustment = MFI->getOffsetAdjustment();
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000368 uint64_t OffsetOfLocalArea = TM->getFrameInfo()->getOffsetOfLocalArea();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000369
370 for (CollectorMetadata::roots_iterator RI = MD->roots_begin(),
371 RE = MD->roots_end(); RI != RE; ++RI)
372 RI->StackOffset = MFI->getObjectOffset(RI->Num) + StackSize
373 - OffsetOfLocalArea + OffsetAdjustment;
374}
375
376bool MachineCodeAnalysis::runOnMachineFunction(MachineFunction &MF) {
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000377 // Quick exit for functions that do not use GC.
378 if (!MF.getFunction()->hasCollector()) return false;
379
380 MD = &getAnalysis<CollectorModuleMetadata>().get(*MF.getFunction());
381 if (!MD->getCollector().needsSafePoints())
Gordon Henriksen364caf02007-09-29 02:13:43 +0000382 return false;
383
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000384 TM = &MF.getTarget();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000385 MMI = &getAnalysis<MachineModuleInfo>();
Gordon Henriksenad93c4f2007-12-11 00:30:17 +0000386 TII = TM->getInstrInfo();
Gordon Henriksen364caf02007-09-29 02:13:43 +0000387 MFI = MF.getFrameInfo();
388
389 // Find the size of the stack frame.
390 MD->setFrameSize(MFI->getStackSize());
391
392 // Find all safe points.
393 FindSafePoints(MF);
394
395 // Find the stack offsets for all roots.
396 FindStackOffsets(MF);
397
398 return false;
399}