Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.cpp966 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
H A DStmtPrinter.cpp763 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td232 def OMPForSimdDirective : StmtNode<OMPLoopDirective>;
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtOpenMP.h1723 class OMPForSimdDirective : public OMPLoopDirective {
1732 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function
1741 explicit OMPForSimdDirective(unsigned CollapsedNum) in OMPForSimdDirective() function
1756 static OMPForSimdDirective *
1768 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2966 DEF_TRAVERSE_STMT(OMPForSimdDirective,
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp2371 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
3332 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2281 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp223 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3511 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
H A DCGStmtOpenMP.cpp3947 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { in EmitOMPForSimdDirective()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2153 void VisitOMPForSimdDirective(const OMPForSimdDirective *D);
3066 void EnqueueVisitor::VisitOMPForSimdDirective(const OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h8789 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()
H A DSemaOpenMP.cpp10387 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()