blob: 0a55298e908acdd30973abc3694ef72f77b7d20c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- LowerSetJmp.cpp - Code pertaining to lowering set/long jumps -------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the lowering of setjmp and longjmp to use the
11// LLVM invoke and unwind instructions as necessary.
12//
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
36#define DEBUG_TYPE "lowersetjmp"
37#include "llvm/Transforms/IPO.h"
38#include "llvm/Constants.h"
39#include "llvm/DerivedTypes.h"
40#include "llvm/Instructions.h"
41#include "llvm/Intrinsics.h"
Owen Anderson086ea052009-07-06 01:34:54 +000042#include "llvm/LLVMContext.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043#include "llvm/Module.h"
44#include "llvm/Pass.h"
45#include "llvm/Support/CFG.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046#include "llvm/Support/InstVisitor.h"
47#include "llvm/Transforms/Utils/Local.h"
48#include "llvm/ADT/DepthFirstIterator.h"
49#include "llvm/ADT/Statistic.h"
50#include "llvm/ADT/StringExtras.h"
51#include "llvm/ADT/VectorExtras.h"
David Greeneb1c4a7b2007-08-01 03:43:44 +000052#include "llvm/ADT/SmallVector.h"
Dan Gohman249ddbf2008-03-21 23:51:57 +000053#include <map>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054using namespace llvm;
55
56STATISTIC(LongJmpsTransformed, "Number of longjmps transformed");
57STATISTIC(SetJmpsTransformed , "Number of setjmps transformed");
58STATISTIC(CallsTransformed , "Number of calls invokified");
59STATISTIC(InvokesTransformed , "Number of invokes modified");
60
61namespace {
62 //===--------------------------------------------------------------------===//
63 // LowerSetJmp pass implementation.
Nick Lewycky492d06e2009-10-25 06:33:48 +000064 class LowerSetJmp : public ModulePass, public InstVisitor<LowerSetJmp> {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065 // LLVM library functions...
66 Constant *InitSJMap; // __llvm_sjljeh_init_setjmpmap
67 Constant *DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
68 Constant *AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
69 Constant *ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
70 Constant *TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
71 Constant *IsLJException; // __llvm_sjljeh_is_longjmp_exception
72 Constant *GetLJValue; // __llvm_sjljeh_get_longjmp_value
73
74 typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair;
75
76 // Keep track of those basic blocks reachable via a depth-first search of
77 // the CFG from a setjmp call. We only need to transform those "call" and
78 // "invoke" instructions that are reachable from the setjmp call site.
79 std::set<BasicBlock*> DFSBlocks;
80
81 // The setjmp map is going to hold information about which setjmps
82 // were called (each setjmp gets its own number) and with which
83 // buffer it was called.
84 std::map<Function*, AllocaInst*> SJMap;
85
86 // The rethrow basic block map holds the basic block to branch to if
87 // the exception isn't handled in the current function and needs to
88 // be rethrown.
89 std::map<const Function*, BasicBlock*> RethrowBBMap;
90
91 // The preliminary basic block map holds a basic block that grabs the
92 // exception and determines if it's handled by the current function.
93 std::map<const Function*, BasicBlock*> PrelimBBMap;
94
95 // The switch/value map holds a switch inst/call inst pair. The
96 // switch inst controls which handler (if any) gets called and the
97 // value is the value returned to that handler by the call to
98 // __llvm_sjljeh_get_longjmp_value.
99 std::map<const Function*, SwitchValuePair> SwitchValMap;
100
101 // A map of which setjmps we've seen so far in a function.
102 std::map<const Function*, unsigned> SetJmpIDMap;
103
104 AllocaInst* GetSetJmpMap(Function* Func);
105 BasicBlock* GetRethrowBB(Function* Func);
106 SwitchValuePair GetSJSwitch(Function* Func, BasicBlock* Rethrow);
107
108 void TransformLongJmpCall(CallInst* Inst);
109 void TransformSetJmpCall(CallInst* Inst);
110
111 bool IsTransformableFunction(const std::string& Name);
112 public:
113 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +0000114 LowerSetJmp() : ModulePass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115
116 void visitCallInst(CallInst& CI);
117 void visitInvokeInst(InvokeInst& II);
118 void visitReturnInst(ReturnInst& RI);
119 void visitUnwindInst(UnwindInst& UI);
120
121 bool runOnModule(Module& M);
122 bool doInitialization(Module& M);
123 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124} // end anonymous namespace
125
Dan Gohman089efff2008-05-13 00:00:25 +0000126char LowerSetJmp::ID = 0;
127static RegisterPass<LowerSetJmp> X("lowersetjmp", "Lower Set Jump");
128
Dan Gohmanf17a25c2007-07-18 16:29:46 +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.
132bool LowerSetJmp::runOnModule(Module& M) {
133 bool Changed = false;
134
135 // These are what the functions are called.
136 Function* SetJmp = M.getFunction("llvm.setjmp");
137 Function* LongJmp = M.getFunction("llvm.longjmp");
138
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
147 if (SetJmp) {
148 for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end();
149 B != E; ++B) {
150 BasicBlock* BB = cast<Instruction>(*B)->getParent();
151 for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, DFSBlocks),
152 E = df_ext_end(BB, DFSBlocks); I != E; ++I)
153 /* empty */;
154 }
155
156 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 }
162 }
163
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
185 DFSBlocks.clear();
186 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 Sandsf2519d62009-10-06 15:40:36 +0000202 const Type *SBPTy = Type::getInt8PtrTy(M.getContext());
Owen Anderson6b6e2d92009-07-29 22:17:13 +0000203 const Type *SBPPTy = PointerType::getUnqual(SBPTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Anderson35b47072009-08-13 21:58:54 +0000210 Type::getVoidTy(M.getContext()),
211 SBPPTy, (Type *)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 // void __llvm_sjljeh_destroy_setjmpmap(void**)
213 DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap",
Owen Anderson35b47072009-08-13 21:58:54 +0000214 Type::getVoidTy(M.getContext()),
215 SBPPTy, (Type *)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216
217 // void __llvm_sjljeh_add_setjmp_to_map(void**, void*, unsigned)
218 AddSJToMap = M.getOrInsertFunction("__llvm_sjljeh_add_setjmp_to_map",
Owen Anderson35b47072009-08-13 21:58:54 +0000219 Type::getVoidTy(M.getContext()),
220 SBPPTy, SBPTy,
221 Type::getInt32Ty(M.getContext()),
222 (Type *)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223
224 // void __llvm_sjljeh_throw_longjmp(int*, int)
225 ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp",
Owen Anderson35b47072009-08-13 21:58:54 +0000226 Type::getVoidTy(M.getContext()), SBPTy,
227 Type::getInt32Ty(M.getContext()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 (Type *)0);
229
230 // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **)
231 TryCatchLJ =
232 M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception",
Owen Anderson35b47072009-08-13 21:58:54 +0000233 Type::getInt32Ty(M.getContext()), SBPPTy, (Type *)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234
235 // bool __llvm_sjljeh_is_longjmp_exception()
236 IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception",
Owen Anderson35b47072009-08-13 21:58:54 +0000237 Type::getInt1Ty(M.getContext()),
238 (Type *)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239
240 // int __llvm_sjljeh_get_longjmp_value()
241 GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value",
Owen Anderson35b47072009-08-13 21:58:54 +0000242 Type::getInt32Ty(M.getContext()),
243 (Type *)0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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).
252bool LowerSetJmp::IsTransformableFunction(const std::string& Name) {
253 std::string SJLJEh("__llvm_sjljeh");
254
255 if (Name.size() > SJLJEh.size())
256 return std::string(Name.begin(), Name.begin() + SJLJEh.size()) != SJLJEh;
257
258 return true;
259}
260
261// TransformLongJmpCall - Transform a longjmp call into a call to the
262// internal __llvm_sjljeh_throw_longjmp function. It then takes care of
263// throwing the exception for us.
264void LowerSetJmp::TransformLongJmpCall(CallInst* Inst)
265{
Owen Anderson35b47072009-08-13 21:58:54 +0000266 const Type* SBPTy =
Duncan Sandsf2519d62009-10-06 15:40:36 +0000267 Type::getInt8PtrTy(Inst->getContext());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268
269 // Create the call to "__llvm_sjljeh_throw_longjmp". This takes the
270 // same parameters as "longjmp", except that the buffer is cast to a
271 // char*. It returns "void", so it doesn't need to replace any of
272 // Inst's uses and doesn't get a name.
273 CastInst* CI =
274 new BitCastInst(Inst->getOperand(1), SBPTy, "LJBuf", Inst);
David Greeneb1c4a7b2007-08-01 03:43:44 +0000275 SmallVector<Value *, 2> Args;
276 Args.push_back(CI);
277 Args.push_back(Inst->getOperand(2));
Gabor Greifd6da1d02008-04-06 20:25:17 +0000278 CallInst::Create(ThrowLongJmp, Args.begin(), Args.end(), "", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279
280 SwitchValuePair& SVP = SwitchValMap[Inst->getParent()->getParent()];
281
282 // If the function has a setjmp call in it (they are transformed first)
283 // we should branch to the basic block that determines if this longjmp
284 // is applicable here. Otherwise, issue an unwind.
285 if (SVP.first)
Gabor Greifd6da1d02008-04-06 20:25:17 +0000286 BranchInst::Create(SVP.first->getParent(), Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 else
Owen Anderson35b47072009-08-13 21:58:54 +0000288 new UnwindInst(Inst->getContext(), Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289
290 // Remove all insts after the branch/unwind inst. Go from back to front to
291 // avoid replaceAllUsesWith if possible.
292 BasicBlock *BB = Inst->getParent();
293 Instruction *Removed;
294 do {
295 Removed = &BB->back();
296 // If the removed instructions have any users, replace them now.
297 if (!Removed->use_empty())
Owen Andersonb99ecca2009-07-30 23:03:37 +0000298 Removed->replaceAllUsesWith(UndefValue::get(Removed->getType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 Removed->eraseFromParent();
300 } while (Removed != Inst);
301
302 ++LongJmpsTransformed;
303}
304
305// GetSetJmpMap - Retrieve (create and initialize, if necessary) the
306// setjmp map. This map is going to hold information about which setjmps
307// were called (each setjmp gets its own number) and with which buffer it
308// was called. There can be only one!
309AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func)
310{
311 if (SJMap[Func]) return SJMap[Func];
312
313 // Insert the setjmp map initialization before the first instruction in
314 // the function.
315 Instruction* Inst = Func->getEntryBlock().begin();
316 assert(Inst && "Couldn't find even ONE instruction in entry block!");
317
318 // Fill in the alloca and call to initialize the SJ map.
Owen Anderson35b47072009-08-13 21:58:54 +0000319 const Type *SBPTy =
Duncan Sandsf2519d62009-10-06 15:40:36 +0000320 Type::getInt8PtrTy(Func->getContext());
Owen Anderson140166d2009-07-15 23:53:25 +0000321 AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst);
Gabor Greifd6da1d02008-04-06 20:25:17 +0000322 CallInst::Create(InitSJMap, Map, "", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 return SJMap[Func] = Map;
324}
325
326// GetRethrowBB - Only one rethrow basic block is needed per function.
327// If this is a longjmp exception but not handled in this block, this BB
328// performs the rethrow.
329BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func)
330{
331 if (RethrowBBMap[Func]) return RethrowBBMap[Func];
332
333 // The basic block we're going to jump to if we need to rethrow the
334 // exception.
Owen Anderson35b47072009-08-13 21:58:54 +0000335 BasicBlock* Rethrow =
336 BasicBlock::Create(Func->getContext(), "RethrowExcept", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337
338 // Fill in the "Rethrow" BB with a call to rethrow the exception. This
339 // is the last instruction in the BB since at this point the runtime
340 // should exit this function and go to the next function.
Owen Anderson35b47072009-08-13 21:58:54 +0000341 new UnwindInst(Func->getContext(), Rethrow);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 return RethrowBBMap[Func] = Rethrow;
343}
344
345// GetSJSwitch - Return the switch statement that controls which handler
346// (if any) gets called and the value returned to that handler.
347LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func,
348 BasicBlock* Rethrow)
349{
350 if (SwitchValMap[Func].first) return SwitchValMap[Func];
351
Owen Anderson35b47072009-08-13 21:58:54 +0000352 BasicBlock* LongJmpPre =
353 BasicBlock::Create(Func->getContext(), "LongJmpBlkPre", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354
355 // Keep track of the preliminary basic block for some of the other
356 // transformations.
357 PrelimBBMap[Func] = LongJmpPre;
358
359 // Grab the exception.
Dan Gohman20eea1b2008-06-19 17:53:32 +0000360 CallInst* Cond = CallInst::Create(IsLJException, "IsLJExcept", LongJmpPre);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361
362 // The "decision basic block" gets the number associated with the
363 // setjmp call returning to switch on and the value returned by
364 // longjmp.
Owen Anderson35b47072009-08-13 21:58:54 +0000365 BasicBlock* DecisionBB =
366 BasicBlock::Create(Func->getContext(), "LJDecisionBB", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367
Gabor Greifd6da1d02008-04-06 20:25:17 +0000368 BranchInst::Create(DecisionBB, Rethrow, Cond, LongJmpPre);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369
370 // Fill in the "decision" basic block.
Dan Gohman20eea1b2008-06-19 17:53:32 +0000371 CallInst* LJVal = CallInst::Create(GetLJValue, "LJVal", DecisionBB);
372 CallInst* SJNum = CallInst::Create(TryCatchLJ, GetSetJmpMap(Func), "SJNum",
373 DecisionBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374
Gabor Greifd6da1d02008-04-06 20:25:17 +0000375 SwitchInst* SI = SwitchInst::Create(SJNum, Rethrow, 0, DecisionBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000376 return SwitchValMap[Func] = SwitchValuePair(SI, LJVal);
377}
378
379// TransformSetJmpCall - The setjmp call is a bit trickier to transform.
380// We're going to convert all setjmp calls to nops. Then all "call" and
381// "invoke" instructions in the function are converted to "invoke" where
382// the "except" branch is used when returning from a longjmp call.
383void LowerSetJmp::TransformSetJmpCall(CallInst* Inst)
384{
385 BasicBlock* ABlock = Inst->getParent();
386 Function* Func = ABlock->getParent();
387
388 // Add this setjmp to the setjmp map.
Owen Anderson35b47072009-08-13 21:58:54 +0000389 const Type* SBPTy =
Duncan Sandsf2519d62009-10-06 15:40:36 +0000390 Type::getInt8PtrTy(Inst->getContext());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391 CastInst* BufPtr =
392 new BitCastInst(Inst->getOperand(1), SBPTy, "SBJmpBuf", Inst);
393 std::vector<Value*> Args =
394 make_vector<Value*>(GetSetJmpMap(Func), BufPtr,
Owen Anderson35b47072009-08-13 21:58:54 +0000395 ConstantInt::get(Type::getInt32Ty(Inst->getContext()),
396 SetJmpIDMap[Func]++), 0);
Gabor Greifd6da1d02008-04-06 20:25:17 +0000397 CallInst::Create(AddSJToMap, Args.begin(), Args.end(), "", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398
399 // We are guaranteed that there are no values live across basic blocks
400 // (because we are "not in SSA form" yet), but there can still be values live
401 // in basic blocks. Because of this, splitting the setjmp block can cause
402 // values above the setjmp to not dominate uses which are after the setjmp
403 // call. For all of these occasions, we must spill the value to the stack.
404 //
405 std::set<Instruction*> InstrsAfterCall;
406
407 // The call is probably very close to the end of the basic block, for the
408 // common usage pattern of: 'if (setjmp(...))', so keep track of the
409 // instructions after the call.
410 for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end();
411 I != E; ++I)
412 InstrsAfterCall.insert(I);
413
414 for (BasicBlock::iterator II = ABlock->begin();
415 II != BasicBlock::iterator(Inst); ++II)
416 // Loop over all of the uses of instruction. If any of them are after the
417 // call, "spill" the value to the stack.
418 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
419 UI != E; ++UI)
420 if (cast<Instruction>(*UI)->getParent() != ABlock ||
421 InstrsAfterCall.count(cast<Instruction>(*UI))) {
Owen Anderson140166d2009-07-15 23:53:25 +0000422 DemoteRegToStack(*II);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 break;
424 }
425 InstrsAfterCall.clear();
426
427 // Change the setjmp call into a branch statement. We'll remove the
428 // setjmp call in a little bit. No worries.
429 BasicBlock* SetJmpContBlock = ABlock->splitBasicBlock(Inst);
430 assert(SetJmpContBlock && "Couldn't split setjmp BB!!");
431
432 SetJmpContBlock->setName(ABlock->getName()+"SetJmpCont");
433
434 // Add the SetJmpContBlock to the set of blocks reachable from a setjmp.
435 DFSBlocks.insert(SetJmpContBlock);
436
437 // This PHI node will be in the new block created from the
438 // splitBasicBlock call.
Owen Anderson35b47072009-08-13 21:58:54 +0000439 PHINode* PHI = PHINode::Create(Type::getInt32Ty(Inst->getContext()),
440 "SetJmpReturn", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000441
442 // Coming from a call to setjmp, the return is 0.
Owen Anderson35b47072009-08-13 21:58:54 +0000443 PHI->addIncoming(Constant::getNullValue(Type::getInt32Ty(Inst->getContext())),
444 ABlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445
446 // Add the case for this setjmp's number...
447 SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func));
Owen Anderson35b47072009-08-13 21:58:54 +0000448 SVP.first->addCase(ConstantInt::get(Type::getInt32Ty(Inst->getContext()),
449 SetJmpIDMap[Func] - 1),
Owen Andersoneacb44d2009-07-24 23:12:02 +0000450 SetJmpContBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451
452 // Value coming from the handling of the exception.
453 PHI->addIncoming(SVP.second, SVP.second->getParent());
454
455 // Replace all uses of this instruction with the PHI node created by
456 // the eradication of setjmp.
457 Inst->replaceAllUsesWith(PHI);
Dan Gohmande087372008-06-21 22:08:46 +0000458 Inst->eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459
460 ++SetJmpsTransformed;
461}
462
463// visitCallInst - This converts all LLVM call instructions into invoke
464// instructions. The except part of the invoke goes to the "LongJmpBlkPre"
465// that grabs the exception and proceeds to determine if it's a longjmp
466// exception or not.
467void LowerSetJmp::visitCallInst(CallInst& CI)
468{
469 if (CI.getCalledFunction())
470 if (!IsTransformableFunction(CI.getCalledFunction()->getName()) ||
471 CI.getCalledFunction()->isIntrinsic()) return;
472
473 BasicBlock* OldBB = CI.getParent();
474
475 // If not reachable from a setjmp call, don't transform.
476 if (!DFSBlocks.count(OldBB)) return;
477
478 BasicBlock* NewBB = OldBB->splitBasicBlock(CI);
479 assert(NewBB && "Couldn't split BB of \"call\" instruction!!");
480 DFSBlocks.insert(NewBB);
481 NewBB->setName("Call2Invoke");
482
483 Function* Func = OldBB->getParent();
484
485 // Construct the new "invoke" instruction.
486 TerminatorInst* Term = OldBB->getTerminator();
487 std::vector<Value*> Params(CI.op_begin() + 1, CI.op_end());
Gabor Greifd6da1d02008-04-06 20:25:17 +0000488 InvokeInst* II =
489 InvokeInst::Create(CI.getCalledValue(), NewBB, PrelimBBMap[Func],
490 Params.begin(), Params.end(), CI.getName(), Term);
Duncan Sandsf5588dc2007-11-27 13:23:08 +0000491 II->setCallingConv(CI.getCallingConv());
Devang Pateld222f862008-09-25 21:00:45 +0000492 II->setAttributes(CI.getAttributes());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493
494 // Replace the old call inst with the invoke inst and remove the call.
495 CI.replaceAllUsesWith(II);
Dan Gohmande087372008-06-21 22:08:46 +0000496 CI.eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497
498 // The old terminator is useless now that we have the invoke inst.
Dan Gohmande087372008-06-21 22:08:46 +0000499 Term->eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 ++CallsTransformed;
501}
502
503// visitInvokeInst - Converting the "invoke" instruction is fairly
504// straight-forward. The old exception part is replaced by a query asking
505// if this is a longjmp exception. If it is, then it goes to the longjmp
506// exception blocks. Otherwise, control is passed the old exception.
507void LowerSetJmp::visitInvokeInst(InvokeInst& II)
508{
509 if (II.getCalledFunction())
510 if (!IsTransformableFunction(II.getCalledFunction()->getName()) ||
511 II.getCalledFunction()->isIntrinsic()) return;
512
513 BasicBlock* BB = II.getParent();
514
515 // If not reachable from a setjmp call, don't transform.
516 if (!DFSBlocks.count(BB)) return;
517
518 BasicBlock* ExceptBB = II.getUnwindDest();
519
520 Function* Func = BB->getParent();
Owen Anderson35b47072009-08-13 21:58:54 +0000521 BasicBlock* NewExceptBB = BasicBlock::Create(II.getContext(),
522 "InvokeExcept", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523
524 // If this is a longjmp exception, then branch to the preliminary BB of
525 // the longjmp exception handling. Otherwise, go to the old exception.
Dan Gohman20eea1b2008-06-19 17:53:32 +0000526 CallInst* IsLJExcept = CallInst::Create(IsLJException, "IsLJExcept",
527 NewExceptBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528
Gabor Greifd6da1d02008-04-06 20:25:17 +0000529 BranchInst::Create(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000530
531 II.setUnwindDest(NewExceptBB);
532 ++InvokesTransformed;
533}
534
535// visitReturnInst - We want to destroy the setjmp map upon exit from the
536// function.
537void LowerSetJmp::visitReturnInst(ReturnInst &RI) {
538 Function* Func = RI.getParent()->getParent();
Gabor Greifd6da1d02008-04-06 20:25:17 +0000539 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &RI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540}
541
542// visitUnwindInst - We want to destroy the setjmp map upon exit from the
543// function.
544void LowerSetJmp::visitUnwindInst(UnwindInst &UI) {
545 Function* Func = UI.getParent()->getParent();
Gabor Greifd6da1d02008-04-06 20:25:17 +0000546 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &UI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547}
548
549ModulePass *llvm::createLowerSetJmpPass() {
550 return new LowerSetJmp();
551}
552