':ref:`resume <i_resume>`', ':ref:`catchblock <i_catchblock>`',
':ref:`catchendblock <i_catchendblock>`',
':ref:`catchret <i_catchret>`',
+':ref:`cleanupret <i_cleanupret>`',
':ref:`terminateblock <i_terminateblock>`',
and ':ref:`unreachable <i_unreachable>`'.
an exceptional instruction.
- A catch block must have a '``catchblock``' instruction as its
first non-PHI instruction.
+- A catch block's ``exception`` edge must refer to a catch block or a
+ catch-end block.
- There can be only one '``catchblock``' instruction within the
catch block.
- A basic block that is not a catch block may not include a
The '``catchret``' instruction ends the existing (in-flight) exception
whose unwinding was interrupted with a
-:ref:`catchblock <i_catchblock>` instruction and transfers control to
-``normal``.
+:ref:`catchblock <i_catchblock>` instruction.
+The :ref:`personality function <personalityfn>` gets a chance to execute
+arbitrary code to, for example, run a C++ destructor.
+Control then transfers to ``normal``.
Example:
""""""""
.. code-block:: llvm
- catchret unwind label %continue
+ catchret label %continue
.. _i_cleanupret:
""""""""""
The '``cleanupret``' instruction indicates to the
-:ref:`personality function <personalityfn>` that the
-:ref:`cleanupblock <i_cleanupblock>` it transfered control to has ended.
+:ref:`personality function <personalityfn>` that one
+:ref:`cleanupblock <i_cleanupblock>` it transferred control to has ended.
It transfers control to ``continue`` or unwinds out of the function.
Example:
terminate the program.
The ``args`` correspond to whatever information the personality
routine requires to know if this is an appropriate place to terminate the
-program. Control is tranfered to the ``exception`` label if the
+program. Control is transferred to the ``exception`` label if the
personality routine decides not to terminate the program for the
in-flight exception.
The ``args`` correspond to whatever additional
information the :ref:`personality function <personalityfn>` requires to
execute the cleanup.
-:ref:`personality function <personalityfn>` upon re-entry to the
-function. The ``resultval`` has the type ``resultty``.
+The ``resultval`` has the type ``resultty``.
Arguments:
""""""""""
/// \brief Track unresolved string-based type references.
SmallDenseMap<const MDString *, const MDNode *, 32> UnresolvedTypeRefs;
+ /// \brief The result value from the personality function.
+ Type *PersonalityFnResultTy;
+
/// \brief Whether we've seen a call to @llvm.localescape in this function
/// already.
bool SawFrameEscape;
public:
explicit Verifier(raw_ostream &OS)
- : VerifierSupport(OS), Context(nullptr), SawFrameEscape(false) {}
+ : VerifierSupport(OS), Context(nullptr), PersonalityFnResultTy(nullptr),
+ SawFrameEscape(false) {}
bool verify(const Function &F) {
M = F.getParent();
// FIXME: We strip const here because the inst visitor strips const.
visit(const_cast<Function &>(F));
InstsInThisBlock.clear();
+ PersonalityFnResultTy = nullptr;
SawFrameEscape = false;
return !Broken;
void visitCatchBlockInst(CatchBlockInst &CBI);
void visitCatchEndBlockInst(CatchEndBlockInst &CEBI);
void visitCleanupBlockInst(CleanupBlockInst &CBI);
+ void visitCleanupReturnInst(CleanupReturnInst &CRI);
void visitTerminateBlockInst(TerminateBlockInst &TBI);
void VerifyCallSite(CallSite CS);
&LPI);
}
+ if (!PersonalityFnResultTy)
+ PersonalityFnResultTy = LPI.getType();
+ else
+ Assert(PersonalityFnResultTy == LPI.getType(),
+ "The personality routine should have a consistent result type "
+ "inside a function.",
+ &LPI);
+
Function *F = LPI.getParent()->getParent();
Assert(F->hasPersonalityFn(),
"LandingPadInst needs to be in a function with a personality.", &LPI);
void Verifier::visitCatchBlockInst(CatchBlockInst &CBI) {
BasicBlock *BB = CBI.getParent();
+ if (!PersonalityFnResultTy)
+ PersonalityFnResultTy = CBI.getType();
+ else
+ Assert(PersonalityFnResultTy == CBI.getType(),
+ "The personality routine should have a consistent result type "
+ "inside a function.",
+ &CBI);
+
Function *F = BB->getParent();
Assert(F->hasPersonalityFn(),
"CatchBlockInst needs to be in a function with a personality.", &CBI);
"CatchBlockInst not the first non-PHI instruction in the block.",
&CBI);
+ BasicBlock *UnwindDest = CBI.getUnwindDest();
+ Instruction *I = UnwindDest->getFirstNonPHI();
+ Assert(I->isEHBlock() && !isa<LandingPadInst>(I),
+ "CatchBlockInst must unwind to an EH block which is not a landingpad.",
+ &CBI);
+
visitTerminatorInst(CBI);
}
"CatchEndBlockInst not the first non-PHI instruction in the block.",
&CEBI);
+ unsigned CatchBlocksSeen = 0;
+ for (BasicBlock *PredBB : predecessors(BB))
+ if (isa<CatchBlockInst>(PredBB->getTerminator()))
+ ++CatchBlocksSeen;
+
+ Assert(CatchBlocksSeen <= 1, "CatchEndBlockInst must have no more than one "
+ "CatchBlockInst predecessor.",
+ &CEBI);
+
+ if (BasicBlock *UnwindDest = CEBI.getUnwindDest()) {
+ Instruction *I = UnwindDest->getFirstNonPHI();
+ Assert(
+ I->isEHBlock() && !isa<LandingPadInst>(I),
+ "CatchEndBlock must unwind to an EH block which is not a landingpad.",
+ &CEBI);
+ }
+
visitTerminatorInst(CEBI);
}
void Verifier::visitCleanupBlockInst(CleanupBlockInst &CBI) {
BasicBlock *BB = CBI.getParent();
+ if (!PersonalityFnResultTy)
+ PersonalityFnResultTy = CBI.getType();
+ else
+ Assert(PersonalityFnResultTy == CBI.getType(),
+ "The personality routine should have a consistent result type "
+ "inside a function.",
+ &CBI);
+
Function *F = BB->getParent();
Assert(F->hasPersonalityFn(),
"CleanupBlockInst needs to be in a function with a personality.", &CBI);
visitInstruction(CBI);
}
+void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) {
+ if (BasicBlock *UnwindDest = CRI.getUnwindDest()) {
+ Instruction *I = UnwindDest->getFirstNonPHI();
+ Assert(I->isEHBlock() && !isa<LandingPadInst>(I),
+ "CleanupReturnInst must unwind to an EH block which is not a "
+ "landingpad.",
+ &CRI);
+ }
+
+ visitTerminatorInst(CRI);
+}
+
void Verifier::visitTerminateBlockInst(TerminateBlockInst &TBI) {
BasicBlock *BB = TBI.getParent();
"TerminateBlockInst not the first non-PHI instruction in the block.",
&TBI);
+ if (BasicBlock *UnwindDest = TBI.getUnwindDest()) {
+ Instruction *I = UnwindDest->getFirstNonPHI();
+ Assert(I->isEHBlock() && !isa<LandingPadInst>(I),
+ "TerminateBlockInst must unwind to an EH block which is not a "
+ "landingpad.",
+ &TBI);
+ }
+
visitTerminatorInst(TBI);
}