Home
last modified time | relevance | path

Searched refs:AccReductionOperator (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/flang/lib/Parser/
H A Dopenacc-parsers.cpp77 TYPE_PARSER(sourced(construct<AccReductionOperator>(
78 first("+" >> pure(AccReductionOperator::Operator::Plus),
79 "*" >> pure(AccReductionOperator::Operator::Multiply),
80 "MAX" >> pure(AccReductionOperator::Operator::Max),
81 "MIN" >> pure(AccReductionOperator::Operator::Min),
82 "IAND" >> pure(AccReductionOperator::Operator::Iand),
83 "IOR" >> pure(AccReductionOperator::Operator::Ior),
84 "IEOR" >> pure(AccReductionOperator::Operator::Ieor),
85 ".AND." >> pure(AccReductionOperator::Operator::And),
86 ".OR." >> pure(AccReductionOperator::Operator::Or),
[all …]
H A Dunparse.cpp1957 void Unparse(const AccReductionOperator::Operator &x) { in Unparse()
1958 Word(AccReductionOperator::EnumToString(x)); in Unparse()
1961 Walk(std::get<AccReductionOperator>(x.t)); in Unparse()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Ddump-parse-tree.h89 NODE(parser, AccReductionOperator) in NODE()
90 NODE_ENUM(parser::AccReductionOperator, Operator) in NODE()
H A Dparse-tree.h3911 struct AccReductionOperator { struct
3914 WRAPPER_CLASS_BOILERPLATE(AccReductionOperator, Operator);
3920 std::tuple<AccReductionOperator, AccObjectList> t; argument