source: src/main.cc @ 4d4882a

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 4d4882a was 46f6134, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Implemented owning scoped map for typedef elimination phase

  • Property mode set to 100644
File size: 12.5 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
[dd51906]11// Last Modified By : Peter A. Buhr
[e6955b1]12// Last Modified On : Sat Aug 20 12:52:22 2016
13// Update Count     : 403
[b87a5ed]14//
15
[51b7345]16#include <iostream>
17#include <fstream>
[e6955b1]18#include <signal.h>                                                                             // signal
19#include <getopt.h>                                                                             // getopt
20#include <execinfo.h>                                                                   // backtrace, backtrace_symbols_fd
21#include <cxxabi.h>                                                                             // __cxa_demangle
22
23using namespace std;
24
[0da3e2c]25#include "Parser/lex.h"
26#include "Parser/parser.h"
27#include "Parser/TypedefTable.h"
[51b7345]28#include "GenPoly/Lvalue.h"
29#include "GenPoly/Specialize.h"
30#include "GenPoly/Box.h"
31#include "GenPoly/CopyParams.h"
[ea5daeb]32#include "GenPoly/InstantiateGeneric.h"
[51b7345]33#include "CodeGen/Generate.h"
34#include "CodeGen/FixNames.h"
35#include "ControlStruct/Mutate.h"
36#include "SymTab/Validate.h"
37#include "ResolvExpr/AlternativePrinter.h"
38#include "ResolvExpr/Resolver.h"
39#include "MakeLibCfa.h"
[a0fdbd5]40#include "InitTweak/GenInit.h"
[71f4e4f]41#include "InitTweak/FixInit.h"
[d3b7937]42#include "Common/UnimplementedError.h"
[51b7345]43#include "../config.h"
44
45using namespace std;
46
[e6955b1]47#define OPTPRINT(x) if ( errorp ) cerr << x << endl;
[81419b5]48
[0da3e2c]49
[8b7ee09]50LinkageSpec::Spec linkage = LinkageSpec::Cforall;
[0da3e2c]51TypedefTable typedefTable;
[cbaee0d]52DeclarationNode * parseTree = nullptr;                                  // program parse tree
[81419b5]53
[926af74]54extern int yydebug;                                                                             // set for -g flag (Grammar)
[b87a5ed]55bool
56        astp = false,
[de62360d]57        bresolvep = false,
[fea7ca7]58        bboxp = false,
[ca1c11f]59        ctorinitp = false,
[b87a5ed]60        exprp = false,
61        expraltp = false,
62        libcfap = false,
[de62360d]63        nopreludep = false,
[1ab4ce2]64        noprotop = false,
[de62360d]65        parsep = false,
[b87a5ed]66        resolvep = false,                                                                       // used in AlternativeFinder
67        symtabp = false,
[d3b7937]68        treep = false,
[b87a5ed]69        validp = false,
[de62360d]70        errorp = false,
71        codegenp = false;
[b87a5ed]72
[926af74]73static void parse_cmdline( int argc, char *argv[], const char *& filename );
[8b7ee09]74static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit = false );
[e6955b1]75static void dump( list< Declaration * > & translationUnit, ostream & out = cout );
76
77void sigSegvBusHandler( int sig_num ) {
78        enum { Frames = 50 };
79        void * array[Frames];
80        int size = backtrace( array, Frames );
81
82        cerr << "*CFA runtime error* program cfa-cpp terminated with "
83                 <<     (sig_num == SIGSEGV ? "segment fault" : "bus error")
84                 << " backtrace:" << endl;
85
[46f6134]86        char ** messages = backtrace_symbols( array, size );
[e6955b1]87
88        // skip first stack frame (points here)
89        for ( int i = 2; i < size - 2 && messages != nullptr; i += 1 ) {
90                char * mangled_name = nullptr, * offset_begin = nullptr, * offset_end = nullptr;
91                for ( char *p = messages[i]; *p; ++p ) {        // find parantheses and +offset
92                        if (*p == '(') {
[46f6134]93                                mangled_name = p;
[e6955b1]94                        } else if (*p == '+') {
95                                offset_begin = p;
96                        } else if (*p == ')') {
97                                offset_end = p;
98                                break;
99                        } // if
100                } // for
101
102                // if line contains symbol, attempt to demangle
103                if ( mangled_name && offset_begin && offset_end && mangled_name < offset_begin ) {
104                        *mangled_name++ = '\0';
105                        *offset_begin++ = '\0';
106                        *offset_end++ = '\0';
107
108                        int status;
109                        char * real_name = __cxxabiv1::__cxa_demangle( mangled_name, 0, 0, &status );
110                        if ( status == 0 ) {                                            // demangling successful ?
[46f6134]111                                cerr << "(" << i - 2 << ") " << messages[i] << " : "
[e6955b1]112                                         << real_name << "+" << offset_begin << offset_end << endl;
113
114                        } else {                                                                        // otherwise, output mangled name
[46f6134]115                                cerr << "(" << i - 2 << ") " << messages[i] << " : "
[e6955b1]116                                         << mangled_name << "+" << offset_begin << offset_end << endl;
117                        } // if
118                        free( real_name );
119                } else {                                                                                // otherwise, print the whole line
120                        cerr << "(" << i - 2 << ") " << messages[i] << endl;
121                } // if
122        } // for
123        free( messages );
124        exit( EXIT_FAILURE );
125} // sigSegvBusHandler
[0da3e2c]126
[cbaee0d]127int main( int argc, char * argv[] ) {
[3b8e52c]128        FILE * input;                                                                           // use FILE rather than istream because yyin is FILE
[e6955b1]129        ostream *output = & cout;
[926af74]130        const char *filename = nullptr;
[e6955b1]131        list< Declaration * > translationUnit;
132
133        signal( SIGSEGV, sigSegvBusHandler );
134        signal( SIGBUS, sigSegvBusHandler );
[b87a5ed]135
[0da3e2c]136        parse_cmdline( argc, argv, filename );                          // process command-line arguments
[b87a5ed]137
138        try {
[81419b5]139                // choose to read the program from a file or stdin
[3b8e52c]140                if ( optind < argc ) {                                                  // any commands after the flags ? => input file name
[b87a5ed]141                        input = fopen( argv[ optind ], "r" );
[3b8e52c]142                        assertf( input, "cannot open %s\n", argv[ optind ] );
[d029162]143                        // if running cfa-cpp directly, might forget to pass -F option (and really shouldn't have to)
[926af74]144                        if ( filename == nullptr ) filename = argv[ optind ];
[37024fd]145                        // prelude filename comes in differently
146                        if ( libcfap ) filename = "prelude.cf";
[b87a5ed]147                        optind += 1;
[3b8e52c]148                } else {                                                                                // no input file name
[b87a5ed]149                        input = stdin;
[2a7e29b]150                        // if running cfa-cpp directly, might forget to pass -F option. Since this takes from stdin, pass
151                        // a fake name along
[926af74]152                        if ( filename == nullptr ) filename = "stdin";
[b87a5ed]153                } // if
154
[3b8e52c]155                if ( optind < argc ) {                                                  // any commands after the flags and input file ? => output file name
[b87a5ed]156                        output = new ofstream( argv[ optind ] );
157                } // if
[71f4e4f]158
[159c62e]159                // read in the builtins, extras, and the prelude
[de62360d]160                if ( ! nopreludep ) {                                                   // include gcc builtins
[faf8857]161                        // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
[d3b7937]162                        FILE * builtins = fopen( libcfap | treep ? "builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" );
[3b8e52c]163                        assertf( builtins, "cannot open builtins.cf\n" );
[81419b5]164                        parse( builtins, LinkageSpec::Compiler );
165
[159c62e]166                        // read the extra prelude in, if not generating the cfa library
167                        FILE * extras = fopen( libcfap | treep ? "extras.cf" : CFA_LIBDIR "/extras.cf", "r" );
[3b8e52c]168                        assertf( extras, "cannot open extras.cf\n" );
[159c62e]169                        parse( extras, LinkageSpec::C );
170
[81419b5]171                        if ( ! libcfap ) {
[faf8857]172                                // read the prelude in, if not generating the cfa library
[d3b7937]173                                FILE * prelude = fopen( treep ? "prelude.cf" : CFA_LIBDIR "/prelude.cf", "r" );
[3b8e52c]174                                assertf( prelude, "cannot open prelude.cf\n" );
[35304009]175                                parse( prelude, LinkageSpec::Intrinsic );
[b87a5ed]176                        } // if
177                } // if
[81419b5]178
[926af74]179                parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, yydebug );
[71f4e4f]180
[b87a5ed]181                if ( parsep ) {
[e6955b1]182                        parseTree->printList( cout );
[0da3e2c]183                        delete parseTree;
[b87a5ed]184                        return 0;
185                } // if
186
[0da3e2c]187                buildList( parseTree, translationUnit );
188                delete parseTree;
[cbaee0d]189                parseTree = nullptr;
[b87a5ed]190
191                if ( astp ) {
[1ab4ce2]192                        dump( translationUnit );
[b87a5ed]193                        return 0;
194                } // if
195
[839ccbb]196                // add the assignment statement after the initialization of a type parameter
[81419b5]197                OPTPRINT( "validate" )
198                SymTab::validate( translationUnit, symtabp );
199                if ( symtabp ) {
[46f6134]200                        deleteAll( translationUnit );
[b87a5ed]201                        return 0;
202                } // if
203
[81419b5]204                if ( expraltp ) {
[e6955b1]205                        ResolvExpr::AlternativePrinter printer( cout );
[81419b5]206                        acceptAll( translationUnit, printer );
[b87a5ed]207                        return 0;
208                } // if
209
210                if ( validp ) {
[1ab4ce2]211                        dump( translationUnit );
[b87a5ed]212                        return 0;
213                } // if
214
[81419b5]215                OPTPRINT( "mutate" )
216                ControlStruct::mutate( translationUnit );
[71f4e4f]217                OPTPRINT( "fixNames" )
[81419b5]218                CodeGen::fixNames( translationUnit );
[f1e012b]219                OPTPRINT( "tweakInit" )
[a0fdbd5]220                InitTweak::genInit( translationUnit );
[b87a5ed]221
[81419b5]222                if ( libcfap ) {
223                        // generate the bodies of cfa library functions
224                        LibCfa::makeLibCfa( translationUnit );
[b87a5ed]225                } // if
226
[de62360d]227                if ( bresolvep ) {
[1ab4ce2]228                        dump( translationUnit );
[de62360d]229                        return 0;
230                } // if
231
[81419b5]232                OPTPRINT( "resolve" )
[b87a5ed]233                ResolvExpr::resolve( translationUnit );
[81419b5]234                if ( exprp ) {
[1ab4ce2]235                        dump( translationUnit );
[ca1c11f]236                        return 0;
[926af74]237                } // if
[81419b5]238
[71f4e4f]239                // fix ObjectDecl - replaces ConstructorInit nodes
[6cf27a07]240                OPTPRINT( "fixInit" )
241                InitTweak::fix( translationUnit, filename, libcfap || treep );
[ca1c11f]242                if ( ctorinitp ) {
243                        dump ( translationUnit );
244                        return 0;
[926af74]245                } // if
[71f4e4f]246
[ea5daeb]247                OPTPRINT("instantiateGenerics")
248                GenPoly::instantiateGeneric( translationUnit );
[81419b5]249                OPTPRINT( "copyParams" );
[b87a5ed]250                GenPoly::copyParams( translationUnit );
[81419b5]251                OPTPRINT( "convertSpecializations" )
[698664b3]252                GenPoly::convertSpecializations( translationUnit );
[81419b5]253                OPTPRINT( "convertLvalue" )
[b87a5ed]254                GenPoly::convertLvalue( translationUnit );
[fea7ca7]255
256                if ( bboxp ) {
257                        dump( translationUnit );
258                        return 0;
[926af74]259                } // if
[81419b5]260                OPTPRINT( "box" )
[b87a5ed]261                GenPoly::box( translationUnit );
[81419b5]262
[2871210]263                // print tree right before code generation
[81419b5]264                if ( codegenp ) {
[1ab4ce2]265                        dump( translationUnit );
[81419b5]266                        return 0;
267                } // if
[b87a5ed]268
[1ab4ce2]269                CodeGen::generate( translationUnit, *output, ! noprotop );
[b87a5ed]270
[e6955b1]271                if ( output != &cout ) {
[b87a5ed]272                        delete output;
273                } // if
274        } catch ( SemanticError &e ) {
275                if ( errorp ) {
[e6955b1]276                        cerr << "---AST at error:---" << endl;
277                        dump( translationUnit, cerr );
278                        cerr << endl << "---End of AST, begin error message:---\n" << endl;
[926af74]279                } // if
[e6955b1]280                e.print( cerr );
281                if ( output != &cout ) {
[b87a5ed]282                        delete output;
283                } // if
284                return 1;
285        } catch ( UnimplementedError &e ) {
[e6955b1]286                cout << "Sorry, " << e.get_what() << " is not currently implemented" << endl;
287                if ( output != &cout ) {
[b87a5ed]288                        delete output;
289                } // if
290                return 1;
291        } catch ( CompilerError &e ) {
[e6955b1]292                cerr << "Compiler Error: " << e.get_what() << endl;
293                cerr << "(please report bugs to " << endl;
294                if ( output != &cout ) {
[b87a5ed]295                        delete output;
296                } // if
297                return 1;
298        } // try
299
[39786813]300        deleteAll( translationUnit );
[b87a5ed]301        return 0;
[d9a0e76]302} // main
[51b7345]303
[cbaee0d]304void parse_cmdline( int argc, char * argv[], const char *& filename ) {
[0da3e2c]305        enum { Ast, Bbox, Bresolver, CtorInitFix, Expr, ExprAlt, Grammar, LibCFA, Nopreamble, Parse, Prototypes, Resolver, Symbol, Tree, Validate, };
306
307        static struct option long_opts[] = {
308                { "ast", no_argument, 0, Ast },
309                { "before-box", no_argument, 0, Bbox },
310                { "before-resolver", no_argument, 0, Bresolver },
311                { "ctorinitfix", no_argument, 0, CtorInitFix },
312                { "expr", no_argument, 0, Expr },
313                { "expralt", no_argument, 0, ExprAlt },
314                { "grammar", no_argument, 0, Grammar },
315                { "libcfa", no_argument, 0, LibCFA },
316                { "no-preamble", no_argument, 0, Nopreamble },
317                { "parse", no_argument, 0, Parse },
318                { "no-prototypes", no_argument, 0, Prototypes },
319                { "resolver", no_argument, 0, Resolver },
320                { "symbol", no_argument, 0, Symbol },
321                { "tree", no_argument, 0, Tree },
322                { "validate", no_argument, 0, Validate },
323                { 0, 0, 0, 0 }
324        }; // long_opts
325        int long_index;
326
327        opterr = 0;                                                                                     // (global) prevent getopt from printing error messages
328
329        int c;
330        while ( (c = getopt_long( argc, argv, "abBcefglnpqrstvyzD:F:", long_opts, &long_index )) != -1 ) {
331                switch ( c ) {
332                  case Ast:
333                  case 'a':                                                                             // dump AST
334                        astp = true;
335                        break;
336                  case Bresolver:
337                  case 'b':                                                                             // print before resolver steps
338                        bresolvep = true;
339                        break;
340                  case 'B':                                                                             // print before resolver steps
341                        bboxp = true;
342                        break;
343                  case CtorInitFix:
344                  case 'c':
345                        ctorinitp = true;
346                        break;
347                  case Expr:
348                  case 'e':                                                                             // dump AST after expression analysis
349                        exprp = true;
350                        break;
351                  case ExprAlt:
352                  case 'f':                                                                             // print alternatives for expressions
353                        expraltp = true;
354                        break;
355                  case Grammar:
356                  case 'g':                                                                             // bison debugging info (grammar rules)
[926af74]357                        yydebug = true;
[0da3e2c]358                        break;
359                  case LibCFA:
360                  case 'l':                                                                             // generate libcfa.c
361                        libcfap = true;
362                        break;
363                  case Nopreamble:
364                  case 'n':                                                                             // do not read preamble
365                        nopreludep = true;
366                        break;
367                  case Prototypes:
368                  case 'p':                                                                             // generate prototypes for preamble functions
369                        noprotop = true;
370                        break;
371                  case Parse:
372                  case 'q':                                                                             // dump parse tree
373                        parsep = true;
374                        break;
375                  case Resolver:
376                  case 'r':                                                                             // print resolver steps
377                        resolvep = true;
378                        break;
379                  case Symbol:
380                  case 's':                                                                             // print symbol table events
381                        symtabp = true;
382                        break;
383                  case Tree:
384                  case 't':                                                                             // build in tree
385                        treep = true;
386                        break;
387                  case 'v':                                                                             // dump AST after decl validation pass
388                        validp = true;
389                        break;
390                  case 'y':
391                        errorp = true;
392                        break;
393                  case 'z':
394                        codegenp = true;
395                        break;
396                  case 'D':                                                                             // ignore -Dxxx
397                        break;
398                  case 'F':                                                                             // source file-name without suffix
399                        filename = optarg;
400                        break;
401                  case '?':
[3b8e52c]402                        assertf( false, "Unknown option: '%c'\n", (char)optopt );
[0da3e2c]403                  default:
404                        abort();
405                } // switch
406        } // while
407} // parse_cmdline
408
[8b7ee09]409static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit ) {
[0da3e2c]410        extern int yyparse( void );
[cbaee0d]411        extern FILE * yyin;
[0da3e2c]412        extern int yylineno;
413
[8b7ee09]414        ::linkage = linkage;                                                            // set globals
[0da3e2c]415        yyin = input;
416        yylineno = 1;
417        typedefTable.enterScope();
418        int parseStatus = yyparse();
[81419b5]419
420        fclose( input );
[0da3e2c]421        if ( shouldExit || parseStatus != 0 ) {
422                exit( parseStatus );
[81419b5]423        } // if
[0da3e2c]424} // parse
[81419b5]425
[1ab4ce2]426static bool notPrelude( Declaration * decl ) {
427        return ! LinkageSpec::isBuiltin( decl->get_linkage() );
[0da3e2c]428} // notPrelude
[1ab4ce2]429
[e6955b1]430static void dump( list< Declaration * > & translationUnit, ostream & out ) {
431        list< Declaration * > decls;
[926af74]432
[1ab4ce2]433        if ( noprotop ) {
[e6955b1]434                filter( translationUnit.begin(), translationUnit.end(), back_inserter( decls ), notPrelude );
[1ab4ce2]435        } else {
436                decls = translationUnit;
[926af74]437        } // if
[1ab4ce2]438
[f77f12e2]439        printAll( decls, out );
[7f5566b]440        deleteAll( translationUnit );
[0da3e2c]441} // dump
[1ab4ce2]442
[51b7345]443// Local Variables: //
[b87a5ed]444// tab-width: 4 //
445// mode: c++ //
446// compile-command: "make install" //
[51b7345]447// End:  //
Note: See TracBrowser for help on using the repository browser.