struct AANoUnwind
Declaration
struct AANoUnwind : public IRAttribute { /* full declaration omitted */ };
Description
Helper class that provides common functionality to manifest IR attributes.
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3115
Inherits from: IRAttribute
Member Variables
- public static const char ID
- Unique ID (due to the unique address)
Method Overview
- public AANoUnwind(const llvm::IRPosition & IRP, llvm::Attributor & A)
- public static bool classof(const llvm::AbstractAttribute * AA)
- public static llvm::AANoUnwind & createForPosition(const llvm::IRPosition & IRP, llvm::Attributor & A)
- public const char * getIdAddr() const
- public const std::string getName() const
- public bool isAssumedNoUnwind() const
- public bool isKnownNoUnwind() const
Methods
¶AANoUnwind(const llvm::IRPosition& IRP,
llvm::Attributor& A)
AANoUnwind(const llvm::IRPosition& IRP,
llvm::Attributor& A)
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3118
Parameters
- const llvm::IRPosition& IRP
- llvm::Attributor& A
¶static bool classof(
const llvm::AbstractAttribute* AA)
static bool classof(
const llvm::AbstractAttribute* AA)
Description
This function should return true if the type of the \p AA is AANoUnwind
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3136
Parameters
- const llvm::AbstractAttribute* AA
¶static llvm::AANoUnwind& createForPosition(
const llvm::IRPosition& IRP,
llvm::Attributor& A)
static llvm::AANoUnwind& createForPosition(
const llvm::IRPosition& IRP,
llvm::Attributor& A)
Description
Create an abstract attribute view for the position \p IRP.
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3127
Parameters
- const llvm::IRPosition& IRP
- llvm::Attributor& A
¶const char* getIdAddr() const
const char* getIdAddr() const
Description
See AbstractAttribute::getIdAddr()
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3133
¶const std::string getName() const
const std::string getName() const
Description
See AbstractAttribute::getName()
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3130
¶bool isAssumedNoUnwind() const
bool isAssumedNoUnwind() const
Description
Returns true if nounwind is assumed.
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3121
¶bool isKnownNoUnwind() const
bool isKnownNoUnwind() const
Description
Returns true if nounwind is known.
Declared at: llvm/include/llvm/Transforms/IPO/Attributor.h:3124