Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp396 OMPForSimdDirective *
397 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
401 auto *Dir = createDirective<OMPForSimdDirective>( in Create()
431 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
435 return createEmptyDirective<OMPForSimdDirective>( in CreateEmpty()
H A DStmtProfile.cpp926 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
H A DStmtPrinter.cpp682 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td229 def OMPForSimdDirective : StmtNode<OMPLoopDirective>;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1655 class OMPForSimdDirective : public OMPLoopDirective {
1664 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function
1673 explicit OMPForSimdDirective(unsigned CollapsedNum) in OMPForSimdDirective() function
1688 static OMPForSimdDirective *
1700 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2860 DEF_TRAVERSE_STMT(OMPForSimdDirective,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2333 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
3226 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2236 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp218 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3446 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
H A DCGStmtOpenMP.cpp3646 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { in EmitOMPForSimdDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8564 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()
H A DSemaOpenMP.cpp9771 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()