Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp358 OMPForSimdDirective *
359 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
363 auto *Dir = createDirective<OMPForSimdDirective>( in Create()
393 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
397 return createEmptyDirective<OMPForSimdDirective>( in CreateEmpty()
H A DStmtProfile.cpp915 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
H A DStmtPrinter.cpp676 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h1622 class OMPForSimdDirective : public OMPLoopDirective {
1631 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function
1640 explicit OMPForSimdDirective(unsigned CollapsedNum) in OMPForSimdDirective() function
1655 static OMPForSimdDirective *
1667 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2831 DEF_TRAVERSE_STMT(OMPForSimdDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td227 def OMPForSimdDirective : StmtNode<OMPLoopDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2319 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
3201 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2220 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp215 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3445 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
H A DCGStmtOpenMP.cpp3620 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { in EmitOMPForSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2049 void VisitOMPForSimdDirective(const OMPForSimdDirective *D);
2903 void EnqueueVisitor::VisitOMPForSimdDirective(const OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8530 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()
H A DSemaOpenMP.cpp9737 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()