source: src/main.cc@ b877fa8

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since b877fa8 was 44f44617, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

Fix build for 16.04

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