source: src/Parser/ParseNode.h @ 6165ce7

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 6165ce7 was 6165ce7, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

remove old zero/one constant, replaced by zero_t/one_t types

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