blob: 75b74d9a6c33243a79369f73147750e89e7e1bfb [file] [log] [blame]
Duncan Sandsd6fb6502009-05-22 20:36:31 +00001//===-- DwarfEHPrepare - Prepare exception handling for code generation ---===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass mulches exception handling code into a form adapted to code
Bill Wendlingd1aa77c2010-03-26 23:41:30 +000011// generation. Required if using dwarf exception handling.
Duncan Sandsd6fb6502009-05-22 20:36:31 +000012//
13//===----------------------------------------------------------------------===//
14
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/CodeGen/Passes.h"
16#include "llvm/ADT/Statistic.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000017#include "llvm/IR/CallSite.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000018#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/Function.h"
20#include "llvm/IR/Instructions.h"
21#include "llvm/IR/IntrinsicInst.h"
22#include "llvm/IR/Module.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/MC/MCAsmInfo.h"
Duncan Sandsd6fb6502009-05-22 20:36:31 +000024#include "llvm/Pass.h"
Duncan Sandsd6fb6502009-05-22 20:36:31 +000025#include "llvm/Target/TargetLowering.h"
Eric Christopherd9134482014-08-04 21:25:23 +000026#include "llvm/Target/TargetSubtargetInfo.h"
Duncan Sandsd6fb6502009-05-22 20:36:31 +000027#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Duncan Sandsbc42c902010-09-03 08:31:48 +000028#include "llvm/Transforms/Utils/SSAUpdater.h"
Duncan Sandsd6fb6502009-05-22 20:36:31 +000029using namespace llvm;
30
Chandler Carruth1b9dde02014-04-22 02:02:50 +000031#define DEBUG_TYPE "dwarfehprepare"
32
Bill Wendling478f58c2011-11-07 23:36:48 +000033STATISTIC(NumResumesLowered, "Number of resume calls lowered");
Duncan Sandsd6fb6502009-05-22 20:36:31 +000034
35namespace {
Nick Lewycky02d5f772009-10-25 06:33:48 +000036 class DwarfEHPrepare : public FunctionPass {
Bill Wendlingafc10362013-06-19 20:51:24 +000037 const TargetMachine *TM;
Duncan Sandsd6fb6502009-05-22 20:36:31 +000038
Bill Wendling478f58c2011-11-07 23:36:48 +000039 // RewindFunction - _Unwind_Resume or the target equivalent.
Duncan Sandsd6fb6502009-05-22 20:36:31 +000040 Constant *RewindFunction;
41
Bill Wendling478f58c2011-11-07 23:36:48 +000042 bool InsertUnwindResumeCalls(Function &Fn);
Bill Wendling27489fe2012-05-17 17:59:51 +000043 Value *GetExceptionObject(ResumeInst *RI);
Duncan Sandsd6fb6502009-05-22 20:36:31 +000044
Duncan Sandsd6fb6502009-05-22 20:36:31 +000045 public:
46 static char ID; // Pass identification, replacement for typeid.
Chandler Carruth73523022014-01-13 13:07:17 +000047 DwarfEHPrepare(const TargetMachine *TM)
Craig Topperc0196b12014-04-14 00:51:57 +000048 : FunctionPass(ID), TM(TM), RewindFunction(nullptr) {
Chandler Carruth73523022014-01-13 13:07:17 +000049 initializeDominatorTreeWrapperPassPass(*PassRegistry::getPassRegistry());
50 }
Duncan Sandsd6fb6502009-05-22 20:36:31 +000051
Craig Topper4584cd52014-03-07 09:26:03 +000052 bool runOnFunction(Function &Fn) override;
Duncan Sandsd6fb6502009-05-22 20:36:31 +000053
Yaron Keren66b0ceb2014-09-14 20:36:28 +000054 bool doFinalization(Module &M) override {
55 RewindFunction = nullptr;
56 return false;
57 }
58
Craig Topper4584cd52014-03-07 09:26:03 +000059 void getAnalysisUsage(AnalysisUsage &AU) const override { }
Bill Wendling3505c942009-10-29 00:37:35 +000060
Craig Topper4584cd52014-03-07 09:26:03 +000061 const char *getPassName() const override {
Duncan Sandsd6fb6502009-05-22 20:36:31 +000062 return "Exception handling preparation";
63 }
Duncan Sandsd6fb6502009-05-22 20:36:31 +000064 };
65} // end anonymous namespace
66
67char DwarfEHPrepare::ID = 0;
68
Bill Wendlingafc10362013-06-19 20:51:24 +000069FunctionPass *llvm::createDwarfEHPass(const TargetMachine *TM) {
70 return new DwarfEHPrepare(TM);
Duncan Sandsd6fb6502009-05-22 20:36:31 +000071}
72
Bill Wendling8c090402012-01-28 01:17:56 +000073/// GetExceptionObject - Return the exception object from the value passed into
74/// the 'resume' instruction (typically an aggregate). Clean up any dead
75/// instructions, including the 'resume' instruction.
Bill Wendling27489fe2012-05-17 17:59:51 +000076Value *DwarfEHPrepare::GetExceptionObject(ResumeInst *RI) {
Bill Wendling8c090402012-01-28 01:17:56 +000077 Value *V = RI->getOperand(0);
Craig Topperc0196b12014-04-14 00:51:57 +000078 Value *ExnObj = nullptr;
Bill Wendling8c090402012-01-28 01:17:56 +000079 InsertValueInst *SelIVI = dyn_cast<InsertValueInst>(V);
Craig Topperc0196b12014-04-14 00:51:57 +000080 LoadInst *SelLoad = nullptr;
81 InsertValueInst *ExcIVI = nullptr;
Bill Wendling8c090402012-01-28 01:17:56 +000082 bool EraseIVIs = false;
83
84 if (SelIVI) {
85 if (SelIVI->getNumIndices() == 1 && *SelIVI->idx_begin() == 1) {
86 ExcIVI = dyn_cast<InsertValueInst>(SelIVI->getOperand(0));
87 if (ExcIVI && isa<UndefValue>(ExcIVI->getOperand(0)) &&
88 ExcIVI->getNumIndices() == 1 && *ExcIVI->idx_begin() == 0) {
Bill Wendling27489fe2012-05-17 17:59:51 +000089 ExnObj = ExcIVI->getOperand(1);
Bill Wendling8c090402012-01-28 01:17:56 +000090 SelLoad = dyn_cast<LoadInst>(SelIVI->getOperand(1));
91 EraseIVIs = true;
92 }
93 }
94 }
95
96 if (!ExnObj)
97 ExnObj = ExtractValueInst::Create(RI->getOperand(0), 0, "exn.obj", RI);
98
99 RI->eraseFromParent();
100
101 if (EraseIVIs) {
102 if (SelIVI->getNumUses() == 0)
103 SelIVI->eraseFromParent();
104 if (ExcIVI->getNumUses() == 0)
105 ExcIVI->eraseFromParent();
106 if (SelLoad && SelLoad->getNumUses() == 0)
107 SelLoad->eraseFromParent();
108 }
109
110 return ExnObj;
111}
112
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000113/// InsertUnwindResumeCalls - Convert the ResumeInsts that are still present
114/// into calls to the appropriate _Unwind_Resume function.
Bill Wendling478f58c2011-11-07 23:36:48 +0000115bool DwarfEHPrepare::InsertUnwindResumeCalls(Function &Fn) {
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000116 SmallVector<ResumeInst*, 16> Resumes;
Bill Wendling478f58c2011-11-07 23:36:48 +0000117 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
Bill Wendling8ac20412011-08-25 23:48:11 +0000118 TerminatorInst *TI = I->getTerminator();
119 if (ResumeInst *RI = dyn_cast<ResumeInst>(TI))
120 Resumes.push_back(RI);
Bill Wendling8ac20412011-08-25 23:48:11 +0000121 }
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000122
123 if (Resumes.empty())
Kai Nackee1823b62013-05-31 16:30:36 +0000124 return false;
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000125
126 // Find the rewind function if we didn't already.
Eric Christopherd9134482014-08-04 21:25:23 +0000127 const TargetLowering *TLI = TM->getSubtargetImpl()->getTargetLowering();
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000128 if (!RewindFunction) {
129 LLVMContext &Ctx = Resumes[0]->getContext();
130 FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
131 Type::getInt8PtrTy(Ctx), false);
132 const char *RewindName = TLI->getLibcallName(RTLIB::UNWIND_RESUME);
Bill Wendling478f58c2011-11-07 23:36:48 +0000133 RewindFunction = Fn.getParent()->getOrInsertFunction(RewindName, FTy);
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000134 }
135
136 // Create the basic block where the _Unwind_Resume call will live.
Bill Wendling478f58c2011-11-07 23:36:48 +0000137 LLVMContext &Ctx = Fn.getContext();
Bill Wendling8c090402012-01-28 01:17:56 +0000138 unsigned ResumesSize = Resumes.size();
139
140 if (ResumesSize == 1) {
141 // Instead of creating a new BB and PHI node, just append the call to
142 // _Unwind_Resume to the end of the single resume block.
143 ResumeInst *RI = Resumes.front();
144 BasicBlock *UnwindBB = RI->getParent();
Bill Wendling27489fe2012-05-17 17:59:51 +0000145 Value *ExnObj = GetExceptionObject(RI);
Bill Wendling8c090402012-01-28 01:17:56 +0000146
147 // Call the _Unwind_Resume function.
148 CallInst *CI = CallInst::Create(RewindFunction, ExnObj, "", UnwindBB);
149 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
150
151 // We never expect _Unwind_Resume to return.
152 new UnreachableInst(Ctx, UnwindBB);
153 return true;
154 }
155
Bill Wendling478f58c2011-11-07 23:36:48 +0000156 BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", &Fn);
Bill Wendling8c090402012-01-28 01:17:56 +0000157 PHINode *PN = PHINode::Create(Type::getInt8PtrTy(Ctx), ResumesSize,
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000158 "exn.obj", UnwindBB);
159
160 // Extract the exception object from the ResumeInst and add it to the PHI node
161 // that feeds the _Unwind_Resume call.
162 for (SmallVectorImpl<ResumeInst*>::iterator
163 I = Resumes.begin(), E = Resumes.end(); I != E; ++I) {
164 ResumeInst *RI = *I;
Bill Wendling8c090402012-01-28 01:17:56 +0000165 BasicBlock *Parent = RI->getParent();
166 BranchInst::Create(UnwindBB, Parent);
Bill Wendling92492612012-01-20 00:53:28 +0000167
Bill Wendling27489fe2012-05-17 17:59:51 +0000168 Value *ExnObj = GetExceptionObject(RI);
Bill Wendling8c090402012-01-28 01:17:56 +0000169 PN->addIncoming(ExnObj, Parent);
Bill Wendling92492612012-01-20 00:53:28 +0000170
Bill Wendling478f58c2011-11-07 23:36:48 +0000171 ++NumResumesLowered;
Bill Wendling1cdd7fd2011-08-17 19:48:49 +0000172 }
173
174 // Call the function.
175 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
176 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
177
178 // We never expect _Unwind_Resume to return.
179 new UnreachableInst(Ctx, UnwindBB);
180 return true;
181}
182
Duncan Sandsd6fb6502009-05-22 20:36:31 +0000183bool DwarfEHPrepare::runOnFunction(Function &Fn) {
Bill Wendling478f58c2011-11-07 23:36:48 +0000184 bool Changed = InsertUnwindResumeCalls(Fn);
Duncan Sandsd6fb6502009-05-22 20:36:31 +0000185 return Changed;
186}