Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcanonicalize-omp.cpp76 auto &beginDir{std::get<parser::OmpBeginLoopDirective>(x.t)}; in RewriteOpenMPLoopConstruct()
H A Dcheck-omp-structure.cpp232 const auto &beginLoopDir{std::get<parser::OmpBeginLoopDirective>(x.t)}; in HasInvalidDistributeNesting()
376 const auto &beginLoopDir{std::get<parser::OmpBeginLoopDirective>(x.t)}; in Enter()
443 const auto &beginLoopDir{std::get<parser::OmpBeginLoopDirective>(x.t)}; in CheckDoWhile()
534 std::get<parser::OmpBeginLoopDirective>(c.t)}; in CheckSIMDNest()
607 const auto &beginLoopDir{std::get<parser::OmpBeginLoopDirective>(x.t)}; in GetOrdCollapseLevel()
645 const auto &beginLoopDir{std::get<parser::OmpBeginLoopDirective>(x.t)}; in CheckDistLinear()
2682 std::get<parser::OmpBeginLoopDirective>(ompLoopConstruct->t)}; in CheckWorkshareBlockStmts()
H A Dresolve-directives.cpp306 void Post(const parser::OmpBeginLoopDirective &) { in Post() argument
1177 const auto &beginLoopDir{std::get<parser::OmpBeginLoopDirective>(x.t)}; in Pre()
H A Dresolve-names.cpp1344 bool Pre(const parser::OmpBeginLoopDirective &x) { in Pre()
1348 void Post(const parser::OmpBeginLoopDirective &) { in Post() argument
/llvm-project-15.0.7/flang/lib/Parser/
H A Dopenmp-parsers.cpp320 TYPE_PARSER(sourced(construct<OmpBeginLoopDirective>(
595 Parser<OmpBeginLoopDirective>{} / endOmpLine))
H A Dunparse.cpp2507 Walk(std::get<OmpBeginLoopDirective>(x.t)); in Unparse()
/llvm-project-15.0.7/flang/lib/Lower/
H A DOpenMP.cpp912 std::get<Fortran::parser::OmpBeginLoopDirective>(loopConstruct.t).t); in genOMP()
916 std::get<Fortran::parser::OmpBeginLoopDirective>(loopConstruct.t).t) in genOMP()
919 createCombinedParallelOp<Fortran::parser::OmpBeginLoopDirective>( in genOMP()
921 std::get<Fortran::parser::OmpBeginLoopDirective>(loopConstruct.t)); in genOMP()
H A DBridge.cpp1657 std::get<Fortran::parser::OmpBeginLoopDirective>(ompLoop->t).t); in genFIR()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h3803 struct OmpBeginLoopDirective { struct
3804 TUPLE_CLASS_BOILERPLATE(OmpBeginLoopDirective);
3835 OpenMPLoopConstruct(OmpBeginLoopDirective &&a) in OpenMPLoopConstruct()
3837 std::tuple<OmpBeginLoopDirective, std::optional<DoConstruct>,
H A Ddump-parse-tree.h461 NODE(parser, OmpBeginLoopDirective) in NODE()