source: src/CodeGen/CodeGenerator.cc @ f1e012b

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since f1e012b was f1e012b, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

added intrinsic ctor/dtors to prelude, modified MakeLibCfa? to build prelude ctor/dtors, added ctor/dtor to polymorphic object type constraints, rudimentary fallback on initializer nodes if chosen ctor is intrinsic, remove intrinsic destructor statements to reduce output pollution

  • Property mode set to 100644
File size: 20.7 KB
RevLine 
[51587aa]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//
[71f4e4f]7// CodeGenerator.cc --
[51587aa]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[145f1fc]11// Last Modified By : Rob Schluntz
[f1e012b]12// Last Modified On : Tue Jan 19 13:15:44 2016
13// Update Count     : 251
[51587aa]14//
15
[51b7345]16#include <algorithm>
17#include <iostream>
18#include <cassert>
19#include <list>
20
[68cd1ce]21#include "Parser/ParseNode.h"
22
[51b7345]23#include "SynTree/Type.h"
24#include "SynTree/Expression.h"
25#include "SynTree/Initializer.h"
[68cd1ce]26#include "SynTree/Statement.h"
[51b7345]27
28#include "utility.h"
29#include "UnimplementedError.h"
30
[a61fea9a]31#include "CodeGenerator.h"
[51b7345]32#include "OperatorTable.h"
33#include "GenType.h"
34
35using namespace std;
36
37namespace CodeGen {
[6c4ff37]38        int CodeGenerator::tabsize = 4;
[51587aa]39
[145f1fc]40        // the kinds of statements that would ideally be followed by whitespace
[2b6c1e0]41        bool wantSpacing( Statement * stmt) {
42                return dynamic_cast< IfStmt * >( stmt ) || dynamic_cast< CompoundStmt * >( stmt ) ||
43                        dynamic_cast< WhileStmt * >( stmt ) || dynamic_cast< ForStmt * > ( stmt ) || dynamic_cast< SwitchStmt *>( stmt );
44        }
45
[cda48b6]46        ostream & CodeGenerator::Indenter::operator()( ostream & output ) {
47          return output << string( cg.cur_indent, ' ' );
48        }
49
50        ostream & operator<<( ostream & output, CodeGenerator::Indenter &indent ) {
51                return indent( output );
52        }
[51587aa]53
[7f5566b]54        CodeGenerator::CodeGenerator( std::ostream &os ) : indent( *this), cur_indent( 0 ), insideFunction( false ), output( os ) { }
[cda48b6]55
56        CodeGenerator::CodeGenerator( std::ostream &os, std::string init, int indentation, bool infunp )
[7f5566b]57                        : indent( *this), cur_indent( indentation ), insideFunction( infunp ), output( os ) {
[6c4ff37]58                //output << std::string( init );
[51587aa]59        }
60
[cda48b6]61        CodeGenerator::CodeGenerator( std::ostream &os, char *init, int indentation, bool infunp )
[7f5566b]62                        : indent( *this ), cur_indent( indentation ), insideFunction( infunp ), output( os ) {
[6c4ff37]63                //output << std::string( init );
[51587aa]64        }
65
66        string mangleName( DeclarationWithType *decl ) {
67                if ( decl->get_mangleName() != "" ) {
68                        return decl->get_mangleName();
69                } else {
70                        return decl->get_name();
71                } // if
72        }
[94b4364]73
[51587aa]74        //*** Declarations
[6c4ff37]75        void CodeGenerator::visit( FunctionDecl *functionDecl ) {
[51587aa]76                handleStorageClass( functionDecl );
[f38c8d9]77                if ( functionDecl->get_isInline() ) {
[6c4ff37]78                        output << "inline ";
[f38c8d9]79                } // if
[de62360d]80                if ( functionDecl->get_isNoreturn() ) {
81                        output << "_Noreturn ";
82                } // if
[6c4ff37]83                output << genType( functionDecl->get_functionType(), mangleName( functionDecl ) );
[51587aa]84
85                // how to get this to the Functype?
86                std::list< Declaration * > olds = functionDecl->get_oldDecls();
87                if ( ! olds.empty() ) {
[6c4ff37]88                        output << " /* function has old declaration */";
[51587aa]89                } // if
90
91                // acceptAll( functionDecl->get_oldDecls(), *this );
92                if ( functionDecl->get_statements() ) {
[7f5566b]93                        functionDecl->get_statements()->accept( *this );
[51587aa]94                } // if
95        }
96
[6c4ff37]97        void CodeGenerator::visit( ObjectDecl *objectDecl ) {
[51587aa]98                handleStorageClass( objectDecl );
[6c4ff37]99                output << genType( objectDecl->get_type(), mangleName( objectDecl ) );
[71f4e4f]100
[51587aa]101                if ( objectDecl->get_init() ) {
[6c4ff37]102                        output << " = ";
[51587aa]103                        objectDecl->get_init()->accept( *this );
104                } // if
105                if ( objectDecl->get_bitfieldWidth() ) {
[6c4ff37]106                        output << ":";
[51587aa]107                        objectDecl->get_bitfieldWidth()->accept( *this );
108                } // if
109        }
110
[6c4ff37]111        void CodeGenerator::handleAggregate( AggregateDecl *aggDecl ) {
[51587aa]112                if ( aggDecl->get_name() != "" )
[6c4ff37]113                        output << aggDecl->get_name();
[71f4e4f]114
[51587aa]115                std::list< Declaration * > &memb = aggDecl->get_members();
116
117                if ( ! memb.empty() ) {
[94b4364]118                        output << " {" << endl;
[51587aa]119
[71f4e4f]120                        cur_indent += CodeGenerator::tabsize;
[51587aa]121                        for ( std::list< Declaration* >::iterator i = memb.begin(); i != memb.end();  i++) {
[71f4e4f]122                                output << indent;
[7f5566b]123                                (*i)->accept( *this );
[6c4ff37]124                                output << ";" << endl;
[51587aa]125                        }
126
[71f4e4f]127                        cur_indent -= CodeGenerator::tabsize;
[51587aa]128
[cda48b6]129                        output << indent << "}";
[17cd4eb]130                } // if
[51587aa]131        }
[17cd4eb]132
[6c4ff37]133        void CodeGenerator::visit( StructDecl *structDecl ) {
134                output << "struct ";
[51587aa]135                handleAggregate( structDecl );
136        }
[17cd4eb]137
[6c4ff37]138        void CodeGenerator::visit( UnionDecl *aggregateDecl ) {
139                output << "union ";
[51587aa]140                handleAggregate( aggregateDecl );
141        }
[71f4e4f]142
[6c4ff37]143        void CodeGenerator::visit( EnumDecl *aggDecl ) {
144                output << "enum ";
[51587aa]145
146                if ( aggDecl->get_name() != "" )
[6c4ff37]147                        output << aggDecl->get_name();
[71f4e4f]148
[51587aa]149                std::list< Declaration* > &memb = aggDecl->get_members();
150
151                if ( ! memb.empty() ) {
[cda48b6]152                        output << " {" << endl;
[51587aa]153
[71f4e4f]154                        cur_indent += CodeGenerator::tabsize;
[51587aa]155                        for ( std::list< Declaration* >::iterator i = memb.begin(); i != memb.end();  i++) {
156                                ObjectDecl *obj = dynamic_cast< ObjectDecl* >( *i );
157                                assert( obj );
[71f4e4f]158                                output << indent << mangleName( obj );
[51587aa]159                                if ( obj->get_init() ) {
[6c4ff37]160                                        output << " = ";
[7f5566b]161                                        obj->get_init()->accept( *this );
[51587aa]162                                } // if
[6c4ff37]163                                output << "," << endl;
[51587aa]164                        } // for
165
[71f4e4f]166                        cur_indent -= CodeGenerator::tabsize;
[51587aa]167
[cda48b6]168                        output << indent << "}";
[51587aa]169                } // if
170        }
[71f4e4f]171
[6c4ff37]172        void CodeGenerator::visit( ContextDecl *aggregateDecl ) {}
[71f4e4f]173
[6c4ff37]174        void CodeGenerator::visit( TypedefDecl *typeDecl ) {
175                output << "typedef ";
176                output << genType( typeDecl->get_base(), typeDecl->get_name() );
[51587aa]177        }
[71f4e4f]178
[6c4ff37]179        void CodeGenerator::visit( TypeDecl *typeDecl ) {
[51587aa]180                // really, we should mutate this into something that isn't a TypeDecl but that requires large-scale changes,
181                // still to be done
[6c4ff37]182                output << "extern unsigned long " << typeDecl->get_name();
[51587aa]183                if ( typeDecl->get_base() ) {
[6c4ff37]184                        output << " = sizeof( " << genType( typeDecl->get_base(), "" ) << " )";
[51587aa]185                } // if
186        }
187
[e45215c]188        void CodeGenerator::printDesignators( std::list< Expression * > & designators ) {
189                typedef std::list< Expression * > DesignatorList;
190                if ( designators.size() == 0 ) return;
191                for ( DesignatorList::iterator iter = designators.begin(); iter != designators.end(); ++iter ) {
[8a4da06]192                        if ( dynamic_cast< NameExpr * >( *iter ) ) {
[f32c7f4]193                                // if expression is a name, then initializing aggregate member
194                                output << ".";
195                                (*iter)->accept( *this );
196                        } else {
197                                // if not a simple name, it has to be a constant expression, i.e. an array designator
[e45215c]198                                output << "[";
199                                (*iter)->accept( *this );
200                                output << "]";
201                        }
202                }
203                output << " = ";
204        }
205
[6c4ff37]206        void CodeGenerator::visit( SingleInit *init ) {
[e45215c]207                printDesignators( init->get_designators() );
[51587aa]208                init->get_value()->accept( *this );
209        }
210
[6c4ff37]211        void CodeGenerator::visit( ListInit *init ) {
[e45215c]212                printDesignators( init->get_designators() );
[6c4ff37]213                output << "{ ";
[51587aa]214                genCommaList( init->begin_initializers(), init->end_initializers() );
[6c4ff37]215                output << " }";
[51587aa]216        }
217
[71f4e4f]218        void CodeGenerator::visit( Constant *constant ) {
[6c4ff37]219                output << constant->get_value() ;
[51587aa]220        }
221
222        //*** Expressions
[6c4ff37]223        void CodeGenerator::visit( ApplicationExpr *applicationExpr ) {
[51587aa]224                if ( VariableExpr *varExpr = dynamic_cast< VariableExpr* >( applicationExpr->get_function() ) ) {
225                        OperatorInfo opInfo;
226                        if ( varExpr->get_var()->get_linkage() == LinkageSpec::Intrinsic && operatorLookup( varExpr->get_var()->get_name(), opInfo ) ) {
227                                std::list< Expression* >::iterator arg = applicationExpr->get_args().begin();
228                                switch ( opInfo.type ) {
229                                  case OT_PREFIXASSIGN:
230                                  case OT_POSTFIXASSIGN:
231                                  case OT_INFIXASSIGN:
232                                        {
233                                                assert( arg != applicationExpr->get_args().end() );
234                                                if ( AddressExpr *addrExpr = dynamic_cast< AddressExpr * >( *arg ) ) {
[71f4e4f]235
[51587aa]236                                                        *arg = addrExpr->get_arg();
237                                                } else {
238                                                        UntypedExpr *newExpr = new UntypedExpr( new NameExpr( "*?" ) );
239                                                        newExpr->get_args().push_back( *arg );
240                                                        *arg = newExpr;
241                                                } // if
242                                                break;
243                                        }
[71f4e4f]244
[51587aa]245                                  default:
246                                        // do nothing
247                                        ;
248                                }
[71f4e4f]249
[51587aa]250                                switch ( opInfo.type ) {
251                                  case OT_INDEX:
252                                        assert( applicationExpr->get_args().size() == 2 );
253                                        (*arg++)->accept( *this );
[6c4ff37]254                                        output << "[";
[51587aa]255                                        (*arg)->accept( *this );
[6c4ff37]256                                        output << "]";
[51587aa]257                                        break;
[71f4e4f]258
[51587aa]259                                  case OT_CALL:
[2794fff]260                                        // there are no intrinsic definitions of the function call operator or constructors or destructors
[51587aa]261                                        assert( false );
262                                        break;
[71f4e4f]263
[f1e012b]264                                  case OT_CTOR:
265                                  // intrinsic constructors should never be called directly - they should be transformed back into Initializer nodes
266                                  assert(false);
267                                  break;
268
269                                  case OT_DTOR:
270                                  // intrinsic destructors do nothing - don't generate any code
271                                  output << " // " << dynamic_cast<VariableExpr*>(applicationExpr->get_function())->get_var()->get_name() << endl;
272                                  break;
273
[51587aa]274                                  case OT_PREFIX:
275                                  case OT_PREFIXASSIGN:
276                                        assert( applicationExpr->get_args().size() == 1 );
[6c4ff37]277                                        output << "(";
278                                        output << opInfo.symbol;
[51587aa]279                                        (*arg)->accept( *this );
[6c4ff37]280                                        output << ")";
[51587aa]281                                        break;
[71f4e4f]282
[51587aa]283                                  case OT_POSTFIX:
284                                  case OT_POSTFIXASSIGN:
285                                        assert( applicationExpr->get_args().size() == 1 );
286                                        (*arg)->accept( *this );
[6c4ff37]287                                        output << opInfo.symbol;
[51587aa]288                                        break;
289
[f1e012b]290
[51587aa]291                                  case OT_INFIX:
292                                  case OT_INFIXASSIGN:
293                                        assert( applicationExpr->get_args().size() == 2 );
[6c4ff37]294                                        output << "(";
[51587aa]295                                        (*arg++)->accept( *this );
[6c4ff37]296                                        output << opInfo.symbol;
[51587aa]297                                        (*arg)->accept( *this );
[6c4ff37]298                                        output << ")";
[51587aa]299                                        break;
[71f4e4f]300
[51587aa]301                                  case OT_CONSTANT:
[721f17a]302                                  case OT_LABELADDRESS:
303                                        // there are no intrinsic definitions of 0/1 or label addresses as functions
[51587aa]304                                        assert( false );
305                                }
[17cd4eb]306                        } else {
[51587aa]307                                varExpr->accept( *this );
[6c4ff37]308                                output << "(";
[51587aa]309                                genCommaList( applicationExpr->get_args().begin(), applicationExpr->get_args().end() );
[6c4ff37]310                                output << ")";
[17cd4eb]311                        } // if
[51587aa]312                } else {
313                        applicationExpr->get_function()->accept( *this );
[6c4ff37]314                        output << "(";
[51587aa]315                        genCommaList( applicationExpr->get_args().begin(), applicationExpr->get_args().end() );
[6c4ff37]316                        output << ")";
[51587aa]317                } // if
318        }
[71f4e4f]319
[6c4ff37]320        void CodeGenerator::visit( UntypedExpr *untypedExpr ) {
[51587aa]321                if ( NameExpr *nameExpr = dynamic_cast< NameExpr* >( untypedExpr->get_function() ) ) {
322                        OperatorInfo opInfo;
323                        if ( operatorLookup( nameExpr->get_name(), opInfo ) ) {
324                                std::list< Expression* >::iterator arg = untypedExpr->get_args().begin();
325                                switch ( opInfo.type ) {
326                                  case OT_INDEX:
327                                        assert( untypedExpr->get_args().size() == 2 );
328                                        (*arg++)->accept( *this );
[6c4ff37]329                                        output << "[";
[51587aa]330                                        (*arg)->accept( *this );
[6c4ff37]331                                        output << "]";
[51587aa]332                                        break;
[71f4e4f]333
[51587aa]334                                  case OT_CALL:
[f1e012b]335                                        assert( false );
336
[1840193]337                                        case OT_CTOR:
338                                        case OT_DTOR:
[f1e012b]339                                        // intrinsic constructors should never be called
340                                        // intrinsic destructors do nothing
[51587aa]341                                        break;
[71f4e4f]342
[51587aa]343                                  case OT_PREFIX:
344                                  case OT_PREFIXASSIGN:
[de62360d]345                                  case OT_LABELADDRESS:
[51587aa]346                                        assert( untypedExpr->get_args().size() == 1 );
[6c4ff37]347                                        output << "(";
348                                        output << opInfo.symbol;
[51587aa]349                                        (*arg)->accept( *this );
[6c4ff37]350                                        output << ")";
[51587aa]351                                        break;
[71f4e4f]352
[51587aa]353                                  case OT_POSTFIX:
354                                  case OT_POSTFIXASSIGN:
355                                        assert( untypedExpr->get_args().size() == 1 );
356                                        (*arg)->accept( *this );
[6c4ff37]357                                        output << opInfo.symbol;
[51587aa]358                                        break;
[71f4e4f]359
[51587aa]360                                  case OT_INFIX:
361                                  case OT_INFIXASSIGN:
362                                        assert( untypedExpr->get_args().size() == 2 );
[6c4ff37]363                                        output << "(";
[51587aa]364                                        (*arg++)->accept( *this );
[6c4ff37]365                                        output << opInfo.symbol;
[51587aa]366                                        (*arg)->accept( *this );
[6c4ff37]367                                        output << ")";
[51587aa]368                                        break;
[71f4e4f]369
[51587aa]370                                  case OT_CONSTANT:
371                                        // there are no intrinsic definitions of 0 or 1 as functions
372                                        assert( false );
373                                }
374                        } else {
375                                nameExpr->accept( *this );
[6c4ff37]376                                output << "(";
[51587aa]377                                genCommaList( untypedExpr->get_args().begin(), untypedExpr->get_args().end() );
[6c4ff37]378                                output << ")";
[51587aa]379                        } // if
380                } else {
381                        untypedExpr->get_function()->accept( *this );
[6c4ff37]382                        output << "(";
[51587aa]383                        genCommaList( untypedExpr->get_args().begin(), untypedExpr->get_args().end() );
[6c4ff37]384                        output << ")";
[51587aa]385                } // if
386        }
[71f4e4f]387
[6c4ff37]388        void CodeGenerator::visit( NameExpr *nameExpr ) {
[51587aa]389                OperatorInfo opInfo;
390                if ( operatorLookup( nameExpr->get_name(), opInfo ) ) {
391                        assert( opInfo.type == OT_CONSTANT );
[6c4ff37]392                        output << opInfo.symbol;
[51587aa]393                } else {
[6c4ff37]394                        output << nameExpr->get_name();
[51587aa]395                } // if
396        }
[71f4e4f]397
[6c4ff37]398        void CodeGenerator::visit( AddressExpr *addressExpr ) {
399                output << "(&";
[51587aa]400                // this hack makes sure that we don't convert "constant_zero" to "0" if we're taking its address
401                if ( VariableExpr *variableExpr = dynamic_cast< VariableExpr* >( addressExpr->get_arg() ) ) {
[6c4ff37]402                        output << mangleName( variableExpr->get_var() );
[51587aa]403                } else {
404                        addressExpr->get_arg()->accept( *this );
405                } // if
[6c4ff37]406                output << ")";
[51587aa]407        }
408
[6c4ff37]409        void CodeGenerator::visit( CastExpr *castExpr ) {
[76b48f1]410                // if the cast is to an lvalue type, then the cast
411                // should be dropped, since the result of a cast is
412                // never an lvalue in C
413                if ( castExpr->get_results().front()->get_isLvalue() ) {
414                        castExpr->get_arg()->accept( *this );
[51587aa]415                } else {
[76b48f1]416                        output << "((";
417                        if ( castExpr->get_results().empty() ) {
418                                output << "void" ;
419                        } else {
420                                output << genType( castExpr->get_results().front(), "" );
421                        } // if
422                        output << ")";
423                        castExpr->get_arg()->accept( *this );
[71f4e4f]424                        output << ")";
[76b48f1]425                }
[51587aa]426        }
[71f4e4f]427
[6c4ff37]428        void CodeGenerator::visit( UntypedMemberExpr *memberExpr ) {
[51587aa]429                assert( false );
430        }
[71f4e4f]431
[6c4ff37]432        void CodeGenerator::visit( MemberExpr *memberExpr ) {
[51587aa]433                memberExpr->get_aggregate()->accept( *this );
[6c4ff37]434                output << "." << mangleName( memberExpr->get_member() );
[51587aa]435        }
[71f4e4f]436
[6c4ff37]437        void CodeGenerator::visit( VariableExpr *variableExpr ) {
[51587aa]438                OperatorInfo opInfo;
439                if ( variableExpr->get_var()->get_linkage() == LinkageSpec::Intrinsic && operatorLookup( variableExpr->get_var()->get_name(), opInfo ) && opInfo.type == OT_CONSTANT ) {
[6c4ff37]440                        output << opInfo.symbol;
[51587aa]441                } else {
[6c4ff37]442                        output << mangleName( variableExpr->get_var() );
[51587aa]443                } // if
444        }
[71f4e4f]445
[6c4ff37]446        void CodeGenerator::visit( ConstantExpr *constantExpr ) {
[51587aa]447                assert( constantExpr->get_constant() );
448                constantExpr->get_constant()->accept( *this );
449        }
[71f4e4f]450
[6c4ff37]451        void CodeGenerator::visit( SizeofExpr *sizeofExpr ) {
452                output << "sizeof(";
[51587aa]453                if ( sizeofExpr->get_isType() ) {
[6c4ff37]454                        output << genType( sizeofExpr->get_type(), "" );
[51587aa]455                } else {
456                        sizeofExpr->get_expr()->accept( *this );
457                } // if
[6c4ff37]458                output << ")";
[51587aa]459        }
[47534159]460
461        void CodeGenerator::visit( AlignofExpr *sizeofExpr ) {
462                // use GCC extension to avoid bumping std to C11
463                output << "__alignof__(";
464                if ( sizeofExpr->get_isType() ) {
465                        output << genType( sizeofExpr->get_type(), "" );
466                } else {
467                        sizeofExpr->get_expr()->accept( *this );
468                } // if
469                output << ")";
470        }
[71f4e4f]471
[6c4ff37]472        void CodeGenerator::visit( LogicalExpr *logicalExpr ) {
473                output << "(";
[51587aa]474                logicalExpr->get_arg1()->accept( *this );
475                if ( logicalExpr->get_isAnd() ) {
[6c4ff37]476                        output << " && ";
[51587aa]477                } else {
[6c4ff37]478                        output << " || ";
[51587aa]479                } // if
480                logicalExpr->get_arg2()->accept( *this );
[6c4ff37]481                output << ")";
[51587aa]482        }
[71f4e4f]483
[6c4ff37]484        void CodeGenerator::visit( ConditionalExpr *conditionalExpr ) {
485                output << "(";
[51587aa]486                conditionalExpr->get_arg1()->accept( *this );
[6c4ff37]487                output << " ? ";
[51587aa]488                conditionalExpr->get_arg2()->accept( *this );
[6c4ff37]489                output << " : ";
[51587aa]490                conditionalExpr->get_arg3()->accept( *this );
[6c4ff37]491                output << ")";
[51587aa]492        }
[71f4e4f]493
[6c4ff37]494        void CodeGenerator::visit( CommaExpr *commaExpr ) {
495                output << "(";
[51587aa]496                commaExpr->get_arg1()->accept( *this );
[6c4ff37]497                output << " , ";
[51587aa]498                commaExpr->get_arg2()->accept( *this );
[6c4ff37]499                output << ")";
[51587aa]500        }
[71f4e4f]501
[6c4ff37]502        void CodeGenerator::visit( TupleExpr *tupleExpr ) {}
[71f4e4f]503
[6c4ff37]504        void CodeGenerator::visit( TypeExpr *typeExpr ) {}
[2b6c1e0]505
[7f5566b]506        void CodeGenerator::visit( AsmExpr *asmExpr ) {
507                if ( asmExpr->get_inout() ) {
508                        output << "[ ";
509                        asmExpr->get_inout()->accept( *this );
510                        output << " ] ";
511                } // if
512                asmExpr->get_constraint()->accept( *this );
513                output << " ( ";
514                asmExpr->get_operand()->accept( *this );
515                output << " )";
516        }
517
[51587aa]518        //*** Statements
[6c4ff37]519        void CodeGenerator::visit( CompoundStmt *compoundStmt ) {
[51587aa]520                std::list<Statement*> ks = compoundStmt->get_kids();
[2b6c1e0]521                output << "{" << endl;
[51587aa]522
[2b6c1e0]523                cur_indent += CodeGenerator::tabsize;
[51587aa]524
[7f5566b]525                for ( std::list<Statement *>::iterator i = ks.begin(); i != ks.end();  i++ ) {
[cda48b6]526                        output << indent << printLabels( (*i)->get_labels() );
[7f5566b]527                        (*i)->accept( *this );
[2b6c1e0]528
[6c4ff37]529                        output << endl;
[2b6c1e0]530                        if ( wantSpacing( *i ) ) {
531                                output << endl;
532                        }
[51587aa]533                }
[71f4e4f]534                cur_indent -= CodeGenerator::tabsize;
[51587aa]535
[cda48b6]536                output << indent << "}";
[51587aa]537        }
538
[6c4ff37]539        void CodeGenerator::visit( ExprStmt *exprStmt ) {
[71f4e4f]540                // I don't see why this check is necessary.
541                // If this starts to cause problems then put it back in,
[6c4ff37]542                // with an explanation
543                assert( exprStmt );
544
545                // if ( exprStmt != 0 ) {
546                exprStmt->get_expr()->accept( *this );
547                output << ";" ;
548                // } // if
[51587aa]549        }
550
[7f5566b]551        void CodeGenerator::visit( AsmStmt *asmStmt ) {
552                output << "asm ";
553                if ( asmStmt->get_voltile() ) output << "volatile ";
554                if ( ! asmStmt->get_gotolabels().empty()  ) output << "goto ";
555                output << "( ";
556                if ( asmStmt->get_instruction() ) asmStmt->get_instruction()->accept( *this );
557                output << " : ";
558                genCommaList( asmStmt->get_output().begin(), asmStmt->get_output().end() );
559                output << " : ";
560                genCommaList( asmStmt->get_input().begin(), asmStmt->get_input().end() );
561                output << " : ";
562                genCommaList( asmStmt->get_clobber().begin(), asmStmt->get_clobber().end() );
563                if ( ! asmStmt->get_gotolabels().empty() ) {
564                        output << " : ";
565                        for ( std::list<Label>::iterator begin = asmStmt->get_gotolabels().begin();; ) {
566                                output << *begin++;
567                                if ( begin == asmStmt->get_gotolabels().end() ) break;
568                                output << ", ";
569                        } // for
570                } // if
571                output << " );" ;
572        }
573
[6c4ff37]574        void CodeGenerator::visit( IfStmt *ifStmt ) {
[7f5566b]575                output << "if ( ";
576                ifStmt->get_condition()->accept( *this );
577                output << " ) ";
[51587aa]578
[7f5566b]579                ifStmt->get_thenPart()->accept( *this );
[51587aa]580
581                if ( ifStmt->get_elsePart() != 0) {
[2b6c1e0]582                        output << " else ";
[7f5566b]583                        ifStmt->get_elsePart()->accept( *this );
[51587aa]584                } // if
585        }
586
[6c4ff37]587        void CodeGenerator::visit( SwitchStmt *switchStmt ) {
[7f5566b]588                output << "switch ( " ;
589                switchStmt->get_condition()->accept( *this );
590                output << " ) ";
[71f4e4f]591
[2b6c1e0]592                output << "{" << std::endl;
[6c4ff37]593                cur_indent += CodeGenerator::tabsize;
[51587aa]594
[6c4ff37]595                acceptAll( switchStmt->get_branches(), *this );
[51587aa]596
[6c4ff37]597                cur_indent -= CodeGenerator::tabsize;
[51587aa]598
[cda48b6]599                output << indent << "}";
[51587aa]600        }
601
[6c4ff37]602        void CodeGenerator::visit( CaseStmt *caseStmt ) {
[cda48b6]603                output << indent;
[eb3261f]604                if ( caseStmt->isDefault()) {
[2b6c1e0]605                        output << "default";
[eb3261f]606                } else {
[2b6c1e0]607                        output << "case ";
[7f5566b]608                        caseStmt->get_condition()->accept( *this );
[17cd4eb]609                } // if
[6c4ff37]610                output << ":\n";
[71f4e4f]611
[51587aa]612                std::list<Statement *> sts = caseStmt->get_statements();
613
[6c4ff37]614                cur_indent += CodeGenerator::tabsize;
[51587aa]615                for ( std::list<Statement *>::iterator i = sts.begin(); i != sts.end();  i++) {
[cda48b6]616                        output << indent << printLabels( (*i)->get_labels() )  ;
[7f5566b]617                        (*i)->accept( *this );
[6c4ff37]618                        output << endl;
[51587aa]619                }
[6c4ff37]620                cur_indent -= CodeGenerator::tabsize;
[51587aa]621        }
622
[6c4ff37]623        void CodeGenerator::visit( BranchStmt *branchStmt ) {
[51587aa]624                switch ( branchStmt->get_type()) {
625                  case BranchStmt::Goto:
626                        if ( ! branchStmt->get_target().empty() )
[6c4ff37]627                                output << "goto " << branchStmt->get_target();
[71f4e4f]628                        else {
[51587aa]629                                if ( branchStmt->get_computedTarget() != 0 ) {
[6c4ff37]630                                        output << "goto *";
[51587aa]631                                        branchStmt->get_computedTarget()->accept( *this );
632                                } // if
633                        } // if
634                        break;
635                  case BranchStmt::Break:
[6c4ff37]636                        output << "break";
[51587aa]637                        break;
638                  case BranchStmt::Continue:
[6c4ff37]639                        output << "continue";
[51587aa]640                        break;
641                }
[2b6c1e0]642                output << ";";
[51587aa]643        }
644
645
[6c4ff37]646        void CodeGenerator::visit( ReturnStmt *returnStmt ) {
647                output << "return ";
[51587aa]648
649                // xxx -- check for null expression;
650                if ( returnStmt->get_expr() ) {
651                        returnStmt->get_expr()->accept( *this );
652                } // if
[6c4ff37]653                output << ";";
[51587aa]654        }
655
[6c4ff37]656        void CodeGenerator::visit( WhileStmt *whileStmt ) {
[51587aa]657                if ( whileStmt->get_isDoWhile() )
[6c4ff37]658                        output << "do" ;
[51587aa]659                else {
[6c4ff37]660                        output << "while (" ;
[7f5566b]661                        whileStmt->get_condition()->accept( *this );
[6c4ff37]662                        output << ")";
[51587aa]663                } // if
[2b6c1e0]664                output << " ";
[51587aa]665
[2b6c1e0]666                output << CodeGenerator::printLabels( whileStmt->get_body()->get_labels() );
[51587aa]667                whileStmt->get_body()->accept( *this );
668
[cda48b6]669                output << indent;
[51587aa]670
671                if ( whileStmt->get_isDoWhile() ) {
[6c4ff37]672                        output << " while (" ;
[7f5566b]673                        whileStmt->get_condition()->accept( *this );
[6c4ff37]674                        output << ");";
[51587aa]675                } // if
676        }
677
[6c4ff37]678        void CodeGenerator::visit( ForStmt *forStmt ) {
[71f4e4f]679                // initialization is always hoisted, so don't
680                // bother doing anything with that
[145f1fc]681                output << "for (;";
[51587aa]682
683                if ( forStmt->get_condition() != 0 )
684                        forStmt->get_condition()->accept( *this );
[6c4ff37]685                output << ";";
[51587aa]686
687                if ( forStmt->get_increment() != 0 )
688                        forStmt->get_increment()->accept( *this );
[2b6c1e0]689                output << ") ";
[51587aa]690
691                if ( forStmt->get_body() != 0 ) {
[2b6c1e0]692                        output << CodeGenerator::printLabels( forStmt->get_body()->get_labels() );
[51587aa]693                        forStmt->get_body()->accept( *this );
694                } // if
695        }
696
[6c4ff37]697        void CodeGenerator::visit( NullStmt *nullStmt ) {
[cda48b6]698                //output << indent << CodeGenerator::printLabels( nullStmt->get_labels() );
[6c4ff37]699                output << "/* null statement */ ;";
[51587aa]700        }
701
[6c4ff37]702        void CodeGenerator::visit( DeclStmt *declStmt ) {
[51587aa]703                declStmt->get_decl()->accept( *this );
[71f4e4f]704
[51587aa]705                if ( doSemicolon( declStmt->get_decl() ) ) {
[6c4ff37]706                        output << ";";
[51587aa]707                } // if
708        }
709
[6c4ff37]710        std::string CodeGenerator::printLabels( std::list< Label > &l ) {
[51587aa]711                std::string str( "" );
[6c4ff37]712                l.unique(); // assumes a sorted list. Why not use set?
[51587aa]713
714                for ( std::list< Label >::iterator i = l.begin(); i != l.end(); i++ )
715                        str += *i + ": ";
716
717                return str;
718        }
719
[6c4ff37]720        void CodeGenerator::handleStorageClass( Declaration *decl ) {
[51587aa]721                switch ( decl->get_storageClass() ) {
[68cd1ce]722                  case DeclarationNode::Extern:
[6c4ff37]723                        output << "extern ";
[51587aa]724                        break;
[68cd1ce]725                  case DeclarationNode::Static:
[6c4ff37]726                        output << "static ";
[51587aa]727                        break;
[68cd1ce]728                  case DeclarationNode::Auto:
[51587aa]729                        // silently drop storage class
730                        break;
[68cd1ce]731                  case DeclarationNode::Register:
[6c4ff37]732                        output << "register ";
[51587aa]733                        break;
[68cd1ce]734                  case DeclarationNode::Inline:
[de62360d]735                        output << "inline ";
[f38c8d9]736                        break;
[68cd1ce]737                  case DeclarationNode::Fortran:
738                        output << "fortran ";
739                        break;
740                  case DeclarationNode::Noreturn:
741                        output << "_Noreturn ";
742                        break;
743                  case DeclarationNode::Threadlocal:
744                        output << "_Thread_local ";
745                        break;
746                  case DeclarationNode::NoStorageClass:
[f38c8d9]747                        break;
[843054c2]748                } // switch
[51587aa]749        }
[51b7345]750} // namespace CodeGen
[51587aa]751
752// Local Variables: //
753// tab-width: 4 //
754// mode: c++ //
755// compile-command: "make install" //
756// End: //
Note: See TracBrowser for help on using the repository browser.