| [b87a5ed] | 1 | // | 
|---|
|  | 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo | 
|---|
|  | 3 | // | 
|---|
|  | 4 | // The contents of this file are covered under the licence agreement in the | 
|---|
|  | 5 | // file "LICENCE" distributed with Cforall. | 
|---|
|  | 6 | // | 
|---|
| [974906e2] | 7 | // ParseNode.h -- | 
|---|
| [b87a5ed] | 8 | // | 
|---|
|  | 9 | // Author           : Rodolfo G. Esteves | 
|---|
|  | 10 | // Created On       : Sat May 16 13:28:16 2015 | 
|---|
| [e04ef3a] | 11 | // Last Modified By : Peter A. Buhr | 
|---|
| [409433da] | 12 | // Last Modified On : Fri Mar 17 15:42:18 2017 | 
|---|
|  | 13 | // Update Count     : 777 | 
|---|
| [b87a5ed] | 14 | // | 
|---|
|  | 15 |  | 
|---|
| [51b73452] | 16 | #ifndef PARSENODE_H | 
|---|
|  | 17 | #define PARSENODE_H | 
|---|
|  | 18 |  | 
|---|
|  | 19 | #include <string> | 
|---|
|  | 20 | #include <list> | 
|---|
|  | 21 | #include <iterator> | 
|---|
| [e04ef3a] | 22 | #include <memory> | 
|---|
| [51b73452] | 23 |  | 
|---|
| [68cd1ce] | 24 | #include "Parser/LinkageSpec.h" | 
|---|
| [59db689] | 25 | #include "SynTree/Type.h" | 
|---|
| [e04ef3a] | 26 | #include "SynTree/Expression.h" | 
|---|
| [2f22cc4] | 27 | #include "SynTree/Statement.h" | 
|---|
| [0f8e4ac] | 28 | #include "SynTree/Label.h" | 
|---|
| [7880579] | 29 | #include "Common/utility.h" | 
|---|
|  | 30 | #include "Common/UniqueName.h" | 
|---|
| [51b73452] | 31 |  | 
|---|
|  | 32 | class StatementNode; | 
|---|
|  | 33 | class CompoundStmtNode; | 
|---|
|  | 34 | class DeclarationNode; | 
|---|
| [d1625f8] | 35 | class ExpressionNode; | 
|---|
| [51b73452] | 36 | class InitializerNode; | 
|---|
| [44a81853] | 37 | class Attribute; | 
|---|
| [51b73452] | 38 |  | 
|---|
| [7880579] | 39 | //############################################################################## | 
|---|
|  | 40 |  | 
|---|
| [a7c90d4] | 41 | extern char * yyfilename; | 
|---|
| [294647b] | 42 | extern int yylineno; | 
|---|
|  | 43 |  | 
|---|
| [51b73452] | 44 | class ParseNode { | 
|---|
| [bdd516a] | 45 | public: | 
|---|
| [99cad3aa] | 46 | ParseNode() {}; | 
|---|
| [2298f728] | 47 | virtual ~ParseNode() { delete next; delete name; }; | 
|---|
| [b6424d9] | 48 | virtual ParseNode * clone() const = 0; | 
|---|
| [51b73452] | 49 |  | 
|---|
| [b6424d9] | 50 | ParseNode * get_next() const { return next; } | 
|---|
|  | 51 | ParseNode * set_next( ParseNode * newlink ) { next = newlink; return this; } | 
|---|
| [1b772749] | 52 |  | 
|---|
| [b6424d9] | 53 | ParseNode * get_last() { | 
|---|
|  | 54 | ParseNode * current; | 
|---|
| [2298f728] | 55 | for ( current = this; current->get_next() != nullptr; current = current->get_next() ); | 
|---|
| [99cad3aa] | 56 | return current; | 
|---|
|  | 57 | } | 
|---|
| [b6424d9] | 58 | ParseNode * set_last( ParseNode * newlast ) { | 
|---|
| [2298f728] | 59 | if ( newlast != nullptr ) get_last()->set_next( newlast ); | 
|---|
| [99cad3aa] | 60 | return this; | 
|---|
|  | 61 | } | 
|---|
| [51b73452] | 62 |  | 
|---|
| [7880579] | 63 | virtual void print( std::ostream &os, int indent = 0 ) const {} | 
|---|
| [0da3e2c] | 64 | virtual void printList( std::ostream &os, int indent = 0 ) const {} | 
|---|
| [1b772749] | 65 |  | 
|---|
| [b87a5ed] | 66 | static int indent_by; | 
|---|
| [7880579] | 67 |  | 
|---|
| [b6424d9] | 68 | ParseNode * next = nullptr; | 
|---|
| [2298f728] | 69 | std::string * name = nullptr; | 
|---|
| [294647b] | 70 | CodeLocation location = { yyfilename, yylineno }; | 
|---|
| [7880579] | 71 | }; // ParseNode | 
|---|
| [51b73452] | 72 |  | 
|---|
| [7bf7fb9] | 73 | //############################################################################## | 
|---|
|  | 74 |  | 
|---|
| [d1625f8] | 75 | class InitializerNode : public ParseNode { | 
|---|
|  | 76 | public: | 
|---|
| [2298f728] | 77 | InitializerNode( ExpressionNode *, bool aggrp = false,  ExpressionNode * des = nullptr ); | 
|---|
|  | 78 | InitializerNode( InitializerNode *, bool aggrp = false, ExpressionNode * des = nullptr ); | 
|---|
| [d1625f8] | 79 | ~InitializerNode(); | 
|---|
| [a7741435] | 80 | virtual InitializerNode * clone() const { assert( false ); return nullptr; } | 
|---|
| [d1625f8] | 81 |  | 
|---|
| [b6424d9] | 82 | ExpressionNode * get_expression() const { return expr; } | 
|---|
| [d1625f8] | 83 |  | 
|---|
| [b6424d9] | 84 | InitializerNode * set_designators( ExpressionNode * des ) { designator = des; return this; } | 
|---|
|  | 85 | ExpressionNode * get_designators() const { return designator; } | 
|---|
| [d1625f8] | 86 |  | 
|---|
| [b6424d9] | 87 | InitializerNode * set_maybeConstructed( bool value ) { maybeConstructed = value; return this; } | 
|---|
| [d1625f8] | 88 | bool get_maybeConstructed() const { return maybeConstructed; } | 
|---|
|  | 89 |  | 
|---|
| [b6424d9] | 90 | InitializerNode * next_init() const { return kids; } | 
|---|
| [d1625f8] | 91 |  | 
|---|
|  | 92 | void print( std::ostream &os, int indent = 0 ) const; | 
|---|
|  | 93 | void printOneLine( std::ostream & ) const; | 
|---|
|  | 94 |  | 
|---|
| [b6424d9] | 95 | virtual Initializer * build() const; | 
|---|
| [d1625f8] | 96 | private: | 
|---|
| [b6424d9] | 97 | ExpressionNode * expr; | 
|---|
| [d1625f8] | 98 | bool aggregate; | 
|---|
| [b6424d9] | 99 | ExpressionNode * designator;                                            // may be list | 
|---|
|  | 100 | InitializerNode * kids; | 
|---|
| [d1625f8] | 101 | bool maybeConstructed; | 
|---|
| [c1c1112] | 102 | }; // InitializerNode | 
|---|
| [d1625f8] | 103 |  | 
|---|
|  | 104 | //############################################################################## | 
|---|
|  | 105 |  | 
|---|
| [ac71a86] | 106 | class ExpressionNode final : public ParseNode { | 
|---|
| [bdd516a] | 107 | public: | 
|---|
| [d1625f8] | 108 | ExpressionNode( Expression * expr = nullptr ) : expr( expr ) {} | 
|---|
|  | 109 | virtual ~ExpressionNode() {} | 
|---|
| [6eb4398] | 110 | virtual ExpressionNode * clone() const override { return expr ? static_cast<ExpressionNode*>((new ExpressionNode( expr->clone() ))->set_next( maybeClone( get_next() ) )) : nullptr; } | 
|---|
| [51b73452] | 111 |  | 
|---|
| [e04ef3a] | 112 | bool get_extension() const { return extension; } | 
|---|
| [b6424d9] | 113 | ExpressionNode * set_extension( bool exten ) { extension = exten; return this; } | 
|---|
| [51b73452] | 114 |  | 
|---|
| [62e5546] | 115 | virtual void print( std::ostream &os, int indent = 0 ) const override {} | 
|---|
| [ac71a86] | 116 | void printOneLine( std::ostream &os, int indent = 0 ) const {} | 
|---|
|  | 117 |  | 
|---|
|  | 118 | template<typename T> | 
|---|
|  | 119 | bool isExpressionType() const { | 
|---|
|  | 120 | return nullptr != dynamic_cast<T>(expr.get()); | 
|---|
|  | 121 | } | 
|---|
| [51b73452] | 122 |  | 
|---|
| [a7c90d4] | 123 | Expression * build() const { return const_cast<ExpressionNode *>(this)->expr.release(); } | 
|---|
| [bdd516a] | 124 | private: | 
|---|
| [e04ef3a] | 125 | bool extension = false; | 
|---|
| [ac71a86] | 126 | std::unique_ptr<Expression> expr; | 
|---|
| [c1c1112] | 127 | }; // ExpressionNode | 
|---|
| [e04ef3a] | 128 |  | 
|---|
|  | 129 | template< typename T > | 
|---|
| [7880579] | 130 | struct maybeBuild_t< Expression, T > { | 
|---|
| [b6424d9] | 131 | static inline Expression * doit( const T * orig ) { | 
|---|
| [e04ef3a] | 132 | if ( orig ) { | 
|---|
| [b6424d9] | 133 | Expression * p = orig->build(); | 
|---|
| [e04ef3a] | 134 | p->set_extension( orig->get_extension() ); | 
|---|
| [64ac636] | 135 | p->location = orig->location; | 
|---|
| [e04ef3a] | 136 | return p; | 
|---|
|  | 137 | } else { | 
|---|
| [7880579] | 138 | return nullptr; | 
|---|
| [e04ef3a] | 139 | } // if | 
|---|
|  | 140 | } | 
|---|
| [51b73452] | 141 | }; | 
|---|
|  | 142 |  | 
|---|
| [d9e2280] | 143 | enum class OperKinds { | 
|---|
|  | 144 | // diadic | 
|---|
| [7bf7fb9] | 145 | SizeOf, AlignOf, OffsetOf, Plus, Minus, Mul, Div, Mod, Or, And, | 
|---|
| [d9e2280] | 146 | BitOr, BitAnd, Xor, Cast, LShift, RShift, LThan, GThan, LEThan, GEThan, Eq, Neq, | 
|---|
| [a839867] | 147 | Assign, AtAssn, MulAssn, DivAssn, ModAssn, PlusAssn, MinusAssn, LSAssn, RSAssn, AndAssn, ERAssn, OrAssn, | 
|---|
| [d9e2280] | 148 | Index, Range, | 
|---|
|  | 149 | // monadic | 
|---|
|  | 150 | UnPlus, UnMinus, AddressOf, PointTo, Neg, BitNeg, Incr, IncrPost, Decr, DecrPost, LabelAddress, | 
|---|
|  | 151 | Ctor, Dtor, | 
|---|
| [c1c1112] | 152 | }; // OperKinds | 
|---|
| [51b73452] | 153 |  | 
|---|
| [e82aa9df] | 154 | struct LabelNode { | 
|---|
|  | 155 | std::list< Label > labels; | 
|---|
|  | 156 | }; | 
|---|
|  | 157 |  | 
|---|
| [b6424d9] | 158 | Expression * build_constantInteger( const std::string &str ); | 
|---|
|  | 159 | Expression * build_constantFloat( const std::string &str ); | 
|---|
|  | 160 | Expression * build_constantChar( const std::string &str ); | 
|---|
| [4cb935e] | 161 | Expression * build_constantZeroOne( const std::string &str ); | 
|---|
| [b6424d9] | 162 | ConstantExpr * build_constantStr( const std::string &str ); | 
|---|
| [8780e30] | 163 | Expression * build_field_name_FLOATINGconstant( const std::string & str ); | 
|---|
|  | 164 | Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts ); | 
|---|
|  | 165 | Expression * build_field_name_REALFRACTIONconstant( const std::string & str ); | 
|---|
|  | 166 | Expression * build_field_name_REALDECIMALconstant( const std::string & str ); | 
|---|
| [b6424d9] | 167 |  | 
|---|
|  | 168 | NameExpr * build_varref( const std::string * name, bool labelp = false ); | 
|---|
|  | 169 | Expression * build_typevalue( DeclarationNode * decl ); | 
|---|
|  | 170 |  | 
|---|
|  | 171 | Expression * build_cast( DeclarationNode * decl_node, ExpressionNode * expr_node ); | 
|---|
| [fd782b2] | 172 | Expression * build_fieldSel( ExpressionNode * expr_node, Expression * member ); | 
|---|
|  | 173 | Expression * build_pfieldSel( ExpressionNode * expr_node, Expression * member ); | 
|---|
| [b6424d9] | 174 | Expression * build_addressOf( ExpressionNode * expr_node ); | 
|---|
|  | 175 | Expression * build_sizeOfexpr( ExpressionNode * expr_node ); | 
|---|
|  | 176 | Expression * build_sizeOftype( DeclarationNode * decl_node ); | 
|---|
|  | 177 | Expression * build_alignOfexpr( ExpressionNode * expr_node ); | 
|---|
|  | 178 | Expression * build_alignOftype( DeclarationNode * decl_node ); | 
|---|
|  | 179 | Expression * build_offsetOf( DeclarationNode * decl_node, NameExpr * member ); | 
|---|
|  | 180 | Expression * build_and( ExpressionNode * expr_node1, ExpressionNode * expr_node2 ); | 
|---|
|  | 181 | Expression * build_and_or( ExpressionNode * expr_node1, ExpressionNode * expr_node2, bool kind ); | 
|---|
|  | 182 | Expression * build_unary_val( OperKinds op, ExpressionNode * expr_node ); | 
|---|
|  | 183 | Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node ); | 
|---|
|  | 184 | Expression * build_binary_val( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 ); | 
|---|
|  | 185 | Expression * build_binary_ptr( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 ); | 
|---|
|  | 186 | Expression * build_cond( ExpressionNode * expr_node1, ExpressionNode * expr_node2, ExpressionNode * expr_node3 ); | 
|---|
|  | 187 | Expression * build_comma( ExpressionNode * expr_node1, ExpressionNode * expr_node2 ); | 
|---|
|  | 188 | Expression * build_attrexpr( NameExpr * var, ExpressionNode * expr_node ); | 
|---|
|  | 189 | Expression * build_attrtype( NameExpr * var, DeclarationNode * decl_node ); | 
|---|
| [2298f728] | 190 | Expression * build_tuple( ExpressionNode * expr_node = nullptr ); | 
|---|
| [b6424d9] | 191 | Expression * build_func( ExpressionNode * function, ExpressionNode * expr_node ); | 
|---|
|  | 192 | Expression * build_range( ExpressionNode * low, ExpressionNode * high ); | 
|---|
|  | 193 | Expression * build_asmexpr( ExpressionNode * inout, ConstantExpr * constraint, ExpressionNode * operand ); | 
|---|
|  | 194 | Expression * build_valexpr( StatementNode * s ); | 
|---|
|  | 195 | Expression * build_compoundLiteral( DeclarationNode * decl_node, InitializerNode * kids ); | 
|---|
| [51b73452] | 196 |  | 
|---|
| [7bf7fb9] | 197 | //############################################################################## | 
|---|
|  | 198 |  | 
|---|
| [62e5546] | 199 | struct TypeData; | 
|---|
| [51b73452] | 200 |  | 
|---|
| [bdd516a] | 201 | class DeclarationNode : public ParseNode { | 
|---|
|  | 202 | public: | 
|---|
| [5b639ee] | 203 | enum BasicType { Void, Bool, Char, Int, Float, Double, LongDouble, NoBasicType }; | 
|---|
|  | 204 | enum ComplexType { Complex, Imaginary, NoComplexType }; | 
|---|
|  | 205 | enum Signedness { Signed, Unsigned, NoSignedness }; | 
|---|
|  | 206 | enum Length { Short, Long, LongLong, NoLength }; | 
|---|
| [409433da] | 207 | enum Aggregate { Struct, Union, Trait, Coroutine, Monitor, Thread, NoAggregate }; | 
|---|
| [8f60f0b] | 208 | enum TypeClass { Otype, Dtype, Ftype, Ttype, NoTypeClass }; | 
|---|
| [148f7290] | 209 | enum BuiltinType { Valist, Zero, One, NoBuiltinType }; | 
|---|
| [b87a5ed] | 210 |  | 
|---|
| [dd020c0] | 211 | static const char * basicTypeNames[]; | 
|---|
|  | 212 | static const char * complexTypeNames[]; | 
|---|
|  | 213 | static const char * signednessNames[]; | 
|---|
|  | 214 | static const char * lengthNames[]; | 
|---|
|  | 215 | static const char * aggregateNames[]; | 
|---|
|  | 216 | static const char * typeClassNames[]; | 
|---|
|  | 217 | static const char * builtinTypeNames[]; | 
|---|
| [b6424d9] | 218 |  | 
|---|
| [68fe077a] | 219 | static DeclarationNode * newStorageClass( Type::StorageClasses ); | 
|---|
| [ddfd945] | 220 | static DeclarationNode * newFuncSpecifier( Type::FuncSpecifiers ); | 
|---|
| [738e304] | 221 | static DeclarationNode * newTypeQualifier( Type::Qualifiers ); | 
|---|
| [b6424d9] | 222 | static DeclarationNode * newBasicType( BasicType ); | 
|---|
| [5b639ee] | 223 | static DeclarationNode * newComplexType( ComplexType ); | 
|---|
| [dd020c0] | 224 | static DeclarationNode * newSignedNess( Signedness ); | 
|---|
|  | 225 | static DeclarationNode * newLength( Length ); | 
|---|
| [b6424d9] | 226 | static DeclarationNode * newBuiltinType( BuiltinType ); | 
|---|
| [dd020c0] | 227 | static DeclarationNode * newForall( DeclarationNode * ); | 
|---|
| [2298f728] | 228 | static DeclarationNode * newFromTypedef( std::string * ); | 
|---|
| [dd020c0] | 229 | static DeclarationNode * newFunction( std::string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body, bool newStyle = false ); | 
|---|
| [b6424d9] | 230 | static DeclarationNode * newAggregate( Aggregate kind, const std::string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body ); | 
|---|
| [ca1a547] | 231 | static DeclarationNode * newEnum( std::string * name, DeclarationNode * constants, bool body ); | 
|---|
| [b6424d9] | 232 | static DeclarationNode * newEnumConstant( std::string * name, ExpressionNode * constant ); | 
|---|
| [2298f728] | 233 | static DeclarationNode * newName( std::string * ); | 
|---|
| [b6424d9] | 234 | static DeclarationNode * newFromTypeGen( std::string *, ExpressionNode * params ); | 
|---|
| [2298f728] | 235 | static DeclarationNode * newTypeParam( TypeClass, std::string * ); | 
|---|
|  | 236 | static DeclarationNode * newTrait( const std::string * name, DeclarationNode * params, DeclarationNode * asserts ); | 
|---|
|  | 237 | static DeclarationNode * newTraitUse( const std::string * name, ExpressionNode * params ); | 
|---|
| [b6424d9] | 238 | static DeclarationNode * newTypeDecl( std::string * name, DeclarationNode * typeParams ); | 
|---|
|  | 239 | static DeclarationNode * newPointer( DeclarationNode * qualifiers ); | 
|---|
|  | 240 | static DeclarationNode * newArray( ExpressionNode * size, DeclarationNode * qualifiers, bool isStatic ); | 
|---|
|  | 241 | static DeclarationNode * newVarArray( DeclarationNode * qualifiers ); | 
|---|
|  | 242 | static DeclarationNode * newBitfield( ExpressionNode * size ); | 
|---|
|  | 243 | static DeclarationNode * newTuple( DeclarationNode * members ); | 
|---|
|  | 244 | static DeclarationNode * newTypeof( ExpressionNode * expr ); | 
|---|
| [44a81853] | 245 | static DeclarationNode * newAttr( std::string *, ExpressionNode * expr ); // @ attributes | 
|---|
|  | 246 | static DeclarationNode * newAttr( std::string *, DeclarationNode * type ); // @ attributes | 
|---|
|  | 247 | static DeclarationNode * newAttribute( std::string *, ExpressionNode * expr = nullptr ); // gcc attributes | 
|---|
| [e994912] | 248 | static DeclarationNode * newAsmStmt( StatementNode * stmt ); // gcc external asm statement | 
|---|
| [b87a5ed] | 249 |  | 
|---|
| [7880579] | 250 | DeclarationNode(); | 
|---|
|  | 251 | ~DeclarationNode(); | 
|---|
| [6a0d4d61] | 252 | DeclarationNode * clone() const override; | 
|---|
| [7880579] | 253 |  | 
|---|
| [2298f728] | 254 | DeclarationNode * addQualifiers( DeclarationNode * ); | 
|---|
| [413ad05] | 255 | void checkQualifiers( const TypeData *, const TypeData * ); | 
|---|
| [a7c90d4] | 256 | void checkSpecifiers( DeclarationNode * ); | 
|---|
|  | 257 | DeclarationNode * copySpecifiers( DeclarationNode * ); | 
|---|
| [2298f728] | 258 | DeclarationNode * addType( DeclarationNode * ); | 
|---|
| [b6424d9] | 259 | DeclarationNode * addTypedef(); | 
|---|
| [2298f728] | 260 | DeclarationNode * addAssertions( DeclarationNode * ); | 
|---|
|  | 261 | DeclarationNode * addName( std::string * ); | 
|---|
| [c0aa336] | 262 | DeclarationNode * addAsmName( DeclarationNode * ); | 
|---|
| [b6424d9] | 263 | DeclarationNode * addBitfield( ExpressionNode * size ); | 
|---|
|  | 264 | DeclarationNode * addVarArgs(); | 
|---|
|  | 265 | DeclarationNode * addFunctionBody( StatementNode * body ); | 
|---|
|  | 266 | DeclarationNode * addOldDeclList( DeclarationNode * list ); | 
|---|
| [c0aa336] | 267 | DeclarationNode * setBase( TypeData * newType ); | 
|---|
|  | 268 | DeclarationNode * copyAttribute( DeclarationNode * attr ); | 
|---|
| [b6424d9] | 269 | DeclarationNode * addPointer( DeclarationNode * qualifiers ); | 
|---|
|  | 270 | DeclarationNode * addArray( DeclarationNode * array ); | 
|---|
|  | 271 | DeclarationNode * addNewPointer( DeclarationNode * pointer ); | 
|---|
|  | 272 | DeclarationNode * addNewArray( DeclarationNode * array ); | 
|---|
|  | 273 | DeclarationNode * addParamList( DeclarationNode * list ); | 
|---|
|  | 274 | DeclarationNode * addIdList( DeclarationNode * list ); // old-style functions | 
|---|
|  | 275 | DeclarationNode * addInitializer( InitializerNode * init ); | 
|---|
|  | 276 |  | 
|---|
|  | 277 | DeclarationNode * cloneType( std::string * newName ); | 
|---|
|  | 278 | DeclarationNode * cloneBaseType( DeclarationNode * newdecl ); | 
|---|
|  | 279 |  | 
|---|
|  | 280 | DeclarationNode * appendList( DeclarationNode * node ) { | 
|---|
| [99cad3aa] | 281 | return (DeclarationNode *)set_last( node ); | 
|---|
|  | 282 | } | 
|---|
| [b87a5ed] | 283 |  | 
|---|
| [62e5546] | 284 | virtual void print( std::ostream &os, int indent = 0 ) const override; | 
|---|
|  | 285 | virtual void printList( std::ostream &os, int indent = 0 ) const override; | 
|---|
| [b87a5ed] | 286 |  | 
|---|
| [b6424d9] | 287 | Declaration * build() const; | 
|---|
| [a7c90d4] | 288 | Type * buildType() const; | 
|---|
| [b87a5ed] | 289 |  | 
|---|
|  | 290 | bool get_hasEllipsis() const; | 
|---|
| [8b7ee09] | 291 | LinkageSpec::Spec get_linkage() const { return linkage; } | 
|---|
| [b6424d9] | 292 | DeclarationNode * extractAggregate() const; | 
|---|
| [4f147cc] | 293 | bool has_enumeratorValue() const { return (bool)enumeratorValue; } | 
|---|
| [a7c90d4] | 294 | ExpressionNode * consume_enumeratorValue() const { return const_cast<DeclarationNode *>(this)->enumeratorValue.release(); } | 
|---|
| [b87a5ed] | 295 |  | 
|---|
| [7305915] | 296 | bool get_extension() const { return extension; } | 
|---|
| [b6424d9] | 297 | DeclarationNode * set_extension( bool exten ) { extension = exten; return this; } | 
|---|
| [c1c1112] | 298 | public: | 
|---|
| [28307be] | 299 | struct Variable_t { | 
|---|
| [faddbd8] | 300 | //              const std::string * name; | 
|---|
| [28307be] | 301 | DeclarationNode::TypeClass tyClass; | 
|---|
|  | 302 | DeclarationNode * assertions; | 
|---|
|  | 303 | }; | 
|---|
|  | 304 | Variable_t variable; | 
|---|
|  | 305 |  | 
|---|
|  | 306 | struct Attr_t { | 
|---|
| [faddbd8] | 307 | //              const std::string * name; | 
|---|
| [28307be] | 308 | ExpressionNode * expr; | 
|---|
|  | 309 | DeclarationNode * type; | 
|---|
|  | 310 | }; | 
|---|
|  | 311 | Attr_t attr; | 
|---|
|  | 312 |  | 
|---|
| [8f6f47d7] | 313 | BuiltinType builtin; | 
|---|
|  | 314 |  | 
|---|
| [b6424d9] | 315 | TypeData * type; | 
|---|
| [dd020c0] | 316 |  | 
|---|
| [ddfd945] | 317 | Type::FuncSpecifiers funcSpecs; | 
|---|
| [68fe077a] | 318 | Type::StorageClasses storageClasses; | 
|---|
| [dd020c0] | 319 |  | 
|---|
| [b6424d9] | 320 | ExpressionNode * bitfieldWidth; | 
|---|
| [4f147cc] | 321 | std::unique_ptr<ExpressionNode> enumeratorValue; | 
|---|
| [b87a5ed] | 322 | bool hasEllipsis; | 
|---|
| [8b7ee09] | 323 | LinkageSpec::Spec linkage; | 
|---|
| [58dd019] | 324 | ConstantExpr *asmName; | 
|---|
| [44a81853] | 325 | std::list< Attribute * > attributes; | 
|---|
| [58dd019] | 326 | InitializerNode * initializer; | 
|---|
| [7305915] | 327 | bool extension = false; | 
|---|
| [13e3b50] | 328 | std::string error; | 
|---|
| [e994912] | 329 | StatementNode * asmStmt; | 
|---|
| [b87a5ed] | 330 |  | 
|---|
|  | 331 | static UniqueName anonymous; | 
|---|
| [1db21619] | 332 | }; // DeclarationNode | 
|---|
| [51b73452] | 333 |  | 
|---|
| [b6424d9] | 334 | Type * buildType( TypeData * type ); | 
|---|
| [d1625f8] | 335 |  | 
|---|
| [b6424d9] | 336 | static inline Type * maybeMoveBuildType( const DeclarationNode * orig ) { | 
|---|
| [a7c90d4] | 337 | Type * ret = orig ? orig->buildType() : nullptr; | 
|---|
| [4f147cc] | 338 | delete orig; | 
|---|
|  | 339 | return ret; | 
|---|
|  | 340 | } | 
|---|
|  | 341 |  | 
|---|
| [7bf7fb9] | 342 | //############################################################################## | 
|---|
|  | 343 |  | 
|---|
| [ac71a86] | 344 | class StatementNode final : public ParseNode { | 
|---|
| [bdd516a] | 345 | public: | 
|---|
| [e82aa9df] | 346 | StatementNode() { stmt = nullptr; } | 
|---|
| [b6424d9] | 347 | StatementNode( Statement * stmt ) : stmt( stmt ) {} | 
|---|
|  | 348 | StatementNode( DeclarationNode * decl ); | 
|---|
| [e82aa9df] | 349 | virtual ~StatementNode() {} | 
|---|
| [51b73452] | 350 |  | 
|---|
| [b6424d9] | 351 | virtual StatementNode * clone() const final { assert( false ); return nullptr; } | 
|---|
| [a7c90d4] | 352 | Statement * build() const { return const_cast<StatementNode *>(this)->stmt.release(); } | 
|---|
| [2f22cc4] | 353 |  | 
|---|
| [44a81853] | 354 | virtual StatementNode * add_label( const std::string * name, DeclarationNode * attr = nullptr ) { | 
|---|
|  | 355 | stmt->get_labels().emplace_back( * name, nullptr, attr ? std::move( attr->attributes ) : std::list< Attribute * > {} ); | 
|---|
|  | 356 | delete attr; | 
|---|
| [ac71a86] | 357 | delete name; | 
|---|
| [2f22cc4] | 358 | return this; | 
|---|
|  | 359 | } | 
|---|
|  | 360 |  | 
|---|
| [b6424d9] | 361 | virtual StatementNode * append_last_case( StatementNode * ); | 
|---|
| [1d4580a] | 362 |  | 
|---|
| [62e5546] | 363 | virtual void print( std::ostream &os, int indent = 0 ) const override {} | 
|---|
|  | 364 | virtual void printList( std::ostream &os, int indent = 0 ) const override {} | 
|---|
| [2f22cc4] | 365 | private: | 
|---|
| [ac71a86] | 366 | std::unique_ptr<Statement> stmt; | 
|---|
| [2f22cc4] | 367 | }; // StatementNode | 
|---|
|  | 368 |  | 
|---|
| [b6424d9] | 369 | Statement * build_expr( ExpressionNode * ctl ); | 
|---|
| [1d4580a] | 370 |  | 
|---|
| [2f22cc4] | 371 | struct ForCtl { | 
|---|
| [b6424d9] | 372 | ForCtl( ExpressionNode * expr, ExpressionNode * condition, ExpressionNode * change ) : | 
|---|
| [e82aa9df] | 373 | init( new StatementNode( build_expr( expr ) ) ), condition( condition ), change( change ) {} | 
|---|
| [b6424d9] | 374 | ForCtl( DeclarationNode * decl, ExpressionNode * condition, ExpressionNode * change ) : | 
|---|
| [e82aa9df] | 375 | init( new StatementNode( decl ) ), condition( condition ), change( change ) {} | 
|---|
| [2f22cc4] | 376 |  | 
|---|
| [b6424d9] | 377 | StatementNode * init; | 
|---|
|  | 378 | ExpressionNode * condition; | 
|---|
|  | 379 | ExpressionNode * change; | 
|---|
| [2f22cc4] | 380 | }; | 
|---|
|  | 381 |  | 
|---|
| [b6424d9] | 382 | Statement * build_if( ExpressionNode * ctl, StatementNode * then_stmt, StatementNode * else_stmt ); | 
|---|
|  | 383 | Statement * build_switch( ExpressionNode * ctl, StatementNode * stmt ); | 
|---|
|  | 384 | Statement * build_case( ExpressionNode * ctl ); | 
|---|
|  | 385 | Statement * build_default(); | 
|---|
|  | 386 | Statement * build_while( ExpressionNode * ctl, StatementNode * stmt, bool kind = false ); | 
|---|
|  | 387 | Statement * build_for( ForCtl * forctl, StatementNode * stmt ); | 
|---|
|  | 388 | Statement * build_branch( BranchStmt::Type kind ); | 
|---|
|  | 389 | Statement * build_branch( std::string * identifier, BranchStmt::Type kind ); | 
|---|
|  | 390 | Statement * build_computedgoto( ExpressionNode * ctl ); | 
|---|
|  | 391 | Statement * build_return( ExpressionNode * ctl ); | 
|---|
|  | 392 | Statement * build_throw( ExpressionNode * ctl ); | 
|---|
|  | 393 | Statement * build_try( StatementNode * try_stmt, StatementNode * catch_stmt, StatementNode * finally_stmt ); | 
|---|
|  | 394 | Statement * build_catch( DeclarationNode * decl, StatementNode * stmt, bool catchAny = false ); | 
|---|
|  | 395 | Statement * build_finally( StatementNode * stmt ); | 
|---|
|  | 396 | Statement * build_compound( StatementNode * first ); | 
|---|
| [2298f728] | 397 | Statement * build_asmstmt( bool voltile, ConstantExpr * instruction, ExpressionNode * output = nullptr, ExpressionNode * input = nullptr, ExpressionNode * clobber = nullptr, LabelNode * gotolabels = nullptr ); | 
|---|
| [7f5566b] | 398 |  | 
|---|
| [7bf7fb9] | 399 | //############################################################################## | 
|---|
|  | 400 |  | 
|---|
| [aefcc3b] | 401 | template< typename SynTreeType, typename NodeType, template< typename, typename...> class Container, typename... Args > | 
|---|
|  | 402 | void buildList( const NodeType * firstNode, Container< SynTreeType *, Args... > &outputList ) { | 
|---|
| [b87a5ed] | 403 | SemanticError errors; | 
|---|
| [aefcc3b] | 404 | std::back_insert_iterator< Container< SynTreeType *, Args... > > out( outputList ); | 
|---|
| [b6424d9] | 405 | const NodeType * cur = firstNode; | 
|---|
| [b87a5ed] | 406 |  | 
|---|
|  | 407 | while ( cur ) { | 
|---|
|  | 408 | try { | 
|---|
| [b6424d9] | 409 | SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::pointer_traits< decltype(cur->build())>::element_type >( cur ) ); | 
|---|
| [b87a5ed] | 410 | if ( result ) { | 
|---|
| [294647b] | 411 | result->location = cur->location; | 
|---|
| [b6424d9] | 412 | * out++ = result; | 
|---|
| [b87a5ed] | 413 | } // if | 
|---|
|  | 414 | } catch( SemanticError &e ) { | 
|---|
| [294647b] | 415 | e.set_location( cur->location ); | 
|---|
| [b87a5ed] | 416 | errors.append( e ); | 
|---|
|  | 417 | } // try | 
|---|
| [7880579] | 418 | cur = dynamic_cast< NodeType * >( cur->get_next() ); | 
|---|
| [b87a5ed] | 419 | } // while | 
|---|
| [a32b204] | 420 | if ( ! errors.isEmpty() ) { | 
|---|
| [b87a5ed] | 421 | throw errors; | 
|---|
|  | 422 | } // if | 
|---|
| [51b73452] | 423 | } | 
|---|
|  | 424 |  | 
|---|
|  | 425 | // in DeclarationNode.cc | 
|---|
| [b6424d9] | 426 | void buildList( const DeclarationNode * firstNode, std::list< Declaration * > &outputList ); | 
|---|
|  | 427 | void buildList( const DeclarationNode * firstNode, std::list< DeclarationWithType * > &outputList ); | 
|---|
|  | 428 | void buildTypeList( const DeclarationNode * firstNode, std::list< Type * > &outputList ); | 
|---|
| [51b73452] | 429 |  | 
|---|
| [7ecbb7e] | 430 | template< typename SynTreeType, typename NodeType > | 
|---|
| [b6424d9] | 431 | void buildMoveList( const NodeType * firstNode, std::list< SynTreeType * > &outputList ) { | 
|---|
| [3a5131ed] | 432 | buildList( firstNode, outputList ); | 
|---|
| [7ecbb7e] | 433 | delete firstNode; | 
|---|
|  | 434 | } | 
|---|
|  | 435 |  | 
|---|
| [c8dfcd3] | 436 | // in ParseNode.cc | 
|---|
|  | 437 | std::ostream & operator<<( std::ostream & out, const ParseNode * node ); | 
|---|
| [7ecbb7e] | 438 |  | 
|---|
| [bdd516a] | 439 | #endif // PARSENODE_H | 
|---|
| [51b73452] | 440 |  | 
|---|
|  | 441 | // Local Variables: // | 
|---|
| [b87a5ed] | 442 | // tab-width: 4 // | 
|---|
|  | 443 | // mode: c++ // | 
|---|
|  | 444 | // compile-command: "make install" // | 
|---|
| [51b73452] | 445 | // End: // | 
|---|