Searched refs:Simdlen (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 508 Stmt *Simdlen = nullptr; variable 511 void setSimdlen(Expr *Len) { Simdlen = Len; } in setSimdlen() 522 Simdlen(Len) {} in OMPSimdlenClause() 535 Expr *getSimdlen() const { return cast_or_null<Expr>(Simdlen); } in getSimdlen() 537 child_range children() { return child_range(&Simdlen, &Simdlen + 1); } in children()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 621 ExprResult Simdlen; in ParseOMPDeclareSimdClauses() local 629 parseDeclareSimdClauses(*this, BS, Simdlen, Uniforms, Aligneds, in ParseOMPDeclareSimdClauses() 643 Ptr, BS, Simdlen.get(), Uniforms, Aligneds, Alignments, Linears, in ParseOMPDeclareSimdClauses()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 3683 DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, Expr *Simdlen, in ActOnOpenMPDeclareSimdDirective() argument 3711 if (Simdlen) in ActOnOpenMPDeclareSimdDirective() 3712 SL = VerifyPositiveIntegerConstantInClause(Simdlen, OMPC_simdlen); in ActOnOpenMPDeclareSimdDirective() 5724 const OMPSimdlenClause *Simdlen = nullptr; in checkSimdlenSafelenSpecified() local 5730 Simdlen = cast<OMPSimdlenClause>(Clause); in checkSimdlenSafelenSpecified() 5731 if (Safelen && Simdlen) in checkSimdlenSafelenSpecified() 5735 if (Simdlen && Safelen) { in checkSimdlenSafelenSpecified() 5736 const Expr *SimdlenLength = Simdlen->getSimdlen(); in checkSimdlenSafelenSpecified() 9027 ExprResult Simdlen = VerifyPositiveIntegerConstantInClause(Len, OMPC_simdlen); in ActOnOpenMPSimdlenClause() local 9028 if (Simdlen.isInvalid()) in ActOnOpenMPSimdlenClause() [all …]
|
| H A D | SemaTemplateInstantiateDecl.cpp | 303 ExprResult Simdlen; in instantiateOMPDeclareSimdDeclAttr() local 305 Simdlen = Subst(E); in instantiateOMPDeclareSimdDeclAttr() 343 S.ConvertDeclToDeclGroup(New), Attr.getBranchState(), Simdlen.get(), in instantiateOMPDeclareSimdDeclAttr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | Attr.td | 3040 ExprArgument<"Simdlen">, VariadicExprArgument<"Uniforms">,
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 9103 Expr *Simdlen, ArrayRef<Expr *> Uniforms, ArrayRef<Expr *> Aligneds,
|