blob: ce01c5f23e5703da238ef957e0d05bbf7a9f5371 [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
David Majnemer693f1312016-02-19 04:46:48 +000015#include "llvm/CodeGen/Passes.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/SetVector.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/Statistic.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/Constants.h"
21#include "llvm/IR/DataLayout.h"
22#include "llvm/IR/DerivedTypes.h"
23#include "llvm/IR/IRBuilder.h"
24#include "llvm/IR/Instructions.h"
25#include "llvm/IR/Intrinsics.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Module.h"
Jim Grosbach486be662009-08-17 16:41:22 +000027#include "llvm/Pass.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000028#include "llvm/Support/Debug.h"
29#include "llvm/Support/raw_ostream.h"
Chandler Carruthaafe0912012-06-29 12:38:19 +000030#include "llvm/Transforms/Utils/Local.h"
Jim Grosbach486be662009-08-17 16:41:22 +000031using namespace llvm;
32
Chandler Carruth1b9dde02014-04-22 02:02:50 +000033#define DEBUG_TYPE "sjljehprepare"
34
Jim Grosbach486be662009-08-17 16:41:22 +000035STATISTIC(NumInvokes, "Number of invokes replaced");
Jim Grosbach486be662009-08-17 16:41:22 +000036STATISTIC(NumSpilled, "Number of registers live across unwind edges");
37
38namespace {
Bill Wendling8faa30e2013-09-23 20:57:47 +000039class SjLjEHPrepare : public FunctionPass {
David Blaikie4e5d47f42015-04-04 21:07:10 +000040 Type *doubleUnderDataTy;
41 Type *doubleUnderJBufTy;
Bill Wendling8faa30e2013-09-23 20:57:47 +000042 Type *FunctionContextTy;
43 Constant *RegisterFn;
44 Constant *UnregisterFn;
Matthias Braun3cd00c12015-07-16 22:34:16 +000045 Constant *BuiltinSetupDispatchFn;
Bill Wendling8faa30e2013-09-23 20:57:47 +000046 Constant *FrameAddrFn;
47 Constant *StackAddrFn;
48 Constant *StackRestoreFn;
49 Constant *LSDAAddrFn;
Bill Wendling8faa30e2013-09-23 20:57:47 +000050 Constant *CallSiteFn;
51 Constant *FuncCtxFn;
52 AllocaInst *FuncCtx;
Jim Grosbach486be662009-08-17 16:41:22 +000053
Bill Wendling8faa30e2013-09-23 20:57:47 +000054public:
55 static char ID; // Pass identification, replacement for typeid
Mehdi Aminif50daed2015-07-08 01:00:31 +000056 explicit SjLjEHPrepare() : FunctionPass(ID) {}
Craig Topper4584cd52014-03-07 09:26:03 +000057 bool doInitialization(Module &M) override;
58 bool runOnFunction(Function &F) override;
Jim Grosbach486be662009-08-17 16:41:22 +000059
Craig Topper4584cd52014-03-07 09:26:03 +000060 void getAnalysisUsage(AnalysisUsage &AU) const override {}
61 const char *getPassName() const override {
Bill Wendling8faa30e2013-09-23 20:57:47 +000062 return "SJLJ Exception Handling preparation";
63 }
64
65private:
66 bool setupEntryBlockAndCallSites(Function &F);
67 void substituteLPadValues(LandingPadInst *LPI, Value *ExnVal, Value *SelVal);
68 Value *setupFunctionContext(Function &F, ArrayRef<LandingPadInst *> LPads);
69 void lowerIncomingArguments(Function &F);
70 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst *> Invokes);
71 void insertCallSiteStore(Instruction *I, int Number);
72};
Jim Grosbach486be662009-08-17 16:41:22 +000073} // end anonymous namespace
74
Bill Wendling12e5adb2012-03-13 20:04:21 +000075char SjLjEHPrepare::ID = 0;
Reid Klecknerc16b1072015-07-09 21:48:40 +000076INITIALIZE_PASS(SjLjEHPrepare, "sjljehprepare", "Prepare SjLj exceptions",
77 false, false)
Jim Grosbach486be662009-08-17 16:41:22 +000078
Bill Wendling12e5adb2012-03-13 20:04:21 +000079// Public Interface To the SjLjEHPrepare pass.
Mehdi Aminif50daed2015-07-08 01:00:31 +000080FunctionPass *llvm::createSjLjEHPreparePass() { return new SjLjEHPrepare(); }
Jim Grosbach1b0436b2009-08-23 18:13:48 +000081// doInitialization - Set up decalarations and types needed to process
82// exceptions.
Bill Wendling12e5adb2012-03-13 20:04:21 +000083bool SjLjEHPrepare::doInitialization(Module &M) {
Jim Grosbach486be662009-08-17 16:41:22 +000084 // Build the function context structure.
85 // builtin_setjmp uses a five word jbuf
Jay Foadb804a2b2011-07-12 14:06:48 +000086 Type *VoidPtrTy = Type::getInt8PtrTy(M.getContext());
87 Type *Int32Ty = Type::getInt32Ty(M.getContext());
David Blaikie4e5d47f42015-04-04 21:07:10 +000088 doubleUnderDataTy = ArrayType::get(Int32Ty, 4);
89 doubleUnderJBufTy = ArrayType::get(VoidPtrTy, 5);
90 FunctionContextTy = StructType::get(VoidPtrTy, // __prev
91 Int32Ty, // call_site
92 doubleUnderDataTy, // __data
93 VoidPtrTy, // __personality
94 VoidPtrTy, // __lsda
95 doubleUnderJBufTy, // __jbuf
Reid Kleckner971c3ea2014-11-13 22:55:19 +000096 nullptr);
Jim Grosbach486be662009-08-17 16:41:22 +000097
98 return true;
99}
100
Jim Grosbach1201f292010-03-04 22:07:46 +0000101/// insertCallSiteStore - Insert a store of the call-site value to the
102/// function context
Bill Wendling12e5adb2012-03-13 20:04:21 +0000103void SjLjEHPrepare::insertCallSiteStore(Instruction *I, int Number) {
Bill Wendling7717e9f2012-01-27 02:02:24 +0000104 IRBuilder<> Builder(I);
105
106 // Get a reference to the call_site field.
107 Type *Int32Ty = Type::getInt32Ty(I->getContext());
108 Value *Zero = ConstantInt::get(Int32Ty, 0);
109 Value *One = ConstantInt::get(Int32Ty, 1);
110 Value *Idxs[2] = { Zero, One };
David Blaikie68d535c2015-03-24 22:38:16 +0000111 Value *CallSite =
112 Builder.CreateGEP(FunctionContextTy, FuncCtx, Idxs, "call_site");
Bill Wendling7717e9f2012-01-27 02:02:24 +0000113
114 // Insert a store of the call-site number
Bill Wendling8faa30e2013-09-23 20:57:47 +0000115 ConstantInt *CallSiteNoC =
116 ConstantInt::get(Type::getInt32Ty(I->getContext()), Number);
117 Builder.CreateStore(CallSiteNoC, CallSite, true /*volatile*/);
Jim Grosbach1201f292010-03-04 22:07:46 +0000118}
119
David Majnemerb61fd7f2016-02-19 04:46:06 +0000120/// MarkBlocksLiveIn - Insert BB and all of its predecessors into LiveBBs until
Jim Grosbach486be662009-08-17 16:41:22 +0000121/// we reach blocks we've already seen.
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000122static void MarkBlocksLiveIn(BasicBlock *BB,
Craig Topper71b7b682014-08-21 05:55:13 +0000123 SmallPtrSetImpl<BasicBlock *> &LiveBBs) {
David Blaikie70573dc2014-11-19 07:49:26 +0000124 if (!LiveBBs.insert(BB).second)
Bill Wendling8faa30e2013-09-23 20:57:47 +0000125 return; // already been here.
Jim Grosbach486be662009-08-17 16:41:22 +0000126
David Majnemerb61fd7f2016-02-19 04:46:06 +0000127 for (BasicBlock *PredBB : predecessors(BB))
128 MarkBlocksLiveIn(PredBB, LiveBBs);
Jim Grosbach486be662009-08-17 16:41:22 +0000129}
130
Bill Wendlingb108aae2011-12-14 22:45:33 +0000131/// substituteLPadValues - Substitute the values returned by the landingpad
132/// instruction with those returned by the personality function.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000133void SjLjEHPrepare::substituteLPadValues(LandingPadInst *LPI, Value *ExnVal,
134 Value *SelVal) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000135 SmallVector<Value *, 8> UseWorkList(LPI->user_begin(), LPI->user_end());
Bill Wendlingb108aae2011-12-14 22:45:33 +0000136 while (!UseWorkList.empty()) {
137 Value *Val = UseWorkList.pop_back_val();
David Majnemerb61fd7f2016-02-19 04:46:06 +0000138 auto *EVI = dyn_cast<ExtractValueInst>(Val);
Bill Wendling8faa30e2013-09-23 20:57:47 +0000139 if (!EVI)
140 continue;
141 if (EVI->getNumIndices() != 1)
142 continue;
Bill Wendlingb108aae2011-12-14 22:45:33 +0000143 if (*EVI->idx_begin() == 0)
144 EVI->replaceAllUsesWith(ExnVal);
145 else if (*EVI->idx_begin() == 1)
146 EVI->replaceAllUsesWith(SelVal);
David Majnemerb61fd7f2016-02-19 04:46:06 +0000147 if (EVI->use_empty())
Bill Wendlingb108aae2011-12-14 22:45:33 +0000148 EVI->eraseFromParent();
149 }
150
David Majnemerb61fd7f2016-02-19 04:46:06 +0000151 if (LPI->use_empty())
Bill Wendling8faa30e2013-09-23 20:57:47 +0000152 return;
Bill Wendlingb108aae2011-12-14 22:45:33 +0000153
154 // There are still some uses of LPI. Construct an aggregate with the exception
155 // values and replace the LPI with that aggregate.
156 Type *LPadType = LPI->getType();
157 Value *LPadVal = UndefValue::get(LPadType);
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000158 auto *SelI = cast<Instruction>(SelVal);
159 IRBuilder<> Builder(SelI->getParent(), std::next(SelI->getIterator()));
Bill Wendlingb108aae2011-12-14 22:45:33 +0000160 LPadVal = Builder.CreateInsertValue(LPadVal, ExnVal, 0, "lpad.val");
161 LPadVal = Builder.CreateInsertValue(LPadVal, SelVal, 1, "lpad.val");
162
163 LPI->replaceAllUsesWith(LPadVal);
164}
165
Bill Wendling2e76ca92011-09-28 03:14:05 +0000166/// setupFunctionContext - Allocate the function context on the stack and fill
167/// it with all of the data that we know at this point.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000168Value *SjLjEHPrepare::setupFunctionContext(Function &F,
169 ArrayRef<LandingPadInst *> LPads) {
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000170 BasicBlock *EntryBB = &F.front();
Bill Wendling2e76ca92011-09-28 03:14:05 +0000171
172 // Create an alloca for the incoming jump buffer ptr and the new jump buffer
173 // that needs to be restored on all exits from the function. This is an alloca
174 // because the value needs to be added to the global context list.
Mehdi Aminif50daed2015-07-08 01:00:31 +0000175 auto &DL = F.getParent()->getDataLayout();
176 unsigned Align = DL.getPrefTypeAlignment(FunctionContextTy);
Craig Topperc0196b12014-04-14 00:51:57 +0000177 FuncCtx = new AllocaInst(FunctionContextTy, nullptr, Align, "fn_context",
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000178 &EntryBB->front());
Bill Wendling2e76ca92011-09-28 03:14:05 +0000179
180 // Fill in the function context structure.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000181 for (LandingPadInst *LPI : LPads) {
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000182 IRBuilder<> Builder(LPI->getParent(),
183 LPI->getParent()->getFirstInsertionPt());
Bill Wendling2e76ca92011-09-28 03:14:05 +0000184
Bill Wendling7717e9f2012-01-27 02:02:24 +0000185 // Reference the __data field.
David Blaikie4e5d47f42015-04-04 21:07:10 +0000186 Value *FCData =
187 Builder.CreateConstGEP2_32(FunctionContextTy, FuncCtx, 0, 2, "__data");
Bill Wendling7717e9f2012-01-27 02:02:24 +0000188
189 // The exception values come back in context->__data[0].
David Blaikie4e5d47f42015-04-04 21:07:10 +0000190 Value *ExceptionAddr = Builder.CreateConstGEP2_32(doubleUnderDataTy, FCData,
191 0, 0, "exception_gep");
Bill Wendling2e76ca92011-09-28 03:14:05 +0000192 Value *ExnVal = Builder.CreateLoad(ExceptionAddr, true, "exn_val");
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000193 ExnVal = Builder.CreateIntToPtr(ExnVal, Builder.getInt8PtrTy());
Bill Wendling7717e9f2012-01-27 02:02:24 +0000194
David Blaikie4e5d47f42015-04-04 21:07:10 +0000195 Value *SelectorAddr = Builder.CreateConstGEP2_32(doubleUnderDataTy, FCData,
196 0, 1, "exn_selector_gep");
Bill Wendling2e76ca92011-09-28 03:14:05 +0000197 Value *SelVal = Builder.CreateLoad(SelectorAddr, true, "exn_selector_val");
198
Bill Wendlingb108aae2011-12-14 22:45:33 +0000199 substituteLPadValues(LPI, ExnVal, SelVal);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000200 }
201
202 // Personality function
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000203 IRBuilder<> Builder(EntryBB->getTerminator());
David Majnemerbd1b8c02016-02-19 03:13:40 +0000204 Value *PersonalityFn = F.getPersonalityFn();
David Blaikie4e5d47f42015-04-04 21:07:10 +0000205 Value *PersonalityFieldPtr = Builder.CreateConstGEP2_32(
206 FunctionContextTy, FuncCtx, 0, 3, "pers_fn_gep");
Bill Wendling8faa30e2013-09-23 20:57:47 +0000207 Builder.CreateStore(
208 Builder.CreateBitCast(PersonalityFn, Builder.getInt8PtrTy()),
209 PersonalityFieldPtr, /*isVolatile=*/true);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000210
211 // LSDA address
David Blaikieff6409d2015-05-18 22:13:54 +0000212 Value *LSDA = Builder.CreateCall(LSDAAddrFn, {}, "lsda_addr");
David Blaikie4e5d47f42015-04-04 21:07:10 +0000213 Value *LSDAFieldPtr =
214 Builder.CreateConstGEP2_32(FunctionContextTy, FuncCtx, 0, 4, "lsda_gep");
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000215 Builder.CreateStore(LSDA, LSDAFieldPtr, /*isVolatile=*/true);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000216
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000217 return FuncCtx;
Bill Wendling899da522011-09-28 21:56:53 +0000218}
219
Bill Wendlinge9574be2011-10-08 00:56:47 +0000220/// lowerIncomingArguments - To avoid having to handle incoming arguments
221/// specially, we lower each arg to a copy instruction in the entry block. This
222/// ensures that the argument value itself cannot be live out of the entry
223/// block.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000224void SjLjEHPrepare::lowerIncomingArguments(Function &F) {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000225 BasicBlock::iterator AfterAllocaInsPt = F.begin()->begin();
226 while (isa<AllocaInst>(AfterAllocaInsPt) &&
David Majnemerb61fd7f2016-02-19 04:46:06 +0000227 cast<AllocaInst>(AfterAllocaInsPt)->isStaticAlloca())
Bill Wendlinge9574be2011-10-08 00:56:47 +0000228 ++AfterAllocaInsPt;
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000229 assert(AfterAllocaInsPt != F.front().end());
Bill Wendlinge9574be2011-10-08 00:56:47 +0000230
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000231 for (auto &AI : F.args()) {
232 Type *Ty = AI.getType();
Bill Wendlinge9574be2011-10-08 00:56:47 +0000233
Bill Wendlingc80b6c92014-07-14 18:21:11 +0000234 // Use 'select i8 true, %arg, undef' to simulate a 'no-op' instruction.
235 Value *TrueValue = ConstantInt::getTrue(F.getContext());
236 Value *UndefValue = UndefValue::get(Ty);
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000237 Instruction *SI = SelectInst::Create(
238 TrueValue, &AI, UndefValue, AI.getName() + ".tmp", &*AfterAllocaInsPt);
239 AI.replaceAllUsesWith(SI);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000240
Bill Wendlingc80b6c92014-07-14 18:21:11 +0000241 // Reset the operand, because it was clobbered by the RAUW above.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000242 SI->setOperand(1, &AI);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000243 }
244}
245
246/// lowerAcrossUnwindEdges - Find all variables which are alive across an unwind
247/// edge and spill them.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000248void SjLjEHPrepare::lowerAcrossUnwindEdges(Function &F,
Bill Wendling8faa30e2013-09-23 20:57:47 +0000249 ArrayRef<InvokeInst *> Invokes) {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000250 // Finally, scan the code looking for instructions with bad live ranges.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000251 for (BasicBlock &BB : F) {
252 for (Instruction &Inst : BB) {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000253 // Ignore obvious cases we don't have to handle. In particular, most
254 // instructions either have no uses or only have a single use inside the
255 // current block. Ignore them quickly.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000256 if (Inst.use_empty())
Bill Wendling8faa30e2013-09-23 20:57:47 +0000257 continue;
David Majnemerb61fd7f2016-02-19 04:46:06 +0000258 if (Inst.hasOneUse() &&
259 cast<Instruction>(Inst.user_back())->getParent() == &BB &&
260 !isa<PHINode>(Inst.user_back()))
Bill Wendling8faa30e2013-09-23 20:57:47 +0000261 continue;
Bill Wendlinge9574be2011-10-08 00:56:47 +0000262
263 // If this is an alloca in the entry block, it's not a real register
264 // value.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000265 if (auto *AI = dyn_cast<AllocaInst>(&Inst))
266 if (AI->isStaticAlloca())
Bill Wendlinge9574be2011-10-08 00:56:47 +0000267 continue;
268
269 // Avoid iterator invalidation by copying users to a temporary vector.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000270 SmallVector<Instruction *, 16> Users;
David Majnemerb61fd7f2016-02-19 04:46:06 +0000271 for (User *U : Inst.users()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000272 Instruction *UI = cast<Instruction>(U);
David Majnemerb61fd7f2016-02-19 04:46:06 +0000273 if (UI->getParent() != &BB || isa<PHINode>(UI))
Chandler Carruthcdf47882014-03-09 03:16:01 +0000274 Users.push_back(UI);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000275 }
276
277 // Find all of the blocks that this value is live in.
Matthias Braunb30f2f512016-01-30 01:24:31 +0000278 SmallPtrSet<BasicBlock *, 32> LiveBBs;
David Majnemerb61fd7f2016-02-19 04:46:06 +0000279 LiveBBs.insert(&BB);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000280 while (!Users.empty()) {
David Majnemerb61fd7f2016-02-19 04:46:06 +0000281 Instruction *U = Users.pop_back_val();
Bill Wendlinge9574be2011-10-08 00:56:47 +0000282
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000283 if (!isa<PHINode>(U)) {
284 MarkBlocksLiveIn(U->getParent(), LiveBBs);
285 } else {
Bill Wendlinge9574be2011-10-08 00:56:47 +0000286 // Uses for a PHI node occur in their predecessor block.
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000287 PHINode *PN = cast<PHINode>(U);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000288 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
David Majnemerb61fd7f2016-02-19 04:46:06 +0000289 if (PN->getIncomingValue(i) == &Inst)
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000290 MarkBlocksLiveIn(PN->getIncomingBlock(i), LiveBBs);
Bill Wendlinge9574be2011-10-08 00:56:47 +0000291 }
292 }
293
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000294 // Now that we know all of the blocks that this thing is live in, see if
295 // it includes any of the unwind locations.
296 bool NeedsSpill = false;
David Majnemerb61fd7f2016-02-19 04:46:06 +0000297 for (InvokeInst *Invoke : Invokes) {
298 BasicBlock *UnwindBlock = Invoke->getUnwindDest();
299 if (UnwindBlock != &BB && LiveBBs.count(UnwindBlock)) {
300 DEBUG(dbgs() << "SJLJ Spill: " << Inst << " around "
Bill Wendling8faa30e2013-09-23 20:57:47 +0000301 << UnwindBlock->getName() << "\n");
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000302 NeedsSpill = true;
303 break;
Bill Wendlingd7c0aae2012-03-14 07:28:01 +0000304 }
Bill Wendling5ad91402012-03-12 20:19:41 +0000305 }
Bill Wendlingb1c43082011-10-21 22:08:56 +0000306
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000307 // If we decided we need a spill, do it.
308 // FIXME: Spilling this way is overkill, as it forces all uses of
309 // the value to be reloaded from the stack slot, even those that aren't
310 // in the unwind blocks. We should be more selective.
311 if (NeedsSpill) {
David Majnemerb61fd7f2016-02-19 04:46:06 +0000312 DemoteRegToStack(Inst, true);
Chad Rosier1a9c17e2012-03-16 01:04:00 +0000313 ++NumSpilled;
314 }
Bill Wendlingd7c0aae2012-03-14 07:28:01 +0000315 }
316 }
317
Bill Wendlingb1c43082011-10-21 22:08:56 +0000318 // Go through the landing pads and remove any PHIs there.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000319 for (InvokeInst *Invoke : Invokes) {
320 BasicBlock *UnwindBlock = Invoke->getUnwindDest();
Bill Wendlingb1c43082011-10-21 22:08:56 +0000321 LandingPadInst *LPI = UnwindBlock->getLandingPadInst();
322
323 // Place PHIs into a set to avoid invalidating the iterator.
Bill Wendling8faa30e2013-09-23 20:57:47 +0000324 SmallPtrSet<PHINode *, 8> PHIsToDemote;
325 for (BasicBlock::iterator PN = UnwindBlock->begin(); isa<PHINode>(PN); ++PN)
Bill Wendlingb1c43082011-10-21 22:08:56 +0000326 PHIsToDemote.insert(cast<PHINode>(PN));
Bill Wendling8faa30e2013-09-23 20:57:47 +0000327 if (PHIsToDemote.empty())
328 continue;
Bill Wendlingb1c43082011-10-21 22:08:56 +0000329
330 // Demote the PHIs to the stack.
Craig Topper46276792014-08-24 23:23:06 +0000331 for (PHINode *PN : PHIsToDemote)
332 DemotePHIToStack(PN);
Bill Wendlingb1c43082011-10-21 22:08:56 +0000333
334 // Move the landingpad instruction back to the top of the landing pad block.
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000335 LPI->moveBefore(&UnwindBlock->front());
Bill Wendlingb1c43082011-10-21 22:08:56 +0000336 }
Bill Wendlinge9574be2011-10-08 00:56:47 +0000337}
338
Bill Wendling899da522011-09-28 21:56:53 +0000339/// setupEntryBlockAndCallSites - Setup the entry block by creating and filling
340/// the function context and marking the call sites with the appropriate
341/// values. These values are used by the DWARF EH emitter.
Bill Wendling12e5adb2012-03-13 20:04:21 +0000342bool SjLjEHPrepare::setupEntryBlockAndCallSites(Function &F) {
Bill Wendling8faa30e2013-09-23 20:57:47 +0000343 SmallVector<ReturnInst *, 16> Returns;
344 SmallVector<InvokeInst *, 16> Invokes;
345 SmallSetVector<LandingPadInst *, 16> LPads;
Bill Wendling899da522011-09-28 21:56:53 +0000346
347 // Look through the terminators of the basic blocks to find invokes.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000348 for (BasicBlock &BB : F)
349 if (auto *II = dyn_cast<InvokeInst>(BB.getTerminator())) {
Bill Wendling2d915e22013-03-08 02:21:08 +0000350 if (Function *Callee = II->getCalledFunction())
David Majnemerb61fd7f2016-02-19 04:46:06 +0000351 if (Callee->getIntrinsicID() == Intrinsic::donothing) {
Bill Wendling2d915e22013-03-08 02:21:08 +0000352 // Remove the NOP invoke.
353 BranchInst::Create(II->getNormalDest(), II);
354 II->eraseFromParent();
355 continue;
356 }
357
Bill Wendling899da522011-09-28 21:56:53 +0000358 Invokes.push_back(II);
Bob Wilsoncca9aa52011-11-16 07:57:21 +0000359 LPads.insert(II->getUnwindDest()->getLandingPadInst());
David Majnemerb61fd7f2016-02-19 04:46:06 +0000360 } else if (auto *RI = dyn_cast<ReturnInst>(BB.getTerminator())) {
Bill Wendling899da522011-09-28 21:56:53 +0000361 Returns.push_back(RI);
362 }
363
Bill Wendling8faa30e2013-09-23 20:57:47 +0000364 if (Invokes.empty())
365 return false;
Bill Wendling899da522011-09-28 21:56:53 +0000366
Bill Wendling38f86c52011-10-24 17:12:36 +0000367 NumInvokes += Invokes.size();
368
Bill Wendlinge9574be2011-10-08 00:56:47 +0000369 lowerIncomingArguments(F);
370 lowerAcrossUnwindEdges(F, Invokes);
371
Bob Wilsoncca9aa52011-11-16 07:57:21 +0000372 Value *FuncCtx =
Bill Wendling8faa30e2013-09-23 20:57:47 +0000373 setupFunctionContext(F, makeArrayRef(LPads.begin(), LPads.end()));
Duncan P. N. Exon Smithf1ff53e2015-10-09 22:56:24 +0000374 BasicBlock *EntryBB = &F.front();
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000375 IRBuilder<> Builder(EntryBB->getTerminator());
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000376
377 // Get a reference to the jump buffer.
David Blaikie4e5d47f42015-04-04 21:07:10 +0000378 Value *JBufPtr =
379 Builder.CreateConstGEP2_32(FunctionContextTy, FuncCtx, 0, 5, "jbuf_gep");
Bill Wendling2e76ca92011-09-28 03:14:05 +0000380
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000381 // Save the frame pointer.
David Blaikie4e5d47f42015-04-04 21:07:10 +0000382 Value *FramePtr = Builder.CreateConstGEP2_32(doubleUnderJBufTy, JBufPtr, 0, 0,
383 "jbuf_fp_gep");
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000384
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000385 Value *Val = Builder.CreateCall(FrameAddrFn, Builder.getInt32(0), "fp");
386 Builder.CreateStore(Val, FramePtr, /*isVolatile=*/true);
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000387
388 // Save the stack pointer.
David Blaikie4e5d47f42015-04-04 21:07:10 +0000389 Value *StackPtr = Builder.CreateConstGEP2_32(doubleUnderJBufTy, JBufPtr, 0, 2,
390 "jbuf_sp_gep");
Bill Wendling6f3e73d2011-10-03 21:15:28 +0000391
David Blaikieff6409d2015-05-18 22:13:54 +0000392 Val = Builder.CreateCall(StackAddrFn, {}, "sp");
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000393 Builder.CreateStore(Val, StackPtr, /*isVolatile=*/true);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000394
Matthias Braun3cd00c12015-07-16 22:34:16 +0000395 // Call the setup_dispatch instrinsic. It fills in the rest of the jmpbuf.
396 Builder.CreateCall(BuiltinSetupDispatchFn, {});
Bill Wendling2e76ca92011-09-28 03:14:05 +0000397
Bill Wendling899da522011-09-28 21:56:53 +0000398 // Store a pointer to the function context so that the back-end will know
399 // where to look for it.
Benjamin Kramer8d9890a2012-09-03 12:27:43 +0000400 Value *FuncCtxArg = Builder.CreateBitCast(FuncCtx, Builder.getInt8PtrTy());
401 Builder.CreateCall(FuncCtxFn, FuncCtxArg);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000402
403 // At this point, we are all set up, update the invoke instructions to mark
Bill Wendlingdb163352011-10-05 22:04:08 +0000404 // their call_site values.
Bill Wendling2e76ca92011-09-28 03:14:05 +0000405 for (unsigned I = 0, E = Invokes.size(); I != E; ++I) {
Bill Wendling7717e9f2012-01-27 02:02:24 +0000406 insertCallSiteStore(Invokes[I], I + 1);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000407
408 ConstantInt *CallSiteNum =
Bill Wendling8faa30e2013-09-23 20:57:47 +0000409 ConstantInt::get(Type::getInt32Ty(F.getContext()), I + 1);
Bill Wendling2e76ca92011-09-28 03:14:05 +0000410
411 // Record the call site value for the back end so it stays associated with
412 // the invoke.
413 CallInst::Create(CallSiteFn, CallSiteNum, "", Invokes[I]);
414 }
415
416 // Mark call instructions that aren't nounwind as no-action (call_site ==
417 // -1). Skip the entry block, as prior to then, no function context has been
418 // created for this function and any unexpected exceptions thrown will go
419 // directly to the caller's context, which is what we want anyway, so no need
420 // to do anything here.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000421 for (BasicBlock &BB : F) {
Duncan P. N. Exon Smithe9bc5792016-02-21 20:39:50 +0000422 if (&BB == &F.front())
David Majnemerb61fd7f2016-02-19 04:46:06 +0000423 continue;
424 for (Instruction &I : BB)
425 if (I.mayThrow())
426 insertCallSiteStore(&I, -1);
427 }
Bill Wendling2e76ca92011-09-28 03:14:05 +0000428
Bill Wendling899da522011-09-28 21:56:53 +0000429 // Register the function context and make sure it's known to not throw
Bill Wendling8faa30e2013-09-23 20:57:47 +0000430 CallInst *Register =
431 CallInst::Create(RegisterFn, FuncCtx, "", EntryBB->getTerminator());
Bill Wendling899da522011-09-28 21:56:53 +0000432 Register->setDoesNotThrow();
433
Bob Wilson643e63c2011-11-16 07:12:00 +0000434 // Following any allocas not in the entry block, update the saved SP in the
435 // jmpbuf to the new value.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000436 for (BasicBlock &BB : F) {
Duncan P. N. Exon Smithe9bc5792016-02-21 20:39:50 +0000437 if (&BB == &F.front())
Bob Wilson643e63c2011-11-16 07:12:00 +0000438 continue;
David Majnemerb61fd7f2016-02-19 04:46:06 +0000439 for (Instruction &I : BB) {
440 if (auto *CI = dyn_cast<CallInst>(&I)) {
Bob Wilson643e63c2011-11-16 07:12:00 +0000441 if (CI->getCalledFunction() != StackRestoreFn)
442 continue;
David Majnemerb61fd7f2016-02-19 04:46:06 +0000443 } else if (!isa<AllocaInst>(&I)) {
Bob Wilson643e63c2011-11-16 07:12:00 +0000444 continue;
445 }
446 Instruction *StackAddr = CallInst::Create(StackAddrFn, "sp");
David Majnemerb61fd7f2016-02-19 04:46:06 +0000447 StackAddr->insertAfter(&I);
Bob Wilson643e63c2011-11-16 07:12:00 +0000448 Instruction *StoreStackAddr = new StoreInst(StackAddr, StackPtr, true);
449 StoreStackAddr->insertAfter(StackAddr);
450 }
451 }
452
Bill Wendling899da522011-09-28 21:56:53 +0000453 // Finally, for any returns from this function, if this function contains an
454 // invoke, add a call to unregister the function context.
David Majnemerb61fd7f2016-02-19 04:46:06 +0000455 for (ReturnInst *Return : Returns)
456 CallInst::Create(UnregisterFn, FuncCtx, "", Return);
Bill Wendling899da522011-09-28 21:56:53 +0000457
Bill Wendling2e76ca92011-09-28 03:14:05 +0000458 return true;
459}
460
Bill Wendling12e5adb2012-03-13 20:04:21 +0000461bool SjLjEHPrepare::runOnFunction(Function &F) {
David Majnemerbd1b8c02016-02-19 03:13:40 +0000462 Module &M = *F.getParent();
463 RegisterFn = M.getOrInsertFunction(
464 "_Unwind_SjLj_Register", Type::getVoidTy(M.getContext()),
David Majnemerb61fd7f2016-02-19 04:46:06 +0000465 PointerType::getUnqual(FunctionContextTy), nullptr);
David Majnemerbd1b8c02016-02-19 03:13:40 +0000466 UnregisterFn = M.getOrInsertFunction(
467 "_Unwind_SjLj_Unregister", Type::getVoidTy(M.getContext()),
David Majnemerb61fd7f2016-02-19 04:46:06 +0000468 PointerType::getUnqual(FunctionContextTy), nullptr);
David Majnemerbd1b8c02016-02-19 03:13:40 +0000469 FrameAddrFn = Intrinsic::getDeclaration(&M, Intrinsic::frameaddress);
470 StackAddrFn = Intrinsic::getDeclaration(&M, Intrinsic::stacksave);
471 StackRestoreFn = Intrinsic::getDeclaration(&M, Intrinsic::stackrestore);
472 BuiltinSetupDispatchFn =
473 Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_setup_dispatch);
474 LSDAAddrFn = Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_lsda);
475 CallSiteFn = Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_callsite);
476 FuncCtxFn = Intrinsic::getDeclaration(&M, Intrinsic::eh_sjlj_functioncontext);
477
Bill Wendling38f86c52011-10-24 17:12:36 +0000478 bool Res = setupEntryBlockAndCallSites(F);
Jim Grosbach486be662009-08-17 16:41:22 +0000479 return Res;
480}