source: src/ResolvExpr/Resolver.cc @ 23b6643f

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 23b6643f was 23b6643f, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into tuples

Conflicts:

src/Makefile.in
src/ResolvExpr/Unify.cc
src/SynTree/Type.h

  • Property mode set to 100644
File size: 19.8 KB
Line 
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//
7// Resolver.cc --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 12:17:01 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue Jul 12 17:45:42 2016
13// Update Count     : 204
14//
15
16#include "Resolver.h"
17#include "AlternativeFinder.h"
18#include "Alternative.h"
19#include "RenameVars.h"
20#include "ResolveTypeof.h"
21#include "typeops.h"
22#include "SynTree/Statement.h"
23#include "SynTree/Type.h"
24#include "SynTree/Expression.h"
25#include "SynTree/Initializer.h"
26#include "SymTab/Indexer.h"
27#include "SymTab/Autogen.h"
28#include "Common/utility.h"
29#include "InitTweak/InitTweak.h"
30
31#include <iostream>
32using namespace std;
33
34namespace ResolvExpr {
35        class Resolver : public SymTab::Indexer {
36          public:
37                Resolver() : SymTab::Indexer( false ), switchType( 0 ) {}
38
39                virtual void visit( FunctionDecl *functionDecl );
40                virtual void visit( ObjectDecl *functionDecl );
41                virtual void visit( TypeDecl *typeDecl );
42                virtual void visit( EnumDecl * enumDecl );
43
44                virtual void visit( ArrayType * at );
45                virtual void visit( PointerType * at );
46
47                virtual void visit( ExprStmt *exprStmt );
48                virtual void visit( AsmExpr *asmExpr );
49                virtual void visit( AsmStmt *asmStmt );
50                virtual void visit( IfStmt *ifStmt );
51                virtual void visit( WhileStmt *whileStmt );
52                virtual void visit( ForStmt *forStmt );
53                virtual void visit( SwitchStmt *switchStmt );
54                virtual void visit( CaseStmt *caseStmt );
55                virtual void visit( BranchStmt *branchStmt );
56                virtual void visit( ReturnStmt *returnStmt );
57
58                virtual void visit( SingleInit *singleInit );
59                virtual void visit( ListInit *listInit );
60                virtual void visit( ConstructorInit *ctorInit );
61          private:
62        typedef std::list< Initializer * >::iterator InitIterator;
63
64                template< typename PtrType >
65                void handlePtrType( PtrType * type );
66
67          void resolveAggrInit( AggregateDecl *, InitIterator &, InitIterator & );
68          void resolveSingleAggrInit( Declaration *, InitIterator &, InitIterator & );
69          void fallbackInit( ConstructorInit * ctorInit );
70                Type * functionReturn;
71                Type *initContext;
72                Type *switchType;
73                bool inEnumDecl = false;
74        };
75
76        void resolve( std::list< Declaration * > translationUnit ) {
77                Resolver resolver;
78                acceptAll( translationUnit, resolver );
79#if 0
80                resolver.print( cerr );
81                for ( std::list< Declaration * >::iterator i = translationUnit.begin(); i != translationUnit.end(); ++i ) {
82                        (*i)->print( std::cerr );
83                        (*i)->accept( resolver );
84                } // for
85#endif
86        }
87
88        Expression *resolveInVoidContext( Expression *expr, const SymTab::Indexer &indexer ) {
89                TypeEnvironment env;
90                return resolveInVoidContext( expr, indexer, env );
91        }
92
93
94        namespace {
95                void finishExpr( Expression *expr, const TypeEnvironment &env ) {
96                        expr->set_env( new TypeSubstitution );
97                        env.makeSubstitution( *expr->get_env() );
98                }
99        } // namespace
100
101        Expression *findVoidExpression( Expression *untyped, const SymTab::Indexer &indexer ) {
102                global_renamer.reset();
103                TypeEnvironment env;
104                Expression *newExpr = resolveInVoidContext( untyped, indexer, env );
105                finishExpr( newExpr, env );
106                return newExpr;
107        }
108
109        namespace {
110                Expression *findSingleExpression( Expression *untyped, const SymTab::Indexer &indexer ) {
111                        TypeEnvironment env;
112                        AlternativeFinder finder( indexer, env );
113                        finder.find( untyped );
114#if 0
115                        if ( finder.get_alternatives().size() != 1 ) {
116                                std::cout << "untyped expr is ";
117                                untyped->print( std::cout );
118                                std::cout << std::endl << "alternatives are:";
119                                for ( std::list< Alternative >::const_iterator i = finder.get_alternatives().begin(); i != finder.get_alternatives().end(); ++i ) {
120                                        i->print( std::cout );
121                                } // for
122                        } // if
123#endif
124                        assert( finder.get_alternatives().size() == 1 );
125                        Alternative &choice = finder.get_alternatives().front();
126                        Expression *newExpr = choice.expr->clone();
127                        finishExpr( newExpr, choice.env );
128                        return newExpr;
129                }
130
131                bool isIntegralType( Type *type ) {
132                        if ( dynamic_cast< EnumInstType * >( type ) ) {
133                                return true;
134                        } else if ( BasicType *bt = dynamic_cast< BasicType * >( type ) ) {
135                                return bt->isInteger();
136                        } else if ( dynamic_cast< ZeroType* >( type ) != nullptr || dynamic_cast< OneType* >( type ) != nullptr ) {
137                                return true;
138                        } else {
139                                return false;
140                        } // if
141                }
142
143                Expression *findIntegralExpression( Expression *untyped, const SymTab::Indexer &indexer ) {
144                        TypeEnvironment env;
145                        AlternativeFinder finder( indexer, env );
146                        finder.find( untyped );
147#if 0
148                        if ( finder.get_alternatives().size() != 1 ) {
149                                std::cout << "untyped expr is ";
150                                untyped->print( std::cout );
151                                std::cout << std::endl << "alternatives are:";
152                                for ( std::list< Alternative >::const_iterator i = finder.get_alternatives().begin(); i != finder.get_alternatives().end(); ++i ) {
153                                        i->print( std::cout );
154                                } // for
155                        } // if
156#endif
157                        Expression *newExpr = 0;
158                        const TypeEnvironment *newEnv = 0;
159                        for ( AltList::const_iterator i = finder.get_alternatives().begin(); i != finder.get_alternatives().end(); ++i ) {
160                                if ( i->expr->get_result()->size() == 1 && isIntegralType( i->expr->get_result() ) ) {
161                                        if ( newExpr ) {
162                                                throw SemanticError( "Too many interpretations for case control expression", untyped );
163                                        } else {
164                                                newExpr = i->expr->clone();
165                                                newEnv = &i->env;
166                                        } // if
167                                } // if
168                        } // for
169                        if ( ! newExpr ) {
170                                throw SemanticError( "No interpretations for case control expression", untyped );
171                        } // if
172                        finishExpr( newExpr, *newEnv );
173                        return newExpr;
174                }
175
176        }
177
178        void Resolver::visit( ObjectDecl *objectDecl ) {
179                Type *new_type = resolveTypeof( objectDecl->get_type(), *this );
180                objectDecl->set_type( new_type );
181                // To handle initialization of routine pointers, e.g., int (*fp)(int) = foo(), means that class-variable
182                // initContext is changed multiple time because the LHS is analysed twice. The second analysis changes
183                // initContext because of a function type can contain object declarations in the return and parameter types. So
184                // each value of initContext is retained, so the type on the first analysis is preserved and used for selecting
185                // the RHS.
186                Type *temp = initContext;
187                initContext = new_type;
188                if ( inEnumDecl && dynamic_cast< EnumInstType * >( initContext ) ) {
189                        // enumerator initializers should not use the enum type to initialize, since
190                        // the enum type is still incomplete at this point. Use signed int instead.
191                        initContext = new BasicType( Type::Qualifiers(), BasicType::SignedInt );
192                }
193                SymTab::Indexer::visit( objectDecl );
194                if ( inEnumDecl && dynamic_cast< EnumInstType * >( initContext ) ) {
195                        // delete newly created signed int type
196                        delete initContext;
197                }
198                initContext = temp;
199        }
200
201        template< typename PtrType >
202        void Resolver::handlePtrType( PtrType * type ) {
203                if ( type->get_dimension() ) {
204                        CastExpr *castExpr = new CastExpr( type->get_dimension(), SymTab::SizeType->clone() );
205                        Expression *newExpr = findSingleExpression( castExpr, *this );
206                        delete type->get_dimension();
207                        type->set_dimension( newExpr );
208                }
209        }
210
211        void Resolver::visit( ArrayType * at ) {
212                handlePtrType( at );
213                Visitor::visit( at );
214        }
215
216        void Resolver::visit( PointerType * pt ) {
217                handlePtrType( pt );
218                Visitor::visit( pt );
219        }
220
221        void Resolver::visit( TypeDecl *typeDecl ) {
222                if ( typeDecl->get_base() ) {
223                        Type *new_type = resolveTypeof( typeDecl->get_base(), *this );
224                        typeDecl->set_base( new_type );
225                } // if
226                SymTab::Indexer::visit( typeDecl );
227        }
228
229        void Resolver::visit( FunctionDecl *functionDecl ) {
230#if 0
231                std::cout << "resolver visiting functiondecl ";
232                functionDecl->print( std::cout );
233                std::cout << std::endl;
234#endif
235                Type *new_type = resolveTypeof( functionDecl->get_type(), *this );
236                functionDecl->set_type( new_type );
237                ValueGuard< Type * > oldFunctionReturn( functionReturn );
238                functionReturn = ResolvExpr::extractResultType( functionDecl->get_functionType() );
239                SymTab::Indexer::visit( functionDecl );
240        }
241
242        void Resolver::visit( EnumDecl * enumDecl ) {
243                // in case we decide to allow nested enums
244                bool oldInEnumDecl = inEnumDecl;
245                inEnumDecl = true;
246                SymTab::Indexer::visit( enumDecl );
247                inEnumDecl = oldInEnumDecl;
248        }
249
250        void Resolver::visit( ExprStmt *exprStmt ) {
251                if ( exprStmt->get_expr() ) {
252                        Expression *newExpr = findVoidExpression( exprStmt->get_expr(), *this );
253                        delete exprStmt->get_expr();
254                        exprStmt->set_expr( newExpr );
255                } // if
256        }
257
258        void Resolver::visit( AsmExpr *asmExpr ) {
259                Expression *newExpr = findVoidExpression( asmExpr->get_operand(), *this );
260                delete asmExpr->get_operand();
261                asmExpr->set_operand( newExpr );
262                if ( asmExpr->get_inout() ) {
263                        newExpr = findVoidExpression( asmExpr->get_inout(), *this );
264                        delete asmExpr->get_inout();
265                        asmExpr->set_inout( newExpr );
266                } // if
267        }
268
269        void Resolver::visit( AsmStmt *asmStmt ) {
270                acceptAll( asmStmt->get_input(), *this);
271                acceptAll( asmStmt->get_output(), *this);
272        }
273
274        void Resolver::visit( IfStmt *ifStmt ) {
275                Expression *newExpr = findSingleExpression( ifStmt->get_condition(), *this );
276                delete ifStmt->get_condition();
277                ifStmt->set_condition( newExpr );
278                Visitor::visit( ifStmt );
279        }
280
281        void Resolver::visit( WhileStmt *whileStmt ) {
282                Expression *newExpr = findSingleExpression( whileStmt->get_condition(), *this );
283                delete whileStmt->get_condition();
284                whileStmt->set_condition( newExpr );
285                Visitor::visit( whileStmt );
286        }
287
288        void Resolver::visit( ForStmt *forStmt ) {
289                SymTab::Indexer::visit( forStmt );
290
291                if ( forStmt->get_condition() ) {
292                        Expression * newExpr = findSingleExpression( forStmt->get_condition(), *this );
293                        delete forStmt->get_condition();
294                        forStmt->set_condition( newExpr );
295                } // if
296
297                if ( forStmt->get_increment() ) {
298                        Expression * newExpr = findVoidExpression( forStmt->get_increment(), *this );
299                        delete forStmt->get_increment();
300                        forStmt->set_increment( newExpr );
301                } // if
302        }
303
304        template< typename SwitchClass >
305        void handleSwitchStmt( SwitchClass *switchStmt, SymTab::Indexer &visitor ) {
306                Expression *newExpr;
307                newExpr = findIntegralExpression( switchStmt->get_condition(), visitor );
308                delete switchStmt->get_condition();
309                switchStmt->set_condition( newExpr );
310
311                visitor.Visitor::visit( switchStmt );
312        }
313
314        void Resolver::visit( SwitchStmt *switchStmt ) {
315                handleSwitchStmt( switchStmt, *this );
316        }
317
318        void Resolver::visit( CaseStmt *caseStmt ) {
319                Visitor::visit( caseStmt );
320        }
321
322        void Resolver::visit( BranchStmt *branchStmt ) {
323                // must resolve the argument for a computed goto
324                if ( branchStmt->get_type() == BranchStmt::Goto ) { // check for computed goto statement
325                        if ( Expression * arg = branchStmt->get_computedTarget() ) {
326                                VoidType v = Type::Qualifiers();                // cast to void * for the alternative finder
327                                PointerType pt( Type::Qualifiers(), v.clone() );
328                                CastExpr * castExpr = new CastExpr( arg, pt.clone() );
329                                Expression * newExpr = findSingleExpression( castExpr, *this ); // find best expression
330                                branchStmt->set_target( newExpr );
331                        } // if
332                } // if
333        }
334
335        void Resolver::visit( ReturnStmt *returnStmt ) {
336                if ( returnStmt->get_expr() ) {
337                        CastExpr *castExpr = new CastExpr( returnStmt->get_expr(), functionReturn->clone() );
338                        Expression *newExpr = findSingleExpression( castExpr, *this );
339                        delete castExpr;
340                        returnStmt->set_expr( newExpr );
341                } // if
342        }
343
344        template< typename T >
345        bool isCharType( T t ) {
346                if ( BasicType * bt = dynamic_cast< BasicType * >( t ) ) {
347                        return bt->get_kind() == BasicType::Char || bt->get_kind() == BasicType::SignedChar ||
348                                bt->get_kind() == BasicType::UnsignedChar;
349                }
350                return false;
351        }
352
353        void Resolver::visit( SingleInit *singleInit ) {
354                if ( singleInit->get_value() ) {
355#if 0
356                        if (NameExpr * ne = dynamic_cast<NameExpr*>(singleInit->get_value())) {
357                                string n = ne->get_name();
358                                if (n == "0") {
359                                        initContext = new BasicType(Type::Qualifiers(),
360                                                                                                BasicType::SignedInt);
361                                } else {
362                                        DeclarationWithType * decl = lookupId( n );
363                                        initContext = decl->get_type();
364                                }
365                        } else if (ConstantExpr * e =
366                                           dynamic_cast<ConstantExpr*>(singleInit->get_value())) {
367                                Constant *c = e->get_constant();
368                                initContext = c->get_type();
369                        } else {
370                                assert(0);
371                        }
372#endif
373                        CastExpr *castExpr = new CastExpr( singleInit->get_value(), initContext->clone() );
374                        Expression *newExpr = findSingleExpression( castExpr, *this );
375                        delete castExpr;
376                        singleInit->set_value( newExpr );
377
378                        // check if initializing type is char[]
379                        if ( ArrayType * at = dynamic_cast< ArrayType * >( initContext ) ) {
380                                if ( isCharType( at->get_base() ) ) {
381                                        // check if the resolved type is char *
382                                        if ( PointerType * pt = dynamic_cast< PointerType *>( newExpr->get_result() ) ) {
383                                                if ( isCharType( pt->get_base() ) ) {
384                                                        // strip cast if we're initializing a char[] with a char *, e.g.  char x[] = "hello";
385                                                        CastExpr *ce = dynamic_cast< CastExpr * >( newExpr );
386                                                        singleInit->set_value( ce->get_arg() );
387                                                        ce->set_arg( NULL );
388                                                        delete ce;
389                                                }
390                                        }
391                                }
392                        }
393                } // if
394//      singleInit->get_value()->accept( *this );
395        }
396
397        void Resolver::resolveSingleAggrInit( Declaration * dcl, InitIterator & init, InitIterator & initEnd ) {
398                DeclarationWithType * dt = dynamic_cast< DeclarationWithType * >( dcl );
399                assert( dt );
400                initContext = dt->get_type();
401                try {
402                        if ( init == initEnd ) return; // stop when there are no more initializers
403                        (*init)->accept( *this );
404                        ++init; // made it past an initializer
405                } catch( SemanticError & ) {
406                        // need to delve deeper, if you can
407                        if ( StructInstType * sit = dynamic_cast< StructInstType * >( dt->get_type() ) ) {
408                                resolveAggrInit( sit->get_baseStruct(), init, initEnd );
409                        } else if ( UnionInstType * uit = dynamic_cast< UnionInstType * >( dt->get_type() ) ) {
410                                resolveAggrInit( uit->get_baseUnion(), init, initEnd );
411                        } else {
412                                // member is not an aggregate type, so can't go any deeper
413
414                                // might need to rethink what is being thrown
415                                throw;
416                        } // if
417                }
418        }
419
420        void Resolver::resolveAggrInit( AggregateDecl * aggr, InitIterator & init, InitIterator & initEnd ) {
421                if ( StructDecl * st = dynamic_cast< StructDecl * >( aggr ) ) {
422                        // want to resolve each initializer to the members of the struct,
423                        // but if there are more initializers than members we should stop
424                        list< Declaration * >::iterator it = st->get_members().begin();
425                        for ( ; it != st->get_members().end(); ++it) {
426                                resolveSingleAggrInit( *it, init, initEnd );
427                        }
428                } else if ( UnionDecl * un = dynamic_cast< UnionDecl * >( aggr ) ) {
429                        // only resolve to the first member of a union
430                        resolveSingleAggrInit( *un->get_members().begin(), init, initEnd );
431                } // if
432        }
433
434        void Resolver::visit( ListInit * listInit ) {
435                InitIterator iter = listInit->begin();
436                InitIterator end = listInit->end();
437
438                if ( ArrayType * at = dynamic_cast< ArrayType * >( initContext ) ) {
439                        // resolve each member to the base type of the array
440                        for ( ; iter != end; ++iter ) {
441                                initContext = at->get_base();
442                                (*iter)->accept( *this );
443                        } // for
444                } else if ( StructInstType * st = dynamic_cast< StructInstType * >( initContext ) ) {
445                        resolveAggrInit( st->get_baseStruct(), iter, end );
446                } else if ( UnionInstType * st = dynamic_cast< UnionInstType * >( initContext ) ) {
447                        resolveAggrInit( st->get_baseUnion(), iter, end );
448                } else if ( TypeInstType * tt = dynamic_cast< TypeInstType * >( initContext ) ) {
449                        Type * base = tt->get_baseType()->get_base();
450                        if ( base ) {
451                                // know the implementation type, so try using that as the initContext
452                                initContext = base;
453                                visit( listInit );
454                        } else {
455                                // missing implementation type -- might be an unknown type variable, so try proceeding with the current init context
456                                Visitor::visit( listInit );
457                        }
458                } else {
459                        assert( dynamic_cast< BasicType * >( initContext ) || dynamic_cast< PointerType * >( initContext )
460                                || dynamic_cast< ZeroType * >( initContext ) || dynamic_cast< OneType * >( initContext ) );
461                        // basic types are handled here
462                        Visitor::visit( listInit );
463                }
464
465#if 0
466                if ( ArrayType *at = dynamic_cast<ArrayType*>(initContext) ) {
467                        std::list<Initializer *>::iterator iter( listInit->begin_initializers() );
468                        for ( ; iter != listInit->end_initializers(); ++iter ) {
469                                initContext = at->get_base();
470                                (*iter)->accept( *this );
471                        } // for
472                } else if ( StructInstType *st = dynamic_cast<StructInstType*>(initContext) ) {
473                        StructDecl *baseStruct = st->get_baseStruct();
474                        std::list<Declaration *>::iterator iter1( baseStruct->get_members().begin() );
475                        std::list<Initializer *>::iterator iter2( listInit->begin_initializers() );
476                        for ( ; iter1 != baseStruct->get_members().end() && iter2 != listInit->end_initializers(); ++iter2 ) {
477                                if ( (*iter2)->get_designators().empty() ) {
478                                        DeclarationWithType *dt = dynamic_cast<DeclarationWithType *>( *iter1 );
479                                        initContext = dt->get_type();
480                                        (*iter2)->accept( *this );
481                                        ++iter1;
482                                } else {
483                                        StructDecl *st = baseStruct;
484                                        iter1 = st->get_members().begin();
485                                        std::list<Expression *>::iterator iter3( (*iter2)->get_designators().begin() );
486                                        for ( ; iter3 != (*iter2)->get_designators().end(); ++iter3 ) {
487                                                NameExpr *key = dynamic_cast<NameExpr *>( *iter3 );
488                                                assert( key );
489                                                for ( ; iter1 != st->get_members().end(); ++iter1 ) {
490                                                        if ( key->get_name() == (*iter1)->get_name() ) {
491                                                                (*iter1)->print( cout );
492                                                                cout << key->get_name() << endl;
493                                                                ObjectDecl *fred = dynamic_cast<ObjectDecl *>( *iter1 );
494                                                                assert( fred );
495                                                                StructInstType *mary = dynamic_cast<StructInstType*>( fred->get_type() );
496                                                                assert( mary );
497                                                                st = mary->get_baseStruct();
498                                                                iter1 = st->get_members().begin();
499                                                                break;
500                                                        } // if
501                                                }  // for
502                                        } // for
503                                        ObjectDecl *fred = dynamic_cast<ObjectDecl *>( *iter1 );
504                                        assert( fred );
505                                        initContext = fred->get_type();
506                                        (*listInit->begin_initializers())->accept( *this );
507                                } // if
508                        } // for
509                } else if ( UnionInstType *st = dynamic_cast<UnionInstType*>(initContext) ) {
510                        DeclarationWithType *dt = dynamic_cast<DeclarationWithType *>( *st->get_baseUnion()->get_members().begin() );
511                        initContext = dt->get_type();
512                        (*listInit->begin_initializers())->accept( *this );
513                } // if
514#endif
515        }
516
517        // ConstructorInit - fall back on C-style initializer
518        void Resolver::fallbackInit( ConstructorInit * ctorInit ) {
519                // could not find valid constructor, or found an intrinsic constructor
520                // fall back on C-style initializer
521                delete ctorInit->get_ctor();
522                ctorInit->set_ctor( NULL );
523                delete ctorInit->get_dtor();
524                ctorInit->set_dtor( NULL );
525                maybeAccept( ctorInit->get_init(), *this );
526        }
527
528        void Resolver::visit( ConstructorInit *ctorInit ) {
529                // xxx - fallback init has been removed => remove fallbackInit function and remove complexity from FixInit and remove C-init from ConstructorInit
530                maybeAccept( ctorInit->get_ctor(), *this );
531                maybeAccept( ctorInit->get_dtor(), *this );
532
533                // found a constructor - can get rid of C-style initializer
534                delete ctorInit->get_init();
535                ctorInit->set_init( NULL );
536
537                // intrinsic single parameter constructors and destructors do nothing. Since this was
538                // implicitly generated, there's no way for it to have side effects, so get rid of it
539                // to clean up generated code.
540                if ( InitTweak::isIntrinsicSingleArgCallStmt( ctorInit->get_ctor() ) ) {
541                        delete ctorInit->get_ctor();
542                        ctorInit->set_ctor( NULL );
543                }
544
545                if ( InitTweak::isIntrinsicSingleArgCallStmt( ctorInit->get_dtor() ) ) {
546                        delete ctorInit->get_dtor();
547                        ctorInit->set_dtor( NULL );
548                }
549
550                // xxx - todo -- what about arrays?
551                // if ( dtor == NULL && InitTweak::isIntrinsicCallStmt( ctorInit->get_ctor() ) ) {
552                //      // can reduce the constructor down to a SingleInit using the
553                //      // second argument from the ctor call, since
554                //      delete ctorInit->get_ctor();
555                //      ctorInit->set_ctor( NULL );
556
557                //      Expression * arg =
558                //      ctorInit->set_init( new SingleInit( arg ) );
559                // }
560        }
561} // namespace ResolvExpr
562
563// Local Variables: //
564// tab-width: 4 //
565// mode: c++ //
566// compile-command: "make install" //
567// End: //
Note: See TracBrowser for help on using the repository browser.