Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h925 class OMPSimdlenClause final
938 OMPSimdlenClause(Expr *Len, SourceLocation StartLoc, SourceLocation LParenLoc, in OMPSimdlenClause() function
943 explicit OMPSimdlenClause() : OMPOneStmtClause() {} in OMPSimdlenClause() function
H A DRecursiveASTVisitor.h3385 bool RecursiveASTVisitor<Derived>::VisitOMPSimdlenClause(OMPSimdlenClause *C) {
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp489 void OMPClauseProfiler::VisitOMPSimdlenClause(const OMPSimdlenClause *C) { in VisitOMPSimdlenClause()
H A DOpenMPClause.cpp1854 void OMPClausePrinter::VisitOMPSimdlenClause(OMPSimdlenClause *Node) { in VisitOMPSimdlenClause()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMP.td490 let clangClass = "OMPSimdlenClause";
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp2446 if (const auto *C = D.getSingleClause<OMPSimdlenClause>()) { in emitSimdlenSafelenClause()
2764 if (!(isa<OMPSimdlenClause>(C) || isa<OMPSafelenClause>(C) || in isSimdSupportedByOpenMPIRBuilder()
2845 if (const auto *C = S.getSingleClause<OMPSimdlenClause>()) { in emitOMPSimdDirective()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp11093 C = new (Context) OMPSimdlenClause(); in readClause()
11490 void OMPClauseReader::VisitOMPSimdlenClause(OMPSimdlenClause *C) { in VisitOMPSimdlenClause()
H A DASTWriter.cpp7812 void OMPClauseWriter::VisitOMPSimdlenClause(OMPSimdlenClause *C) { in VisitOMPSimdlenClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp10381 const OMPSimdlenClause *Simdlen = nullptr; in checkSimdlenSafelenSpecified()
10387 Simdlen = cast<OMPSimdlenClause>(Clause); in checkSimdlenSafelenSpecified()
16088 OMPSimdlenClause(Simdlen.get(), StartLoc, LParenLoc, EndLoc); in ActOnOpenMPSimdlenClause()
H A DTreeTransform.h10499 TreeTransform<Derived>::TransformOMPSimdlenClause(OMPSimdlenClause *C) { in TransformOMPSimdlenClause()