blob: 5dff47aa81e18af7973efc452bff8c5a905fd98a [file] [log] [blame]
Chris Lattner6420f1c2003-09-15 04:56:27 +00001//===- LowerSetJmp.cpp - Code pertaining to lowering set/long jumps -------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner6420f1c2003-09-15 04:56:27 +00009//
10// This file implements the lowering of setjmp and longjmp to use the
Chris Lattner77b398c2003-09-15 05:43:05 +000011// LLVM invoke and unwind instructions as necessary.
Chris Lattner6420f1c2003-09-15 04:56:27 +000012//
13// Lowering of longjmp is fairly trivial. We replace the call with a
14// call to the LLVM library function "__llvm_sjljeh_throw_longjmp()".
15// This unwinds the stack for us calling all of the destructors for
16// objects allocated on the stack.
17//
18// At a setjmp call, the basic block is split and the setjmp removed.
19// The calls in a function that have a setjmp are converted to invoke
20// where the except part checks to see if it's a longjmp exception and,
21// if so, if it's handled in the function. If it is, then it gets the
22// value returned by the longjmp and goes to where the basic block was
23// split. Invoke instructions are handled in a similar fashion with the
24// original except block being executed if it isn't a longjmp except
25// that is handled by that function.
26//
27//===----------------------------------------------------------------------===//
28
29//===----------------------------------------------------------------------===//
30// FIXME: This pass doesn't deal with PHI statements just yet. That is,
31// we expect this to occur before SSAification is done. This would seem
32// to make sense, but in general, it might be a good idea to make this
33// pass invokable via the "opt" command at will.
34//===----------------------------------------------------------------------===//
35
Chris Lattner86453c52006-12-19 22:09:18 +000036#define DEBUG_TYPE "lowersetjmp"
Chris Lattner1e2385b2003-11-21 21:54:22 +000037#include "llvm/Transforms/IPO.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000038#include "llvm/Constants.h"
39#include "llvm/DerivedTypes.h"
40#include "llvm/Instructions.h"
41#include "llvm/Intrinsics.h"
Owen Anderson14ce9ef2009-07-06 01:34:54 +000042#include "llvm/LLVMContext.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000043#include "llvm/Module.h"
44#include "llvm/Pass.h"
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000045#include "llvm/Support/CFG.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000046#include "llvm/Support/Compiler.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000047#include "llvm/Support/InstVisitor.h"
Chris Lattnera2dc7272004-03-14 02:13:38 +000048#include "llvm/Transforms/Utils/Local.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000049#include "llvm/ADT/DepthFirstIterator.h"
50#include "llvm/ADT/Statistic.h"
51#include "llvm/ADT/StringExtras.h"
52#include "llvm/ADT/VectorExtras.h"
David Greene52eec542007-08-01 03:43:44 +000053#include "llvm/ADT/SmallVector.h"
Dan Gohmanc9235d22008-03-21 23:51:57 +000054#include <map>
Chris Lattner1e2385b2003-11-21 21:54:22 +000055using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000056
Chris Lattner86453c52006-12-19 22:09:18 +000057STATISTIC(LongJmpsTransformed, "Number of longjmps transformed");
58STATISTIC(SetJmpsTransformed , "Number of setjmps transformed");
59STATISTIC(CallsTransformed , "Number of calls invokified");
60STATISTIC(InvokesTransformed , "Number of invokes modified");
Chris Lattner6420f1c2003-09-15 04:56:27 +000061
Chris Lattner86453c52006-12-19 22:09:18 +000062namespace {
Chris Lattner6420f1c2003-09-15 04:56:27 +000063 //===--------------------------------------------------------------------===//
Chris Lattnerbc53e5e2004-10-07 06:00:24 +000064 // LowerSetJmp pass implementation.
Reid Spencer9133fe22007-02-05 23:32:05 +000065 class VISIBILITY_HIDDEN LowerSetJmp : public ModulePass,
Chris Lattner6420f1c2003-09-15 04:56:27 +000066 public InstVisitor<LowerSetJmp> {
67 // LLVM library functions...
Chris Lattner35057c22007-01-07 06:59:47 +000068 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
Chris Lattner6420f1c2003-09-15 04:56:27 +000075
76 typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair;
77
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000078 // 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
Chris Lattner6420f1c2003-09-15 04:56:27 +000083 // 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:
Nick Lewyckyecd94c82007-05-06 13:37:16 +0000115 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +0000116 LowerSetJmp() : ModulePass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +0000117
Chris Lattner6420f1c2003-09-15 04:56:27 +0000118 void visitCallInst(CallInst& CI);
119 void visitInvokeInst(InvokeInst& II);
120 void visitReturnInst(ReturnInst& RI);
121 void visitUnwindInst(UnwindInst& UI);
122
Chris Lattnerb12914b2004-09-20 04:48:05 +0000123 bool runOnModule(Module& M);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000124 bool doInitialization(Module& M);
125 };
Chris Lattner6420f1c2003-09-15 04:56:27 +0000126} // end anonymous namespace
127
Dan Gohman844731a2008-05-13 00:00:25 +0000128char LowerSetJmp::ID = 0;
129static RegisterPass<LowerSetJmp> X("lowersetjmp", "Lower Set Jump");
130
Chris Lattner6420f1c2003-09-15 04:56:27 +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.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000134bool LowerSetJmp::runOnModule(Module& M) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000135 bool Changed = false;
136
137 // These are what the functions are called.
Reid Spencer688b0492007-02-05 21:19:13 +0000138 Function* SetJmp = M.getFunction("llvm.setjmp");
139 Function* LongJmp = M.getFunction("llvm.longjmp");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000140
141 // This program doesn't have longjmp and setjmp calls.
142 if ((!LongJmp || LongJmp->use_empty()) &&
143 (!SetJmp || SetJmp->use_empty())) return false;
144
145 // Initialize some values and functions we'll need to transform the
146 // setjmp/longjmp functions.
147 doInitialization(M);
148
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000149 if (SetJmp) {
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000150 for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end();
151 B != E; ++B) {
Chris Lattner6d3906b2003-10-13 01:02:33 +0000152 BasicBlock* BB = cast<Instruction>(*B)->getParent();
Chris Lattner8b716f62003-10-13 16:49:21 +0000153 for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, DFSBlocks),
154 E = df_ext_end(BB, DFSBlocks); I != E; ++I)
Chris Lattner46e033d2003-10-13 16:44:50 +0000155 /* empty */;
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000156 }
157
Chris Lattner6420f1c2003-09-15 04:56:27 +0000158 while (!SetJmp->use_empty()) {
159 assert(isa<CallInst>(SetJmp->use_back()) &&
160 "User of setjmp intrinsic not a call?");
161 TransformSetJmpCall(cast<CallInst>(SetJmp->use_back()));
162 Changed = true;
163 }
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000164 }
Chris Lattner6420f1c2003-09-15 04:56:27 +0000165
166 if (LongJmp)
167 while (!LongJmp->use_empty()) {
168 assert(isa<CallInst>(LongJmp->use_back()) &&
169 "User of longjmp intrinsic not a call?");
170 TransformLongJmpCall(cast<CallInst>(LongJmp->use_back()));
171 Changed = true;
172 }
173
174 // Now go through the affected functions and convert calls and invokes
175 // to new invokes...
176 for (std::map<Function*, AllocaInst*>::iterator
177 B = SJMap.begin(), E = SJMap.end(); B != E; ++B) {
178 Function* F = B->first;
179 for (Function::iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB)
180 for (BasicBlock::iterator IB = BB->begin(), IE = BB->end(); IB != IE; ) {
181 visit(*IB++);
182 if (IB != BB->end() && IB->getParent() != BB)
183 break; // The next instruction got moved to a different block!
184 }
185 }
186
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000187 DFSBlocks.clear();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000188 SJMap.clear();
189 RethrowBBMap.clear();
190 PrelimBBMap.clear();
191 SwitchValMap.clear();
192 SetJmpIDMap.clear();
193
194 return Changed;
195}
196
197// doInitialization - For the lower long/setjmp pass, this ensures that a
198// module contains a declaration for the intrisic functions we are going
199// to call to convert longjmp and setjmp calls.
200//
201// This function is always successful, unless it isn't.
202bool LowerSetJmp::doInitialization(Module& M)
203{
Owen Anderson1d0be152009-08-13 21:58:54 +0000204 const Type *SBPTy = PointerType::getUnqual(Type::getInt8Ty(M.getContext()));
Owen Andersondebcb012009-07-29 22:17:13 +0000205 const Type *SBPPTy = PointerType::getUnqual(SBPTy);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000206
207 // N.B. See llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h for
208 // a description of the following library functions.
209
210 // void __llvm_sjljeh_init_setjmpmap(void**)
211 InitSJMap = M.getOrInsertFunction("__llvm_sjljeh_init_setjmpmap",
Owen Anderson1d0be152009-08-13 21:58:54 +0000212 Type::getVoidTy(M.getContext()),
213 SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000214 // void __llvm_sjljeh_destroy_setjmpmap(void**)
215 DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap",
Owen Anderson1d0be152009-08-13 21:58:54 +0000216 Type::getVoidTy(M.getContext()),
217 SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000218
219 // void __llvm_sjljeh_add_setjmp_to_map(void**, void*, unsigned)
220 AddSJToMap = M.getOrInsertFunction("__llvm_sjljeh_add_setjmp_to_map",
Owen Anderson1d0be152009-08-13 21:58:54 +0000221 Type::getVoidTy(M.getContext()),
222 SBPPTy, SBPTy,
223 Type::getInt32Ty(M.getContext()),
224 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000225
226 // void __llvm_sjljeh_throw_longjmp(int*, int)
227 ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp",
Owen Anderson1d0be152009-08-13 21:58:54 +0000228 Type::getVoidTy(M.getContext()), SBPTy,
229 Type::getInt32Ty(M.getContext()),
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000230 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000231
232 // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **)
233 TryCatchLJ =
234 M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception",
Owen Anderson1d0be152009-08-13 21:58:54 +0000235 Type::getInt32Ty(M.getContext()), SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000236
237 // bool __llvm_sjljeh_is_longjmp_exception()
238 IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception",
Owen Anderson1d0be152009-08-13 21:58:54 +0000239 Type::getInt1Ty(M.getContext()),
240 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000241
242 // int __llvm_sjljeh_get_longjmp_value()
243 GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value",
Owen Anderson1d0be152009-08-13 21:58:54 +0000244 Type::getInt32Ty(M.getContext()),
245 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000246 return true;
247}
248
249// IsTransformableFunction - Return true if the function name isn't one
250// of the ones we don't want transformed. Currently, don't transform any
251// "llvm.{setjmp,longjmp}" functions and none of the setjmp/longjmp error
252// handling functions (beginning with __llvm_sjljeh_...they don't throw
253// exceptions).
Chris Lattnercb2d1a22005-04-21 16:46:46 +0000254bool LowerSetJmp::IsTransformableFunction(const std::string& Name) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000255 std::string SJLJEh("__llvm_sjljeh");
256
Chris Lattner77b398c2003-09-15 05:43:05 +0000257 if (Name.size() > SJLJEh.size())
258 return std::string(Name.begin(), Name.begin() + SJLJEh.size()) != SJLJEh;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000259
260 return true;
261}
262
263// TransformLongJmpCall - Transform a longjmp call into a call to the
264// internal __llvm_sjljeh_throw_longjmp function. It then takes care of
265// throwing the exception for us.
266void LowerSetJmp::TransformLongJmpCall(CallInst* Inst)
267{
Owen Anderson1d0be152009-08-13 21:58:54 +0000268 const Type* SBPTy =
269 PointerType::getUnqual(Type::getInt8Ty(Inst->getContext()));
Chris Lattner6420f1c2003-09-15 04:56:27 +0000270
271 // Create the call to "__llvm_sjljeh_throw_longjmp". This takes the
272 // same parameters as "longjmp", except that the buffer is cast to a
273 // char*. It returns "void", so it doesn't need to replace any of
274 // Inst's uses and doesn't get a name.
Reid Spencer3da59db2006-11-27 01:05:10 +0000275 CastInst* CI =
276 new BitCastInst(Inst->getOperand(1), SBPTy, "LJBuf", Inst);
David Greene52eec542007-08-01 03:43:44 +0000277 SmallVector<Value *, 2> Args;
278 Args.push_back(CI);
279 Args.push_back(Inst->getOperand(2));
Gabor Greif051a9502008-04-06 20:25:17 +0000280 CallInst::Create(ThrowLongJmp, Args.begin(), Args.end(), "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000281
282 SwitchValuePair& SVP = SwitchValMap[Inst->getParent()->getParent()];
283
284 // If the function has a setjmp call in it (they are transformed first)
285 // we should branch to the basic block that determines if this longjmp
286 // is applicable here. Otherwise, issue an unwind.
287 if (SVP.first)
Gabor Greif051a9502008-04-06 20:25:17 +0000288 BranchInst::Create(SVP.first->getParent(), Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000289 else
Owen Anderson1d0be152009-08-13 21:58:54 +0000290 new UnwindInst(Inst->getContext(), Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000291
Chris Lattner3987abd2005-05-05 15:47:43 +0000292 // Remove all insts after the branch/unwind inst. Go from back to front to
293 // avoid replaceAllUsesWith if possible.
294 BasicBlock *BB = Inst->getParent();
295 Instruction *Removed;
296 do {
297 Removed = &BB->back();
298 // If the removed instructions have any users, replace them now.
299 if (!Removed->use_empty())
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000300 Removed->replaceAllUsesWith(UndefValue::get(Removed->getType()));
Chris Lattner3987abd2005-05-05 15:47:43 +0000301 Removed->eraseFromParent();
302 } while (Removed != Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000303
304 ++LongJmpsTransformed;
305}
306
307// GetSetJmpMap - Retrieve (create and initialize, if necessary) the
308// setjmp map. This map is going to hold information about which setjmps
309// were called (each setjmp gets its own number) and with which buffer it
310// was called. There can be only one!
311AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func)
312{
313 if (SJMap[Func]) return SJMap[Func];
314
315 // Insert the setjmp map initialization before the first instruction in
316 // the function.
Chris Lattner02a3be02003-09-20 14:39:18 +0000317 Instruction* Inst = Func->getEntryBlock().begin();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000318 assert(Inst && "Couldn't find even ONE instruction in entry block!");
319
320 // Fill in the alloca and call to initialize the SJ map.
Owen Anderson1d0be152009-08-13 21:58:54 +0000321 const Type *SBPTy =
322 PointerType::getUnqual(Type::getInt8Ty(Func->getContext()));
Owen Anderson50dead02009-07-15 23:53:25 +0000323 AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst);
Gabor Greif051a9502008-04-06 20:25:17 +0000324 CallInst::Create(InitSJMap, Map, "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000325 return SJMap[Func] = Map;
326}
327
328// GetRethrowBB - Only one rethrow basic block is needed per function.
329// If this is a longjmp exception but not handled in this block, this BB
330// performs the rethrow.
331BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func)
332{
333 if (RethrowBBMap[Func]) return RethrowBBMap[Func];
334
335 // The basic block we're going to jump to if we need to rethrow the
336 // exception.
Owen Anderson1d0be152009-08-13 21:58:54 +0000337 BasicBlock* Rethrow =
338 BasicBlock::Create(Func->getContext(), "RethrowExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000339
340 // Fill in the "Rethrow" BB with a call to rethrow the exception. This
341 // is the last instruction in the BB since at this point the runtime
342 // should exit this function and go to the next function.
Owen Anderson1d0be152009-08-13 21:58:54 +0000343 new UnwindInst(Func->getContext(), Rethrow);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000344 return RethrowBBMap[Func] = Rethrow;
345}
346
347// GetSJSwitch - Return the switch statement that controls which handler
348// (if any) gets called and the value returned to that handler.
349LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func,
350 BasicBlock* Rethrow)
351{
352 if (SwitchValMap[Func].first) return SwitchValMap[Func];
353
Owen Anderson1d0be152009-08-13 21:58:54 +0000354 BasicBlock* LongJmpPre =
355 BasicBlock::Create(Func->getContext(), "LongJmpBlkPre", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000356
357 // Keep track of the preliminary basic block for some of the other
358 // transformations.
359 PrelimBBMap[Func] = LongJmpPre;
360
361 // Grab the exception.
Dan Gohman52d36e62008-06-19 17:53:32 +0000362 CallInst* Cond = CallInst::Create(IsLJException, "IsLJExcept", LongJmpPre);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000363
364 // The "decision basic block" gets the number associated with the
365 // setjmp call returning to switch on and the value returned by
366 // longjmp.
Owen Anderson1d0be152009-08-13 21:58:54 +0000367 BasicBlock* DecisionBB =
368 BasicBlock::Create(Func->getContext(), "LJDecisionBB", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000369
Gabor Greif051a9502008-04-06 20:25:17 +0000370 BranchInst::Create(DecisionBB, Rethrow, Cond, LongJmpPre);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000371
372 // Fill in the "decision" basic block.
Dan Gohman52d36e62008-06-19 17:53:32 +0000373 CallInst* LJVal = CallInst::Create(GetLJValue, "LJVal", DecisionBB);
374 CallInst* SJNum = CallInst::Create(TryCatchLJ, GetSetJmpMap(Func), "SJNum",
375 DecisionBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000376
Gabor Greif051a9502008-04-06 20:25:17 +0000377 SwitchInst* SI = SwitchInst::Create(SJNum, Rethrow, 0, DecisionBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000378 return SwitchValMap[Func] = SwitchValuePair(SI, LJVal);
379}
380
381// TransformSetJmpCall - The setjmp call is a bit trickier to transform.
382// We're going to convert all setjmp calls to nops. Then all "call" and
383// "invoke" instructions in the function are converted to "invoke" where
384// the "except" branch is used when returning from a longjmp call.
385void LowerSetJmp::TransformSetJmpCall(CallInst* Inst)
386{
387 BasicBlock* ABlock = Inst->getParent();
388 Function* Func = ABlock->getParent();
389
390 // Add this setjmp to the setjmp map.
Owen Anderson1d0be152009-08-13 21:58:54 +0000391 const Type* SBPTy =
392 PointerType::getUnqual(Type::getInt8Ty(Inst->getContext()));
Reid Spencer3da59db2006-11-27 01:05:10 +0000393 CastInst* BufPtr =
394 new BitCastInst(Inst->getOperand(1), SBPTy, "SBJmpBuf", Inst);
Chris Lattner93e985f2007-02-13 02:10:56 +0000395 std::vector<Value*> Args =
396 make_vector<Value*>(GetSetJmpMap(Func), BufPtr,
Owen Anderson1d0be152009-08-13 21:58:54 +0000397 ConstantInt::get(Type::getInt32Ty(Inst->getContext()),
398 SetJmpIDMap[Func]++), 0);
Gabor Greif051a9502008-04-06 20:25:17 +0000399 CallInst::Create(AddSJToMap, Args.begin(), Args.end(), "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000400
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000401 // We are guaranteed that there are no values live across basic blocks
402 // (because we are "not in SSA form" yet), but there can still be values live
403 // in basic blocks. Because of this, splitting the setjmp block can cause
404 // values above the setjmp to not dominate uses which are after the setjmp
405 // call. For all of these occasions, we must spill the value to the stack.
406 //
407 std::set<Instruction*> InstrsAfterCall;
408
409 // The call is probably very close to the end of the basic block, for the
410 // common usage pattern of: 'if (setjmp(...))', so keep track of the
411 // instructions after the call.
412 for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end();
413 I != E; ++I)
Misha Brukmanfd939082005-04-21 23:48:37 +0000414 InstrsAfterCall.insert(I);
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000415
416 for (BasicBlock::iterator II = ABlock->begin();
417 II != BasicBlock::iterator(Inst); ++II)
418 // Loop over all of the uses of instruction. If any of them are after the
419 // call, "spill" the value to the stack.
420 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
421 UI != E; ++UI)
422 if (cast<Instruction>(*UI)->getParent() != ABlock ||
423 InstrsAfterCall.count(cast<Instruction>(*UI))) {
Owen Anderson50dead02009-07-15 23:53:25 +0000424 DemoteRegToStack(*II);
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000425 break;
426 }
427 InstrsAfterCall.clear();
428
Chris Lattner6420f1c2003-09-15 04:56:27 +0000429 // Change the setjmp call into a branch statement. We'll remove the
430 // setjmp call in a little bit. No worries.
431 BasicBlock* SetJmpContBlock = ABlock->splitBasicBlock(Inst);
432 assert(SetJmpContBlock && "Couldn't split setjmp BB!!");
433
Chris Lattnercb2d1a22005-04-21 16:46:46 +0000434 SetJmpContBlock->setName(ABlock->getName()+"SetJmpCont");
435
436 // Add the SetJmpContBlock to the set of blocks reachable from a setjmp.
437 DFSBlocks.insert(SetJmpContBlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000438
Chris Lattner6420f1c2003-09-15 04:56:27 +0000439 // This PHI node will be in the new block created from the
440 // splitBasicBlock call.
Owen Anderson1d0be152009-08-13 21:58:54 +0000441 PHINode* PHI = PHINode::Create(Type::getInt32Ty(Inst->getContext()),
442 "SetJmpReturn", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000443
444 // Coming from a call to setjmp, the return is 0.
Owen Anderson1d0be152009-08-13 21:58:54 +0000445 PHI->addIncoming(Constant::getNullValue(Type::getInt32Ty(Inst->getContext())),
446 ABlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000447
448 // Add the case for this setjmp's number...
449 SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func));
Owen Anderson1d0be152009-08-13 21:58:54 +0000450 SVP.first->addCase(ConstantInt::get(Type::getInt32Ty(Inst->getContext()),
451 SetJmpIDMap[Func] - 1),
Owen Andersoneed707b2009-07-24 23:12:02 +0000452 SetJmpContBlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000453
454 // Value coming from the handling of the exception.
455 PHI->addIncoming(SVP.second, SVP.second->getParent());
456
457 // Replace all uses of this instruction with the PHI node created by
458 // the eradication of setjmp.
459 Inst->replaceAllUsesWith(PHI);
Dan Gohman1adec832008-06-21 22:08:46 +0000460 Inst->eraseFromParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000461
462 ++SetJmpsTransformed;
463}
464
465// visitCallInst - This converts all LLVM call instructions into invoke
466// instructions. The except part of the invoke goes to the "LongJmpBlkPre"
467// that grabs the exception and proceeds to determine if it's a longjmp
468// exception or not.
469void LowerSetJmp::visitCallInst(CallInst& CI)
470{
471 if (CI.getCalledFunction())
472 if (!IsTransformableFunction(CI.getCalledFunction()->getName()) ||
473 CI.getCalledFunction()->isIntrinsic()) return;
474
475 BasicBlock* OldBB = CI.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000476
477 // If not reachable from a setjmp call, don't transform.
478 if (!DFSBlocks.count(OldBB)) return;
479
Chris Lattner6420f1c2003-09-15 04:56:27 +0000480 BasicBlock* NewBB = OldBB->splitBasicBlock(CI);
481 assert(NewBB && "Couldn't split BB of \"call\" instruction!!");
Chris Lattnerd286b242005-06-15 22:49:30 +0000482 DFSBlocks.insert(NewBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000483 NewBB->setName("Call2Invoke");
484
Chris Lattner6d3906b2003-10-13 01:02:33 +0000485 Function* Func = OldBB->getParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000486
487 // Construct the new "invoke" instruction.
488 TerminatorInst* Term = OldBB->getTerminator();
489 std::vector<Value*> Params(CI.op_begin() + 1, CI.op_end());
Gabor Greif051a9502008-04-06 20:25:17 +0000490 InvokeInst* II =
491 InvokeInst::Create(CI.getCalledValue(), NewBB, PrelimBBMap[Func],
492 Params.begin(), Params.end(), CI.getName(), Term);
Duncan Sandsdc024672007-11-27 13:23:08 +0000493 II->setCallingConv(CI.getCallingConv());
Devang Patel05988662008-09-25 21:00:45 +0000494 II->setAttributes(CI.getAttributes());
Chris Lattner6420f1c2003-09-15 04:56:27 +0000495
496 // Replace the old call inst with the invoke inst and remove the call.
497 CI.replaceAllUsesWith(II);
Dan Gohman1adec832008-06-21 22:08:46 +0000498 CI.eraseFromParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000499
500 // The old terminator is useless now that we have the invoke inst.
Dan Gohman1adec832008-06-21 22:08:46 +0000501 Term->eraseFromParent();
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000502 ++CallsTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000503}
504
505// visitInvokeInst - Converting the "invoke" instruction is fairly
506// straight-forward. The old exception part is replaced by a query asking
507// if this is a longjmp exception. If it is, then it goes to the longjmp
508// exception blocks. Otherwise, control is passed the old exception.
509void LowerSetJmp::visitInvokeInst(InvokeInst& II)
510{
511 if (II.getCalledFunction())
512 if (!IsTransformableFunction(II.getCalledFunction()->getName()) ||
513 II.getCalledFunction()->isIntrinsic()) return;
514
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000515 BasicBlock* BB = II.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000516
517 // If not reachable from a setjmp call, don't transform.
518 if (!DFSBlocks.count(BB)) return;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000519
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000520 BasicBlock* ExceptBB = II.getUnwindDest();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000521
Chris Lattner6d3906b2003-10-13 01:02:33 +0000522 Function* Func = BB->getParent();
Owen Anderson1d0be152009-08-13 21:58:54 +0000523 BasicBlock* NewExceptBB = BasicBlock::Create(II.getContext(),
524 "InvokeExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000525
526 // If this is a longjmp exception, then branch to the preliminary BB of
527 // the longjmp exception handling. Otherwise, go to the old exception.
Dan Gohman52d36e62008-06-19 17:53:32 +0000528 CallInst* IsLJExcept = CallInst::Create(IsLJException, "IsLJExcept",
529 NewExceptBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000530
Gabor Greif051a9502008-04-06 20:25:17 +0000531 BranchInst::Create(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000532
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000533 II.setUnwindDest(NewExceptBB);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000534 ++InvokesTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000535}
536
537// visitReturnInst - We want to destroy the setjmp map upon exit from the
538// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000539void LowerSetJmp::visitReturnInst(ReturnInst &RI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000540 Function* Func = RI.getParent()->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000541 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &RI);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000542}
543
544// visitUnwindInst - We want to destroy the setjmp map upon exit from the
545// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000546void LowerSetJmp::visitUnwindInst(UnwindInst &UI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000547 Function* Func = UI.getParent()->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000548 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &UI);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000549}
550
Chris Lattnerb12914b2004-09-20 04:48:05 +0000551ModulePass *llvm::createLowerSetJmpPass() {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000552 return new LowerSetJmp();
553}
Brian Gaeked0fde302003-11-11 22:41:34 +0000554