Home
last modified time | relevance | path

Searched refs:ConcurrentControl (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-do-forall.cpp59 static const std::list<parser::ConcurrentControl> &GetControls(const T &x) { in GetControls()
60 return std::get<std::list<parser::ConcurrentControl>>( in GetControls()
401 void ActivateIndexVars(const std::list<parser::ConcurrentControl> &controls) { in ActivateIndexVars()
407 const std::list<parser::ConcurrentControl> &controls) { in DeactivateIndexVars()
669 auto &controls{std::get<std::list<parser::ConcurrentControl>>(header.t)}; in CheckConcurrentHeader()
671 for (const parser::ConcurrentControl &control : controls) { in CheckConcurrentHeader()
678 for (const parser::ConcurrentControl &control : controls) { in CheckConcurrentHeader()
H A Dassignment.cpp43 void Analyze(const parser::ConcurrentControl &);
H A Dresolve-names.cpp1243 void ResolveIndexName(const parser::ConcurrentControl &control);
5838 const parser::ConcurrentControl &control) { in ResolveIndexName()
5883 std::get<std::list<parser::ConcurrentControl>>(header.t)}; in Pre()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dexecutable-parsers.cpp243 maybe(integerTypeSpec / "::"), nonemptyList(Parser<ConcurrentControl>{}),
250 TYPE_PARSER(construct<ConcurrentControl>(name / "=", scalarIntExpr / ":",
H A Dunparse.cpp1012 Walk(std::get<std::list<ConcurrentControl>>(x.t), ", "); in Unparse()
1015 void Unparse(const ConcurrentControl &x) { // R1126 - R1128 in Unparse()
/llvm-project-15.0.7/flang/lib/Lower/
H A DBridge.cpp1052 for (const Fortran::parser::ConcurrentControl &control :
1053 std::get<std::list<Fortran::parser::ConcurrentControl>>(header.t))
1460 for (const Fortran::parser::ConcurrentControl &ctrl : in genFIR()
1461 std::get<std::list<Fortran::parser::ConcurrentControl>>(header.t)) { in genFIR()
1490 for (const Fortran::parser::ConcurrentControl &ctrl : in genFIR()
1491 std::get<std::list<Fortran::parser::ConcurrentControl>>(header.t)) { in genFIR()
2997 for (const Fortran::parser::ConcurrentControl &ctrl : in analyzeExplicitSpace()
2998 std::get<std::list<Fortran::parser::ConcurrentControl>>(header.t)) { in analyzeExplicitSpace()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h2187 struct ConcurrentControl { struct
2188 TUPLE_CLASS_BOILERPLATE(ConcurrentControl);
2198 std::tuple<std::optional<IntegerTypeSpec>, std::list<ConcurrentControl>, argument
H A Ddump-parse-tree.h205 NODE(parser, ConcurrentControl) in NODE()