source: src/Parser/ParseNode.h @ a1edafa

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

second attempt add exponential operator

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