source: src/Parser/ParseNode.h @ af9da5f

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since af9da5f was 6d539f83, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

rename functions

  • Property mode set to 100644
File size: 19.7 KB
RevLine 
[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
[76c62b2]11// Last Modified By : Peter A. Buhr
[6d539f83]12// Last Modified On : Mon Apr 30 09:19:17 2018
13// Update Count     : 831
[b87a5ed]14//
15
[6b0b624]16#pragma once
[51b7345]17
[d180746]18#include <algorithm>               // for move
19#include <cassert>                 // for assert, assertf
20#include <iosfwd>                  // for ostream
21#include <iterator>                // for back_insert_iterator
22#include <list>                    // for list
23#include <memory>                  // for unique_ptr, pointer_traits
24#include <string>                  // for string
[51b7345]25
[21f0aa8]26#include "Common/CodeLocation.h"   // for CodeLocation
[d180746]27#include "Common/SemanticError.h"  // for SemanticError
[be9288a]28#include "Common/UniqueName.h"     // for UniqueName
[21f0aa8]29#include "Common/utility.h"        // for maybeClone, maybeBuild
[d180746]30#include "Parser/LinkageSpec.h"    // for Spec
31#include "SynTree/Expression.h"    // for Expression, ConstantExpr (ptr only)
32#include "SynTree/Label.h"         // for Label
33#include "SynTree/Statement.h"     // for Statement, BranchStmt, BranchStmt:...
34#include "SynTree/Type.h"          // for Type, Type::FuncSpecifiers, Type::...
35
36class Attribute;
37class Declaration;
[51b7345]38class DeclarationNode;
[d180746]39class DeclarationWithType;
[d1625f8]40class ExpressionNode;
[d180746]41class Initializer;
42class StatementNode;
[51b7345]43
[7880579]44//##############################################################################
45
[d48e529]46typedef CodeLocation YYLTYPE;
47#define YYLTYPE_IS_DECLARED 1 /* alert the parser that we have our own definition */
48
49extern YYLTYPE yylloc;
[294647b]50
[51b7345]51class ParseNode {
[bdd516a]52  public:
[99cad3aa]53        ParseNode() {};
[2298f728]54        virtual ~ParseNode() { delete next; delete name; };
[b6424d9]55        virtual ParseNode * clone() const = 0;
[51b7345]56
[b6424d9]57        ParseNode * get_next() const { return next; }
58        ParseNode * set_next( ParseNode * newlink ) { next = newlink; return this; }
[1b77274]59
[b6424d9]60        ParseNode * get_last() {
61                ParseNode * current;
[2298f728]62                for ( current = this; current->get_next() != nullptr; current = current->get_next() );
[99cad3aa]63                return current;
64        }
[b6424d9]65        ParseNode * set_last( ParseNode * newlast ) {
[2298f728]66                if ( newlast != nullptr ) get_last()->set_next( newlast );
[99cad3aa]67                return this;
68        }
[51b7345]69
[b3c36f4]70        virtual void print( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const {}
[e4bc986]71        virtual void printList( std::ostream &os, int indent = 0 ) const {
72                print( os, indent );
73                if ( next ) next->print( os, indent );
74        }
[1b77274]75
[b87a5ed]76        static int indent_by;
[7880579]77
[b6424d9]78        ParseNode * next = nullptr;
[2298f728]79        std::string * name = nullptr;
[d48e529]80        CodeLocation location = yylloc;
[7880579]81}; // ParseNode
[51b7345]82
[7bf7fb9]83//##############################################################################
84
[d1625f8]85class InitializerNode : public ParseNode {
86  public:
[2298f728]87        InitializerNode( ExpressionNode *, bool aggrp = false,  ExpressionNode * des = nullptr );
88        InitializerNode( InitializerNode *, bool aggrp = false, ExpressionNode * des = nullptr );
[d1625f8]89        ~InitializerNode();
[a7741435]90        virtual InitializerNode * clone() const { assert( false ); return nullptr; }
[d1625f8]91
[b6424d9]92        ExpressionNode * get_expression() const { return expr; }
[d1625f8]93
[b6424d9]94        InitializerNode * set_designators( ExpressionNode * des ) { designator = des; return this; }
95        ExpressionNode * get_designators() const { return designator; }
[d1625f8]96
[b6424d9]97        InitializerNode * set_maybeConstructed( bool value ) { maybeConstructed = value; return this; }
[d1625f8]98        bool get_maybeConstructed() const { return maybeConstructed; }
99
[b6424d9]100        InitializerNode * next_init() const { return kids; }
[d1625f8]101
102        void print( std::ostream &os, int indent = 0 ) const;
103        void printOneLine( std::ostream & ) const;
104
[b6424d9]105        virtual Initializer * build() const;
[d1625f8]106  private:
[b6424d9]107        ExpressionNode * expr;
[d1625f8]108        bool aggregate;
[b6424d9]109        ExpressionNode * designator;                                            // may be list
110        InitializerNode * kids;
[d1625f8]111        bool maybeConstructed;
[c1c1112]112}; // InitializerNode
[d1625f8]113
114//##############################################################################
115
[ac71a86]116class ExpressionNode final : public ParseNode {
[bdd516a]117  public:
[d1625f8]118        ExpressionNode( Expression * expr = nullptr ) : expr( expr ) {}
119        virtual ~ExpressionNode() {}
[6eb4398]120        virtual ExpressionNode * clone() const override { return expr ? static_cast<ExpressionNode*>((new ExpressionNode( expr->clone() ))->set_next( maybeClone( get_next() ) )) : nullptr; }
[51b7345]121
[e04ef3a]122        bool get_extension() const { return extension; }
[b6424d9]123        ExpressionNode * set_extension( bool exten ) { extension = exten; return this; }
[51b7345]124
[e4bc986]125        virtual void print( std::ostream &os, __attribute__((unused)) int indent = 0 ) const override {
126                os << expr.get() << std::endl;
127        }
[b3c36f4]128        void printOneLine( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const {}
[ac71a86]129
130        template<typename T>
[513e165]131        bool isExpressionType() const { return nullptr != dynamic_cast<T>(expr.get()); }
[51b7345]132
[a7c90d4]133        Expression * build() const { return const_cast<ExpressionNode *>(this)->expr.release(); }
[bdd516a]134  private:
[e04ef3a]135        bool extension = false;
[ac71a86]136        std::unique_ptr<Expression> expr;
[c1c1112]137}; // ExpressionNode
[e04ef3a]138
139template< typename T >
[7880579]140struct maybeBuild_t< Expression, T > {
[b6424d9]141        static inline Expression * doit( const T * orig ) {
[e04ef3a]142                if ( orig ) {
[b6424d9]143                        Expression * p = orig->build();
[e04ef3a]144                        p->set_extension( orig->get_extension() );
[64ac636]145                        p->location = orig->location;
[e04ef3a]146                        return p;
147                } else {
[7880579]148                        return nullptr;
[e04ef3a]149                } // if
150        }
[51b7345]151};
152
[e5f2a67]153// Must harmonize with OperName.
[d9e2280]154enum class OperKinds {
155        // diadic
[e5f2a67]156        SizeOf, AlignOf, OffsetOf, Plus, Minus, Exp, Mul, Div, Mod, Or, And,
[d9e2280]157        BitOr, BitAnd, Xor, Cast, LShift, RShift, LThan, GThan, LEThan, GEThan, Eq, Neq,
[e5f2a67]158        Assign, AtAssn, ExpAssn, MulAssn, DivAssn, ModAssn, PlusAssn, MinusAssn, LSAssn, RSAssn, AndAssn, ERAssn, OrAssn,
[d9e2280]159        Index, Range,
160        // monadic
[5809461]161        UnPlus, UnMinus, AddressOf, PointTo, Neg, BitNeg, Incr, IncrPost, Decr, DecrPost,
[d9e2280]162        Ctor, Dtor,
[c1c1112]163}; // OperKinds
[51b7345]164
[e82aa9df]165struct LabelNode {
166        std::list< Label > labels;
167};
168
[76c62b2]169Expression * build_constantInteger( std::string &str );
170Expression * build_constantFloat( std::string &str );
171Expression * build_constantChar( std::string &str );
[e612146c]172Expression * build_constantStr( std::string &str );
[930f69e]173Expression * build_field_name_FLOATING_FRACTIONconstant( const std::string & str );
174Expression * build_field_name_FLOATING_DECIMALconstant( const std::string & str );
[8780e30]175Expression * build_field_name_FLOATINGconstant( const std::string & str );
176Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts );
[b6424d9]177
[d7dc824]178NameExpr * build_varref( const std::string * name );
[b6424d9]179
180Expression * build_cast( DeclarationNode * decl_node, ExpressionNode * expr_node );
[9a705dc8]181Expression * build_keyword_cast( KeywordCastExpr::Target target, ExpressionNode * expr_node );
[a5f0529]182Expression * build_virtual_cast( DeclarationNode * decl_node, ExpressionNode * expr_node );
[fd782b2]183Expression * build_fieldSel( ExpressionNode * expr_node, Expression * member );
184Expression * build_pfieldSel( ExpressionNode * expr_node, Expression * member );
[b6424d9]185Expression * build_offsetOf( DeclarationNode * decl_node, NameExpr * member );
186Expression * build_and( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
187Expression * build_and_or( ExpressionNode * expr_node1, ExpressionNode * expr_node2, bool kind );
188Expression * build_unary_val( OperKinds op, ExpressionNode * expr_node );
189Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node );
190Expression * build_binary_val( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
191Expression * build_binary_ptr( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
192Expression * build_cond( ExpressionNode * expr_node1, ExpressionNode * expr_node2, ExpressionNode * expr_node3 );
[2298f728]193Expression * build_tuple( ExpressionNode * expr_node = nullptr );
[b6424d9]194Expression * build_func( ExpressionNode * function, ExpressionNode * expr_node );
195Expression * build_compoundLiteral( DeclarationNode * decl_node, InitializerNode * kids );
[51b7345]196
[7bf7fb9]197//##############################################################################
198
[62e5546]199struct TypeData;
[51b7345]200
[bdd516a]201class DeclarationNode : public ParseNode {
202  public:
[201aeb9]203        // These enumerations must harmonize with their names.
204        enum BasicType { Void, Bool, Char, Int, Float, Double, LongDouble, Int128, Float80, Float128, NoBasicType };
[dd020c0]205        static const char * basicTypeNames[];
[201aeb9]206        enum ComplexType { Complex, Imaginary, NoComplexType };
[dd020c0]207        static const char * complexTypeNames[];
[201aeb9]208        enum Signedness { Signed, Unsigned, NoSignedness };
[dd020c0]209        static const char * signednessNames[];
[201aeb9]210        enum Length { Short, Long, LongLong, NoLength };
[dd020c0]211        static const char * lengthNames[];
[c27fb59]212        enum Aggregate { Struct, Union, Exception, Trait, Coroutine, Monitor, Thread, NoAggregate };
[dd020c0]213        static const char * aggregateNames[];
[201aeb9]214        enum TypeClass { Otype, Dtype, Ftype, Ttype, NoTypeClass };
[dd020c0]215        static const char * typeClassNames[];
[201aeb9]216        enum BuiltinType { Valist, Zero, One, NoBuiltinType };
[dd020c0]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 * );
[2a8427c6]229        static DeclarationNode * newFunction( std::string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body );
[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 );
[ce8c12f]239        static DeclarationNode * newPointer( DeclarationNode * qualifiers, OperKinds kind );
[b6424d9]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
[f6e3e34]249        static DeclarationNode * newStaticAssert( ExpressionNode * condition, Expression * message );
[b87a5ed]250
[7880579]251        DeclarationNode();
252        ~DeclarationNode();
[6a0d4d61]253        DeclarationNode * clone() const override;
[7880579]254
[2298f728]255        DeclarationNode * addQualifiers( DeclarationNode * );
[413ad05]256        void checkQualifiers( const TypeData *, const TypeData * );
[a7c90d4]257        void checkSpecifiers( DeclarationNode * );
258        DeclarationNode * copySpecifiers( DeclarationNode * );
[2298f728]259        DeclarationNode * addType( DeclarationNode * );
[b6424d9]260        DeclarationNode * addTypedef();
[2298f728]261        DeclarationNode * addAssertions( DeclarationNode * );
262        DeclarationNode * addName( std::string * );
[c0aa336]263        DeclarationNode * addAsmName( DeclarationNode * );
[b6424d9]264        DeclarationNode * addBitfield( ExpressionNode * size );
265        DeclarationNode * addVarArgs();
[c453ac4]266        DeclarationNode * addFunctionBody( StatementNode * body, ExpressionNode * with = nullptr );
[b6424d9]267        DeclarationNode * addOldDeclList( DeclarationNode * list );
[c0aa336]268        DeclarationNode * setBase( TypeData * newType );
269        DeclarationNode * copyAttribute( DeclarationNode * attr );
[b6424d9]270        DeclarationNode * addPointer( DeclarationNode * qualifiers );
271        DeclarationNode * addArray( DeclarationNode * array );
272        DeclarationNode * addNewPointer( DeclarationNode * pointer );
273        DeclarationNode * addNewArray( DeclarationNode * array );
274        DeclarationNode * addParamList( DeclarationNode * list );
275        DeclarationNode * addIdList( DeclarationNode * list ); // old-style functions
276        DeclarationNode * addInitializer( InitializerNode * init );
[67cf18c]277        DeclarationNode * addTypeInitializer( DeclarationNode * init );
[b6424d9]278
279        DeclarationNode * cloneType( std::string * newName );
280        DeclarationNode * cloneBaseType( DeclarationNode * newdecl );
281
282        DeclarationNode * appendList( DeclarationNode * node ) {
[99cad3aa]283                return (DeclarationNode *)set_last( node );
284        }
[b87a5ed]285
[b3c36f4]286        virtual void print( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const override;
287        virtual void printList( __attribute__((unused)) std::ostream &os, __attribute__((unused)) int indent = 0 ) const override;
[b87a5ed]288
[b6424d9]289        Declaration * build() const;
[a7c90d4]290        Type * buildType() const;
[b87a5ed]291
[8b7ee09]292        LinkageSpec::Spec get_linkage() const { return linkage; }
[b6424d9]293        DeclarationNode * extractAggregate() const;
[4f147cc]294        bool has_enumeratorValue() const { return (bool)enumeratorValue; }
[a7c90d4]295        ExpressionNode * consume_enumeratorValue() const { return const_cast<DeclarationNode *>(this)->enumeratorValue.release(); }
[b87a5ed]296
[7305915]297        bool get_extension() const { return extension; }
[b6424d9]298        DeclarationNode * set_extension( bool exten ) { extension = exten; return this; }
[c1c1112]299  public:
[481115f]300        DeclarationNode * get_last() { return (DeclarationNode *)ParseNode::get_last(); }
301
[28307be]302        struct Variable_t {
[faddbd8]303//              const std::string * name;
[28307be]304                DeclarationNode::TypeClass tyClass;
305                DeclarationNode * assertions;
[67cf18c]306                DeclarationNode * initializer;
[28307be]307        };
308        Variable_t variable;
309
310        struct Attr_t {
[faddbd8]311//              const std::string * name;
[28307be]312                ExpressionNode * expr;
313                DeclarationNode * type;
314        };
315        Attr_t attr;
316
[f6e3e34]317        struct StaticAssert_t {
318                ExpressionNode * condition;
319                Expression * message;
320        };
321        StaticAssert_t assert;
322
[8f6f47d7]323        BuiltinType builtin;
324
[b6424d9]325        TypeData * type;
[dd020c0]326
[ddfd945]327        Type::FuncSpecifiers funcSpecs;
[68fe077a]328        Type::StorageClasses storageClasses;
[dd020c0]329
[b6424d9]330        ExpressionNode * bitfieldWidth;
[4f147cc]331        std::unique_ptr<ExpressionNode> enumeratorValue;
[b87a5ed]332        bool hasEllipsis;
[8b7ee09]333        LinkageSpec::Spec linkage;
[61fc4f6]334        Expression * asmName;
[44a81853]335        std::list< Attribute * > attributes;
[58dd019]336        InitializerNode * initializer;
[7305915]337        bool extension = false;
[13e3b50]338        std::string error;
[e994912]339        StatementNode * asmStmt;
[b87a5ed]340
341        static UniqueName anonymous;
[1db21619]342}; // DeclarationNode
[51b7345]343
[b6424d9]344Type * buildType( TypeData * type );
[d1625f8]345
[b6424d9]346static inline Type * maybeMoveBuildType( const DeclarationNode * orig ) {
[a7c90d4]347        Type * ret = orig ? orig->buildType() : nullptr;
[4f147cc]348        delete orig;
349        return ret;
350}
351
[7bf7fb9]352//##############################################################################
353
[ac71a86]354class StatementNode final : public ParseNode {
[bdd516a]355  public:
[e82aa9df]356        StatementNode() { stmt = nullptr; }
[b6424d9]357        StatementNode( Statement * stmt ) : stmt( stmt ) {}
358        StatementNode( DeclarationNode * decl );
[e82aa9df]359        virtual ~StatementNode() {}
[51b7345]360
[b6424d9]361        virtual StatementNode * clone() const final { assert( false ); return nullptr; }
[a7c90d4]362        Statement * build() const { return const_cast<StatementNode *>(this)->stmt.release(); }
[2f22cc4]363
[44a81853]364        virtual StatementNode * add_label( const std::string * name, DeclarationNode * attr = nullptr ) {
365                stmt->get_labels().emplace_back( * name, nullptr, attr ? std::move( attr->attributes ) : std::list< Attribute * > {} );
366                delete attr;
[ac71a86]367                delete name;
[2f22cc4]368                return this;
369        }
370
[b6424d9]371        virtual StatementNode * append_last_case( StatementNode * );
[1d4580a]372
[e4bc986]373        virtual void print( std::ostream &os, __attribute__((unused)) int indent = 0 ) const override {
374                os << stmt.get() << std::endl;
375        }
[2f22cc4]376  private:
[ac71a86]377        std::unique_ptr<Statement> stmt;
[2f22cc4]378}; // StatementNode
379
[b6424d9]380Statement * build_expr( ExpressionNode * ctl );
[1d4580a]381
[936e9f4]382struct IfCtl {
383        IfCtl( DeclarationNode * decl, ExpressionNode * condition ) :
384                init( decl ? new StatementNode( decl ) : nullptr ), condition( condition ) {}
385
386        StatementNode * init;
387        ExpressionNode * condition;
388};
389
[2f22cc4]390struct ForCtl {
[b6424d9]391        ForCtl( ExpressionNode * expr, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]392                init( new StatementNode( build_expr( expr ) ) ), condition( condition ), change( change ) {}
[b6424d9]393        ForCtl( DeclarationNode * decl, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]394                init( new StatementNode( decl ) ), condition( condition ), change( change ) {}
[2f22cc4]395
[b6424d9]396        StatementNode * init;
397        ExpressionNode * condition;
398        ExpressionNode * change;
[2f22cc4]399};
400
[936e9f4]401Statement * build_if( IfCtl * ctl, StatementNode * then_stmt, StatementNode * else_stmt );
[6a276a0]402Statement * build_switch( bool isSwitch, ExpressionNode * ctl, StatementNode * stmt );
[b6424d9]403Statement * build_case( ExpressionNode * ctl );
404Statement * build_default();
405Statement * build_while( ExpressionNode * ctl, StatementNode * stmt, bool kind = false );
406Statement * build_for( ForCtl * forctl, StatementNode * stmt );
407Statement * build_branch( BranchStmt::Type kind );
408Statement * build_branch( std::string * identifier, BranchStmt::Type kind );
409Statement * build_computedgoto( ExpressionNode * ctl );
410Statement * build_return( ExpressionNode * ctl );
411Statement * build_throw( ExpressionNode * ctl );
[daf1af8]412Statement * build_resume( ExpressionNode * ctl );
413Statement * build_resume_at( ExpressionNode * ctl , ExpressionNode * target );
[b6424d9]414Statement * build_try( StatementNode * try_stmt, StatementNode * catch_stmt, StatementNode * finally_stmt );
[ca78437]415Statement * build_catch( CatchStmt::Kind kind, DeclarationNode *decl, ExpressionNode *cond, StatementNode *body );
[b6424d9]416Statement * build_finally( StatementNode * stmt );
417Statement * build_compound( StatementNode * first );
[6d539f83]418Statement * build_asm( bool voltile, Expression * instruction, ExpressionNode * output = nullptr, ExpressionNode * input = nullptr, ExpressionNode * clobber = nullptr, LabelNode * gotolabels = nullptr );
419Statement * build_directive( std::string * directive );
[135b431]420WaitForStmt * build_waitfor( ExpressionNode * target, StatementNode * stmt, ExpressionNode * when );
421WaitForStmt * build_waitfor( ExpressionNode * target, StatementNode * stmt, ExpressionNode * when, WaitForStmt * existing );
422WaitForStmt * build_waitfor_timeout( ExpressionNode * timeout, StatementNode * stmt, ExpressionNode * when );
423WaitForStmt * build_waitfor_timeout( ExpressionNode * timeout, StatementNode * stmt, ExpressionNode * when, StatementNode * else_stmt, ExpressionNode * else_when );
[a378ca7]424WithStmt * build_with( ExpressionNode * exprs, StatementNode * stmt );
[7f5566b]425
[7bf7fb9]426//##############################################################################
427
[aefcc3b]428template< typename SynTreeType, typename NodeType, template< typename, typename...> class Container, typename... Args >
429void buildList( const NodeType * firstNode, Container< SynTreeType *, Args... > &outputList ) {
[a16764a6]430        SemanticErrorException errors;
[aefcc3b]431        std::back_insert_iterator< Container< SynTreeType *, Args... > > out( outputList );
[b6424d9]432        const NodeType * cur = firstNode;
[b87a5ed]433
434        while ( cur ) {
435                try {
[b6424d9]436                        SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::pointer_traits< decltype(cur->build())>::element_type >( cur ) );
[b87a5ed]437                        if ( result ) {
[294647b]438                                result->location = cur->location;
[b6424d9]439                                * out++ = result;
[046e04a]440                        } else {
441                                assertf(false, "buildList unknown type");
[b87a5ed]442                        } // if
[a16764a6]443                } catch( SemanticErrorException &e ) {
[b87a5ed]444                        errors.append( e );
445                } // try
[7880579]446                cur = dynamic_cast< NodeType * >( cur->get_next() );
[b87a5ed]447        } // while
[a32b204]448        if ( ! errors.isEmpty() ) {
[b87a5ed]449                throw errors;
450        } // if
[51b7345]451}
452
453// in DeclarationNode.cc
[b6424d9]454void buildList( const DeclarationNode * firstNode, std::list< Declaration * > &outputList );
455void buildList( const DeclarationNode * firstNode, std::list< DeclarationWithType * > &outputList );
456void buildTypeList( const DeclarationNode * firstNode, std::list< Type * > &outputList );
[51b7345]457
[7ecbb7e]458template< typename SynTreeType, typename NodeType >
[b6424d9]459void buildMoveList( const NodeType * firstNode, std::list< SynTreeType * > &outputList ) {
[3a5131ed]460        buildList( firstNode, outputList );
[7ecbb7e]461        delete firstNode;
462}
463
[c8dfcd3]464// in ParseNode.cc
465std::ostream & operator<<( std::ostream & out, const ParseNode * node );
[7ecbb7e]466
[51b7345]467// Local Variables: //
[b87a5ed]468// tab-width: 4 //
469// mode: c++ //
470// compile-command: "make install" //
[51b7345]471// End: //
Note: See TracBrowser for help on using the repository browser.