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