source: src/main.cc@ e85a8631

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor 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 e85a8631 was e6955b1, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

abort on assert rather than exit, print backtrace on cfa-cpp errors

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