Home
last modified time | relevance | path

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

/external/llvm-project/flang/include/flang/Lower/
DRuntime.h24 struct LockStmt;
42 void genLockStatement(AbstractConverter &, const parser::LockStmt &);
DPFTBuilder.h103 parser::GotoStmt, parser::IfStmt, parser::InquireStmt, parser::LockStmt,
/external/llvm-project/flang/lib/Parser/
Dexecutable-parsers.cpp119 construct<ActionStmt>(indirect(Parser<LockStmt>{})),
514 construct<LockStmt>("LOCK (" >> lockVariable,
515 defaulted("," >> nonemptyList(Parser<LockStmt::LockStat>{})) / ")"))
519 construct<LockStmt::LockStat>("ACQUIRED_LOCK =" >> scalarLogicalVariable) ||
520 construct<LockStmt::LockStat>(statOrErrmsg))
Dunparse.cpp1165 void Unparse(const LockStmt &x) { // R1179 in Unparse()
1167 Walk(", ", std::get<std::list<LockStmt::LockStat>>(x.t), ", "); in Unparse()
1170 void Before(const LockStmt::LockStat &x) { // R1180 in Before()
/external/llvm-project/flang/include/flang/Parser/
Ddump-parse-tree.h414 NODE(parser, LockStmt) in NODE()
415 NODE(LockStmt, LockStat) in NODE()
Dparse-tree.h218 struct LockStmt; // R1178
486 common::Indirection<InquireStmt>, common::Indirection<LockStmt>,
2504 struct LockStmt { struct
2509 TUPLE_CLASS_BOILERPLATE(LockStmt); argument
/external/llvm-project/flang/lib/Semantics/
Dtools.cpp820 parser::FormTeamStmt, parser::LockStmt, parser::StopStmt,