Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp450 OMPForSimdDirective *
451 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
455 auto *Dir = createDirective<OMPForSimdDirective>( in Create()
485 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
489 return createEmptyDirective<OMPForSimdDirective>( in CreateEmpty()
H A DStmtProfile.cpp951 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
H A DStmtPrinter.cpp762 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td231 def OMPForSimdDirective : StmtNode<OMPLoopDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h1722 class OMPForSimdDirective : public OMPLoopDirective {
1731 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function
1740 explicit OMPForSimdDirective(unsigned CollapsedNum) in OMPForSimdDirective() function
1755 static OMPForSimdDirective *
1767 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2968 DEF_TRAVERSE_STMT(OMPForSimdDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2331 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
3285 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2247 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp222 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3509 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
H A DCGStmtOpenMP.cpp3889 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { in EmitOMPForSimdDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2146 void VisitOMPForSimdDirective(const OMPForSimdDirective *D);
3044 void EnqueueVisitor::VisitOMPForSimdDirective(const OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8679 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()
H A DSemaOpenMP.cpp10304 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()