Searched refs:OpenMPClauseKind (Results 1 – 12 of 12) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| D | OpenMPKinds.h | 26 using OpenMPClauseKind = llvm::omp::Clause; variable 169 unsigned getOpenMPSimpleClauseType(OpenMPClauseKind Kind, llvm::StringRef Str, 171 const char *getOpenMPSimpleClauseTypeName(OpenMPClauseKind Kind, unsigned Type); 252 bool isOpenMPPrivate(OpenMPClauseKind Kind); 258 bool isOpenMPThreadPrivate(OpenMPClauseKind Kind);
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/ |
| D | OpenMPKinds.cpp | 23 unsigned clang::getOpenMPSimpleClauseType(OpenMPClauseKind Kind, StringRef Str, in getOpenMPSimpleClauseType() 193 const char *clang::getOpenMPSimpleClauseTypeName(OpenMPClauseKind Kind, in getOpenMPSimpleClauseTypeName() 559 bool clang::isOpenMPPrivate(OpenMPClauseKind Kind) { in isOpenMPPrivate() 566 bool clang::isOpenMPThreadPrivate(OpenMPClauseKind Kind) { in isOpenMPThreadPrivate()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/ |
| D | ParseOpenMP.cpp | 594 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPDeclareMapperDirective() 739 OpenMPClauseKind CKind = getOpenMPClauseKind(ClauseName); in parseDeclareSimdClauses() 1429 OpenMPClauseKind CKind = Tok.isAnnotation() in parseOMPDeclareVariantMatchClause() 1642 parseOpenMPSimpleClause(Parser &P, OpenMPClauseKind Kind) { in parseOpenMPSimpleClause() 1924 OpenMPClauseKind CKind = in ParseOpenMPDeclarativeDirectiveWithExtDecl() 1965 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPDeclarativeDirectiveWithExtDecl() 2334 OpenMPClauseKind CKind = in ParseOpenMPDeclarativeOrExecutableDirective() 2498 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPDeclarativeOrExecutableDirective() 2769 OpenMPClauseKind CKind, bool FirstClause) { in ParseOpenMPClause() 3057 OMPClause *Parser::ParseOpenMPSingleExprClause(OpenMPClauseKind Kind, in ParseOpenMPSingleExprClause() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Parse/ |
| D | Parser.h | 248 OpenMPClauseKind OMPClauseKind = llvm::omp::OMPC_unknown; 3286 OpenMPClauseKind CKind, bool FirstClause); 3293 OMPClause *ParseOpenMPSingleExprClause(OpenMPClauseKind Kind, 3301 OMPClause *ParseOpenMPSimpleClause(OpenMPClauseKind Kind, bool ParseOnly); 3311 OpenMPClauseKind Kind, 3323 OMPClause *ParseOpenMPClause(OpenMPClauseKind Kind, bool ParseOnly = false); 3331 OpenMPClauseKind Kind, bool ParseOnly); 3349 OMPClause *ParseOpenMPInteropClause(OpenMPClauseKind Kind, bool ParseOnly); 3379 bool ParseOpenMPVarList(OpenMPDirectiveKind DKind, OpenMPClauseKind Kind,
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | SemaOpenMP.cpp | 52 OpenMPClauseKind CKind, OpenMPDirectiveKind DKind, bool NoDiagnose); 69 OpenMPClauseKind CKind = OMPC_unknown; 76 DSAVarData(OpenMPDirectiveKind DKind, OpenMPClauseKind CKind, in DSAVarData() 100 OpenMPClauseKind Attributes = OMPC_unknown; 119 OpenMPClauseKind Kind = OMPC_unknown; 211 OpenMPClauseKind ClauseKindMode = OMPC_unknown; 345 OpenMPClauseKind getClauseParsingMode() const { in getClauseParsingMode() 349 void setClauseParsingMode(OpenMPClauseKind K) { ClauseKindMode = K; } in setClauseParsingMode() 521 void addDSA(const ValueDecl *D, const Expr *E, OpenMPClauseKind A, 576 const llvm::function_ref<bool(OpenMPClauseKind, bool)> CPred, [all …]
|
| D | SemaExpr.cpp | 17940 OpenMPClauseKind IsOpenMPPrivateDecl = isOpenMPPrivateDecl( in tryCaptureVariable()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| D | Marshallers.h | 242 template <> struct ArgTypeTraits<OpenMPClauseKind> { 244 static Optional<OpenMPClauseKind> getClauseKind(llvm::StringRef ClauseKind) { 245 return llvm::StringSwitch<Optional<OpenMPClauseKind>>(ClauseKind) 260 static OpenMPClauseKind get(const VariantValue &Value) {
|
| D | Marshallers.cpp | 90 clang::OpenMPClauseKind>::getBestGuess(const VariantValue &Value) { in getBestGuess()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/ |
| D | OpenMPClause.h | 62 OpenMPClauseKind Kind; 65 OMPClause(OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) in OMPClause() 82 OpenMPClauseKind getClauseKind() const { return Kind; } in getClauseKind() 208 OMPVarListClause(OpenMPClauseKind K, SourceLocation StartLoc, in OMPVarListClause() 5067 OpenMPClauseKind K, const OMPVarListLocTy &Locs,
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/ |
| D | Sema.h | 10254 VerifyPositiveIntegerConstantInClause(Expr *Op, OpenMPClauseKind CKind, 10396 OpenMPClauseKind isOpenMPPrivateDecl(ValueDecl *D, unsigned Level, 10424 void StartOpenMPClause(OpenMPClauseKind K); 10918 OMPClause *ActOnOpenMPSingleExprClause(OpenMPClauseKind Kind, 10992 OMPClause *ActOnOpenMPSimpleClause(OpenMPClauseKind Kind, 11024 OpenMPClauseKind Kind, ArrayRef<unsigned> Arguments, Expr *Expr, 11035 OMPClause *ActOnOpenMPClause(OpenMPClauseKind Kind, SourceLocation StartLoc, 11137 OpenMPClauseKind Kind, ArrayRef<Expr *> Vars, Expr *DepModOrTailExpr,
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| D | ASTMatchers.h | 8004 OpenMPClauseKind, CKind) { in AST_MATCHER_P() argument
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | CGStmtOpenMP.cpp | 5766 static void emitOMPAtomicExpr(CodeGenFunction &CGF, OpenMPClauseKind Kind, in emitOMPAtomicExpr() 5889 OpenMPClauseKind Kind = OMPC_unknown; in EmitOMPAtomicDirective()
|