2017-09-23 07:46:57 +08:00
|
|
|
//===- DwarfEHPrepare - Prepare exception handling for code generation ----===//
|
2009-05-23 04:36:31 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-05-23 04:36:31 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This pass mulches exception handling code into a form adapted to code
|
2010-03-27 07:41:30 +08:00
|
|
|
// generation. Required if using dwarf exception handling.
|
2009-05-23 04:36:31 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-03-10 06:45:16 +08:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
2017-09-23 07:46:57 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2015-03-10 06:45:16 +08:00
|
|
|
#include "llvm/Analysis/CFG.h"
|
2015-12-03 07:06:39 +08:00
|
|
|
#include "llvm/Analysis/EHPersonalities.h"
|
2015-03-10 06:45:16 +08:00
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2018-06-05 05:23:21 +08:00
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
2017-09-23 07:46:57 +08:00
|
|
|
#include "llvm/CodeGen/RuntimeLibcalls.h"
|
2017-11-17 09:07:10 +08:00
|
|
|
#include "llvm/CodeGen/TargetLowering.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/CodeGen/TargetPassConfig.h"
|
2017-11-17 09:07:10 +08:00
|
|
|
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
2017-09-23 07:46:57 +08:00
|
|
|
#include "llvm/IR/BasicBlock.h"
|
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
2015-03-10 06:45:16 +08:00
|
|
|
#include "llvm/IR/Dominators.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
2017-09-23 07:46:57 +08:00
|
|
|
#include "llvm/IR/Type.h"
|
2009-05-23 04:36:31 +08:00
|
|
|
#include "llvm/Pass.h"
|
2017-09-23 07:46:57 +08:00
|
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include <cstddef>
|
|
|
|
|
2009-05-23 04:36:31 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 10:02:50 +08:00
|
|
|
#define DEBUG_TYPE "dwarfehprepare"
|
|
|
|
|
2011-11-08 07:36:48 +08:00
|
|
|
STATISTIC(NumResumesLowered, "Number of resume calls lowered");
|
2009-05-23 04:36:31 +08:00
|
|
|
|
|
|
|
namespace {
|
2017-09-23 07:46:57 +08:00
|
|
|
|
2009-10-25 14:33:48 +08:00
|
|
|
class DwarfEHPrepare : public FunctionPass {
|
2011-11-08 07:36:48 +08:00
|
|
|
// RewindFunction - _Unwind_Resume or the target equivalent.
|
[opaque pointer types] Add a FunctionCallee wrapper type, and use it.
Recommit r352791 after tweaking DerivedTypes.h slightly, so that gcc
doesn't choke on it, hopefully.
Original Message:
The FunctionCallee type is effectively a {FunctionType*,Value*} pair,
and is a useful convenience to enable code to continue passing the
result of getOrInsertFunction() through to EmitCall, even once pointer
types lose their pointee-type.
Then:
- update the CallInst/InvokeInst instruction creation functions to
take a Callee,
- modify getOrInsertFunction to return FunctionCallee, and
- update all callers appropriately.
One area of particular note is the change to the sanitizer
code. Previously, they had been casting the result of
`getOrInsertFunction` to a `Function*` via
`checkSanitizerInterfaceFunction`, and storing that. That would report
an error if someone had already inserted a function declaraction with
a mismatching signature.
However, in general, LLVM allows for such mismatches, as
`getOrInsertFunction` will automatically insert a bitcast if
needed. As part of this cleanup, cause the sanitizer code to do the
same. (It will call its functions using the expected signature,
however they may have been declared.)
Finally, in a small number of locations, callers of
`getOrInsertFunction` actually were expecting/requiring that a brand
new function was being created. In such cases, I've switched them to
Function::Create instead.
Differential Revision: https://reviews.llvm.org/D57315
llvm-svn: 352827
2019-02-01 10:28:03 +08:00
|
|
|
FunctionCallee RewindFunction = nullptr;
|
2009-05-23 04:36:31 +08:00
|
|
|
|
2017-09-23 07:46:57 +08:00
|
|
|
DominatorTree *DT = nullptr;
|
|
|
|
const TargetLowering *TLI = nullptr;
|
2015-03-10 06:45:16 +08:00
|
|
|
|
2011-11-08 07:36:48 +08:00
|
|
|
bool InsertUnwindResumeCalls(Function &Fn);
|
2012-05-18 01:59:51 +08:00
|
|
|
Value *GetExceptionObject(ResumeInst *RI);
|
2015-03-10 06:45:16 +08:00
|
|
|
size_t
|
|
|
|
pruneUnreachableResumes(Function &Fn,
|
|
|
|
SmallVectorImpl<ResumeInst *> &Resumes,
|
|
|
|
SmallVectorImpl<LandingPadInst *> &CleanupLPads);
|
2010-06-12 10:34:29 +08:00
|
|
|
|
2009-05-23 04:36:31 +08:00
|
|
|
public:
|
|
|
|
static char ID; // Pass identification, replacement for typeid.
|
2015-02-19 07:17:41 +08:00
|
|
|
|
2017-09-23 07:46:57 +08:00
|
|
|
DwarfEHPrepare() : FunctionPass(ID) {}
|
2009-05-23 04:36:31 +08:00
|
|
|
|
2014-03-07 17:26:03 +08:00
|
|
|
bool runOnFunction(Function &Fn) override;
|
2009-05-23 04:36:31 +08:00
|
|
|
|
2014-09-15 04:36:28 +08:00
|
|
|
bool doFinalization(Module &M) override {
|
|
|
|
RewindFunction = nullptr;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-10 06:45:16 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override;
|
|
|
|
|
2016-10-01 10:56:57 +08:00
|
|
|
StringRef getPassName() const override {
|
2009-05-23 04:36:31 +08:00
|
|
|
return "Exception handling preparation";
|
|
|
|
}
|
|
|
|
};
|
2017-09-23 07:46:57 +08:00
|
|
|
|
2009-05-23 04:36:31 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
char DwarfEHPrepare::ID = 0;
|
2017-09-23 07:46:57 +08:00
|
|
|
|
2017-05-26 05:26:32 +08:00
|
|
|
INITIALIZE_PASS_BEGIN(DwarfEHPrepare, DEBUG_TYPE,
|
2017-05-19 01:21:13 +08:00
|
|
|
"Prepare DWARF exceptions", false, false)
|
2015-03-10 06:45:16 +08:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
2017-05-19 01:21:13 +08:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(TargetPassConfig)
|
2015-03-10 06:45:16 +08:00
|
|
|
INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
|
2017-05-26 05:26:32 +08:00
|
|
|
INITIALIZE_PASS_END(DwarfEHPrepare, DEBUG_TYPE,
|
2017-05-19 01:21:13 +08:00
|
|
|
"Prepare DWARF exceptions", false, false)
|
2009-05-23 04:36:31 +08:00
|
|
|
|
2017-05-19 01:21:13 +08:00
|
|
|
FunctionPass *llvm::createDwarfEHPass() { return new DwarfEHPrepare(); }
|
2009-05-23 04:36:31 +08:00
|
|
|
|
2015-03-10 06:45:16 +08:00
|
|
|
void DwarfEHPrepare::getAnalysisUsage(AnalysisUsage &AU) const {
|
2017-05-19 01:21:13 +08:00
|
|
|
AU.addRequired<TargetPassConfig>();
|
2015-03-10 06:45:16 +08:00
|
|
|
AU.addRequired<TargetTransformInfoWrapperPass>();
|
|
|
|
AU.addRequired<DominatorTreeWrapperPass>();
|
|
|
|
}
|
|
|
|
|
2012-01-28 09:17:56 +08:00
|
|
|
/// GetExceptionObject - Return the exception object from the value passed into
|
|
|
|
/// the 'resume' instruction (typically an aggregate). Clean up any dead
|
|
|
|
/// instructions, including the 'resume' instruction.
|
2012-05-18 01:59:51 +08:00
|
|
|
Value *DwarfEHPrepare::GetExceptionObject(ResumeInst *RI) {
|
2012-01-28 09:17:56 +08:00
|
|
|
Value *V = RI->getOperand(0);
|
2014-04-14 08:51:57 +08:00
|
|
|
Value *ExnObj = nullptr;
|
2012-01-28 09:17:56 +08:00
|
|
|
InsertValueInst *SelIVI = dyn_cast<InsertValueInst>(V);
|
2014-04-14 08:51:57 +08:00
|
|
|
LoadInst *SelLoad = nullptr;
|
|
|
|
InsertValueInst *ExcIVI = nullptr;
|
2012-01-28 09:17:56 +08:00
|
|
|
bool EraseIVIs = false;
|
|
|
|
|
|
|
|
if (SelIVI) {
|
|
|
|
if (SelIVI->getNumIndices() == 1 && *SelIVI->idx_begin() == 1) {
|
|
|
|
ExcIVI = dyn_cast<InsertValueInst>(SelIVI->getOperand(0));
|
|
|
|
if (ExcIVI && isa<UndefValue>(ExcIVI->getOperand(0)) &&
|
|
|
|
ExcIVI->getNumIndices() == 1 && *ExcIVI->idx_begin() == 0) {
|
2012-05-18 01:59:51 +08:00
|
|
|
ExnObj = ExcIVI->getOperand(1);
|
2012-01-28 09:17:56 +08:00
|
|
|
SelLoad = dyn_cast<LoadInst>(SelIVI->getOperand(1));
|
|
|
|
EraseIVIs = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ExnObj)
|
|
|
|
ExnObj = ExtractValueInst::Create(RI->getOperand(0), 0, "exn.obj", RI);
|
|
|
|
|
|
|
|
RI->eraseFromParent();
|
|
|
|
|
|
|
|
if (EraseIVIs) {
|
2015-01-29 21:26:50 +08:00
|
|
|
if (SelIVI->use_empty())
|
2012-01-28 09:17:56 +08:00
|
|
|
SelIVI->eraseFromParent();
|
2015-01-29 21:26:50 +08:00
|
|
|
if (ExcIVI->use_empty())
|
2012-01-28 09:17:56 +08:00
|
|
|
ExcIVI->eraseFromParent();
|
2015-01-29 21:26:50 +08:00
|
|
|
if (SelLoad && SelLoad->use_empty())
|
2012-01-28 09:17:56 +08:00
|
|
|
SelLoad->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ExnObj;
|
|
|
|
}
|
|
|
|
|
2015-03-10 06:45:16 +08:00
|
|
|
/// Replace resumes that are not reachable from a cleanup landing pad with
|
|
|
|
/// unreachable and then simplify those blocks.
|
|
|
|
size_t DwarfEHPrepare::pruneUnreachableResumes(
|
|
|
|
Function &Fn, SmallVectorImpl<ResumeInst *> &Resumes,
|
|
|
|
SmallVectorImpl<LandingPadInst *> &CleanupLPads) {
|
|
|
|
BitVector ResumeReachable(Resumes.size());
|
|
|
|
size_t ResumeIndex = 0;
|
|
|
|
for (auto *RI : Resumes) {
|
|
|
|
for (auto *LP : CleanupLPads) {
|
2019-04-02 09:05:48 +08:00
|
|
|
if (isPotentiallyReachable(LP, RI, nullptr, DT)) {
|
2015-03-10 06:45:16 +08:00
|
|
|
ResumeReachable.set(ResumeIndex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++ResumeIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If everything is reachable, there is no change.
|
|
|
|
if (ResumeReachable.all())
|
|
|
|
return Resumes.size();
|
|
|
|
|
|
|
|
const TargetTransformInfo &TTI =
|
|
|
|
getAnalysis<TargetTransformInfoWrapperPass>().getTTI(Fn);
|
|
|
|
LLVMContext &Ctx = Fn.getContext();
|
|
|
|
|
|
|
|
// Otherwise, insert unreachable instructions and call simplifycfg.
|
|
|
|
size_t ResumesLeft = 0;
|
|
|
|
for (size_t I = 0, E = Resumes.size(); I < E; ++I) {
|
|
|
|
ResumeInst *RI = Resumes[I];
|
|
|
|
if (ResumeReachable[I]) {
|
|
|
|
Resumes[ResumesLeft++] = RI;
|
|
|
|
} else {
|
|
|
|
BasicBlock *BB = RI->getParent();
|
|
|
|
new UnreachableInst(Ctx, RI);
|
|
|
|
RI->eraseFromParent();
|
2017-10-05 04:26:25 +08:00
|
|
|
simplifyCFG(BB, TTI);
|
2015-03-10 06:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Resumes.resize(ResumesLeft);
|
|
|
|
return ResumesLeft;
|
|
|
|
}
|
|
|
|
|
2011-08-18 03:48:49 +08:00
|
|
|
/// InsertUnwindResumeCalls - Convert the ResumeInsts that are still present
|
|
|
|
/// into calls to the appropriate _Unwind_Resume function.
|
2011-11-08 07:36:48 +08:00
|
|
|
bool DwarfEHPrepare::InsertUnwindResumeCalls(Function &Fn) {
|
2011-08-18 03:48:49 +08:00
|
|
|
SmallVector<ResumeInst*, 16> Resumes;
|
2015-03-10 06:45:16 +08:00
|
|
|
SmallVector<LandingPadInst*, 16> CleanupLPads;
|
2015-01-29 21:26:50 +08:00
|
|
|
for (BasicBlock &BB : Fn) {
|
|
|
|
if (auto *RI = dyn_cast<ResumeInst>(BB.getTerminator()))
|
2011-08-26 07:48:11 +08:00
|
|
|
Resumes.push_back(RI);
|
2015-06-18 04:52:32 +08:00
|
|
|
if (auto *LP = BB.getLandingPadInst())
|
2015-03-10 06:45:16 +08:00
|
|
|
if (LP->isCleanup())
|
|
|
|
CleanupLPads.push_back(LP);
|
2011-08-26 07:48:11 +08:00
|
|
|
}
|
2011-08-18 03:48:49 +08:00
|
|
|
|
|
|
|
if (Resumes.empty())
|
2013-06-01 00:30:36 +08:00
|
|
|
return false;
|
2011-08-18 03:48:49 +08:00
|
|
|
|
[WebAssembly] Add Wasm personality and isScopedEHPersonality()
Summary:
- Add wasm personality function
- Re-categorize the existing `isFuncletEHPersonality()` function into
two different functions: `isFuncletEHPersonality()` and
`isScopedEHPersonality(). This becomes necessary as wasm EH uses scoped
EH instructions (catchswitch, catchpad/ret, and cleanuppad/ret) but not
outlined funclets.
- Changed some callsites of `isFuncletEHPersonality()` to
`isScopedEHPersonality()` if they are related to scoped EH IR-level
stuff.
Reviewers: majnemer, dschuff, rnk
Subscribers: jfb, sbc100, jgravelle-google, eraman, JDevlieghere, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D45559
llvm-svn: 332667
2018-05-18 04:52:03 +08:00
|
|
|
// Check the personality, don't do anything if it's scope-based.
|
2015-06-18 04:52:32 +08:00
|
|
|
EHPersonality Pers = classifyEHPersonality(Fn.getPersonalityFn());
|
[WebAssembly] Add Wasm personality and isScopedEHPersonality()
Summary:
- Add wasm personality function
- Re-categorize the existing `isFuncletEHPersonality()` function into
two different functions: `isFuncletEHPersonality()` and
`isScopedEHPersonality(). This becomes necessary as wasm EH uses scoped
EH instructions (catchswitch, catchpad/ret, and cleanuppad/ret) but not
outlined funclets.
- Changed some callsites of `isFuncletEHPersonality()` to
`isScopedEHPersonality()` if they are related to scoped EH IR-level
stuff.
Reviewers: majnemer, dschuff, rnk
Subscribers: jfb, sbc100, jgravelle-google, eraman, JDevlieghere, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D45559
llvm-svn: 332667
2018-05-18 04:52:03 +08:00
|
|
|
if (isScopedEHPersonality(Pers))
|
2015-06-18 04:52:32 +08:00
|
|
|
return false;
|
|
|
|
|
2015-02-20 10:15:36 +08:00
|
|
|
LLVMContext &Ctx = Fn.getContext();
|
2015-03-10 06:45:16 +08:00
|
|
|
|
|
|
|
size_t ResumesLeft = pruneUnreachableResumes(Fn, Resumes, CleanupLPads);
|
|
|
|
if (ResumesLeft == 0)
|
|
|
|
return true; // We pruned them all.
|
|
|
|
|
|
|
|
// Find the rewind function if we didn't already.
|
2011-08-18 03:48:49 +08:00
|
|
|
if (!RewindFunction) {
|
|
|
|
FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx),
|
|
|
|
Type::getInt8PtrTy(Ctx), false);
|
|
|
|
const char *RewindName = TLI->getLibcallName(RTLIB::UNWIND_RESUME);
|
2011-11-08 07:36:48 +08:00
|
|
|
RewindFunction = Fn.getParent()->getOrInsertFunction(RewindName, FTy);
|
2011-08-18 03:48:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the basic block where the _Unwind_Resume call will live.
|
2015-03-10 06:45:16 +08:00
|
|
|
if (ResumesLeft == 1) {
|
2012-01-28 09:17:56 +08:00
|
|
|
// Instead of creating a new BB and PHI node, just append the call to
|
|
|
|
// _Unwind_Resume to the end of the single resume block.
|
|
|
|
ResumeInst *RI = Resumes.front();
|
|
|
|
BasicBlock *UnwindBB = RI->getParent();
|
2012-05-18 01:59:51 +08:00
|
|
|
Value *ExnObj = GetExceptionObject(RI);
|
2012-01-28 09:17:56 +08:00
|
|
|
|
|
|
|
// Call the _Unwind_Resume function.
|
|
|
|
CallInst *CI = CallInst::Create(RewindFunction, ExnObj, "", UnwindBB);
|
|
|
|
CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
|
|
|
|
|
|
|
|
// We never expect _Unwind_Resume to return.
|
|
|
|
new UnreachableInst(Ctx, UnwindBB);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-11-08 07:36:48 +08:00
|
|
|
BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", &Fn);
|
2015-03-10 06:45:16 +08:00
|
|
|
PHINode *PN = PHINode::Create(Type::getInt8PtrTy(Ctx), ResumesLeft,
|
2011-08-18 03:48:49 +08:00
|
|
|
"exn.obj", UnwindBB);
|
|
|
|
|
|
|
|
// Extract the exception object from the ResumeInst and add it to the PHI node
|
|
|
|
// that feeds the _Unwind_Resume call.
|
2015-01-29 21:26:50 +08:00
|
|
|
for (ResumeInst *RI : Resumes) {
|
2012-01-28 09:17:56 +08:00
|
|
|
BasicBlock *Parent = RI->getParent();
|
|
|
|
BranchInst::Create(UnwindBB, Parent);
|
2012-01-28 09:10:01 +08:00
|
|
|
|
2012-05-18 01:59:51 +08:00
|
|
|
Value *ExnObj = GetExceptionObject(RI);
|
2012-01-28 09:17:56 +08:00
|
|
|
PN->addIncoming(ExnObj, Parent);
|
2012-01-20 08:53:28 +08:00
|
|
|
|
2011-11-08 07:36:48 +08:00
|
|
|
++NumResumesLowered;
|
2011-08-18 03:48:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Call the function.
|
|
|
|
CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
|
|
|
|
CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
|
|
|
|
|
|
|
|
// We never expect _Unwind_Resume to return.
|
|
|
|
new UnreachableInst(Ctx, UnwindBB);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-05-23 04:36:31 +08:00
|
|
|
bool DwarfEHPrepare::runOnFunction(Function &Fn) {
|
2017-05-19 01:21:13 +08:00
|
|
|
const TargetMachine &TM =
|
|
|
|
getAnalysis<TargetPassConfig>().getTM<TargetMachine>();
|
2015-03-10 06:45:16 +08:00
|
|
|
DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
|
2017-05-19 01:21:13 +08:00
|
|
|
TLI = TM.getSubtargetImpl(Fn)->getTargetLowering();
|
2011-11-08 07:36:48 +08:00
|
|
|
bool Changed = InsertUnwindResumeCalls(Fn);
|
2015-03-10 06:45:16 +08:00
|
|
|
DT = nullptr;
|
|
|
|
TLI = nullptr;
|
2009-05-23 04:36:31 +08:00
|
|
|
return Changed;
|
|
|
|
}
|