Home
last modified time | relevance | path

Searched refs:OMPSIMDClause (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h5188 class OMPSIMDClause : public OMPClause {
5194 OMPSIMDClause(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSIMDClause() function
5198 OMPSIMDClause() in OMPSIMDClause() function
H A DRecursiveASTVisitor.h3509 bool RecursiveASTVisitor<Derived>::VisitOMPSIMDClause(OMPSIMDClause *) {
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp601 void OMPClauseProfiler::VisitOMPSIMDClause(const OMPSIMDClause *) {} in VisitOMPSIMDClause() argument
H A DOpenMPClause.cpp1966 void OMPClausePrinter::VisitOMPSIMDClause(OMPSIMDClause *) { OS << "simd"; } in VisitOMPSIMDClause() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td411 let clangClass = "OMPSIMDClause";
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp5945 const auto *C = S.getSingleClause<OMPSIMDClause>(); in EmitOMPOrderedDirective()
5995 const auto *C = S.getSingleClause<OMPSIMDClause>(); in EmitOMPOrderedDirective()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp10486 C = new (Context) OMPSIMDClause(); in readClause()
10884 void OMPClauseReader::VisitOMPSIMDClause(OMPSIMDClause *) {} in VisitOMPSIMDClause() argument
H A DASTWriter.cpp7245 void OMPClauseWriter::VisitOMPSIMDClause(OMPSIMDClause *) {} in VisitOMPSIMDClause() argument
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp11171 const OMPSIMDClause *SC = nullptr; in ActOnOpenMPOrderedDirective()
11212 SC = cast<OMPSIMDClause>(C); in ActOnOpenMPOrderedDirective()
16577 return new (getASTContext()) OMPSIMDClause(StartLoc, EndLoc); in ActOnOpenMPSIMDClause()
H A DTreeTransform.h10293 OMPClause *TreeTransform<Derived>::TransformOMPSIMDClause(OMPSIMDClause *C) { in TransformOMPSIMDClause()