Home
last modified time | relevance | path

Searched refs:getClauseKind (Results 1 – 12 of 12) sorted by relevance

/openbsd/src/gnu/llvm/clang/include/clang/AST/
DOpenMPClause.h83 OpenMPClauseKind getClauseKind() const { return Kind; } in getClauseKind() function
139 return T->getClauseKind() == ClauseKind; in classof()
189 return T->getClauseKind() == ClauseKind; in classof()
516 return T->getClauseKind() == llvm::omp::OMPC_allocate; in classof()
617 return T->getClauseKind() == llvm::omp::OMPC_if; in classof()
869 return T->getClauseKind() == llvm::omp::OMPC_sizes; in classof()
961 return T->getClauseKind() == llvm::omp::OMPC_partial; in classof()
1077 return T->getClauseKind() == llvm::omp::OMPC_default; in classof()
1159 return T->getClauseKind() == llvm::omp::OMPC_proc_bind; in classof()
1225 return T->getClauseKind() == llvm::omp::OMPC_unified_shared_memory; in classof()
[all …]
DRecursiveASTVisitor.h3168 switch (C->getClauseKind()) {
/openbsd/src/gnu/llvm/clang/lib/AST/
DOpenMPClause.cpp33 switch (getClauseKind()) { in children()
46 switch (getClauseKind()) { in used_children()
65 switch (C->getClauseKind()) { in get()
187 switch (C->getClauseKind()) { in get()
1865 OS << getOpenMPSimpleClauseTypeName(Node->getClauseKind(), in VisitOMPUpdateClause()
1909 OS << getOpenMPSimpleClauseTypeName(Node->getClauseKind(), Modifier) in VisitOMPDeviceClause()
1938 OS << getOpenMPSimpleClauseTypeName(Node->getClauseKind(), Modifier) in VisitOMPGrainsizeClause()
1949 OS << getOpenMPSimpleClauseTypeName(Node->getClauseKind(), Modifier) in VisitOMPNumTasksClause()
2235 OS << getOpenMPSimpleClauseTypeName(Node->getClauseKind(), PrintKind); in VisitOMPDependClause()
2292 OS << getOpenMPClauseName(Node->getClauseKind()); in VisitOMPMotionClause()
[all …]
DASTTypeTraits.cpp148 switch (C.getClauseKind()) { in getFromNode()
DTextNodeDumper.cpp338 StringRef ClauseName(llvm::omp::getOpenMPClauseName(C->getClauseKind())); in Visit()
1917 llvm::omp::getOpenMPClauseName(C->getClauseKind())); in VisitOMPRequiresDecl()
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaOpenMP.cpp675 if (CNew->getClauseKind() == CPrev->getClauseKind()) { in hasDuplicateRequiresClause()
678 << getOpenMPClauseName(CNew->getClauseKind()); in hasDuplicateRequiresClause()
681 << getOpenMPClauseName(CPrev->getClauseKind()); in hasDuplicateRequiresClause()
2784 if (C->getClauseKind() != OMPC_reduction) in checkReductionClauses()
2809 if (C->getClauseKind() != OMPC_reduction) in checkReductionClauses()
3539 << "target" << getOpenMPClauseName(CNew->getClauseKind()); in CheckOMPRequiresDecl()
3547 << "atomic" << getOpenMPClauseName(CNew->getClauseKind()); in CheckOMPRequiresDecl()
4766 if (Clause->getClauseKind() == OMPC_ordered) in checkOrderedOrderSpecified()
4768 else if (Clause->getClauseKind() == OMPC_order) { in checkOrderedOrderSpecified()
4820 Clause->getClauseKind() == OMPC_in_reduction) { in ActOnOpenMPRegionEnd()
[all …]
DTreeTransform.h3956 switch (S->getClauseKind()) { in TransformOMPClause()
8666 getDerived().getSema().StartOpenMPClause((*I)->getClauseKind()); in TransformOMPExecutableDirective()
/openbsd/src/gnu/llvm/clang/lib/ASTMatchers/Dynamic/
DMarshallers.h244 getClauseKind(llvm::StringRef ClauseKind) {
257 return getClauseKind(Value.getString()).has_value();
261 return *getClauseKind(Value.getString());
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGOpenMPRuntimeGPU.cpp287 if (!isOpenMPPrivate(C->getClauseKind()) || in VisitOpenMPCapturedStmt()
288 C->getClauseKind() == OMPC_reduction || in VisitOpenMPCapturedStmt()
289 C->getClauseKind() == OMPC_linear || in VisitOpenMPCapturedStmt()
290 C->getClauseKind() == OMPC_private) in VisitOpenMPCapturedStmt()
3529 if (Clause->getClauseKind() == OMPC_unified_shared_memory) { in processRequiresDirective()
DCGStmtOpenMP.cpp6490 OpenMPClauseKind K = C->getClauseKind(); in EmitOMPAtomicDirective()
DCGOpenMPRuntime.cpp10459 if (Clause->getClauseKind() == OMPC_unified_shared_memory) { in processRequiresDirective()
/openbsd/src/gnu/llvm/clang/lib/Serialization/
DASTWriter.cpp6373 Record.push_back(unsigned(C->getClauseKind())); in writeClause()