blob: 2db8257b84fdbbb7cc7dfb7a4e3d5cf40d33c92a [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"
42#include "llvm/Module.h"
43#include "llvm/Pass.h"
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000044#include "llvm/Support/CFG.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000045#include "llvm/Support/Compiler.h"
Chris Lattner6420f1c2003-09-15 04:56:27 +000046#include "llvm/Support/InstVisitor.h"
Chris Lattnera2dc7272004-03-14 02:13:38 +000047#include "llvm/Transforms/Utils/Local.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000048#include "llvm/ADT/DepthFirstIterator.h"
49#include "llvm/ADT/Statistic.h"
50#include "llvm/ADT/StringExtras.h"
51#include "llvm/ADT/VectorExtras.h"
David Greene52eec542007-08-01 03:43:44 +000052#include "llvm/ADT/SmallVector.h"
Dan Gohmanc9235d22008-03-21 23:51:57 +000053#include <map>
Chris Lattner1e2385b2003-11-21 21:54:22 +000054using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000055
Chris Lattner86453c52006-12-19 22:09:18 +000056STATISTIC(LongJmpsTransformed, "Number of longjmps transformed");
57STATISTIC(SetJmpsTransformed , "Number of setjmps transformed");
58STATISTIC(CallsTransformed , "Number of calls invokified");
59STATISTIC(InvokesTransformed , "Number of invokes modified");
Chris Lattner6420f1c2003-09-15 04:56:27 +000060
Chris Lattner86453c52006-12-19 22:09:18 +000061namespace {
Chris Lattner6420f1c2003-09-15 04:56:27 +000062 //===--------------------------------------------------------------------===//
Chris Lattnerbc53e5e2004-10-07 06:00:24 +000063 // LowerSetJmp pass implementation.
Reid Spencer9133fe22007-02-05 23:32:05 +000064 class VISIBILITY_HIDDEN LowerSetJmp : public ModulePass,
Chris Lattner6420f1c2003-09-15 04:56:27 +000065 public InstVisitor<LowerSetJmp> {
66 // LLVM library functions...
Chris Lattner35057c22007-01-07 06:59:47 +000067 Constant *InitSJMap; // __llvm_sjljeh_init_setjmpmap
68 Constant *DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap
69 Constant *AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map
70 Constant *ThrowLongJmp; // __llvm_sjljeh_throw_longjmp
71 Constant *TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception
72 Constant *IsLJException; // __llvm_sjljeh_is_longjmp_exception
73 Constant *GetLJValue; // __llvm_sjljeh_get_longjmp_value
Chris Lattner6420f1c2003-09-15 04:56:27 +000074
75 typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair;
76
Chris Lattnerbb2d4de2003-10-13 00:57:16 +000077 // Keep track of those basic blocks reachable via a depth-first search of
78 // the CFG from a setjmp call. We only need to transform those "call" and
79 // "invoke" instructions that are reachable from the setjmp call site.
80 std::set<BasicBlock*> DFSBlocks;
81
Chris Lattner6420f1c2003-09-15 04:56:27 +000082 // The setjmp map is going to hold information about which setjmps
83 // were called (each setjmp gets its own number) and with which
84 // buffer it was called.
85 std::map<Function*, AllocaInst*> SJMap;
86
87 // The rethrow basic block map holds the basic block to branch to if
88 // the exception isn't handled in the current function and needs to
89 // be rethrown.
90 std::map<const Function*, BasicBlock*> RethrowBBMap;
91
92 // The preliminary basic block map holds a basic block that grabs the
93 // exception and determines if it's handled by the current function.
94 std::map<const Function*, BasicBlock*> PrelimBBMap;
95
96 // The switch/value map holds a switch inst/call inst pair. The
97 // switch inst controls which handler (if any) gets called and the
98 // value is the value returned to that handler by the call to
99 // __llvm_sjljeh_get_longjmp_value.
100 std::map<const Function*, SwitchValuePair> SwitchValMap;
101
102 // A map of which setjmps we've seen so far in a function.
103 std::map<const Function*, unsigned> SetJmpIDMap;
104
105 AllocaInst* GetSetJmpMap(Function* Func);
106 BasicBlock* GetRethrowBB(Function* Func);
107 SwitchValuePair GetSJSwitch(Function* Func, BasicBlock* Rethrow);
108
109 void TransformLongJmpCall(CallInst* Inst);
110 void TransformSetJmpCall(CallInst* Inst);
111
112 bool IsTransformableFunction(const std::string& Name);
113 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +0000114 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +0000115 LowerSetJmp() : ModulePass((intptr_t)&ID) {}
116
Chris Lattner6420f1c2003-09-15 04:56:27 +0000117 void visitCallInst(CallInst& CI);
118 void visitInvokeInst(InvokeInst& II);
119 void visitReturnInst(ReturnInst& RI);
120 void visitUnwindInst(UnwindInst& UI);
121
Chris Lattnerb12914b2004-09-20 04:48:05 +0000122 bool runOnModule(Module& M);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000123 bool doInitialization(Module& M);
124 };
125
Devang Patel19974732007-05-03 01:11:54 +0000126 char LowerSetJmp::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +0000127 RegisterPass<LowerSetJmp> X("lowersetjmp", "Lower Set Jump");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000128} // end anonymous namespace
129
130// run - Run the transformation on the program. We grab the function
131// prototypes for longjmp and setjmp. If they are used in the program,
132// then we can go directly to the places they're at and transform them.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000133bool LowerSetJmp::runOnModule(Module& M) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000134 bool Changed = false;
135
136 // These are what the functions are called.
Reid Spencer688b0492007-02-05 21:19:13 +0000137 Function* SetJmp = M.getFunction("llvm.setjmp");
138 Function* LongJmp = M.getFunction("llvm.longjmp");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000139
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{
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000203 const Type *SBPTy = PointerType::getUnqual(Type::Int8Ty);
204 const Type *SBPPTy = PointerType::getUnqual(SBPTy);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000205
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",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000211 Type::VoidTy, SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000212 // void __llvm_sjljeh_destroy_setjmpmap(void**)
213 DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap",
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000214 Type::VoidTy, SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000215
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,
Reid Spencerc5b206b2006-12-31 05:48:39 +0000219 Type::Int32Ty, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000220
221 // void __llvm_sjljeh_throw_longjmp(int*, int)
222 ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp",
Reid Spencerc5b206b2006-12-31 05:48:39 +0000223 Type::VoidTy, SBPTy, Type::Int32Ty,
Jeff Cohen66c5fd62005-10-23 04:37:20 +0000224 (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000225
226 // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **)
227 TryCatchLJ =
228 M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception",
Reid Spencerc5b206b2006-12-31 05:48:39 +0000229 Type::Int32Ty, SBPPTy, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000230
231 // bool __llvm_sjljeh_is_longjmp_exception()
232 IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception",
Reid Spencer4fe16d62007-01-11 18:21:29 +0000233 Type::Int1Ty, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000234
235 // int __llvm_sjljeh_get_longjmp_value()
236 GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value",
Reid Spencerc5b206b2006-12-31 05:48:39 +0000237 Type::Int32Ty, (Type *)0);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000238 return true;
239}
240
241// IsTransformableFunction - Return true if the function name isn't one
242// of the ones we don't want transformed. Currently, don't transform any
243// "llvm.{setjmp,longjmp}" functions and none of the setjmp/longjmp error
244// handling functions (beginning with __llvm_sjljeh_...they don't throw
245// exceptions).
Chris Lattnercb2d1a22005-04-21 16:46:46 +0000246bool LowerSetJmp::IsTransformableFunction(const std::string& Name) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000247 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{
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000260 const Type* SBPTy = PointerType::getUnqual(Type::Int8Ty);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000261
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.
Reid Spencer3da59db2006-11-27 01:05:10 +0000266 CastInst* CI =
267 new BitCastInst(Inst->getOperand(1), SBPTy, "LJBuf", Inst);
David Greene52eec542007-08-01 03:43:44 +0000268 SmallVector<Value *, 2> Args;
269 Args.push_back(CI);
270 Args.push_back(Inst->getOperand(2));
Gabor Greif051a9502008-04-06 20:25:17 +0000271 CallInst::Create(ThrowLongJmp, Args.begin(), Args.end(), "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000272
273 SwitchValuePair& SVP = SwitchValMap[Inst->getParent()->getParent()];
274
275 // If the function has a setjmp call in it (they are transformed first)
276 // we should branch to the basic block that determines if this longjmp
277 // is applicable here. Otherwise, issue an unwind.
278 if (SVP.first)
Gabor Greif051a9502008-04-06 20:25:17 +0000279 BranchInst::Create(SVP.first->getParent(), Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000280 else
281 new UnwindInst(Inst);
282
Chris Lattner3987abd2005-05-05 15:47:43 +0000283 // Remove all insts after the branch/unwind inst. Go from back to front to
284 // avoid replaceAllUsesWith if possible.
285 BasicBlock *BB = Inst->getParent();
286 Instruction *Removed;
287 do {
288 Removed = &BB->back();
289 // If the removed instructions have any users, replace them now.
290 if (!Removed->use_empty())
291 Removed->replaceAllUsesWith(UndefValue::get(Removed->getType()));
292 Removed->eraseFromParent();
293 } while (Removed != Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000294
295 ++LongJmpsTransformed;
296}
297
298// GetSetJmpMap - Retrieve (create and initialize, if necessary) the
299// setjmp map. This map is going to hold information about which setjmps
300// were called (each setjmp gets its own number) and with which buffer it
301// was called. There can be only one!
302AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func)
303{
304 if (SJMap[Func]) return SJMap[Func];
305
306 // Insert the setjmp map initialization before the first instruction in
307 // the function.
Chris Lattner02a3be02003-09-20 14:39:18 +0000308 Instruction* Inst = Func->getEntryBlock().begin();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000309 assert(Inst && "Couldn't find even ONE instruction in entry block!");
310
311 // Fill in the alloca and call to initialize the SJ map.
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000312 const Type *SBPTy = PointerType::getUnqual(Type::Int8Ty);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000313 AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst);
Gabor Greif051a9502008-04-06 20:25:17 +0000314 CallInst::Create(InitSJMap, Map, "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000315 return SJMap[Func] = Map;
316}
317
318// GetRethrowBB - Only one rethrow basic block is needed per function.
319// If this is a longjmp exception but not handled in this block, this BB
320// performs the rethrow.
321BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func)
322{
323 if (RethrowBBMap[Func]) return RethrowBBMap[Func];
324
325 // The basic block we're going to jump to if we need to rethrow the
326 // exception.
Gabor Greif051a9502008-04-06 20:25:17 +0000327 BasicBlock* Rethrow = BasicBlock::Create("RethrowExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000328
329 // Fill in the "Rethrow" BB with a call to rethrow the exception. This
330 // is the last instruction in the BB since at this point the runtime
331 // should exit this function and go to the next function.
Chris Lattnerf8485c62003-11-20 18:25:24 +0000332 new UnwindInst(Rethrow);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000333 return RethrowBBMap[Func] = Rethrow;
334}
335
336// GetSJSwitch - Return the switch statement that controls which handler
337// (if any) gets called and the value returned to that handler.
338LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func,
339 BasicBlock* Rethrow)
340{
341 if (SwitchValMap[Func].first) return SwitchValMap[Func];
342
Gabor Greif051a9502008-04-06 20:25:17 +0000343 BasicBlock* LongJmpPre = BasicBlock::Create("LongJmpBlkPre", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000344 BasicBlock::InstListType& LongJmpPreIL = LongJmpPre->getInstList();
345
346 // Keep track of the preliminary basic block for some of the other
347 // transformations.
348 PrelimBBMap[Func] = LongJmpPre;
349
350 // Grab the exception.
Gabor Greif051a9502008-04-06 20:25:17 +0000351 CallInst* Cond = CallInst::Create(IsLJException, "IsLJExcept");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000352 LongJmpPreIL.push_back(Cond);
353
354 // The "decision basic block" gets the number associated with the
355 // setjmp call returning to switch on and the value returned by
356 // longjmp.
Gabor Greif051a9502008-04-06 20:25:17 +0000357 BasicBlock* DecisionBB = BasicBlock::Create("LJDecisionBB", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000358 BasicBlock::InstListType& DecisionBBIL = DecisionBB->getInstList();
359
Gabor Greif051a9502008-04-06 20:25:17 +0000360 BranchInst::Create(DecisionBB, Rethrow, Cond, LongJmpPre);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000361
362 // Fill in the "decision" basic block.
Gabor Greif051a9502008-04-06 20:25:17 +0000363 CallInst* LJVal = CallInst::Create(GetLJValue, "LJVal");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000364 DecisionBBIL.push_back(LJVal);
Gabor Greif051a9502008-04-06 20:25:17 +0000365 CallInst* SJNum = CallInst::Create(TryCatchLJ, GetSetJmpMap(Func), "SJNum");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000366 DecisionBBIL.push_back(SJNum);
367
Gabor Greif051a9502008-04-06 20:25:17 +0000368 SwitchInst* SI = SwitchInst::Create(SJNum, Rethrow, 0, DecisionBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000369 return SwitchValMap[Func] = SwitchValuePair(SI, LJVal);
370}
371
372// TransformSetJmpCall - The setjmp call is a bit trickier to transform.
373// We're going to convert all setjmp calls to nops. Then all "call" and
374// "invoke" instructions in the function are converted to "invoke" where
375// the "except" branch is used when returning from a longjmp call.
376void LowerSetJmp::TransformSetJmpCall(CallInst* Inst)
377{
378 BasicBlock* ABlock = Inst->getParent();
379 Function* Func = ABlock->getParent();
380
381 // Add this setjmp to the setjmp map.
Christopher Lamb43ad6b32007-12-17 01:12:55 +0000382 const Type* SBPTy = PointerType::getUnqual(Type::Int8Ty);
Reid Spencer3da59db2006-11-27 01:05:10 +0000383 CastInst* BufPtr =
384 new BitCastInst(Inst->getOperand(1), SBPTy, "SBJmpBuf", Inst);
Chris Lattner93e985f2007-02-13 02:10:56 +0000385 std::vector<Value*> Args =
386 make_vector<Value*>(GetSetJmpMap(Func), BufPtr,
387 ConstantInt::get(Type::Int32Ty,
388 SetJmpIDMap[Func]++), 0);
Gabor Greif051a9502008-04-06 20:25:17 +0000389 CallInst::Create(AddSJToMap, Args.begin(), Args.end(), "", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000390
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000391 // We are guaranteed that there are no values live across basic blocks
392 // (because we are "not in SSA form" yet), but there can still be values live
393 // in basic blocks. Because of this, splitting the setjmp block can cause
394 // values above the setjmp to not dominate uses which are after the setjmp
395 // call. For all of these occasions, we must spill the value to the stack.
396 //
397 std::set<Instruction*> InstrsAfterCall;
398
399 // The call is probably very close to the end of the basic block, for the
400 // common usage pattern of: 'if (setjmp(...))', so keep track of the
401 // instructions after the call.
402 for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end();
403 I != E; ++I)
Misha Brukmanfd939082005-04-21 23:48:37 +0000404 InstrsAfterCall.insert(I);
Chris Lattnerd7222ec2003-11-06 19:18:49 +0000405
406 for (BasicBlock::iterator II = ABlock->begin();
407 II != BasicBlock::iterator(Inst); ++II)
408 // Loop over all of the uses of instruction. If any of them are after the
409 // call, "spill" the value to the stack.
410 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
411 UI != E; ++UI)
412 if (cast<Instruction>(*UI)->getParent() != ABlock ||
413 InstrsAfterCall.count(cast<Instruction>(*UI))) {
414 DemoteRegToStack(*II);
415 break;
416 }
417 InstrsAfterCall.clear();
418
Chris Lattner6420f1c2003-09-15 04:56:27 +0000419 // Change the setjmp call into a branch statement. We'll remove the
420 // setjmp call in a little bit. No worries.
421 BasicBlock* SetJmpContBlock = ABlock->splitBasicBlock(Inst);
422 assert(SetJmpContBlock && "Couldn't split setjmp BB!!");
423
Chris Lattnercb2d1a22005-04-21 16:46:46 +0000424 SetJmpContBlock->setName(ABlock->getName()+"SetJmpCont");
425
426 // Add the SetJmpContBlock to the set of blocks reachable from a setjmp.
427 DFSBlocks.insert(SetJmpContBlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000428
Chris Lattner6420f1c2003-09-15 04:56:27 +0000429 // This PHI node will be in the new block created from the
430 // splitBasicBlock call.
Gabor Greif051a9502008-04-06 20:25:17 +0000431 PHINode* PHI = PHINode::Create(Type::Int32Ty, "SetJmpReturn", Inst);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000432
433 // Coming from a call to setjmp, the return is 0.
Reid Spencerc5b206b2006-12-31 05:48:39 +0000434 PHI->addIncoming(ConstantInt::getNullValue(Type::Int32Ty), ABlock);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000435
436 // Add the case for this setjmp's number...
437 SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func));
Reid Spencerc5b206b2006-12-31 05:48:39 +0000438 SVP.first->addCase(ConstantInt::get(Type::Int32Ty, SetJmpIDMap[Func] - 1),
Chris Lattner6420f1c2003-09-15 04:56:27 +0000439 SetJmpContBlock);
440
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);
447 Inst->getParent()->getInstList().erase(Inst);
448
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();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000463
464 // If not reachable from a setjmp call, don't transform.
465 if (!DFSBlocks.count(OldBB)) return;
466
Chris Lattner6420f1c2003-09-15 04:56:27 +0000467 BasicBlock* NewBB = OldBB->splitBasicBlock(CI);
468 assert(NewBB && "Couldn't split BB of \"call\" instruction!!");
Chris Lattnerd286b242005-06-15 22:49:30 +0000469 DFSBlocks.insert(NewBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000470 NewBB->setName("Call2Invoke");
471
Chris Lattner6d3906b2003-10-13 01:02:33 +0000472 Function* Func = OldBB->getParent();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000473
474 // Construct the new "invoke" instruction.
475 TerminatorInst* Term = OldBB->getTerminator();
476 std::vector<Value*> Params(CI.op_begin() + 1, CI.op_end());
Gabor Greif051a9502008-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 Sandsdc024672007-11-27 13:23:08 +0000480 II->setCallingConv(CI.getCallingConv());
481 II->setParamAttrs(CI.getParamAttrs());
Chris Lattner6420f1c2003-09-15 04:56:27 +0000482
483 // Replace the old call inst with the invoke inst and remove the call.
484 CI.replaceAllUsesWith(II);
485 CI.getParent()->getInstList().erase(&CI);
486
487 // The old terminator is useless now that we have the invoke inst.
488 Term->getParent()->getInstList().erase(Term);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000489 ++CallsTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000490}
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
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000502 BasicBlock* BB = II.getParent();
Chris Lattnerbb2d4de2003-10-13 00:57:16 +0000503
504 // If not reachable from a setjmp call, don't transform.
505 if (!DFSBlocks.count(BB)) return;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000506
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000507 BasicBlock* ExceptBB = II.getUnwindDest();
Chris Lattner6420f1c2003-09-15 04:56:27 +0000508
Chris Lattner6d3906b2003-10-13 01:02:33 +0000509 Function* Func = BB->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000510 BasicBlock* NewExceptBB = BasicBlock::Create("InvokeExcept", Func);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000511 BasicBlock::InstListType& InstList = NewExceptBB->getInstList();
512
513 // If this is a longjmp exception, then branch to the preliminary BB of
514 // the longjmp exception handling. Otherwise, go to the old exception.
Gabor Greif051a9502008-04-06 20:25:17 +0000515 CallInst* IsLJExcept = CallInst::Create(IsLJException, "IsLJExcept");
Chris Lattner6420f1c2003-09-15 04:56:27 +0000516 InstList.push_back(IsLJExcept);
517
Gabor Greif051a9502008-04-06 20:25:17 +0000518 BranchInst::Create(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000519
Chris Lattneraeb2a1d2004-02-08 21:44:31 +0000520 II.setUnwindDest(NewExceptBB);
Chris Lattnerfe2143d2003-10-28 23:14:59 +0000521 ++InvokesTransformed;
Chris Lattner6420f1c2003-09-15 04:56:27 +0000522}
523
524// visitReturnInst - We want to destroy the setjmp map upon exit from the
525// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000526void LowerSetJmp::visitReturnInst(ReturnInst &RI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000527 Function* Func = RI.getParent()->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000528 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &RI);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000529}
530
531// visitUnwindInst - We want to destroy the setjmp map upon exit from the
532// function.
Chris Lattnerb12914b2004-09-20 04:48:05 +0000533void LowerSetJmp::visitUnwindInst(UnwindInst &UI) {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000534 Function* Func = UI.getParent()->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000535 CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &UI);
Chris Lattner6420f1c2003-09-15 04:56:27 +0000536}
537
Chris Lattnerb12914b2004-09-20 04:48:05 +0000538ModulePass *llvm::createLowerSetJmpPass() {
Chris Lattner6420f1c2003-09-15 04:56:27 +0000539 return new LowerSetJmp();
540}
Brian Gaeked0fde302003-11-11 22:41:34 +0000541