[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
|
---|
[44a81853] | 12 | // Last Modified On : Wed Jan 18 16:20:43 2017
|
---|
| 13 | // Update Count : 650
|
---|
[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 |
|
---|
[51b73452] | 41 | class ParseNode {
|
---|
[bdd516a] | 42 | public:
|
---|
[99cad3aa] | 43 | ParseNode() {};
|
---|
[2298f728] | 44 | virtual ~ParseNode() { delete next; delete name; };
|
---|
[b6424d9] | 45 | virtual ParseNode * clone() const = 0;
|
---|
[51b73452] | 46 |
|
---|
[b6424d9] | 47 | ParseNode * get_next() const { return next; }
|
---|
| 48 | ParseNode * set_next( ParseNode * newlink ) { next = newlink; return this; }
|
---|
[1b772749] | 49 |
|
---|
[b6424d9] | 50 | ParseNode * get_last() {
|
---|
| 51 | ParseNode * current;
|
---|
[2298f728] | 52 | for ( current = this; current->get_next() != nullptr; current = current->get_next() );
|
---|
[99cad3aa] | 53 | return current;
|
---|
| 54 | }
|
---|
[b6424d9] | 55 | ParseNode * set_last( ParseNode * newlast ) {
|
---|
[2298f728] | 56 | if ( newlast != nullptr ) get_last()->set_next( newlast );
|
---|
[99cad3aa] | 57 | return this;
|
---|
| 58 | }
|
---|
[51b73452] | 59 |
|
---|
[7880579] | 60 | virtual void print( std::ostream &os, int indent = 0 ) const {}
|
---|
[0da3e2c] | 61 | virtual void printList( std::ostream &os, int indent = 0 ) const {}
|
---|
[1b772749] | 62 |
|
---|
[b87a5ed] | 63 | static int indent_by;
|
---|
[7880579] | 64 |
|
---|
[b6424d9] | 65 | ParseNode * next = nullptr;
|
---|
[2298f728] | 66 | std::string * name = nullptr;
|
---|
[7880579] | 67 | }; // ParseNode
|
---|
[51b73452] | 68 |
|
---|
[7bf7fb9] | 69 | //##############################################################################
|
---|
| 70 |
|
---|
[d1625f8] | 71 | class InitializerNode : public ParseNode {
|
---|
| 72 | public:
|
---|
[2298f728] | 73 | InitializerNode( ExpressionNode *, bool aggrp = false, ExpressionNode * des = nullptr );
|
---|
| 74 | InitializerNode( InitializerNode *, bool aggrp = false, ExpressionNode * des = nullptr );
|
---|
[d1625f8] | 75 | ~InitializerNode();
|
---|
[a7741435] | 76 | virtual InitializerNode * clone() const { assert( false ); return nullptr; }
|
---|
[d1625f8] | 77 |
|
---|
[b6424d9] | 78 | ExpressionNode * get_expression() const { return expr; }
|
---|
[d1625f8] | 79 |
|
---|
[b6424d9] | 80 | InitializerNode * set_designators( ExpressionNode * des ) { designator = des; return this; }
|
---|
| 81 | ExpressionNode * get_designators() const { return designator; }
|
---|
[d1625f8] | 82 |
|
---|
[b6424d9] | 83 | InitializerNode * set_maybeConstructed( bool value ) { maybeConstructed = value; return this; }
|
---|
[d1625f8] | 84 | bool get_maybeConstructed() const { return maybeConstructed; }
|
---|
| 85 |
|
---|
[b6424d9] | 86 | InitializerNode * next_init() const { return kids; }
|
---|
[d1625f8] | 87 |
|
---|
| 88 | void print( std::ostream &os, int indent = 0 ) const;
|
---|
| 89 | void printOneLine( std::ostream & ) const;
|
---|
| 90 |
|
---|
[b6424d9] | 91 | virtual Initializer * build() const;
|
---|
[d1625f8] | 92 | private:
|
---|
[b6424d9] | 93 | ExpressionNode * expr;
|
---|
[d1625f8] | 94 | bool aggregate;
|
---|
[b6424d9] | 95 | ExpressionNode * designator; // may be list
|
---|
| 96 | InitializerNode * kids;
|
---|
[d1625f8] | 97 | bool maybeConstructed;
|
---|
[c1c1112] | 98 | }; // InitializerNode
|
---|
[d1625f8] | 99 |
|
---|
| 100 | //##############################################################################
|
---|
| 101 |
|
---|
[ac71a86] | 102 | class ExpressionNode final : public ParseNode {
|
---|
[bdd516a] | 103 | public:
|
---|
[d1625f8] | 104 | ExpressionNode( Expression * expr = nullptr ) : expr( expr ) {}
|
---|
[b87a5ed] | 105 | ExpressionNode( const ExpressionNode &other );
|
---|
[d1625f8] | 106 | virtual ~ExpressionNode() {}
|
---|
[b6424d9] | 107 | virtual ExpressionNode * clone() const { return expr ? new ExpressionNode( expr->clone() ) : nullptr; }
|
---|
[51b73452] | 108 |
|
---|
[e04ef3a] | 109 | bool get_extension() const { return extension; }
|
---|
[b6424d9] | 110 | ExpressionNode * set_extension( bool exten ) { extension = exten; return this; }
|
---|
[51b73452] | 111 |
|
---|
[62e5546] | 112 | virtual void print( std::ostream &os, int indent = 0 ) const override {}
|
---|
[ac71a86] | 113 | void printOneLine( std::ostream &os, int indent = 0 ) const {}
|
---|
| 114 |
|
---|
| 115 | template<typename T>
|
---|
| 116 | bool isExpressionType() const {
|
---|
| 117 | return nullptr != dynamic_cast<T>(expr.get());
|
---|
| 118 | }
|
---|
[51b73452] | 119 |
|
---|
[b6424d9] | 120 | Expression * build() const { return const_cast<ExpressionNode*>(this)->expr.release(); }
|
---|
[bdd516a] | 121 | private:
|
---|
[e04ef3a] | 122 | bool extension = false;
|
---|
[ac71a86] | 123 | std::unique_ptr<Expression> expr;
|
---|
[c1c1112] | 124 | }; // ExpressionNode
|
---|
[e04ef3a] | 125 |
|
---|
| 126 | template< typename T >
|
---|
[7880579] | 127 | struct maybeBuild_t< Expression, T > {
|
---|
[b6424d9] | 128 | static inline Expression * doit( const T * orig ) {
|
---|
[e04ef3a] | 129 | if ( orig ) {
|
---|
[b6424d9] | 130 | Expression * p = orig->build();
|
---|
[e04ef3a] | 131 | p->set_extension( orig->get_extension() );
|
---|
| 132 | return p;
|
---|
| 133 | } else {
|
---|
[7880579] | 134 | return nullptr;
|
---|
[e04ef3a] | 135 | } // if
|
---|
| 136 | }
|
---|
[51b73452] | 137 | };
|
---|
| 138 |
|
---|
[d9e2280] | 139 | enum class OperKinds {
|
---|
| 140 | // diadic
|
---|
[7bf7fb9] | 141 | SizeOf, AlignOf, OffsetOf, Plus, Minus, Mul, Div, Mod, Or, And,
|
---|
[d9e2280] | 142 | BitOr, BitAnd, Xor, Cast, LShift, RShift, LThan, GThan, LEThan, GEThan, Eq, Neq,
|
---|
[a839867] | 143 | Assign, AtAssn, MulAssn, DivAssn, ModAssn, PlusAssn, MinusAssn, LSAssn, RSAssn, AndAssn, ERAssn, OrAssn,
|
---|
[d9e2280] | 144 | Index, Range,
|
---|
| 145 | // monadic
|
---|
| 146 | UnPlus, UnMinus, AddressOf, PointTo, Neg, BitNeg, Incr, IncrPost, Decr, DecrPost, LabelAddress,
|
---|
| 147 | Ctor, Dtor,
|
---|
[c1c1112] | 148 | }; // OperKinds
|
---|
[51b73452] | 149 |
|
---|
[e82aa9df] | 150 | struct LabelNode {
|
---|
| 151 | std::list< Label > labels;
|
---|
| 152 | };
|
---|
| 153 |
|
---|
[b6424d9] | 154 | Expression * build_constantInteger( const std::string &str );
|
---|
| 155 | Expression * build_constantFloat( const std::string &str );
|
---|
| 156 | Expression * build_constantChar( const std::string &str );
|
---|
[4cb935e] | 157 | Expression * build_constantZeroOne( const std::string &str );
|
---|
[b6424d9] | 158 | ConstantExpr * build_constantStr( const std::string &str );
|
---|
[8780e30] | 159 | Expression * build_field_name_FLOATINGconstant( const std::string & str );
|
---|
| 160 | Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts );
|
---|
| 161 | Expression * build_field_name_REALFRACTIONconstant( const std::string & str );
|
---|
| 162 | Expression * build_field_name_REALDECIMALconstant( const std::string & str );
|
---|
[b6424d9] | 163 |
|
---|
| 164 | NameExpr * build_varref( const std::string * name, bool labelp = false );
|
---|
| 165 | Expression * build_typevalue( DeclarationNode * decl );
|
---|
| 166 |
|
---|
| 167 | Expression * build_cast( DeclarationNode * decl_node, ExpressionNode * expr_node );
|
---|
[fd782b2] | 168 | Expression * build_fieldSel( ExpressionNode * expr_node, Expression * member );
|
---|
| 169 | Expression * build_pfieldSel( ExpressionNode * expr_node, Expression * member );
|
---|
[b6424d9] | 170 | Expression * build_addressOf( ExpressionNode * expr_node );
|
---|
| 171 | Expression * build_sizeOfexpr( ExpressionNode * expr_node );
|
---|
| 172 | Expression * build_sizeOftype( DeclarationNode * decl_node );
|
---|
| 173 | Expression * build_alignOfexpr( ExpressionNode * expr_node );
|
---|
| 174 | Expression * build_alignOftype( DeclarationNode * decl_node );
|
---|
| 175 | Expression * build_offsetOf( DeclarationNode * decl_node, NameExpr * member );
|
---|
| 176 | Expression * build_and( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
|
---|
| 177 | Expression * build_and_or( ExpressionNode * expr_node1, ExpressionNode * expr_node2, bool kind );
|
---|
| 178 | Expression * build_unary_val( OperKinds op, ExpressionNode * expr_node );
|
---|
| 179 | Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node );
|
---|
| 180 | Expression * build_binary_val( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
|
---|
| 181 | Expression * build_binary_ptr( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
|
---|
| 182 | Expression * build_cond( ExpressionNode * expr_node1, ExpressionNode * expr_node2, ExpressionNode * expr_node3 );
|
---|
| 183 | Expression * build_comma( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
|
---|
| 184 | Expression * build_attrexpr( NameExpr * var, ExpressionNode * expr_node );
|
---|
| 185 | Expression * build_attrtype( NameExpr * var, DeclarationNode * decl_node );
|
---|
[2298f728] | 186 | Expression * build_tuple( ExpressionNode * expr_node = nullptr );
|
---|
[b6424d9] | 187 | Expression * build_func( ExpressionNode * function, ExpressionNode * expr_node );
|
---|
| 188 | Expression * build_range( ExpressionNode * low, ExpressionNode * high );
|
---|
| 189 | Expression * build_asmexpr( ExpressionNode * inout, ConstantExpr * constraint, ExpressionNode * operand );
|
---|
| 190 | Expression * build_valexpr( StatementNode * s );
|
---|
| 191 | Expression * build_compoundLiteral( DeclarationNode * decl_node, InitializerNode * kids );
|
---|
[51b73452] | 192 |
|
---|
[7bf7fb9] | 193 | //##############################################################################
|
---|
| 194 |
|
---|
[62e5546] | 195 | struct TypeData;
|
---|
[51b73452] | 196 |
|
---|
[bdd516a] | 197 | class DeclarationNode : public ParseNode {
|
---|
| 198 | public:
|
---|
[5b639ee] | 199 | // These must remain in the same order as the corresponding DeclarationNode names.
|
---|
[68cd1ce] | 200 | enum StorageClass { Extern, Static, Auto, Register, Inline, Fortran, Noreturn, Threadlocal, NoStorageClass, };
|
---|
[5b639ee] | 201 | enum Qualifier { Const, Restrict, Volatile, Lvalue, Atomic, NoQualifier };
|
---|
| 202 | enum BasicType { Void, Bool, Char, Int, Float, Double, LongDouble, NoBasicType };
|
---|
| 203 | enum ComplexType { Complex, Imaginary, NoComplexType };
|
---|
| 204 | enum Signedness { Signed, Unsigned, NoSignedness };
|
---|
| 205 | enum Length { Short, Long, LongLong, NoLength };
|
---|
[faddbd8] | 206 | enum Aggregate { Struct, Union, Trait, NoAggregate };
|
---|
[8f60f0b] | 207 | enum TypeClass { Otype, Dtype, Ftype, Ttype, NoTypeClass };
|
---|
[148f7290] | 208 | enum BuiltinType { Valist, Zero, One, NoBuiltinType };
|
---|
[b87a5ed] | 209 |
|
---|
[b6424d9] | 210 | static const char * storageName[];
|
---|
[5b639ee] | 211 | static const char * qualifierName[];
|
---|
[b6424d9] | 212 | static const char * basicTypeName[];
|
---|
[5b639ee] | 213 | static const char * complexTypeName[];
|
---|
| 214 | static const char * signednessName[];
|
---|
| 215 | static const char * lengthName[];
|
---|
[b6424d9] | 216 | static const char * aggregateName[];
|
---|
| 217 | static const char * typeClassName[];
|
---|
| 218 | static const char * builtinTypeName[];
|
---|
| 219 |
|
---|
| 220 | static DeclarationNode * newFunction( std::string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body, bool newStyle = false );
|
---|
| 221 | static DeclarationNode * newQualifier( Qualifier );
|
---|
[2298f728] | 222 | static DeclarationNode * newForall( DeclarationNode * );
|
---|
[b6424d9] | 223 | static DeclarationNode * newStorageClass( StorageClass );
|
---|
| 224 | static DeclarationNode * newBasicType( BasicType );
|
---|
[5b639ee] | 225 | static DeclarationNode * newComplexType( ComplexType );
|
---|
| 226 | static DeclarationNode * newSignedNess( Signedness sn );
|
---|
| 227 | static DeclarationNode * newLength( Length lnth );
|
---|
[b6424d9] | 228 | static DeclarationNode * newBuiltinType( BuiltinType );
|
---|
[2298f728] | 229 | static DeclarationNode * newFromTypedef( std::string * );
|
---|
[b6424d9] | 230 | static DeclarationNode * newAggregate( Aggregate kind, const std::string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body );
|
---|
| 231 | static DeclarationNode * newEnum( std::string * name, DeclarationNode * constants );
|
---|
| 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
|
---|
[b87a5ed] | 248 |
|
---|
[7880579] | 249 | DeclarationNode();
|
---|
| 250 | ~DeclarationNode();
|
---|
[b6424d9] | 251 | DeclarationNode * clone() const;
|
---|
[7880579] | 252 |
|
---|
[2298f728] | 253 | DeclarationNode * addQualifiers( DeclarationNode * );
|
---|
[413ad05] | 254 | void checkQualifiers( const TypeData *, const TypeData * );
|
---|
[2298f728] | 255 | void checkStorageClasses( DeclarationNode * );
|
---|
| 256 | DeclarationNode * copyStorageClasses( DeclarationNode * );
|
---|
| 257 | DeclarationNode * addType( DeclarationNode * );
|
---|
[b6424d9] | 258 | DeclarationNode * addTypedef();
|
---|
[2298f728] | 259 | DeclarationNode * addAssertions( DeclarationNode * );
|
---|
| 260 | DeclarationNode * addName( std::string * );
|
---|
[58dd019] | 261 | DeclarationNode * addAsmName( ConstantExpr * );
|
---|
[b6424d9] | 262 | DeclarationNode * addBitfield( ExpressionNode * size );
|
---|
| 263 | DeclarationNode * addVarArgs();
|
---|
| 264 | DeclarationNode * addFunctionBody( StatementNode * body );
|
---|
| 265 | DeclarationNode * addOldDeclList( DeclarationNode * list );
|
---|
| 266 | DeclarationNode * addPointer( DeclarationNode * qualifiers );
|
---|
| 267 | DeclarationNode * addArray( DeclarationNode * array );
|
---|
| 268 | DeclarationNode * addNewPointer( DeclarationNode * pointer );
|
---|
| 269 | DeclarationNode * addNewArray( DeclarationNode * array );
|
---|
| 270 | DeclarationNode * addParamList( DeclarationNode * list );
|
---|
| 271 | DeclarationNode * addIdList( DeclarationNode * list ); // old-style functions
|
---|
| 272 | DeclarationNode * addInitializer( InitializerNode * init );
|
---|
| 273 |
|
---|
| 274 | DeclarationNode * cloneType( std::string * newName );
|
---|
| 275 | DeclarationNode * cloneBaseType( DeclarationNode * newdecl );
|
---|
| 276 |
|
---|
| 277 | DeclarationNode * appendList( DeclarationNode * node ) {
|
---|
[99cad3aa] | 278 | return (DeclarationNode *)set_last( node );
|
---|
| 279 | }
|
---|
[b87a5ed] | 280 |
|
---|
[62e5546] | 281 | virtual void print( std::ostream &os, int indent = 0 ) const override;
|
---|
| 282 | virtual void printList( std::ostream &os, int indent = 0 ) const override;
|
---|
[b87a5ed] | 283 |
|
---|
[b6424d9] | 284 | Declaration * build() const;
|
---|
| 285 | ::Type * buildType() const;
|
---|
[b87a5ed] | 286 |
|
---|
| 287 | bool get_hasEllipsis() const;
|
---|
[8b7ee09] | 288 | LinkageSpec::Spec get_linkage() const { return linkage; }
|
---|
[b6424d9] | 289 | DeclarationNode * extractAggregate() const;
|
---|
[4f147cc] | 290 | bool has_enumeratorValue() const { return (bool)enumeratorValue; }
|
---|
[b6424d9] | 291 | ExpressionNode * consume_enumeratorValue() const { return const_cast<DeclarationNode*>(this)->enumeratorValue.release(); }
|
---|
[b87a5ed] | 292 |
|
---|
[7305915] | 293 | bool get_extension() const { return extension; }
|
---|
[b6424d9] | 294 | DeclarationNode * set_extension( bool exten ) { extension = exten; return this; }
|
---|
[c1c1112] | 295 | public:
|
---|
[28307be] | 296 | struct Variable_t {
|
---|
[faddbd8] | 297 | // const std::string * name;
|
---|
[28307be] | 298 | DeclarationNode::TypeClass tyClass;
|
---|
| 299 | DeclarationNode * assertions;
|
---|
| 300 | };
|
---|
| 301 | Variable_t variable;
|
---|
| 302 |
|
---|
| 303 | struct Attr_t {
|
---|
[faddbd8] | 304 | // const std::string * name;
|
---|
[28307be] | 305 | ExpressionNode * expr;
|
---|
| 306 | DeclarationNode * type;
|
---|
| 307 | };
|
---|
| 308 | Attr_t attr;
|
---|
| 309 |
|
---|
[8f6f47d7] | 310 | BuiltinType builtin;
|
---|
| 311 |
|
---|
[b6424d9] | 312 | TypeData * type;
|
---|
[13e3b50] | 313 | StorageClass storageClass;
|
---|
[b6424d9] | 314 | ExpressionNode * bitfieldWidth;
|
---|
[58dd019] | 315 | bool isInline, isNoreturn;
|
---|
[4f147cc] | 316 | std::unique_ptr<ExpressionNode> enumeratorValue;
|
---|
[b87a5ed] | 317 | bool hasEllipsis;
|
---|
[8b7ee09] | 318 | LinkageSpec::Spec linkage;
|
---|
[58dd019] | 319 | ConstantExpr *asmName;
|
---|
[44a81853] | 320 | std::list< Attribute * > attributes;
|
---|
[58dd019] | 321 | InitializerNode * initializer;
|
---|
[7305915] | 322 | bool extension = false;
|
---|
[13e3b50] | 323 | std::string error;
|
---|
[b87a5ed] | 324 |
|
---|
| 325 | static UniqueName anonymous;
|
---|
[1db21619] | 326 | }; // DeclarationNode
|
---|
[51b73452] | 327 |
|
---|
[b6424d9] | 328 | Type * buildType( TypeData * type );
|
---|
[d1625f8] | 329 |
|
---|
[b6424d9] | 330 | static inline Type * maybeMoveBuildType( const DeclarationNode * orig ) {
|
---|
[4f147cc] | 331 | Type* ret = orig ? orig->buildType() : nullptr;
|
---|
| 332 | delete orig;
|
---|
| 333 | return ret;
|
---|
| 334 | }
|
---|
| 335 |
|
---|
[7bf7fb9] | 336 | //##############################################################################
|
---|
| 337 |
|
---|
[ac71a86] | 338 | class StatementNode final : public ParseNode {
|
---|
[bdd516a] | 339 | public:
|
---|
[e82aa9df] | 340 | StatementNode() { stmt = nullptr; }
|
---|
[b6424d9] | 341 | StatementNode( Statement * stmt ) : stmt( stmt ) {}
|
---|
| 342 | StatementNode( DeclarationNode * decl );
|
---|
[e82aa9df] | 343 | virtual ~StatementNode() {}
|
---|
[51b73452] | 344 |
|
---|
[b6424d9] | 345 | virtual StatementNode * clone() const final { assert( false ); return nullptr; }
|
---|
| 346 | Statement * build() const { return const_cast<StatementNode*>(this)->stmt.release(); }
|
---|
[2f22cc4] | 347 |
|
---|
[44a81853] | 348 | virtual StatementNode * add_label( const std::string * name, DeclarationNode * attr = nullptr ) {
|
---|
| 349 | stmt->get_labels().emplace_back( * name, nullptr, attr ? std::move( attr->attributes ) : std::list< Attribute * > {} );
|
---|
| 350 | delete attr;
|
---|
[ac71a86] | 351 | delete name;
|
---|
[2f22cc4] | 352 | return this;
|
---|
| 353 | }
|
---|
| 354 |
|
---|
[b6424d9] | 355 | virtual StatementNode * append_last_case( StatementNode * );
|
---|
[1d4580a] | 356 |
|
---|
[62e5546] | 357 | virtual void print( std::ostream &os, int indent = 0 ) const override {}
|
---|
| 358 | virtual void printList( std::ostream &os, int indent = 0 ) const override {}
|
---|
[2f22cc4] | 359 | private:
|
---|
[ac71a86] | 360 | std::unique_ptr<Statement> stmt;
|
---|
[2f22cc4] | 361 | }; // StatementNode
|
---|
| 362 |
|
---|
[b6424d9] | 363 | Statement * build_expr( ExpressionNode * ctl );
|
---|
[1d4580a] | 364 |
|
---|
[2f22cc4] | 365 | struct ForCtl {
|
---|
[b6424d9] | 366 | ForCtl( ExpressionNode * expr, ExpressionNode * condition, ExpressionNode * change ) :
|
---|
[e82aa9df] | 367 | init( new StatementNode( build_expr( expr ) ) ), condition( condition ), change( change ) {}
|
---|
[b6424d9] | 368 | ForCtl( DeclarationNode * decl, ExpressionNode * condition, ExpressionNode * change ) :
|
---|
[e82aa9df] | 369 | init( new StatementNode( decl ) ), condition( condition ), change( change ) {}
|
---|
[2f22cc4] | 370 |
|
---|
[b6424d9] | 371 | StatementNode * init;
|
---|
| 372 | ExpressionNode * condition;
|
---|
| 373 | ExpressionNode * change;
|
---|
[2f22cc4] | 374 | };
|
---|
| 375 |
|
---|
[b6424d9] | 376 | Statement * build_if( ExpressionNode * ctl, StatementNode * then_stmt, StatementNode * else_stmt );
|
---|
| 377 | Statement * build_switch( ExpressionNode * ctl, StatementNode * stmt );
|
---|
| 378 | Statement * build_case( ExpressionNode * ctl );
|
---|
| 379 | Statement * build_default();
|
---|
| 380 | Statement * build_while( ExpressionNode * ctl, StatementNode * stmt, bool kind = false );
|
---|
| 381 | Statement * build_for( ForCtl * forctl, StatementNode * stmt );
|
---|
| 382 | Statement * build_branch( BranchStmt::Type kind );
|
---|
| 383 | Statement * build_branch( std::string * identifier, BranchStmt::Type kind );
|
---|
| 384 | Statement * build_computedgoto( ExpressionNode * ctl );
|
---|
| 385 | Statement * build_return( ExpressionNode * ctl );
|
---|
| 386 | Statement * build_throw( ExpressionNode * ctl );
|
---|
| 387 | Statement * build_try( StatementNode * try_stmt, StatementNode * catch_stmt, StatementNode * finally_stmt );
|
---|
| 388 | Statement * build_catch( DeclarationNode * decl, StatementNode * stmt, bool catchAny = false );
|
---|
| 389 | Statement * build_finally( StatementNode * stmt );
|
---|
| 390 | Statement * build_compound( StatementNode * first );
|
---|
[2298f728] | 391 | Statement * build_asmstmt( bool voltile, ConstantExpr * instruction, ExpressionNode * output = nullptr, ExpressionNode * input = nullptr, ExpressionNode * clobber = nullptr, LabelNode * gotolabels = nullptr );
|
---|
[7f5566b] | 392 |
|
---|
[7bf7fb9] | 393 | //##############################################################################
|
---|
| 394 |
|
---|
[aefcc3b] | 395 | template< typename SynTreeType, typename NodeType, template< typename, typename...> class Container, typename... Args >
|
---|
| 396 | void buildList( const NodeType * firstNode, Container< SynTreeType *, Args... > &outputList ) {
|
---|
[b87a5ed] | 397 | SemanticError errors;
|
---|
[aefcc3b] | 398 | std::back_insert_iterator< Container< SynTreeType *, Args... > > out( outputList );
|
---|
[b6424d9] | 399 | const NodeType * cur = firstNode;
|
---|
[b87a5ed] | 400 |
|
---|
| 401 | while ( cur ) {
|
---|
| 402 | try {
|
---|
[b6424d9] | 403 | // SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::result_of< decltype(&NodeType::build)(NodeType)>::type >( cur ) );
|
---|
| 404 | SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::pointer_traits< decltype(cur->build())>::element_type >( cur ) );
|
---|
[b87a5ed] | 405 | if ( result ) {
|
---|
[b6424d9] | 406 | * out++ = result;
|
---|
[b87a5ed] | 407 | } // if
|
---|
| 408 | } catch( SemanticError &e ) {
|
---|
| 409 | errors.append( e );
|
---|
| 410 | } // try
|
---|
[7880579] | 411 | cur = dynamic_cast< NodeType * >( cur->get_next() );
|
---|
[b87a5ed] | 412 | } // while
|
---|
[a32b204] | 413 | if ( ! errors.isEmpty() ) {
|
---|
[b87a5ed] | 414 | throw errors;
|
---|
| 415 | } // if
|
---|
[51b73452] | 416 | }
|
---|
| 417 |
|
---|
| 418 | // in DeclarationNode.cc
|
---|
[b6424d9] | 419 | void buildList( const DeclarationNode * firstNode, std::list< Declaration * > &outputList );
|
---|
| 420 | void buildList( const DeclarationNode * firstNode, std::list< DeclarationWithType * > &outputList );
|
---|
| 421 | void buildTypeList( const DeclarationNode * firstNode, std::list< Type * > &outputList );
|
---|
[51b73452] | 422 |
|
---|
[7ecbb7e] | 423 | template< typename SynTreeType, typename NodeType >
|
---|
[b6424d9] | 424 | void buildMoveList( const NodeType * firstNode, std::list< SynTreeType * > &outputList ) {
|
---|
[7ecbb7e] | 425 | buildList(firstNode, outputList);
|
---|
| 426 | delete firstNode;
|
---|
| 427 | }
|
---|
| 428 |
|
---|
[c8dfcd3] | 429 | // in ParseNode.cc
|
---|
| 430 | std::ostream & operator<<( std::ostream & out, const ParseNode * node );
|
---|
[7ecbb7e] | 431 |
|
---|
[bdd516a] | 432 | #endif // PARSENODE_H
|
---|
[51b73452] | 433 |
|
---|
| 434 | // Local Variables: //
|
---|
[b87a5ed] | 435 | // tab-width: 4 //
|
---|
| 436 | // mode: c++ //
|
---|
| 437 | // compile-command: "make install" //
|
---|
[51b73452] | 438 | // End: //
|
---|