Home
last modified time | relevance | path

Searched refs:OmpAtomicCapture (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/flang/include/flang/Parser/
H A Ddump-parse-tree.h454 NODE(parser, OmpAtomicCapture) in NODE()
455 NODE(OmpAtomicCapture, Stmt1) in NODE()
456 NODE(OmpAtomicCapture, Stmt2) in NODE()
H A Dparse-tree.h3717 struct OmpAtomicCapture { struct
3718 TUPLE_CLASS_BOILERPLATE(OmpAtomicCapture);
3742 std::variant<OmpAtomicRead, OmpAtomicWrite, OmpAtomicCapture, OmpAtomicUpdate, argument
/llvm-project-15.0.7/flang/lib/Parser/
H A Dopenmp-parsers.cpp461 construct<OmpAtomicCapture>(Parser<OmpAtomicClauseList>{} / maybe(","_tok),
485 construct<OpenMPAtomicConstruct>(Parser<OmpAtomicCapture>{}) ||
H A Dunparse.cpp2241 void Unparse(const OmpAtomicCapture &x) { in Unparse()
2249 Walk(std::get<OmpAtomicCapture::Stmt1>(x.t)); in Unparse()
2251 Walk(std::get<OmpAtomicCapture::Stmt2>(x.t)); in Unparse()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-omp-structure.h180 void Enter(const parser::OmpAtomicCapture &);
H A Dcheck-omp-structure.cpp2179 CHECK_SIMPLE_PARSER_CLAUSE(OmpAtomicCapture, OMPC_capture) in CHECK_SIMPLE_PARSER_CLAUSE()