blob: 79f1c3e3e0e195a66da00c1d2a233acc058f501c [file] [log] [blame]
Chris Lattner6420f1c2003-09-15 04:56:27 +00001//===- LowerSetJmp.cpp - Code pertaining to lowering set/long jumps -------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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 Lattner1e2385b2003-11-21 21:54:22 +000036#include "llvm/Transforms/IPO.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000037#include "llvm/Constants.h"
38#include "llvm/DerivedTypes.h"
39#include "llvm/Instructions.h"
40#include "llvm/Intrinsics.h"
41#include "llvm/Module.h"
42#include "llvm/Pass.h"
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000043#include "llvm/Support/CFG.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000044#include "llvm/Support/InstVisitor.h"
Chris Lattnerd7222ec2003-11-06 19:18:49 +000045#include "llvm/Transforms/Utils/DemoteRegToStack.h"
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000046#include "Support/DepthFirstIterator.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000047#include "Support/Statistic.h"
48#include "Support/StringExtras.h"
49#include "Support/VectorExtras.h"
Chris Lattner1e2385b2003-11-21 21:54:22 +000050using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000051
Chris Lattner6420f1c2003-09-15 04:56:27 +000052namespace {
53 Statistic<> LongJmpsTransformed("lowersetjmp",
54 "Number of longjmps transformed");
55 Statistic<> SetJmpsTransformed("lowersetjmp",
56 "Number of setjmps transformed");
Chris Lattnerfe2143d2003-10-28 23:14:59 +000057 Statistic<> CallsTransformed("lowersetjmp",
58 "Number of calls invokified");
59 Statistic<> InvokesTransformed("lowersetjmp",
60 "Number of invokes modified");
Chris Lattner6420f1c2003-09-15 04:56:27 +000061
62 //===--------------------------------------------------------------------===//
63 // LowerSetJmp pass implementation. This is subclassed from the "Pass"
64 // class because it works on a module as a whole, not a function at a
65 // time.
66
67 class LowerSetJmp : public Pass,
68 public InstVisitor<LowerSetJmp> {
69 // LLVM library functions...
70 Function* InitSJMap; // __llvm_sjljeh_init_setjmpmap
71 Function* DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
72 Function* AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
73 Function* ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
74 Function* TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
75 Function* IsLJException; // __llvm_sjljeh_is_longjmp_exception
76 Function* GetLJValue; // __llvm_sjljeh_get_longjmp_value
77
78 typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair;
79
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000080 // Keep track of those basic blocks reachable via a depth-first search of
81 // the CFG from a setjmp call. We only need to transform those "call" and
82 // "invoke" instructions that are reachable from the setjmp call site.
83 std::set<BasicBlock*> DFSBlocks;
84
Chris Lattner6420f1c2003-09-15 04:56:27 +000085 // The setjmp map is going to hold information about which setjmps
86 // were called (each setjmp gets its own number) and with which
87 // buffer it was called.
88 std::map<Function*, AllocaInst*> SJMap;
89
90 // The rethrow basic block map holds the basic block to branch to if
91 // the exception isn't handled in the current function and needs to
92 // be rethrown.
93 std::map<const Function*, BasicBlock*> RethrowBBMap;
94
95 // The preliminary basic block map holds a basic block that grabs the
96 // exception and determines if it's handled by the current function.
97 std::map<const Function*, BasicBlock*> PrelimBBMap;
98
99 // The switch/value map holds a switch inst/call inst pair. The
100 // switch inst controls which handler (if any) gets called and the
101 // value is the value returned to that handler by the call to
102 // __llvm_sjljeh_get_longjmp_value.
103 std::map<const Function*, SwitchValuePair> SwitchValMap;
104
105 // A map of which setjmps we've seen so far in a function.
106 std::map<const Function*, unsigned> SetJmpIDMap;
107
108 AllocaInst* GetSetJmpMap(Function* Func);
109 BasicBlock* GetRethrowBB(Function* Func);
110 SwitchValuePair GetSJSwitch(Function* Func, BasicBlock* Rethrow);
111
112 void TransformLongJmpCall(CallInst* Inst);
113 void TransformSetJmpCall(CallInst* Inst);
114
115 bool IsTransformableFunction(const std::string& Name);
116 public:
117 void visitCallInst(CallInst& CI);
118 void visitInvokeInst(InvokeInst& II);
119 void visitReturnInst(ReturnInst& RI);
120 void visitUnwindInst(UnwindInst& UI);
121
122 bool run(Module& M);
123 bool doInitialization(Module& M);
124 };
125
126 RegisterOpt<LowerSetJmp> X("lowersetjmp", "Lower Set Jump");
127} // end anonymous namespace
128
129// 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::run(Module& M)
133{
134 bool Changed = false;
135
136 // These are what the functions are called.
137 Function* SetJmp = M.getNamedFunction("llvm.setjmp");
138 Function* LongJmp = M.getNamedFunction("llvm.longjmp");
139
140 // This program doesn't have longjmp and setjmp calls.
141 if ((!LongJmp || LongJmp->use_empty()) &&
142 (!SetJmp || SetJmp->use_empty())) return false;
143
144 // Initialize some values and functions we'll need to transform the
145 // setjmp/longjmp functions.
146 doInitialization(M);
147
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000148 if (SetJmp) {
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000149 for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end();
150 B != E; ++B) {
Chris Lattner6d3906b2003-10-13 01:02:33 +0000151 BasicBlock* BB = cast<Instruction>(*B)->getParent();
Chris Lattner8b716f62003-10-13 16:49:21 +0000152 for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, DFSBlocks),
153 E = df_ext_end(BB, DFSBlocks); I != E; ++I)
Chris Lattner46e033d2003-10-13 16:44:50 +0000154 /* empty */;
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000155 }
156
Chris Lattner6420f1c2003-09-15 04:56:27 +0000157 while (!SetJmp->use_empty()) {
158 assert(isa<CallInst>(SetJmp->use_back()) &&
159 "User of setjmp intrinsic not a call?");
160 TransformSetJmpCall(cast<CallInst>(SetJmp->use_back()));
161 Changed = true;
162 }
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000163 }
Chris Lattner6420f1c2003-09-15 04:56:27 +0000164
165 if (LongJmp)
166 while (!LongJmp->use_empty()) {
167 assert(isa<CallInst>(LongJmp->use_back()) &&
168 "User of longjmp intrinsic not a call?");
169 TransformLongJmpCall(cast<CallInst>(LongJmp->use_back()));
170 Changed = true;
171 }
172
173 // Now go through the affected functions and convert calls and invokes
174 // to new invokes...
175 for (std::map<Function*, AllocaInst*>::iterator
176 B = SJMap.begin(), E = SJMap.end(); B != E; ++B) {
177 Function* F = B->first;
178 for (Function::iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB)
179 for (BasicBlock::iterator IB = BB->begin(), IE = BB->end(); IB != IE; ) {
180 visit(*IB++);
181 if (IB != BB->end() && IB->getParent() != BB)
182 break; // The next instruction got moved to a different block!
183 }
184 }
185
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000186 DFSBlocks.clear();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000187 SJMap.clear();
188 RethrowBBMap.clear();
189 PrelimBBMap.clear();
190 SwitchValMap.clear();
191 SetJmpIDMap.clear();
192
193 return Changed;
194}
195
196// doInitialization - For the lower long/setjmp pass, this ensures that a
197// module contains a declaration for the intrisic functions we are going
198// to call to convert longjmp and setjmp calls.
199//
200// This function is always successful, unless it isn't.
201bool LowerSetJmp::doInitialization(Module& M)
202{
203 const Type *SBPTy = PointerType::get(Type::SByteTy);
204 const Type *SBPPTy = PointerType::get(SBPTy);
205
206 // N.B. See llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h for
207 // a description of the following library functions.
208
209 // void __llvm_sjljeh_init_setjmpmap(void**)
210 InitSJMap = M.getOrInsertFunction("__llvm_sjljeh_init_setjmpmap",
211 Type::VoidTy, SBPPTy, 0);
212 // void __llvm_sjljeh_destroy_setjmpmap(void**)
213 DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap",
214 Type::VoidTy, SBPPTy, 0);
215
216 // void __llvm_sjljeh_add_setjmp_to_map(void**, void*, unsigned)
217 AddSJToMap = M.getOrInsertFunction("__llvm_sjljeh_add_setjmp_to_map",
218 Type::VoidTy, SBPPTy, SBPTy,
219 Type::UIntTy, 0);
220
221 // void __llvm_sjljeh_throw_longjmp(int*, int)
222 ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp",
223 Type::VoidTy, SBPTy, Type::IntTy, 0);
224
225 // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **)
226 TryCatchLJ =
227 M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception",
228 Type::UIntTy, SBPPTy, 0);
229
230 // bool __llvm_sjljeh_is_longjmp_exception()
231 IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception",
232 Type::BoolTy, 0);
233
234 // int __llvm_sjljeh_get_longjmp_value()
235 GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value",
236 Type::IntTy, 0);
237 return true;
238}
239
240// IsTransformableFunction - Return true if the function name isn't one
241// of the ones we don't want transformed. Currently, don't transform any
242// "llvm.{setjmp,longjmp}" functions and none of the setjmp/longjmp error
243// handling functions (beginning with __llvm_sjljeh_...they don't throw
244// exceptions).
245bool LowerSetJmp::IsTransformableFunction(const std::string& Name)
246{
247 std::string SJLJEh("__llvm_sjljeh");
248
Chris Lattner77b398c2003-09-15 05:43:05 +0000249 if (Name.size() > SJLJEh.size())
250 return std::string(Name.begin(), Name.begin() + SJLJEh.size()) != SJLJEh;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000251
252 return true;
253}
254
255// TransformLongJmpCall - Transform a longjmp call into a call to the
256// internal __llvm_sjljeh_throw_longjmp function. It then takes care of
257// throwing the exception for us.
258void LowerSetJmp::TransformLongJmpCall(CallInst* Inst)
259{
260 const Type* SBPTy = PointerType::get(Type::SByteTy);
261
262 // Create the call to "__llvm_sjljeh_throw_longjmp". This takes the
263 // same parameters as "longjmp", except that the buffer is cast to a
264 // char*. It returns "void", so it doesn't need to replace any of
265 // Inst's uses and doesn't get a name.
266 CastInst* CI = new CastInst(Inst->getOperand(1), SBPTy, "LJBuf", Inst);
267 new CallInst(ThrowLongJmp, make_vector<Value*>(CI, Inst->getOperand(2), 0),
268 "", Inst);
269
270 SwitchValuePair& SVP = SwitchValMap[Inst->getParent()->getParent()];
271
272 // If the function has a setjmp call in it (they are transformed first)
273 // we should branch to the basic block that determines if this longjmp
274 // is applicable here. Otherwise, issue an unwind.
275 if (SVP.first)
276 new BranchInst(SVP.first->getParent(), Inst);
277 else
278 new UnwindInst(Inst);
279
280 // Remove all insts after the branch/unwind inst.
281 Inst->getParent()->getInstList().erase(Inst,
282 Inst->getParent()->getInstList().end());
283
284 ++LongJmpsTransformed;
285}
286
287// GetSetJmpMap - Retrieve (create and initialize, if necessary) the
288// setjmp map. This map is going to hold information about which setjmps
289// were called (each setjmp gets its own number) and with which buffer it
290// was called. There can be only one!
291AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func)
292{
293 if (SJMap[Func]) return SJMap[Func];
294
295 // Insert the setjmp map initialization before the first instruction in
296 // the function.
Chris Lattner02a3be02003-09-20 14:39:18 +0000297 Instruction* Inst = Func->getEntryBlock().begin();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000298 assert(Inst && "Couldn't find even ONE instruction in entry block!");
299
300 // Fill in the alloca and call to initialize the SJ map.
301 const Type *SBPTy = PointerType::get(Type::SByteTy);
302 AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst);
303 new CallInst(InitSJMap, make_vector<Value*>(Map, 0), "", Inst);
304 return SJMap[Func] = Map;
305}
306
307// GetRethrowBB - Only one rethrow basic block is needed per function.
308// If this is a longjmp exception but not handled in this block, this BB
309// performs the rethrow.
310BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func)
311{
312 if (RethrowBBMap[Func]) return RethrowBBMap[Func];
313
314 // The basic block we're going to jump to if we need to rethrow the
315 // exception.
316 BasicBlock* Rethrow = new BasicBlock("RethrowExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000317
318 // Fill in the "Rethrow" BB with a call to rethrow the exception. This
319 // is the last instruction in the BB since at this point the runtime
320 // should exit this function and go to the next function.
Chris Lattnerf8485c62003-11-20 18:25:24 +0000321 new UnwindInst(Rethrow);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000322 return RethrowBBMap[Func] = Rethrow;
323}
324
325// GetSJSwitch - Return the switch statement that controls which handler
326// (if any) gets called and the value returned to that handler.
327LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func,
328 BasicBlock* Rethrow)
329{
330 if (SwitchValMap[Func].first) return SwitchValMap[Func];
331
332 BasicBlock* LongJmpPre = new BasicBlock("LongJmpBlkPre", Func);
333 BasicBlock::InstListType& LongJmpPreIL = LongJmpPre->getInstList();
334
335 // Keep track of the preliminary basic block for some of the other
336 // transformations.
337 PrelimBBMap[Func] = LongJmpPre;
338
339 // Grab the exception.
340 CallInst* Cond = new
341 CallInst(IsLJException, std::vector<Value*>(), "IsLJExcept");
342 LongJmpPreIL.push_back(Cond);
343
344 // The "decision basic block" gets the number associated with the
345 // setjmp call returning to switch on and the value returned by
346 // longjmp.
347 BasicBlock* DecisionBB = new BasicBlock("LJDecisionBB", Func);
348 BasicBlock::InstListType& DecisionBBIL = DecisionBB->getInstList();
349
Chris Lattnerf8485c62003-11-20 18:25:24 +0000350 new BranchInst(DecisionBB, Rethrow, Cond, LongJmpPre);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000351
352 // Fill in the "decision" basic block.
353 CallInst* LJVal = new CallInst(GetLJValue, std::vector<Value*>(), "LJVal");
354 DecisionBBIL.push_back(LJVal);
355 CallInst* SJNum = new
356 CallInst(TryCatchLJ, make_vector<Value*>(GetSetJmpMap(Func), 0), "SJNum");
357 DecisionBBIL.push_back(SJNum);
358
Chris Lattnerf8485c62003-11-20 18:25:24 +0000359 SwitchInst* SI = new SwitchInst(SJNum, Rethrow, DecisionBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000360 return SwitchValMap[Func] = SwitchValuePair(SI, LJVal);
361}
362
363// TransformSetJmpCall - The setjmp call is a bit trickier to transform.
364// We're going to convert all setjmp calls to nops. Then all "call" and
365// "invoke" instructions in the function are converted to "invoke" where
366// the "except" branch is used when returning from a longjmp call.
367void LowerSetJmp::TransformSetJmpCall(CallInst* Inst)
368{
369 BasicBlock* ABlock = Inst->getParent();
370 Function* Func = ABlock->getParent();
371
372 // Add this setjmp to the setjmp map.
373 const Type* SBPTy = PointerType::get(Type::SByteTy);
374 CastInst* BufPtr = new CastInst(Inst->getOperand(1), SBPTy, "SBJmpBuf", Inst);
375 new CallInst(AddSJToMap,
376 make_vector<Value*>(GetSetJmpMap(Func), BufPtr,
377 ConstantUInt::get(Type::UIntTy,
378 SetJmpIDMap[Func]++), 0),
379 "", Inst);
380
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000381 // We are guaranteed that there are no values live across basic blocks
382 // (because we are "not in SSA form" yet), but there can still be values live
383 // in basic blocks. Because of this, splitting the setjmp block can cause
384 // values above the setjmp to not dominate uses which are after the setjmp
385 // call. For all of these occasions, we must spill the value to the stack.
386 //
387 std::set<Instruction*> InstrsAfterCall;
388
389 // The call is probably very close to the end of the basic block, for the
390 // common usage pattern of: 'if (setjmp(...))', so keep track of the
391 // instructions after the call.
392 for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end();
393 I != E; ++I)
394 InstrsAfterCall.insert(I);
395
396 for (BasicBlock::iterator II = ABlock->begin();
397 II != BasicBlock::iterator(Inst); ++II)
398 // Loop over all of the uses of instruction. If any of them are after the
399 // call, "spill" the value to the stack.
400 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
401 UI != E; ++UI)
402 if (cast<Instruction>(*UI)->getParent() != ABlock ||
403 InstrsAfterCall.count(cast<Instruction>(*UI))) {
404 DemoteRegToStack(*II);
405 break;
406 }
407 InstrsAfterCall.clear();
408
Chris Lattner6420f1c2003-09-15 04:56:27 +0000409 // Change the setjmp call into a branch statement. We'll remove the
410 // setjmp call in a little bit. No worries.
411 BasicBlock* SetJmpContBlock = ABlock->splitBasicBlock(Inst);
412 assert(SetJmpContBlock && "Couldn't split setjmp BB!!");
413
414 SetJmpContBlock->setName("SetJmpContBlock");
415
Chris Lattner6420f1c2003-09-15 04:56:27 +0000416 // This PHI node will be in the new block created from the
417 // splitBasicBlock call.
418 PHINode* PHI = new PHINode(Type::IntTy, "SetJmpReturn", Inst);
419
420 // Coming from a call to setjmp, the return is 0.
421 PHI->addIncoming(ConstantInt::getNullValue(Type::IntTy), ABlock);
422
423 // Add the case for this setjmp's number...
424 SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func));
425 SVP.first->addCase(ConstantUInt::get(Type::UIntTy, SetJmpIDMap[Func] - 1),
426 SetJmpContBlock);
427
428 // Value coming from the handling of the exception.
429 PHI->addIncoming(SVP.second, SVP.second->getParent());
430
431 // Replace all uses of this instruction with the PHI node created by
432 // the eradication of setjmp.
433 Inst->replaceAllUsesWith(PHI);
434 Inst->getParent()->getInstList().erase(Inst);
435
436 ++SetJmpsTransformed;
437}
438
439// visitCallInst - This converts all LLVM call instructions into invoke
440// instructions. The except part of the invoke goes to the "LongJmpBlkPre"
441// that grabs the exception and proceeds to determine if it's a longjmp
442// exception or not.
443void LowerSetJmp::visitCallInst(CallInst& CI)
444{
445 if (CI.getCalledFunction())
446 if (!IsTransformableFunction(CI.getCalledFunction()->getName()) ||
447 CI.getCalledFunction()->isIntrinsic()) return;
448
449 BasicBlock* OldBB = CI.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000450
451 // If not reachable from a setjmp call, don't transform.
452 if (!DFSBlocks.count(OldBB)) return;
453
Chris Lattner6420f1c2003-09-15 04:56:27 +0000454 BasicBlock* NewBB = OldBB->splitBasicBlock(CI);
455 assert(NewBB && "Couldn't split BB of \"call\" instruction!!");
456 NewBB->setName("Call2Invoke");
457
458 // Reposition the split BB in the BB list to make things tidier.
Chris Lattner6d3906b2003-10-13 01:02:33 +0000459 Function* Func = OldBB->getParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000460 Func->getBasicBlockList().remove(NewBB);
461 Func->getBasicBlockList().insert(++Function::iterator(OldBB), NewBB);
462
463 // Construct the new "invoke" instruction.
464 TerminatorInst* Term = OldBB->getTerminator();
465 std::vector<Value*> Params(CI.op_begin() + 1, CI.op_end());
466 InvokeInst* II = new
467 InvokeInst(CI.getCalledValue(), NewBB, PrelimBBMap[Func],
468 Params, CI.getName(), Term);
469
470 // Replace the old call inst with the invoke inst and remove the call.
471 CI.replaceAllUsesWith(II);
472 CI.getParent()->getInstList().erase(&CI);
473
474 // The old terminator is useless now that we have the invoke inst.
475 Term->getParent()->getInstList().erase(Term);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000476 ++CallsTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000477}
478
479// visitInvokeInst - Converting the "invoke" instruction is fairly
480// straight-forward. The old exception part is replaced by a query asking
481// if this is a longjmp exception. If it is, then it goes to the longjmp
482// exception blocks. Otherwise, control is passed the old exception.
483void LowerSetJmp::visitInvokeInst(InvokeInst& II)
484{
485 if (II.getCalledFunction())
486 if (!IsTransformableFunction(II.getCalledFunction()->getName()) ||
487 II.getCalledFunction()->isIntrinsic()) return;
488
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000489 BasicBlock* BB = II.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000490
491 // If not reachable from a setjmp call, don't transform.
492 if (!DFSBlocks.count(BB)) return;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000493
494 BasicBlock* NormalBB = II.getNormalDest();
495 BasicBlock* ExceptBB = II.getExceptionalDest();
496
Chris Lattner6d3906b2003-10-13 01:02:33 +0000497 Function* Func = BB->getParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000498 BasicBlock* NewExceptBB = new BasicBlock("InvokeExcept", Func);
499 BasicBlock::InstListType& InstList = NewExceptBB->getInstList();
500
501 // If this is a longjmp exception, then branch to the preliminary BB of
502 // the longjmp exception handling. Otherwise, go to the old exception.
503 CallInst* IsLJExcept = new
504 CallInst(IsLJException, std::vector<Value*>(), "IsLJExcept");
505 InstList.push_back(IsLJExcept);
506
Chris Lattnerf8485c62003-11-20 18:25:24 +0000507 new BranchInst(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000508
509 II.setExceptionalDest(NewExceptBB);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000510 ++InvokesTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000511}
512
513// visitReturnInst - We want to destroy the setjmp map upon exit from the
514// function.
515void LowerSetJmp::visitReturnInst(ReturnInst& RI)
516{
517 Function* Func = RI.getParent()->getParent();
518 new CallInst(DestroySJMap, make_vector<Value*>(GetSetJmpMap(Func), 0),
519 "", &RI);
520}
521
522// visitUnwindInst - We want to destroy the setjmp map upon exit from the
523// function.
524void LowerSetJmp::visitUnwindInst(UnwindInst& UI)
525{
526 Function* Func = UI.getParent()->getParent();
527 new CallInst(DestroySJMap, make_vector<Value*>(GetSetJmpMap(Func), 0),
528 "", &UI);
529}
530
Chris Lattner1e2385b2003-11-21 21:54:22 +0000531Pass* llvm::createLowerSetJmpPass()
Chris Lattner6420f1c2003-09-15 04:56:27 +0000532{
533 return new LowerSetJmp();
534}
Brian Gaeked0fde302003-11-11 22:41:34 +0000535