9#ifndef FORTRAN_PARSER_PARSE_TREE_H_
10#define FORTRAN_PARSER_PARSE_TREE_H_
20#include "char-block.h"
21#include "characters.h"
22#include "format-specification.h"
24#include "provenance.h"
25#include "flang/Common/Fortran.h"
26#include "flang/Common/idioms.h"
27#include "flang/Common/indirection.h"
28#include "llvm/Frontend/OpenACC/ACC.h.inc"
29#include "llvm/Frontend/OpenMP/OMP.h"
30#include "llvm/Frontend/OpenMP/OMPConstants.h"
51CLASS_TRAIT(EmptyTrait)
52CLASS_TRAIT(WrapperTrait)
53CLASS_TRAIT(UnionTrait)
54CLASS_TRAIT(TupleTrait)
55CLASS_TRAIT(ConstraintTrait)
60namespace Fortran::semantics {
69struct GenericExprWrapper;
70struct GenericAssignmentWrapper;
77#define COPY_AND_ASSIGN_BOILERPLATE(classname) \
78 classname(classname &&) = default; \
79 classname &operator=(classname &&) = default; \
80 classname(const classname &) = delete; \
81 classname &operator=(const classname &) = delete
84#define BOILERPLATE(classname) \
85 COPY_AND_ASSIGN_BOILERPLATE(classname); \
90#define EMPTY_CLASS(classname) \
93 classname(const classname &) {} \
94 classname(classname &&) {} \
95 classname &operator=(const classname &) { return *this; }; \
96 classname &operator=(classname &&) { return *this; }; \
97 using EmptyTrait = std::true_type; \
102#define UNION_CLASS_BOILERPLATE(classname) \
103 template <typename A, typename = common::NoLvalue<A>> \
104 classname(A &&x) : u(std::move(x)) {} \
105 using UnionTrait = std::true_type; \
106 BOILERPLATE(classname)
110#define TUPLE_CLASS_BOILERPLATE(classname) \
111 template <typename... Ts, typename = common::NoLvalue<Ts...>> \
112 classname(Ts &&...args) : t(std::move(args)...) {} \
113 using TupleTrait = std::true_type; \
114 BOILERPLATE(classname)
118#define WRAPPER_CLASS_BOILERPLATE(classname, type) \
119 BOILERPLATE(classname); \
120 classname(type &&x) : v(std::move(x)) {} \
121 using WrapperTrait = std::true_type; \
124#define WRAPPER_CLASS(classname, type) \
126 WRAPPER_CLASS_BOILERPLATE(classname, type); \
135struct SpecificationPart;
136struct ExecutableConstruct;
143struct WhereConstruct;
144struct ForallConstruct;
145struct InputImpliedDo;
146struct OutputImpliedDo;
147struct FunctionReference;
148struct FunctionSubprogram;
149struct SubroutineSubprogram;
154struct DerivedTypeDef;
156struct TypeDeclarationStmt;
158struct AllocatableStmt;
159struct AsynchronousStmt;
161struct CodimensionStmt;
162struct ContiguousStmt;
169struct OldParameterStmt;
179struct EquivalenceStmt;
182struct CharLiteralConstantSubstring;
183struct SubstringInquiry;
185struct StructureComponent;
186struct CoindexedNamedObject;
190struct DeallocateStmt;
191struct AssignmentStmt;
192struct PointerAssignmentStmt;
195struct AssociateConstruct;
196struct BlockConstruct;
197struct ChangeTeamConstruct;
198struct CriticalConstruct;
201struct ConcurrentHeader;
207struct SelectRankConstruct;
208struct SelectTypeConstruct;
211struct ComputedGotoStmt;
213struct NotifyWaitStmt;
215struct SyncImagesStmt;
216struct SyncMemoryStmt;
241struct InterfaceBlock;
245struct ProcedureDeclarationStmt;
249struct ProcedureDesignator;
251struct SeparateModuleSubprogram;
254struct StmtFunctionStmt;
257struct CompilerDirective;
258struct BasedPointerStmt;
259struct CUDAAttributesStmt;
261struct ArithmeticIfStmt;
263struct AssignedGotoStmt;
265struct OpenACCConstruct;
266struct AccEndCombinedDirective;
267struct OpenACCDeclarativeConstruct;
268struct OpenACCRoutineConstruct;
269struct OpenMPConstruct;
270struct OpenMPDeclarativeConstruct;
271struct OmpEndLoopDirective;
272struct OmpMemoryOrderClause;
273struct CUFKernelDoConstruct;
276using Location =
const char *;
282 COPY_AND_ASSIGN_BOILERPLATE(
Verbatim);
283 using EmptyTrait = std::true_type;
293 using ConstraintTrait = std::true_type;
295 Scalar(A &&that) : thing(std::move(that)) {}
301 using ConstraintTrait = std::true_type;
303 Constant(A &&that) : thing(std::move(that)) {}
309 using ConstraintTrait = std::true_type;
311 Integer(A &&that) : thing(std::move(that)) {}
317 using ConstraintTrait = std::true_type;
319 Logical(A &&that) : thing(std::move(that)) {}
325 using ConstraintTrait = std::true_type;
346using Label = common::Label;
356 Statement(std::optional<long> &&lab, A &&s)
358 std::optional<Label> label;
362EMPTY_CLASS(ErrorRecovery);
374 std::variant<common::Indirection<AccessStmt>,
396 std::variant<common::Indirection<DerivedTypeDef>,
415 std::variant<Statement<common::Indirection<ImplicitStmt>>,
426WRAPPER_CLASS(ImplicitPart, std::list<ImplicitPartStmt>);
433 std::variant<SpecificationConstruct, Statement<common::Indirection<DataStmt>>,
447 std::tuple<std::list<OpenACCDeclarativeConstruct>,
448 std::list<OpenMPDeclarativeConstruct>,
449 std::list<common::Indirection<CompilerDirective>>,
450 std::list<Statement<common::Indirection<UseStmt>>>,
451 std::list<Statement<common::Indirection<ImportStmt>>>, ImplicitPart,
452 std::list<DeclarationConstruct>>
459 std::variant<common::Indirection<FunctionSubprogram>,
466EMPTY_CLASS(ContainsStmt);
471 std::tuple<Statement<ContainsStmt>, std::list<InternalSubprogram>> t;
475EMPTY_CLASS(ContinueStmt);
478EMPTY_CLASS(FailImageStmt);
492 std::variant<common::Indirection<AllocateStmt>,
549 std::variant<ExecutableConstruct, Statement<common::Indirection<FormatStmt>>,
558using Block = std::list<ExecutionPartConstruct>;
559WRAPPER_CLASS(ExecutionPart, Block);
566 std::variant<common::Indirection<MainProgram>,
577WRAPPER_CLASS(Program, std::list<ProgramUnit>);
581 std::string ToString()
const {
return source.ToString(); }
587WRAPPER_CLASS(Keyword,
Name);
590WRAPPER_CLASS(NamedConstant,
Name);
597WRAPPER_CLASS(DefinedOpName,
Name);
607 ENUM_CLASS(IntrinsicOperator, Power, Multiply, Divide, Add, Subtract, Concat,
608 LT, LE, EQ, NE, GE, GT, NOT, AND, OR, EQV, NEQV)
609 std::variant<DefinedOpName, IntrinsicOperator> u;
620 ImportStmt(common::ImportKind &&k) : kind{k} {}
621 ImportStmt(std::list<Name> &&n) : names(std::move(n)) {}
622 ImportStmt(common::ImportKind &&, std::list<Name> &&);
623 common::ImportKind kind{common::ImportKind::Default};
624 std::list<Name> names;
633 TUPLE_CLASS_BOILERPLATE(
Group);
634 std::tuple<Name, std::list<Name>> t;
636 WRAPPER_CLASS_BOILERPLATE(
NamelistStmt, std::list<Group>);
644 EMPTY_CLASS(Deferred);
645 std::variant<ScalarIntExpr, Star, Deferred> u;
653 WRAPPER_CLASS(StarSize, std::uint64_t);
654 std::variant<ScalarIntConstantExpr, StarSize> u;
658WRAPPER_CLASS(IntegerTypeSpec, std::optional<KindSelector>);
660WRAPPER_CLASS(UnsignedTypeSpec, std::optional<KindSelector>);
665 std::variant<TypeParamValue, std::uint64_t> u;
671 std::variant<TypeParamValue, CharLength> u;
684 : length(std::move(l)), kind(std::move(k)) {}
685 std::optional<TypeParamValue> length;
689 : u{
LengthAndKind{std::make_optional(std::move(l)), std::move(k)}} {}
691 : u{LengthAndKind{std::move(l), std::move(k)}} {}
692 std::variant<LengthSelector, LengthAndKind> u;
704 Real(std::optional<KindSelector> &&k) : kind{std::move(k)} {}
705 std::optional<KindSelector> kind;
707 EMPTY_CLASS(DoublePrecision);
710 Complex(std::optional<KindSelector> &&k) : kind{std::move(k)} {}
711 std::optional<KindSelector> kind;
715 Character(std::optional<CharSelector> &&s) : selector{std::move(s)} {}
716 std::optional<CharSelector> selector;
720 Logical(std::optional<KindSelector> &&k) : kind{std::move(k)} {}
721 std::optional<KindSelector> kind;
723 EMPTY_CLASS(DoubleComplex);
724 std::variant<IntegerTypeSpec, UnsignedTypeSpec,
Real, DoublePrecision,
732 std::variant<IntegerTypeSpec, IntrinsicTypeSpec::Real, UnsignedTypeSpec> u;
737 EMPTY_CLASS(PairVectorTypeSpec);
738 EMPTY_CLASS(QuadVectorTypeSpec);
739 std::variant<IntrinsicVectorTypeSpec, PairVectorTypeSpec, QuadVectorTypeSpec>
753 std::tuple<Name, std::list<TypeParamSpec>> t;
760 std::variant<IntrinsicTypeSpec, DerivedTypeSpec> u;
780 EMPTY_CLASS(ClassStar);
781 EMPTY_CLASS(TypeStar);
782 WRAPPER_CLASS(Record,
Name);
791 std::variant<std::uint64_t, Scalar<Integer<Constant<Name>>>> u;
798 std::tuple<CharBlock, std::optional<KindParam>> t;
804 std::tuple<CharBlock, std::optional<KindParam>> t;
810 std::tuple<CharBlock, std::optional<KindParam>> t;
814enum class Sign { Positive, Negative };
824 COPY_AND_ASSIGN_BOILERPLATE(
Real);
829 : real{std::move(r)}, kind{std::move(k)} {}
831 std::optional<KindParam> kind;
856 std::tuple<ComplexPart, ComplexPart> t;
862 std::tuple<Sign, ComplexLiteralConstant> t;
870 std::tuple<std::optional<KindParam>, std::string> t;
871 std::string GetString()
const {
return std::get<std::string>(t); }
877 std::string GetString()
const {
return v; }
884 std::tuple<bool, std::optional<KindParam>> t;
894WRAPPER_CLASS(BOZLiteralConstant, std::string);
910 ENUM_CLASS(Kind, Public, Private)
916EMPTY_CLASS(Abstract);
920 WRAPPER_CLASS(Extends,
Name);
921 std::variant<Abstract, AccessSpec, BindC, Extends> u;
928 std::tuple<std::list<TypeAttrSpec>,
Name, std::list<Name>> t;
932EMPTY_CLASS(SequenceStmt);
936EMPTY_CLASS(PrivateStmt);
941 std::variant<PrivateStmt, SequenceStmt> u;
947 std::tuple<Name, std::optional<ScalarIntConstantExpr>> t;
955 std::tuple<IntegerTypeSpec, common::TypeParamAttr, std::list<TypeParamDecl>>
967 std::tuple<std::optional<SpecificationExpr>, SpecificationExpr> t;
972WRAPPER_CLASS(DeferredCoshapeSpecList,
int);
980 std::tuple<std::list<ExplicitShapeSpec>, std::optional<SpecificationExpr>> t;
986 std::variant<DeferredCoshapeSpecList, ExplicitCoshapeSpec> u;
991WRAPPER_CLASS(DeferredShapeSpecList,
int);
997 std::variant<std::list<ExplicitShapeSpec>, DeferredShapeSpecList> u;
1005EMPTY_CLASS(Allocatable);
1006EMPTY_CLASS(Pointer);
1007EMPTY_CLASS(Contiguous);
1029 std::list<common::Indirection<DataStmtValue>>>
1042 std::optional<ComponentArraySpec> &&aSpec,
1043 std::optional<CoarraySpec> &&coaSpec,
1044 std::optional<Initialization> &&init)
1045 : t{std::move(name), std::move(aSpec), std::move(coaSpec),
1046 std::move(length), std::move(init)} {}
1047 std::tuple<Name, std::optional<ComponentArraySpec>,
1048 std::optional<CoarraySpec>, std::optional<CharLength>,
1049 std::optional<Initialization>>
1057 std::tuple<Name, std::optional<ComponentArraySpec>, std::optional<CharLength>>
1063 std::variant<ComponentDecl, FillDecl> u;
1071 std::tuple<DeclarationTypeSpec, std::list<ComponentAttrSpec>,
1072 std::list<ComponentOrFill>>
1079WRAPPER_CLASS(Pass, std::optional<Name>);
1082 std::variant<AccessSpec, NoPass, Pass, Pointer> u;
1089 std::variant<NullInit, Name> u;
1096 std::variant<Name, DeclarationTypeSpec> u;
1102 std::tuple<Name, std::optional<ProcPointerInit>> t;
1110 std::tuple<std::optional<ProcInterface>, std::list<ProcComponentAttrSpec>,
1111 std::list<ProcDecl>>
1129 EMPTY_CLASS(Deferred);
1130 EMPTY_CLASS(Non_Overridable);
1131 std::variant<AccessSpec, Deferred, Non_Overridable, NoPass, Pass> u;
1137 std::tuple<Name, std::optional<Name>> t;
1150 std::list<BindAttr> &&as, std::list<TypeBoundProcDecl> &&ds)
1151 : attributes(std::move(as)), declarations(std::move(ds)) {}
1152 std::list<BindAttr> attributes;
1153 std::list<TypeBoundProcDecl> declarations;
1158 : interfaceName(std::move(n)), attributes(std::move(as)),
1159 bindingNames(std::move(bs)) {}
1161 std::list<BindAttr> attributes;
1162 std::list<Name> bindingNames;
1164 std::variant<WithoutInterface, WithInterface> u;
1177WRAPPER_CLASS(FinalProcedureStmt, std::list<Name>);
1193 std::tuple<Statement<ContainsStmt>, std::optional<Statement<PrivateStmt>>,
1194 std::list<Statement<TypeBoundProcBinding>>>
1199WRAPPER_CLASS(EndTypeStmt, std::optional<Name>);
1207 std::tuple<Statement<DerivedTypeStmt>, std::list<Statement<TypeParamDefStmt>>,
1208 std::list<Statement<PrivateOrSequence>>,
1209 std::list<Statement<ComponentDefStmt>>,
1222 std::tuple<std::optional<Keyword>, ComponentDataSource> t;
1228 std::tuple<DerivedTypeSpec, std::list<ComponentSpec>> t;
1232EMPTY_CLASS(EnumDefStmt);
1237 std::tuple<NamedConstant, std::optional<ScalarIntConstantExpr>> t;
1241WRAPPER_CLASS(EnumeratorDefStmt, std::list<Enumerator>);
1244EMPTY_CLASS(EndEnumStmt);
1250 TUPLE_CLASS_BOILERPLATE(
EnumDef);
1251 std::tuple<Statement<EnumDefStmt>, std::list<Statement<EnumeratorDefStmt>>,
1259 TUPLE_CLASS_BOILERPLATE(
Triplet);
1260 std::tuple<ScalarIntExpr, ScalarIntExpr, std::optional<ScalarIntExpr>> t;
1262 UNION_CLASS_BOILERPLATE(
AcValue);
1263 std::variant<Triplet, common::Indirection<Expr>,
1271 AcSpec(std::optional<TypeSpec> &&ts, std::list<AcValue> &&xs)
1272 : type(std::move(ts)), values(std::move(xs)) {}
1274 std::optional<TypeSpec> type;
1275 std::list<AcValue> values;
1279WRAPPER_CLASS(ArrayConstructor,
AcSpec);
1287 VAR &&name, BOUND &&lower, BOUND &&upper, std::optional<BOUND> &&step)
1288 : name{std::move(name)}, lower{std::move(lower)}, upper{std::move(upper)},
1289 step{std::move(step)} {}
1293 std::optional<BOUND> step;
1306 std::tuple<std::optional<IntegerTypeSpec>,
Bounds> t;
1321 std::tuple<std::optional<ScalarDefaultCharConstantExpr>,
bool> t;
1327 std::tuple<NamedConstant, ConstantExpr> t;
1331WRAPPER_CLASS(ParameterStmt, std::list<NamedConstantDef>);
1334WRAPPER_CLASS(AssumedShapeSpec, std::optional<SpecificationExpr>);
1337WRAPPER_CLASS(AssumedImpliedSpec, std::optional<SpecificationExpr>);
1342 std::tuple<std::list<ExplicitShapeSpec>, AssumedImpliedSpec> t;
1349WRAPPER_CLASS(ImpliedShapeSpec, std::list<AssumedImpliedSpec>);
1352EMPTY_CLASS(AssumedRankSpec);
1360 std::variant<std::list<ExplicitShapeSpec>, std::list<AssumedShapeSpec>,
1361 DeferredShapeSpecList,
AssumedSizeSpec, ImpliedShapeSpec, AssumedRankSpec>
1367 ENUM_CLASS(Intent, In, Out, InOut)
1368 WRAPPER_CLASS_BOILERPLATE(
IntentSpec, Intent);
1378EMPTY_CLASS(Asynchronous);
1379EMPTY_CLASS(External);
1380EMPTY_CLASS(Intrinsic);
1381EMPTY_CLASS(Optional);
1382EMPTY_CLASS(Parameter);
1383EMPTY_CLASS(Protected);
1387EMPTY_CLASS(Volatile);
1392 Parameter, Pointer, Protected, Save, Target, Value, Volatile,
1393 common::CUDADataAttr>
1406 std::optional<ArraySpec> &&aSpec, std::optional<CoarraySpec> &&coaSpec,
1407 std::optional<Initialization> &&init)
1408 : t{std::move(name), std::move(aSpec), std::move(coaSpec),
1409 std::move(length), std::move(init)} {}
1410 std::tuple<ObjectName, std::optional<ArraySpec>, std::optional<CoarraySpec>,
1411 std::optional<CharLength>, std::optional<Initialization>>
1419 std::tuple<DeclarationTypeSpec, std::list<AttrSpec>, std::list<EntityDecl>> t;
1429 std::tuple<AccessSpec, std::list<AccessId>> t;
1438 std::tuple<ObjectName, std::optional<ArraySpec>, std::optional<CoarraySpec>>
1443WRAPPER_CLASS(AllocatableStmt, std::list<ObjectDecl>);
1446WRAPPER_CLASS(AsynchronousStmt, std::list<ObjectName>);
1451 ENUM_CLASS(Kind, Object, Common)
1452 std::tuple<Kind, Name> t;
1458 std::tuple<LanguageBindingSpec, std::list<BindEntity>> t;
1464 std::tuple<Name, CoarraySpec> t;
1468WRAPPER_CLASS(CodimensionStmt, std::list<CodimensionDecl>);
1471WRAPPER_CLASS(ContiguousStmt, std::list<ObjectName>);
1491 std::variant<common::Indirection<CharLiteralConstantSubstring>,
1504 std::variant<IntLiteralConstant, Scalar<Integer<ConstantSubobject>>> u;
1510 mutable std::int64_t repetitions{1};
1518 std::variant<Scalar<common::Indirection<Designator>>,
1531 std::tuple<std::list<DataIDoObject>, std::optional<IntegerTypeSpec>,
Bounds>
1538 std::variant<common::Indirection<Variable>,
DataImpliedDo> u;
1544 std::tuple<std::list<DataStmtObject>, std::list<DataStmtValue>> t;
1548WRAPPER_CLASS(DataStmt, std::list<DataStmtSet>);
1556 std::tuple<Name, ArraySpec> t;
1558 WRAPPER_CLASS_BOILERPLATE(
DimensionStmt, std::list<Declaration>);
1564 std::tuple<IntentSpec, std::list<Name>> t;
1568WRAPPER_CLASS(OptionalStmt, std::list<Name>);
1574 std::tuple<Name, std::optional<DeferredShapeSpecList>> t;
1578WRAPPER_CLASS(PointerStmt, std::list<PointerDecl>);
1581WRAPPER_CLASS(ProtectedStmt, std::list<Name>);
1587 ENUM_CLASS(Kind, Entity, Common)
1588 std::tuple<Kind, Name> t;
1592WRAPPER_CLASS(SaveStmt, std::list<SavedEntity>);
1595WRAPPER_CLASS(TargetStmt, std::list<ObjectDecl>);
1598WRAPPER_CLASS(ValueStmt, std::list<Name>);
1601WRAPPER_CLASS(VolatileStmt, std::list<ObjectName>);
1606 std::tuple<Location, std::optional<Location>> t;
1612 std::tuple<DeclarationTypeSpec, std::list<LetterSpec>> t;
1621 ENUM_CLASS(ImplicitNoneNameSpec, External, Type)
1622 std::variant<std::list<ImplicitSpec>, std::list<ImplicitNoneNameSpec>> u;
1628 std::tuple<Name, std::optional<ArraySpec>> t;
1636 TUPLE_CLASS_BOILERPLATE(
Block);
1637 std::tuple<std::optional<Name>, std::list<CommonBlockObject>> t;
1640 CommonStmt(std::optional<Name> &&, std::list<CommonBlockObject> &&,
1641 std::list<Block> &&);
1642 std::list<Block> blocks;
1650WRAPPER_CLASS(EquivalenceStmt, std::list<std::list<EquivalenceObject>>);
1655 std::tuple<std::optional<ScalarIntExpr>, std::optional<ScalarIntExpr>> t;
1664 std::tuple<std::optional<Subscript>, std::optional<Subscript>,
1665 std::optional<Subscript>>
1673 std::variant<IntExpr, SubscriptTriplet> u;
1689 std::variant<Stat, TeamValue, Team_Number> u;
1696 std::tuple<std::list<Cosubscript>, std::list<ImageSelectorSpec>> t;
1701 UNION_CLASS_BOILERPLATE(
Expr);
1705 using IntrinsicUnary::IntrinsicUnary;
1708 using IntrinsicUnary::IntrinsicUnary;
1711 using IntrinsicUnary::IntrinsicUnary;
1713 struct NOT :
public IntrinsicUnary {
1714 using IntrinsicUnary::IntrinsicUnary;
1721 std::tuple<DefinedOpName, common::Indirection<Expr>> t;
1729 using IntrinsicBinary::IntrinsicBinary;
1732 using IntrinsicBinary::IntrinsicBinary;
1735 using IntrinsicBinary::IntrinsicBinary;
1738 using IntrinsicBinary::IntrinsicBinary;
1741 using IntrinsicBinary::IntrinsicBinary;
1744 using IntrinsicBinary::IntrinsicBinary;
1747 using IntrinsicBinary::IntrinsicBinary;
1750 using IntrinsicBinary::IntrinsicBinary;
1753 using IntrinsicBinary::IntrinsicBinary;
1756 using IntrinsicBinary::IntrinsicBinary;
1759 using IntrinsicBinary::IntrinsicBinary;
1762 using IntrinsicBinary::IntrinsicBinary;
1765 using IntrinsicBinary::IntrinsicBinary;
1768 using IntrinsicBinary::IntrinsicBinary;
1771 using IntrinsicBinary::IntrinsicBinary;
1774 using IntrinsicBinary::IntrinsicBinary;
1779 using IntrinsicBinary::IntrinsicBinary;
1784 std::tuple<DefinedOpName, common::Indirection<Expr>,
1796 std::variant<common::Indirection<CharLiteralConstantSubstring>,
1800 Add,
Subtract,
Concat,
LT,
LE,
EQ,
NE,
GE,
GT,
AND,
OR,
EQV,
NEQV,
1808 PartRef(
Name &&n, std::list<SectionSubscript> &&ss,
1809 std::optional<ImageSelector> &&is)
1810 : name{std::move(n)}, subscripts(std::move(ss)),
1811 imageSelector{std::move(is)} {}
1813 std::list<SectionSubscript> subscripts;
1814 std::optional<ImageSelector> imageSelector;
1819 UNION_CLASS_BOILERPLATE(
DataRef);
1820 explicit DataRef(std::list<PartRef> &&);
1821 std::variant<Name, common::Indirection<StructureComponent>,
1837 std::tuple<DataRef, SubstringRange> t;
1842 std::tuple<CharLiteralConstant, SubstringRange> t;
1859 bool EndsInBareName()
const;
1861 std::variant<DataRef, Substring> u;
1869 std::variant<common::Indirection<Designator>,
1890 : base{std::move(dr)}, component(std::move(n)) {}
1905 : base{std::move(dr)}, imageSelector{std::move(is)} {}
1914 : base{std::move(dr)}, subscripts(std::move(ss)) {}
1919 std::list<SectionSubscript> subscripts;
1926 std::variant<Name, StructureComponent> u;
1937 std::tuple<std::optional<BoundExpr>,
BoundExpr> t;
1946 std::tuple<std::list<AllocateCoshapeSpec>, std::optional<BoundExpr>> t;
1954 std::tuple<AllocateObject, std::list<AllocateShapeSpec>,
1955 std::optional<AllocateCoarraySpec>>
1970 std::variant<StatVariable, MsgVariable> u;
1985 std::variant<Mold, Source, StatOrErrmsg, Stream, Pinned> u;
1992 std::tuple<std::optional<TypeSpec>, std::list<Allocation>,
1993 std::list<AllocOpt>>
2002 std::variant<Name, StructureComponent> u;
2006WRAPPER_CLASS(NullifyStmt, std::list<PointerObject>);
2012 std::tuple<std::list<AllocateObject>, std::list<StatOrErrmsg>> t;
2021 std::tuple<Variable, Expr> t;
2030 std::tuple<BoundExpr, BoundExpr> t;
2042 UNION_CLASS_BOILERPLATE(
Bounds);
2043 std::variant<std::list<BoundsRemapping>, std::list<BoundsSpec>> u;
2047 std::tuple<DataRef, Bounds, Expr> t;
2055 std::tuple<LogicalExpr, AssignmentStmt> t;
2077 std::tuple<LogicalExpr, std::optional<Name>> t;
2081WRAPPER_CLASS(ElsewhereStmt, std::optional<Name>);
2084WRAPPER_CLASS(EndWhereStmt, std::optional<Name>);
2093 std::tuple<Statement<MaskedElsewhereStmt>, std::list<WhereBodyConstruct>> t;
2097 std::tuple<Statement<ElsewhereStmt>, std::list<WhereBodyConstruct>> t;
2100 std::tuple<Statement<WhereConstructStmt>, std::list<WhereBodyConstruct>,
2101 std::list<MaskedElsewhere>, std::optional<Elsewhere>,
2116 std::variant<AssignmentStmt, PointerAssignmentStmt> u;
2122 std::tuple<common::Indirection<ConcurrentHeader>,
2139WRAPPER_CLASS(EndForallStmt, std::optional<Name>);
2145 std::tuple<Statement<ForallConstructStmt>, std::list<ForallBodyConstruct>,
2153 std::variant<Expr, Variable> u;
2159 std::tuple<Name, Selector> t;
2166 std::tuple<std::optional<Name>, std::list<Association>> t;
2170WRAPPER_CLASS(EndAssociateStmt, std::optional<Name>);
2179WRAPPER_CLASS(BlockStmt, std::optional<Name>);
2182WRAPPER_CLASS(EndBlockStmt, std::optional<Name>);
2197 std::tuple<Statement<BlockStmt>, BlockSpecificationPart, Block,
2205 std::tuple<CodimensionDecl, Selector> t;
2213 std::tuple<std::optional<Name>, TeamValue, std::list<CoarrayAssociation>,
2214 std::list<StatOrErrmsg>>
2222 std::tuple<std::list<StatOrErrmsg>, std::optional<Name>> t;
2235 std::tuple<std::optional<Name>, std::list<StatOrErrmsg>> t;
2239WRAPPER_CLASS(EndCriticalStmt, std::optional<Name>);
2253 std::tuple<Name, ScalarIntExpr, ScalarIntExpr, std::optional<ScalarIntExpr>>
2262 std::tuple<std::optional<IntegerTypeSpec>, std::list<ConcurrentControl>,
2263 std::optional<ScalarLogicalExpr>>
2274 Operator, Plus, Multiply, Max, Min, Iand, Ior, Ieor, And, Or, Eqv, Neqv)
2285 WRAPPER_CLASS(Local, std::list<Name>);
2286 WRAPPER_CLASS(LocalInit, std::list<Name>);
2288 TUPLE_CLASS_BOILERPLATE(
Reduce);
2290 std::tuple<Operator, std::list<Name>> t;
2292 WRAPPER_CLASS(Shared, std::list<Name>);
2293 EMPTY_CLASS(DefaultNone);
2294 std::variant<Local, LocalInit, Reduce, Shared, DefaultNone> u;
2307 std::tuple<ConcurrentHeader, std::list<LocalitySpec>> t;
2310 std::variant<Bounds, ScalarLogicalExpr, Concurrent> u;
2317 std::tuple<Label, std::optional<LoopControl>> t;
2323 std::tuple<std::optional<Name>, std::optional<Label>,
2324 std::optional<LoopControl>>
2329WRAPPER_CLASS(EndDoStmt, std::optional<Name>);
2340 const std::optional<LoopControl> &GetLoopControl()
const;
2341 bool IsDoNormal()
const;
2342 bool IsDoWhile()
const;
2343 bool IsDoConcurrent()
const;
2348WRAPPER_CLASS(CycleStmt, std::optional<Name>);
2360 std::tuple<ScalarLogicalExpr, std::optional<Name>> t;
2364WRAPPER_CLASS(ElseStmt, std::optional<Name>);
2367WRAPPER_CLASS(EndIfStmt, std::optional<Name>);
2375 std::tuple<Statement<ElseIfStmt>, Block> t;
2379 std::tuple<Statement<ElseStmt>, Block> t;
2382 std::tuple<Statement<IfThenStmt>, Block, std::list<ElseIfBlock>,
2389 TUPLE_CLASS_BOILERPLATE(
IfStmt);
2390 std::tuple<ScalarLogicalExpr, UnlabeledStatement<ActionStmt>> t;
2409 Range(std::optional<CaseValue> &&l, std::optional<CaseValue> &&u)
2410 : lower{std::move(l)}, upper{std::move(u)} {}
2411 std::optional<CaseValue> lower, upper;
2413 std::variant<CaseValue, Range> u;
2417EMPTY_CLASS(Default);
2421 std::variant<std::list<CaseValueRange>, Default> u;
2427 std::tuple<CaseSelector, std::optional<Name>> t;
2433WRAPPER_CLASS(EndSelectStmt, std::optional<Name>);
2439 TUPLE_CLASS_BOILERPLATE(
Case);
2440 std::tuple<Statement<CaseStmt>, Block> t;
2443 std::tuple<Statement<SelectCaseStmt>, std::list<Case>,
2453 std::tuple<std::optional<Name>, std::optional<Name>,
Selector> t;
2462 UNION_CLASS_BOILERPLATE(
Rank);
2463 std::variant<ScalarIntConstantExpr, Star, Default> u;
2466 std::tuple<Rank, std::optional<Name>> t;
2476 std::tuple<Statement<SelectRankCaseStmt>, Block> t;
2478 std::tuple<Statement<SelectRankStmt>, std::list<RankCase>,
2488 std::tuple<std::optional<Name>, std::optional<Name>,
Selector> t;
2497 UNION_CLASS_BOILERPLATE(
Guard);
2498 std::variant<TypeSpec, DerivedTypeSpec, Default> u;
2501 std::tuple<Guard, std::optional<Name>> t;
2510 std::tuple<Statement<TypeGuardStmt>, Block> t;
2512 std::tuple<Statement<SelectTypeStmt>, std::list<TypeCase>,
2518WRAPPER_CLASS(ExitStmt, std::optional<Name>);
2521WRAPPER_CLASS(GotoStmt, Label);
2539 ENUM_CLASS(Kind, Stop, ErrorStop)
2541 std::tuple<Kind, std::optional<StopCode>, std::optional<ScalarLogicalExpr>> t;
2548 std::tuple<Scalar<Variable>, std::list<EventWaitSpec>> t;
2552WRAPPER_CLASS(SyncAllStmt, std::list<StatOrErrmsg>);
2559 std::variant<IntExpr, Star> u;
2562 std::tuple<ImageSet, std::list<StatOrErrmsg>> t;
2566WRAPPER_CLASS(SyncMemoryStmt, std::list<StatOrErrmsg>);
2571 std::tuple<TeamValue, std::list<StatOrErrmsg>> t;
2580 std::tuple<EventVariable, std::list<StatOrErrmsg>> t;
2586 std::variant<ScalarIntExpr, StatOrErrmsg> u;
2594 std::tuple<EventVariable, std::list<EventWaitSpec>> t;
2607 std::variant<ScalarIntExpr, StatOrErrmsg> u;
2610 std::tuple<ScalarIntExpr, TeamVariable, std::list<FormTeamSpec>> t;
2621 std::variant<Scalar<Logical<Variable>>,
StatOrErrmsg> u;
2624 std::tuple<LockVariable, std::list<LockStat>> t;
2630 std::tuple<LockVariable, std::list<StatOrErrmsg>> t;
2644 UNION_CLASS_BOILERPLATE(
IoUnit);
2645 std::variant<Variable, FileUnitNumber, Star> u;
2669WRAPPER_CLASS(ErrLabel, Label);
2674 ENUM_CLASS(Kind, Access, Action, Asynchronous, Blank, Decimal, Delim,
2675 Encoding, Form, Pad, Position, Round, Sign,
2676 Carriagecontrol, Convert, Dispose)
2678 std::tuple<Kind, ScalarDefaultCharExpr> t;
2683 StatVariable, Recl, Newunit, ErrLabel, StatusExpr>
2688WRAPPER_CLASS(OpenStmt, std::list<ConnectSpec>);
2698 std::variant<FileUnitNumber, StatVariable, MsgVariable, ErrLabel,
2702 WRAPPER_CLASS_BOILERPLATE(
CloseStmt, std::list<CloseSpec>);
2708 UNION_CLASS_BOILERPLATE(
Format);
2709 std::variant<Expr, Label, Star> u;
2727WRAPPER_CLASS(EndLabel, Label);
2728WRAPPER_CLASS(EorLabel, Label);
2732 ENUM_CLASS(Kind, Advance, Blank, Decimal, Delim, Pad, Round, Sign)
2734 std::tuple<Kind, ScalarDefaultCharExpr> t;
2741 ErrLabel, IdVariable, MsgVariable, StatVariable, Pos, Rec, Size>
2748 std::variant<Variable, common::Indirection<InputImpliedDo>> u;
2756 ReadStmt(std::optional<IoUnit> &&i, std::optional<Format> &&f,
2757 std::list<IoControlSpec> &&cs, std::list<InputItem> &&its)
2758 : iounit{std::move(i)}, format{std::move(f)}, controls(std::move(cs)),
2759 items(std::move(its)) {}
2760 std::optional<IoUnit> iounit;
2762 std::optional<Format> format;
2765 std::list<IoControlSpec> controls;
2766 std::list<InputItem> items;
2772 std::variant<Expr, common::Indirection<OutputImpliedDo>> u;
2778 WriteStmt(std::optional<IoUnit> &&i, std::optional<Format> &&f,
2779 std::list<IoControlSpec> &&cs, std::list<OutputItem> &&its)
2780 : iounit{std::move(i)}, format{std::move(f)}, controls(std::move(cs)),
2781 items(std::move(its)) {}
2782 std::optional<IoUnit> iounit;
2784 std::optional<Format> format;
2786 std::list<IoControlSpec> controls;
2787 std::list<OutputItem> items;
2793 std::tuple<Format, std::list<OutputItem>> t;
2819 std::variant<FileUnitNumber, EndLabel, EorLabel, ErrLabel, IdExpr,
2820 MsgVariable, StatVariable>
2825WRAPPER_CLASS(WaitStmt, std::list<WaitSpec>);
2835 std::variant<FileUnitNumber, MsgVariable, StatVariable, ErrLabel> u;
2840WRAPPER_CLASS(BackspaceStmt, std::list<PositionOrFlushSpec>);
2844WRAPPER_CLASS(EndfileStmt, std::list<PositionOrFlushSpec>);
2847WRAPPER_CLASS(RewindStmt, std::list<PositionOrFlushSpec>);
2850WRAPPER_CLASS(FlushStmt, std::list<PositionOrFlushSpec>);
2890 ENUM_CLASS(Kind, Access, Action, Asynchronous, Blank, Decimal, Delim,
2891 Direct, Encoding, Form, Formatted, Iomsg,
Name, Pad, Position, Read,
2892 Readwrite, Round, Sequential, Sign, Stream, Status, Unformatted, Write,
2893 Carriagecontrol, Convert, Dispose)
2894 TUPLE_CLASS_BOILERPLATE(
CharVar);
2895 std::tuple<Kind, ScalarDefaultCharVariable> t;
2898 ENUM_CLASS(Kind, Iostat, Nextrec, Number, Pos, Recl, Size)
2899 TUPLE_CLASS_BOILERPLATE(
IntVar);
2900 std::tuple<Kind, ScalarIntVariable> t;
2903 ENUM_CLASS(Kind, Exist, Named, Opened, Pending)
2904 TUPLE_CLASS_BOILERPLATE(
LogVar);
2905 std::tuple<Kind, Scalar<Logical<Variable>>> t;
2919 std::tuple<ScalarIntVariable, std::list<OutputItem>> t;
2921 std::variant<std::list<InquireSpec>,
Iolength> u;
2928WRAPPER_CLASS(ProgramStmt,
Name);
2931WRAPPER_CLASS(EndProgramStmt, std::optional<Name>);
2939 ExecutionPart, std::optional<InternalSubprogramPart>,
2945WRAPPER_CLASS(ModuleStmt,
Name);
2952 std::variant<common::Indirection<FunctionSubprogram>,
2962 std::tuple<Statement<ContainsStmt>, std::list<ModuleSubprogram>> t;
2966WRAPPER_CLASS(EndModuleStmt, std::optional<Name>);
2972 TUPLE_CLASS_BOILERPLATE(
Module);
2983 UNION_CLASS_BOILERPLATE(
Rename);
2985 TUPLE_CLASS_BOILERPLATE(
Names);
2986 std::tuple<Name, Name> t;
2990 std::tuple<DefinedOpName, DefinedOpName> t;
2992 std::variant<Names, Operators> u;
2998 std::tuple<Name, std::optional<Name>> t;
3004 std::tuple<ParentIdentifier, Name> t;
3008WRAPPER_CLASS(EndSubmoduleStmt, std::optional<Name>);
3021WRAPPER_CLASS(BlockDataStmt, std::optional<Name>);
3024WRAPPER_CLASS(EndBlockDataStmt, std::optional<Name>);
3042 EMPTY_CLASS(Assignment);
3043 EMPTY_CLASS(ReadFormatted);
3044 EMPTY_CLASS(ReadUnformatted);
3045 EMPTY_CLASS(WriteFormatted);
3046 EMPTY_CLASS(WriteUnformatted);
3049 ReadUnformatted, WriteFormatted, WriteUnformatted>
3057 std::tuple<std::optional<AccessSpec>,
GenericSpec, std::list<Name>> t;
3066 std::variant<std::optional<GenericSpec>, Abstract> u;
3072 UNION_CLASS_BOILERPLATE(
Only);
3073 std::variant<common::Indirection<GenericSpec>,
Name,
Rename> u;
3082 ENUM_CLASS(ModuleNature, Intrinsic, Non_Intrinsic)
3083 template <
typename A>
3084 UseStmt(std::optional<ModuleNature> &&nat,
Name &&n, std::list<A> &&x)
3085 : nature(std::move(nat)), moduleName(std::move(n)), u(std::move(x)) {}
3086 std::optional<ModuleNature> nature;
3088 std::variant<std::list<Rename>, std::list<Only>> u;
3106 std::tuple<std::optional<ProcInterface>, std::list<ProcAttrSpec>,
3107 std::list<ProcDecl>>
3118 EMPTY_CLASS(Elemental);
3119 EMPTY_CLASS(Impure);
3121 EMPTY_CLASS(Non_Recursive);
3123 EMPTY_CLASS(Recursive);
3124 WRAPPER_CLASS(Attributes, std::list<common::CUDASubprogramAttrs>);
3125 WRAPPER_CLASS(Launch_Bounds, std::list<ScalarIntConstantExpr>);
3126 WRAPPER_CLASS(Cluster_Dims, std::list<ScalarIntConstantExpr>);
3128 Pure, Recursive, Attributes, Launch_Bounds, Cluster_Dims>
3138 : binding(std::move(lbs)), resultName(std::move(rn)) {}
3139 Suffix(
Name &&rn, std::optional<LanguageBindingSpec> &&lbs)
3140 : binding(std::move(lbs)), resultName(std::move(rn)) {}
3141 std::optional<LanguageBindingSpec> binding;
3142 std::optional<Name> resultName;
3151 std::tuple<std::list<PrefixSpec>,
Name, std::list<Name>,
3152 std::optional<Suffix>>
3157WRAPPER_CLASS(EndFunctionStmt, std::optional<Name>);
3162 std::variant<Name, Star> u;
3170 std::tuple<std::list<PrefixSpec>,
Name, std::list<DummyArg>,
3171 std::optional<LanguageBindingSpec>>
3176WRAPPER_CLASS(EndSubroutineStmt, std::optional<Name>);
3191 std::tuple<Statement<SubroutineStmt>,
3195 std::variant<Function, Subroutine> u;
3200 ENUM_CLASS(Kind, ModuleProcedure, Procedure)
3202 std::tuple<Kind, std::list<Name>> t;
3208 std::variant<InterfaceBody, Statement<ProcedureStmt>> u;
3212WRAPPER_CLASS(EndInterfaceStmt, std::optional<GenericSpec>);
3218 std::tuple<Statement<InterfaceStmt>, std::list<InterfaceSpecification>,
3224WRAPPER_CLASS(ExternalStmt, std::list<Name>);
3227WRAPPER_CLASS(IntrinsicStmt, std::list<Name>);
3233 std::variant<Name, ProcComponentRef> u;
3237WRAPPER_CLASS(AltReturnSpec, Label);
3243 WRAPPER_CLASS(PercentRef,
Expr);
3244 WRAPPER_CLASS(PercentVal,
Expr);
3247 std::variant<common::Indirection<Expr>, AltReturnSpec, PercentRef, PercentVal>
3254 std::tuple<std::optional<Keyword>,
ActualArg> t;
3260 TUPLE_CLASS_BOILERPLATE(
Call);
3261 std::tuple<ProcedureDesignator, std::list<ActualArgSpec>> t;
3278 WRAPPER_CLASS(StarOrExpr, std::optional<ScalarExpr>);
3281 std::tuple<StarOrExpr, ScalarExpr, std::optional<ScalarIntExpr>,
3282 std::optional<ScalarIntExpr>>
3286 std::list<ActualArgSpec> &&args)
3287 : call{std::move(pd), std::move(args)}, chevrons{std::move(ch)} {}
3289 std::optional<Chevrons> chevrons;
3316WRAPPER_CLASS(MpSubprogramStmt,
Name);
3319WRAPPER_CLASS(EndMpSubprogramStmt, std::optional<Name>);
3334 std::tuple<Name, std::list<DummyArg>, std::optional<Suffix>> t;
3338WRAPPER_CLASS(ReturnStmt, std::optional<ScalarIntExpr>);
3357 std::tuple<std::optional<std::list<const char *>>,
Name> t;
3360 WRAPPER_CLASS_BOILERPLATE(
LoopCount, std::list<std::uint64_t>);
3364 std::tuple<common::Indirection<Designator>, uint64_t> t;
3366 EMPTY_CLASS(VectorAlways);
3369 std::tuple<Name, std::optional<std::uint64_t>> t;
3371 EMPTY_CLASS(Unrecognized);
3373 std::variant<std::list<IgnoreTKR>,
LoopCount, std::list<AssumeAligned>,
3374 VectorAlways, std::list<NameValue>, Unrecognized>
3381 std::tuple<common::CUDADataAttr, std::list<Name>> t;
3387 std::tuple<ObjectName, ObjectName, std::optional<ArraySpec>> t;
3389WRAPPER_CLASS(BasedPointerStmt, std::list<BasedPointer>);
3396 std::variant<Statement<DataComponentDefStmt>,
3402 EMPTY_CLASS(MapStmt);
3403 EMPTY_CLASS(EndMapStmt);
3404 TUPLE_CLASS_BOILERPLATE(
Map);
3405 std::tuple<Statement<MapStmt>, std::list<StructureField>,
3411 EMPTY_CLASS(UnionStmt);
3412 EMPTY_CLASS(EndUnionStmt);
3413 TUPLE_CLASS_BOILERPLATE(
Union);
3419 std::tuple<std::optional<Name>, std::list<EntityDecl>> t;
3423 EMPTY_CLASS(EndStructureStmt);
3425 std::tuple<Statement<StructureStmt>, std::list<StructureField>,
3432WRAPPER_CLASS(OldParameterStmt, std::list<NamedConstantDef>);
3437 std::tuple<Expr, Label, Label, Label> t;
3442 std::tuple<Label, Name> t;
3447 std::tuple<Name, std::list<Label>> t;
3450WRAPPER_CLASS(PauseStmt, std::optional<StopCode>);
3468WRAPPER_CLASS(OmpObjectList, std::list<OmpObject>);
3470#define MODIFIER_BOILERPLATE(...) \
3472 using Variant = std::variant<__VA_ARGS__>; \
3473 UNION_CLASS_BOILERPLATE(Modifier); \
3478#define MODIFIERS() std::optional<std::list<Modifier>>
3480inline namespace traits {
3537 using ExtensionList = std::list<ExtensionValue>;
3538 std::tuple<OmpTraitPropertyName, ExtensionList> t;
3554 std::variant<OmpTraitPropertyName, common::Indirection<OmpClause>,
3580 ENUM_CLASS(Value, Arch, Atomic_Default_Mem_Order, Condition, Device_Num,
3581 Extension, Isa, Kind, Requires, Simd, Uid, Vendor)
3582 std::variant<Value, llvm::omp::Directive> u;
3593 std::tuple<std::optional<OmpTraitScore>, std::list<OmpTraitProperty>> t;
3595 std::tuple<OmpTraitSelectorName, std::optional<Properties>> t;
3603 ENUM_CLASS(Value, Construct, Device, Implementation, Target_Device, User)
3612 std::tuple<OmpTraitSetSelectorName, std::list<OmpTraitSelector>> t;
3619 WRAPPER_CLASS_BOILERPLATE(
3624inline namespace modifier {
3670 ENUM_CLASS(Value, Simd)
3684 std::tuple<TypeDeclarationStmt, SubscriptTriplet> t;
3704 ENUM_CLASS(Value, Sink, Source);
3713 ENUM_CLASS(Value, Ancestor, Device_Num)
3745 ENUM_CLASS(Value, Present);
3754 WRAPPER_CLASS_BOILERPLATE(
OmpIterator, std::list<OmpIteratorSpecifier>);
3762 ENUM_CLASS(Value, Conditional)
3771 ENUM_CLASS(Value, Ref, Uval, Val);
3788 ENUM_CLASS(Value, Alloc, Delete, From, Release, To, Tofrom);
3789 WRAPPER_CLASS_BOILERPLATE(
OmpMapType, Value);
3799 ENUM_CLASS(Value, Always, Close, Present, Ompx_Hold)
3814 ENUM_CLASS(Value, Monotonic, Nonmonotonic, Simd)
3823 ENUM_CLASS(Value, Reproducible, Unconstrained)
3832 ENUM_CLASS(Value, Strict)
3845 std::variant<DefinedOperator, ProcedureDesignator> u;
3853 ENUM_CLASS(Value, Default, Inscan, Task);
3880 ENUM_CLASS(Value, In, Out, Inout, Inoutset, Mutexinoutset, Depobj)
3891 ENUM_CLASS(Value, Aggregate, All, Allocatable, Pointer,
Scalar)
3910 std::tuple<MODIFIERS(), OmpObjectList> t;
3925 std::tuple<OmpObjectList, MODIFIERS()> t;
3941 std::tuple<MODIFIERS(), OmpObjectList> t;
3947 ENUM_CLASS(ActionTime, Compilation, Execution);
3948 WRAPPER_CLASS_BOILERPLATE(
OmpAtClause, ActionTime);
3959 using MemoryOrder = common::OmpAtomicDefaultMemOrderType;
3970 ENUM_CLASS(Binding, Parallel, Teams, Thread)
3982 ENUM_CLASS(DataSharingAttribute, Private, Firstprivate, Shared, None)
3999 ImplicitBehavior, Alloc, To, From, Tofrom, Firstprivate, None, Default)
4001 std::tuple<ImplicitBehavior, MODIFIERS()> t;
4010 std::tuple<DefinedOperator, ScalarIntConstantExpr> t;
4019 std::tuple<Name, std::optional<OmpIterationOffset>> t;
4026WRAPPER_CLASS(OmpIterationVector, std::list<OmpIteration>);
4034 OmpDependenceType::Value GetDepType()
const;
4036 WRAPPER_CLASS(Sink, OmpIterationVector);
4037 EMPTY_CLASS(Source);
4039 std::variant<Sink, Source> u;
4054 OmpTaskDependenceType::Value GetTaskDepType()
const;
4055 TUPLE_CLASS_BOILERPLATE(
TaskDep);
4057 std::tuple<MODIFIERS(), OmpObjectList> t;
4059 std::variant<TaskDep, OmpDoacross> u;
4073WRAPPER_CLASS(OmpDestroyClause,
OmpObject);
4100 ENUM_CLASS(DeviceTypeDescription, Any, Host, Nohost)
4107 WRAPPER_CLASS_BOILERPLATE(
4123 std::tuple<MODIFIERS(), OmpObjectList,
bool> t;
4156 std::tuple<MODIFIERS(), OmpObjectList> t;
4167 std::tuple<MODIFIERS(), OmpObjectList> t;
4181 MODIFIER_BOILERPLATE(
4183 std::tuple<OmpObjectList, MODIFIERS(),
bool> t;
4198 std::tuple<MODIFIERS(), OmpObjectList,
bool> t;
4226 ENUM_CLASS(Ordering, Concurrent)
4228 std::tuple<MODIFIERS(), Ordering> t;
4239 ENUM_CLASS(AffinityPolicy, Close, Master, Spread, Primary)
4252 std::tuple<MODIFIERS(), OmpObjectList> t;
4265 ENUM_CLASS(Kind, Static, Dynamic, Guided, Auto, Runtime)
4267 std::tuple<MODIFIERS(), Kind, std::optional<ScalarIntExpr>> t;
4274 ENUM_CLASS(Severity, Fatal, Warning);
4285 std::tuple<MODIFIERS(), OmpObjectList> t;
4301 std::tuple<MODIFIERS(), OmpObjectList,
bool> t;
4313 std::variant<OmpDependenceType, OmpTaskDependenceType> u;
4319 llvm::omp::Clause Id()
const;
4321#define GEN_FLANG_CLAUSE_PARSER_CLASSES
4322#include "llvm/Frontend/OpenMP/OMP.inc"
4327#define GEN_FLANG_CLAUSE_PARSER_CLASSES_LIST
4328#include "llvm/Frontend/OpenMP/OMP.inc"
4334 WRAPPER_CLASS_BOILERPLATE(
OmpClauseList, std::list<OmpClause>);
4345 using EmptyTrait = std::true_type;
4355 std::tuple<Verbatim, OmpClauseList> t;
4361 std::variant<OmpErrorDirective, OmpNothingDirective> u;
4373 std::tuple<OmpSectionsDirective, OmpClauseList> t;
4378 std::tuple<OmpSectionsDirective, OmpClauseList> t;
4395WRAPPER_CLASS(OmpSectionBlocks, std::list<OpenMPConstruct>);
4425 std::variant<OmpDeclareTargetWithList, OmpDeclareTargetWithClause> u;
4431 std::tuple<Verbatim, OmpDeclareTargetSpecifier> t;
4444 std::tuple<Verbatim, OmpDeclareMapperSpecifier, OmpClauseList> t;
4451 WRAPPER_CLASS(FunctionCombiner,
Call);
4452 std::variant<AssignmentStmt, FunctionCombiner> u;
4455WRAPPER_CLASS(OmpReductionInitializerClause,
Expr);
4460 std::tuple<Verbatim, OmpReductionIdentifier, std::list<DeclarationTypeSpec>,
4477 std::tuple<Verbatim, OmpClauseList> t;
4484 std::tuple<Verbatim, OmpObjectList> t;
4491 std::tuple<Verbatim, OmpObjectList, OmpClauseList> t;
4513 std::tuple<Verbatim, std::optional<Name>> t;
4517 std::tuple<OmpCriticalDirective, Block, OmpEndCriticalDirective> t;
4527 std::tuple<Verbatim, std::optional<OmpObjectList>,
OmpClauseList,
4528 std::optional<std::list<OpenMPDeclarativeAllocate>>,
4533EMPTY_CLASS(OmpEndAllocators);
4542 std::tuple<Verbatim, OmpClauseList, Statement<AllocateStmt>,
4543 std::optional<OmpEndAllocators>>
4564 std::variant<OmpMemoryOrderClause, OmpFailClause, OmpClause> u;
4574EMPTY_CLASS(OmpEndAtomic);
4632 std::tuple<Verbatim, OmpAtomicClauseList, Statement<AssignmentStmt>,
4633 std::optional<OmpEndAtomic>>
4656 ENUM_CLASS(Type, Parallel, Sections, Do, Taskgroup)
4665 std::tuple<Verbatim, OmpCancelType> t;
4673 std::tuple<Verbatim, OmpCancelType, std::optional<If>> t;
4685 std::tuple<Verbatim, OmpObject, OmpClause> t;
4692 std::tuple<Verbatim, std::optional<std::list<OmpMemoryOrderClause>>,
4693 std::optional<OmpObjectList>>
4705 std::tuple<OmpSimpleStandaloneDirective, OmpClauseList> t;
4719 std::tuple<OmpLoopDirective, OmpClauseList> t;
4725 std::tuple<OmpLoopDirective, OmpClauseList> t;
4731 std::tuple<OmpBlockDirective, OmpClauseList> t;
4737 std::tuple<OmpBlockDirective, OmpClauseList> t;
4743 std::tuple<OmpBeginBlockDirective, Block, OmpEndBlockDirective> t;
4750 : t({std::move(a), std::nullopt, std::nullopt}) {}
4751 std::tuple<OmpBeginLoopDirective, std::optional<DoConstruct>,
4752 std::optional<OmpEndLoopDirective>>
4773WRAPPER_CLASS(AccObjectList, std::list<AccObject>);
4805 std::variant<Name, ScalarDefaultCharExpr> u;
4815 ENUM_CLASS(Modifier, ReadOnly, Zero)
4822 std::tuple<std::optional<AccDataModifier>, AccObjectList> t;
4827 std::tuple<ReductionOperator, AccObjectList> t;
4832 std::tuple<std::optional<ScalarIntExpr>, std::list<ScalarIntExpr>> t;
4836 WRAPPER_CLASS_BOILERPLATE(
4842 WRAPPER_CLASS_BOILERPLATE(
4849 std::tuple<std::optional<ScalarIntConstantExpr>> t;
4857 WRAPPER_CLASS_BOILERPLATE(
AccSizeExpr, std::optional<ScalarIntExpr>);
4866 std::variant<std::optional<ScalarLogicalExpr>, AccObjectList> u;
4876 std::variant<Num, Dim, Static> u;
4881 WRAPPER_CLASS_BOILERPLATE(
AccGangArgList, std::list<AccGangArg>);
4886 std::tuple<bool, ScalarIntConstantExpr> t;
4892#define GEN_FLANG_CLAUSE_PARSER_CLASSES
4893#include "llvm/Frontend/OpenACC/ACC.inc"
4898#define GEN_FLANG_CLAUSE_PARSER_CLASSES_LIST
4899#include "llvm/Frontend/OpenACC/ACC.inc"
4905 WRAPPER_CLASS_BOILERPLATE(
AccClauseList, std::list<AccClause>);
4918 std::tuple<Verbatim, AccObjectListWithModifier> t;
4924 std::tuple<Verbatim, std::optional<AccWaitArgument>,
AccClauseList> t;
4929 std::tuple<AccLoopDirective, AccClauseList> t;
4936 std::tuple<AccBlockDirective, AccClauseList> t;
4945EMPTY_CLASS(AccEndAtomic);
4950 std::tuple<Verbatim, Statement<AssignmentStmt>, std::optional<AccEndAtomic>>
4957 std::tuple<Verbatim, Statement<AssignmentStmt>, std::optional<AccEndAtomic>>
4965 std::optional<AccEndAtomic>>
4974 std::tuple<Verbatim, Stmt1, Stmt2, AccEndAtomic> t;
4979 std::variant<AccAtomicRead, AccAtomicWrite, AccAtomicCapture, AccAtomicUpdate>
4986 std::tuple<AccBeginBlockDirective, Block, AccEndBlockDirective> t;
4992 std::tuple<AccDeclarativeDirective, AccClauseList> t;
4998 std::tuple<AccCombinedDirective, AccClauseList> t;
5010 : t({std::move(a), std::nullopt, std::nullopt}) {}
5011 std::tuple<AccBeginCombinedDirective, std::optional<DoConstruct>,
5012 std::optional<AccEndCombinedDirective>>
5019 std::variant<OpenACCStandaloneDeclarativeConstruct, OpenACCRoutineConstruct>
5024EMPTY_CLASS(AccEndLoop);
5028 : t({std::move(a), std::nullopt, std::nullopt}) {}
5029 std::tuple<AccBeginLoopDirective, std::optional<DoConstruct>,
5030 std::optional<AccEndLoop>>
5042 std::tuple<AccStandaloneDirective, AccClauseList> t;
5068 std::tuple<Operator, std::list<Scalar<Variable>>> t;
5073 WRAPPER_CLASS(StarOrExpr, std::optional<ScalarIntExpr>);
5076 std::tuple<std::list<StarOrExpr>, std::list<StarOrExpr>,
5077 std::optional<ScalarIntExpr>>
5083 std::tuple<std::optional<ScalarIntConstantExpr>,
5084 std::optional<LaunchConfiguration>, std::list<CUFReduction>>
5087 std::tuple<Directive, std::optional<DoConstruct>> t;
Definition: indirection.h:31
Definition: char-block.h:28
Definition: check-expression.h:19
Definition: parse-tree.h:1303
Definition: parse-tree.h:1310
Definition: parse-tree.h:1269
Definition: parse-tree.h:1258
Definition: parse-tree.h:1257
Definition: parse-tree.h:4970
Definition: parse-tree.h:4948
Definition: parse-tree.h:4962
Definition: parse-tree.h:4955
Definition: parse-tree.h:4933
Definition: parse-tree.h:4995
Definition: parse-tree.h:4927
Definition: parse-tree.h:4803
Definition: parse-tree.h:4776
Definition: parse-tree.h:4904
Definition: parse-tree.h:4889
Definition: parse-tree.h:4884
Definition: parse-tree.h:4792
Definition: parse-tree.h:4814
Definition: parse-tree.h:4797
Definition: parse-tree.h:4809
Definition: parse-tree.h:4841
Definition: parse-tree.h:4835
Definition: parse-tree.h:4939
Definition: parse-tree.h:5001
Definition: parse-tree.h:4880
Definition: parse-tree.h:4871
Definition: parse-tree.h:4781
Definition: parse-tree.h:4820
Definition: parse-tree.h:4825
Definition: parse-tree.h:4768
Definition: parse-tree.h:4864
Definition: parse-tree.h:4860
Definition: parse-tree.h:4856
Definition: parse-tree.h:4786
Definition: parse-tree.h:4852
Definition: parse-tree.h:4846
Definition: parse-tree.h:4830
Definition: parse-tree.h:909
Definition: parse-tree.h:1427
Definition: parse-tree.h:490
Definition: parse-tree.h:3252
Definition: parse-tree.h:3242
Definition: parse-tree.h:1979
Definition: parse-tree.h:1944
Definition: parse-tree.h:1923
Definition: parse-tree.h:1935
Definition: parse-tree.h:1990
Definition: parse-tree.h:1952
Definition: parse-tree.h:3435
Definition: parse-tree.h:1911
Definition: parse-tree.h:1358
Definition: parse-tree.h:3440
Definition: parse-tree.h:3445
Definition: parse-tree.h:2016
Definition: parse-tree.h:2173
Definition: parse-tree.h:2164
Definition: parse-tree.h:2157
Definition: parse-tree.h:1340
Definition: parse-tree.h:1388
Definition: parse-tree.h:3385
Definition: parse-tree.h:1127
Definition: parse-tree.h:1449
Definition: parse-tree.h:1456
Definition: parse-tree.h:2195
Definition: parse-tree.h:3027
Definition: parse-tree.h:2028
Definition: parse-tree.h:3379
Definition: parse-tree.h:5080
Definition: parse-tree.h:5074
Definition: parse-tree.h:5071
Definition: parse-tree.h:5065
Definition: parse-tree.h:3279
Definition: parse-tree.h:3276
Definition: parse-tree.h:3259
Definition: parse-tree.h:2438
Definition: parse-tree.h:2437
Definition: parse-tree.h:2419
Definition: parse-tree.h:2425
Definition: parse-tree.h:2407
Definition: parse-tree.h:2405
Definition: parse-tree.h:2226
Definition: parse-tree.h:2211
Definition: parse-tree.h:663
Definition: parse-tree.h:1840
Definition: parse-tree.h:868
Definition: parse-tree.h:681
Definition: parse-tree.h:679
Definition: parse-tree.h:2696
Definition: parse-tree.h:2695
Definition: parse-tree.h:2203
Definition: parse-tree.h:984
Definition: parse-tree.h:1462
Definition: parse-tree.h:1902
Definition: parse-tree.h:1626
Definition: parse-tree.h:1635
Definition: parse-tree.h:1634
Definition: parse-tree.h:3362
Definition: parse-tree.h:3355
Definition: parse-tree.h:3359
Definition: parse-tree.h:3367
Definition: parse-tree.h:3353
Definition: parse-tree.h:854
Definition: parse-tree.h:846
Definition: parse-tree.h:995
Definition: parse-tree.h:1008
Definition: parse-tree.h:1039
Definition: parse-tree.h:1116
Definition: parse-tree.h:1061
Definition: parse-tree.h:1220
Definition: parse-tree.h:2524
Definition: parse-tree.h:2251
Definition: parse-tree.h:2673
Definition: parse-tree.h:2671
Definition: parse-tree.h:300
Definition: parse-tree.h:2242
Definition: parse-tree.h:2233
Definition: parse-tree.h:1069
Definition: parse-tree.h:1516
Definition: parse-tree.h:1528
Definition: parse-tree.h:1818
Definition: parse-tree.h:1487
Definition: parse-tree.h:1536
Definition: parse-tree.h:1502
Definition: parse-tree.h:1542
Definition: parse-tree.h:1508
Definition: parse-tree.h:2010
Definition: parse-tree.h:431
Definition: parse-tree.h:775
Definition: parse-tree.h:770
Definition: parse-tree.h:768
Definition: parse-tree.h:324
Definition: parse-tree.h:605
Definition: parse-tree.h:1205
Definition: parse-tree.h:750
Definition: parse-tree.h:926
Definition: parse-tree.h:1857
Definition: parse-tree.h:1554
Definition: parse-tree.h:1553
Definition: parse-tree.h:2338
Definition: parse-tree.h:3160
Definition: parse-tree.h:2358
Definition: parse-tree.h:2220
Definition: parse-tree.h:1403
Definition: parse-tree.h:3332
Definition: parse-tree.h:1249
Definition: parse-tree.h:1235
Definition: parse-tree.h:2578
Definition: parse-tree.h:2584
Definition: parse-tree.h:2592
Definition: parse-tree.h:523
Definition: parse-tree.h:547
Definition: parse-tree.h:978
Definition: parse-tree.h:965
Definition: parse-tree.h:1764
Definition: parse-tree.h:1737
Definition: parse-tree.h:1778
Definition: parse-tree.h:1743
Definition: parse-tree.h:1782
Definition: parse-tree.h:1719
Definition: parse-tree.h:1734
Definition: parse-tree.h:1770
Definition: parse-tree.h:1752
Definition: parse-tree.h:1758
Definition: parse-tree.h:1761
Definition: parse-tree.h:1724
Definition: parse-tree.h:1749
Definition: parse-tree.h:1746
Definition: parse-tree.h:1731
Definition: parse-tree.h:1773
Definition: parse-tree.h:1755
Definition: parse-tree.h:1713
Definition: parse-tree.h:1710
Definition: parse-tree.h:1767
Definition: parse-tree.h:1704
Definition: parse-tree.h:1728
Definition: parse-tree.h:1740
Definition: parse-tree.h:1707
Definition: parse-tree.h:1700
Definition: parse-tree.h:1055
Definition: parse-tree.h:2114
Definition: parse-tree.h:2130
Definition: parse-tree.h:2108
Definition: parse-tree.h:2143
Definition: parse-tree.h:2120
Definition: parse-tree.h:3264
Definition: parse-tree.h:3149
Definition: parse-tree.h:3298
Definition: parse-tree.h:3040
Definition: parse-tree.h:3055
Definition: parse-tree.h:875
Definition: parse-tree.h:2377
Definition: parse-tree.h:2373
Definition: parse-tree.h:2372
Definition: parse-tree.h:2388
Definition: parse-tree.h:2351
Definition: parse-tree.h:1685
Definition: parse-tree.h:1694
Definition: parse-tree.h:413
Definition: parse-tree.h:1610
Definition: parse-tree.h:1619
Definition: parse-tree.h:618
Definition: parse-tree.h:1026
Definition: parse-tree.h:2889
Definition: parse-tree.h:2897
Definition: parse-tree.h:2902
Definition: parse-tree.h:2887
Definition: parse-tree.h:2917
Definition: parse-tree.h:2915
Definition: parse-tree.h:802
Definition: parse-tree.h:308
Definition: parse-tree.h:1366
Definition: parse-tree.h:1562
Definition: parse-tree.h:3216
Definition: parse-tree.h:3183
Definition: parse-tree.h:3189
Definition: parse-tree.h:3181
Definition: parse-tree.h:3206
Definition: parse-tree.h:3061
Definition: parse-tree.h:469
Definition: parse-tree.h:457
Definition: parse-tree.h:713
Definition: parse-tree.h:708
Definition: parse-tree.h:718
Definition: parse-tree.h:702
Definition: parse-tree.h:700
Definition: parse-tree.h:2731
Definition: parse-tree.h:2729
Definition: parse-tree.h:2643
Definition: parse-tree.h:789
Definition: parse-tree.h:651
Definition: parse-tree.h:2315
Definition: parse-tree.h:1319
Definition: parse-tree.h:669
Definition: parse-tree.h:1604
Definition: parse-tree.h:900
Definition: parse-tree.h:2287
Definition: parse-tree.h:2283
Definition: parse-tree.h:2619
Definition: parse-tree.h:2618
Definition: parse-tree.h:882
Definition: parse-tree.h:316
Definition: parse-tree.h:1284
Definition: parse-tree.h:2305
Definition: parse-tree.h:2303
Definition: parse-tree.h:2936
Definition: parse-tree.h:3401
Definition: parse-tree.h:2075
Definition: parse-tree.h:2960
Definition: parse-tree.h:2950
Definition: parse-tree.h:2971
Definition: parse-tree.h:580
Definition: parse-tree.h:1325
Definition: parse-tree.h:632
Definition: parse-tree.h:631
Definition: parse-tree.h:2321
Definition: parse-tree.h:2546
Definition: parse-tree.h:1436
Definition: parse-tree.h:3907
Definition: parse-tree.h:3914
Definition: parse-tree.h:3922
Definition: parse-tree.h:3937
Definition: parse-tree.h:3946
Definition: parse-tree.h:4604
Definition: parse-tree.h:4568
Definition: parse-tree.h:4561
Definition: parse-tree.h:4614
Definition: parse-tree.h:4620
Definition: parse-tree.h:3958
Definition: parse-tree.h:4577
Definition: parse-tree.h:4595
Definition: parse-tree.h:4586
Definition: parse-tree.h:4629
Definition: parse-tree.h:4729
Definition: parse-tree.h:4717
Definition: parse-tree.h:4371
Definition: parse-tree.h:3969
Definition: parse-tree.h:4405
Definition: parse-tree.h:4655
Definition: parse-tree.h:4333
Definition: parse-tree.h:4317
Definition: parse-tree.h:4505
Definition: parse-tree.h:4434
Definition: parse-tree.h:4423
Definition: parse-tree.h:4418
Definition: parse-tree.h:4413
Definition: parse-tree.h:3981
Definition: parse-tree.h:3996
Definition: parse-tree.h:4053
Definition: parse-tree.h:4051
Definition: parse-tree.h:4079
Definition: parse-tree.h:4089
Definition: parse-tree.h:4099
Definition: parse-tree.h:4033
Definition: parse-tree.h:4735
Definition: parse-tree.h:4510
Definition: parse-tree.h:4723
Definition: parse-tree.h:4376
Definition: parse-tree.h:4352
Definition: parse-tree.h:4106
Definition: parse-tree.h:4120
Definition: parse-tree.h:4131
Definition: parse-tree.h:4143
Definition: parse-tree.h:4153
Definition: parse-tree.h:4008
Definition: parse-tree.h:4017
Definition: parse-tree.h:4164
Definition: parse-tree.h:4179
Definition: parse-tree.h:4649
Definition: parse-tree.h:4195
Definition: parse-tree.h:4553
Definition: parse-tree.h:4204
Definition: parse-tree.h:4344
Definition: parse-tree.h:4213
Definition: parse-tree.h:3463
Definition: parse-tree.h:4224
Definition: parse-tree.h:4238
Definition: parse-tree.h:4249
Definition: parse-tree.h:4449
Definition: parse-tree.h:4263
Definition: parse-tree.h:4366
Definition: parse-tree.h:4273
Definition: parse-tree.h:4697
Definition: parse-tree.h:4282
Definition: parse-tree.h:4298
Definition: parse-tree.h:4310
Definition: parse-tree.h:3071
Definition: parse-tree.h:4977
Definition: parse-tree.h:4984
Definition: parse-tree.h:4915
Definition: parse-tree.h:5006
Definition: parse-tree.h:5045
Definition: parse-tree.h:5016
Definition: parse-tree.h:5034
Definition: parse-tree.h:5025
Definition: parse-tree.h:4909
Definition: parse-tree.h:5039
Definition: parse-tree.h:4989
Definition: parse-tree.h:4921
Definition: parse-tree.h:4539
Definition: parse-tree.h:4641
Definition: parse-tree.h:4741
Definition: parse-tree.h:4669
Definition: parse-tree.h:4662
Definition: parse-tree.h:4756
Definition: parse-tree.h:4515
Definition: parse-tree.h:4488
Definition: parse-tree.h:4494
Definition: parse-tree.h:4441
Definition: parse-tree.h:4457
Definition: parse-tree.h:4467
Definition: parse-tree.h:4428
Definition: parse-tree.h:4682
Definition: parse-tree.h:4524
Definition: parse-tree.h:4689
Definition: parse-tree.h:4747
Definition: parse-tree.h:4474
Definition: parse-tree.h:4387
Definition: parse-tree.h:4397
Definition: parse-tree.h:4702
Definition: parse-tree.h:4708
Definition: parse-tree.h:4481
Definition: parse-tree.h:4358
Definition: parse-tree.h:372
Definition: parse-tree.h:2807
Definition: parse-tree.h:2770
Definition: parse-tree.h:2996
Definition: parse-tree.h:1806
Definition: parse-tree.h:2041
Definition: parse-tree.h:2040
Definition: parse-tree.h:1572
Definition: parse-tree.h:1999
Definition: parse-tree.h:2833
Definition: parse-tree.h:3116
Definition: parse-tree.h:2791
Definition: parse-tree.h:939
Definition: parse-tree.h:3094
Definition: parse-tree.h:1080
Definition: parse-tree.h:1108
Definition: parse-tree.h:1897
Definition: parse-tree.h:1100
Definition: parse-tree.h:1094
Definition: parse-tree.h:1087
Definition: parse-tree.h:3104
Definition: parse-tree.h:3231
Definition: parse-tree.h:3199
Definition: parse-tree.h:564
Definition: parse-tree.h:2754
Definition: parse-tree.h:823
Definition: parse-tree.h:821
Definition: parse-tree.h:2272
Definition: parse-tree.h:2984
Definition: parse-tree.h:2988
Definition: parse-tree.h:2982
Definition: parse-tree.h:1585
Definition: parse-tree.h:292
Definition: parse-tree.h:1671
Definition: parse-tree.h:2395
Definition: parse-tree.h:2461
Definition: parse-tree.h:2460
Definition: parse-tree.h:2474
Definition: parse-tree.h:2472
Definition: parse-tree.h:2451
Definition: parse-tree.h:2508
Definition: parse-tree.h:2506
Definition: parse-tree.h:2486
Definition: parse-tree.h:2151
Definition: parse-tree.h:3324
Definition: parse-tree.h:860
Definition: parse-tree.h:795
Definition: parse-tree.h:835
Definition: parse-tree.h:394
Definition: parse-tree.h:445
Definition: parse-tree.h:1968
Definition: parse-tree.h:355
Definition: parse-tree.h:3342
Definition: parse-tree.h:2538
Definition: parse-tree.h:1887
Definition: parse-tree.h:1226
Definition: parse-tree.h:3422
Definition: parse-tree.h:3394
Definition: parse-tree.h:3417
Definition: parse-tree.h:3002
Definition: parse-tree.h:3013
Definition: parse-tree.h:3168
Definition: parse-tree.h:3308
Definition: parse-tree.h:1662
Definition: parse-tree.h:1849
Definition: parse-tree.h:1653
Definition: parse-tree.h:1835
Definition: parse-tree.h:3135
Definition: parse-tree.h:2557
Definition: parse-tree.h:2556
Definition: parse-tree.h:2569
Definition: parse-tree.h:917
Definition: parse-tree.h:1169
Definition: parse-tree.h:1182
Definition: parse-tree.h:1135
Definition: parse-tree.h:1191
Definition: parse-tree.h:1155
Definition: parse-tree.h:1147
Definition: parse-tree.h:1145
Definition: parse-tree.h:1417
Definition: parse-tree.h:2496
Definition: parse-tree.h:2495
Definition: parse-tree.h:945
Definition: parse-tree.h:953
Definition: parse-tree.h:744
Definition: parse-tree.h:642
Definition: parse-tree.h:757
Definition: parse-tree.h:3410
Definition: parse-tree.h:350
Definition: parse-tree.h:2628
Definition: parse-tree.h:808
Definition: parse-tree.h:3080
Definition: parse-tree.h:1865
Definition: parse-tree.h:730
Definition: parse-tree.h:735
Definition: parse-tree.h:279
Definition: parse-tree.h:2817
Definition: parse-tree.h:2066
Definition: parse-tree.h:2059
Definition: parse-tree.h:2095
Definition: parse-tree.h:2091
Definition: parse-tree.h:2090
Definition: parse-tree.h:2053
Definition: parse-tree.h:2776
Definition: parse-tree.h:3643
Definition: parse-tree.h:3635
Definition: parse-tree.h:3659
Definition: parse-tree.h:3651
Definition: parse-tree.h:3669
Definition: parse-tree.h:3703
Definition: parse-tree.h:3712
Definition: parse-tree.h:3730
Definition: parse-tree.h:3744
Definition: parse-tree.h:3681
Definition: parse-tree.h:3753
Definition: parse-tree.h:3761
Definition: parse-tree.h:3770
Definition: parse-tree.h:3798
Definition: parse-tree.h:3787
Definition: parse-tree.h:3779
Definition: parse-tree.h:3822
Definition: parse-tree.h:3813
Definition: parse-tree.h:3831
Definition: parse-tree.h:3843
Definition: parse-tree.h:3852
Definition: parse-tree.h:3861
Definition: parse-tree.h:3869
Definition: parse-tree.h:3879
Definition: parse-tree.h:3890
Definition: parse-tree.h:3617
Definition: parse-tree.h:3530
Definition: parse-tree.h:3527
Definition: parse-tree.h:3495
Definition: parse-tree.h:3551
Definition: parse-tree.h:3502
Definition: parse-tree.h:3577
Definition: parse-tree.h:3591
Definition: parse-tree.h:3588
Definition: parse-tree.h:3601
Definition: parse-tree.h:3609