LLVM 20.0.0git
|
#include "llvm/IR/Attributes.h"
#include "AttributeImpl.h"
#include "LLVMContextImpl.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/Config/llvm-config.h"
#include "llvm/IR/AttributeMask.h"
#include "llvm/IR/ConstantRange.h"
#include "llvm/IR/ConstantRangeList.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Type.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/ModRef.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <limits>
#include <optional>
#include <string>
#include <tuple>
#include <utility>
#include "llvm/IR/Attributes.inc"
Go to the source code of this file.
Classes | |
struct | AttributeComparator |
Attribute comparator that only compares attribute keys. More... | |
struct | EnumAttr |
struct | StrBoolAttr |
Macros | |
#define | GET_ATTR_NAMES |
#define | ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) .Case(#DISPLAY_NAME, Attribute::ENUM_NAME) |
#define | GET_ATTR_NAMES |
#define | ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) |
#define | GET_ATTR_NAMES |
#define | ATTRIBUTE_ALL(ENUM_NAME, DISPLAY_NAME) .Case(#DISPLAY_NAME, true) |
#define | GET_ATTR_PROP_TABLE |
#define | GET_ATTR_NAMES |
#define | ATTRIBUTE_ENUM(ENUM_NAME, DISPLAY_NAME) |
#define | ATTRIBUTE_STRBOOL(ENUM_NAME, DISPLAY_NAME) |
#define | GET_ATTR_COMPAT_FUNC |
Enumerations | |
enum | AttributeProperty { FnAttr = (1 << 0) , ParamAttr = (1 << 1) , RetAttr = (1 << 2) } |
Functions | |
static uint64_t | packAllocSizeArgs (unsigned ElemSizeArg, const std::optional< unsigned > &NumElemsArg) |
static std::pair< unsigned, std::optional< unsigned > > | unpackAllocSizeArgs (uint64_t Num) |
static uint64_t | packVScaleRangeArgs (unsigned MinValue, std::optional< unsigned > MaxValue) |
static std::pair< unsigned, std::optional< unsigned > > | unpackVScaleRangeArgs (uint64_t Value) |
static const char * | getModRefStr (ModRefInfo MR) |
static bool | hasAttributeProperty (Attribute::AttrKind Kind, AttributeProperty Prop) |
static unsigned | attrIdxToArrayIdx (unsigned Index) |
Map from AttributeList index to the internal array index. | |
template<typename K > | |
static void | addAttributeImpl (SmallVectorImpl< Attribute > &Attrs, K Kind, Attribute Attr) |
static bool | denormModeCompatible (DenormalMode CallerMode, DenormalMode CalleeMode) |
Callees with dynamic denormal modes are compatible with any caller mode. | |
static bool | checkDenormMode (const Function &Caller, const Function &Callee) |
static bool | checkStrictFP (const Function &Caller, const Function &Callee) |
template<typename AttrClass > | |
static bool | isEqual (const Function &Caller, const Function &Callee) |
static bool | isEqual (const Function &Caller, const Function &Callee, const StringRef &AttrName) |
template<typename AttrClass > | |
static void | setAND (Function &Caller, const Function &Callee) |
Compute the logical AND of the attributes of the caller and the callee. | |
template<typename AttrClass > | |
static void | setOR (Function &Caller, const Function &Callee) |
Compute the logical OR of the attributes of the caller and the callee. | |
static void | adjustCallerSSPLevel (Function &Caller, const Function &Callee) |
If the inlined function had a higher stack protection level than the calling function, then bump up the caller's stack protection level. | |
static void | adjustCallerStackProbes (Function &Caller, const Function &Callee) |
If the inlined function required stack probes, then ensure that the calling function has those too. | |
static void | adjustCallerStackProbeSize (Function &Caller, const Function &Callee) |
If the inlined function defines the size of guard region on the stack, then ensure that the calling function defines a guard region that is no larger. | |
static void | adjustMinLegalVectorWidth (Function &Caller, const Function &Callee) |
If the inlined function defines a min legal vector width, then ensure the calling function has the same or larger min legal vector width. | |
static void | adjustNullPointerValidAttr (Function &Caller, const Function &Callee) |
If the inlined function has null_pointer_is_valid attribute, set this attribute in the caller post inlining. | |
Variables | |
static const unsigned | AllocSizeNumElemsNotPresent = -1 |
#define ATTRIBUTE_ALL | ( | ENUM_NAME, | |
DISPLAY_NAME | |||
) | .Case(#DISPLAY_NAME, true) |
#define ATTRIBUTE_ENUM | ( | ENUM_NAME, | |
DISPLAY_NAME | |||
) | .Case(#DISPLAY_NAME, Attribute::ENUM_NAME) |
Definition at line 2378 of file Attributes.cpp.
#define ATTRIBUTE_ENUM | ( | ENUM_NAME, | |
DISPLAY_NAME | |||
) |
Definition at line 2378 of file Attributes.cpp.
#define ATTRIBUTE_ENUM | ( | ENUM_NAME, | |
DISPLAY_NAME | |||
) |
Definition at line 2378 of file Attributes.cpp.
#define ATTRIBUTE_STRBOOL | ( | ENUM_NAME, | |
DISPLAY_NAME | |||
) |
Definition at line 2384 of file Attributes.cpp.
#define GET_ATTR_COMPAT_FUNC |
Definition at line 2390 of file Attributes.cpp.
#define GET_ATTR_NAMES |
Definition at line 2377 of file Attributes.cpp.
#define GET_ATTR_NAMES |
Definition at line 2377 of file Attributes.cpp.
#define GET_ATTR_NAMES |
Definition at line 2377 of file Attributes.cpp.
#define GET_ATTR_NAMES |
Definition at line 2377 of file Attributes.cpp.
#define GET_ATTR_PROP_TABLE |
Definition at line 732 of file Attributes.cpp.
enum AttributeProperty |
Enumerator | |
---|---|
FnAttr | |
ParamAttr | |
RetAttr |
Definition at line 726 of file Attributes.cpp.
|
static |
Definition at line 1852 of file Attributes.cpp.
References llvm::lower_bound(), and std::swap().
Referenced by llvm::AttrBuilder::addAttribute().
If the inlined function had a higher stack protection level than the calling function, then bump up the caller's stack protection level.
Definition at line 2253 of file Attributes.cpp.
References llvm::AttributeMask::addAttribute().
If the inlined function required stack probes, then ensure that the calling function has those too.
Definition at line 2283 of file Attributes.cpp.
If the inlined function defines the size of guard region on the stack, then ensure that the calling function defines a guard region that is no larger.
Definition at line 2294 of file Attributes.cpp.
References llvm::StringRef::getAsInteger(), llvm::Attribute::getValueAsString(), and llvm::Attribute::isValid().
If the inlined function defines a min legal vector width, then ensure the calling function has the same or larger min legal vector width.
If the caller has the attribute, but the callee doesn't, we need to remove the attribute from the caller since we can't make any guarantees about the caller's requirements. This function is called after the inlining decision has been made so we have to merge the attribute this way. Heuristics that would use min-legal-vector-width to determine inline compatibility would need to be handled as part of inline cost analysis.
Definition at line 2322 of file Attributes.cpp.
References llvm::StringRef::getAsInteger(), llvm::Attribute::getValueAsString(), and llvm::Attribute::isValid().
If the inlined function has null_pointer_is_valid attribute, set this attribute in the caller post inlining.
Definition at line 2343 of file Attributes.cpp.
Map from AttributeList index to the internal array index.
Adding one happens to work, because -1 wraps around to 0.
Definition at line 1203 of file Attributes.cpp.
Referenced by llvm::AttributeList::addParamAttribute(), llvm::AttributeListImpl::AttributeListImpl(), llvm::AttributeList::get(), llvm::AttributeList::getAttributes(), and llvm::AttributeList::removeAttributesAtIndex().
Definition at line 2192 of file Attributes.cpp.
References denormModeCompatible(), and llvm::DenormalMode::getInvalid().
Definition at line 2209 of file Attributes.cpp.
|
static |
Callees with dynamic denormal modes are compatible with any caller mode.
Definition at line 2175 of file Attributes.cpp.
References llvm::DenormalMode::Dynamic, llvm::DenormalMode::getDynamic(), llvm::DenormalMode::Input, and llvm::DenormalMode::Output.
Referenced by checkDenormMode().
|
static |
Definition at line 508 of file Attributes.cpp.
References llvm_unreachable, llvm::Mod, llvm::ModRef, llvm::NoModRef, and llvm::Ref.
Referenced by llvm::Attribute::getAsString().
|
static |
Definition at line 735 of file Attributes.cpp.
References assert().
Referenced by llvm::Attribute::canUseAsFnAttr(), llvm::Attribute::canUseAsParamAttr(), and llvm::Attribute::canUseAsRetAttr().
|
static |
Definition at line 2217 of file Attributes.cpp.
Referenced by EliminateDuplicatePHINodesSetBasedImpl(), and markAliveBlocks().
|
static |
Definition at line 2222 of file Attributes.cpp.
|
static |
Definition at line 60 of file Attributes.cpp.
References AllocSizeNumElemsNotPresent, and assert().
Referenced by llvm::AttrBuilder::addAllocSizeAttr(), and llvm::Attribute::getWithAllocSizeArgs().
|
static |
Definition at line 80 of file Attributes.cpp.
Referenced by llvm::AttrBuilder::addVScaleRangeAttr(), and llvm::Attribute::getWithVScaleRangeArgs().
|
static |
Compute the logical AND of the attributes of the caller and the callee.
This function sets the caller's attribute to false if the callee's attribute is false.
Definition at line 2233 of file Attributes.cpp.
|
static |
Compute the logical OR of the attributes of the caller and the callee.
This function sets the caller's attribute to true if the callee's attribute is true.
Definition at line 2245 of file Attributes.cpp.
Definition at line 70 of file Attributes.cpp.
References AllocSizeNumElemsNotPresent.
Referenced by llvm::Attribute::getAllocSizeArgs().
|
static |
Definition at line 86 of file Attributes.cpp.
Referenced by llvm::Attribute::getVScaleRangeMax(), and llvm::Attribute::getVScaleRangeMin().
Definition at line 58 of file Attributes.cpp.
Referenced by packAllocSizeArgs(), and unpackAllocSizeArgs().