Searched refs:ParamAttr (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/llvm/llvm/include/llvm/IR/ |
H A D | Attributes.td | 20 def ParamAttr : AttrProperty; 52 def AllocAlign: EnumAttr<"allocalign", [ParamAttr]>; 72 def ByVal : TypeAttr<"byval", [ParamAttr]>; 75 def ByRef : TypeAttr<"byref", [ParamAttr]>; 107 def InAlloca : TypeAttr<"inalloca", [ParamAttr]>; 128 def Nest : EnumAttr<"nest", [ParamAttr]>; 210 def ReadNone : EnumAttr<"readnone", [ParamAttr]>; 213 def ReadOnly : EnumAttr<"readonly", [ParamAttr]>; 216 def Returned : EnumAttr<"returned", [ParamAttr]>; 219 def ImmArg : EnumAttr<"immarg", [ParamAttr]>; [all …]
|
/openbsd/gnu/llvm/llvm/utils/ |
H A D | llvm.grm | 136 ParamAttr ::= zeroext 147 OptParamAttrs ::= + _ | OptParamAttrs ParamAttr ;
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.cpp | 11051 switch (ParamAttr.Kind) { in mangleVectorParameters() 11071 if (ParamAttr.HasVarStride) in mangleVectorParameters() 11073 else if (ParamAttr.Kind == Linear || ParamAttr.Kind == LinearRef || in mangleVectorParameters() 11074 ParamAttr.Kind == LinearUVal || ParamAttr.Kind == LinearVal) { in mangleVectorParameters() 11077 if (ParamAttr.StrideOrArg < 0) in mangleVectorParameters() 11080 Out << ParamAttr.StrideOrArg; in mangleVectorParameters() 11083 if (!!ParamAttr.Alignment) in mangleVectorParameters() 11500 ParamAttr.Kind = LinearRef; in emitDeclareSimdFunction() 11506 ParamAttr.Kind = Linear; in emitDeclareSimdFunction() 11531 (ParamAttr.Kind == Linear || ParamAttr.Kind == LinearRef)) in emitDeclareSimdFunction() [all …]
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | Attributes.cpp | 594 ParamAttr = (1 << 1), enumerator 613 return hasAttributeProperty(Kind, AttributeProperty::ParamAttr); in canUseAsParamAttr()
|