blob: 6a07691adb91865c261beef3071f9bf342ee66c1 [file] [log] [blame]
Chris Lattner099c8cf2004-05-23 21:19:22 +00001//===-- LowerGC.cpp - Provide GC support for targets that don't -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements lowering for the llvm.gc* intrinsics for targets that do
11// not natively support them (which includes the C backend). Note that the code
12// generated is not as efficient as it would be for targets that natively
13// support the GC intrinsics, but it is useful for getting new targets
14// up-and-running quickly.
15//
16// This pass implements the code transformation described in this paper:
17// "Accurate Garbage Collection in an Uncooperative Environment"
Chris Lattner99173872004-05-23 21:27:29 +000018// Fergus Henderson, ISMM, 2002
Chris Lattner099c8cf2004-05-23 21:19:22 +000019//
20//===----------------------------------------------------------------------===//
21
22#define DEBUG_TYPE "lowergc"
23#include "llvm/Transforms/Scalar.h"
24#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Instructions.h"
27#include "llvm/Module.h"
28#include "llvm/Pass.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Chris Lattner099c8cf2004-05-23 21:19:22 +000030using namespace llvm;
31
32namespace {
Chris Lattner4a4c7fe2006-06-28 22:08:15 +000033 class VISIBILITY_HIDDEN LowerGC : public FunctionPass {
Chris Lattner099c8cf2004-05-23 21:19:22 +000034 /// GCRootInt, GCReadInt, GCWriteInt - The function prototypes for the
35 /// llvm.gcread/llvm.gcwrite/llvm.gcroot intrinsics.
36 Function *GCRootInt, *GCReadInt, *GCWriteInt;
37
38 /// GCRead/GCWrite - These are the functions provided by the garbage
39 /// collector for read/write barriers.
40 Function *GCRead, *GCWrite;
41
42 /// RootChain - This is the global linked-list that contains the chain of GC
43 /// roots.
44 GlobalVariable *RootChain;
45
46 /// MainRootRecordType - This is the type for a function root entry if it
47 /// had zero roots.
48 const Type *MainRootRecordType;
49 public:
Misha Brukmanb1c93172005-04-21 23:48:37 +000050 LowerGC() : GCRootInt(0), GCReadInt(0), GCWriteInt(0),
Chris Lattner099c8cf2004-05-23 21:19:22 +000051 GCRead(0), GCWrite(0), RootChain(0), MainRootRecordType(0) {}
52 virtual bool doInitialization(Module &M);
53 virtual bool runOnFunction(Function &F);
54
55 private:
56 const StructType *getRootRecordType(unsigned NumRoots);
57 };
58
Chris Lattnerc2d3d312006-08-27 22:42:52 +000059 RegisterPass<LowerGC>
Chris Lattner099c8cf2004-05-23 21:19:22 +000060 X("lowergc", "Lower GC intrinsics, for GCless code generators");
61}
62
63/// createLowerGCPass - This function returns an instance of the "lowergc"
64/// pass, which lowers garbage collection intrinsics to normal LLVM code.
65FunctionPass *llvm::createLowerGCPass() {
66 return new LowerGC();
67}
68
69/// getRootRecordType - This function creates and returns the type for a root
70/// record containing 'NumRoots' roots.
71const StructType *LowerGC::getRootRecordType(unsigned NumRoots) {
72 // Build a struct that is a type used for meta-data/root pairs.
73 std::vector<const Type *> ST;
74 ST.push_back(GCRootInt->getFunctionType()->getParamType(0));
75 ST.push_back(GCRootInt->getFunctionType()->getParamType(1));
76 StructType *PairTy = StructType::get(ST);
77
78 // Build the array of pairs.
79 ArrayType *PairArrTy = ArrayType::get(PairTy, NumRoots);
80
81 // Now build the recursive list type.
82 PATypeHolder RootListH =
83 MainRootRecordType ? (Type*)MainRootRecordType : (Type*)OpaqueType::get();
84 ST.clear();
85 ST.push_back(PointerType::get(RootListH)); // Prev pointer
86 ST.push_back(Type::UIntTy); // NumElements in array
87 ST.push_back(PairArrTy); // The pairs
88 StructType *RootList = StructType::get(ST);
89 if (MainRootRecordType)
90 return RootList;
91
92 assert(NumRoots == 0 && "The main struct type should have zero entries!");
93 cast<OpaqueType>((Type*)RootListH.get())->refineAbstractTypeTo(RootList);
94 MainRootRecordType = RootListH;
95 return cast<StructType>(RootListH.get());
96}
97
98/// doInitialization - If this module uses the GC intrinsics, find them now. If
99/// not, this pass does not do anything.
100bool LowerGC::doInitialization(Module &M) {
101 GCRootInt = M.getNamedFunction("llvm.gcroot");
102 GCReadInt = M.getNamedFunction("llvm.gcread");
103 GCWriteInt = M.getNamedFunction("llvm.gcwrite");
104 if (!GCRootInt && !GCReadInt && !GCWriteInt) return false;
105
106 PointerType *VoidPtr = PointerType::get(Type::SByteTy);
107 PointerType *VoidPtrPtr = PointerType::get(VoidPtr);
108
109 // If the program is using read/write barriers, find the implementations of
110 // them from the GC runtime library.
111 if (GCReadInt) // Make: sbyte* %llvm_gc_read(sbyte**)
Jeff Cohen11e26b52005-10-23 04:37:20 +0000112 GCRead = M.getOrInsertFunction("llvm_gc_read", VoidPtr, VoidPtr, VoidPtrPtr,
113 (Type *)0);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000114 if (GCWriteInt) // Make: void %llvm_gc_write(sbyte*, sbyte**)
115 GCWrite = M.getOrInsertFunction("llvm_gc_write", Type::VoidTy,
Jeff Cohen11e26b52005-10-23 04:37:20 +0000116 VoidPtr, VoidPtr, VoidPtrPtr, (Type *)0);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000117
118 // If the program has GC roots, get or create the global root list.
119 if (GCRootInt) {
120 const StructType *RootListTy = getRootRecordType(0);
121 const Type *PRLTy = PointerType::get(RootListTy);
122 M.addTypeName("llvm_gc_root_ty", RootListTy);
123
124 // Get the root chain if it already exists.
125 RootChain = M.getGlobalVariable("llvm_gc_root_chain", PRLTy);
126 if (RootChain == 0) {
127 // If the root chain does not exist, insert a new one with linkonce
128 // linkage!
Misha Brukmanb1c93172005-04-21 23:48:37 +0000129 RootChain = new GlobalVariable(PRLTy, false,
Chris Lattner845afe92004-10-27 03:55:24 +0000130 GlobalValue::LinkOnceLinkage,
131 Constant::getNullValue(PRLTy),
Chris Lattner099c8cf2004-05-23 21:19:22 +0000132 "llvm_gc_root_chain", &M);
133 } else if (RootChain->hasExternalLinkage() && RootChain->isExternal()) {
134 RootChain->setInitializer(Constant::getNullValue(PRLTy));
135 RootChain->setLinkage(GlobalValue::LinkOnceLinkage);
136 }
137 }
138 return true;
139}
140
141/// Coerce - If the specified operand number of the specified instruction does
142/// not have the specified type, insert a cast.
143static void Coerce(Instruction *I, unsigned OpNum, Type *Ty) {
144 if (I->getOperand(OpNum)->getType() != Ty) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000145 if (Constant *C = dyn_cast<Constant>(I->getOperand(OpNum)))
Chris Lattner099c8cf2004-05-23 21:19:22 +0000146 I->setOperand(OpNum, ConstantExpr::getCast(C, Ty));
147 else {
Reid Spencerce078332004-10-18 14:38:48 +0000148 CastInst *CI = new CastInst(I->getOperand(OpNum), Ty, "", I);
149 I->setOperand(OpNum, CI);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000150 }
151 }
152}
153
154/// runOnFunction - If the program is using GC intrinsics, replace any
155/// read/write intrinsics with the appropriate read/write barrier calls, then
Misha Brukmanb1c93172005-04-21 23:48:37 +0000156/// inline them. Finally, build the data structures for
Chris Lattner099c8cf2004-05-23 21:19:22 +0000157bool LowerGC::runOnFunction(Function &F) {
158 // Quick exit for programs that are not using GC mechanisms.
159 if (!GCRootInt && !GCReadInt && !GCWriteInt) return false;
160
161 PointerType *VoidPtr = PointerType::get(Type::SByteTy);
162 PointerType *VoidPtrPtr = PointerType::get(VoidPtr);
163
164 // If there are read/write barriers in the program, perform a quick pass over
165 // the function eliminating them. While we are at it, remember where we see
166 // calls to llvm.gcroot.
167 std::vector<CallInst*> GCRoots;
168 std::vector<CallInst*> NormalCalls;
169
170 bool MadeChange = false;
171 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
172 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;)
173 if (CallInst *CI = dyn_cast<CallInst>(II++)) {
174 if (!CI->getCalledFunction() ||
175 !CI->getCalledFunction()->getIntrinsicID())
176 NormalCalls.push_back(CI); // Remember all normal function calls.
177
178 if (Function *F = CI->getCalledFunction())
179 if (F == GCRootInt)
180 GCRoots.push_back(CI);
181 else if (F == GCReadInt || F == GCWriteInt) {
182 if (F == GCWriteInt) {
183 // Change a llvm.gcwrite call to call llvm_gc_write instead.
184 CI->setOperand(0, GCWrite);
185 // Insert casts of the operands as needed.
186 Coerce(CI, 1, VoidPtr);
Chris Lattner51f7c9e2004-07-22 05:51:13 +0000187 Coerce(CI, 2, VoidPtr);
188 Coerce(CI, 3, VoidPtrPtr);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000189 } else {
Chris Lattner51f7c9e2004-07-22 05:51:13 +0000190 Coerce(CI, 1, VoidPtr);
191 Coerce(CI, 2, VoidPtrPtr);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000192 if (CI->getType() == VoidPtr) {
193 CI->setOperand(0, GCRead);
194 } else {
195 // Create a whole new call to replace the old one.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000196 CallInst *NC = new CallInst(GCRead, CI->getOperand(1),
Chris Lattner51f7c9e2004-07-22 05:51:13 +0000197 CI->getOperand(2),
Chris Lattner099c8cf2004-05-23 21:19:22 +0000198 CI->getName(), CI);
199 Value *NV = new CastInst(NC, CI->getType(), "", CI);
200 CI->replaceAllUsesWith(NV);
201 BB->getInstList().erase(CI);
202 CI = NC;
203 }
204 }
205
Chris Lattner099c8cf2004-05-23 21:19:22 +0000206 MadeChange = true;
207 }
208 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000209
Chris Lattner099c8cf2004-05-23 21:19:22 +0000210 // If there are no GC roots in this function, then there is no need to create
211 // a GC list record for it.
212 if (GCRoots.empty()) return MadeChange;
213
214 // Okay, there are GC roots in this function. On entry to the function, add a
215 // record to the llvm_gc_root_chain, and remove it on exit.
216
217 // Create the alloca, and zero it out.
218 const StructType *RootListTy = getRootRecordType(GCRoots.size());
219 AllocaInst *AI = new AllocaInst(RootListTy, 0, "gcroots", F.begin()->begin());
220
221 // Insert the memset call after all of the allocas in the function.
222 BasicBlock::iterator IP = AI;
223 while (isa<AllocaInst>(IP)) ++IP;
224
Reid Spencere0fc4df2006-10-20 07:07:24 +0000225 Constant *Zero = ConstantInt::get(Type::UIntTy, 0);
226 Constant *One = ConstantInt::get(Type::UIntTy, 1);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000227
228 // Get a pointer to the prev pointer.
229 std::vector<Value*> Par;
230 Par.push_back(Zero);
231 Par.push_back(Zero);
232 Value *PrevPtrPtr = new GetElementPtrInst(AI, Par, "prevptrptr", IP);
233
234 // Load the previous pointer.
235 Value *PrevPtr = new LoadInst(RootChain, "prevptr", IP);
236 // Store the previous pointer into the prevptrptr
237 new StoreInst(PrevPtr, PrevPtrPtr, IP);
238
239 // Set the number of elements in this record.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000240 Par[1] = ConstantInt::get(Type::UIntTy, 1);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000241 Value *NumEltsPtr = new GetElementPtrInst(AI, Par, "numeltsptr", IP);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000242 new StoreInst(ConstantInt::get(Type::UIntTy, GCRoots.size()), NumEltsPtr,IP);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000243
Reid Spencere0fc4df2006-10-20 07:07:24 +0000244 Par[1] = ConstantInt::get(Type::UIntTy, 2);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000245 Par.resize(4);
246
247 const PointerType *PtrLocTy =
248 cast<PointerType>(GCRootInt->getFunctionType()->getParamType(0));
249 Constant *Null = ConstantPointerNull::get(PtrLocTy);
250
251 // Initialize all of the gcroot records now, and eliminate them as we go.
252 for (unsigned i = 0, e = GCRoots.size(); i != e; ++i) {
253 // Initialize the meta-data pointer.
Reid Spencere0fc4df2006-10-20 07:07:24 +0000254 Par[2] = ConstantInt::get(Type::UIntTy, i);
Chris Lattner099c8cf2004-05-23 21:19:22 +0000255 Par[3] = One;
256 Value *MetaDataPtr = new GetElementPtrInst(AI, Par, "MetaDataPtr", IP);
Reid Spencer9e855c62004-07-18 00:29:57 +0000257 assert(isa<Constant>(GCRoots[i]->getOperand(2)) && "Must be a constant");
Chris Lattner099c8cf2004-05-23 21:19:22 +0000258 new StoreInst(GCRoots[i]->getOperand(2), MetaDataPtr, IP);
259
260 // Initialize the root pointer to null on entry to the function.
261 Par[3] = Zero;
262 Value *RootPtrPtr = new GetElementPtrInst(AI, Par, "RootEntPtr", IP);
263 new StoreInst(Null, RootPtrPtr, IP);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000264
Chris Lattner099c8cf2004-05-23 21:19:22 +0000265 // Each occurrance of the llvm.gcroot intrinsic now turns into an
266 // initialization of the slot with the address and a zeroing out of the
267 // address specified.
268 new StoreInst(Constant::getNullValue(PtrLocTy->getElementType()),
269 GCRoots[i]->getOperand(1), GCRoots[i]);
270 new StoreInst(GCRoots[i]->getOperand(1), RootPtrPtr, GCRoots[i]);
271 GCRoots[i]->getParent()->getInstList().erase(GCRoots[i]);
272 }
273
274 // Now that the record is all initialized, store the pointer into the global
275 // pointer.
276 Value *C = new CastInst(AI, PointerType::get(MainRootRecordType), "", IP);
277 new StoreInst(C, RootChain, IP);
278
279 // On exit from the function we have to remove the entry from the GC root
280 // chain. Doing this is straight-forward for return and unwind instructions:
281 // just insert the appropriate copy.
282 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
283 if (isa<UnwindInst>(BB->getTerminator()) ||
284 isa<ReturnInst>(BB->getTerminator())) {
285 // We could reuse the PrevPtr loaded on entry to the function, but this
286 // would make the value live for the whole function, which is probably a
287 // bad idea. Just reload the value out of our stack entry.
288 PrevPtr = new LoadInst(PrevPtrPtr, "prevptr", BB->getTerminator());
289 new StoreInst(PrevPtr, RootChain, BB->getTerminator());
290 }
291
292 // If an exception is thrown from a callee we have to make sure to
293 // unconditionally take the record off the stack. For this reason, we turn
294 // all call instructions into invoke whose cleanup pops the entry off the
295 // stack. We only insert one cleanup block, which is shared by all invokes.
296 if (!NormalCalls.empty()) {
297 // Create the shared cleanup block.
298 BasicBlock *Cleanup = new BasicBlock("gc_cleanup", &F);
299 UnwindInst *UI = new UnwindInst(Cleanup);
300 PrevPtr = new LoadInst(PrevPtrPtr, "prevptr", UI);
301 new StoreInst(PrevPtr, RootChain, UI);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000302
Chris Lattner099c8cf2004-05-23 21:19:22 +0000303 // Loop over all of the function calls, turning them into invokes.
304 while (!NormalCalls.empty()) {
305 CallInst *CI = NormalCalls.back();
306 BasicBlock *CBB = CI->getParent();
307 NormalCalls.pop_back();
308
309 // Split the basic block containing the function call.
310 BasicBlock *NewBB = CBB->splitBasicBlock(CI, CBB->getName()+".cont");
311
312 // Remove the unconditional branch inserted at the end of the CBB.
313 CBB->getInstList().pop_back();
314 NewBB->getInstList().remove(CI);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000315
Chris Lattner099c8cf2004-05-23 21:19:22 +0000316 // Create a new invoke instruction.
317 Value *II = new InvokeInst(CI->getCalledValue(), NewBB, Cleanup,
318 std::vector<Value*>(CI->op_begin()+1,
319 CI->op_end()),
320 CI->getName(), CBB);
321 CI->replaceAllUsesWith(II);
322 delete CI;
323 }
324 }
325
326 return true;
327}