Ignore:
Timestamp:
May 1, 2019, 3:32:10 PM (5 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
5157ba7
Parents:
3908e5d
Message:

Created CodeGen::Options which hold some flags for code generation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/CodeGenerator.cc

    r3908e5d r42a36d9  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat May  5 09:08:32 2018
    13 // Update Count     : 494
     11// Last Modified By : Andrew Beach
     12// Last Modified On : Wed May  1 10:06:00 2019
     13// Update Count     : 495
    1414//
    1515#include "CodeGenerator.h"
     
    8383        void CodeGenerator::updateLocation( CodeLocation const & to ) {
    8484                // skip if linemarks shouldn't appear or if codelocation is unset
    85                 if ( !lineMarks || to.isUnset() ) return;
     85                if ( !options.lineMarks || to.isUnset() ) return;
    8686
    8787                if ( currentLocation.followedBy( to, 0 ) ) {
     
    116116        }
    117117
    118         CodeGenerator::CodeGenerator( std::ostream & os, bool pretty, bool genC, bool lineMarks, bool printExprTypes ) : indent( CodeGenerator::tabsize ), output( os ), printLabels( *this ), pretty( pretty ), genC( genC ), lineMarks( lineMarks ), printExprTypes( printExprTypes ), endl( *this ) {}
     118        CodeGenerator::CodeGenerator( std::ostream & os, bool pretty, bool genC, bool lineMarks, bool printExprTypes ) : indent( CodeGenerator::tabsize ), output( os ), printLabels( *this ), options( pretty, genC, lineMarks, printExprTypes ), endl( *this ) {}
     119        CodeGenerator::CodeGenerator( std::ostream & os, const Options &options ) : indent( CodeGenerator::tabsize ), output( os ), printLabels( *this ), options(options), endl( *this ) {}
    119120
    120121        string CodeGenerator::mangleName( DeclarationWithType * decl ) {
    121122                // GCC builtins should always be printed unmangled
    122                 if ( pretty || decl->linkage.is_gcc_builtin ) return decl->name;
     123                if ( options.pretty || decl->linkage.is_gcc_builtin ) return decl->name;
    123124                if ( decl->mangleName != "" ) {
    124125                        // need to incorporate scope level in order to differentiate names for destructors
     
    164165                previsit( (BaseSyntaxNode *)node );
    165166                GuardAction( [this, node](){
    166                         if ( printExprTypes && node->result ) {
    167                                 output << " /* " << genType( node->result, "", pretty, genC ) << " */ ";
     167                        if ( options.printExprTypes && node->result ) {
     168                                output << " /* " << genType( node->result, "", options ) << " */ ";
    168169                        }
    169170                } );
     
    173174        void CodeGenerator::postvisit( FunctionDecl * functionDecl ) {
    174175                // deleted decls should never be used, so don't print them
    175                 if ( functionDecl->isDeleted && genC ) return;
     176                if ( functionDecl->isDeleted && options.genC ) return;
    176177                extension( functionDecl );
    177178                genAttributes( functionDecl->get_attributes() );
     
    180181                functionDecl->get_funcSpec().print( output );
    181182
    182                 output << genType( functionDecl->get_functionType(), mangleName( functionDecl ), pretty, genC );
     183                output << genType( functionDecl->get_functionType(), mangleName( functionDecl ), options.pretty, options.genC );
    183184
    184185                asmName( functionDecl );
     
    194195        void CodeGenerator::postvisit( ObjectDecl * objectDecl ) {
    195196                // deleted decls should never be used, so don't print them
    196                 if ( objectDecl->isDeleted && genC ) return;
    197                 if (objectDecl->get_name().empty() && genC ) {
     197                if ( objectDecl->isDeleted && options.genC ) return;
     198                if (objectDecl->get_name().empty() && options.genC ) {
    198199                        // only generate an anonymous name when generating C code, otherwise it clutters the output too much
    199200                        static UniqueName name = { "__anonymous_object" };
     
    205206
    206207                handleStorageClass( objectDecl );
    207                 output << genType( objectDecl->get_type(), mangleName( objectDecl ), pretty, genC );
     208                output << genType( objectDecl->get_type(), mangleName( objectDecl ), options.pretty, options.genC );
    208209
    209210                asmName( objectDecl );
     
    224225
    225226        void CodeGenerator::handleAggregate( AggregateDecl * aggDecl, const std::string & kind ) {
    226                 if( ! aggDecl->parameters.empty() && ! genC ) {
     227                if( ! aggDecl->parameters.empty() && ! options.genC ) {
    227228                        // assertf( ! genC, "Aggregate type parameters should not reach code generation." );
    228229                        output << "forall(";
     
    294295
    295296        void CodeGenerator::postvisit( TraitDecl * traitDecl ) {
    296                 assertf( ! genC, "TraitDecls should not reach code generation." );
     297                assertf( ! options.genC, "TraitDecls should not reach code generation." );
    297298                extension( traitDecl );
    298299                handleAggregate( traitDecl, "trait " );
     
    300301
    301302        void CodeGenerator::postvisit( TypedefDecl * typeDecl ) {
    302                 assertf( ! genC, "Typedefs are removed and substituted in earlier passes." );
     303                assertf( ! options.genC, "Typedefs are removed and substituted in earlier passes." );
    303304                output << "typedef ";
    304                 output << genType( typeDecl->get_base(), typeDecl->get_name(), pretty, genC ) << endl;
     305                output << genType( typeDecl->get_base(), typeDecl->get_name(), options ) << endl;
    305306        }
    306307
    307308        void CodeGenerator::postvisit( TypeDecl * typeDecl ) {
    308                 assertf( ! genC, "TypeDecls should not reach code generation." );
     309                assertf( ! options.genC, "TypeDecls should not reach code generation." );
    309310                output << typeDecl->genTypeString() << " " << typeDecl->name;
    310311                if ( typeDecl->sized ) {
     
    371372
    372373        void CodeGenerator::postvisit( ConstructorInit * init ){
    373                 assertf( ! genC, "ConstructorInit nodes should not reach code generation." );
     374                assertf( ! options.genC, "ConstructorInit nodes should not reach code generation." );
    374375                // pseudo-output for constructor/destructor pairs
    375376                output << "<ctorinit>{" << endl << ++indent << "ctor: ";
     
    507508                                        } else {
    508509                                                // no constructors with 0 or more than 2 parameters
    509                                                 assertf( ! genC, "UntypedExpr constructor/destructor with 0 or more than 2 parameters." );
     510                                                assertf( ! options.genC, "UntypedExpr constructor/destructor with 0 or more than 2 parameters." );
    510511                                                output << "(";
    511512                                                (*arg++)->accept( *visitor );
     
    604605                        // an lvalue cast, this has been taken out.
    605606                        output << "(";
    606                         output << genType( castExpr->get_result(), "", pretty, genC );
     607                        output << genType( castExpr->get_result(), "", options );
    607608                        output << ")";
    608609                } // if
     
    612613
    613614        void CodeGenerator::postvisit( KeywordCastExpr * castExpr ) {
    614                 assertf( ! genC, "KeywordCast should not reach code generation." );
     615                assertf( ! options.genC, "KeywordCast should not reach code generation." );
    615616                extension( castExpr );
    616617                output << "((" << castExpr->targetString() << " &)";
     
    620621
    621622        void CodeGenerator::postvisit( VirtualCastExpr * castExpr ) {
    622                 assertf( ! genC, "VirtualCastExpr should not reach code generation." );
     623                assertf( ! options.genC, "VirtualCastExpr should not reach code generation." );
    623624                extension( castExpr );
    624625                output << "(virtual ";
     
    628629
    629630        void CodeGenerator::postvisit( UntypedMemberExpr * memberExpr ) {
    630                 assertf( ! genC, "UntypedMemberExpr should not reach code generation." );
     631                assertf( ! options.genC, "UntypedMemberExpr should not reach code generation." );
    631632                extension( memberExpr );
    632633                memberExpr->get_aggregate()->accept( *visitor );
     
    661662                output << "sizeof(";
    662663                if ( sizeofExpr->get_isType() ) {
    663                         output << genType( sizeofExpr->get_type(), "", pretty, genC );
     664                        output << genType( sizeofExpr->get_type(), "", options );
    664665                } else {
    665666                        sizeofExpr->get_expr()->accept( *visitor );
     
    673674                output << "__alignof__(";
    674675                if ( alignofExpr->get_isType() ) {
    675                         output << genType( alignofExpr->get_type(), "", pretty, genC );
     676                        output << genType( alignofExpr->get_type(), "", options );
    676677                } else {
    677678                        alignofExpr->get_expr()->accept( *visitor );
     
    681682
    682683        void CodeGenerator::postvisit( UntypedOffsetofExpr * offsetofExpr ) {
    683                 assertf( ! genC, "UntypedOffsetofExpr should not reach code generation." );
     684                assertf( ! options.genC, "UntypedOffsetofExpr should not reach code generation." );
    684685                output << "offsetof(";
    685                 output << genType( offsetofExpr->get_type(), "", pretty, genC );
     686                output << genType( offsetofExpr->get_type(), "", options );
    686687                output << ", " << offsetofExpr->get_member();
    687688                output << ")";
     
    691692                // use GCC builtin
    692693                output << "__builtin_offsetof(";
    693                 output << genType( offsetofExpr->get_type(), "", pretty, genC );
     694                output << genType( offsetofExpr->get_type(), "", options );
    694695                output << ", " << mangleName( offsetofExpr->get_member() );
    695696                output << ")";
     
    697698
    698699        void CodeGenerator::postvisit( OffsetPackExpr * offsetPackExpr ) {
    699                 assertf( ! genC, "OffsetPackExpr should not reach code generation." );
    700                 output << "__CFA_offsetpack(" << genType( offsetPackExpr->get_type(), "", pretty, genC ) << ")";
     700                assertf( ! options.genC, "OffsetPackExpr should not reach code generation." );
     701                output << "__CFA_offsetpack(" << genType( offsetPackExpr->get_type(), "", options ) << ")";
    701702        }
    702703
     
    728729                extension( commaExpr );
    729730                output << "(";
    730                 if ( genC ) {
     731                if ( options.genC ) {
    731732                        // arg1 of a CommaExpr is never used, so it can be safely cast to void to reduce gcc warnings.
    732733                        commaExpr->set_arg1( new CastExpr( commaExpr->get_arg1() ) );
     
    739740
    740741        void CodeGenerator::postvisit( TupleAssignExpr * tupleExpr ) {
    741                 assertf( ! genC, "TupleAssignExpr should not reach code generation." );
     742                assertf( ! options.genC, "TupleAssignExpr should not reach code generation." );
    742743                tupleExpr->stmtExpr->accept( *visitor );
    743744        }
    744745
    745746        void CodeGenerator::postvisit( UntypedTupleExpr * tupleExpr ) {
    746                 assertf( ! genC, "UntypedTupleExpr should not reach code generation." );
     747                assertf( ! options.genC, "UntypedTupleExpr should not reach code generation." );
    747748                extension( tupleExpr );
    748749                output << "[";
     
    752753
    753754        void CodeGenerator::postvisit( TupleExpr * tupleExpr ) {
    754                 assertf( ! genC, "TupleExpr should not reach code generation." );
     755                assertf( ! options.genC, "TupleExpr should not reach code generation." );
    755756                extension( tupleExpr );
    756757                output << "[";
     
    760761
    761762        void CodeGenerator::postvisit( TupleIndexExpr * tupleExpr ) {
    762                 assertf( ! genC, "TupleIndexExpr should not reach code generation." );
     763                assertf( ! options.genC, "TupleIndexExpr should not reach code generation." );
    763764                extension( tupleExpr );
    764765                tupleExpr->get_tuple()->accept( *visitor );
     
    767768
    768769        void CodeGenerator::postvisit( TypeExpr * typeExpr ) {
    769                 // if ( genC ) std::cerr << "typeexpr still exists: " << typeExpr << std::endl;
    770                 // assertf( ! genC, "TypeExpr should not reach code generation." );
    771                 if ( ! genC ) {
    772                         output<< genType( typeExpr->get_type(), "", pretty, genC );
     770                // if ( options.genC ) std::cerr << "typeexpr still exists: " << typeExpr << std::endl;
     771                // assertf( ! options.genC, "TypeExpr should not reach code generation." );
     772                if ( ! options.genC ) {
     773                        output << genType( typeExpr->get_type(), "", options );
    773774                }
    774775        }
     
    788789        void CodeGenerator::postvisit( CompoundLiteralExpr *compLitExpr ) {
    789790                assert( compLitExpr->get_result() && dynamic_cast< ListInit * > ( compLitExpr->get_initializer() ) );
    790                 output << "(" << genType( compLitExpr->get_result(), "", pretty, genC ) << ")";
     791                output << "(" << genType( compLitExpr->get_result(), "", options ) << ")";
    791792                compLitExpr->get_initializer()->accept( *visitor );
    792793        }
    793794
    794795        void CodeGenerator::postvisit( UniqueExpr * unqExpr ) {
    795                 assertf( ! genC, "Unique expressions should not reach code generation." );
     796                assertf( ! options.genC, "Unique expressions should not reach code generation." );
    796797                output << "unq<" << unqExpr->get_id() << ">{ ";
    797798                unqExpr->get_expr()->accept( *visitor );
     
    829830
    830831        void CodeGenerator::postvisit( ConstructorExpr * expr ) {
    831                 assertf( ! genC, "Unique expressions should not reach code generation." );
     832                assertf( ! options.genC, "Unique expressions should not reach code generation." );
    832833                expr->callExpr->accept( *visitor );
    833834        }
    834835
    835836        void CodeGenerator::postvisit( DeletedExpr * expr ) {
    836                 assertf( ! genC, "Deleted expressions should not reach code generation." );
     837                assertf( ! options.genC, "Deleted expressions should not reach code generation." );
    837838                expr->expr->accept( *visitor );
    838839        }
    839840
    840841        void CodeGenerator::postvisit( DefaultArgExpr * arg ) {
    841                 assertf( ! genC, "Default argument expressions should not reach code generation." );
     842                assertf( ! options.genC, "Default argument expressions should not reach code generation." );
    842843                arg->expr->accept( *visitor );
    843844        }
    844845
    845846        void CodeGenerator::postvisit( GenericExpr * expr ) {
    846                 assertf( ! genC, "C11 _Generic expressions should not reach code generation." );
     847                assertf( ! options.genC, "C11 _Generic expressions should not reach code generation." );
    847848                output << "_Generic(";
    848849                expr->control->accept( *visitor );
     
    854855                                output << "default: ";
    855856                        } else {
    856                                 output << genType( assoc.type, "", pretty, genC ) << ": ";
     857                                output << genType( assoc.type, "", options ) << ": ";
    857858                        }
    858859                        assoc.expr->accept( *visitor );
     
    889890        void CodeGenerator::postvisit( ExprStmt * exprStmt ) {
    890891                assert( exprStmt );
    891                 if ( genC ) {
     892                if ( options.genC ) {
    892893                        // cast the top-level expression to void to reduce gcc warnings.
    893894                        exprStmt->set_expr( new CastExpr( exprStmt->get_expr() ) );
     
    9991000                  case BranchStmt::FallThrough:
    10001001                  case BranchStmt::FallThroughDefault:
    1001                         assertf( ! genC, "fallthru should not reach code generation." );
     1002                        assertf( ! options.genC, "fallthru should not reach code generation." );
    10021003                  output << "fallthru";
    10031004                        break;
    10041005                } // switch
    10051006                // print branch target for labelled break/continue/fallthru in debug mode
    1006                 if ( ! genC && branchStmt->get_type() != BranchStmt::Goto ) {
     1007                if ( ! options.genC && branchStmt->get_type() != BranchStmt::Goto ) {
    10071008                        if ( ! branchStmt->get_target().empty() ) {
    10081009                                output << " " << branchStmt->get_target();
     
    10211022
    10221023        void CodeGenerator::postvisit( ThrowStmt * throwStmt ) {
    1023                 assertf( ! genC, "Throw statements should not reach code generation." );
     1024                assertf( ! options.genC, "Throw statements should not reach code generation." );
    10241025
    10251026                output << ((throwStmt->get_kind() == ThrowStmt::Terminate) ?
     
    10361037        }
    10371038        void CodeGenerator::postvisit( CatchStmt * stmt ) {
    1038                 assertf( ! genC, "Catch statements should not reach code generation." );
     1039                assertf( ! options.genC, "Catch statements should not reach code generation." );
    10391040
    10401041                output << ((stmt->get_kind() == CatchStmt::Terminate) ?
     
    10531054
    10541055        void CodeGenerator::postvisit( WaitForStmt * stmt ) {
    1055                 assertf( ! genC, "Waitfor statements should not reach code generation." );
     1056                assertf( ! options.genC, "Waitfor statements should not reach code generation." );
    10561057
    10571058                bool first = true;
     
    10991100
    11001101        void CodeGenerator::postvisit( WithStmt * with ) {
    1101                 if ( ! genC ) {
     1102                if ( ! options.genC ) {
    11021103                        output << "with ( ";
    11031104                        genCommaList( with->exprs.begin(), with->exprs.end() );
     
    11651166
    11661167        void CodeGenerator::postvisit( ImplicitCtorDtorStmt * stmt ) {
    1167                 assertf( ! genC, "ImplicitCtorDtorStmts should not reach code generation." );
     1168                assertf( ! options.genC, "ImplicitCtorDtorStmts should not reach code generation." );
    11681169                stmt->callStmt->accept( *visitor );
    11691170        }
Note: See TracChangeset for help on using the changeset viewer.