Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp336 OMPForDirective *OMPForDirective::Create( in Create()
341 auto *Dir = createDirective<OMPForDirective>( in Create()
400 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
404 return createEmptyDirective<OMPForDirective>( in CreateEmpty()
H A DStmtProfile.cpp997 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
H A DStmtPrinter.cpp776 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1650 class OMPForDirective : public OMPLoopDirective {
1662 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function
1671 explicit OMPForDirective(unsigned CollapsedNum) in OMPForDirective() function
1698 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1712 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
1721 return const_cast<OMPForDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
H A DRecursiveASTVisitor.h3041 DEF_TRAVERSE_STMT(OMPForDirective,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td235 def OMPForDirective : StmtNode<OMPLoopDirective>;
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2446 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
3484 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2450 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp232 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp1326 TaskRedRef = cast<OMPForDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
3888 static bool isSupportedByOpenMPIRBuilder(const OMPForDirective &S) { in isSupportedByOpenMPIRBuilder()
3937 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
H A DCodeGenFunction.h3825 void EmitOMPForDirective(const OMPForDirective &S);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9266 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()
H A DSemaOpenMP.cpp10407 auto *ForDirective = OMPForDirective::Create( in ActOnOpenMPForDirective()