blob: b545f0bb267de040009dd6fa2e059fc6712464ce [file] [log] [blame]
Chris Lattner6420f1c2003-09-15 04:56:27 +00001//===- LowerSetJmp.cpp - Code pertaining to lowering set/long jumps -------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner6420f1c2003-09-15 04:56:27 +00009//
10// This file implements the lowering of setjmp and longjmp to use the
Chris Lattner77b398c2003-09-15 05:43:05 +000011// LLVM invoke and unwind instructions as necessary.
Chris Lattner6420f1c2003-09-15 04:56:27 +000012//
13// Lowering of longjmp is fairly trivial. We replace the call with a
14// call to the LLVM library function "__llvm_sjljeh_throw_longjmp()".
15// This unwinds the stack for us calling all of the destructors for
16// objects allocated on the stack.
17//
18// At a setjmp call, the basic block is split and the setjmp removed.
19// The calls in a function that have a setjmp are converted to invoke
20// where the except part checks to see if it's a longjmp exception and,
21// if so, if it's handled in the function. If it is, then it gets the
22// value returned by the longjmp and goes to where the basic block was
23// split. Invoke instructions are handled in a similar fashion with the
24// original except block being executed if it isn't a longjmp except
25// that is handled by that function.
26//
27//===----------------------------------------------------------------------===//
28
29//===----------------------------------------------------------------------===//
30// FIXME: This pass doesn't deal with PHI statements just yet. That is,
31// we expect this to occur before SSAification is done. This would seem
32// to make sense, but in general, it might be a good idea to make this
33// pass invokable via the "opt" command at will.
34//===----------------------------------------------------------------------===//
35
Chris Lattner86453c52006-12-19 22:09:18 +000036#define DEBUG_TYPE "lowersetjmp"
Chris Lattner1e2385b2003-11-21 21:54:22 +000037#include "llvm/Transforms/IPO.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000038#include "llvm/Constants.h"
39#include "llvm/DerivedTypes.h"
40#include "llvm/Instructions.h"
41#include "llvm/Intrinsics.h"
Owen Anderson14ce9ef2009-07-06 01:34:54 +000042#include "llvm/LLVMContext.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000043#include "llvm/Module.h"
44#include "llvm/Pass.h"
Gabor Greiffef8c4e2010-06-24 14:13:36 +000045#include "llvm/Support/CallSite.h"
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000046#include "llvm/Support/CFG.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000047#include "llvm/Support/InstVisitor.h"
Chris Lattnera2dc7272004-03-14 02:13:38 +000048#include "llvm/Transforms/Utils/Local.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000049#include "llvm/ADT/DepthFirstIterator.h"
50#include "llvm/ADT/Statistic.h"
Dan Gohmanc9235d22008-03-21 23:51:57 +000051#include <map>
Chris Lattner1e2385b2003-11-21 21:54:22 +000052using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000053
Chris Lattner86453c52006-12-19 22:09:18 +000054STATISTIC(LongJmpsTransformed, "Number of longjmps transformed");
55STATISTIC(SetJmpsTransformed , "Number of setjmps transformed");
56STATISTIC(CallsTransformed , "Number of calls invokified");
57STATISTIC(InvokesTransformed , "Number of invokes modified");
Chris Lattner6420f1c2003-09-15 04:56:27 +000058
Chris Lattner86453c52006-12-19 22:09:18 +000059namespace {
Chris Lattner6420f1c2003-09-15 04:56:27 +000060 //===--------------------------------------------------------------------===//
Chris Lattnerbc53e5e2004-10-07 06:00:24 +000061 // LowerSetJmp pass implementation.
Nick Lewycky6726b6d2009-10-25 06:33:48 +000062 class LowerSetJmp : public ModulePass, public InstVisitor<LowerSetJmp> {
Chris Lattner6420f1c2003-09-15 04:56:27 +000063 // LLVM library functions...
Chris Lattner35057c22007-01-07 06:59:47 +000064 Constant *InitSJMap; // __llvm_sjljeh_init_setjmpmap
65 Constant *DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
66 Constant *AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
67 Constant *ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
68 Constant *TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
69 Constant *IsLJException; // __llvm_sjljeh_is_longjmp_exception
70 Constant *GetLJValue; // __llvm_sjljeh_get_longjmp_value
Chris Lattner6420f1c2003-09-15 04:56:27 +000071
72 typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair;
73
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000074 // Keep track of those basic blocks reachable via a depth-first search of
75 // the CFG from a setjmp call. We only need to transform those "call" and
76 // "invoke" instructions that are reachable from the setjmp call site.
77 std::set<BasicBlock*> DFSBlocks;
78
Chris Lattner6420f1c2003-09-15 04:56:27 +000079 // The setjmp map is going to hold information about which setjmps
80 // were called (each setjmp gets its own number) and with which
81 // buffer it was called.
82 std::map<Function*, AllocaInst*> SJMap;
83
84 // The rethrow basic block map holds the basic block to branch to if
85 // the exception isn't handled in the current function and needs to
86 // be rethrown.
87 std::map<const Function*, BasicBlock*> RethrowBBMap;
88
89 // The preliminary basic block map holds a basic block that grabs the
90 // exception and determines if it's handled by the current function.
91 std::map<const Function*, BasicBlock*> PrelimBBMap;
92
93 // The switch/value map holds a switch inst/call inst pair. The
94 // switch inst controls which handler (if any) gets called and the
95 // value is the value returned to that handler by the call to
96 // __llvm_sjljeh_get_longjmp_value.
97 std::map<const Function*, SwitchValuePair> SwitchValMap;
98
99 // A map of which setjmps we've seen so far in a function.
100 std::map<const Function*, unsigned> SetJmpIDMap;
101
102 AllocaInst* GetSetJmpMap(Function* Func);
103 BasicBlock* GetRethrowBB(Function* Func);
104 SwitchValuePair GetSJSwitch(Function* Func, BasicBlock* Rethrow);
105
106 void TransformLongJmpCall(CallInst* Inst);
107 void TransformSetJmpCall(CallInst* Inst);
108
Benjamin Kramer419e44e2009-11-03 12:52:50 +0000109 bool IsTransformableFunction(StringRef Name);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000110 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +0000111 static char ID; // Pass identification, replacement for typeid
Owen Anderson081c34b2010-10-19 17:21:58 +0000112 LowerSetJmp() : ModulePass(ID) {
113 initializeLowerSetJmpPass(*PassRegistry::getPassRegistry());
114 }
Devang Patel794fd752007-05-01 21:15:47 +0000115
Chris Lattner6420f1c2003-09-15 04:56:27 +0000116 void visitCallInst(CallInst& CI);
117 void visitInvokeInst(InvokeInst& II);
118 void visitReturnInst(ReturnInst& RI);
119 void visitUnwindInst(UnwindInst& UI);
120
Chris Lattnerb12914b2004-09-20 04:48:05 +0000121 bool runOnModule(Module& M);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000122 bool doInitialization(Module& M);
123 };
Chris Lattner6420f1c2003-09-15 04:56:27 +0000124} // end anonymous namespace
125
Dan Gohman844731a2008-05-13 00:00:25 +0000126char LowerSetJmp::ID = 0;
Owen Andersonce665bd2010-10-07 22:25:06 +0000127INITIALIZE_PASS(LowerSetJmp, "lowersetjmp", "Lower Set Jump", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000128
Chris Lattner6420f1c2003-09-15 04:56:27 +0000129// run - Run the transformation on the program. We grab the function
130// prototypes for longjmp and setjmp. If they are used in the program,
131// then we can go directly to the places they're at and transform them.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000132bool LowerSetJmp::runOnModule(Module& M) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000133 bool Changed = false;
134
135 // These are what the functions are called.
Reid Spencer688b0492007-02-05 21:19:13 +0000136 Function* SetJmp = M.getFunction("llvm.setjmp");
137 Function* LongJmp = M.getFunction("llvm.longjmp");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000138
139 // This program doesn't have longjmp and setjmp calls.
140 if ((!LongJmp || LongJmp->use_empty()) &&
141 (!SetJmp || SetJmp->use_empty())) return false;
142
143 // Initialize some values and functions we'll need to transform the
144 // setjmp/longjmp functions.
145 doInitialization(M);
146
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000147 if (SetJmp) {
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000148 for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end();
149 B != E; ++B) {
Chris Lattner6d3906b2003-10-13 01:02:33 +0000150 BasicBlock* BB = cast<Instruction>(*B)->getParent();
Chris Lattner8b716f62003-10-13 16:49:21 +0000151 for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, DFSBlocks),
152 E = df_ext_end(BB, DFSBlocks); I != E; ++I)
Chris Lattner46e033d2003-10-13 16:44:50 +0000153 /* empty */;
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000154 }
155
Chris Lattner6420f1c2003-09-15 04:56:27 +0000156 while (!SetJmp->use_empty()) {
157 assert(isa<CallInst>(SetJmp->use_back()) &&
158 "User of setjmp intrinsic not a call?");
159 TransformSetJmpCall(cast<CallInst>(SetJmp->use_back()));
160 Changed = true;
161 }
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000162 }
Chris Lattner6420f1c2003-09-15 04:56:27 +0000163
164 if (LongJmp)
165 while (!LongJmp->use_empty()) {
166 assert(isa<CallInst>(LongJmp->use_back()) &&
167 "User of longjmp intrinsic not a call?");
168 TransformLongJmpCall(cast<CallInst>(LongJmp->use_back()));
169 Changed = true;
170 }
171
172 // Now go through the affected functions and convert calls and invokes
173 // to new invokes...
174 for (std::map<Function*, AllocaInst*>::iterator
175 B = SJMap.begin(), E = SJMap.end(); B != E; ++B) {
176 Function* F = B->first;
177 for (Function::iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB)
178 for (BasicBlock::iterator IB = BB->begin(), IE = BB->end(); IB != IE; ) {
179 visit(*IB++);
180 if (IB != BB->end() && IB->getParent() != BB)
181 break; // The next instruction got moved to a different block!
182 }
183 }
184
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000185 DFSBlocks.clear();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000186 SJMap.clear();
187 RethrowBBMap.clear();
188 PrelimBBMap.clear();
189 SwitchValMap.clear();
190 SetJmpIDMap.clear();
191
192 return Changed;
193}
194
195// doInitialization - For the lower long/setjmp pass, this ensures that a
196// module contains a declaration for the intrisic functions we are going
197// to call to convert longjmp and setjmp calls.
198//
199// This function is always successful, unless it isn't.
200bool LowerSetJmp::doInitialization(Module& M)
201{
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000202 const Type *SBPTy = Type::getInt8PtrTy(M.getContext());
Owen Andersondebcb012009-07-29 22:17:13 +0000203 const Type *SBPPTy = PointerType::getUnqual(SBPTy);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000204
205 // N.B. See llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h for
206 // a description of the following library functions.
207
208 // void __llvm_sjljeh_init_setjmpmap(void**)
209 InitSJMap = M.getOrInsertFunction("__llvm_sjljeh_init_setjmpmap",
Owen Anderson1d0be152009-08-13 21:58:54 +0000210 Type::getVoidTy(M.getContext()),
211 SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000212 // void __llvm_sjljeh_destroy_setjmpmap(void**)
213 DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap",
Owen Anderson1d0be152009-08-13 21:58:54 +0000214 Type::getVoidTy(M.getContext()),
215 SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000216
217 // void __llvm_sjljeh_add_setjmp_to_map(void**, void*, unsigned)
218 AddSJToMap = M.getOrInsertFunction("__llvm_sjljeh_add_setjmp_to_map",
Owen Anderson1d0be152009-08-13 21:58:54 +0000219 Type::getVoidTy(M.getContext()),
220 SBPPTy, SBPTy,
221 Type::getInt32Ty(M.getContext()),
222 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000223
224 // void __llvm_sjljeh_throw_longjmp(int*, int)
225 ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp",
Owen Anderson1d0be152009-08-13 21:58:54 +0000226 Type::getVoidTy(M.getContext()), SBPTy,
227 Type::getInt32Ty(M.getContext()),
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000228 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000229
230 // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **)
231 TryCatchLJ =
232 M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception",
Owen Anderson1d0be152009-08-13 21:58:54 +0000233 Type::getInt32Ty(M.getContext()), SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000234
235 // bool __llvm_sjljeh_is_longjmp_exception()
236 IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception",
Owen Anderson1d0be152009-08-13 21:58:54 +0000237 Type::getInt1Ty(M.getContext()),
238 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000239
240 // int __llvm_sjljeh_get_longjmp_value()
241 GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value",
Owen Anderson1d0be152009-08-13 21:58:54 +0000242 Type::getInt32Ty(M.getContext()),
243 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000244 return true;
245}
246
247// IsTransformableFunction - Return true if the function name isn't one
248// of the ones we don't want transformed. Currently, don't transform any
249// "llvm.{setjmp,longjmp}" functions and none of the setjmp/longjmp error
250// handling functions (beginning with __llvm_sjljeh_...they don't throw
251// exceptions).
Benjamin Kramer419e44e2009-11-03 12:52:50 +0000252bool LowerSetJmp::IsTransformableFunction(StringRef Name) {
253 return !Name.startswith("__llvm_sjljeh_");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000254}
255
256// TransformLongJmpCall - Transform a longjmp call into a call to the
257// internal __llvm_sjljeh_throw_longjmp function. It then takes care of
258// throwing the exception for us.
259void LowerSetJmp::TransformLongJmpCall(CallInst* Inst)
260{
Benjamin Kramer419e44e2009-11-03 12:52:50 +0000261 const Type* SBPTy = Type::getInt8PtrTy(Inst->getContext());
Chris Lattner6420f1c2003-09-15 04:56:27 +0000262
263 // Create the call to "__llvm_sjljeh_throw_longjmp". This takes the
264 // same parameters as "longjmp", except that the buffer is cast to a
265 // char*. It returns "void", so it doesn't need to replace any of
266 // Inst's uses and doesn't get a name.
Reid Spencer3da59db2006-11-27 01:05:10 +0000267 CastInst* CI =
Gabor Greiffef8c4e2010-06-24 14:13:36 +0000268 new BitCastInst(Inst->getArgOperand(0), SBPTy, "LJBuf", Inst);
269 Value *Args[] = { CI, Inst->getArgOperand(1) };
Benjamin Kramer419e44e2009-11-03 12:52:50 +0000270 CallInst::Create(ThrowLongJmp, Args, Args + 2, "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000271
272 SwitchValuePair& SVP = SwitchValMap[Inst->getParent()->getParent()];
273
274 // If the function has a setjmp call in it (they are transformed first)
275 // we should branch to the basic block that determines if this longjmp
276 // is applicable here. Otherwise, issue an unwind.
277 if (SVP.first)
Gabor Greif051a9502008-04-06 20:25:17 +0000278 BranchInst::Create(SVP.first->getParent(), Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000279 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000280 new UnwindInst(Inst->getContext(), Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000281
Chris Lattner3987abd2005-05-05 15:47:43 +0000282 // Remove all insts after the branch/unwind inst. Go from back to front to
283 // avoid replaceAllUsesWith if possible.
284 BasicBlock *BB = Inst->getParent();
285 Instruction *Removed;
286 do {
287 Removed = &BB->back();
288 // If the removed instructions have any users, replace them now.
289 if (!Removed->use_empty())
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000290 Removed->replaceAllUsesWith(UndefValue::get(Removed->getType()));
Chris Lattner3987abd2005-05-05 15:47:43 +0000291 Removed->eraseFromParent();
292 } while (Removed != Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000293
294 ++LongJmpsTransformed;
295}
296
297// GetSetJmpMap - Retrieve (create and initialize, if necessary) the
298// setjmp map. This map is going to hold information about which setjmps
299// were called (each setjmp gets its own number) and with which buffer it
300// was called. There can be only one!
301AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func)
302{
303 if (SJMap[Func]) return SJMap[Func];
304
305 // Insert the setjmp map initialization before the first instruction in
306 // the function.
Chris Lattner02a3be02003-09-20 14:39:18 +0000307 Instruction* Inst = Func->getEntryBlock().begin();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000308 assert(Inst && "Couldn't find even ONE instruction in entry block!");
309
310 // Fill in the alloca and call to initialize the SJ map.
Owen Anderson1d0be152009-08-13 21:58:54 +0000311 const Type *SBPTy =
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000312 Type::getInt8PtrTy(Func->getContext());
Owen Anderson50dead02009-07-15 23:53:25 +0000313 AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst);
Gabor Greif051a9502008-04-06 20:25:17 +0000314 CallInst::Create(InitSJMap, Map, "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000315 return SJMap[Func] = Map;
316}
317
318// GetRethrowBB - Only one rethrow basic block is needed per function.
319// If this is a longjmp exception but not handled in this block, this BB
320// performs the rethrow.
321BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func)
322{
323 if (RethrowBBMap[Func]) return RethrowBBMap[Func];
324
325 // The basic block we're going to jump to if we need to rethrow the
326 // exception.
Owen Anderson1d0be152009-08-13 21:58:54 +0000327 BasicBlock* Rethrow =
328 BasicBlock::Create(Func->getContext(), "RethrowExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000329
330 // Fill in the "Rethrow" BB with a call to rethrow the exception. This
331 // is the last instruction in the BB since at this point the runtime
332 // should exit this function and go to the next function.
Owen Anderson1d0be152009-08-13 21:58:54 +0000333 new UnwindInst(Func->getContext(), Rethrow);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000334 return RethrowBBMap[Func] = Rethrow;
335}
336
337// GetSJSwitch - Return the switch statement that controls which handler
338// (if any) gets called and the value returned to that handler.
339LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func,
340 BasicBlock* Rethrow)
341{
342 if (SwitchValMap[Func].first) return SwitchValMap[Func];
343
Owen Anderson1d0be152009-08-13 21:58:54 +0000344 BasicBlock* LongJmpPre =
345 BasicBlock::Create(Func->getContext(), "LongJmpBlkPre", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000346
347 // Keep track of the preliminary basic block for some of the other
348 // transformations.
349 PrelimBBMap[Func] = LongJmpPre;
350
351 // Grab the exception.
Dan Gohman52d36e62008-06-19 17:53:32 +0000352 CallInst* Cond = CallInst::Create(IsLJException, "IsLJExcept", LongJmpPre);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000353
354 // The "decision basic block" gets the number associated with the
355 // setjmp call returning to switch on and the value returned by
356 // longjmp.
Owen Anderson1d0be152009-08-13 21:58:54 +0000357 BasicBlock* DecisionBB =
358 BasicBlock::Create(Func->getContext(), "LJDecisionBB", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000359
Gabor Greif051a9502008-04-06 20:25:17 +0000360 BranchInst::Create(DecisionBB, Rethrow, Cond, LongJmpPre);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000361
362 // Fill in the "decision" basic block.
Dan Gohman52d36e62008-06-19 17:53:32 +0000363 CallInst* LJVal = CallInst::Create(GetLJValue, "LJVal", DecisionBB);
364 CallInst* SJNum = CallInst::Create(TryCatchLJ, GetSetJmpMap(Func), "SJNum",
365 DecisionBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000366
Gabor Greif051a9502008-04-06 20:25:17 +0000367 SwitchInst* SI = SwitchInst::Create(SJNum, Rethrow, 0, DecisionBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000368 return SwitchValMap[Func] = SwitchValuePair(SI, LJVal);
369}
370
371// TransformSetJmpCall - The setjmp call is a bit trickier to transform.
372// We're going to convert all setjmp calls to nops. Then all "call" and
373// "invoke" instructions in the function are converted to "invoke" where
374// the "except" branch is used when returning from a longjmp call.
375void LowerSetJmp::TransformSetJmpCall(CallInst* Inst)
376{
377 BasicBlock* ABlock = Inst->getParent();
378 Function* Func = ABlock->getParent();
379
380 // Add this setjmp to the setjmp map.
Owen Anderson1d0be152009-08-13 21:58:54 +0000381 const Type* SBPTy =
Duncan Sandsac53a0b2009-10-06 15:40:36 +0000382 Type::getInt8PtrTy(Inst->getContext());
Reid Spencer3da59db2006-11-27 01:05:10 +0000383 CastInst* BufPtr =
Gabor Greiffef8c4e2010-06-24 14:13:36 +0000384 new BitCastInst(Inst->getArgOperand(0), SBPTy, "SBJmpBuf", Inst);
Benjamin Kramer419e44e2009-11-03 12:52:50 +0000385 Value *Args[] = {
386 GetSetJmpMap(Func), BufPtr,
387 ConstantInt::get(Type::getInt32Ty(Inst->getContext()), SetJmpIDMap[Func]++)
388 };
389 CallInst::Create(AddSJToMap, Args, Args + 3, "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000390
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000391 // We are guaranteed that there are no values live across basic blocks
392 // (because we are "not in SSA form" yet), but there can still be values live
393 // in basic blocks. Because of this, splitting the setjmp block can cause
394 // values above the setjmp to not dominate uses which are after the setjmp
395 // call. For all of these occasions, we must spill the value to the stack.
396 //
397 std::set<Instruction*> InstrsAfterCall;
398
399 // The call is probably very close to the end of the basic block, for the
400 // common usage pattern of: 'if (setjmp(...))', so keep track of the
401 // instructions after the call.
402 for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end();
403 I != E; ++I)
Misha Brukmanfd939082005-04-21 23:48:37 +0000404 InstrsAfterCall.insert(I);
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000405
406 for (BasicBlock::iterator II = ABlock->begin();
407 II != BasicBlock::iterator(Inst); ++II)
408 // Loop over all of the uses of instruction. If any of them are after the
409 // call, "spill" the value to the stack.
410 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
Gabor Greifb7df5002010-07-12 14:12:11 +0000411 UI != E; ++UI) {
412 User *U = *UI;
413 if (cast<Instruction>(U)->getParent() != ABlock ||
414 InstrsAfterCall.count(cast<Instruction>(U))) {
Owen Anderson50dead02009-07-15 23:53:25 +0000415 DemoteRegToStack(*II);
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000416 break;
417 }
Gabor Greifb7df5002010-07-12 14:12:11 +0000418 }
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000419 InstrsAfterCall.clear();
420
Chris Lattner6420f1c2003-09-15 04:56:27 +0000421 // Change the setjmp call into a branch statement. We'll remove the
422 // setjmp call in a little bit. No worries.
423 BasicBlock* SetJmpContBlock = ABlock->splitBasicBlock(Inst);
424 assert(SetJmpContBlock && "Couldn't split setjmp BB!!");
425
Chris Lattnercb2d1a22005-04-21 16:46:46 +0000426 SetJmpContBlock->setName(ABlock->getName()+"SetJmpCont");
427
428 // Add the SetJmpContBlock to the set of blocks reachable from a setjmp.
429 DFSBlocks.insert(SetJmpContBlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000430
Chris Lattner6420f1c2003-09-15 04:56:27 +0000431 // This PHI node will be in the new block created from the
432 // splitBasicBlock call.
Owen Anderson1d0be152009-08-13 21:58:54 +0000433 PHINode* PHI = PHINode::Create(Type::getInt32Ty(Inst->getContext()),
434 "SetJmpReturn", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000435
436 // Coming from a call to setjmp, the return is 0.
Owen Anderson1d0be152009-08-13 21:58:54 +0000437 PHI->addIncoming(Constant::getNullValue(Type::getInt32Ty(Inst->getContext())),
438 ABlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000439
440 // Add the case for this setjmp's number...
441 SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func));
Owen Anderson1d0be152009-08-13 21:58:54 +0000442 SVP.first->addCase(ConstantInt::get(Type::getInt32Ty(Inst->getContext()),
443 SetJmpIDMap[Func] - 1),
Owen Andersoneed707b2009-07-24 23:12:02 +0000444 SetJmpContBlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000445
446 // Value coming from the handling of the exception.
447 PHI->addIncoming(SVP.second, SVP.second->getParent());
448
449 // Replace all uses of this instruction with the PHI node created by
450 // the eradication of setjmp.
451 Inst->replaceAllUsesWith(PHI);
Dan Gohman1adec832008-06-21 22:08:46 +0000452 Inst->eraseFromParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000453
454 ++SetJmpsTransformed;
455}
456
457// visitCallInst - This converts all LLVM call instructions into invoke
458// instructions. The except part of the invoke goes to the "LongJmpBlkPre"
459// that grabs the exception and proceeds to determine if it's a longjmp
460// exception or not.
461void LowerSetJmp::visitCallInst(CallInst& CI)
462{
463 if (CI.getCalledFunction())
464 if (!IsTransformableFunction(CI.getCalledFunction()->getName()) ||
465 CI.getCalledFunction()->isIntrinsic()) return;
466
467 BasicBlock* OldBB = CI.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000468
469 // If not reachable from a setjmp call, don't transform.
470 if (!DFSBlocks.count(OldBB)) return;
471
Chris Lattner6420f1c2003-09-15 04:56:27 +0000472 BasicBlock* NewBB = OldBB->splitBasicBlock(CI);
473 assert(NewBB && "Couldn't split BB of \"call\" instruction!!");
Chris Lattnerd286b242005-06-15 22:49:30 +0000474 DFSBlocks.insert(NewBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000475 NewBB->setName("Call2Invoke");
476
Chris Lattner6d3906b2003-10-13 01:02:33 +0000477 Function* Func = OldBB->getParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000478
479 // Construct the new "invoke" instruction.
480 TerminatorInst* Term = OldBB->getTerminator();
Gabor Greiffef8c4e2010-06-24 14:13:36 +0000481 CallSite CS(&CI);
482 std::vector<Value*> Params(CS.arg_begin(), CS.arg_end());
Gabor Greif051a9502008-04-06 20:25:17 +0000483 InvokeInst* II =
484 InvokeInst::Create(CI.getCalledValue(), NewBB, PrelimBBMap[Func],
485 Params.begin(), Params.end(), CI.getName(), Term);
Duncan Sandsdc024672007-11-27 13:23:08 +0000486 II->setCallingConv(CI.getCallingConv());
Devang Patel05988662008-09-25 21:00:45 +0000487 II->setAttributes(CI.getAttributes());
Chris Lattner6420f1c2003-09-15 04:56:27 +0000488
489 // Replace the old call inst with the invoke inst and remove the call.
490 CI.replaceAllUsesWith(II);
Dan Gohman1adec832008-06-21 22:08:46 +0000491 CI.eraseFromParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000492
493 // The old terminator is useless now that we have the invoke inst.
Dan Gohman1adec832008-06-21 22:08:46 +0000494 Term->eraseFromParent();
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000495 ++CallsTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000496}
497
498// visitInvokeInst - Converting the "invoke" instruction is fairly
499// straight-forward. The old exception part is replaced by a query asking
500// if this is a longjmp exception. If it is, then it goes to the longjmp
501// exception blocks. Otherwise, control is passed the old exception.
502void LowerSetJmp::visitInvokeInst(InvokeInst& II)
503{
504 if (II.getCalledFunction())
505 if (!IsTransformableFunction(II.getCalledFunction()->getName()) ||
506 II.getCalledFunction()->isIntrinsic()) return;
507
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000508 BasicBlock* BB = II.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000509
510 // If not reachable from a setjmp call, don't transform.
511 if (!DFSBlocks.count(BB)) return;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000512
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000513 BasicBlock* ExceptBB = II.getUnwindDest();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000514
Chris Lattner6d3906b2003-10-13 01:02:33 +0000515 Function* Func = BB->getParent();
Owen Anderson1d0be152009-08-13 21:58:54 +0000516 BasicBlock* NewExceptBB = BasicBlock::Create(II.getContext(),
517 "InvokeExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000518
519 // If this is a longjmp exception, then branch to the preliminary BB of
520 // the longjmp exception handling. Otherwise, go to the old exception.
Dan Gohman52d36e62008-06-19 17:53:32 +0000521 CallInst* IsLJExcept = CallInst::Create(IsLJException, "IsLJExcept",
522 NewExceptBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000523
Gabor Greif051a9502008-04-06 20:25:17 +0000524 BranchInst::Create(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000525
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000526 II.setUnwindDest(NewExceptBB);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000527 ++InvokesTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000528}
529
530// visitReturnInst - We want to destroy the setjmp map upon exit from the
531// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000532void LowerSetJmp::visitReturnInst(ReturnInst &RI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000533 Function* Func = RI.getParent()->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000534 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &RI);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000535}
536
537// visitUnwindInst - We want to destroy the setjmp map upon exit from the
538// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000539void LowerSetJmp::visitUnwindInst(UnwindInst &UI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000540 Function* Func = UI.getParent()->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000541 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &UI);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000542}
543
Chris Lattnerb12914b2004-09-20 04:48:05 +0000544ModulePass *llvm::createLowerSetJmpPass() {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000545 return new LowerSetJmp();
546}
Brian Gaeked0fde302003-11-11 22:41:34 +0000547