Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp452 OMPForSimdDirective *
453 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
457 auto *Dir = createDirective<OMPForSimdDirective>( in Create()
487 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
491 return createEmptyDirective<OMPForSimdDirective>( in CreateEmpty()
H A DStmtProfile.cpp990 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
H A DStmtPrinter.cpp768 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td232 def OMPForSimdDirective : StmtNode<OMPLoopDirective>;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1740 class OMPForSimdDirective : public OMPLoopDirective {
1749 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function
1758 explicit OMPForSimdDirective(unsigned CollapsedNum) in OMPForSimdDirective() function
1773 static OMPForSimdDirective *
1785 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2974 DEF_TRAVERSE_STMT(OMPForSimdDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2423 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
3415 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2407 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp225 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3598 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
H A DCGStmtOpenMP.cpp3947 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { in EmitOMPForSimdDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8948 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()
H A DSemaOpenMP.cpp10627 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()