blob: 39fc85e7649eb81f9dbd6d73b5d6aac858a93909 [file] [log] [blame]
Duncan Sandsb0f1e172009-05-22 20:36:31 +00001//===-- DwarfEHPrepare - Prepare exception handling for code generation ---===//
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 pass mulches exception handling code into a form adapted to code
11// generation. Required if using dwarf exception handling.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "dwarfehprepare"
16#include "llvm/ADT/Statistic.h"
17#include "llvm/Analysis/Dominators.h"
18#include "llvm/CodeGen/Passes.h"
19#include "llvm/Function.h"
20#include "llvm/Instructions.h"
21#include "llvm/IntrinsicInst.h"
22#include "llvm/Module.h"
23#include "llvm/Pass.h"
Jim Grosbach8d77cc82010-01-20 23:03:55 +000024#include "llvm/MC/MCAsmInfo.h"
Duncan Sandsb0f1e172009-05-22 20:36:31 +000025#include "llvm/Target/TargetLowering.h"
26#include "llvm/Transforms/Utils/BasicBlockUtils.h"
27#include "llvm/Transforms/Utils/PromoteMemToReg.h"
28using namespace llvm;
29
Bill Wendlingf58898f2009-10-29 00:22:16 +000030STATISTIC(NumLandingPadsSplit, "Number of landing pads split");
Bill Wendlingf58898f2009-10-29 00:22:16 +000031STATISTIC(NumUnwindsLowered, "Number of unwind instructions lowered");
Bill Wendling8bedf972009-10-29 00:37:35 +000032STATISTIC(NumExceptionValuesMoved, "Number of eh.exception calls moved");
33STATISTIC(NumStackTempsIntroduced, "Number of stack temporaries introduced");
Duncan Sandsb0f1e172009-05-22 20:36:31 +000034
35namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000036 class DwarfEHPrepare : public FunctionPass {
Duncan Sandsb0f1e172009-05-22 20:36:31 +000037 const TargetLowering *TLI;
Bill Wendling8bedf972009-10-29 00:37:35 +000038 bool CompileFast;
Duncan Sandsb0f1e172009-05-22 20:36:31 +000039
40 // The eh.exception intrinsic.
Bill Wendling8bedf972009-10-29 00:37:35 +000041 Function *ExceptionValueIntrinsic;
Duncan Sandsb0f1e172009-05-22 20:36:31 +000042
43 // _Unwind_Resume or the target equivalent.
44 Constant *RewindFunction;
45
46 // Dominator info is used when turning stack temporaries into registers.
47 DominatorTree *DT;
48 DominanceFrontier *DF;
49
50 // The function we are running on.
51 Function *F;
52
53 // The landing pads for this function.
54 typedef SmallPtrSet<BasicBlock*, 8> BBSet;
55 BBSet LandingPads;
56
57 // Stack temporary used to hold eh.exception values.
58 AllocaInst *ExceptionValueVar;
59
60 bool NormalizeLandingPads();
61 bool LowerUnwinds();
62 bool MoveExceptionValueCalls();
63 bool FinishStackTemporaries();
64 bool PromoteStackTemporaries();
65
66 Instruction *CreateExceptionValueCall(BasicBlock *BB);
67 Instruction *CreateValueLoad(BasicBlock *BB);
68
69 /// CreateReadOfExceptionValue - Return the result of the eh.exception
70 /// intrinsic by calling the intrinsic if in a landing pad, or loading
71 /// it from the exception value variable otherwise.
72 Instruction *CreateReadOfExceptionValue(BasicBlock *BB) {
73 return LandingPads.count(BB) ?
74 CreateExceptionValueCall(BB) : CreateValueLoad(BB);
75 }
76
77 public:
78 static char ID; // Pass identification, replacement for typeid.
Bill Wendling8bedf972009-10-29 00:37:35 +000079 DwarfEHPrepare(const TargetLowering *tli, bool fast) :
80 FunctionPass(&ID), TLI(tli), CompileFast(fast),
81 ExceptionValueIntrinsic(0), RewindFunction(0) {}
Duncan Sandsb0f1e172009-05-22 20:36:31 +000082
83 virtual bool runOnFunction(Function &Fn);
84
Bill Wendling8bedf972009-10-29 00:37:35 +000085 // getAnalysisUsage - We need dominance frontiers for memory promotion.
86 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
87 if (!CompileFast)
88 AU.addRequired<DominatorTree>();
89 AU.addPreserved<DominatorTree>();
90 if (!CompileFast)
91 AU.addRequired<DominanceFrontier>();
92 AU.addPreserved<DominanceFrontier>();
93 }
94
Duncan Sandsb0f1e172009-05-22 20:36:31 +000095 const char *getPassName() const {
96 return "Exception handling preparation";
97 }
98
99 };
100} // end anonymous namespace
101
102char DwarfEHPrepare::ID = 0;
103
Bill Wendling8bedf972009-10-29 00:37:35 +0000104FunctionPass *llvm::createDwarfEHPass(const TargetLowering *tli, bool fast) {
105 return new DwarfEHPrepare(tli, fast);
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000106}
107
108/// NormalizeLandingPads - Normalize and discover landing pads, noting them
109/// in the LandingPads set. A landing pad is normal if the only CFG edges
Eric Christopherec26bf72009-09-15 21:56:46 +0000110/// that end at it are unwind edges from invoke instructions. If we inlined
111/// through an invoke we could have a normal branch from the previous
112/// unwind block through to the landing pad for the original invoke.
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000113/// Abnormal landing pads are fixed up by redirecting all unwind edges to
114/// a new basic block which falls through to the original.
115bool DwarfEHPrepare::NormalizeLandingPads() {
116 bool Changed = false;
117
Jim Grosbach8d77cc82010-01-20 23:03:55 +0000118 const MCAsmInfo *MAI = TLI->getTargetMachine().getMCAsmInfo();
119 bool usingSjLjEH = MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
120
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000121 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
122 TerminatorInst *TI = I->getTerminator();
123 if (!isa<InvokeInst>(TI))
124 continue;
125 BasicBlock *LPad = TI->getSuccessor(1);
126 // Skip landing pads that have already been normalized.
127 if (LandingPads.count(LPad))
128 continue;
129
130 // Check that only invoke unwind edges end at the landing pad.
131 bool OnlyUnwoundTo = true;
Jim Grosbach8d77cc82010-01-20 23:03:55 +0000132 bool SwitchOK = usingSjLjEH;
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000133 for (pred_iterator PI = pred_begin(LPad), PE = pred_end(LPad);
134 PI != PE; ++PI) {
135 TerminatorInst *PT = (*PI)->getTerminator();
Jim Grosbach8d77cc82010-01-20 23:03:55 +0000136 // The SjLj dispatch block uses a switch instruction. This is effectively
137 // an unwind edge, so we can disregard it here. There will only ever
138 // be one dispatch, however, so if there are multiple switches, one
139 // of them truly is a normal edge, not an unwind edge.
140 if (SwitchOK && isa<SwitchInst>(PT)) {
141 SwitchOK = false;
142 continue;
143 }
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000144 if (!isa<InvokeInst>(PT) || LPad == PT->getSuccessor(0)) {
145 OnlyUnwoundTo = false;
146 break;
147 }
148 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000149
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000150 if (OnlyUnwoundTo) {
151 // Only unwind edges lead to the landing pad. Remember the landing pad.
152 LandingPads.insert(LPad);
153 continue;
154 }
155
156 // At least one normal edge ends at the landing pad. Redirect the unwind
157 // edges to a new basic block which falls through into this one.
158
159 // Create the new basic block.
Bill Wendling8bedf972009-10-29 00:37:35 +0000160 BasicBlock *NewBB = BasicBlock::Create(F->getContext(),
Owen Anderson1d0be152009-08-13 21:58:54 +0000161 LPad->getName() + "_unwind_edge");
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000162
163 // Insert it into the function right before the original landing pad.
164 LPad->getParent()->getBasicBlockList().insert(LPad, NewBB);
165
166 // Redirect unwind edges from the original landing pad to NewBB.
167 for (pred_iterator PI = pred_begin(LPad), PE = pred_end(LPad); PI != PE; ) {
168 TerminatorInst *PT = (*PI++)->getTerminator();
169 if (isa<InvokeInst>(PT) && PT->getSuccessor(1) == LPad)
170 // Unwind to the new block.
171 PT->setSuccessor(1, NewBB);
172 }
173
174 // If there are any PHI nodes in LPad, we need to update them so that they
175 // merge incoming values from NewBB instead.
176 for (BasicBlock::iterator II = LPad->begin(); isa<PHINode>(II); ++II) {
177 PHINode *PN = cast<PHINode>(II);
178 pred_iterator PB = pred_begin(NewBB), PE = pred_end(NewBB);
179
180 // Check to see if all of the values coming in via unwind edges are the
181 // same. If so, we don't need to create a new PHI node.
182 Value *InVal = PN->getIncomingValueForBlock(*PB);
183 for (pred_iterator PI = PB; PI != PE; ++PI) {
184 if (PI != PB && InVal != PN->getIncomingValueForBlock(*PI)) {
185 InVal = 0;
186 break;
187 }
188 }
189
190 if (InVal == 0) {
191 // Different unwind edges have different values. Create a new PHI node
192 // in NewBB.
193 PHINode *NewPN = PHINode::Create(PN->getType(), PN->getName()+".unwind",
194 NewBB);
195 // Add an entry for each unwind edge, using the value from the old PHI.
196 for (pred_iterator PI = PB; PI != PE; ++PI)
197 NewPN->addIncoming(PN->getIncomingValueForBlock(*PI), *PI);
198
199 // Now use this new PHI as the common incoming value for NewBB in PN.
200 InVal = NewPN;
201 }
202
203 // Revector exactly one entry in the PHI node to come from NewBB
204 // and delete all other entries that come from unwind edges. If
205 // there are both normal and unwind edges from the same predecessor,
206 // this leaves an entry for the normal edge.
207 for (pred_iterator PI = PB; PI != PE; ++PI)
208 PN->removeIncomingValue(*PI);
209 PN->addIncoming(InVal, NewBB);
210 }
211
212 // Add a fallthrough from NewBB to the original landing pad.
213 BranchInst::Create(LPad, NewBB);
214
215 // Now update DominatorTree and DominanceFrontier analysis information.
216 if (DT)
217 DT->splitBlock(NewBB);
218 if (DF)
219 DF->splitBlock(NewBB);
220
221 // Remember the newly constructed landing pad. The original landing pad
222 // LPad is no longer a landing pad now that all unwind edges have been
223 // revectored to NewBB.
224 LandingPads.insert(NewBB);
225 ++NumLandingPadsSplit;
226 Changed = true;
227 }
228
229 return Changed;
230}
231
232/// LowerUnwinds - Turn unwind instructions into calls to _Unwind_Resume,
233/// rethrowing any previously caught exception. This will crash horribly
234/// at runtime if there is no such exception: using unwind to throw a new
235/// exception is currently not supported.
236bool DwarfEHPrepare::LowerUnwinds() {
Bill Wendling43488712009-09-14 20:52:37 +0000237 SmallVector<TerminatorInst*, 16> UnwindInsts;
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000238
239 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
240 TerminatorInst *TI = I->getTerminator();
Bill Wendling43488712009-09-14 20:52:37 +0000241 if (isa<UnwindInst>(TI))
242 UnwindInsts.push_back(TI);
243 }
244
245 if (UnwindInsts.empty()) return false;
246
247 // Find the rewind function if we didn't already.
248 if (!RewindFunction) {
Bill Wendling8bedf972009-10-29 00:37:35 +0000249 LLVMContext &Ctx = UnwindInsts[0]->getContext();
Bill Wendling43488712009-09-14 20:52:37 +0000250 std::vector<const Type*>
Bill Wendling8bedf972009-10-29 00:37:35 +0000251 Params(1, Type::getInt8PtrTy(Ctx));
252 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
Bill Wendling43488712009-09-14 20:52:37 +0000253 Params, false);
254 const char *RewindName = TLI->getLibcallName(RTLIB::UNWIND_RESUME);
255 RewindFunction = F->getParent()->getOrInsertFunction(RewindName, FTy);
256 }
257
Bill Wendling8bedf972009-10-29 00:37:35 +0000258 bool Changed = false;
259
Bill Wendling43488712009-09-14 20:52:37 +0000260 for (SmallVectorImpl<TerminatorInst*>::iterator
261 I = UnwindInsts.begin(), E = UnwindInsts.end(); I != E; ++I) {
262 TerminatorInst *TI = *I;
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000263
264 // Replace the unwind instruction with a call to _Unwind_Resume (or the
265 // appropriate target equivalent) followed by an UnreachableInst.
266
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000267 // Create the call...
Eric Christopher82f149d2009-09-04 01:14:14 +0000268 CallInst *CI = CallInst::Create(RewindFunction,
Daniel Dunbara279bc32009-09-20 02:20:51 +0000269 CreateReadOfExceptionValue(TI->getParent()),
Bill Wendling43488712009-09-14 20:52:37 +0000270 "", TI);
Eric Christopher82f149d2009-09-04 01:14:14 +0000271 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000272 // ...followed by an UnreachableInst.
Bill Wendling8bedf972009-10-29 00:37:35 +0000273 new UnreachableInst(TI->getContext(), TI);
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000274
275 // Nuke the unwind instruction.
276 TI->eraseFromParent();
277 ++NumUnwindsLowered;
278 Changed = true;
279 }
280
281 return Changed;
282}
283
284/// MoveExceptionValueCalls - Ensure that eh.exception is only ever called from
285/// landing pads by replacing calls outside of landing pads with loads from a
286/// stack temporary. Move eh.exception calls inside landing pads to the start
287/// of the landing pad (optional, but may make things simpler for later passes).
288bool DwarfEHPrepare::MoveExceptionValueCalls() {
289 // If the eh.exception intrinsic is not declared in the module then there is
290 // nothing to do. Speed up compilation by checking for this common case.
Bill Wendling8bedf972009-10-29 00:37:35 +0000291 if (!ExceptionValueIntrinsic &&
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000292 !F->getParent()->getFunction(Intrinsic::getName(Intrinsic::eh_exception)))
293 return false;
294
295 bool Changed = false;
296
297 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
298 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;)
299 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++))
300 if (CI->getIntrinsicID() == Intrinsic::eh_exception) {
301 if (!CI->use_empty()) {
302 Value *ExceptionValue = CreateReadOfExceptionValue(BB);
303 if (CI == ExceptionValue) {
304 // The call was at the start of a landing pad - leave it alone.
305 assert(LandingPads.count(BB) &&
306 "Created eh.exception call outside landing pad!");
307 continue;
308 }
309 CI->replaceAllUsesWith(ExceptionValue);
310 }
311 CI->eraseFromParent();
312 ++NumExceptionValuesMoved;
313 Changed = true;
314 }
315 }
316
317 return Changed;
318}
319
320/// FinishStackTemporaries - If we introduced a stack variable to hold the
321/// exception value then initialize it in each landing pad.
322bool DwarfEHPrepare::FinishStackTemporaries() {
323 if (!ExceptionValueVar)
324 // Nothing to do.
325 return false;
326
327 bool Changed = false;
328
329 // Make sure that there is a store of the exception value at the start of
330 // each landing pad.
331 for (BBSet::iterator LI = LandingPads.begin(), LE = LandingPads.end();
332 LI != LE; ++LI) {
333 Instruction *ExceptionValue = CreateReadOfExceptionValue(*LI);
334 Instruction *Store = new StoreInst(ExceptionValue, ExceptionValueVar);
335 Store->insertAfter(ExceptionValue);
336 Changed = true;
337 }
338
339 return Changed;
340}
341
342/// PromoteStackTemporaries - Turn any stack temporaries we introduced into
343/// registers if possible.
344bool DwarfEHPrepare::PromoteStackTemporaries() {
345 if (ExceptionValueVar && DT && DF && isAllocaPromotable(ExceptionValueVar)) {
346 // Turn the exception temporary into registers and phi nodes if possible.
347 std::vector<AllocaInst*> Allocas(1, ExceptionValueVar);
Nick Lewyckyce2c51b2009-11-23 03:50:44 +0000348 PromoteMemToReg(Allocas, *DT, *DF);
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000349 return true;
350 }
351 return false;
352}
353
354/// CreateExceptionValueCall - Insert a call to the eh.exception intrinsic at
355/// the start of the basic block (unless there already is one, in which case
356/// the existing call is returned).
357Instruction *DwarfEHPrepare::CreateExceptionValueCall(BasicBlock *BB) {
358 Instruction *Start = BB->getFirstNonPHI();
359 // Is this a call to eh.exception?
360 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Start))
361 if (CI->getIntrinsicID() == Intrinsic::eh_exception)
362 // Reuse the existing call.
363 return Start;
364
365 // Find the eh.exception intrinsic if we didn't already.
Bill Wendling8bedf972009-10-29 00:37:35 +0000366 if (!ExceptionValueIntrinsic)
367 ExceptionValueIntrinsic = Intrinsic::getDeclaration(F->getParent(),
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000368 Intrinsic::eh_exception);
369
370 // Create the call.
Bill Wendling8bedf972009-10-29 00:37:35 +0000371 return CallInst::Create(ExceptionValueIntrinsic, "eh.value.call", Start);
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000372}
373
374/// CreateValueLoad - Insert a load of the exception value stack variable
375/// (creating it if necessary) at the start of the basic block (unless
376/// there already is a load, in which case the existing load is returned).
377Instruction *DwarfEHPrepare::CreateValueLoad(BasicBlock *BB) {
378 Instruction *Start = BB->getFirstNonPHI();
379 // Is this a load of the exception temporary?
380 if (ExceptionValueVar)
381 if (LoadInst* LI = dyn_cast<LoadInst>(Start))
382 if (LI->getPointerOperand() == ExceptionValueVar)
383 // Reuse the existing load.
384 return Start;
385
386 // Create the temporary if we didn't already.
387 if (!ExceptionValueVar) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000388 ExceptionValueVar = new AllocaInst(PointerType::getUnqual(
Bill Wendling8bedf972009-10-29 00:37:35 +0000389 Type::getInt8Ty(BB->getContext())), "eh.value", F->begin()->begin());
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000390 ++NumStackTempsIntroduced;
391 }
392
393 // Load the value.
394 return new LoadInst(ExceptionValueVar, "eh.value.load", Start);
395}
396
397bool DwarfEHPrepare::runOnFunction(Function &Fn) {
398 bool Changed = false;
399
400 // Initialize internal state.
401 DT = getAnalysisIfAvailable<DominatorTree>();
402 DF = getAnalysisIfAvailable<DominanceFrontier>();
403 ExceptionValueVar = 0;
404 F = &Fn;
405
406 // Ensure that only unwind edges end at landing pads (a landing pad is a
407 // basic block where an invoke unwind edge ends).
408 Changed |= NormalizeLandingPads();
409
410 // Turn unwind instructions into libcalls.
411 Changed |= LowerUnwinds();
412
Bill Wendling8bedf972009-10-29 00:37:35 +0000413 // TODO: Move eh.selector calls to landing pads and combine them.
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000414
415 // Move eh.exception calls to landing pads.
416 Changed |= MoveExceptionValueCalls();
417
418 // Initialize any stack temporaries we introduced.
419 Changed |= FinishStackTemporaries();
420
421 // Turn any stack temporaries into registers if possible.
Bill Wendling8bedf972009-10-29 00:37:35 +0000422 if (!CompileFast)
423 Changed |= PromoteStackTemporaries();
Duncan Sandsb0f1e172009-05-22 20:36:31 +0000424
425 LandingPads.clear();
426
427 return Changed;
428}