Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 1 | //===-- GCStrategy.cpp - Garbage collection infrastructure -----------------===// |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements target- and collector-independent garbage collection |
| 11 | // infrastructure. |
| 12 | // |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 13 | // MachineCodeAnalysis identifies the GC safe points in the machine code. Roots |
| 14 | // are identified in SelectionDAGISel. |
| 15 | // |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Gordon Henriksen | 5a29c9e | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/GCStrategy.h" |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/Passes.h" |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 20 | #include "llvm/IntrinsicInst.h" |
| 21 | #include "llvm/Module.h" |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 23 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 24 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetFrameInfo.h" |
| 27 | #include "llvm/Target/TargetInstrInfo.h" |
| 28 | #include "llvm/Target/TargetMachine.h" |
Gordon Henriksen | fcbcfaa | 2008-08-19 17:06:35 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetRegisterInfo.h" |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Compiler.h" |
| 31 | |
| 32 | using namespace llvm; |
| 33 | |
| 34 | namespace { |
| 35 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 36 | /// LowerIntrinsics - This pass rewrites calls to the llvm.gcread or |
| 37 | /// llvm.gcwrite intrinsics, replacing them with simple loads and stores as |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 38 | /// directed by the GCStrategy. It also performs automatic root initialization |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 39 | /// and custom intrinsic lowering. |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 40 | class VISIBILITY_HIDDEN LowerIntrinsics : public FunctionPass { |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 41 | static bool NeedsDefaultLoweringPass(const GCStrategy &C); |
| 42 | static bool NeedsCustomLoweringPass(const GCStrategy &C); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 43 | static bool CouldBecomeSafePoint(Instruction *I); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 44 | bool PerformDefaultLowering(Function &F, GCStrategy &Coll); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 45 | static bool InsertRootInitializers(Function &F, |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 46 | AllocaInst **Roots, unsigned Count); |
| 47 | |
| 48 | public: |
| 49 | static char ID; |
| 50 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 51 | LowerIntrinsics(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 52 | const char *getPassName() const; |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 53 | void getAnalysisUsage(AnalysisUsage &AU) const; |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 54 | |
| 55 | bool doInitialization(Module &M); |
| 56 | bool runOnFunction(Function &F); |
| 57 | }; |
| 58 | |
| 59 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 60 | /// MachineCodeAnalysis - This is a target-independent pass over the machine |
| 61 | /// function representation to identify safe points for the garbage collector |
| 62 | /// in the machine code. It inserts labels at safe points and populates a |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 63 | /// GCMetadata record for each function. |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 64 | class VISIBILITY_HIDDEN MachineCodeAnalysis : public MachineFunctionPass { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 65 | const TargetMachine *TM; |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 66 | GCFunctionInfo *FI; |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 67 | MachineModuleInfo *MMI; |
| 68 | const TargetInstrInfo *TII; |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 69 | |
| 70 | void FindSafePoints(MachineFunction &MF); |
| 71 | void VisitCallPoint(MachineBasicBlock::iterator MI); |
| 72 | unsigned InsertLabel(MachineBasicBlock &MBB, |
| 73 | MachineBasicBlock::iterator MI) const; |
| 74 | |
| 75 | void FindStackOffsets(MachineFunction &MF); |
| 76 | |
| 77 | public: |
| 78 | static char ID; |
| 79 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 80 | MachineCodeAnalysis(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 81 | const char *getPassName() const; |
| 82 | void getAnalysisUsage(AnalysisUsage &AU) const; |
| 83 | |
| 84 | bool runOnMachineFunction(MachineFunction &MF); |
| 85 | }; |
| 86 | |
| 87 | } |
| 88 | |
| 89 | // ----------------------------------------------------------------------------- |
| 90 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 91 | GCStrategy::GCStrategy() : |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 92 | NeededSafePoints(0), |
| 93 | CustomReadBarriers(false), |
| 94 | CustomWriteBarriers(false), |
| 95 | CustomRoots(false), |
Gordon Henriksen | c317a60 | 2008-08-17 12:08:44 +0000 | [diff] [blame] | 96 | InitRoots(true), |
| 97 | UsesMetadata(false) |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 98 | {} |
| 99 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 100 | GCStrategy::~GCStrategy() { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 101 | for (iterator I = begin(), E = end(); I != E; ++I) |
| 102 | delete *I; |
| 103 | |
| 104 | Functions.clear(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 105 | } |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 106 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 107 | bool GCStrategy::initializeCustomLowering(Module &M) { return false; } |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 108 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 109 | bool GCStrategy::performCustomLowering(Function &F) { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 110 | cerr << "gc " << getName() << " must override performCustomLowering.\n"; |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 111 | abort(); |
| 112 | return 0; |
| 113 | } |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 114 | |
| 115 | GCFunctionInfo *GCStrategy::insertFunctionInfo(const Function &F) { |
| 116 | GCFunctionInfo *FI = new GCFunctionInfo(F, *this); |
| 117 | Functions.push_back(FI); |
| 118 | return FI; |
| 119 | } |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 120 | |
| 121 | // ----------------------------------------------------------------------------- |
| 122 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 123 | FunctionPass *llvm::createGCLoweringPass() { |
| 124 | return new LowerIntrinsics(); |
| 125 | } |
| 126 | |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 127 | char LowerIntrinsics::ID = 0; |
| 128 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 129 | LowerIntrinsics::LowerIntrinsics() |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 130 | : FunctionPass(&ID) {} |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 131 | |
| 132 | const char *LowerIntrinsics::getPassName() const { |
| 133 | return "Lower Garbage Collection Instructions"; |
| 134 | } |
| 135 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 136 | void LowerIntrinsics::getAnalysisUsage(AnalysisUsage &AU) const { |
| 137 | FunctionPass::getAnalysisUsage(AU); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 138 | AU.addRequired<GCModuleInfo>(); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | /// doInitialization - If this module uses the GC intrinsics, find them now. |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 142 | bool LowerIntrinsics::doInitialization(Module &M) { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 143 | // FIXME: This is rather antisocial in the context of a JIT since it performs |
| 144 | // work against the entire module. But this cannot be done at |
| 145 | // runFunction time (initializeCustomLowering likely needs to change |
| 146 | // the module). |
Duncan Sands | 1465d61 | 2009-01-28 13:14:17 +0000 | [diff] [blame] | 147 | GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>(); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 148 | assert(MI && "LowerIntrinsics didn't require GCModuleInfo!?"); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 149 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 150 | if (!I->isDeclaration() && I->hasGC()) |
| 151 | MI->getFunctionInfo(*I); // Instantiate the GC strategy. |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 152 | |
| 153 | bool MadeChange = false; |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 154 | for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I) |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 155 | if (NeedsCustomLoweringPass(**I)) |
| 156 | if ((*I)->initializeCustomLowering(M)) |
| 157 | MadeChange = true; |
| 158 | |
| 159 | return MadeChange; |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 162 | bool LowerIntrinsics::InsertRootInitializers(Function &F, AllocaInst **Roots, |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 163 | unsigned Count) { |
| 164 | // Scroll past alloca instructions. |
| 165 | BasicBlock::iterator IP = F.getEntryBlock().begin(); |
| 166 | while (isa<AllocaInst>(IP)) ++IP; |
| 167 | |
| 168 | // Search for initializers in the initial BB. |
| 169 | SmallPtrSet<AllocaInst*,16> InitedRoots; |
| 170 | for (; !CouldBecomeSafePoint(IP); ++IP) |
| 171 | if (StoreInst *SI = dyn_cast<StoreInst>(IP)) |
Anton Korobeynikov | b04addd | 2008-05-06 22:52:30 +0000 | [diff] [blame] | 172 | if (AllocaInst *AI = |
Anton Korobeynikov | 0b12ecf | 2008-05-07 22:54:15 +0000 | [diff] [blame] | 173 | dyn_cast<AllocaInst>(SI->getOperand(1)->stripPointerCasts())) |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 174 | InitedRoots.insert(AI); |
| 175 | |
| 176 | // Add root initializers. |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 177 | bool MadeChange = false; |
| 178 | |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 179 | for (AllocaInst **I = Roots, **E = Roots + Count; I != E; ++I) |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 180 | if (!InitedRoots.count(*I)) { |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 181 | new StoreInst(ConstantPointerNull::get(cast<PointerType>( |
| 182 | cast<PointerType>((*I)->getType())->getElementType())), |
| 183 | *I, IP); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 184 | MadeChange = true; |
| 185 | } |
| 186 | |
| 187 | return MadeChange; |
| 188 | } |
| 189 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 190 | bool LowerIntrinsics::NeedsDefaultLoweringPass(const GCStrategy &C) { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 191 | // Default lowering is necessary only if read or write barriers have a default |
| 192 | // action. The default for roots is no action. |
| 193 | return !C.customWriteBarrier() |
| 194 | || !C.customReadBarrier() |
| 195 | || C.initializeRoots(); |
| 196 | } |
| 197 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 198 | bool LowerIntrinsics::NeedsCustomLoweringPass(const GCStrategy &C) { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 199 | // Custom lowering is only necessary if enabled for some action. |
| 200 | return C.customWriteBarrier() |
| 201 | || C.customReadBarrier() |
| 202 | || C.customRoots(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | /// CouldBecomeSafePoint - Predicate to conservatively determine whether the |
| 206 | /// instruction could introduce a safe point. |
| 207 | bool LowerIntrinsics::CouldBecomeSafePoint(Instruction *I) { |
| 208 | // The natural definition of instructions which could introduce safe points |
| 209 | // are: |
| 210 | // |
| 211 | // - call, invoke (AfterCall, BeforeCall) |
| 212 | // - phis (Loops) |
| 213 | // - invoke, ret, unwind (Exit) |
| 214 | // |
| 215 | // However, instructions as seemingly inoccuous as arithmetic can become |
| 216 | // libcalls upon lowering (e.g., div i64 on a 32-bit platform), so instead |
| 217 | // it is necessary to take a conservative approach. |
| 218 | |
| 219 | if (isa<AllocaInst>(I) || isa<GetElementPtrInst>(I) || |
| 220 | isa<StoreInst>(I) || isa<LoadInst>(I)) |
| 221 | return false; |
| 222 | |
| 223 | // llvm.gcroot is safe because it doesn't do anything at runtime. |
| 224 | if (CallInst *CI = dyn_cast<CallInst>(I)) |
| 225 | if (Function *F = CI->getCalledFunction()) |
| 226 | if (unsigned IID = F->getIntrinsicID()) |
| 227 | if (IID == Intrinsic::gcroot) |
| 228 | return false; |
| 229 | |
| 230 | return true; |
| 231 | } |
| 232 | |
| 233 | /// runOnFunction - Replace gcread/gcwrite intrinsics with loads and stores. |
| 234 | /// Leave gcroot intrinsics; the code generator needs to see those. |
| 235 | bool LowerIntrinsics::runOnFunction(Function &F) { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 236 | // Quick exit for functions that do not use GC. |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 237 | if (!F.hasGC()) |
| 238 | return false; |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 239 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 240 | GCFunctionInfo &FI = getAnalysis<GCModuleInfo>().getFunctionInfo(F); |
| 241 | GCStrategy &S = FI.getStrategy(); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 242 | |
| 243 | bool MadeChange = false; |
| 244 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 245 | if (NeedsDefaultLoweringPass(S)) |
| 246 | MadeChange |= PerformDefaultLowering(F, S); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 247 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 248 | if (NeedsCustomLoweringPass(S)) |
| 249 | MadeChange |= S.performCustomLowering(F); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 250 | |
| 251 | return MadeChange; |
| 252 | } |
| 253 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 254 | bool LowerIntrinsics::PerformDefaultLowering(Function &F, GCStrategy &S) { |
| 255 | bool LowerWr = !S.customWriteBarrier(); |
| 256 | bool LowerRd = !S.customReadBarrier(); |
| 257 | bool InitRoots = S.initializeRoots(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 258 | |
| 259 | SmallVector<AllocaInst*,32> Roots; |
| 260 | |
| 261 | bool MadeChange = false; |
| 262 | for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { |
| 263 | for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;) { |
Gordon Henriksen | a6c9925 | 2007-12-22 17:27:01 +0000 | [diff] [blame] | 264 | if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++)) { |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 265 | Function *F = CI->getCalledFunction(); |
Gordon Henriksen | a6c9925 | 2007-12-22 17:27:01 +0000 | [diff] [blame] | 266 | switch (F->getIntrinsicID()) { |
| 267 | case Intrinsic::gcwrite: |
| 268 | if (LowerWr) { |
| 269 | // Replace a write barrier with a simple store. |
| 270 | Value *St = new StoreInst(CI->getOperand(1), CI->getOperand(3), CI); |
| 271 | CI->replaceAllUsesWith(St); |
| 272 | CI->eraseFromParent(); |
| 273 | } |
| 274 | break; |
| 275 | case Intrinsic::gcread: |
| 276 | if (LowerRd) { |
| 277 | // Replace a read barrier with a simple load. |
| 278 | Value *Ld = new LoadInst(CI->getOperand(2), "", CI); |
| 279 | Ld->takeName(CI); |
| 280 | CI->replaceAllUsesWith(Ld); |
| 281 | CI->eraseFromParent(); |
| 282 | } |
| 283 | break; |
| 284 | case Intrinsic::gcroot: |
| 285 | if (InitRoots) { |
| 286 | // Initialize the GC root, but do not delete the intrinsic. The |
| 287 | // backend needs the intrinsic to flag the stack slot. |
| 288 | Roots.push_back(cast<AllocaInst>( |
Anton Korobeynikov | 0b12ecf | 2008-05-07 22:54:15 +0000 | [diff] [blame] | 289 | CI->getOperand(1)->stripPointerCasts())); |
Gordon Henriksen | a6c9925 | 2007-12-22 17:27:01 +0000 | [diff] [blame] | 290 | } |
| 291 | break; |
| 292 | default: |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 293 | continue; |
| 294 | } |
| 295 | |
| 296 | MadeChange = true; |
| 297 | } |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | if (Roots.size()) |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 302 | MadeChange |= InsertRootInitializers(F, Roots.begin(), Roots.size()); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 303 | |
| 304 | return MadeChange; |
| 305 | } |
| 306 | |
| 307 | // ----------------------------------------------------------------------------- |
| 308 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 309 | FunctionPass *llvm::createGCMachineCodeAnalysisPass() { |
| 310 | return new MachineCodeAnalysis(); |
| 311 | } |
| 312 | |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 313 | char MachineCodeAnalysis::ID = 0; |
| 314 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 315 | MachineCodeAnalysis::MachineCodeAnalysis() |
| 316 | : MachineFunctionPass(intptr_t(&ID)) {} |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 317 | |
| 318 | const char *MachineCodeAnalysis::getPassName() const { |
| 319 | return "Analyze Machine Code For Garbage Collection"; |
| 320 | } |
| 321 | |
| 322 | void MachineCodeAnalysis::getAnalysisUsage(AnalysisUsage &AU) const { |
| 323 | MachineFunctionPass::getAnalysisUsage(AU); |
| 324 | AU.setPreservesAll(); |
| 325 | AU.addRequired<MachineModuleInfo>(); |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 326 | AU.addRequired<GCModuleInfo>(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | unsigned MachineCodeAnalysis::InsertLabel(MachineBasicBlock &MBB, |
| 330 | MachineBasicBlock::iterator MI) const { |
| 331 | unsigned Label = MMI->NextLabelID(); |
Bill Wendling | d62e06c | 2009-02-03 02:29:34 +0000 | [diff] [blame^] | 332 | BuildMI(MBB, MI, MI->getDebugLoc(), |
| 333 | TII->get(TargetInstrInfo::GC_LABEL)).addImm(Label); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 334 | return Label; |
| 335 | } |
| 336 | |
| 337 | void MachineCodeAnalysis::VisitCallPoint(MachineBasicBlock::iterator CI) { |
| 338 | // Find the return address (next instruction), too, so as to bracket the call |
| 339 | // instruction. |
| 340 | MachineBasicBlock::iterator RAI = CI; |
| 341 | ++RAI; |
| 342 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 343 | if (FI->getStrategy().needsSafePoint(GC::PreCall)) |
| 344 | FI->addSafePoint(GC::PreCall, InsertLabel(*CI->getParent(), CI)); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 345 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 346 | if (FI->getStrategy().needsSafePoint(GC::PostCall)) |
| 347 | FI->addSafePoint(GC::PostCall, InsertLabel(*CI->getParent(), RAI)); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | void MachineCodeAnalysis::FindSafePoints(MachineFunction &MF) { |
| 351 | for (MachineFunction::iterator BBI = MF.begin(), |
| 352 | BBE = MF.end(); BBI != BBE; ++BBI) |
| 353 | for (MachineBasicBlock::iterator MI = BBI->begin(), |
| 354 | ME = BBI->end(); MI != ME; ++MI) |
Chris Lattner | 749c6f6 | 2008-01-07 07:27:27 +0000 | [diff] [blame] | 355 | if (MI->getDesc().isCall()) |
Dan Gohman | fd3ff03 | 2008-07-07 20:08:05 +0000 | [diff] [blame] | 356 | VisitCallPoint(MI); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | void MachineCodeAnalysis::FindStackOffsets(MachineFunction &MF) { |
Gordon Henriksen | fcbcfaa | 2008-08-19 17:06:35 +0000 | [diff] [blame] | 360 | const TargetRegisterInfo *TRI = TM->getRegisterInfo(); |
| 361 | assert(TRI && "TargetRegisterInfo not available!"); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 362 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 363 | for (GCFunctionInfo::roots_iterator RI = FI->roots_begin(), |
| 364 | RE = FI->roots_end(); RI != RE; ++RI) |
Gordon Henriksen | fcbcfaa | 2008-08-19 17:06:35 +0000 | [diff] [blame] | 365 | RI->StackOffset = TRI->getFrameIndexOffset(MF, RI->Num); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | bool MachineCodeAnalysis::runOnMachineFunction(MachineFunction &MF) { |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 369 | // Quick exit for functions that do not use GC. |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 370 | if (!MF.getFunction()->hasGC()) |
| 371 | return false; |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 372 | |
Gordon Henriksen | 5eca075 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 373 | FI = &getAnalysis<GCModuleInfo>().getFunctionInfo(*MF.getFunction()); |
| 374 | if (!FI->getStrategy().needsSafePoints()) |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 375 | return false; |
| 376 | |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 377 | TM = &MF.getTarget(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 378 | MMI = &getAnalysis<MachineModuleInfo>(); |
Gordon Henriksen | ad93c4f | 2007-12-11 00:30:17 +0000 | [diff] [blame] | 379 | TII = TM->getInstrInfo(); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 380 | |
| 381 | // Find the size of the stack frame. |
Gordon Henriksen | fcbcfaa | 2008-08-19 17:06:35 +0000 | [diff] [blame] | 382 | FI->setFrameSize(MF.getFrameInfo()->getStackSize()); |
Gordon Henriksen | 364caf0 | 2007-09-29 02:13:43 +0000 | [diff] [blame] | 383 | |
| 384 | // Find all safe points. |
| 385 | FindSafePoints(MF); |
| 386 | |
| 387 | // Find the stack offsets for all roots. |
| 388 | FindStackOffsets(MF); |
| 389 | |
| 390 | return false; |
| 391 | } |