blob: bfa2bd9bc245740c4f81559d2c2d82d8401ed29c [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"
46#include "llvm/Support/Compiler.h"
47#include "llvm/Support/InstVisitor.h"
48#include "llvm/Transforms/Utils/Local.h"
49#include "llvm/ADT/DepthFirstIterator.h"
50#include "llvm/ADT/Statistic.h"
51#include "llvm/ADT/StringExtras.h"
52#include "llvm/ADT/VectorExtras.h"
David Greeneb1c4a7b2007-08-01 03:43:44 +000053#include "llvm/ADT/SmallVector.h"
Dan Gohman249ddbf2008-03-21 23:51:57 +000054#include <map>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055using namespace llvm;
56
57STATISTIC(LongJmpsTransformed, "Number of longjmps transformed");
58STATISTIC(SetJmpsTransformed , "Number of setjmps transformed");
59STATISTIC(CallsTransformed , "Number of calls invokified");
60STATISTIC(InvokesTransformed , "Number of invokes modified");
61
62namespace {
63 //===--------------------------------------------------------------------===//
64 // LowerSetJmp pass implementation.
65 class VISIBILITY_HIDDEN LowerSetJmp : public ModulePass,
66 public InstVisitor<LowerSetJmp> {
67 // LLVM library functions...
68 Constant *InitSJMap; // __llvm_sjljeh_init_setjmpmap
69 Constant *DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
70 Constant *AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
71 Constant *ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
72 Constant *TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
73 Constant *IsLJException; // __llvm_sjljeh_is_longjmp_exception
74 Constant *GetLJValue; // __llvm_sjljeh_get_longjmp_value
75
76 typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair;
77
78 // Keep track of those basic blocks reachable via a depth-first search of
79 // the CFG from a setjmp call. We only need to transform those "call" and
80 // "invoke" instructions that are reachable from the setjmp call site.
81 std::set<BasicBlock*> DFSBlocks;
82
83 // The setjmp map is going to hold information about which setjmps
84 // were called (each setjmp gets its own number) and with which
85 // buffer it was called.
86 std::map<Function*, AllocaInst*> SJMap;
87
88 // The rethrow basic block map holds the basic block to branch to if
89 // the exception isn't handled in the current function and needs to
90 // be rethrown.
91 std::map<const Function*, BasicBlock*> RethrowBBMap;
92
93 // The preliminary basic block map holds a basic block that grabs the
94 // exception and determines if it's handled by the current function.
95 std::map<const Function*, BasicBlock*> PrelimBBMap;
96
97 // The switch/value map holds a switch inst/call inst pair. The
98 // switch inst controls which handler (if any) gets called and the
99 // value is the value returned to that handler by the call to
100 // __llvm_sjljeh_get_longjmp_value.
101 std::map<const Function*, SwitchValuePair> SwitchValMap;
102
103 // A map of which setjmps we've seen so far in a function.
104 std::map<const Function*, unsigned> SetJmpIDMap;
105
106 AllocaInst* GetSetJmpMap(Function* Func);
107 BasicBlock* GetRethrowBB(Function* Func);
108 SwitchValuePair GetSJSwitch(Function* Func, BasicBlock* Rethrow);
109
110 void TransformLongJmpCall(CallInst* Inst);
111 void TransformSetJmpCall(CallInst* Inst);
112
113 bool IsTransformableFunction(const std::string& Name);
114 public:
115 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +0000116 LowerSetJmp() : ModulePass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117
118 void visitCallInst(CallInst& CI);
119 void visitInvokeInst(InvokeInst& II);
120 void visitReturnInst(ReturnInst& RI);
121 void visitUnwindInst(UnwindInst& UI);
122
123 bool runOnModule(Module& M);
124 bool doInitialization(Module& M);
125 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126} // end anonymous namespace
127
Dan Gohman089efff2008-05-13 00:00:25 +0000128char LowerSetJmp::ID = 0;
129static RegisterPass<LowerSetJmp> X("lowersetjmp", "Lower Set Jump");
130
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131// run - Run the transformation on the program. We grab the function
132// prototypes for longjmp and setjmp. If they are used in the program,
133// then we can go directly to the places they're at and transform them.
134bool LowerSetJmp::runOnModule(Module& M) {
135 bool Changed = false;
136
Owen Andersone1f1f822009-07-16 18:04:31 +0000137 Context = &M.getContext();
138
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 // These are what the functions are called.
140 Function* SetJmp = M.getFunction("llvm.setjmp");
141 Function* LongJmp = M.getFunction("llvm.longjmp");
142
143 // This program doesn't have longjmp and setjmp calls.
144 if ((!LongJmp || LongJmp->use_empty()) &&
145 (!SetJmp || SetJmp->use_empty())) return false;
146
147 // Initialize some values and functions we'll need to transform the
148 // setjmp/longjmp functions.
149 doInitialization(M);
150
151 if (SetJmp) {
152 for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end();
153 B != E; ++B) {
154 BasicBlock* BB = cast<Instruction>(*B)->getParent();
155 for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, DFSBlocks),
156 E = df_ext_end(BB, DFSBlocks); I != E; ++I)
157 /* empty */;
158 }
159
160 while (!SetJmp->use_empty()) {
161 assert(isa<CallInst>(SetJmp->use_back()) &&
162 "User of setjmp intrinsic not a call?");
163 TransformSetJmpCall(cast<CallInst>(SetJmp->use_back()));
164 Changed = true;
165 }
166 }
167
168 if (LongJmp)
169 while (!LongJmp->use_empty()) {
170 assert(isa<CallInst>(LongJmp->use_back()) &&
171 "User of longjmp intrinsic not a call?");
172 TransformLongJmpCall(cast<CallInst>(LongJmp->use_back()));
173 Changed = true;
174 }
175
176 // Now go through the affected functions and convert calls and invokes
177 // to new invokes...
178 for (std::map<Function*, AllocaInst*>::iterator
179 B = SJMap.begin(), E = SJMap.end(); B != E; ++B) {
180 Function* F = B->first;
181 for (Function::iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB)
182 for (BasicBlock::iterator IB = BB->begin(), IE = BB->end(); IB != IE; ) {
183 visit(*IB++);
184 if (IB != BB->end() && IB->getParent() != BB)
185 break; // The next instruction got moved to a different block!
186 }
187 }
188
189 DFSBlocks.clear();
190 SJMap.clear();
191 RethrowBBMap.clear();
192 PrelimBBMap.clear();
193 SwitchValMap.clear();
194 SetJmpIDMap.clear();
195
196 return Changed;
197}
198
199// doInitialization - For the lower long/setjmp pass, this ensures that a
200// module contains a declaration for the intrisic functions we are going
201// to call to convert longjmp and setjmp calls.
202//
203// This function is always successful, unless it isn't.
204bool LowerSetJmp::doInitialization(Module& M)
205{
Owen Anderson086ea052009-07-06 01:34:54 +0000206 const Type *SBPTy = Context->getPointerTypeUnqual(Type::Int8Ty);
207 const Type *SBPPTy = Context->getPointerTypeUnqual(SBPTy);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208
209 // N.B. See llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h for
210 // a description of the following library functions.
211
212 // void __llvm_sjljeh_init_setjmpmap(void**)
213 InitSJMap = M.getOrInsertFunction("__llvm_sjljeh_init_setjmpmap",
214 Type::VoidTy, SBPPTy, (Type *)0);
215 // void __llvm_sjljeh_destroy_setjmpmap(void**)
216 DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap",
217 Type::VoidTy, SBPPTy, (Type *)0);
218
219 // void __llvm_sjljeh_add_setjmp_to_map(void**, void*, unsigned)
220 AddSJToMap = M.getOrInsertFunction("__llvm_sjljeh_add_setjmp_to_map",
221 Type::VoidTy, SBPPTy, SBPTy,
222 Type::Int32Ty, (Type *)0);
223
224 // void __llvm_sjljeh_throw_longjmp(int*, int)
225 ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp",
226 Type::VoidTy, SBPTy, Type::Int32Ty,
227 (Type *)0);
228
229 // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **)
230 TryCatchLJ =
231 M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception",
232 Type::Int32Ty, SBPPTy, (Type *)0);
233
234 // bool __llvm_sjljeh_is_longjmp_exception()
235 IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception",
236 Type::Int1Ty, (Type *)0);
237
238 // int __llvm_sjljeh_get_longjmp_value()
239 GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value",
240 Type::Int32Ty, (Type *)0);
241 return true;
242}
243
244// IsTransformableFunction - Return true if the function name isn't one
245// of the ones we don't want transformed. Currently, don't transform any
246// "llvm.{setjmp,longjmp}" functions and none of the setjmp/longjmp error
247// handling functions (beginning with __llvm_sjljeh_...they don't throw
248// exceptions).
249bool LowerSetJmp::IsTransformableFunction(const std::string& Name) {
250 std::string SJLJEh("__llvm_sjljeh");
251
252 if (Name.size() > SJLJEh.size())
253 return std::string(Name.begin(), Name.begin() + SJLJEh.size()) != SJLJEh;
254
255 return true;
256}
257
258// TransformLongJmpCall - Transform a longjmp call into a call to the
259// internal __llvm_sjljeh_throw_longjmp function. It then takes care of
260// throwing the exception for us.
261void LowerSetJmp::TransformLongJmpCall(CallInst* Inst)
262{
Owen Anderson086ea052009-07-06 01:34:54 +0000263 const Type* SBPTy = Context->getPointerTypeUnqual(Type::Int8Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264
265 // Create the call to "__llvm_sjljeh_throw_longjmp". This takes the
266 // same parameters as "longjmp", except that the buffer is cast to a
267 // char*. It returns "void", so it doesn't need to replace any of
268 // Inst's uses and doesn't get a name.
269 CastInst* CI =
270 new BitCastInst(Inst->getOperand(1), SBPTy, "LJBuf", Inst);
David Greeneb1c4a7b2007-08-01 03:43:44 +0000271 SmallVector<Value *, 2> Args;
272 Args.push_back(CI);
273 Args.push_back(Inst->getOperand(2));
Gabor Greifd6da1d02008-04-06 20:25:17 +0000274 CallInst::Create(ThrowLongJmp, Args.begin(), Args.end(), "", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275
276 SwitchValuePair& SVP = SwitchValMap[Inst->getParent()->getParent()];
277
278 // If the function has a setjmp call in it (they are transformed first)
279 // we should branch to the basic block that determines if this longjmp
280 // is applicable here. Otherwise, issue an unwind.
281 if (SVP.first)
Gabor Greifd6da1d02008-04-06 20:25:17 +0000282 BranchInst::Create(SVP.first->getParent(), Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 else
284 new UnwindInst(Inst);
285
286 // Remove all insts after the branch/unwind inst. Go from back to front to
287 // avoid replaceAllUsesWith if possible.
288 BasicBlock *BB = Inst->getParent();
289 Instruction *Removed;
290 do {
291 Removed = &BB->back();
292 // If the removed instructions have any users, replace them now.
293 if (!Removed->use_empty())
Owen Anderson086ea052009-07-06 01:34:54 +0000294 Removed->replaceAllUsesWith(Context->getUndef(Removed->getType()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 Removed->eraseFromParent();
296 } while (Removed != Inst);
297
298 ++LongJmpsTransformed;
299}
300
301// GetSetJmpMap - Retrieve (create and initialize, if necessary) the
302// setjmp map. This map is going to hold information about which setjmps
303// were called (each setjmp gets its own number) and with which buffer it
304// was called. There can be only one!
305AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func)
306{
307 if (SJMap[Func]) return SJMap[Func];
308
309 // Insert the setjmp map initialization before the first instruction in
310 // the function.
311 Instruction* Inst = Func->getEntryBlock().begin();
312 assert(Inst && "Couldn't find even ONE instruction in entry block!");
313
314 // Fill in the alloca and call to initialize the SJ map.
Owen Anderson086ea052009-07-06 01:34:54 +0000315 const Type *SBPTy = Context->getPointerTypeUnqual(Type::Int8Ty);
Owen Anderson140166d2009-07-15 23:53:25 +0000316 AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst);
Gabor Greifd6da1d02008-04-06 20:25:17 +0000317 CallInst::Create(InitSJMap, Map, "", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318 return SJMap[Func] = Map;
319}
320
321// GetRethrowBB - Only one rethrow basic block is needed per function.
322// If this is a longjmp exception but not handled in this block, this BB
323// performs the rethrow.
324BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func)
325{
326 if (RethrowBBMap[Func]) return RethrowBBMap[Func];
327
328 // The basic block we're going to jump to if we need to rethrow the
329 // exception.
Gabor Greifd6da1d02008-04-06 20:25:17 +0000330 BasicBlock* Rethrow = BasicBlock::Create("RethrowExcept", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331
332 // Fill in the "Rethrow" BB with a call to rethrow the exception. This
333 // is the last instruction in the BB since at this point the runtime
334 // should exit this function and go to the next function.
335 new UnwindInst(Rethrow);
336 return RethrowBBMap[Func] = Rethrow;
337}
338
339// GetSJSwitch - Return the switch statement that controls which handler
340// (if any) gets called and the value returned to that handler.
341LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func,
342 BasicBlock* Rethrow)
343{
344 if (SwitchValMap[Func].first) return SwitchValMap[Func];
345
Gabor Greifd6da1d02008-04-06 20:25:17 +0000346 BasicBlock* LongJmpPre = BasicBlock::Create("LongJmpBlkPre", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347
348 // Keep track of the preliminary basic block for some of the other
349 // transformations.
350 PrelimBBMap[Func] = LongJmpPre;
351
352 // Grab the exception.
Dan Gohman20eea1b2008-06-19 17:53:32 +0000353 CallInst* Cond = CallInst::Create(IsLJException, "IsLJExcept", LongJmpPre);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354
355 // The "decision basic block" gets the number associated with the
356 // setjmp call returning to switch on and the value returned by
357 // longjmp.
Gabor Greifd6da1d02008-04-06 20:25:17 +0000358 BasicBlock* DecisionBB = BasicBlock::Create("LJDecisionBB", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359
Gabor Greifd6da1d02008-04-06 20:25:17 +0000360 BranchInst::Create(DecisionBB, Rethrow, Cond, LongJmpPre);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361
362 // Fill in the "decision" basic block.
Dan Gohman20eea1b2008-06-19 17:53:32 +0000363 CallInst* LJVal = CallInst::Create(GetLJValue, "LJVal", DecisionBB);
364 CallInst* SJNum = CallInst::Create(TryCatchLJ, GetSetJmpMap(Func), "SJNum",
365 DecisionBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366
Gabor Greifd6da1d02008-04-06 20:25:17 +0000367 SwitchInst* SI = SwitchInst::Create(SJNum, Rethrow, 0, DecisionBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Anderson086ea052009-07-06 01:34:54 +0000381 const Type* SBPTy = Context->getPointerTypeUnqual(Type::Int8Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382 CastInst* BufPtr =
383 new BitCastInst(Inst->getOperand(1), SBPTy, "SBJmpBuf", Inst);
384 std::vector<Value*> Args =
385 make_vector<Value*>(GetSetJmpMap(Func), BufPtr,
Owen Anderson086ea052009-07-06 01:34:54 +0000386 Context->getConstantInt(Type::Int32Ty,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387 SetJmpIDMap[Func]++), 0);
Gabor Greifd6da1d02008-04-06 20:25:17 +0000388 CallInst::Create(AddSJToMap, Args.begin(), Args.end(), "", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389
390 // We are guaranteed that there are no values live across basic blocks
391 // (because we are "not in SSA form" yet), but there can still be values live
392 // in basic blocks. Because of this, splitting the setjmp block can cause
393 // values above the setjmp to not dominate uses which are after the setjmp
394 // call. For all of these occasions, we must spill the value to the stack.
395 //
396 std::set<Instruction*> InstrsAfterCall;
397
398 // The call is probably very close to the end of the basic block, for the
399 // common usage pattern of: 'if (setjmp(...))', so keep track of the
400 // instructions after the call.
401 for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end();
402 I != E; ++I)
403 InstrsAfterCall.insert(I);
404
405 for (BasicBlock::iterator II = ABlock->begin();
406 II != BasicBlock::iterator(Inst); ++II)
407 // Loop over all of the uses of instruction. If any of them are after the
408 // call, "spill" the value to the stack.
409 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
410 UI != E; ++UI)
411 if (cast<Instruction>(*UI)->getParent() != ABlock ||
412 InstrsAfterCall.count(cast<Instruction>(*UI))) {
Owen Anderson140166d2009-07-15 23:53:25 +0000413 DemoteRegToStack(*II);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 break;
415 }
416 InstrsAfterCall.clear();
417
418 // Change the setjmp call into a branch statement. We'll remove the
419 // setjmp call in a little bit. No worries.
420 BasicBlock* SetJmpContBlock = ABlock->splitBasicBlock(Inst);
421 assert(SetJmpContBlock && "Couldn't split setjmp BB!!");
422
423 SetJmpContBlock->setName(ABlock->getName()+"SetJmpCont");
424
425 // Add the SetJmpContBlock to the set of blocks reachable from a setjmp.
426 DFSBlocks.insert(SetJmpContBlock);
427
428 // This PHI node will be in the new block created from the
429 // splitBasicBlock call.
Gabor Greifd6da1d02008-04-06 20:25:17 +0000430 PHINode* PHI = PHINode::Create(Type::Int32Ty, "SetJmpReturn", Inst);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431
432 // Coming from a call to setjmp, the return is 0.
Owen Anderson086ea052009-07-06 01:34:54 +0000433 PHI->addIncoming(Context->getNullValue(Type::Int32Ty), ABlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434
435 // Add the case for this setjmp's number...
436 SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func));
Owen Anderson086ea052009-07-06 01:34:54 +0000437 SVP.first->addCase(Context->getConstantInt(Type::Int32Ty,
438 SetJmpIDMap[Func] - 1),
439 SetJmpContBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440
441 // Value coming from the handling of the exception.
442 PHI->addIncoming(SVP.second, SVP.second->getParent());
443
444 // Replace all uses of this instruction with the PHI node created by
445 // the eradication of setjmp.
446 Inst->replaceAllUsesWith(PHI);
Dan Gohmande087372008-06-21 22:08:46 +0000447 Inst->eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448
449 ++SetJmpsTransformed;
450}
451
452// visitCallInst - This converts all LLVM call instructions into invoke
453// instructions. The except part of the invoke goes to the "LongJmpBlkPre"
454// that grabs the exception and proceeds to determine if it's a longjmp
455// exception or not.
456void LowerSetJmp::visitCallInst(CallInst& CI)
457{
458 if (CI.getCalledFunction())
459 if (!IsTransformableFunction(CI.getCalledFunction()->getName()) ||
460 CI.getCalledFunction()->isIntrinsic()) return;
461
462 BasicBlock* OldBB = CI.getParent();
463
464 // If not reachable from a setjmp call, don't transform.
465 if (!DFSBlocks.count(OldBB)) return;
466
467 BasicBlock* NewBB = OldBB->splitBasicBlock(CI);
468 assert(NewBB && "Couldn't split BB of \"call\" instruction!!");
469 DFSBlocks.insert(NewBB);
470 NewBB->setName("Call2Invoke");
471
472 Function* Func = OldBB->getParent();
473
474 // Construct the new "invoke" instruction.
475 TerminatorInst* Term = OldBB->getTerminator();
476 std::vector<Value*> Params(CI.op_begin() + 1, CI.op_end());
Gabor Greifd6da1d02008-04-06 20:25:17 +0000477 InvokeInst* II =
478 InvokeInst::Create(CI.getCalledValue(), NewBB, PrelimBBMap[Func],
479 Params.begin(), Params.end(), CI.getName(), Term);
Duncan Sandsf5588dc2007-11-27 13:23:08 +0000480 II->setCallingConv(CI.getCallingConv());
Devang Pateld222f862008-09-25 21:00:45 +0000481 II->setAttributes(CI.getAttributes());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482
483 // Replace the old call inst with the invoke inst and remove the call.
484 CI.replaceAllUsesWith(II);
Dan Gohmande087372008-06-21 22:08:46 +0000485 CI.eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486
487 // The old terminator is useless now that we have the invoke inst.
Dan Gohmande087372008-06-21 22:08:46 +0000488 Term->eraseFromParent();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 ++CallsTransformed;
490}
491
492// visitInvokeInst - Converting the "invoke" instruction is fairly
493// straight-forward. The old exception part is replaced by a query asking
494// if this is a longjmp exception. If it is, then it goes to the longjmp
495// exception blocks. Otherwise, control is passed the old exception.
496void LowerSetJmp::visitInvokeInst(InvokeInst& II)
497{
498 if (II.getCalledFunction())
499 if (!IsTransformableFunction(II.getCalledFunction()->getName()) ||
500 II.getCalledFunction()->isIntrinsic()) return;
501
502 BasicBlock* BB = II.getParent();
503
504 // If not reachable from a setjmp call, don't transform.
505 if (!DFSBlocks.count(BB)) return;
506
507 BasicBlock* ExceptBB = II.getUnwindDest();
508
509 Function* Func = BB->getParent();
Gabor Greifd6da1d02008-04-06 20:25:17 +0000510 BasicBlock* NewExceptBB = BasicBlock::Create("InvokeExcept", Func);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511
512 // If this is a longjmp exception, then branch to the preliminary BB of
513 // the longjmp exception handling. Otherwise, go to the old exception.
Dan Gohman20eea1b2008-06-19 17:53:32 +0000514 CallInst* IsLJExcept = CallInst::Create(IsLJException, "IsLJExcept",
515 NewExceptBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516
Gabor Greifd6da1d02008-04-06 20:25:17 +0000517 BranchInst::Create(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518
519 II.setUnwindDest(NewExceptBB);
520 ++InvokesTransformed;
521}
522
523// visitReturnInst - We want to destroy the setjmp map upon exit from the
524// function.
525void LowerSetJmp::visitReturnInst(ReturnInst &RI) {
526 Function* Func = RI.getParent()->getParent();
Gabor Greifd6da1d02008-04-06 20:25:17 +0000527 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &RI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528}
529
530// visitUnwindInst - We want to destroy the setjmp map upon exit from the
531// function.
532void LowerSetJmp::visitUnwindInst(UnwindInst &UI) {
533 Function* Func = UI.getParent()->getParent();
Gabor Greifd6da1d02008-04-06 20:25:17 +0000534 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &UI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535}
536
537ModulePass *llvm::createLowerSetJmpPass() {
538 return new LowerSetJmp();
539}
540