Searched refs:Simdlen (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 749 Stmt *Simdlen = nullptr; variable 752 void setSimdlen(Expr *Len) { Simdlen = Len; } in setSimdlen() 763 LParenLoc(LParenLoc), Simdlen(Len) {} in OMPSimdlenClause() 777 Expr *getSimdlen() const { return cast_or_null<Expr>(Simdlen); } in getSimdlen() 779 child_range children() { return child_range(&Simdlen, &Simdlen + 1); } in children() 782 return const_child_range(&Simdlen, &Simdlen + 1); in children()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 795 ExprResult Simdlen; in ParseOMPDeclareSimdClauses() local 803 parseDeclareSimdClauses(*this, BS, Simdlen, Uniforms, Aligneds, in ParseOMPDeclareSimdClauses() 811 Ptr, BS, Simdlen.get(), Uniforms, Aligneds, Alignments, Linears, in ParseOMPDeclareSimdClauses()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 6339 DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, Expr *Simdlen, in ActOnOpenMPDeclareSimdDirective() argument 6369 if (Simdlen) in ActOnOpenMPDeclareSimdDirective() 6370 SL = VerifyPositiveIntegerConstantInClause(Simdlen, OMPC_simdlen); in ActOnOpenMPDeclareSimdDirective() 9619 const OMPSimdlenClause *Simdlen = nullptr; in checkSimdlenSafelenSpecified() local 9625 Simdlen = cast<OMPSimdlenClause>(Clause); in checkSimdlenSafelenSpecified() 9626 if (Safelen && Simdlen) in checkSimdlenSafelenSpecified() 9630 if (Simdlen && Safelen) { in checkSimdlenSafelenSpecified() 9631 const Expr *SimdlenLength = Simdlen->getSimdlen(); in checkSimdlenSafelenSpecified() 14282 ExprResult Simdlen = VerifyPositiveIntegerConstantInClause(Len, OMPC_simdlen); in ActOnOpenMPSimdlenClause() local 14283 if (Simdlen.isInvalid()) in ActOnOpenMPSimdlenClause() [all …]
|
| H A D | SemaTemplateInstantiateDecl.cpp | 327 ExprResult Simdlen; in instantiateOMPDeclareSimdDeclAttr() local 329 Simdlen = Subst(E); in instantiateOMPDeclareSimdDeclAttr() 367 S.ConvertDeclToDeclGroup(New), Attr.getBranchState(), Simdlen.get(), in instantiateOMPDeclareSimdDeclAttr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Attr.td | 3607 ExprArgument<"Simdlen">, VariadicExprArgument<"Uniforms">,
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 10888 Expr *Simdlen, ArrayRef<Expr *> Uniforms, ArrayRef<Expr *> Aligneds,
|