Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmtOpenMP.cpp300 OMPSimdDirective *
301 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
305 auto *Dir = createDirective<OMPSimdDirective>( in Create()
327 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
331 return createEmptyDirective<OMPSimdDirective>( in CreateEmpty()
H A DStmtProfile.cpp930 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { in VisitOMPSimdDirective()
H A DStmtPrinter.cpp742 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { in VisitOMPSimdDirective()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td226 def OMPSimdDirective : StmtNode<OMPLoopDirective>;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmtOpenMP.h1569 class OMPSimdDirective : public OMPLoopDirective {
1578 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSimdDirective() function
1587 explicit OMPSimdDirective(unsigned CollapsedNum) in OMPSimdDirective() function
1602 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1615 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h2956 DEF_TRAVERSE_STMT(OMPSimdDirective,
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp2308 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
3255 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2220 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp210 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3505 void EmitOMPSimdDirective(const OMPSimdDirective &S);
H A DCGStmtOpenMP.cpp2595 static bool isSupportedByOpenMPIRBuilder(const OMPSimdDirective &S) { in isSupportedByOpenMPIRBuilder()
2626 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { in EmitOMPSimdDirective()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCIndex.cpp2140 void VisitOMPSimdDirective(const OMPSimdDirective *D);
3023 void EnqueueVisitor::VisitOMPSimdDirective(const OMPSimdDirective *D) { in VisitOMPSimdDirective()
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h8635 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) { in TransformOMPSimdDirective()
H A DSemaOpenMP.cpp10228 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPSimdDirective()