//===- EHPersonalities.h - Compute EH-related information -----------------===// // // 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_IR_EHPERSONALITIES_H #define LLVM_IR_EHPERSONALITIES_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/TinyPtrVector.h" namespace llvm { class BasicBlock; class Function; class Triple; class Value; enum class EHPersonality { … }; /// See if the given exception handling personality function is one /// that we understand. If so, return a description of it; otherwise return /// Unknown. EHPersonality classifyEHPersonality(const Value *Pers); StringRef getEHPersonalityName(EHPersonality Pers); EHPersonality getDefaultEHPersonality(const Triple &T); /// Returns true if this personality function catches asynchronous /// exceptions. inline bool isAsynchronousEHPersonality(EHPersonality Pers) { … } /// Returns true if this is a personality function that invokes /// handler funclets (which must return to it). inline bool isFuncletEHPersonality(EHPersonality Pers) { … } /// Returns true if this personality uses scope-style EH IR instructions: /// catchswitch, catchpad/ret, and cleanuppad/ret. inline bool isScopedEHPersonality(EHPersonality Pers) { … } /// Return true if this personality may be safely removed if there /// are no invoke instructions remaining in the current function. inline bool isNoOpWithoutInvoke(EHPersonality Pers) { … } bool canSimplifyInvokeNoUnwind(const Function *F); ColorVector; /// If an EH funclet personality is in use (see isFuncletEHPersonality), /// this will recompute which blocks are in which funclet. It is possible that /// some blocks are in multiple funclets. Consider this analysis to be /// expensive. DenseMap<BasicBlock *, ColorVector> colorEHFunclets(Function &F); } // end namespace llvm #endif // LLVM_IR_EHPERSONALITIES_H