blob: d7f22fb9cb75d5ff2cbb89335a244e32ea10cf32 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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"
42#include "llvm/Module.h"
43#include "llvm/Pass.h"
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000044#include "llvm/Support/CFG.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000045#include "llvm/Support/InstVisitor.h"
Chris Lattnera2dc7272004-03-14 02:13:38 +000046#include "llvm/Transforms/Utils/Local.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000047#include "llvm/ADT/DepthFirstIterator.h"
48#include "llvm/ADT/Statistic.h"
49#include "llvm/ADT/StringExtras.h"
50#include "llvm/ADT/VectorExtras.h"
Chris Lattner1e2385b2003-11-21 21:54:22 +000051using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000052
Chris Lattner86453c52006-12-19 22:09:18 +000053STATISTIC(LongJmpsTransformed, "Number of longjmps transformed");
54STATISTIC(SetJmpsTransformed , "Number of setjmps transformed");
55STATISTIC(CallsTransformed , "Number of calls invokified");
56STATISTIC(InvokesTransformed , "Number of invokes modified");
Chris Lattner6420f1c2003-09-15 04:56:27 +000057
Chris Lattner86453c52006-12-19 22:09:18 +000058namespace {
Chris Lattner6420f1c2003-09-15 04:56:27 +000059 //===--------------------------------------------------------------------===//
Chris Lattnerbc53e5e2004-10-07 06:00:24 +000060 // LowerSetJmp pass implementation.
Chris Lattnerb12914b2004-09-20 04:48:05 +000061 class LowerSetJmp : public ModulePass,
Chris Lattner6420f1c2003-09-15 04:56:27 +000062 public InstVisitor<LowerSetJmp> {
63 // LLVM library functions...
64 Function* InitSJMap; // __llvm_sjljeh_init_setjmpmap
65 Function* DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
66 Function* AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
67 Function* ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
68 Function* TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
69 Function* IsLJException; // __llvm_sjljeh_is_longjmp_exception
70 Function* GetLJValue; // __llvm_sjljeh_get_longjmp_value
71
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
109 bool IsTransformableFunction(const std::string& Name);
110 public:
111 void visitCallInst(CallInst& CI);
112 void visitInvokeInst(InvokeInst& II);
113 void visitReturnInst(ReturnInst& RI);
114 void visitUnwindInst(UnwindInst& UI);
115
Chris Lattnerb12914b2004-09-20 04:48:05 +0000116 bool runOnModule(Module& M);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000117 bool doInitialization(Module& M);
118 };
119
Chris Lattner7f8897f2006-08-27 22:42:52 +0000120 RegisterPass<LowerSetJmp> X("lowersetjmp", "Lower Set Jump");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000121} // end anonymous namespace
122
123// run - Run the transformation on the program. We grab the function
124// prototypes for longjmp and setjmp. If they are used in the program,
125// then we can go directly to the places they're at and transform them.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000126bool LowerSetJmp::runOnModule(Module& M) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000127 bool Changed = false;
128
129 // These are what the functions are called.
130 Function* SetJmp = M.getNamedFunction("llvm.setjmp");
131 Function* LongJmp = M.getNamedFunction("llvm.longjmp");
132
133 // This program doesn't have longjmp and setjmp calls.
134 if ((!LongJmp || LongJmp->use_empty()) &&
135 (!SetJmp || SetJmp->use_empty())) return false;
136
137 // Initialize some values and functions we'll need to transform the
138 // setjmp/longjmp functions.
139 doInitialization(M);
140
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000141 if (SetJmp) {
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000142 for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end();
143 B != E; ++B) {
Chris Lattner6d3906b2003-10-13 01:02:33 +0000144 BasicBlock* BB = cast<Instruction>(*B)->getParent();
Chris Lattner8b716f62003-10-13 16:49:21 +0000145 for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, DFSBlocks),
146 E = df_ext_end(BB, DFSBlocks); I != E; ++I)
Chris Lattner46e033d2003-10-13 16:44:50 +0000147 /* empty */;
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000148 }
149
Chris Lattner6420f1c2003-09-15 04:56:27 +0000150 while (!SetJmp->use_empty()) {
151 assert(isa<CallInst>(SetJmp->use_back()) &&
152 "User of setjmp intrinsic not a call?");
153 TransformSetJmpCall(cast<CallInst>(SetJmp->use_back()));
154 Changed = true;
155 }
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000156 }
Chris Lattner6420f1c2003-09-15 04:56:27 +0000157
158 if (LongJmp)
159 while (!LongJmp->use_empty()) {
160 assert(isa<CallInst>(LongJmp->use_back()) &&
161 "User of longjmp intrinsic not a call?");
162 TransformLongJmpCall(cast<CallInst>(LongJmp->use_back()));
163 Changed = true;
164 }
165
166 // Now go through the affected functions and convert calls and invokes
167 // to new invokes...
168 for (std::map<Function*, AllocaInst*>::iterator
169 B = SJMap.begin(), E = SJMap.end(); B != E; ++B) {
170 Function* F = B->first;
171 for (Function::iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB)
172 for (BasicBlock::iterator IB = BB->begin(), IE = BB->end(); IB != IE; ) {
173 visit(*IB++);
174 if (IB != BB->end() && IB->getParent() != BB)
175 break; // The next instruction got moved to a different block!
176 }
177 }
178
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000179 DFSBlocks.clear();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000180 SJMap.clear();
181 RethrowBBMap.clear();
182 PrelimBBMap.clear();
183 SwitchValMap.clear();
184 SetJmpIDMap.clear();
185
186 return Changed;
187}
188
189// doInitialization - For the lower long/setjmp pass, this ensures that a
190// module contains a declaration for the intrisic functions we are going
191// to call to convert longjmp and setjmp calls.
192//
193// This function is always successful, unless it isn't.
194bool LowerSetJmp::doInitialization(Module& M)
195{
196 const Type *SBPTy = PointerType::get(Type::SByteTy);
197 const Type *SBPPTy = PointerType::get(SBPTy);
198
199 // N.B. See llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h for
200 // a description of the following library functions.
201
202 // void __llvm_sjljeh_init_setjmpmap(void**)
203 InitSJMap = M.getOrInsertFunction("__llvm_sjljeh_init_setjmpmap",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000204 Type::VoidTy, SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000205 // void __llvm_sjljeh_destroy_setjmpmap(void**)
206 DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000207 Type::VoidTy, SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000208
209 // void __llvm_sjljeh_add_setjmp_to_map(void**, void*, unsigned)
210 AddSJToMap = M.getOrInsertFunction("__llvm_sjljeh_add_setjmp_to_map",
211 Type::VoidTy, SBPPTy, SBPTy,
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000212 Type::UIntTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000213
214 // void __llvm_sjljeh_throw_longjmp(int*, int)
215 ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000216 Type::VoidTy, SBPTy, Type::IntTy,
217 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000218
219 // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **)
220 TryCatchLJ =
221 M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000222 Type::UIntTy, SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000223
224 // bool __llvm_sjljeh_is_longjmp_exception()
225 IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000226 Type::BoolTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000227
228 // int __llvm_sjljeh_get_longjmp_value()
229 GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000230 Type::IntTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000231 return true;
232}
233
234// IsTransformableFunction - Return true if the function name isn't one
235// of the ones we don't want transformed. Currently, don't transform any
236// "llvm.{setjmp,longjmp}" functions and none of the setjmp/longjmp error
237// handling functions (beginning with __llvm_sjljeh_...they don't throw
238// exceptions).
Chris Lattnercb2d1a22005-04-21 16:46:46 +0000239bool LowerSetJmp::IsTransformableFunction(const std::string& Name) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000240 std::string SJLJEh("__llvm_sjljeh");
241
Chris Lattner77b398c2003-09-15 05:43:05 +0000242 if (Name.size() > SJLJEh.size())
243 return std::string(Name.begin(), Name.begin() + SJLJEh.size()) != SJLJEh;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000244
245 return true;
246}
247
248// TransformLongJmpCall - Transform a longjmp call into a call to the
249// internal __llvm_sjljeh_throw_longjmp function. It then takes care of
250// throwing the exception for us.
251void LowerSetJmp::TransformLongJmpCall(CallInst* Inst)
252{
253 const Type* SBPTy = PointerType::get(Type::SByteTy);
254
255 // Create the call to "__llvm_sjljeh_throw_longjmp". This takes the
256 // same parameters as "longjmp", except that the buffer is cast to a
257 // char*. It returns "void", so it doesn't need to replace any of
258 // Inst's uses and doesn't get a name.
Reid Spencer3da59db2006-11-27 01:05:10 +0000259 CastInst* CI =
260 new BitCastInst(Inst->getOperand(1), SBPTy, "LJBuf", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000261 new CallInst(ThrowLongJmp, make_vector<Value*>(CI, Inst->getOperand(2), 0),
262 "", Inst);
263
264 SwitchValuePair& SVP = SwitchValMap[Inst->getParent()->getParent()];
265
266 // If the function has a setjmp call in it (they are transformed first)
267 // we should branch to the basic block that determines if this longjmp
268 // is applicable here. Otherwise, issue an unwind.
269 if (SVP.first)
270 new BranchInst(SVP.first->getParent(), Inst);
271 else
272 new UnwindInst(Inst);
273
Chris Lattner3987abd2005-05-05 15:47:43 +0000274 // Remove all insts after the branch/unwind inst. Go from back to front to
275 // avoid replaceAllUsesWith if possible.
276 BasicBlock *BB = Inst->getParent();
277 Instruction *Removed;
278 do {
279 Removed = &BB->back();
280 // If the removed instructions have any users, replace them now.
281 if (!Removed->use_empty())
282 Removed->replaceAllUsesWith(UndefValue::get(Removed->getType()));
283 Removed->eraseFromParent();
284 } while (Removed != Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000285
286 ++LongJmpsTransformed;
287}
288
289// GetSetJmpMap - Retrieve (create and initialize, if necessary) the
290// setjmp map. This map is going to hold information about which setjmps
291// were called (each setjmp gets its own number) and with which buffer it
292// was called. There can be only one!
293AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func)
294{
295 if (SJMap[Func]) return SJMap[Func];
296
297 // Insert the setjmp map initialization before the first instruction in
298 // the function.
Chris Lattner02a3be02003-09-20 14:39:18 +0000299 Instruction* Inst = Func->getEntryBlock().begin();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000300 assert(Inst && "Couldn't find even ONE instruction in entry block!");
301
302 // Fill in the alloca and call to initialize the SJ map.
303 const Type *SBPTy = PointerType::get(Type::SByteTy);
304 AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst);
305 new CallInst(InitSJMap, make_vector<Value*>(Map, 0), "", Inst);
306 return SJMap[Func] = Map;
307}
308
309// GetRethrowBB - Only one rethrow basic block is needed per function.
310// If this is a longjmp exception but not handled in this block, this BB
311// performs the rethrow.
312BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func)
313{
314 if (RethrowBBMap[Func]) return RethrowBBMap[Func];
315
316 // The basic block we're going to jump to if we need to rethrow the
317 // exception.
318 BasicBlock* Rethrow = new BasicBlock("RethrowExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000319
320 // Fill in the "Rethrow" BB with a call to rethrow the exception. This
321 // is the last instruction in the BB since at this point the runtime
322 // should exit this function and go to the next function.
Chris Lattnerf8485c62003-11-20 18:25:24 +0000323 new UnwindInst(Rethrow);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000324 return RethrowBBMap[Func] = Rethrow;
325}
326
327// GetSJSwitch - Return the switch statement that controls which handler
328// (if any) gets called and the value returned to that handler.
329LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func,
330 BasicBlock* Rethrow)
331{
332 if (SwitchValMap[Func].first) return SwitchValMap[Func];
333
334 BasicBlock* LongJmpPre = new BasicBlock("LongJmpBlkPre", Func);
335 BasicBlock::InstListType& LongJmpPreIL = LongJmpPre->getInstList();
336
337 // Keep track of the preliminary basic block for some of the other
338 // transformations.
339 PrelimBBMap[Func] = LongJmpPre;
340
341 // Grab the exception.
342 CallInst* Cond = new
343 CallInst(IsLJException, std::vector<Value*>(), "IsLJExcept");
344 LongJmpPreIL.push_back(Cond);
345
346 // The "decision basic block" gets the number associated with the
347 // setjmp call returning to switch on and the value returned by
348 // longjmp.
349 BasicBlock* DecisionBB = new BasicBlock("LJDecisionBB", Func);
350 BasicBlock::InstListType& DecisionBBIL = DecisionBB->getInstList();
351
Chris Lattnerf8485c62003-11-20 18:25:24 +0000352 new BranchInst(DecisionBB, Rethrow, Cond, LongJmpPre);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000353
354 // Fill in the "decision" basic block.
355 CallInst* LJVal = new CallInst(GetLJValue, std::vector<Value*>(), "LJVal");
356 DecisionBBIL.push_back(LJVal);
357 CallInst* SJNum = new
358 CallInst(TryCatchLJ, make_vector<Value*>(GetSetJmpMap(Func), 0), "SJNum");
359 DecisionBBIL.push_back(SJNum);
360
Chris Lattner667fdae2005-01-29 00:38:45 +0000361 SwitchInst* SI = new SwitchInst(SJNum, Rethrow, 0, DecisionBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000362 return SwitchValMap[Func] = SwitchValuePair(SI, LJVal);
363}
364
365// TransformSetJmpCall - The setjmp call is a bit trickier to transform.
366// We're going to convert all setjmp calls to nops. Then all "call" and
367// "invoke" instructions in the function are converted to "invoke" where
368// the "except" branch is used when returning from a longjmp call.
369void LowerSetJmp::TransformSetJmpCall(CallInst* Inst)
370{
371 BasicBlock* ABlock = Inst->getParent();
372 Function* Func = ABlock->getParent();
373
374 // Add this setjmp to the setjmp map.
375 const Type* SBPTy = PointerType::get(Type::SByteTy);
Reid Spencer3da59db2006-11-27 01:05:10 +0000376 CastInst* BufPtr =
377 new BitCastInst(Inst->getOperand(1), SBPTy, "SBJmpBuf", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000378 new CallInst(AddSJToMap,
379 make_vector<Value*>(GetSetJmpMap(Func), BufPtr,
Reid Spencerb83eb642006-10-20 07:07:24 +0000380 ConstantInt::get(Type::UIntTy,
Chris Lattner6420f1c2003-09-15 04:56:27 +0000381 SetJmpIDMap[Func]++), 0),
382 "", Inst);
383
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000384 // We are guaranteed that there are no values live across basic blocks
385 // (because we are "not in SSA form" yet), but there can still be values live
386 // in basic blocks. Because of this, splitting the setjmp block can cause
387 // values above the setjmp to not dominate uses which are after the setjmp
388 // call. For all of these occasions, we must spill the value to the stack.
389 //
390 std::set<Instruction*> InstrsAfterCall;
391
392 // The call is probably very close to the end of the basic block, for the
393 // common usage pattern of: 'if (setjmp(...))', so keep track of the
394 // instructions after the call.
395 for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end();
396 I != E; ++I)
Misha Brukmanfd939082005-04-21 23:48:37 +0000397 InstrsAfterCall.insert(I);
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000398
399 for (BasicBlock::iterator II = ABlock->begin();
400 II != BasicBlock::iterator(Inst); ++II)
401 // Loop over all of the uses of instruction. If any of them are after the
402 // call, "spill" the value to the stack.
403 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
404 UI != E; ++UI)
405 if (cast<Instruction>(*UI)->getParent() != ABlock ||
406 InstrsAfterCall.count(cast<Instruction>(*UI))) {
407 DemoteRegToStack(*II);
408 break;
409 }
410 InstrsAfterCall.clear();
411
Chris Lattner6420f1c2003-09-15 04:56:27 +0000412 // Change the setjmp call into a branch statement. We'll remove the
413 // setjmp call in a little bit. No worries.
414 BasicBlock* SetJmpContBlock = ABlock->splitBasicBlock(Inst);
415 assert(SetJmpContBlock && "Couldn't split setjmp BB!!");
416
Chris Lattnercb2d1a22005-04-21 16:46:46 +0000417 SetJmpContBlock->setName(ABlock->getName()+"SetJmpCont");
418
419 // Add the SetJmpContBlock to the set of blocks reachable from a setjmp.
420 DFSBlocks.insert(SetJmpContBlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000421
Chris Lattner6420f1c2003-09-15 04:56:27 +0000422 // This PHI node will be in the new block created from the
423 // splitBasicBlock call.
424 PHINode* PHI = new PHINode(Type::IntTy, "SetJmpReturn", Inst);
425
426 // Coming from a call to setjmp, the return is 0.
427 PHI->addIncoming(ConstantInt::getNullValue(Type::IntTy), ABlock);
428
429 // Add the case for this setjmp's number...
430 SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func));
Reid Spencerb83eb642006-10-20 07:07:24 +0000431 SVP.first->addCase(ConstantInt::get(Type::UIntTy, SetJmpIDMap[Func] - 1),
Chris Lattner6420f1c2003-09-15 04:56:27 +0000432 SetJmpContBlock);
433
434 // Value coming from the handling of the exception.
435 PHI->addIncoming(SVP.second, SVP.second->getParent());
436
437 // Replace all uses of this instruction with the PHI node created by
438 // the eradication of setjmp.
439 Inst->replaceAllUsesWith(PHI);
440 Inst->getParent()->getInstList().erase(Inst);
441
442 ++SetJmpsTransformed;
443}
444
445// visitCallInst - This converts all LLVM call instructions into invoke
446// instructions. The except part of the invoke goes to the "LongJmpBlkPre"
447// that grabs the exception and proceeds to determine if it's a longjmp
448// exception or not.
449void LowerSetJmp::visitCallInst(CallInst& CI)
450{
451 if (CI.getCalledFunction())
452 if (!IsTransformableFunction(CI.getCalledFunction()->getName()) ||
453 CI.getCalledFunction()->isIntrinsic()) return;
454
455 BasicBlock* OldBB = CI.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000456
457 // If not reachable from a setjmp call, don't transform.
458 if (!DFSBlocks.count(OldBB)) return;
459
Chris Lattner6420f1c2003-09-15 04:56:27 +0000460 BasicBlock* NewBB = OldBB->splitBasicBlock(CI);
461 assert(NewBB && "Couldn't split BB of \"call\" instruction!!");
Chris Lattnerd286b242005-06-15 22:49:30 +0000462 DFSBlocks.insert(NewBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000463 NewBB->setName("Call2Invoke");
464
Chris Lattner6d3906b2003-10-13 01:02:33 +0000465 Function* Func = OldBB->getParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000466
467 // Construct the new "invoke" instruction.
468 TerminatorInst* Term = OldBB->getTerminator();
469 std::vector<Value*> Params(CI.op_begin() + 1, CI.op_end());
470 InvokeInst* II = new
471 InvokeInst(CI.getCalledValue(), NewBB, PrelimBBMap[Func],
Misha Brukmanfd939082005-04-21 23:48:37 +0000472 Params, CI.getName(), Term);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000473
474 // Replace the old call inst with the invoke inst and remove the call.
475 CI.replaceAllUsesWith(II);
476 CI.getParent()->getInstList().erase(&CI);
477
478 // The old terminator is useless now that we have the invoke inst.
479 Term->getParent()->getInstList().erase(Term);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000480 ++CallsTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000481}
482
483// visitInvokeInst - Converting the "invoke" instruction is fairly
484// straight-forward. The old exception part is replaced by a query asking
485// if this is a longjmp exception. If it is, then it goes to the longjmp
486// exception blocks. Otherwise, control is passed the old exception.
487void LowerSetJmp::visitInvokeInst(InvokeInst& II)
488{
489 if (II.getCalledFunction())
490 if (!IsTransformableFunction(II.getCalledFunction()->getName()) ||
491 II.getCalledFunction()->isIntrinsic()) return;
492
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000493 BasicBlock* BB = II.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000494
495 // If not reachable from a setjmp call, don't transform.
496 if (!DFSBlocks.count(BB)) return;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000497
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000498 BasicBlock* ExceptBB = II.getUnwindDest();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000499
Chris Lattner6d3906b2003-10-13 01:02:33 +0000500 Function* Func = BB->getParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000501 BasicBlock* NewExceptBB = new BasicBlock("InvokeExcept", Func);
502 BasicBlock::InstListType& InstList = NewExceptBB->getInstList();
503
504 // If this is a longjmp exception, then branch to the preliminary BB of
505 // the longjmp exception handling. Otherwise, go to the old exception.
506 CallInst* IsLJExcept = new
507 CallInst(IsLJException, std::vector<Value*>(), "IsLJExcept");
508 InstList.push_back(IsLJExcept);
509
Chris Lattnerf8485c62003-11-20 18:25:24 +0000510 new BranchInst(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000511
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000512 II.setUnwindDest(NewExceptBB);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000513 ++InvokesTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000514}
515
516// visitReturnInst - We want to destroy the setjmp map upon exit from the
517// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000518void LowerSetJmp::visitReturnInst(ReturnInst &RI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000519 Function* Func = RI.getParent()->getParent();
520 new CallInst(DestroySJMap, make_vector<Value*>(GetSetJmpMap(Func), 0),
521 "", &RI);
522}
523
524// visitUnwindInst - We want to destroy the setjmp map upon exit from the
525// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000526void LowerSetJmp::visitUnwindInst(UnwindInst &UI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000527 Function* Func = UI.getParent()->getParent();
528 new CallInst(DestroySJMap, make_vector<Value*>(GetSetJmpMap(Func), 0),
529 "", &UI);
530}
531
Chris Lattnerb12914b2004-09-20 04:48:05 +0000532ModulePass *llvm::createLowerSetJmpPass() {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000533 return new LowerSetJmp();
534}
Brian Gaeked0fde302003-11-11 22:41:34 +0000535