Home
last modified time | relevance | path

Searched refs:OMPSectionsDirective (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp494 OMPSectionsDirective *OMPSectionsDirective::Create( in Create()
498 auto *Dir = createDirective<OMPSectionsDirective>(C, Clauses, AssociatedStmt, in Create()
506 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
509 return createEmptyDirective<OMPSectionsDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp955 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
H A DStmtPrinter.cpp767 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h1785 class OMPSectionsDirective : public OMPExecutableDirective {
1797 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionsDirective() function
1803 explicit OMPSectionsDirective() in OMPSectionsDirective() function
1826 static OMPSectionsDirective *
1837 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
1845 return const_cast<OMPSectionsDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
H A DRecursiveASTVisitor.h2971 DEF_TRAVERSE_STMT(OMPSectionsDirective,
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td232 def OMPSectionsDirective : StmtNode<OMPExecutableDirective>;
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2335 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
3291 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2252 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp225 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp1308 TaskRedRef = cast<OMPSectionsDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
4046 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections()
4064 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
H A DCodeGenFunction.h3510 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2147 void VisitOMPSectionsDirective(const OMPSectionsDirective *D);
3048 void EnqueueVisitor::VisitOMPSectionsDirective(const OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8690 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
H A DSemaOpenMP.cpp10342 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()