blob: b0950ded270aa9f6921280ee3d2dc73b598bfe55 [file] [log] [blame]
Bill Wendling12e5adb2012-03-13 20:04:21 +00001//===- SjLjEHPrepare.cpp - Eliminate Invoke & Unwind instructions ---------===//
Jim Grosbach486be662009-08-17 16:41:22 +00002//
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 transformation is designed for use by code generators which use SjLj
11// based exception handling.
12//
13//===----------------------------------------------------------------------===//
14
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/CodeGen/Passes.h"
16#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/SetVector.h"
18#include "llvm/ADT/SmallPtrSet.h"
19#include "llvm/ADT/SmallVector.h"
20#include "llvm/ADT/Statistic.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Constants.h"
22#include "llvm/IR/DataLayout.h"
23#include "llvm/IR/DerivedTypes.h"
24#include "llvm/IR/IRBuilder.h"
25#include "llvm/IR/Instructions.h"
26#include "llvm/IR/Intrinsics.h"
27#include "llvm/IR/LLVMContext.h"
28#include "llvm/IR/Module.h"
Jim Grosbach486be662009-08-17 16:41:22 +000029#include "llvm/Pass.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000030#include "llvm/Support/CommandLine.h"
31#include "llvm/Support/Debug.h"
32#include "llvm/Support/raw_ostream.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000033#include "llvm/Target/TargetLowering.h"
34#include "llvm/Transforms/Scalar.h"
35#include "llvm/Transforms/Utils/BasicBlockUtils.h"
36#include "llvm/Transforms/Utils/Local.h"
Benjamin Kramer63abc842010-11-06 11:45:59 +000037#include <set>
Jim Grosbach486be662009-08-17 16:41:22 +000038using namespace llvm;
39
Chandler Carruth1b9dde02014-04-22 02:02:50 +000040#define DEBUG_TYPE "sjljehprepare"
41
Jim Grosbach486be662009-08-17 16:41:22 +000042STATISTIC(NumInvokes, "Number of invokes replaced");
Jim Grosbach486be662009-08-17 16:41:22 +000043STATISTIC(NumSpilled, "Number of registers live across unwind edges");
44
45namespace {
Bill Wendling8faa30e2013-09-23 20:57:47 +000046class SjLjEHPrepare : public FunctionPass {
47 const TargetMachine *TM;
48 Type *FunctionContextTy;
49 Constant *RegisterFn;
50 Constant *UnregisterFn;
51 Constant *BuiltinSetjmpFn;
52 Constant *FrameAddrFn;
53 Constant *StackAddrFn;
54 Constant *StackRestoreFn;
55 Constant *LSDAAddrFn;
56 Value *PersonalityFn;
57 Constant *CallSiteFn;
58 Constant *FuncCtxFn;
59 AllocaInst *FuncCtx;
Jim Grosbach486be662009-08-17 16:41:22 +000060
Bill Wendling8faa30e2013-09-23 20:57:47 +000061public:
62 static char ID; // Pass identification, replacement for typeid
63 explicit SjLjEHPrepare(const TargetMachine *TM) : FunctionPass(ID), TM(TM) {}
Craig Topper4584cd52014-03-07 09:26:03 +000064 bool doInitialization(Module &M) override;
65 bool runOnFunction(Function &F) override;
Jim Grosbach486be662009-08-17 16:41:22 +000066
Craig Topper4584cd52014-03-07 09:26:03 +000067 void getAnalysisUsage(AnalysisUsage &AU) const override {}
68 const char *getPassName() const override {
Bill Wendling8faa30e2013-09-23 20:57:47 +000069 return "SJLJ Exception Handling preparation";
70 }
71
72private:
73 bool setupEntryBlockAndCallSites(Function &F);
74 void substituteLPadValues(LandingPadInst *LPI, Value *ExnVal, Value *SelVal);
75 Value *setupFunctionContext(Function &F, ArrayRef<LandingPadInst *> LPads);
76 void lowerIncomingArguments(Function &F);
77 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst *> Invokes);
78 void insertCallSiteStore(Instruction *I, int Number);
79};
Jim Grosbach486be662009-08-17 16:41:22 +000080} // end anonymous namespace
81
Bill Wendling12e5adb2012-03-13 20:04:21 +000082char SjLjEHPrepare::ID = 0;
Jim Grosbach486be662009-08-17 16:41:22 +000083
Bill Wendling12e5adb2012-03-13 20:04:21 +000084// Public Interface To the SjLjEHPrepare pass.
Bill Wendlingafc10362013-06-19 20:51:24 +000085FunctionPass *llvm::createSjLjEHPreparePass(const TargetMachine *TM) {
86 return new SjLjEHPrepare(TM);
Jim Grosbach486be662009-08-17 16:41:22 +000087}
Jim Grosbach1b0436b2009-08-23 18:13:48 +000088// doInitialization - Set up decalarations and types needed to process
89// exceptions.
Bill Wendling12e5adb2012-03-13 20:04:21 +000090bool SjLjEHPrepare::doInitialization(Module &M) {
Jim Grosbach486be662009-08-17 16:41:22 +000091 // Build the function context structure.
92 // builtin_setjmp uses a five word jbuf
Jay Foadb804a2b2011-07-12 14:06:48 +000093 Type *VoidPtrTy = Type::getInt8PtrTy(M.getContext());
94 Type *Int32Ty = Type::getInt32Ty(M.getContext());
Bill Wendling8faa30e2013-09-23 20:57:47 +000095 FunctionContextTy = StructType::get(VoidPtrTy, // __prev
96 Int32Ty, // call_site
97 ArrayType::get(Int32Ty, 4), // __data
98 VoidPtrTy, // __personality
99 VoidPtrTy, // __lsda
100 ArrayType::get(VoidPtrTy, 5), // __jbuf
101 NULL);
102 RegisterFn = M.getOrInsertFunction(
103 "_Unwind_SjLj_Register", Type::getVoidTy(M.getContext()),
Craig Topperc0196b12014-04-14 00:51:57 +0000104 PointerType::getUnqual(FunctionContextTy), (Type *)nullptr);
Bill Wendling8faa30e2013-09-23 20:57:47 +0000105 UnregisterFn = M.getOrInsertFunction(
106 "_Unwind_SjLj_Unregister", Type::getVoidTy(M.getContext()),
Craig Topperc0196b12014-04-14 00:51:57 +0000107 PointerType::getUnqual(FunctionContextTy), (Type *)nullptr);
Jim Grosbach486be662009-08-17 16:41:22 +0000108 FrameAddrFn = Intrinsic::getDeclaration(&M, Intrinsic::frameaddress);
Jim Grosbachfaa3abb2010-05-27 23:49:24 +0000109 StackAddrFn = Intrinsic::getDeclaration(&M, Intrinsic::stacksave);
Bob Wilson643e63c2011-11-16 07:12:00 +0000110 StackRestoreFn = Intrinsic::getDeclaration(&M, Intrinsic::stackrestore);
Jim Grosbach486be662009-08-17 16:41:22 +0000111 BuiltinSetjmpFn = Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_setjmp);
112 LSDAAddrFn = Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_lsda);
Jim Grosbach54c05302010-01-28 01:45:32 +0000113 CallSiteFn = Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_callsite);
Bill Wendling899da522011-09-28 21:56:53 +0000114 FuncCtxFn = Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_functioncontext);
Craig Topperc0196b12014-04-14 00:51:57 +0000115 PersonalityFn = nullptr;
Jim Grosbach486be662009-08-17 16:41:22 +0000116
117 return true;
118}
119
Jim Grosbach1201f292010-03-04 22:07:46 +0000120/// insertCallSiteStore - Insert a store of the call-site value to the
121/// function context
Bill Wendling12e5adb2012-03-13 20:04:21 +0000122void SjLjEHPrepare::insertCallSiteStore(Instruction *I, int Number) {
Bill Wendling7717e9f2012-01-27 02:02:24 +0000123 IRBuilder<> Builder(I);
124
125 // Get a reference to the call_site field.
126 Type *Int32Ty = Type::getInt32Ty(I->getContext());
127 Value *Zero = ConstantInt::get(Int32Ty, 0);
128 Value *One = ConstantInt::get(Int32Ty, 1);
129 Value *Idxs[2] = { Zero, One };
130 Value *CallSite = Builder.CreateGEP(FuncCtx, Idxs, "call_site");
131
132 // Insert a store of the call-site number
Bill Wendling8faa30e2013-09-23 20:57:47 +0000133 ConstantInt *CallSiteNoC =
134 ConstantInt::get(Type::getInt32Ty(I->getContext()), Number);
135 Builder.CreateStore(CallSiteNoC, CallSite, true /*volatile*/);
Jim Grosbach1201f292010-03-04 22:07:46 +0000136}
137
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000138/// MarkBlocksLiveIn - Insert BB and all of its predescessors into LiveBBs until
Jim Grosbach486be662009-08-17 16:41:22 +0000139/// we reach blocks we've already seen.
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000140static void MarkBlocksLiveIn(BasicBlock *BB,
Bill Wendling8faa30e2013-09-23 20:57:47 +0000141 SmallPtrSet<BasicBlock *, 64> &LiveBBs) {
142 if (!LiveBBs.insert(BB))
143 return; // already been here.
Jim Grosbach486be662009-08-17 16:41:22 +0000144
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000145 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
146 MarkBlocksLiveIn(*PI, LiveBBs);
Jim Grosbach486be662009-08-17 16:41:22 +0000147}
148
Bill Wendlingb108aae2011-12-14 22:45:33 +0000149/// substituteLPadValues - Substitute the values returned by the landingpad
150/// instruction with those returned by the personality function.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000151void SjLjEHPrepare::substituteLPadValues(LandingPadInst *LPI, Value *ExnVal,
152 Value *SelVal) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000153 SmallVector<Value *, 8> UseWorkList(LPI->user_begin(), LPI->user_end());
Bill Wendlingb108aae2011-12-14 22:45:33 +0000154 while (!UseWorkList.empty()) {
155 Value *Val = UseWorkList.pop_back_val();
156 ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(Val);
Bill Wendling8faa30e2013-09-23 20:57:47 +0000157 if (!EVI)
158 continue;
159 if (EVI->getNumIndices() != 1)
160 continue;
Bill Wendlingb108aae2011-12-14 22:45:33 +0000161 if (*EVI->idx_begin() == 0)
162 EVI->replaceAllUsesWith(ExnVal);
163 else if (*EVI->idx_begin() == 1)
164 EVI->replaceAllUsesWith(SelVal);
165 if (EVI->getNumUses() == 0)
166 EVI->eraseFromParent();
167 }
168
Bill Wendling8faa30e2013-09-23 20:57:47 +0000169 if (LPI->getNumUses() == 0)
170 return;
Bill Wendlingb108aae2011-12-14 22:45:33 +0000171
172 // There are still some uses of LPI. Construct an aggregate with the exception
173 // values and replace the LPI with that aggregate.
174 Type *LPadType = LPI->getType();
175 Value *LPadVal = UndefValue::get(LPadType);
Bill Wendling8faa30e2013-09-23 20:57:47 +0000176 IRBuilder<> Builder(
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000177 std::next(BasicBlock::iterator(cast<Instruction>(SelVal))));
Bill Wendlingb108aae2011-12-14 22:45:33 +0000178 LPadVal = Builder.CreateInsertValue(LPadVal, ExnVal, 0, "lpad.val");
179 LPadVal = Builder.CreateInsertValue(LPadVal, SelVal, 1, "lpad.val");
180
181 LPI->replaceAllUsesWith(LPadVal);
182}
183
Bill Wendling2e76ca92011-09-28 03:14:05 +0000184/// setupFunctionContext - Allocate the function context on the stack and fill
185/// it with all of the data that we know at this point.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000186Value *SjLjEHPrepare::setupFunctionContext(Function &F,
187 ArrayRef<LandingPadInst *> LPads) {
Bill Wendling2e76ca92011-09-28 03:14:05 +0000188 BasicBlock *EntryBB = F.begin();
189
190 // Create an alloca for the incoming jump buffer ptr and the new jump buffer
191 // that needs to be restored on all exits from the function. This is an alloca
192 // because the value needs to be added to the global context list.
Bill Wendlingafc10362013-06-19 20:51:24 +0000193 const TargetLowering *TLI = TM->getTargetLowering();
Bill Wendling2e76ca92011-09-28 03:14:05 +0000194 unsigned Align =
Bill Wendling8faa30e2013-09-23 20:57:47 +0000195 TLI->getDataLayout()->getPrefTypeAlignment(FunctionContextTy);
Craig Topperc0196b12014-04-14 00:51:57 +0000196 FuncCtx = new AllocaInst(FunctionContextTy, nullptr, Align, "fn_context",
Bill Wendling8faa30e2013-09-23 20:57:47 +0000197 EntryBB->begin());
Bill Wendling2e76ca92011-09-28 03:14:05 +0000198
199 // Fill in the function context structure.
Bill Wendling2e76ca92011-09-28 03:14:05 +0000200 for (unsigned I = 0, E = LPads.size(); I != E; ++I) {
201 LandingPadInst *LPI = LPads[I];
202 IRBuilder<> Builder(LPI->getParent()->getFirstInsertionPt());
203
Bill Wendling7717e9f2012-01-27 02:02:24 +0000204 // Reference the __data field.
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000205 Value *FCData = Builder.CreateConstGEP2_32(FuncCtx, 0, 2, "__data");
Bill Wendling7717e9f2012-01-27 02:02:24 +0000206
207 // The exception values come back in context->__data[0].
Bill Wendling8faa30e2013-09-23 20:57:47 +0000208 Value *ExceptionAddr =
209 Builder.CreateConstGEP2_32(FCData, 0, 0, "exception_gep");
Bill Wendling2e76ca92011-09-28 03:14:05 +0000210 Value *ExnVal = Builder.CreateLoad(ExceptionAddr, true, "exn_val");
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000211 ExnVal = Builder.CreateIntToPtr(ExnVal, Builder.getInt8PtrTy());
Bill Wendling7717e9f2012-01-27 02:02:24 +0000212
Bill Wendling8faa30e2013-09-23 20:57:47 +0000213 Value *SelectorAddr =
214 Builder.CreateConstGEP2_32(FCData, 0, 1, "exn_selector_gep");
Bill Wendling2e76ca92011-09-28 03:14:05 +0000215 Value *SelVal = Builder.CreateLoad(SelectorAddr, true, "exn_selector_val");
216
Bill Wendlingb108aae2011-12-14 22:45:33 +0000217 substituteLPadValues(LPI, ExnVal, SelVal);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000218 }
219
220 // Personality function
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000221 IRBuilder<> Builder(EntryBB->getTerminator());
Bill Wendling2e76ca92011-09-28 03:14:05 +0000222 if (!PersonalityFn)
223 PersonalityFn = LPads[0]->getPersonalityFn();
Bill Wendling8faa30e2013-09-23 20:57:47 +0000224 Value *PersonalityFieldPtr =
225 Builder.CreateConstGEP2_32(FuncCtx, 0, 3, "pers_fn_gep");
226 Builder.CreateStore(
227 Builder.CreateBitCast(PersonalityFn, Builder.getInt8PtrTy()),
228 PersonalityFieldPtr, /*isVolatile=*/true);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000229
230 // LSDA address
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000231 Value *LSDA = Builder.CreateCall(LSDAAddrFn, "lsda_addr");
232 Value *LSDAFieldPtr = Builder.CreateConstGEP2_32(FuncCtx, 0, 4, "lsda_gep");
233 Builder.CreateStore(LSDA, LSDAFieldPtr, /*isVolatile=*/true);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000234
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000235 return FuncCtx;
Bill Wendling899da522011-09-28 21:56:53 +0000236}
237
Bill Wendlinge9574be2011-10-08 00:56:47 +0000238/// lowerIncomingArguments - To avoid having to handle incoming arguments
239/// specially, we lower each arg to a copy instruction in the entry block. This
240/// ensures that the argument value itself cannot be live out of the entry
241/// block.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000242void SjLjEHPrepare::lowerIncomingArguments(Function &F) {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000243 BasicBlock::iterator AfterAllocaInsPt = F.begin()->begin();
244 while (isa<AllocaInst>(AfterAllocaInsPt) &&
245 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsPt)->getArraySize()))
246 ++AfterAllocaInsPt;
247
Bill Wendling8faa30e2013-09-23 20:57:47 +0000248 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); AI != AE;
249 ++AI) {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000250 Type *Ty = AI->getType();
251
Bill Wendlingc80b6c92014-07-14 18:21:11 +0000252 // Use 'select i8 true, %arg, undef' to simulate a 'no-op' instruction.
253 Value *TrueValue = ConstantInt::getTrue(F.getContext());
254 Value *UndefValue = UndefValue::get(Ty);
255 Instruction *SI = SelectInst::Create(TrueValue, AI, UndefValue,
256 AI->getName() + ".tmp",
257 AfterAllocaInsPt);
258 AI->replaceAllUsesWith(SI);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000259
Bill Wendlingc80b6c92014-07-14 18:21:11 +0000260 // Reset the operand, because it was clobbered by the RAUW above.
261 SI->setOperand(1, AI);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000262 }
263}
264
265/// lowerAcrossUnwindEdges - Find all variables which are alive across an unwind
266/// edge and spill them.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000267void SjLjEHPrepare::lowerAcrossUnwindEdges(Function &F,
Bill Wendling8faa30e2013-09-23 20:57:47 +0000268 ArrayRef<InvokeInst *> Invokes) {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000269 // Finally, scan the code looking for instructions with bad live ranges.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000270 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB) {
271 for (BasicBlock::iterator II = BB->begin(), IIE = BB->end(); II != IIE;
272 ++II) {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000273 // Ignore obvious cases we don't have to handle. In particular, most
274 // instructions either have no uses or only have a single use inside the
275 // current block. Ignore them quickly.
276 Instruction *Inst = II;
Bill Wendling8faa30e2013-09-23 20:57:47 +0000277 if (Inst->use_empty())
278 continue;
Bill Wendlinge9574be2011-10-08 00:56:47 +0000279 if (Inst->hasOneUse() &&
Chandler Carruthcdf47882014-03-09 03:16:01 +0000280 cast<Instruction>(Inst->user_back())->getParent() == BB &&
281 !isa<PHINode>(Inst->user_back()))
Bill Wendling8faa30e2013-09-23 20:57:47 +0000282 continue;
Bill Wendlinge9574be2011-10-08 00:56:47 +0000283
284 // If this is an alloca in the entry block, it's not a real register
285 // value.
286 if (AllocaInst *AI = dyn_cast<AllocaInst>(Inst))
287 if (isa<ConstantInt>(AI->getArraySize()) && BB == F.begin())
288 continue;
289
290 // Avoid iterator invalidation by copying users to a temporary vector.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000291 SmallVector<Instruction *, 16> Users;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000292 for (User *U : Inst->users()) {
293 Instruction *UI = cast<Instruction>(U);
294 if (UI->getParent() != BB || isa<PHINode>(UI))
295 Users.push_back(UI);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000296 }
297
298 // Find all of the blocks that this value is live in.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000299 SmallPtrSet<BasicBlock *, 64> LiveBBs;
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000300 LiveBBs.insert(Inst->getParent());
Bill Wendlinge9574be2011-10-08 00:56:47 +0000301 while (!Users.empty()) {
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000302 Instruction *U = Users.back();
303 Users.pop_back();
Bill Wendlinge9574be2011-10-08 00:56:47 +0000304
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000305 if (!isa<PHINode>(U)) {
306 MarkBlocksLiveIn(U->getParent(), LiveBBs);
307 } else {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000308 // Uses for a PHI node occur in their predecessor block.
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000309 PHINode *PN = cast<PHINode>(U);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000310 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
311 if (PN->getIncomingValue(i) == Inst)
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000312 MarkBlocksLiveIn(PN->getIncomingBlock(i), LiveBBs);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000313 }
314 }
315
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000316 // Now that we know all of the blocks that this thing is live in, see if
317 // it includes any of the unwind locations.
318 bool NeedsSpill = false;
319 for (unsigned i = 0, e = Invokes.size(); i != e; ++i) {
320 BasicBlock *UnwindBlock = Invokes[i]->getUnwindDest();
321 if (UnwindBlock != BB && LiveBBs.count(UnwindBlock)) {
322 DEBUG(dbgs() << "SJLJ Spill: " << *Inst << " around "
Bill Wendling8faa30e2013-09-23 20:57:47 +0000323 << UnwindBlock->getName() << "\n");
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000324 NeedsSpill = true;
325 break;
Bill Wendlingd7c0aae2012-03-14 07:28:01 +0000326 }
Bill Wendling5ad91402012-03-12 20:19:41 +0000327 }
Bill Wendlingb1c43082011-10-21 22:08:56 +0000328
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000329 // If we decided we need a spill, do it.
330 // FIXME: Spilling this way is overkill, as it forces all uses of
331 // the value to be reloaded from the stack slot, even those that aren't
332 // in the unwind blocks. We should be more selective.
333 if (NeedsSpill) {
334 DemoteRegToStack(*Inst, true);
335 ++NumSpilled;
336 }
Bill Wendlingd7c0aae2012-03-14 07:28:01 +0000337 }
338 }
339
Bill Wendlingb1c43082011-10-21 22:08:56 +0000340 // Go through the landing pads and remove any PHIs there.
341 for (unsigned i = 0, e = Invokes.size(); i != e; ++i) {
342 BasicBlock *UnwindBlock = Invokes[i]->getUnwindDest();
343 LandingPadInst *LPI = UnwindBlock->getLandingPadInst();
344
345 // Place PHIs into a set to avoid invalidating the iterator.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000346 SmallPtrSet<PHINode *, 8> PHIsToDemote;
347 for (BasicBlock::iterator PN = UnwindBlock->begin(); isa<PHINode>(PN); ++PN)
Bill Wendlingb1c43082011-10-21 22:08:56 +0000348 PHIsToDemote.insert(cast<PHINode>(PN));
Bill Wendling8faa30e2013-09-23 20:57:47 +0000349 if (PHIsToDemote.empty())
350 continue;
Bill Wendlingb1c43082011-10-21 22:08:56 +0000351
352 // Demote the PHIs to the stack.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000353 for (SmallPtrSet<PHINode *, 8>::iterator I = PHIsToDemote.begin(),
354 E = PHIsToDemote.end();
355 I != E; ++I)
Bill Wendlingb1c43082011-10-21 22:08:56 +0000356 DemotePHIToStack(*I);
357
358 // Move the landingpad instruction back to the top of the landing pad block.
359 LPI->moveBefore(UnwindBlock->begin());
360 }
Bill Wendlinge9574be2011-10-08 00:56:47 +0000361}
362
Bill Wendling899da522011-09-28 21:56:53 +0000363/// setupEntryBlockAndCallSites - Setup the entry block by creating and filling
364/// the function context and marking the call sites with the appropriate
365/// values. These values are used by the DWARF EH emitter.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000366bool SjLjEHPrepare::setupEntryBlockAndCallSites(Function &F) {
Bill Wendling8faa30e2013-09-23 20:57:47 +0000367 SmallVector<ReturnInst *, 16> Returns;
368 SmallVector<InvokeInst *, 16> Invokes;
369 SmallSetVector<LandingPadInst *, 16> LPads;
Bill Wendling899da522011-09-28 21:56:53 +0000370
371 // Look through the terminators of the basic blocks to find invokes.
372 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
373 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
Bill Wendling2d915e22013-03-08 02:21:08 +0000374 if (Function *Callee = II->getCalledFunction())
375 if (Callee->isIntrinsic() &&
376 Callee->getIntrinsicID() == Intrinsic::donothing) {
377 // Remove the NOP invoke.
378 BranchInst::Create(II->getNormalDest(), II);
379 II->eraseFromParent();
380 continue;
381 }
382
Bill Wendling899da522011-09-28 21:56:53 +0000383 Invokes.push_back(II);
Bob Wilsoncca9aa52011-11-16 07:57:21 +0000384 LPads.insert(II->getUnwindDest()->getLandingPadInst());
Bill Wendling899da522011-09-28 21:56:53 +0000385 } else if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
386 Returns.push_back(RI);
387 }
388
Bill Wendling8faa30e2013-09-23 20:57:47 +0000389 if (Invokes.empty())
390 return false;
Bill Wendling899da522011-09-28 21:56:53 +0000391
Bill Wendling38f86c52011-10-24 17:12:36 +0000392 NumInvokes += Invokes.size();
393
Bill Wendlinge9574be2011-10-08 00:56:47 +0000394 lowerIncomingArguments(F);
395 lowerAcrossUnwindEdges(F, Invokes);
396
Bob Wilsoncca9aa52011-11-16 07:57:21 +0000397 Value *FuncCtx =
Bill Wendling8faa30e2013-09-23 20:57:47 +0000398 setupFunctionContext(F, makeArrayRef(LPads.begin(), LPads.end()));
Bill Wendling899da522011-09-28 21:56:53 +0000399 BasicBlock *EntryBB = F.begin();
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000400 IRBuilder<> Builder(EntryBB->getTerminator());
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000401
402 // Get a reference to the jump buffer.
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000403 Value *JBufPtr = Builder.CreateConstGEP2_32(FuncCtx, 0, 5, "jbuf_gep");
Bill Wendling2e76ca92011-09-28 03:14:05 +0000404
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000405 // Save the frame pointer.
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000406 Value *FramePtr = Builder.CreateConstGEP2_32(JBufPtr, 0, 0, "jbuf_fp_gep");
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000407
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000408 Value *Val = Builder.CreateCall(FrameAddrFn, Builder.getInt32(0), "fp");
409 Builder.CreateStore(Val, FramePtr, /*isVolatile=*/true);
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000410
411 // Save the stack pointer.
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000412 Value *StackPtr = Builder.CreateConstGEP2_32(JBufPtr, 0, 2, "jbuf_sp_gep");
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000413
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000414 Val = Builder.CreateCall(StackAddrFn, "sp");
415 Builder.CreateStore(Val, StackPtr, /*isVolatile=*/true);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000416
417 // Call the setjmp instrinsic. It fills in the rest of the jmpbuf.
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000418 Value *SetjmpArg = Builder.CreateBitCast(JBufPtr, Builder.getInt8PtrTy());
419 Builder.CreateCall(BuiltinSetjmpFn, SetjmpArg);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000420
Bill Wendling899da522011-09-28 21:56:53 +0000421 // Store a pointer to the function context so that the back-end will know
422 // where to look for it.
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000423 Value *FuncCtxArg = Builder.CreateBitCast(FuncCtx, Builder.getInt8PtrTy());
424 Builder.CreateCall(FuncCtxFn, FuncCtxArg);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000425
426 // At this point, we are all set up, update the invoke instructions to mark
Bill Wendlingdb163352011-10-05 22:04:08 +0000427 // their call_site values.
Bill Wendling2e76ca92011-09-28 03:14:05 +0000428 for (unsigned I = 0, E = Invokes.size(); I != E; ++I) {
Bill Wendling7717e9f2012-01-27 02:02:24 +0000429 insertCallSiteStore(Invokes[I], I + 1);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000430
431 ConstantInt *CallSiteNum =
Bill Wendling8faa30e2013-09-23 20:57:47 +0000432 ConstantInt::get(Type::getInt32Ty(F.getContext()), I + 1);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000433
434 // Record the call site value for the back end so it stays associated with
435 // the invoke.
436 CallInst::Create(CallSiteFn, CallSiteNum, "", Invokes[I]);
437 }
438
439 // Mark call instructions that aren't nounwind as no-action (call_site ==
440 // -1). Skip the entry block, as prior to then, no function context has been
441 // created for this function and any unexpected exceptions thrown will go
442 // directly to the caller's context, which is what we want anyway, so no need
443 // to do anything here.
Bill Wendlingac3fb4c2011-10-04 00:16:40 +0000444 for (Function::iterator BB = F.begin(), E = F.end(); ++BB != E;)
Bill Wendling2e76ca92011-09-28 03:14:05 +0000445 for (BasicBlock::iterator I = BB->begin(), end = BB->end(); I != end; ++I)
446 if (CallInst *CI = dyn_cast<CallInst>(I)) {
447 if (!CI->doesNotThrow())
Bill Wendling7717e9f2012-01-27 02:02:24 +0000448 insertCallSiteStore(CI, -1);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000449 } else if (ResumeInst *RI = dyn_cast<ResumeInst>(I)) {
Bill Wendling7717e9f2012-01-27 02:02:24 +0000450 insertCallSiteStore(RI, -1);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000451 }
Bill Wendling2e76ca92011-09-28 03:14:05 +0000452
Bill Wendling899da522011-09-28 21:56:53 +0000453 // Register the function context and make sure it's known to not throw
Bill Wendling8faa30e2013-09-23 20:57:47 +0000454 CallInst *Register =
455 CallInst::Create(RegisterFn, FuncCtx, "", EntryBB->getTerminator());
Bill Wendling899da522011-09-28 21:56:53 +0000456 Register->setDoesNotThrow();
457
Bob Wilson643e63c2011-11-16 07:12:00 +0000458 // Following any allocas not in the entry block, update the saved SP in the
459 // jmpbuf to the new value.
460 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
461 if (BB == F.begin())
462 continue;
463 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
464 if (CallInst *CI = dyn_cast<CallInst>(I)) {
465 if (CI->getCalledFunction() != StackRestoreFn)
466 continue;
467 } else if (!isa<AllocaInst>(I)) {
468 continue;
469 }
470 Instruction *StackAddr = CallInst::Create(StackAddrFn, "sp");
471 StackAddr->insertAfter(I);
472 Instruction *StoreStackAddr = new StoreInst(StackAddr, StackPtr, true);
473 StoreStackAddr->insertAfter(StackAddr);
474 }
475 }
476
Bill Wendling899da522011-09-28 21:56:53 +0000477 // Finally, for any returns from this function, if this function contains an
478 // invoke, add a call to unregister the function context.
479 for (unsigned I = 0, E = Returns.size(); I != E; ++I)
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000480 CallInst::Create(UnregisterFn, FuncCtx, "", Returns[I]);
Bill Wendling899da522011-09-28 21:56:53 +0000481
Bill Wendling2e76ca92011-09-28 03:14:05 +0000482 return true;
483}
484
Bill Wendling12e5adb2012-03-13 20:04:21 +0000485bool SjLjEHPrepare::runOnFunction(Function &F) {
Bill Wendling38f86c52011-10-24 17:12:36 +0000486 bool Res = setupEntryBlockAndCallSites(F);
Jim Grosbach486be662009-08-17 16:41:22 +0000487 return Res;
488}