source: src/main.cc @ 1ad1c99e

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

tweak output in case of error with -y flag

  • Property mode set to 100644
File size: 9.4 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//
[71f4e4f]7// main.cc --
[b87a5ed]8//
[843054c2]9// Author           : Richard C. Bilson
[b87a5ed]10// Created On       : Fri May 15 23:12:02 2015
[71f4e4f]11// Last Modified By : Rob Schluntz
[f77f12e2]12// Last Modified On : Mon Apr 11 17:49:38 2016
[d63eeb0]13// Update Count     : 200
[b87a5ed]14//
15
[51b7345]16#include <iostream>
17#include <fstream>
[b87a5ed]18#include <cstdlib>
[51b7345]19#include <cstdio>
[b87a5ed]20#include <getopt.h>
[51b7345]21#include "Parser/Parser.h"
22#include "Parser/ParseNode.h"
23#include "Parser/LinkageSpec.h"
24#include "SynTree/Declaration.h"
25#include "SynTree/Visitor.h"
26#include "GenPoly/Lvalue.h"
27#include "GenPoly/Specialize.h"
28#include "GenPoly/Box.h"
29#include "GenPoly/CopyParams.h"
30#include "CodeGen/Generate.h"
31#include "CodeGen/FixNames.h"
32#include "ControlStruct/Mutate.h"
33#include "Tuples/Mutate.h"
34#include "Tuples/FunctionChecker.h"
35#include "SymTab/Mangler.h"
36#include "SymTab/Indexer.h"
37#include "SymTab/Validate.h"
38#include "ResolvExpr/AlternativePrinter.h"
39#include "ResolvExpr/Resolver.h"
40#include "MakeLibCfa.h"
41#include "InitTweak/Mutate.h"
[42e2ad7]42#include "InitTweak/RemoveInit.h"
[71f4e4f]43#include "InitTweak/FixInit.h"
[51b7345]44//#include "Explain/GenProlog.h"
45//#include "Try/Visit.h"
46
[d3b7937]47#include "Common/SemanticError.h"
48#include "Common/UnimplementedError.h"
[51b7345]49
50#include "../config.h"
51
52using namespace std;
53
[81419b5]54#define OPTPRINT(x) \
55        if ( errorp ) std::cerr << x << std::endl;
56
[1ab4ce2]57static void parse( FILE * input, LinkageSpec::Type t, bool shouldExit = false );
[f77f12e2]58static void dump( std::list< Declaration * > & translationUnit, std::ostream & out = std::cout );
[81419b5]59
[b87a5ed]60bool
61        astp = false,
[de62360d]62        bresolvep = false,
[ca1c11f]63        ctorinitp = false,
[b87a5ed]64        exprp = false,
65        expraltp = false,
66        grammarp = false,
67        libcfap = false,
[de62360d]68        nopreludep = false,
[1ab4ce2]69        noprotop = false,
[de62360d]70        parsep = false,
[b87a5ed]71        resolvep = false,                                                                       // used in AlternativeFinder
72        symtabp = false,
[d3b7937]73        treep = false,
[b87a5ed]74        validp = false,
[de62360d]75        errorp = false,
76        codegenp = false;
[b87a5ed]77
[d63eeb0]78enum { Ast, Bresolver, CtorInitFix, Expr, ExprAlt, Grammar, LibCFA, Nopreamble, Parse, Prototypes, Resolver, Symbol, Tree, Validate, };
[b87a5ed]79
80static struct option long_opts[] = {
81        { "ast", no_argument, 0, Ast },
[de62360d]82        { "before-resolver", no_argument, 0, Bresolver },
[ca1c11f]83        { "ctorinitfix", no_argument, 0, CtorInitFix },
[b87a5ed]84        { "expr", no_argument, 0, Expr },
85        { "expralt", no_argument, 0, ExprAlt },
86        { "grammar", no_argument, 0, Grammar },
87        { "libcfa", no_argument, 0, LibCFA },
[1ab4ce2]88        { "no-preamble", no_argument, 0, Nopreamble },
[b1d6dd5]89        { "parse", no_argument, 0, Parse },
[1ab4ce2]90        { "no-prototypes", no_argument, 0, Prototypes },
[b87a5ed]91        { "resolver", no_argument, 0, Resolver },
92        { "symbol", no_argument, 0, Symbol },
[d3b7937]93        { "tree", no_argument, 0, Tree },
[b1d6dd5]94        { "validate", no_argument, 0, Validate },
[b87a5ed]95        { 0, 0, 0, 0 }
96};
[51b7345]97
[8c17ab0]98int main( int argc, char *argv[] ) {
[b87a5ed]99        FILE *input;
100        std::ostream *output = &std::cout;
101        int long_index;
102        std::list< Declaration* > translationUnit;
103
104        opterr = 0;                                                                                     // prevent getopt from printing error messages
[71f4e4f]105
[b87a5ed]106        int c;
[d63eeb0]107        while ( (c = getopt_long( argc, argv, "abcefFglnpqrstvyzD:", long_opts, &long_index )) != -1 ) {
[b87a5ed]108                switch ( c ) {
109                  case Ast:
110                  case 'a':                                                                             // dump AST
111                        astp = true;
112                        break;
[de62360d]113                  case Bresolver:
114                  case 'b':                                                                             // print before resolver steps
115                        bresolvep = true;
116                        break;
[ca1c11f]117                        case CtorInitFix:
118                        case 'c':
119                        ctorinitp = true;
120                        break;
[b87a5ed]121                  case Expr:
122                  case 'e':                                                                             // dump AST after expression analysis
123                        exprp = true;
124                        break;
125                  case ExprAlt:
126                  case 'f':                                                                             // print alternatives for expressions
127                        expraltp = true;
128                        break;
129                  case Grammar:
130                  case 'g':                                                                             // bison debugging info (grammar rules)
131                        grammarp = true;
132                        break;
133                  case LibCFA:
134                  case 'l':                                                                             // generate libcfa.c
135                        libcfap = true;
136                        break;
137                  case Nopreamble:
138                  case 'n':                                                                             // do not read preamble
[de62360d]139                        nopreludep = true;
[b87a5ed]140                        break;
141                  case Prototypes:
142                  case 'p':                                                                             // generate prototypes for preamble functions
[1ab4ce2]143                        noprotop = true;
[b87a5ed]144                        break;
145                  case Parse:
146                  case 'q':                                                                             // dump parse tree
147                        parsep = true;
148                        break;
149                  case Resolver:
150                  case 'r':                                                                             // print resolver steps
151                        resolvep = true;
152                        break;
153                  case Symbol:
154                  case 's':                                                                             // print symbol table events
155                        symtabp = true;
156                        break;
[d3b7937]157                  case Tree:
158                  case 't':                                                                             // build in tree
159                        treep = true;
160                        break;
[b1d6dd5]161                  case 'v':                                                                             // dump AST after decl validation pass
[b87a5ed]162                        validp = true;
163                        break;
164                  case 'y':
165                        errorp = true;
166                        break;
167                  case 'z':
168                        codegenp = true;
169                        break;
170                  case 'D':                                                                             // ignore -Dxxx
171                        break;
172                  case '?':
173                        cout << "Unknown option: '" << (char)optopt << "'" << endl;
174                        exit(1);
175                  default:
176                        abort();
177                } // switch
178        } // while
179
180        try {
[81419b5]181                // choose to read the program from a file or stdin
[b87a5ed]182                if ( optind < argc ) {
183                        input = fopen( argv[ optind ], "r" );
184                        if ( ! input ) {
185                                std::cout << "Error: can't open " << argv[optind] << std::endl;
186                                exit( 1 );
187                        } // if
188                        optind += 1;
189                } else {
190                        input = stdin;
191                } // if
192
193                if ( optind < argc ) {
194                        output = new ofstream( argv[ optind ] );
195                } // if
[71f4e4f]196
[b87a5ed]197                Parser::get_parser().set_debug( grammarp );
[81419b5]198
199                // read in the builtins and the prelude
[de62360d]200                if ( ! nopreludep ) {                                                   // include gcc builtins
[faf8857]201                        // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
[d3b7937]202                        FILE * builtins = fopen( libcfap | treep ? "builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" );
[b87a5ed]203                        if ( builtins == NULL ) {
[d3b7937]204                                std::cerr << "Error: can't open builtins.cf" << std::endl;
[b87a5ed]205                                exit( 1 );
206                        } // if
207
[81419b5]208                        parse( builtins, LinkageSpec::Compiler );
209
210                        if ( ! libcfap ) {
[faf8857]211                                // read the prelude in, if not generating the cfa library
[d3b7937]212                                FILE * prelude = fopen( treep ? "prelude.cf" : CFA_LIBDIR "/prelude.cf", "r" );
[81419b5]213                                if ( prelude == NULL ) {
[d3b7937]214                                        std::cerr << "Error: can't open prelude.cf" << std::endl;
[81419b5]215                                        exit( 1 );
216                                } // if
[71f4e4f]217
[35304009]218                                parse( prelude, LinkageSpec::Intrinsic );
[b87a5ed]219                        } // if
220                } // if
[81419b5]221
[71f4e4f]222                parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, grammarp );
223
[b87a5ed]224                if ( parsep ) {
225                        Parser::get_parser().get_parseTree()->printList( std::cout );
226                        Parser::get_parser().freeTree();
227                        return 0;
228                } // if
229
230                buildList( Parser::get_parser().get_parseTree(), translationUnit );
231
232                Parser::get_parser().freeTree();
233                if ( astp ) {
[1ab4ce2]234                        dump( translationUnit );
[b87a5ed]235                        return 0;
236                } // if
237
[839ccbb]238                // add the assignment statement after the initialization of a type parameter
[81419b5]239                OPTPRINT( "validate" )
240                SymTab::validate( translationUnit, symtabp );
241                if ( symtabp ) {
[b87a5ed]242                        return 0;
243                } // if
244
[81419b5]245                if ( expraltp ) {
246                        ResolvExpr::AlternativePrinter printer( std::cout );
247                        acceptAll( translationUnit, printer );
[b87a5ed]248                        return 0;
249                } // if
250
251                if ( validp ) {
[1ab4ce2]252                        dump( translationUnit );
[b87a5ed]253                        return 0;
254                } // if
255
[81419b5]256                OPTPRINT( "mutate" )
257                ControlStruct::mutate( translationUnit );
[71f4e4f]258                OPTPRINT( "fixNames" )
[81419b5]259                CodeGen::fixNames( translationUnit );
[f1e012b]260                OPTPRINT( "tweakInit" )
[e497c1d]261                InitTweak::tweak( translationUnit );
[b87a5ed]262
[81419b5]263                if ( libcfap ) {
264                        // generate the bodies of cfa library functions
265                        LibCfa::makeLibCfa( translationUnit );
[b87a5ed]266                } // if
267
[de62360d]268                if ( bresolvep ) {
[1ab4ce2]269                        dump( translationUnit );
[de62360d]270                        return 0;
271                } // if
272
[81419b5]273                OPTPRINT( "resolve" )
[b87a5ed]274                ResolvExpr::resolve( translationUnit );
[81419b5]275                if ( exprp ) {
[1ab4ce2]276                        dump( translationUnit );
[ca1c11f]277                        return 0;
[81419b5]278                }
279
[f1e012b]280                OPTPRINT( "fixInit" )
[71f4e4f]281                // fix ObjectDecl - replaces ConstructorInit nodes
282                InitTweak::fix( translationUnit );
[ca1c11f]283                if ( ctorinitp ) {
284                        dump ( translationUnit );
285                        return 0;
286                }
[71f4e4f]287
[81419b5]288                OPTPRINT( "copyParams" );
[b87a5ed]289                GenPoly::copyParams( translationUnit );
[81419b5]290                OPTPRINT( "convertSpecializations" )
[698664b3]291                GenPoly::convertSpecializations( translationUnit );
[81419b5]292                OPTPRINT( "convertLvalue" )
[b87a5ed]293                GenPoly::convertLvalue( translationUnit );
[81419b5]294                OPTPRINT( "box" )
[b87a5ed]295                GenPoly::box( translationUnit );
[81419b5]296
[2871210]297                // print tree right before code generation
[81419b5]298                if ( codegenp ) {
[1ab4ce2]299                        dump( translationUnit );
[81419b5]300                        return 0;
301                } // if
[b87a5ed]302
[1ab4ce2]303                CodeGen::generate( translationUnit, *output, ! noprotop );
[b87a5ed]304
305                if ( output != &std::cout ) {
306                        delete output;
307                } // if
308        } catch ( SemanticError &e ) {
309                if ( errorp ) {
[f77f12e2]310                        std::cerr << "---AST at error:---" << std::endl;
311                        dump( translationUnit, std::cerr );
312                        std::cerr << std::endl << "---End of AST, begin error message:---\n" << std::endl;
[b87a5ed]313                }
[81419b5]314                e.print( std::cerr );
[b87a5ed]315                if ( output != &std::cout ) {
316                        delete output;
317                } // if
318                return 1;
319        } catch ( UnimplementedError &e ) {
320                std::cout << "Sorry, " << e.get_what() << " is not currently implemented" << std::endl;
321                if ( output != &std::cout ) {
322                        delete output;
323                } // if
324                return 1;
325        } catch ( CompilerError &e ) {
326                std::cerr << "Compiler Error: " << e.get_what() << std::endl;
327                std::cerr << "(please report bugs to " << std::endl;
328                if ( output != &std::cout ) {
329                        delete output;
330                } // if
331                return 1;
332        } // try
333
[39786813]334        deleteAll( translationUnit );
[b87a5ed]335        return 0;
[d9a0e76]336} // main
[51b7345]337
[1ab4ce2]338static void parse( FILE * input, LinkageSpec::Type linkage, bool shouldExit ) {
[81419b5]339        Parser::get_parser().set_linkage( linkage );
340        Parser::get_parser().parse( input );
341
342        fclose( input );
343        if ( shouldExit || Parser::get_parser().get_parseStatus() != 0 ) {
344                exit( Parser::get_parser().get_parseStatus() );
345        } // if
346}
347
[1ab4ce2]348static bool notPrelude( Declaration * decl ) {
349        return ! LinkageSpec::isBuiltin( decl->get_linkage() );
350}
351
[f77f12e2]352static void dump( std::list< Declaration * > & translationUnit, std::ostream & out ) {
[1ab4ce2]353        std::list< Declaration * > decls;
354        if ( noprotop ) {
[71f4e4f]355                filter( translationUnit.begin(), translationUnit.end(),
[1ab4ce2]356                                std::back_inserter( decls ), notPrelude );
357        } else {
358                decls = translationUnit;
359        }
360
[f77f12e2]361        printAll( decls, out );
[7f5566b]362        deleteAll( translationUnit );
[1ab4ce2]363}
364
365
[51b7345]366// Local Variables: //
[b87a5ed]367// tab-width: 4 //
368// mode: c++ //
369// compile-command: "make install" //
[51b7345]370// End:  //
Note: See TracBrowser for help on using the repository browser.