Home
last modified time | relevance | path

Searched refs:OmpLoopDirective (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/flang/lib/Semantics/
Dcanonicalize-omp.cpp40 auto &dir{std::get<parser::OmpLoopDirective>(endDir->t)}; in Post()
77 auto &dir{std::get<parser::OmpLoopDirective>(beginDir.t)}; in RewriteOpenMPLoopConstruct()
Dcheck-omp-structure.cpp60 const auto &beginDir{std::get<parser::OmpLoopDirective>(beginLoopDir.t)}; in Enter()
66 std::get<parser::OmpLoopDirective>(endLoopDir.value().t)}; in Enter()
68 CheckMatching<parser::OmpLoopDirective>(beginDir, endDir); in Enter()
103 const auto &dir{std::get<parser::OmpLoopDirective>(x.t)}; in Enter()
Dresolve-directives.cpp820 const auto &beginDir{std::get<parser::OmpLoopDirective>(beginLoopDir.t)}; in Pre()
/external/llvm-project/flang/lib/Parser/
Dopenmp-parsers.cpp252 TYPE_PARSER(sourced(construct<OmpLoopDirective>(first(
288 sourced(Parser<OmpLoopDirective>{}), Parser<OmpClauseList>{})))
525 sourced("END"_tok >> Parser<OmpLoopDirective>{}),
Dunparse.cpp2078 void Unparse(const OmpLoopDirective &x) { in Unparse()
2434 Walk(std::get<OmpLoopDirective>(x.t)); in Unparse()
/external/llvm-project/flang/include/flang/Parser/
Dparse-tree.h3673 struct OmpLoopDirective { struct
3674 WRAPPER_CLASS_BOILERPLATE(OmpLoopDirective, llvm::omp::Directive);
3739 std::tuple<OmpLoopDirective, OmpClauseList> t;
3745 std::tuple<OmpLoopDirective, OmpClauseList> t;
Ddump-parse-tree.h497 NODE(parser, OmpLoopDirective) in NODE()