Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp275 OMPSimdDirective *
276 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
280 auto *Dir = createDirective<OMPSimdDirective>( in Create()
302 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
306 return createEmptyDirective<OMPSimdDirective>( in CreateEmpty()
H A DStmtProfile.cpp910 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { in VisitOMPSimdDirective()
H A DStmtPrinter.cpp662 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { in VisitOMPSimdDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td225 def OMPSimdDirective : StmtNode<OMPLoopDirective>;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1502 class OMPSimdDirective : public OMPLoopDirective {
1511 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSimdDirective() function
1520 explicit OMPSimdDirective(unsigned CollapsedNum) in OMPSimdDirective() function
1535 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1548 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h2848 DEF_TRAVERSE_STMT(OMPSimdDirective,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2316 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
3196 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2215 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
/freebsd-13.1/contrib/llvm-project/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.cpp2567 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { in EmitOMPSimdDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8520 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) { in TransformOMPSimdDirective()
H A DSemaOpenMP.cpp9695 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPSimdDirective()