Home
last modified time | relevance | path

Searched refs:OMPForDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp311 OMPForDirective *OMPForDirective::Create( in Create()
315 auto *Dir = createDirective<OMPForDirective>( in Create()
347 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
351 return createEmptyDirective<OMPForDirective>( in CreateEmpty()
DStmtProfile.cpp922 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
DStmtPrinter.cpp677 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h1565 class OMPForDirective : public OMPLoopDirective {
1577 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function
1586 explicit OMPForDirective(unsigned CollapsedNum) in OMPForDirective() function
1613 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1626 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
1635 return const_cast<OMPForDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
DRecursiveASTVisitor.h2857 DEF_TRAVERSE_STMT(OMPForDirective,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DStmtNodes.td228 def OMPForDirective : StmtNode<OMPLoopDirective>;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2328 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
3218 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
DASTWriterStmt.cpp2230 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp215 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
DCGStmtOpenMP.cpp1321 TaskRedRef = cast<OMPForDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
3595 static bool isSupportedByOpenMPIRBuilder(const OMPForDirective &S) { in isSupportedByOpenMPIRBuilder()
3605 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
DCodeGenFunction.h3445 void EmitOMPForDirective(const OMPForDirective &S);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DTreeTransform.h8553 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()
DSemaOpenMP.cpp9731 return OMPForDirective::Create( in ActOnOpenMPForDirective()