Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtOpenMP.cpp256 OMPSimdDirective *
257 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
261 auto *Dir = createDirective<OMPSimdDirective>( in Create()
283 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
287 return createEmptyDirective<OMPSimdDirective>( in CreateEmpty()
H A DStmtProfile.cpp903 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { in VisitOMPSimdDirective()
H A DStmtPrinter.cpp661 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { in VisitOMPSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtOpenMP.h1469 class OMPSimdDirective : public OMPLoopDirective {
1478 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSimdDirective() function
1487 explicit OMPSimdDirective(unsigned CollapsedNum) in OMPSimdDirective() function
1502 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1515 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h2822 DEF_TRAVERSE_STMT(OMPSimdDirective,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td224 def OMPSimdDirective : StmtNode<OMPLoopDirective>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2306 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
3178 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2204 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp206 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3442 void EmitOMPSimdDirective(const OMPSimdDirective &S);
H A DCGStmtOpenMP.cpp2562 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { in EmitOMPSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2046 void VisitOMPSimdDirective(const OMPSimdDirective *D);
2891 void EnqueueVisitor::VisitOMPSimdDirective(const OMPSimdDirective *D) { in VisitOMPSimdDirective()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h8497 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) { in TransformOMPSimdDirective()
H A DSemaOpenMP.cpp9661 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPSimdDirective()