Searched refs:RetAttr (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Attributes.td | 23 def RetAttr : AttrProperty; 57 def Alignment : IntAttr<"align", [ParamAttr, RetAttr]>; 87 def NoUndef : EnumAttr<"noundef", [ParamAttr, RetAttr]>; 99 def Dereferenceable : IntAttr<"dereferenceable", [ParamAttr, RetAttr]>; 103 [ParamAttr, RetAttr]>; 128 def InReg : EnumAttr<"inreg", [ParamAttr, RetAttr]>; 137 def NoFPClass : IntAttr<"nofpclass", [ParamAttr, RetAttr]>; 149 def NoAlias : EnumAttr<"noalias", [ParamAttr, RetAttr]>; 182 def NonNull : EnumAttr<"nonnull", [ParamAttr, RetAttr]>; 234 def Range : ConstantRangeAttr<"range", [ParamAttr, RetAttr]>; [all …]
|
H A D | InstrTypes.h | 1681 Attribute RetAttr = Attrs.getRetAttr(Kind); 1682 if (RetAttr.isValid()) 1683 return RetAttr;
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Attributes.cpp | 728 RetAttr = (1 << 2), enumerator 750 return hasAttributeProperty(Kind, AttributeProperty::RetAttr); in canUseAsRetAttr()
|
H A D | Verifier.cpp | 2120 for (Attribute RetAttr : RetAttrs) in verifyFunctionAttrs() local 2121 Check(RetAttr.isStringAttribute() || in verifyFunctionAttrs() 2122 Attribute::canUseAsRetAttr(RetAttr.getKindAsEnum()), in verifyFunctionAttrs() 2123 "Attribute '" + RetAttr.getAsString() + in verifyFunctionAttrs()
|