Home
last modified time | relevance | path

Searched refs:ParamAttr (Results 1 – 4 of 4) sorted by relevance

/external/llvm/utils/
Dllvm.grm136 ParamAttr ::= zeroext
147 OptParamAttrs ::= + _ | OptParamAttrs ParamAttr ;
/external/llvm-project/llvm/utils/
Dllvm.grm136 ParamAttr ::= zeroext
147 OptParamAttrs ::= + _ | OptParamAttrs ParamAttr ;
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp6373 for (auto &ParamAttr : ParamAttrs) { in emitX86DeclareSimdFunction() local
6374 switch (ParamAttr.Kind){ in emitX86DeclareSimdFunction()
6376 Out << 's' << ParamAttr.StrideOrArg; in emitX86DeclareSimdFunction()
6380 if (!!ParamAttr.StrideOrArg) in emitX86DeclareSimdFunction()
6381 Out << ParamAttr.StrideOrArg; in emitX86DeclareSimdFunction()
6390 if (!!ParamAttr.Alignment) in emitX86DeclareSimdFunction()
6391 Out << 'a' << ParamAttr.Alignment; in emitX86DeclareSimdFunction()
6462 auto &ParamAttr = ParamAttrs[Pos]; in emitDeclareSimdFunction() local
6463 ParamAttr.Kind = Linear; in emitDeclareSimdFunction()
6465 if (!(*SI)->EvaluateAsInt(ParamAttr.StrideOrArg, C, in emitDeclareSimdFunction()
[all …]
/external/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp11179 for (const ParamAttrTy &ParamAttr : ParamAttrs) { in emitX86DeclareSimdFunction() local
11180 switch (ParamAttr.Kind){ in emitX86DeclareSimdFunction()
11182 Out << 's' << ParamAttr.StrideOrArg; in emitX86DeclareSimdFunction()
11186 if (ParamAttr.StrideOrArg != 1) in emitX86DeclareSimdFunction()
11187 Out << ParamAttr.StrideOrArg; in emitX86DeclareSimdFunction()
11196 if (!!ParamAttr.Alignment) in emitX86DeclareSimdFunction()
11197 Out << 'a' << ParamAttr.Alignment; in emitX86DeclareSimdFunction()
11317 for (const auto &ParamAttr : ParamAttrs) { in mangleVectorParameters() local
11318 switch (ParamAttr.Kind) { in mangleVectorParameters()
11320 Out << "ls" << ParamAttr.StrideOrArg; in mangleVectorParameters()
[all …]