Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dopenmp-parsers.cpp495 TYPE_PARSER(sourced(construct<OmpCriticalDirective>(verbatim("CRITICAL"_tok),
500 Parser<OmpCriticalDirective>{}, block, Parser<OmpEndCriticalDirective>{}))
H A Dunparse.cpp2314 void Unparse(const OmpCriticalDirective &x) { in Unparse()
2330 Walk(std::get<OmpCriticalDirective>(x.t)); in Unparse()
/llvm-project-15.0.7/flang/lib/Lower/
H A DOpenMP.cpp1144 const Fortran::parser::OmpCriticalDirective &cd = in genOMP()
1145 std::get<Fortran::parser::OmpCriticalDirective>(criticalConstruct.t); in genOMP()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h3633 struct OmpCriticalDirective { struct
3634 TUPLE_CLASS_BOILERPLATE(OmpCriticalDirective);
3645 std::tuple<OmpCriticalDirective, Block, OmpEndCriticalDirective> t; argument
H A Ddump-parse-tree.h475 NODE(parser, OmpCriticalDirective) in NODE()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-directives.cpp1383 const auto &beginCriticalDir{std::get<parser::OmpCriticalDirective>(x.t)}; in Pre()
H A Dcheck-omp-structure.cpp1288 const auto &dir{std::get<parser::OmpCriticalDirective>(x.t)}; in Enter()