blob: d74633b82b8684aa73320c0014b6ae606b63f2a2 [file] [log] [blame]
Chris Lattnera43b8f42003-10-05 19:14:42 +00001//===- LowerInvoke.cpp - Eliminate Invoke & Unwind instructions -----------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnera43b8f42003-10-05 19:14:42 +00009//
10// This transformation is designed for use by code generators which do not yet
Chris Lattner108cadc2004-02-08 19:53:56 +000011// support stack unwinding. This pass supports two models of exception handling
12// lowering, the 'cheap' support and the 'expensive' support.
13//
14// 'Cheap' exception handling support gives the program the ability to execute
15// any program which does not "throw an exception", by turning 'invoke'
16// instructions into calls and by turning 'unwind' instructions into calls to
17// abort(). If the program does dynamically use the unwind instruction, the
18// program will print a message then abort.
19//
20// 'Expensive' exception handling support gives the full exception handling
John Criswellf42ed7b2005-05-02 14:47:42 +000021// support to the program at the cost of making the 'invoke' instruction
22// really expensive. It basically inserts setjmp/longjmp calls to emulate the
23// exception handling as necessary.
Chris Lattner108cadc2004-02-08 19:53:56 +000024//
25// Because the 'expensive' support slows down programs a lot, and EH is only
26// used for a subset of the programs, it must be specifically enabled by an
27// option.
Chris Lattnera43b8f42003-10-05 19:14:42 +000028//
Chris Lattner61fab142004-03-31 22:00:30 +000029// Note that after this pass runs the CFG is not entirely accurate (exceptional
30// control flow edges are not correct anymore) so only very simple things should
31// be done after the lowerinvoke pass has run (like generation of native code).
32// This should not be used as a general purpose "my LLVM-to-LLVM pass doesn't
33// support the invoke instruction yet" lowering pass.
34//
Chris Lattnera43b8f42003-10-05 19:14:42 +000035//===----------------------------------------------------------------------===//
36
37#include "llvm/Transforms/Scalar.h"
Chris Lattner476488e2004-02-08 07:30:29 +000038#include "llvm/Constants.h"
39#include "llvm/DerivedTypes.h"
Chris Lattner108cadc2004-02-08 19:53:56 +000040#include "llvm/Instructions.h"
Chris Lattner476488e2004-02-08 07:30:29 +000041#include "llvm/Module.h"
Chris Lattnera43b8f42003-10-05 19:14:42 +000042#include "llvm/Pass.h"
Chris Lattner108cadc2004-02-08 19:53:56 +000043#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner87eb2492005-09-27 21:18:17 +000044#include "llvm/Transforms/Utils/Local.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000045#include "llvm/ADT/Statistic.h"
46#include "llvm/Support/CommandLine.h"
Chris Lattner108cadc2004-02-08 19:53:56 +000047#include <csetjmp>
Chris Lattner7e5bd592003-12-10 20:22:42 +000048using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000049
Chris Lattnera43b8f42003-10-05 19:14:42 +000050namespace {
Chris Lattner87eb2492005-09-27 21:18:17 +000051 Statistic<> NumInvokes("lowerinvoke", "Number of invokes replaced");
52 Statistic<> NumUnwinds("lowerinvoke", "Number of unwinds replaced");
53 Statistic<> NumSpilled("lowerinvoke",
54 "Number of registers live across unwind edges");
Chris Lattner5cf39332004-03-01 01:12:13 +000055 cl::opt<bool> ExpensiveEHSupport("enable-correct-eh-support",
Chris Lattner108cadc2004-02-08 19:53:56 +000056 cl::desc("Make the -lowerinvoke pass insert expensive, but correct, EH code"));
Chris Lattnera43b8f42003-10-05 19:14:42 +000057
58 class LowerInvoke : public FunctionPass {
Chris Lattner108cadc2004-02-08 19:53:56 +000059 // Used for both models.
Chris Lattner476488e2004-02-08 07:30:29 +000060 Function *WriteFn;
Chris Lattnera43b8f42003-10-05 19:14:42 +000061 Function *AbortFn;
Chris Lattner108cadc2004-02-08 19:53:56 +000062 Value *AbortMessage;
63 unsigned AbortMessageLength;
64
65 // Used for expensive EH support.
66 const Type *JBLinkTy;
67 GlobalVariable *JBListHead;
68 Function *SetJmpFn, *LongJmpFn;
Chris Lattnera43b8f42003-10-05 19:14:42 +000069 public:
70 bool doInitialization(Module &M);
71 bool runOnFunction(Function &F);
Chris Lattner87eb2492005-09-27 21:18:17 +000072
Chris Lattner108cadc2004-02-08 19:53:56 +000073 private:
Chris Lattner2858e172004-11-13 19:07:32 +000074 void createAbortMessage();
Chris Lattner3b7f6b22004-02-08 22:14:44 +000075 void writeAbortMessage(Instruction *IB);
Chris Lattner108cadc2004-02-08 19:53:56 +000076 bool insertCheapEHSupport(Function &F);
Chris Lattner87eb2492005-09-27 21:18:17 +000077 void splitLiveRangesLiveAcrossInvokes(std::vector<InvokeInst*> &Invokes);
78 void rewriteExpensiveInvoke(InvokeInst *II, unsigned InvokeNo,
79 AllocaInst *InvokeNum, SwitchInst *CatchSwitch);
Chris Lattner108cadc2004-02-08 19:53:56 +000080 bool insertExpensiveEHSupport(Function &F);
Chris Lattnera43b8f42003-10-05 19:14:42 +000081 };
82
83 RegisterOpt<LowerInvoke>
84 X("lowerinvoke", "Lower invoke and unwind, for unwindless code generators");
85}
86
Chris Lattner7cbb22a2004-02-13 16:16:16 +000087const PassInfo *llvm::LowerInvokePassID = X.getPassInfo();
88
Brian Gaeke960707c2003-11-11 22:41:34 +000089// Public Interface To the LowerInvoke pass.
Chris Lattner7e5bd592003-12-10 20:22:42 +000090FunctionPass *llvm::createLowerInvokePass() { return new LowerInvoke(); }
Chris Lattnera43b8f42003-10-05 19:14:42 +000091
92// doInitialization - Make sure that there is a prototype for abort in the
93// current module.
94bool LowerInvoke::doInitialization(Module &M) {
Chris Lattner108cadc2004-02-08 19:53:56 +000095 const Type *VoidPtrTy = PointerType::get(Type::SByteTy);
Chris Lattner37d46f42004-02-09 22:48:47 +000096 AbortMessage = 0;
Chris Lattner108cadc2004-02-08 19:53:56 +000097 if (ExpensiveEHSupport) {
98 // Insert a type for the linked list of jump buffers. Unfortunately, we
99 // don't know the size of the target's setjmp buffer, so we make a guess.
100 // If this guess turns out to be too small, bad stuff could happen.
101 unsigned JmpBufSize = 200; // PPC has 192 words
102 assert(sizeof(jmp_buf) <= JmpBufSize*sizeof(void*) &&
103 "LowerInvoke doesn't know about targets with jmp_buf size > 200 words!");
104 const Type *JmpBufTy = ArrayType::get(VoidPtrTy, JmpBufSize);
Chris Lattner476488e2004-02-08 07:30:29 +0000105
Chris Lattner108cadc2004-02-08 19:53:56 +0000106 { // The type is recursive, so use a type holder.
107 std::vector<const Type*> Elements;
Chris Lattner87eb2492005-09-27 21:18:17 +0000108 Elements.push_back(JmpBufTy);
Chris Lattner108cadc2004-02-08 19:53:56 +0000109 OpaqueType *OT = OpaqueType::get();
110 Elements.push_back(PointerType::get(OT));
Chris Lattner108cadc2004-02-08 19:53:56 +0000111 PATypeHolder JBLType(StructType::get(Elements));
112 OT->refineAbstractTypeTo(JBLType.get()); // Complete the cycle.
113 JBLinkTy = JBLType.get();
Chris Lattner523d3e62004-05-28 05:02:13 +0000114 M.addTypeName("llvm.sjljeh.jmpbufty", JBLinkTy);
Chris Lattner108cadc2004-02-08 19:53:56 +0000115 }
116
117 const Type *PtrJBList = PointerType::get(JBLinkTy);
118
119 // Now that we've done that, insert the jmpbuf list head global, unless it
120 // already exists.
121 if (!(JBListHead = M.getGlobalVariable("llvm.sjljeh.jblist", PtrJBList)))
122 JBListHead = new GlobalVariable(PtrJBList, false,
123 GlobalValue::LinkOnceLinkage,
124 Constant::getNullValue(PtrJBList),
125 "llvm.sjljeh.jblist", &M);
Chris Lattnerd85e0612004-02-15 22:24:27 +0000126 SetJmpFn = M.getOrInsertFunction("llvm.setjmp", Type::IntTy,
Chris Lattner1609a542005-06-09 03:32:54 +0000127 PointerType::get(JmpBufTy), NULL);
Chris Lattnerd85e0612004-02-15 22:24:27 +0000128 LongJmpFn = M.getOrInsertFunction("llvm.longjmp", Type::VoidTy,
Chris Lattner108cadc2004-02-08 19:53:56 +0000129 PointerType::get(JmpBufTy),
Chris Lattner1609a542005-06-09 03:32:54 +0000130 Type::IntTy, NULL);
Chris Lattner108cadc2004-02-08 19:53:56 +0000131 }
132
133 // We need the 'write' and 'abort' functions for both models.
Chris Lattner1609a542005-06-09 03:32:54 +0000134 AbortFn = M.getOrInsertFunction("abort", Type::VoidTy, NULL);
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000135
136 // Unfortunately, 'write' can end up being prototyped in several different
137 // ways. If the user defines a three (or more) operand function named 'write'
Misha Brukman3480e932004-02-08 22:27:33 +0000138 // we will use their prototype. We _do not_ want to insert another instance
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000139 // of a write prototype, because we don't know that the funcresolve pass will
140 // run after us. If there is a definition of a write function, but it's not
141 // suitable for our uses, we just don't emit write calls. If there is no
142 // write prototype at all, we just add one.
143 if (Function *WF = M.getNamedFunction("write")) {
144 if (WF->getFunctionType()->getNumParams() > 3 ||
145 WF->getFunctionType()->isVarArg())
146 WriteFn = WF;
147 else
148 WriteFn = 0;
149 } else {
150 WriteFn = M.getOrInsertFunction("write", Type::VoidTy, Type::IntTy,
Chris Lattner1609a542005-06-09 03:32:54 +0000151 VoidPtrTy, Type::IntTy, NULL);
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000152 }
Chris Lattnera43b8f42003-10-05 19:14:42 +0000153 return true;
154}
155
Chris Lattner2858e172004-11-13 19:07:32 +0000156void LowerInvoke::createAbortMessage() {
157 Module &M = *WriteFn->getParent();
158 if (ExpensiveEHSupport) {
159 // The abort message for expensive EH support tells the user that the
160 // program 'unwound' without an 'invoke' instruction.
161 Constant *Msg =
162 ConstantArray::get("ERROR: Exception thrown, but not caught!\n");
163 AbortMessageLength = Msg->getNumOperands()-1; // don't include \0
Misha Brukmanb1c93172005-04-21 23:48:37 +0000164
Chris Lattner2858e172004-11-13 19:07:32 +0000165 GlobalVariable *MsgGV = new GlobalVariable(Msg->getType(), true,
166 GlobalValue::InternalLinkage,
167 Msg, "abortmsg", &M);
Chris Lattnerae186e02005-05-13 06:10:12 +0000168 std::vector<Constant*> GEPIdx(2, Constant::getNullValue(Type::IntTy));
Chris Lattner2858e172004-11-13 19:07:32 +0000169 AbortMessage = ConstantExpr::getGetElementPtr(MsgGV, GEPIdx);
170 } else {
171 // The abort message for cheap EH support tells the user that EH is not
172 // enabled.
173 Constant *Msg =
174 ConstantArray::get("Exception handler needed, but not enabled. Recompile"
175 " program with -enable-correct-eh-support.\n");
176 AbortMessageLength = Msg->getNumOperands()-1; // don't include \0
177
178 GlobalVariable *MsgGV = new GlobalVariable(Msg->getType(), true,
179 GlobalValue::InternalLinkage,
180 Msg, "abortmsg", &M);
Chris Lattnerae186e02005-05-13 06:10:12 +0000181 std::vector<Constant*> GEPIdx(2, Constant::getNullValue(Type::IntTy));
Chris Lattner2858e172004-11-13 19:07:32 +0000182 AbortMessage = ConstantExpr::getGetElementPtr(MsgGV, GEPIdx);
183 }
184}
185
186
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000187void LowerInvoke::writeAbortMessage(Instruction *IB) {
188 if (WriteFn) {
Chris Lattner2858e172004-11-13 19:07:32 +0000189 if (AbortMessage == 0) createAbortMessage();
190
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000191 // These are the arguments we WANT...
192 std::vector<Value*> Args;
193 Args.push_back(ConstantInt::get(Type::IntTy, 2));
194 Args.push_back(AbortMessage);
195 Args.push_back(ConstantInt::get(Type::IntTy, AbortMessageLength));
196
197 // If the actual declaration of write disagrees, insert casts as
198 // appropriate.
199 const FunctionType *FT = WriteFn->getFunctionType();
200 unsigned NumArgs = FT->getNumParams();
201 for (unsigned i = 0; i != 3; ++i)
202 if (i < NumArgs && FT->getParamType(i) != Args[i]->getType())
Misha Brukmanb1c93172005-04-21 23:48:37 +0000203 Args[i] = ConstantExpr::getCast(cast<Constant>(Args[i]),
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000204 FT->getParamType(i));
205
Chris Lattner6aacb0f2005-05-06 06:48:21 +0000206 (new CallInst(WriteFn, Args, "", IB))->setTailCall();
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000207 }
208}
209
Chris Lattner108cadc2004-02-08 19:53:56 +0000210bool LowerInvoke::insertCheapEHSupport(Function &F) {
Chris Lattnera43b8f42003-10-05 19:14:42 +0000211 bool Changed = false;
Chris Lattner7e5bd592003-12-10 20:22:42 +0000212 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
213 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
Chris Lattnera43b8f42003-10-05 19:14:42 +0000214 // Insert a normal call instruction...
215 std::string Name = II->getName(); II->setName("");
Chris Lattnerca968392005-05-13 06:27:02 +0000216 CallInst *NewCall = new CallInst(II->getCalledValue(),
217 std::vector<Value*>(II->op_begin()+3,
218 II->op_end()), Name, II);
219 NewCall->setCallingConv(II->getCallingConv());
Chris Lattnera43b8f42003-10-05 19:14:42 +0000220 II->replaceAllUsesWith(NewCall);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000221
Chris Lattner7e5bd592003-12-10 20:22:42 +0000222 // Insert an unconditional branch to the normal destination.
Chris Lattnera43b8f42003-10-05 19:14:42 +0000223 new BranchInst(II->getNormalDest(), II);
224
Chris Lattner7e5bd592003-12-10 20:22:42 +0000225 // Remove any PHI node entries from the exception destination.
Chris Lattnerfae8ab32004-02-08 21:44:31 +0000226 II->getUnwindDest()->removePredecessor(BB);
Chris Lattner7e5bd592003-12-10 20:22:42 +0000227
Chris Lattnera43b8f42003-10-05 19:14:42 +0000228 // Remove the invoke instruction now.
Chris Lattner7e5bd592003-12-10 20:22:42 +0000229 BB->getInstList().erase(II);
Chris Lattnera43b8f42003-10-05 19:14:42 +0000230
Chris Lattner87eb2492005-09-27 21:18:17 +0000231 ++NumInvokes; Changed = true;
Chris Lattner7e5bd592003-12-10 20:22:42 +0000232 } else if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
Chris Lattner476488e2004-02-08 07:30:29 +0000233 // Insert a new call to write(2, AbortMessage, AbortMessageLength);
Chris Lattner3b7f6b22004-02-08 22:14:44 +0000234 writeAbortMessage(UI);
Chris Lattner476488e2004-02-08 07:30:29 +0000235
Chris Lattnera43b8f42003-10-05 19:14:42 +0000236 // Insert a call to abort()
Chris Lattner6aacb0f2005-05-06 06:48:21 +0000237 (new CallInst(AbortFn, std::vector<Value*>(), "", UI))->setTailCall();
Chris Lattnera43b8f42003-10-05 19:14:42 +0000238
Chris Lattner108cadc2004-02-08 19:53:56 +0000239 // Insert a return instruction. This really should be a "barrier", as it
240 // is unreachable.
Chris Lattnera43b8f42003-10-05 19:14:42 +0000241 new ReturnInst(F.getReturnType() == Type::VoidTy ? 0 :
242 Constant::getNullValue(F.getReturnType()), UI);
243
244 // Remove the unwind instruction now.
Chris Lattner7e5bd592003-12-10 20:22:42 +0000245 BB->getInstList().erase(UI);
Chris Lattnera43b8f42003-10-05 19:14:42 +0000246
Chris Lattner87eb2492005-09-27 21:18:17 +0000247 ++NumUnwinds; Changed = true;
Chris Lattnera43b8f42003-10-05 19:14:42 +0000248 }
249 return Changed;
250}
Chris Lattner108cadc2004-02-08 19:53:56 +0000251
Chris Lattner87eb2492005-09-27 21:18:17 +0000252/// rewriteExpensiveInvoke - Insert code and hack the function to replace the
253/// specified invoke instruction with a call.
254void LowerInvoke::rewriteExpensiveInvoke(InvokeInst *II, unsigned InvokeNo,
255 AllocaInst *InvokeNum,
256 SwitchInst *CatchSwitch) {
257 ConstantUInt *InvokeNoC = ConstantUInt::get(Type::UIntTy, InvokeNo);
Chris Lattner108cadc2004-02-08 19:53:56 +0000258
Chris Lattner87eb2492005-09-27 21:18:17 +0000259 // Insert a store of the invoke num before the invoke and store zero into the
260 // location afterward.
261 new StoreInst(InvokeNoC, InvokeNum, true, II); // volatile
262 new StoreInst(Constant::getNullValue(Type::UIntTy), InvokeNum, false,
263 II->getNormalDest()->begin()); // nonvolatile.
264
265 // Add a switch case to our unwind block.
266 CatchSwitch->addCase(InvokeNoC, II->getUnwindDest());
267
268 // Insert a normal call instruction.
269 std::string Name = II->getName(); II->setName("");
270 CallInst *NewCall = new CallInst(II->getCalledValue(),
271 std::vector<Value*>(II->op_begin()+3,
272 II->op_end()), Name,
273 II);
274 NewCall->setCallingConv(II->getCallingConv());
275 II->replaceAllUsesWith(NewCall);
276
277 // Replace the invoke with an uncond branch.
278 new BranchInst(II->getNormalDest(), NewCall->getParent());
279 II->eraseFromParent();
280}
Chris Lattner108cadc2004-02-08 19:53:56 +0000281
Chris Lattner87eb2492005-09-27 21:18:17 +0000282/// MarkBlocksLiveIn - Insert BB and all of its predescessors into LiveBBs until
283/// we reach blocks we've already seen.
284static void MarkBlocksLiveIn(BasicBlock *BB, std::set<BasicBlock*> &LiveBBs) {
285 if (!LiveBBs.insert(BB).second) return; // already been here.
286
287 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
288 MarkBlocksLiveIn(*PI, LiveBBs);
289}
Chris Lattner108cadc2004-02-08 19:53:56 +0000290
Chris Lattner87eb2492005-09-27 21:18:17 +0000291// First thing we need to do is scan the whole function for values that are
292// live across unwind edges. Each value that is live across an unwind edge
293// we spill into a stack location, guaranteeing that there is nothing live
294// across the unwind edge. This process also splits all critical edges
295// coming out of invoke's.
296void LowerInvoke::
297splitLiveRangesLiveAcrossInvokes(std::vector<InvokeInst*> &Invokes) {
298 // First step, split all critical edges from invoke instructions.
299 for (unsigned i = 0, e = Invokes.size(); i != e; ++i) {
300 InvokeInst *II = Invokes[i];
301 SplitCriticalEdge(II, 0, this);
302 SplitCriticalEdge(II, 1, this);
303 assert(!isa<PHINode>(II->getNormalDest()) &&
304 !isa<PHINode>(II->getUnwindDest()) &&
305 "critical edge splitting left single entry phi nodes?");
Chris Lattner108cadc2004-02-08 19:53:56 +0000306 }
307
Chris Lattner87eb2492005-09-27 21:18:17 +0000308 Function *F = Invokes.back()->getParent()->getParent();
309
310 // To avoid having to handle incoming arguments specially, we lower each arg
311 // to a copy instruction in the entry block. This ensure that the argument
312 // value itself cannot be live across the entry block.
313 BasicBlock::iterator AfterAllocaInsertPt = F->begin()->begin();
314 while (isa<AllocaInst>(AfterAllocaInsertPt) &&
315 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsertPt)->getArraySize()))
316 ++AfterAllocaInsertPt;
317 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
318 AI != E; ++AI) {
319 CastInst *NC = new CastInst(AI, AI->getType(), AI->getName()+".tmp",
320 AfterAllocaInsertPt);
321 AI->replaceAllUsesWith(NC);
322 NC->setOperand(0, AI);
323 }
324
325 // Finally, scan the code looking for instructions with bad live ranges.
326 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
327 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
328 // Ignore obvious cases we don't have to handle. In particular, most
329 // instructions either have no uses or only have a single use inside the
330 // current block. Ignore them quickly.
331 Instruction *Inst = II;
332 if (Inst->use_empty()) continue;
333 if (Inst->hasOneUse() &&
334 cast<Instruction>(Inst->use_back())->getParent() == BB &&
335 !isa<PHINode>(Inst->use_back())) continue;
336
Chris Lattnere285f5e2005-09-27 21:33:12 +0000337 // If this is an alloca in the entry block, it's not a real register
338 // value.
339 if (AllocaInst *AI = dyn_cast<AllocaInst>(Inst))
340 if (isa<ConstantInt>(AI->getArraySize()) && BB == F->begin())
341 continue;
342
Chris Lattner87eb2492005-09-27 21:18:17 +0000343 // Avoid iterator invalidation by copying users to a temporary vector.
344 std::vector<Instruction*> Users;
345 for (Value::use_iterator UI = Inst->use_begin(), E = Inst->use_end();
346 UI != E; ++UI) {
347 Instruction *User = cast<Instruction>(*UI);
348 if (User->getParent() != BB || isa<PHINode>(User))
349 Users.push_back(User);
350 }
351
352 // Scan all of the uses and see if the live range is live across an unwind
353 // edge. If we find a use live across an invoke edge, create an alloca
354 // and spill the value.
355 AllocaInst *SpillLoc = 0;
356 std::set<InvokeInst*> InvokesWithStoreInserted;
357
358 // Find all of the blocks that this value is live in.
359 std::set<BasicBlock*> LiveBBs;
360 LiveBBs.insert(Inst->getParent());
361 while (!Users.empty()) {
362 Instruction *U = Users.back();
363 Users.pop_back();
364
365 BasicBlock *UseBlock;
366 if (!isa<PHINode>(U)) {
367 MarkBlocksLiveIn(U->getParent(), LiveBBs);
368 } else {
369 // Uses for a PHI node occur in their predecessor block.
370 PHINode *PN = cast<PHINode>(U);
371 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
372 if (PN->getIncomingValue(i) == Inst)
373 MarkBlocksLiveIn(PN->getIncomingBlock(i), LiveBBs);
374 }
375 }
376
377 // Now that we know all of the blocks that this thing is live in, see if
378 // it includes any of the unwind locations.
379 bool NeedsSpill = false;
380 for (unsigned i = 0, e = Invokes.size(); i != e; ++i) {
381 BasicBlock *UnwindBlock = Invokes[i]->getUnwindDest();
382 if (UnwindBlock != BB && LiveBBs.count(UnwindBlock)) {
383 NeedsSpill = true;
384 }
385 }
386
387 // If we decided we need a spill, do it.
388 if (NeedsSpill) {
389 ++NumSpilled;
390 DemoteRegToStack(*Inst, true);
391 }
392 }
393}
394
395bool LowerInvoke::insertExpensiveEHSupport(Function &F) {
396 std::vector<ReturnInst*> Returns;
397 std::vector<UnwindInst*> Unwinds;
398 std::vector<InvokeInst*> Invokes;
399
400 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
401 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
402 // Remember all return instructions in case we insert an invoke into this
403 // function.
404 Returns.push_back(RI);
405 } else if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) {
406 Invokes.push_back(II);
407 } else if (UnwindInst *UI = dyn_cast<UnwindInst>(BB->getTerminator())) {
408 Unwinds.push_back(UI);
409 }
410
411 if (Unwinds.empty() && Invokes.empty()) return false;
412
413 NumInvokes += Invokes.size();
414 NumUnwinds += Unwinds.size();
Chris Lattner3b63bb32005-09-27 22:44:59 +0000415
416 // TODO: This is not an optimal way to do this. In particular, this always
417 // inserts setjmp calls into the entries of functions with invoke instructions
418 // even though there are possibly paths through the function that do not
419 // execute any invokes. In particular, for functions with early exits, e.g.
420 // the 'addMove' method in hexxagon, it would be nice to not have to do the
421 // setjmp stuff on the early exit path. This requires a bit of dataflow, but
422 // would not be too hard to do.
Chris Lattner87eb2492005-09-27 21:18:17 +0000423
424 // If we have an invoke instruction, insert a setjmp that dominates all
425 // invokes. After the setjmp, use a cond branch that goes to the original
426 // code path on zero, and to a designated 'catch' block of nonzero.
427 Value *OldJmpBufPtr = 0;
428 if (!Invokes.empty()) {
429 // First thing we need to do is scan the whole function for values that are
430 // live across unwind edges. Each value that is live across an unwind edge
431 // we spill into a stack location, guaranteeing that there is nothing live
432 // across the unwind edge. This process also splits all critical edges
433 // coming out of invoke's.
434 splitLiveRangesLiveAcrossInvokes(Invokes);
435
436 BasicBlock *EntryBB = F.begin();
437
438 // Create an alloca for the incoming jump buffer ptr and the new jump buffer
439 // that needs to be restored on all exits from the function. This is an
440 // alloca because the value needs to be live across invokes.
441 AllocaInst *JmpBuf =
442 new AllocaInst(JBLinkTy, 0, "jblink", F.begin()->begin());
443
444 std::vector<Value*> Idx;
445 Idx.push_back(Constant::getNullValue(Type::IntTy));
446 Idx.push_back(ConstantUInt::get(Type::UIntTy, 1));
447 OldJmpBufPtr = new GetElementPtrInst(JmpBuf, Idx, "OldBuf",
448 EntryBB->getTerminator());
449
450 // Copy the JBListHead to the alloca.
451 Value *OldBuf = new LoadInst(JBListHead, "oldjmpbufptr", true,
452 EntryBB->getTerminator());
453 new StoreInst(OldBuf, OldJmpBufPtr, true, EntryBB->getTerminator());
454
455 // Add the new jumpbuf to the list.
456 new StoreInst(JmpBuf, JBListHead, true, EntryBB->getTerminator());
457
458 // Create the catch block. The catch block is basically a big switch
459 // statement that goes to all of the invoke catch blocks.
460 BasicBlock *CatchBB = new BasicBlock("setjmp.catch", &F);
461
462 // Create an alloca which keeps track of which invoke is currently
463 // executing. For normal calls it contains zero.
464 AllocaInst *InvokeNum = new AllocaInst(Type::UIntTy, 0, "invokenum",
465 EntryBB->begin());
466 new StoreInst(ConstantInt::get(Type::UIntTy, 0), InvokeNum, true,
467 EntryBB->getTerminator());
468
469 // Insert a load in the Catch block, and a switch on its value. By default,
470 // we go to a block that just does an unwind (which is the correct action
471 // for a standard call).
472 BasicBlock *UnwindBB = new BasicBlock("unwindbb", &F);
473 Unwinds.push_back(new UnwindInst(UnwindBB));
474
475 Value *CatchLoad = new LoadInst(InvokeNum, "invoke.num", true, CatchBB);
476 SwitchInst *CatchSwitch =
477 new SwitchInst(CatchLoad, UnwindBB, Invokes.size(), CatchBB);
478
479 // Now that things are set up, insert the setjmp call itself.
480
481 // Split the entry block to insert the conditional branch for the setjmp.
482 BasicBlock *ContBlock = EntryBB->splitBasicBlock(EntryBB->getTerminator(),
483 "setjmp.cont");
484
485 Idx[1] = ConstantUInt::get(Type::UIntTy, 0);
486 Value *JmpBufPtr = new GetElementPtrInst(JmpBuf, Idx, "TheJmpBuf",
487 EntryBB->getTerminator());
488 Value *SJRet = new CallInst(SetJmpFn, JmpBufPtr, "sjret",
489 EntryBB->getTerminator());
490
491 // Compare the return value to zero.
492 Value *IsNormal = BinaryOperator::createSetEQ(SJRet,
493 Constant::getNullValue(SJRet->getType()),
494 "notunwind", EntryBB->getTerminator());
495 // Nuke the uncond branch.
496 EntryBB->getTerminator()->eraseFromParent();
497
498 // Put in a new condbranch in its place.
499 new BranchInst(ContBlock, CatchBB, IsNormal, EntryBB);
500
501 // At this point, we are all set up, rewrite each invoke instruction.
502 for (unsigned i = 0, e = Invokes.size(); i != e; ++i)
503 rewriteExpensiveInvoke(Invokes[i], i+1, InvokeNum, CatchSwitch);
504 }
505
506 // We know that there is at least one unwind.
507
508 // Create three new blocks, the block to load the jmpbuf ptr and compare
509 // against null, the block to do the longjmp, and the error block for if it
510 // is null. Add them at the end of the function because they are not hot.
511 BasicBlock *UnwindHandler = new BasicBlock("dounwind", &F);
512 BasicBlock *UnwindBlock = new BasicBlock("unwind", &F);
513 BasicBlock *TermBlock = new BasicBlock("unwinderror", &F);
514
515 // If this function contains an invoke, restore the old jumpbuf ptr.
516 Value *BufPtr;
517 if (OldJmpBufPtr) {
518 // Before the return, insert a copy from the saved value to the new value.
519 BufPtr = new LoadInst(OldJmpBufPtr, "oldjmpbufptr", UnwindHandler);
520 new StoreInst(BufPtr, JBListHead, UnwindHandler);
521 } else {
522 BufPtr = new LoadInst(JBListHead, "ehlist", UnwindHandler);
523 }
524
525 // Load the JBList, if it's null, then there was no catch!
526 Value *NotNull = BinaryOperator::createSetNE(BufPtr,
527 Constant::getNullValue(BufPtr->getType()),
528 "notnull", UnwindHandler);
529 new BranchInst(UnwindBlock, TermBlock, NotNull, UnwindHandler);
530
531 // Create the block to do the longjmp.
532 // Get a pointer to the jmpbuf and longjmp.
533 std::vector<Value*> Idx;
534 Idx.push_back(Constant::getNullValue(Type::IntTy));
535 Idx.push_back(ConstantUInt::get(Type::UIntTy, 0));
536 Idx[0] = new GetElementPtrInst(BufPtr, Idx, "JmpBuf", UnwindBlock);
537 Idx[1] = ConstantInt::get(Type::IntTy, 1);
538 new CallInst(LongJmpFn, Idx, "", UnwindBlock);
539 new UnreachableInst(UnwindBlock);
540
541 // Set up the term block ("throw without a catch").
542 new UnreachableInst(TermBlock);
543
544 // Insert a new call to write(2, AbortMessage, AbortMessageLength);
545 writeAbortMessage(TermBlock->getTerminator());
546
547 // Insert a call to abort()
548 (new CallInst(AbortFn, std::vector<Value*>(), "",
549 TermBlock->getTerminator()))->setTailCall();
550
551
552 // Replace all unwinds with a branch to the unwind handler.
553 for (unsigned i = 0, e = Unwinds.size(); i != e; ++i) {
554 new BranchInst(UnwindHandler, Unwinds[i]);
555 Unwinds[i]->eraseFromParent();
556 }
557
558 // Finally, for any returns from this function, if this function contains an
559 // invoke, restore the old jmpbuf pointer to its input value.
560 if (OldJmpBufPtr) {
561 for (unsigned i = 0, e = Returns.size(); i != e; ++i) {
562 ReturnInst *R = Returns[i];
563
564 // Before the return, insert a copy from the saved value to the new value.
565 Value *OldBuf = new LoadInst(OldJmpBufPtr, "oldjmpbufptr", true, R);
566 new StoreInst(OldBuf, JBListHead, true, R);
567 }
568 }
569
570 return true;
Chris Lattner108cadc2004-02-08 19:53:56 +0000571}
572
573bool LowerInvoke::runOnFunction(Function &F) {
574 if (ExpensiveEHSupport)
575 return insertExpensiveEHSupport(F);
576 else
577 return insertCheapEHSupport(F);
578}