Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A 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()
H A DStmtProfile.cpp922 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
H A DStmtPrinter.cpp677 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A 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()
H A DRecursiveASTVisitor.h2857 DEF_TRAVERSE_STMT(OMPForDirective,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td228 def OMPForDirective : StmtNode<OMPLoopDirective>;
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2328 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
3218 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2230 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp215 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
H A 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()
H A DCodeGenFunction.h3445 void EmitOMPForDirective(const OMPForDirective &S);
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8553 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()
H A DSemaOpenMP.cpp9731 return OMPForDirective::Create( in ActOnOpenMPForDirective()