source: src/main.cc @ fa4805f

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since fa4805f was fa4805f, checked in by Andrew Beach <ajbeach@…>, 7 years ago

The builtins.cf now includes exception handling functions.

  • Property mode set to 100644
File size: 15.9 KB
Line 
1
2//
3// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
4//
5// The contents of this file are covered under the licence agreement in the
6// file "LICENCE" distributed with Cforall.
7//
8// main.cc --
9//
10// Author           : Richard C. Bilson
11// Created On       : Fri May 15 23:12:02 2015
12// Last Modified By : Andrew Beach
13// Last Modified On : Wed Jun 28 15:34:00 2017
14// Update Count     : 438
15//
16
17#include <iostream>
18#include <fstream>
19#include <signal.h>                                                                             // signal
20#include <getopt.h>                                                                             // getopt
21#include <execinfo.h>                                                                   // backtrace, backtrace_symbols
22#include <cxxabi.h>                                                                             // __cxa_demangle
23#include <cstring>                                                                              // index
24
25using namespace std;
26
27#include "Parser/lex.h"
28#include "Parser/parser.h"
29#include "Parser/TypedefTable.h"
30#include "GenPoly/Lvalue.h"
31#include "GenPoly/Specialize.h"
32#include "GenPoly/Box.h"
33#include "GenPoly/CopyParams.h"
34#include "GenPoly/InstantiateGeneric.h"
35#include "Concurrency/Keywords.h"
36#include "CodeGen/Generate.h"
37#include "CodeGen/FixNames.h"
38#include "CodeGen/FixMain.h"
39#include "CodeTools/DeclStats.h"
40#include "CodeTools/TrackLoc.h"
41#include "ControlStruct/Mutate.h"
42#include "SymTab/Validate.h"
43#include "ResolvExpr/AlternativePrinter.h"
44#include "ResolvExpr/Resolver.h"
45#include "MakeLibCfa.h"
46#include "InitTweak/GenInit.h"
47#include "InitTweak/FixInit.h"
48#include "Common/UnimplementedError.h"
49#include "../config.h"
50#include "Tuples/Tuples.h"
51
52using namespace std;
53
54#define OPTPRINT(x) if ( errorp ) cerr << x << endl;
55
56
57LinkageSpec::Spec linkage = LinkageSpec::Cforall;
58TypedefTable typedefTable;
59DeclarationNode * parseTree = nullptr;                                  // program parse tree
60
61extern int yydebug;                                                                             // set for -g flag (Grammar)
62bool
63        astp = false,
64        bresolvep = false,
65        bboxp = false,
66        bcodegenp = false,
67        ctorinitp = false,
68        declstatsp = false,
69        exprp = false,
70        expraltp = false,
71        libcfap = false,
72        nopreludep = false,
73        noprotop = false,
74        nomainp = false,
75        parsep = false,
76        resolvep = false,                                                                       // used in AlternativeFinder
77        symtabp = false,
78        treep = false,
79        tuplep = false,
80        validp = false,
81        errorp = false,
82        codegenp = false,
83        prettycodegenp = false,
84        nolinemarks = false;
85
86static void parse_cmdline( int argc, char *argv[], const char *& filename );
87static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit = false );
88static void dump( list< Declaration * > & translationUnit, ostream & out = cout );
89
90static void backtrace( int start ) {                                    // skip first N stack frames
91        enum { Frames = 50 };
92        void * array[Frames];
93        int size = ::backtrace( array, Frames );
94        char ** messages = ::backtrace_symbols( array, size ); // does not demangle names
95
96        *index( messages[0], '(' ) = '\0';                                      // find executable name
97        cerr << "Stack back trace for: " << messages[0] << endl;
98
99        // skip last 2 stack frames after main
100        for ( int i = start; i < size - 2 && messages != nullptr; i += 1 ) {
101                char * mangled_name = nullptr, * offset_begin = nullptr, * offset_end = nullptr;
102                for ( char *p = messages[i]; *p; ++p ) {        // find parantheses and +offset
103                        if ( *p == '(' ) {
104                                mangled_name = p;
105                        } else if ( *p == '+' ) {
106                                offset_begin = p;
107                        } else if ( *p == ')' ) {
108                                offset_end = p;
109                                break;
110                        } // if
111                } // for
112
113                // if line contains symbol, attempt to demangle
114                int frameNo = i - start;
115                if ( mangled_name && offset_begin && offset_end && mangled_name < offset_begin ) {
116                        *mangled_name++ = '\0';                                         // delimit strings
117                        *offset_begin++ = '\0';
118                        *offset_end++ = '\0';
119
120                        int status;
121                        char * real_name = __cxxabiv1::__cxa_demangle( mangled_name, 0, 0, &status );
122                        // bug in __cxa_demangle for single-character lower-case non-mangled names
123                        if ( status == 0 ) {                                            // demangling successful ?
124                                cerr << "(" << frameNo << ") " << messages[i] << " : "
125                                         << real_name << "+" << offset_begin << offset_end << endl;
126                        } else {                                                                        // otherwise, output mangled name
127                                cerr << "(" << frameNo << ") " << messages[i] << " : "
128                                         << mangled_name << "(/*unknown*/)+" << offset_begin << offset_end << endl;
129                        } // if
130
131                        free( real_name );
132                } else {                                                                                // otherwise, print the whole line
133                        cerr << "(" << frameNo << ") " << messages[i] << endl;
134                } // if
135        } // for
136
137        free( messages );
138} // backtrace
139
140void sigSegvBusHandler( int sig_num ) {
141        cerr << "*CFA runtime error* program cfa-cpp terminated with "
142                 <<     (sig_num == SIGSEGV ? "segment fault" : "bus error")
143                 << "." << endl;
144        backtrace( 2 );                                                                         // skip first 2 stack frames
145        exit( EXIT_FAILURE );
146} // sigSegvBusHandler
147
148void sigAbortHandler( __attribute__((unused)) int sig_num ) {
149        backtrace( 6 );                                                                         // skip first 6 stack frames
150        signal( SIGABRT, SIG_DFL);                                                      // reset default signal handler
151    raise( SIGABRT );                                                                   // reraise SIGABRT
152} // sigAbortHandler
153
154
155int main( int argc, char * argv[] ) {
156        FILE * input;                                                                           // use FILE rather than istream because yyin is FILE
157        ostream *output = & cout;
158        const char *filename = nullptr;
159        list< Declaration * > translationUnit;
160
161        signal( SIGSEGV, sigSegvBusHandler );
162        signal( SIGBUS, sigSegvBusHandler );
163        signal( SIGABRT, sigAbortHandler );
164
165        parse_cmdline( argc, argv, filename );                          // process command-line arguments
166        CodeGen::FixMain::setReplaceMain( !nomainp );
167
168        try {
169                // choose to read the program from a file or stdin
170                if ( optind < argc ) {                                                  // any commands after the flags ? => input file name
171                        input = fopen( argv[ optind ], "r" );
172                        assertf( input, "cannot open %s\n", argv[ optind ] );
173                        // if running cfa-cpp directly, might forget to pass -F option (and really shouldn't have to)
174                        if ( filename == nullptr ) filename = argv[ optind ];
175                        // prelude filename comes in differently
176                        if ( libcfap ) filename = "prelude.cf";
177                        optind += 1;
178                } else {                                                                                // no input file name
179                        input = stdin;
180                        // if running cfa-cpp directly, might forget to pass -F option. Since this takes from stdin, pass
181                        // a fake name along
182                        if ( filename == nullptr ) filename = "stdin";
183                } // if
184
185                // read in the builtins, extras, and the prelude
186                if ( ! nopreludep ) {                                                   // include gcc builtins
187                        // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
188
189                        // Read to gcc builtins, if not generating the cfa library
190                        FILE * gcc_builtins = fopen( libcfap | treep ? "../prelude/gcc-builtins.cf" : CFA_LIBDIR "/gcc-builtins.cf", "r" );
191                        assertf( gcc_builtins, "cannot open gcc-builtins.cf\n" );
192                        parse( gcc_builtins, LinkageSpec::Compiler );
193
194                        // read the extra prelude in, if not generating the cfa library
195                        FILE * extras = fopen( libcfap | treep ? "../prelude/extras.cf" : CFA_LIBDIR "/extras.cf", "r" );
196                        assertf( extras, "cannot open extras.cf\n" );
197                        parse( extras, LinkageSpec::C );
198
199                        if ( ! libcfap ) {
200                                // read the prelude in, if not generating the cfa library
201                                FILE * prelude = fopen( treep ? "../prelude/prelude.cf" : CFA_LIBDIR "/prelude.cf", "r" );
202                                assertf( prelude, "cannot open prelude.cf\n" );
203                                parse( prelude, LinkageSpec::Intrinsic );
204
205                                // Read to cfa builtins, if not generating the cfa library
206                                FILE * builtins = fopen( libcfap | treep ? "../prelude/builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" );
207                                assertf( builtins, "cannot open builtins.cf\n" );
208                                parse( builtins, LinkageSpec::Builtin );
209                        } // if
210                } // if
211
212                parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, yydebug );
213
214                if ( parsep ) {
215                        parseTree->printList( cout );
216                        delete parseTree;
217                        return 0;
218                } // if
219
220                buildList( parseTree, translationUnit );
221                delete parseTree;
222                parseTree = nullptr;
223
224                if ( astp ) {
225                        dump( translationUnit );
226                        return 0;
227                } // if
228
229                // OPTPRINT( "Concurrency" )
230                // Concurrency::applyKeywords( translationUnit );
231
232                // add the assignment statement after the initialization of a type parameter
233                OPTPRINT( "validate" )
234                SymTab::validate( translationUnit, symtabp );
235                if ( symtabp ) {
236                        deleteAll( translationUnit );
237                        return 0;
238                } // if
239
240                if ( expraltp ) {
241                        ResolvExpr::AlternativePrinter printer( cout );
242                        acceptAll( translationUnit, printer );
243                        return 0;
244                } // if
245
246                if ( validp ) {
247                        dump( translationUnit );
248                        return 0;
249                } // if
250
251                OPTPRINT( "mutate" )
252                ControlStruct::mutate( translationUnit );
253                OPTPRINT( "fixNames" )
254                CodeGen::fixNames( translationUnit );
255                OPTPRINT( "genInit" )
256                InitTweak::genInit( translationUnit );
257                OPTPRINT( "expandMemberTuples" );
258                Tuples::expandMemberTuples( translationUnit );
259                if ( libcfap ) {
260                        // generate the bodies of cfa library functions
261                        LibCfa::makeLibCfa( translationUnit );
262                } // if
263
264                if ( declstatsp ) {
265                        CodeTools::printDeclStats( translationUnit );
266                        deleteAll( translationUnit );
267                        return 0;
268                }
269
270                if ( bresolvep ) {
271                        dump( translationUnit );
272                        return 0;
273                } // if
274
275                OPTPRINT( "resolve" )
276                ResolvExpr::resolve( translationUnit );
277                if ( exprp ) {
278                        dump( translationUnit );
279                        return 0;
280                } // if
281
282                // fix ObjectDecl - replaces ConstructorInit nodes
283                OPTPRINT( "fixInit" )
284                InitTweak::fix( translationUnit, filename, libcfap || treep );
285                if ( ctorinitp ) {
286                        dump ( translationUnit );
287                        return 0;
288                } // if
289
290                OPTPRINT( "expandUniqueExpr" ); // xxx - is this the right place for this? want to expand ASAP so that subsequent passes don't need to worry about double-visiting a unique expr - needs to go after InitTweak::fix so that copy constructed return declarations are reused
291                Tuples::expandUniqueExpr( translationUnit );
292
293                OPTPRINT( "convertSpecializations" ) // needs to happen before tuple types are expanded
294                GenPoly::convertSpecializations( translationUnit );
295
296                OPTPRINT( "expandTuples" ); // xxx - is this the right place for this?
297                Tuples::expandTuples( translationUnit );
298                if ( tuplep ) {
299                        dump( translationUnit );
300                        return 0;
301                }
302
303                OPTPRINT("instantiateGenerics")
304                GenPoly::instantiateGeneric( translationUnit );
305                OPTPRINT( "copyParams" );
306                GenPoly::copyParams( translationUnit );
307                OPTPRINT( "convertLvalue" )
308                GenPoly::convertLvalue( translationUnit );
309
310                if ( bboxp ) {
311                        dump( translationUnit );
312                        return 0;
313                } // if
314                OPTPRINT( "box" )
315                GenPoly::box( translationUnit );
316
317                if ( bcodegenp ) {
318                        dump( translationUnit );
319                        return 0;
320                }
321
322                if ( optind < argc ) {                                                  // any commands after the flags and input file ? => output file name
323                        output = new ofstream( argv[ optind ] );
324                } // if
325
326                CodeTools::fillLocations( translationUnit );
327                CodeGen::generate( translationUnit, *output, ! noprotop, prettycodegenp, true, ! nolinemarks );
328
329                CodeGen::FixMain::fix( *output, treep ? "../prelude/bootloader.c" : CFA_LIBDIR "/bootloader.c" );
330
331                if ( output != &cout ) {
332                        delete output;
333                } // if
334        } catch ( SemanticError &e ) {
335                if ( errorp ) {
336                        cerr << "---AST at error:---" << endl;
337                        dump( translationUnit, cerr );
338                        cerr << endl << "---End of AST, begin error message:---\n" << endl;
339                } // if
340                e.print( cerr );
341                if ( output != &cout ) {
342                        delete output;
343                } // if
344                return 1;
345        } catch ( UnimplementedError &e ) {
346                cout << "Sorry, " << e.get_what() << " is not currently implemented" << endl;
347                if ( output != &cout ) {
348                        delete output;
349                } // if
350                return 1;
351        } catch ( CompilerError &e ) {
352                cerr << "Compiler Error: " << e.get_what() << endl;
353                cerr << "(please report bugs to [REDACTED])" << endl;
354                if ( output != &cout ) {
355                        delete output;
356                } // if
357                return 1;
358        } // try
359
360        deleteAll( translationUnit );
361        return 0;
362} // main
363
364void parse_cmdline( int argc, char * argv[], const char *& filename ) {
365        enum { Ast, Bbox, Bresolver, CtorInitFix, DeclStats, Expr, ExprAlt, Grammar, LibCFA, Nopreamble, Parse, Prototypes, Resolver, Symbol, Tree, TupleExpansion, Validate, };
366
367        static struct option long_opts[] = {
368                { "ast", no_argument, 0, Ast },
369                { "before-box", no_argument, 0, Bbox },
370                { "before-resolver", no_argument, 0, Bresolver },
371                { "ctorinitfix", no_argument, 0, CtorInitFix },
372                { "decl-stats", no_argument, 0, DeclStats },
373                { "expr", no_argument, 0, Expr },
374                { "expralt", no_argument, 0, ExprAlt },
375                { "grammar", no_argument, 0, Grammar },
376                { "libcfa", no_argument, 0, LibCFA },
377                { "no-preamble", no_argument, 0, Nopreamble },
378                { "parse", no_argument, 0, Parse },
379                { "no-prototypes", no_argument, 0, Prototypes },
380                { "resolver", no_argument, 0, Resolver },
381                { "symbol", no_argument, 0, Symbol },
382                { "tree", no_argument, 0, Tree },
383                { "tuple-expansion", no_argument, 0, TupleExpansion },
384                { "validate", no_argument, 0, Validate },
385                { 0, 0, 0, 0 }
386        }; // long_opts
387        int long_index;
388
389        opterr = 0;                                                                                     // (global) prevent getopt from printing error messages
390
391        int c;
392        while ( (c = getopt_long( argc, argv, "abBcCdefglLmnpqrstTvyzZD:F:", long_opts, &long_index )) != -1 ) {
393                switch ( c ) {
394                  case Ast:
395                  case 'a':                                                                             // dump AST
396                        astp = true;
397                        break;
398                  case Bresolver:
399                  case 'b':                                                                             // print before resolver steps
400                        bresolvep = true;
401                        break;
402                  case 'B':                                                                             // print before box steps
403                        bboxp = true;
404                        break;
405                  case CtorInitFix:
406                  case 'c':                                                                             // print after constructors and destructors are replaced
407                        ctorinitp = true;
408                        break;
409                  case 'C':                                                                             // print before code generation
410                        bcodegenp = true;
411                        break;
412                  case DeclStats:
413                  case 'd':
414                    declstatsp = true;
415                        break;
416                  case Expr:
417                  case 'e':                                                                             // dump AST after expression analysis
418                        exprp = true;
419                        break;
420                  case ExprAlt:
421                  case 'f':                                                                             // print alternatives for expressions
422                        expraltp = true;
423                        break;
424                  case Grammar:
425                  case 'g':                                                                             // bison debugging info (grammar rules)
426                        yydebug = true;
427                        break;
428                  case LibCFA:
429                  case 'l':                                                                             // generate libcfa.c
430                        libcfap = true;
431                        break;
432                  case 'L':                                                                             // surpress lines marks
433                        nolinemarks = true;
434                        break;
435                  case Nopreamble:
436                  case 'n':                                                                             // do not read preamble
437                        nopreludep = true;
438                        break;
439                  case Prototypes:
440                  case 'p':                                                                             // generate prototypes for preamble functions
441                        noprotop = true;
442                        break;
443                  case 'm':                                                                             // don't replace the main
444                        nomainp = true;
445                        break;
446                  case Parse:
447                  case 'q':                                                                             // dump parse tree
448                        parsep = true;
449                        break;
450                  case Resolver:
451                  case 'r':                                                                             // print resolver steps
452                        resolvep = true;
453                        break;
454                  case Symbol:
455                  case 's':                                                                             // print symbol table events
456                        symtabp = true;
457                        break;
458                  case Tree:
459                  case 't':                                                                             // build in tree
460                        treep = true;
461                        break;
462                  case TupleExpansion:
463                  case 'T':                                                                             // print after tuple expansion
464                        tuplep = true;
465                        break;
466                  case 'v':                                                                             // dump AST after decl validation pass
467                        validp = true;
468                        break;
469                  case 'y':                                                                             // dump AST on error
470                        errorp = true;
471                        break;
472                  case 'z':                                                                             // dump as codegen rather than AST
473                        codegenp = true;
474                        break;
475                        case 'Z':                                                                       // prettyprint during codegen (i.e. print unmangled names, etc.)
476                        prettycodegenp = true;
477                        break;
478                  case 'D':                                                                             // ignore -Dxxx
479                        break;
480                  case 'F':                                                                             // source file-name without suffix
481                        filename = optarg;
482                        break;
483                  case '?':
484                        assertf( false, "Unknown option: '%c'\n", (char)optopt );
485                  default:
486                        abort();
487                } // switch
488        } // while
489} // parse_cmdline
490
491static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit ) {
492        extern int yyparse( void );
493        extern FILE * yyin;
494        extern int yylineno;
495
496        ::linkage = linkage;                                                            // set globals
497        yyin = input;
498        yylineno = 1;
499        typedefTable.enterScope();
500        int parseStatus = yyparse();
501
502        fclose( input );
503        if ( shouldExit || parseStatus != 0 ) {
504                exit( parseStatus );
505        } // if
506} // parse
507
508static bool notPrelude( Declaration * decl ) {
509        return ! LinkageSpec::isBuiltin( decl->get_linkage() );
510} // notPrelude
511
512static void dump( list< Declaration * > & translationUnit, ostream & out ) {
513        list< Declaration * > decls;
514
515        if ( noprotop ) {
516                filter( translationUnit.begin(), translationUnit.end(), back_inserter( decls ), notPrelude );
517        } else {
518                decls = translationUnit;
519        } // if
520
521        // depending on commandline options, either generate code or dump the AST
522        if ( codegenp ) {
523                CodeGen::generate( decls, out, ! noprotop, prettycodegenp );
524        } else {
525                printAll( decls, out );
526        }
527        deleteAll( translationUnit );
528} // dump
529
530// Local Variables: //
531// tab-width: 4 //
532// mode: c++ //
533// compile-command: "make install" //
534// End:  //
Note: See TracBrowser for help on using the repository browser.