Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 1 | //===- LowerSetJmp.cpp - Code pertaining to lowering set/long jumps -------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the lowering of setjmp and longjmp to use the |
Chris Lattner | 77b398c | 2003-09-15 05:43:05 +0000 | [diff] [blame] | 11 | // LLVM invoke and unwind instructions as necessary. |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 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 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 36 | #define DEBUG_TYPE "lowersetjmp" |
Chris Lattner | 1e2385b | 2003-11-21 21:54:22 +0000 | [diff] [blame] | 37 | #include "llvm/Transforms/IPO.h" |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 38 | #include "llvm/Constants.h" |
| 39 | #include "llvm/DerivedTypes.h" |
| 40 | #include "llvm/Instructions.h" |
| 41 | #include "llvm/Intrinsics.h" |
Owen Anderson | 14ce9ef | 2009-07-06 01:34:54 +0000 | [diff] [blame] | 42 | #include "llvm/LLVMContext.h" |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 43 | #include "llvm/Module.h" |
| 44 | #include "llvm/Pass.h" |
Gabor Greif | fef8c4e | 2010-06-24 14:13:36 +0000 | [diff] [blame] | 45 | #include "llvm/Support/CallSite.h" |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 46 | #include "llvm/Support/CFG.h" |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 47 | #include "llvm/Support/InstVisitor.h" |
Chris Lattner | a2dc727 | 2004-03-14 02:13:38 +0000 | [diff] [blame] | 48 | #include "llvm/Transforms/Utils/Local.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 49 | #include "llvm/ADT/DepthFirstIterator.h" |
| 50 | #include "llvm/ADT/Statistic.h" |
Dan Gohman | c9235d2 | 2008-03-21 23:51:57 +0000 | [diff] [blame] | 51 | #include <map> |
Chris Lattner | 1e2385b | 2003-11-21 21:54:22 +0000 | [diff] [blame] | 52 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 53 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 54 | STATISTIC(LongJmpsTransformed, "Number of longjmps transformed"); |
| 55 | STATISTIC(SetJmpsTransformed , "Number of setjmps transformed"); |
| 56 | STATISTIC(CallsTransformed , "Number of calls invokified"); |
| 57 | STATISTIC(InvokesTransformed , "Number of invokes modified"); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 86453c5 | 2006-12-19 22:09:18 +0000 | [diff] [blame] | 59 | namespace { |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 60 | //===--------------------------------------------------------------------===// |
Chris Lattner | bc53e5e | 2004-10-07 06:00:24 +0000 | [diff] [blame] | 61 | // LowerSetJmp pass implementation. |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 62 | class LowerSetJmp : public ModulePass, public InstVisitor<LowerSetJmp> { |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 63 | // LLVM library functions... |
Chris Lattner | 35057c2 | 2007-01-07 06:59:47 +0000 | [diff] [blame] | 64 | Constant *InitSJMap; // __llvm_sjljeh_init_setjmpmap |
| 65 | Constant *DestroySJMap; // __llvm_sjljeh_destroy_setjmpmap |
| 66 | Constant *AddSJToMap; // __llvm_sjljeh_add_setjmp_to_map |
| 67 | Constant *ThrowLongJmp; // __llvm_sjljeh_throw_longjmp |
| 68 | Constant *TryCatchLJ; // __llvm_sjljeh_try_catching_longjmp_exception |
| 69 | Constant *IsLJException; // __llvm_sjljeh_is_longjmp_exception |
| 70 | Constant *GetLJValue; // __llvm_sjljeh_get_longjmp_value |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 71 | |
| 72 | typedef std::pair<SwitchInst*, CallInst*> SwitchValuePair; |
| 73 | |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 74 | // Keep track of those basic blocks reachable via a depth-first search of |
| 75 | // the CFG from a setjmp call. We only need to transform those "call" and |
| 76 | // "invoke" instructions that are reachable from the setjmp call site. |
| 77 | std::set<BasicBlock*> DFSBlocks; |
| 78 | |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 79 | // The setjmp map is going to hold information about which setjmps |
| 80 | // were called (each setjmp gets its own number) and with which |
| 81 | // buffer it was called. |
| 82 | std::map<Function*, AllocaInst*> SJMap; |
| 83 | |
| 84 | // The rethrow basic block map holds the basic block to branch to if |
| 85 | // the exception isn't handled in the current function and needs to |
| 86 | // be rethrown. |
| 87 | std::map<const Function*, BasicBlock*> RethrowBBMap; |
| 88 | |
| 89 | // The preliminary basic block map holds a basic block that grabs the |
| 90 | // exception and determines if it's handled by the current function. |
| 91 | std::map<const Function*, BasicBlock*> PrelimBBMap; |
| 92 | |
| 93 | // The switch/value map holds a switch inst/call inst pair. The |
| 94 | // switch inst controls which handler (if any) gets called and the |
| 95 | // value is the value returned to that handler by the call to |
| 96 | // __llvm_sjljeh_get_longjmp_value. |
| 97 | std::map<const Function*, SwitchValuePair> SwitchValMap; |
| 98 | |
| 99 | // A map of which setjmps we've seen so far in a function. |
| 100 | std::map<const Function*, unsigned> SetJmpIDMap; |
| 101 | |
| 102 | AllocaInst* GetSetJmpMap(Function* Func); |
| 103 | BasicBlock* GetRethrowBB(Function* Func); |
| 104 | SwitchValuePair GetSJSwitch(Function* Func, BasicBlock* Rethrow); |
| 105 | |
| 106 | void TransformLongJmpCall(CallInst* Inst); |
| 107 | void TransformSetJmpCall(CallInst* Inst); |
| 108 | |
Benjamin Kramer | 419e44e | 2009-11-03 12:52:50 +0000 | [diff] [blame] | 109 | bool IsTransformableFunction(StringRef Name); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 110 | public: |
Nick Lewycky | ecd94c8 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 111 | static char ID; // Pass identification, replacement for typeid |
Owen Anderson | 90c579d | 2010-08-06 18:33:48 +0000 | [diff] [blame] | 112 | LowerSetJmp() : ModulePass(ID) {} |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 113 | |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 114 | void visitCallInst(CallInst& CI); |
| 115 | void visitInvokeInst(InvokeInst& II); |
| 116 | void visitReturnInst(ReturnInst& RI); |
| 117 | void visitUnwindInst(UnwindInst& UI); |
| 118 | |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 119 | bool runOnModule(Module& M); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 120 | bool doInitialization(Module& M); |
| 121 | }; |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 122 | } // end anonymous namespace |
| 123 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 124 | char LowerSetJmp::ID = 0; |
Owen Anderson | d13db2c | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 125 | INITIALIZE_PASS(LowerSetJmp, "lowersetjmp", "Lower Set Jump", false, false); |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 126 | |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 127 | // run - Run the transformation on the program. We grab the function |
| 128 | // prototypes for longjmp and setjmp. If they are used in the program, |
| 129 | // then we can go directly to the places they're at and transform them. |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 130 | bool LowerSetJmp::runOnModule(Module& M) { |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 131 | bool Changed = false; |
| 132 | |
| 133 | // These are what the functions are called. |
Reid Spencer | 688b049 | 2007-02-05 21:19:13 +0000 | [diff] [blame] | 134 | Function* SetJmp = M.getFunction("llvm.setjmp"); |
| 135 | Function* LongJmp = M.getFunction("llvm.longjmp"); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 136 | |
| 137 | // This program doesn't have longjmp and setjmp calls. |
| 138 | if ((!LongJmp || LongJmp->use_empty()) && |
| 139 | (!SetJmp || SetJmp->use_empty())) return false; |
| 140 | |
| 141 | // Initialize some values and functions we'll need to transform the |
| 142 | // setjmp/longjmp functions. |
| 143 | doInitialization(M); |
| 144 | |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 145 | if (SetJmp) { |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 146 | for (Value::use_iterator B = SetJmp->use_begin(), E = SetJmp->use_end(); |
| 147 | B != E; ++B) { |
Chris Lattner | 6d3906b | 2003-10-13 01:02:33 +0000 | [diff] [blame] | 148 | BasicBlock* BB = cast<Instruction>(*B)->getParent(); |
Chris Lattner | 8b716f6 | 2003-10-13 16:49:21 +0000 | [diff] [blame] | 149 | for (df_ext_iterator<BasicBlock*> I = df_ext_begin(BB, DFSBlocks), |
| 150 | E = df_ext_end(BB, DFSBlocks); I != E; ++I) |
Chris Lattner | 46e033d | 2003-10-13 16:44:50 +0000 | [diff] [blame] | 151 | /* empty */; |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 152 | } |
| 153 | |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 154 | while (!SetJmp->use_empty()) { |
| 155 | assert(isa<CallInst>(SetJmp->use_back()) && |
| 156 | "User of setjmp intrinsic not a call?"); |
| 157 | TransformSetJmpCall(cast<CallInst>(SetJmp->use_back())); |
| 158 | Changed = true; |
| 159 | } |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 160 | } |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 161 | |
| 162 | if (LongJmp) |
| 163 | while (!LongJmp->use_empty()) { |
| 164 | assert(isa<CallInst>(LongJmp->use_back()) && |
| 165 | "User of longjmp intrinsic not a call?"); |
| 166 | TransformLongJmpCall(cast<CallInst>(LongJmp->use_back())); |
| 167 | Changed = true; |
| 168 | } |
| 169 | |
| 170 | // Now go through the affected functions and convert calls and invokes |
| 171 | // to new invokes... |
| 172 | for (std::map<Function*, AllocaInst*>::iterator |
| 173 | B = SJMap.begin(), E = SJMap.end(); B != E; ++B) { |
| 174 | Function* F = B->first; |
| 175 | for (Function::iterator BB = F->begin(), BE = F->end(); BB != BE; ++BB) |
| 176 | for (BasicBlock::iterator IB = BB->begin(), IE = BB->end(); IB != IE; ) { |
| 177 | visit(*IB++); |
| 178 | if (IB != BB->end() && IB->getParent() != BB) |
| 179 | break; // The next instruction got moved to a different block! |
| 180 | } |
| 181 | } |
| 182 | |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 183 | DFSBlocks.clear(); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 184 | SJMap.clear(); |
| 185 | RethrowBBMap.clear(); |
| 186 | PrelimBBMap.clear(); |
| 187 | SwitchValMap.clear(); |
| 188 | SetJmpIDMap.clear(); |
| 189 | |
| 190 | return Changed; |
| 191 | } |
| 192 | |
| 193 | // doInitialization - For the lower long/setjmp pass, this ensures that a |
| 194 | // module contains a declaration for the intrisic functions we are going |
| 195 | // to call to convert longjmp and setjmp calls. |
| 196 | // |
| 197 | // This function is always successful, unless it isn't. |
| 198 | bool LowerSetJmp::doInitialization(Module& M) |
| 199 | { |
Duncan Sands | ac53a0b | 2009-10-06 15:40:36 +0000 | [diff] [blame] | 200 | const Type *SBPTy = Type::getInt8PtrTy(M.getContext()); |
Owen Anderson | debcb01 | 2009-07-29 22:17:13 +0000 | [diff] [blame] | 201 | const Type *SBPPTy = PointerType::getUnqual(SBPTy); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 202 | |
| 203 | // N.B. See llvm/runtime/GCCLibraries/libexception/SJLJ-Exception.h for |
| 204 | // a description of the following library functions. |
| 205 | |
| 206 | // void __llvm_sjljeh_init_setjmpmap(void**) |
| 207 | InitSJMap = M.getOrInsertFunction("__llvm_sjljeh_init_setjmpmap", |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 208 | Type::getVoidTy(M.getContext()), |
| 209 | SBPPTy, (Type *)0); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 210 | // void __llvm_sjljeh_destroy_setjmpmap(void**) |
| 211 | DestroySJMap = M.getOrInsertFunction("__llvm_sjljeh_destroy_setjmpmap", |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 212 | Type::getVoidTy(M.getContext()), |
| 213 | SBPPTy, (Type *)0); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 214 | |
| 215 | // void __llvm_sjljeh_add_setjmp_to_map(void**, void*, unsigned) |
| 216 | AddSJToMap = M.getOrInsertFunction("__llvm_sjljeh_add_setjmp_to_map", |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 217 | Type::getVoidTy(M.getContext()), |
| 218 | SBPPTy, SBPTy, |
| 219 | Type::getInt32Ty(M.getContext()), |
| 220 | (Type *)0); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 221 | |
| 222 | // void __llvm_sjljeh_throw_longjmp(int*, int) |
| 223 | ThrowLongJmp = M.getOrInsertFunction("__llvm_sjljeh_throw_longjmp", |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 224 | Type::getVoidTy(M.getContext()), SBPTy, |
| 225 | Type::getInt32Ty(M.getContext()), |
Jeff Cohen | 66c5fd6 | 2005-10-23 04:37:20 +0000 | [diff] [blame] | 226 | (Type *)0); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 227 | |
| 228 | // unsigned __llvm_sjljeh_try_catching_longjmp_exception(void **) |
| 229 | TryCatchLJ = |
| 230 | M.getOrInsertFunction("__llvm_sjljeh_try_catching_longjmp_exception", |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 231 | Type::getInt32Ty(M.getContext()), SBPPTy, (Type *)0); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 232 | |
| 233 | // bool __llvm_sjljeh_is_longjmp_exception() |
| 234 | IsLJException = M.getOrInsertFunction("__llvm_sjljeh_is_longjmp_exception", |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 235 | Type::getInt1Ty(M.getContext()), |
| 236 | (Type *)0); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 237 | |
| 238 | // int __llvm_sjljeh_get_longjmp_value() |
| 239 | GetLJValue = M.getOrInsertFunction("__llvm_sjljeh_get_longjmp_value", |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 240 | Type::getInt32Ty(M.getContext()), |
| 241 | (Type *)0); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 242 | return true; |
| 243 | } |
| 244 | |
| 245 | // IsTransformableFunction - Return true if the function name isn't one |
| 246 | // of the ones we don't want transformed. Currently, don't transform any |
| 247 | // "llvm.{setjmp,longjmp}" functions and none of the setjmp/longjmp error |
| 248 | // handling functions (beginning with __llvm_sjljeh_...they don't throw |
| 249 | // exceptions). |
Benjamin Kramer | 419e44e | 2009-11-03 12:52:50 +0000 | [diff] [blame] | 250 | bool LowerSetJmp::IsTransformableFunction(StringRef Name) { |
| 251 | return !Name.startswith("__llvm_sjljeh_"); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | // TransformLongJmpCall - Transform a longjmp call into a call to the |
| 255 | // internal __llvm_sjljeh_throw_longjmp function. It then takes care of |
| 256 | // throwing the exception for us. |
| 257 | void LowerSetJmp::TransformLongJmpCall(CallInst* Inst) |
| 258 | { |
Benjamin Kramer | 419e44e | 2009-11-03 12:52:50 +0000 | [diff] [blame] | 259 | const Type* SBPTy = Type::getInt8PtrTy(Inst->getContext()); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 260 | |
| 261 | // Create the call to "__llvm_sjljeh_throw_longjmp". This takes the |
| 262 | // same parameters as "longjmp", except that the buffer is cast to a |
| 263 | // char*. It returns "void", so it doesn't need to replace any of |
| 264 | // Inst's uses and doesn't get a name. |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 265 | CastInst* CI = |
Gabor Greif | fef8c4e | 2010-06-24 14:13:36 +0000 | [diff] [blame] | 266 | new BitCastInst(Inst->getArgOperand(0), SBPTy, "LJBuf", Inst); |
| 267 | Value *Args[] = { CI, Inst->getArgOperand(1) }; |
Benjamin Kramer | 419e44e | 2009-11-03 12:52:50 +0000 | [diff] [blame] | 268 | CallInst::Create(ThrowLongJmp, Args, Args + 2, "", Inst); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 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) |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 276 | BranchInst::Create(SVP.first->getParent(), Inst); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 277 | else |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 278 | new UnwindInst(Inst->getContext(), Inst); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 279 | |
Chris Lattner | 3987abd | 2005-05-05 15:47:43 +0000 | [diff] [blame] | 280 | // Remove all insts after the branch/unwind inst. Go from back to front to |
| 281 | // avoid replaceAllUsesWith if possible. |
| 282 | BasicBlock *BB = Inst->getParent(); |
| 283 | Instruction *Removed; |
| 284 | do { |
| 285 | Removed = &BB->back(); |
| 286 | // If the removed instructions have any users, replace them now. |
| 287 | if (!Removed->use_empty()) |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 288 | Removed->replaceAllUsesWith(UndefValue::get(Removed->getType())); |
Chris Lattner | 3987abd | 2005-05-05 15:47:43 +0000 | [diff] [blame] | 289 | Removed->eraseFromParent(); |
| 290 | } while (Removed != Inst); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 291 | |
| 292 | ++LongJmpsTransformed; |
| 293 | } |
| 294 | |
| 295 | // GetSetJmpMap - Retrieve (create and initialize, if necessary) the |
| 296 | // setjmp map. This map is going to hold information about which setjmps |
| 297 | // were called (each setjmp gets its own number) and with which buffer it |
| 298 | // was called. There can be only one! |
| 299 | AllocaInst* LowerSetJmp::GetSetJmpMap(Function* Func) |
| 300 | { |
| 301 | if (SJMap[Func]) return SJMap[Func]; |
| 302 | |
| 303 | // Insert the setjmp map initialization before the first instruction in |
| 304 | // the function. |
Chris Lattner | 02a3be0 | 2003-09-20 14:39:18 +0000 | [diff] [blame] | 305 | Instruction* Inst = Func->getEntryBlock().begin(); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 306 | assert(Inst && "Couldn't find even ONE instruction in entry block!"); |
| 307 | |
| 308 | // Fill in the alloca and call to initialize the SJ map. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 309 | const Type *SBPTy = |
Duncan Sands | ac53a0b | 2009-10-06 15:40:36 +0000 | [diff] [blame] | 310 | Type::getInt8PtrTy(Func->getContext()); |
Owen Anderson | 50dead0 | 2009-07-15 23:53:25 +0000 | [diff] [blame] | 311 | AllocaInst* Map = new AllocaInst(SBPTy, 0, "SJMap", Inst); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 312 | CallInst::Create(InitSJMap, Map, "", Inst); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 313 | return SJMap[Func] = Map; |
| 314 | } |
| 315 | |
| 316 | // GetRethrowBB - Only one rethrow basic block is needed per function. |
| 317 | // If this is a longjmp exception but not handled in this block, this BB |
| 318 | // performs the rethrow. |
| 319 | BasicBlock* LowerSetJmp::GetRethrowBB(Function* Func) |
| 320 | { |
| 321 | if (RethrowBBMap[Func]) return RethrowBBMap[Func]; |
| 322 | |
| 323 | // The basic block we're going to jump to if we need to rethrow the |
| 324 | // exception. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 325 | BasicBlock* Rethrow = |
| 326 | BasicBlock::Create(Func->getContext(), "RethrowExcept", Func); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 327 | |
| 328 | // Fill in the "Rethrow" BB with a call to rethrow the exception. This |
| 329 | // is the last instruction in the BB since at this point the runtime |
| 330 | // should exit this function and go to the next function. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 331 | new UnwindInst(Func->getContext(), Rethrow); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 332 | return RethrowBBMap[Func] = Rethrow; |
| 333 | } |
| 334 | |
| 335 | // GetSJSwitch - Return the switch statement that controls which handler |
| 336 | // (if any) gets called and the value returned to that handler. |
| 337 | LowerSetJmp::SwitchValuePair LowerSetJmp::GetSJSwitch(Function* Func, |
| 338 | BasicBlock* Rethrow) |
| 339 | { |
| 340 | if (SwitchValMap[Func].first) return SwitchValMap[Func]; |
| 341 | |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 342 | BasicBlock* LongJmpPre = |
| 343 | BasicBlock::Create(Func->getContext(), "LongJmpBlkPre", Func); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 344 | |
| 345 | // Keep track of the preliminary basic block for some of the other |
| 346 | // transformations. |
| 347 | PrelimBBMap[Func] = LongJmpPre; |
| 348 | |
| 349 | // Grab the exception. |
Dan Gohman | 52d36e6 | 2008-06-19 17:53:32 +0000 | [diff] [blame] | 350 | CallInst* Cond = CallInst::Create(IsLJException, "IsLJExcept", LongJmpPre); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 351 | |
| 352 | // The "decision basic block" gets the number associated with the |
| 353 | // setjmp call returning to switch on and the value returned by |
| 354 | // longjmp. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 355 | BasicBlock* DecisionBB = |
| 356 | BasicBlock::Create(Func->getContext(), "LJDecisionBB", Func); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 357 | |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 358 | BranchInst::Create(DecisionBB, Rethrow, Cond, LongJmpPre); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 359 | |
| 360 | // Fill in the "decision" basic block. |
Dan Gohman | 52d36e6 | 2008-06-19 17:53:32 +0000 | [diff] [blame] | 361 | CallInst* LJVal = CallInst::Create(GetLJValue, "LJVal", DecisionBB); |
| 362 | CallInst* SJNum = CallInst::Create(TryCatchLJ, GetSetJmpMap(Func), "SJNum", |
| 363 | DecisionBB); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 364 | |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 365 | SwitchInst* SI = SwitchInst::Create(SJNum, Rethrow, 0, DecisionBB); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 366 | return SwitchValMap[Func] = SwitchValuePair(SI, LJVal); |
| 367 | } |
| 368 | |
| 369 | // TransformSetJmpCall - The setjmp call is a bit trickier to transform. |
| 370 | // We're going to convert all setjmp calls to nops. Then all "call" and |
| 371 | // "invoke" instructions in the function are converted to "invoke" where |
| 372 | // the "except" branch is used when returning from a longjmp call. |
| 373 | void LowerSetJmp::TransformSetJmpCall(CallInst* Inst) |
| 374 | { |
| 375 | BasicBlock* ABlock = Inst->getParent(); |
| 376 | Function* Func = ABlock->getParent(); |
| 377 | |
| 378 | // Add this setjmp to the setjmp map. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 379 | const Type* SBPTy = |
Duncan Sands | ac53a0b | 2009-10-06 15:40:36 +0000 | [diff] [blame] | 380 | Type::getInt8PtrTy(Inst->getContext()); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 381 | CastInst* BufPtr = |
Gabor Greif | fef8c4e | 2010-06-24 14:13:36 +0000 | [diff] [blame] | 382 | new BitCastInst(Inst->getArgOperand(0), SBPTy, "SBJmpBuf", Inst); |
Benjamin Kramer | 419e44e | 2009-11-03 12:52:50 +0000 | [diff] [blame] | 383 | Value *Args[] = { |
| 384 | GetSetJmpMap(Func), BufPtr, |
| 385 | ConstantInt::get(Type::getInt32Ty(Inst->getContext()), SetJmpIDMap[Func]++) |
| 386 | }; |
| 387 | CallInst::Create(AddSJToMap, Args, Args + 3, "", Inst); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 388 | |
Chris Lattner | d7222ec | 2003-11-06 19:18:49 +0000 | [diff] [blame] | 389 | // We are guaranteed that there are no values live across basic blocks |
| 390 | // (because we are "not in SSA form" yet), but there can still be values live |
| 391 | // in basic blocks. Because of this, splitting the setjmp block can cause |
| 392 | // values above the setjmp to not dominate uses which are after the setjmp |
| 393 | // call. For all of these occasions, we must spill the value to the stack. |
| 394 | // |
| 395 | std::set<Instruction*> InstrsAfterCall; |
| 396 | |
| 397 | // The call is probably very close to the end of the basic block, for the |
| 398 | // common usage pattern of: 'if (setjmp(...))', so keep track of the |
| 399 | // instructions after the call. |
| 400 | for (BasicBlock::iterator I = ++BasicBlock::iterator(Inst), E = ABlock->end(); |
| 401 | I != E; ++I) |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 402 | InstrsAfterCall.insert(I); |
Chris Lattner | d7222ec | 2003-11-06 19:18:49 +0000 | [diff] [blame] | 403 | |
| 404 | for (BasicBlock::iterator II = ABlock->begin(); |
| 405 | II != BasicBlock::iterator(Inst); ++II) |
| 406 | // Loop over all of the uses of instruction. If any of them are after the |
| 407 | // call, "spill" the value to the stack. |
| 408 | for (Value::use_iterator UI = II->use_begin(), E = II->use_end(); |
Gabor Greif | b7df500 | 2010-07-12 14:12:11 +0000 | [diff] [blame] | 409 | UI != E; ++UI) { |
| 410 | User *U = *UI; |
| 411 | if (cast<Instruction>(U)->getParent() != ABlock || |
| 412 | InstrsAfterCall.count(cast<Instruction>(U))) { |
Owen Anderson | 50dead0 | 2009-07-15 23:53:25 +0000 | [diff] [blame] | 413 | DemoteRegToStack(*II); |
Chris Lattner | d7222ec | 2003-11-06 19:18:49 +0000 | [diff] [blame] | 414 | break; |
| 415 | } |
Gabor Greif | b7df500 | 2010-07-12 14:12:11 +0000 | [diff] [blame] | 416 | } |
Chris Lattner | d7222ec | 2003-11-06 19:18:49 +0000 | [diff] [blame] | 417 | InstrsAfterCall.clear(); |
| 418 | |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 419 | // 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 Lattner | cb2d1a2 | 2005-04-21 16:46:46 +0000 | [diff] [blame] | 424 | SetJmpContBlock->setName(ABlock->getName()+"SetJmpCont"); |
| 425 | |
| 426 | // Add the SetJmpContBlock to the set of blocks reachable from a setjmp. |
| 427 | DFSBlocks.insert(SetJmpContBlock); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 428 | |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 429 | // This PHI node will be in the new block created from the |
| 430 | // splitBasicBlock call. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 431 | PHINode* PHI = PHINode::Create(Type::getInt32Ty(Inst->getContext()), |
| 432 | "SetJmpReturn", Inst); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 433 | |
| 434 | // Coming from a call to setjmp, the return is 0. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 435 | PHI->addIncoming(Constant::getNullValue(Type::getInt32Ty(Inst->getContext())), |
| 436 | ABlock); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 437 | |
| 438 | // Add the case for this setjmp's number... |
| 439 | SwitchValuePair SVP = GetSJSwitch(Func, GetRethrowBB(Func)); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 440 | SVP.first->addCase(ConstantInt::get(Type::getInt32Ty(Inst->getContext()), |
| 441 | SetJmpIDMap[Func] - 1), |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 442 | SetJmpContBlock); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 443 | |
| 444 | // Value coming from the handling of the exception. |
| 445 | PHI->addIncoming(SVP.second, SVP.second->getParent()); |
| 446 | |
| 447 | // Replace all uses of this instruction with the PHI node created by |
| 448 | // the eradication of setjmp. |
| 449 | Inst->replaceAllUsesWith(PHI); |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 450 | Inst->eraseFromParent(); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 451 | |
| 452 | ++SetJmpsTransformed; |
| 453 | } |
| 454 | |
| 455 | // visitCallInst - This converts all LLVM call instructions into invoke |
| 456 | // instructions. The except part of the invoke goes to the "LongJmpBlkPre" |
| 457 | // that grabs the exception and proceeds to determine if it's a longjmp |
| 458 | // exception or not. |
| 459 | void LowerSetJmp::visitCallInst(CallInst& CI) |
| 460 | { |
| 461 | if (CI.getCalledFunction()) |
| 462 | if (!IsTransformableFunction(CI.getCalledFunction()->getName()) || |
| 463 | CI.getCalledFunction()->isIntrinsic()) return; |
| 464 | |
| 465 | BasicBlock* OldBB = CI.getParent(); |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 466 | |
| 467 | // If not reachable from a setjmp call, don't transform. |
| 468 | if (!DFSBlocks.count(OldBB)) return; |
| 469 | |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 470 | BasicBlock* NewBB = OldBB->splitBasicBlock(CI); |
| 471 | assert(NewBB && "Couldn't split BB of \"call\" instruction!!"); |
Chris Lattner | d286b24 | 2005-06-15 22:49:30 +0000 | [diff] [blame] | 472 | DFSBlocks.insert(NewBB); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 473 | NewBB->setName("Call2Invoke"); |
| 474 | |
Chris Lattner | 6d3906b | 2003-10-13 01:02:33 +0000 | [diff] [blame] | 475 | Function* Func = OldBB->getParent(); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 476 | |
| 477 | // Construct the new "invoke" instruction. |
| 478 | TerminatorInst* Term = OldBB->getTerminator(); |
Gabor Greif | fef8c4e | 2010-06-24 14:13:36 +0000 | [diff] [blame] | 479 | CallSite CS(&CI); |
| 480 | std::vector<Value*> Params(CS.arg_begin(), CS.arg_end()); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 481 | InvokeInst* II = |
| 482 | InvokeInst::Create(CI.getCalledValue(), NewBB, PrelimBBMap[Func], |
| 483 | Params.begin(), Params.end(), CI.getName(), Term); |
Duncan Sands | dc02467 | 2007-11-27 13:23:08 +0000 | [diff] [blame] | 484 | II->setCallingConv(CI.getCallingConv()); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 485 | II->setAttributes(CI.getAttributes()); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 486 | |
| 487 | // Replace the old call inst with the invoke inst and remove the call. |
| 488 | CI.replaceAllUsesWith(II); |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 489 | CI.eraseFromParent(); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 490 | |
| 491 | // The old terminator is useless now that we have the invoke inst. |
Dan Gohman | 1adec83 | 2008-06-21 22:08:46 +0000 | [diff] [blame] | 492 | Term->eraseFromParent(); |
Chris Lattner | fe2143d | 2003-10-28 23:14:59 +0000 | [diff] [blame] | 493 | ++CallsTransformed; |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | // visitInvokeInst - Converting the "invoke" instruction is fairly |
| 497 | // straight-forward. The old exception part is replaced by a query asking |
| 498 | // if this is a longjmp exception. If it is, then it goes to the longjmp |
| 499 | // exception blocks. Otherwise, control is passed the old exception. |
| 500 | void LowerSetJmp::visitInvokeInst(InvokeInst& II) |
| 501 | { |
| 502 | if (II.getCalledFunction()) |
| 503 | if (!IsTransformableFunction(II.getCalledFunction()->getName()) || |
| 504 | II.getCalledFunction()->isIntrinsic()) return; |
| 505 | |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 506 | BasicBlock* BB = II.getParent(); |
Chris Lattner | bb2d4de | 2003-10-13 00:57:16 +0000 | [diff] [blame] | 507 | |
| 508 | // If not reachable from a setjmp call, don't transform. |
| 509 | if (!DFSBlocks.count(BB)) return; |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 510 | |
Chris Lattner | aeb2a1d | 2004-02-08 21:44:31 +0000 | [diff] [blame] | 511 | BasicBlock* ExceptBB = II.getUnwindDest(); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 512 | |
Chris Lattner | 6d3906b | 2003-10-13 01:02:33 +0000 | [diff] [blame] | 513 | Function* Func = BB->getParent(); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 514 | BasicBlock* NewExceptBB = BasicBlock::Create(II.getContext(), |
| 515 | "InvokeExcept", Func); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 516 | |
| 517 | // If this is a longjmp exception, then branch to the preliminary BB of |
| 518 | // the longjmp exception handling. Otherwise, go to the old exception. |
Dan Gohman | 52d36e6 | 2008-06-19 17:53:32 +0000 | [diff] [blame] | 519 | CallInst* IsLJExcept = CallInst::Create(IsLJException, "IsLJExcept", |
| 520 | NewExceptBB); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 521 | |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 522 | BranchInst::Create(PrelimBBMap[Func], ExceptBB, IsLJExcept, NewExceptBB); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 523 | |
Chris Lattner | aeb2a1d | 2004-02-08 21:44:31 +0000 | [diff] [blame] | 524 | II.setUnwindDest(NewExceptBB); |
Chris Lattner | fe2143d | 2003-10-28 23:14:59 +0000 | [diff] [blame] | 525 | ++InvokesTransformed; |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | // visitReturnInst - We want to destroy the setjmp map upon exit from the |
| 529 | // function. |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 530 | void LowerSetJmp::visitReturnInst(ReturnInst &RI) { |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 531 | Function* Func = RI.getParent()->getParent(); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 532 | CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &RI); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | // visitUnwindInst - We want to destroy the setjmp map upon exit from the |
| 536 | // function. |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 537 | void LowerSetJmp::visitUnwindInst(UnwindInst &UI) { |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 538 | Function* Func = UI.getParent()->getParent(); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 539 | CallInst::Create(DestroySJMap, GetSetJmpMap(Func), "", &UI); |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 540 | } |
| 541 | |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 542 | ModulePass *llvm::createLowerSetJmpPass() { |
Chris Lattner | 6420f1c | 2003-09-15 04:56:27 +0000 | [diff] [blame] | 543 | return new LowerSetJmp(); |
| 544 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 545 | |