source: src/main.cc@ b604426

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since b604426 was 9ea38de, checked in by Aaron Moss <a3moss@…>, 6 years ago

Fix ast::Pass guard classes

  • Property mode set to 100644
File size: 23.2 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 : Peter Buhr and Rob Schluntz
10// Created On : Fri May 15 23:12:02 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Wed Jun 5 20:35:13 2019
13// Update Count : 601
14//
15
16#include <cxxabi.h> // for __cxa_demangle
17#include <execinfo.h> // for backtrace, backtrace_symbols
18#include <getopt.h> // for no_argument, optind, geto...
19#include <signal.h> // for signal, SIGABRT, SIGSEGV
20#include <cassert> // for assertf
21#include <cstdio> // for fopen, FILE, fclose, stdin
22#include <cstdlib> // for exit, free, abort, EXIT_F...
23#include <cstring> // for index
24#include <fstream> // for ofstream
25#include <iostream> // for operator<<, basic_ostream
26#include <iomanip>
27#include <iterator> // for back_inserter
28#include <list> // for list
29#include <string> // for char_traits, operator<<
30
31#include "AST/Convert.hpp"
32#include "CompilationState.h"
33#include "../config.h" // for CFA_LIBDIR
34#include "CodeGen/FixMain.h" // for FixMain
35#include "CodeGen/FixNames.h" // for fixNames
36#include "CodeGen/Generate.h" // for generate
37#include "CodeTools/DeclStats.h" // for printDeclStats
38#include "CodeTools/ResolvProtoDump.h" // for dumpAsResolvProto
39#include "CodeTools/TrackLoc.h" // for fillLocations
40#include "Common/CompilerError.h" // for CompilerError
41#include "Common/Stats.h"
42#include "Common/PassVisitor.h"
43#include "Common/SemanticError.h" // for SemanticError
44#include "Common/UnimplementedError.h" // for UnimplementedError
45#include "Common/utility.h" // for deleteAll, filter, printAll
46#include "Concurrency/Waitfor.h" // for generateWaitfor
47#include "ControlStruct/ExceptTranslate.h" // for translateEHM
48#include "ControlStruct/Mutate.h" // for mutate
49#include "GenPoly/Box.h" // for box
50#include "GenPoly/InstantiateGeneric.h" // for instantiateGeneric
51#include "GenPoly/Lvalue.h" // for convertLvalue
52#include "GenPoly/Specialize.h" // for convertSpecializations
53#include "InitTweak/FixInit.h" // for fix
54#include "InitTweak/GenInit.h" // for genInit
55#include "MakeLibCfa.h" // for makeLibCfa
56#include "Parser/LinkageSpec.h" // for Spec, Cforall, Intrinsic
57#include "Parser/ParseNode.h" // for DeclarationNode, buildList
58#include "Parser/TypedefTable.h" // for TypedefTable
59#include "ResolvExpr/AlternativePrinter.h" // for AlternativePrinter
60#include "ResolvExpr/Resolver.h" // for resolve
61#include "SymTab/Validate.h" // for validate
62#include "SynTree/Declaration.h" // for Declaration
63#include "SynTree/Visitor.h" // for acceptAll
64#include "Tuples/Tuples.h" // for expandMemberTuples, expan...
65#include "Virtual/ExpandCasts.h" // for expandCasts
66
67using namespace std;
68
69static void NewPass( const char * const name ) {
70 Stats::Heap::newPass( name );
71 using namespace Stats::Counters;
72 {
73 static auto group = build<CounterGroup>( "Pass Visitor" );
74 auto pass = build<CounterGroup>( name, group );
75 pass_visitor_stats.depth = 0;
76 pass_visitor_stats.avg = build<AverageCounter<double>>( "Average Depth", pass );
77 pass_visitor_stats.max = build<MaxCounter<double>>( "Max Depth", pass );
78 }
79 {
80 static auto group = build<CounterGroup>( "Syntax Node" );
81 auto pass = build<CounterGroup>( name, group );
82 BaseSyntaxNode::new_nodes = build<SimpleCounter>( "Allocs", pass );
83 }
84}
85
86#define PASS( name, pass ) \
87 if ( errorp ) { cerr << name << endl; } \
88 NewPass(name); \
89 Stats::Time::StartBlock(name); \
90 pass; \
91 Stats::Time::StopBlock();
92
93LinkageSpec::Spec linkage = LinkageSpec::Cforall;
94TypedefTable typedefTable;
95DeclarationNode * parseTree = nullptr; // program parse tree
96
97static std::string PreludeDirector = "";
98
99static void parse_cmdline( int argc, char *argv[], const char *& filename );
100static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit = false );
101static void dump( list< Declaration * > & translationUnit, ostream & out = cout );
102
103static void backtrace( int start ) { // skip first N stack frames
104 enum { Frames = 50 };
105 void * array[Frames];
106 int size = ::backtrace( array, Frames );
107 char ** messages = ::backtrace_symbols( array, size ); // does not demangle names
108
109 *index( messages[0], '(' ) = '\0'; // find executable name
110 cerr << "Stack back trace for: " << messages[0] << endl;
111
112 // skip last 2 stack frames after main
113 for ( int i = start; i < size - 2 && messages != nullptr; i += 1 ) {
114 char * mangled_name = nullptr, * offset_begin = nullptr, * offset_end = nullptr;
115 for ( char *p = messages[i]; *p; ++p ) { // find parantheses and +offset
116 if ( *p == '(' ) {
117 mangled_name = p;
118 } else if ( *p == '+' ) {
119 offset_begin = p;
120 } else if ( *p == ')' ) {
121 offset_end = p;
122 break;
123 } // if
124 } // for
125
126 // if line contains symbol, attempt to demangle
127 int frameNo = i - start;
128 if ( mangled_name && offset_begin && offset_end && mangled_name < offset_begin ) {
129 *mangled_name++ = '\0'; // delimit strings
130 *offset_begin++ = '\0';
131 *offset_end++ = '\0';
132
133 int status;
134 char * real_name = __cxxabiv1::__cxa_demangle( mangled_name, 0, 0, &status );
135 // bug in __cxa_demangle for single-character lower-case non-mangled names
136 if ( status == 0 ) { // demangling successful ?
137 cerr << "(" << frameNo << ") " << messages[i] << " : "
138 << real_name << "+" << offset_begin << offset_end << endl;
139 } else { // otherwise, output mangled name
140 cerr << "(" << frameNo << ") " << messages[i] << " : "
141 << mangled_name << "(/*unknown*/)+" << offset_begin << offset_end << endl;
142 } // if
143
144 free( real_name );
145 } else { // otherwise, print the whole line
146 cerr << "(" << frameNo << ") " << messages[i] << endl;
147 } // if
148 } // for
149
150 free( messages );
151} // backtrace
152
153static void sigSegvBusHandler( int sig_num ) {
154 cerr << "*CFA runtime error* program cfa-cpp terminated with "
155 << (sig_num == SIGSEGV ? "segment fault" : "bus error")
156 << "." << endl;
157 backtrace( 2 ); // skip first 2 stack frames
158 //_exit( EXIT_FAILURE );
159 abort(); // cause core dump for debugging
160} // sigSegvBusHandler
161
162static void sigAbortHandler( __attribute__((unused)) int sig_num ) {
163 backtrace( 6 ); // skip first 6 stack frames
164 signal( SIGABRT, SIG_DFL); // reset default signal handler
165 raise( SIGABRT ); // reraise SIGABRT
166} // sigAbortHandler
167
168
169int main( int argc, char * argv[] ) {
170 FILE * input; // use FILE rather than istream because yyin is FILE
171 ostream * output = & cout;
172 const char * filename = nullptr;
173 list< Declaration * > translationUnit;
174
175 signal( SIGSEGV, sigSegvBusHandler );
176 signal( SIGBUS, sigSegvBusHandler );
177 signal( SIGABRT, sigAbortHandler );
178
179 // std::cout << "main" << std::endl;
180 // for ( int i = 0; i < argc; i += 1 ) {
181 // std::cout << '\t' << argv[i] << std::endl;
182 // } // for
183
184 parse_cmdline( argc, argv, filename ); // process command-line arguments
185 CodeGen::FixMain::setReplaceMain( !nomainp );
186
187 try {
188 // choose to read the program from a file or stdin
189 if ( optind < argc ) { // any commands after the flags ? => input file name
190 input = fopen( argv[ optind ], "r" );
191 assertf( input, "cannot open %s\n", argv[ optind ] );
192 // if running cfa-cpp directly, might forget to pass -F option (and really shouldn't have to)
193 if ( filename == nullptr ) filename = argv[ optind ];
194 // prelude filename comes in differently
195 if ( libcfap ) filename = "prelude.cfa";
196 optind += 1;
197 } else { // no input file name
198 input = stdin;
199 // if running cfa-cpp directly, might forget to pass -F option. Since this takes from stdin, pass
200 // a fake name along
201 if ( filename == nullptr ) filename = "stdin";
202 } // if
203
204 Stats::Time::StartGlobal();
205 NewPass("Parse");
206 Stats::Time::StartBlock("Parse");
207
208 // read in the builtins, extras, and the prelude
209 if ( ! nopreludep ) { // include gcc builtins
210 // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
211
212 assertf( !PreludeDirector.empty(), "Can't find prelude without option --prelude-dir must be used." );
213
214 // Read to gcc builtins, if not generating the cfa library
215 FILE * gcc_builtins = fopen( (PreludeDirector + "/gcc-builtins.cf").c_str(), "r" );
216 assertf( gcc_builtins, "cannot open gcc-builtins.cf\n" );
217 parse( gcc_builtins, LinkageSpec::Compiler );
218
219 // read the extra prelude in, if not generating the cfa library
220 FILE * extras = fopen( (PreludeDirector + "/extras.cf").c_str(), "r" );
221 assertf( extras, "cannot open extras.cf\n" );
222 parse( extras, LinkageSpec::BuiltinC );
223
224 if ( ! libcfap ) {
225 // read the prelude in, if not generating the cfa library
226 FILE * prelude = fopen( (PreludeDirector + "/prelude.cfa").c_str(), "r" );
227 assertf( prelude, "cannot open prelude.cfa\n" );
228 parse( prelude, LinkageSpec::Intrinsic );
229
230 // Read to cfa builtins, if not generating the cfa library
231 FILE * builtins = fopen( (PreludeDirector + "/builtins.cf").c_str(), "r" );
232 assertf( builtins, "cannot open builtins.cf\n" );
233 parse( builtins, LinkageSpec::BuiltinCFA );
234 } // if
235 } // if
236
237 parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, yydebug );
238
239 if ( parsep ) {
240 parseTree->printList( cout );
241 delete parseTree;
242 return EXIT_SUCCESS;
243 } // if
244
245 buildList( parseTree, translationUnit );
246 delete parseTree;
247 parseTree = nullptr;
248
249 if ( astp ) {
250 dump( translationUnit );
251 return EXIT_SUCCESS;
252 } // if
253
254 // Temporary: fill locations after parsing so that every node has a location, for early error messages.
255 // Eventually we should pass the locations from the parser to every node, but this quick and dirty solution
256 // works okay for now.
257 CodeTools::fillLocations( translationUnit );
258 Stats::Time::StopBlock();
259
260 // add the assignment statement after the initialization of a type parameter
261 PASS( "Validate", SymTab::validate( translationUnit, symtabp ) );
262 if ( symtabp ) {
263 deleteAll( translationUnit );
264 return EXIT_SUCCESS;
265 } // if
266
267 if ( expraltp ) {
268 PassVisitor<ResolvExpr::AlternativePrinter> printer( cout );
269 acceptAll( translationUnit, printer );
270 return EXIT_SUCCESS;
271 } // if
272
273 if ( validp ) {
274 dump( translationUnit );
275 return EXIT_SUCCESS;
276 } // if
277
278 PASS( "Fix Labels", ControlStruct::fixLabels( translationUnit ) );
279 PASS( "Fix Names", CodeGen::fixNames( translationUnit ) );
280 PASS( "Gen Init", InitTweak::genInit( translationUnit ) );
281 PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) );
282 if ( libcfap ) {
283 // generate the bodies of cfa library functions
284 LibCfa::makeLibCfa( translationUnit );
285 } // if
286
287 if ( declstatsp ) {
288 CodeTools::printDeclStats( translationUnit );
289 deleteAll( translationUnit );
290 return EXIT_SUCCESS;
291 } // if
292
293 if ( bresolvep ) {
294 dump( translationUnit );
295 return EXIT_SUCCESS;
296 } // if
297
298 CodeTools::fillLocations( translationUnit );
299
300 if ( resolvprotop ) {
301 CodeTools::dumpAsResolvProto( translationUnit );
302 return EXIT_SUCCESS;
303 } // if
304
305 // PASS( "Resolve", ResolvExpr::resolve( translationUnit ) );
306 {
307 auto transUnit = convert( move( translationUnit ) );
308 PASS( "Resolve", ResolvExpr::resolve( transUnit ) );
309 translationUnit = convert( move( transUnit ) );
310 }
311 if ( exprp ) {
312 dump( translationUnit );
313 return EXIT_SUCCESS;
314 } // if
315
316 // fix ObjectDecl - replaces ConstructorInit nodes
317 PASS( "Fix Init", InitTweak::fix( translationUnit, buildingLibrary() ) );
318 if ( ctorinitp ) {
319 dump ( translationUnit );
320 return EXIT_SUCCESS;
321 } // if
322
323 PASS( "Expand Unique Expr", Tuples::expandUniqueExpr( translationUnit ) ); // xxx - is this the right place for this? want to expand ASAP so tha, sequent 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
324
325 PASS( "Translate EHM" , ControlStruct::translateEHM( translationUnit ) );
326
327 PASS( "Gen Waitfor" , Concurrency::generateWaitFor( translationUnit ) );
328
329 PASS( "Convert Specializations", GenPoly::convertSpecializations( translationUnit ) ); // needs to happen before tuple types are expanded
330
331 PASS( "Expand Tuples", Tuples::expandTuples( translationUnit ) ); // xxx - is this the right place for this?
332
333 if ( tuplep ) {
334 dump( translationUnit );
335 return EXIT_SUCCESS;
336 } // if
337
338 PASS( "Virtual Expand Casts", Virtual::expandCasts( translationUnit ) ); // Must come after translateEHM
339
340 PASS( "Instantiate Generics", GenPoly::instantiateGeneric( translationUnit ) );
341 if ( genericsp ) {
342 dump( translationUnit );
343 return EXIT_SUCCESS;
344 } // if
345 PASS( "Convert L-Value", GenPoly::convertLvalue( translationUnit ) );
346
347
348 if ( bboxp ) {
349 dump( translationUnit );
350 return EXIT_SUCCESS;
351 } // if
352 PASS( "Box", GenPoly::box( translationUnit ) );
353
354 if ( bcodegenp ) {
355 dump( translationUnit );
356 return EXIT_SUCCESS;
357 } // if
358
359 if ( optind < argc ) { // any commands after the flags and input file ? => output file name
360 output = new ofstream( argv[ optind ] );
361 } // if
362
363 CodeTools::fillLocations( translationUnit );
364 PASS( "Code Gen", CodeGen::generate( translationUnit, *output, ! genproto, prettycodegenp, true, linemarks ) );
365
366 CodeGen::FixMain::fix( *output, (PreludeDirector + "/bootloader.c").c_str() );
367 if ( output != &cout ) {
368 delete output;
369 } // if
370 } catch ( SemanticErrorException &e ) {
371 if ( errorp ) {
372 cerr << "---AST at error:---" << endl;
373 dump( translationUnit, cerr );
374 cerr << endl << "---End of AST, begin error message:---\n" << endl;
375 } // if
376 e.print();
377 if ( output != &cout ) {
378 delete output;
379 } // if
380 return EXIT_FAILURE;
381 } catch ( UnimplementedError &e ) {
382 cout << "Sorry, " << e.get_what() << " is not currently implemented" << endl;
383 if ( output != &cout ) {
384 delete output;
385 } // if
386 return EXIT_FAILURE;
387 } catch ( CompilerError &e ) {
388 cerr << "Compiler Error: " << e.get_what() << endl;
389 cerr << "(please report bugs to [REDACTED])" << endl;
390 if ( output != &cout ) {
391 delete output;
392 } // if
393 return EXIT_FAILURE;
394 } catch ( ... ) {
395 std::exception_ptr eptr = std::current_exception();
396 try {
397 if (eptr) {
398 std::rethrow_exception(eptr);
399 } else {
400 std::cerr << "Exception Uncaught and Unknown" << std::endl;
401 } // if
402 } catch(const std::exception& e) {
403 std::cerr << "Uncaught Exception \"" << e.what() << "\"\n";
404 } // try
405 return EXIT_FAILURE;
406 } // try
407
408 deleteAll( translationUnit );
409 Stats::print();
410 return EXIT_SUCCESS;
411} // main
412
413
414static const char optstring[] = ":hlLmNnpP:S:twW:D:F:";
415
416enum { PreludeDir = 128 };
417static struct option long_opts[] = {
418 { "help", no_argument, nullptr, 'h' },
419 { "libcfa", no_argument, nullptr, 'l' },
420 { "linemarks", no_argument, nullptr, 'L' },
421 { "no-main", no_argument, 0, 'm' },
422 { "no-linemarks", no_argument, nullptr, 'N' },
423 { "no-prelude", no_argument, nullptr, 'n' },
424 { "prototypes", no_argument, nullptr, 'p' },
425 { "print", required_argument, nullptr, 'P' },
426 { "prelude-dir", required_argument, nullptr, PreludeDir },
427 { "statistics", required_argument, nullptr, 'S' },
428 { "tree", no_argument, nullptr, 't' },
429 { "", no_argument, nullptr, 0 }, // -w
430 { "", no_argument, nullptr, 0 }, // -W
431 { "", no_argument, nullptr, 0 }, // -D
432 { "", no_argument, nullptr, 0 }, // -F
433 { nullptr, 0, nullptr, 0 }
434}; // long_opts
435
436static const char * description[] = {
437 "print help message", // -h
438 "generate libcfa.c", // -l
439 "generate line marks", // -L
440 "do not replace main", // -m
441 "do not generate line marks", // -N
442 "do not read prelude", // -n
443 "generate prototypes for prelude functions", // -p
444 "print", // -P
445 "<directory> prelude directory for debug/nodebug", // no flag
446 "<option-list> enable profiling information:\n counters,heap,time,all,none", // -S
447 "build in tree", // -t
448 "", // -w
449 "", // -W
450 "", // -D
451 "", // -F
452}; // description
453
454static_assert( sizeof( long_opts ) / sizeof( long_opts[0] ) - 1 == sizeof( description ) / sizeof( description[0] ), "Long opts and description must match" );
455
456static struct Printopts {
457 const char * name;
458 int & flag;
459 int val;
460 const char * descript;
461} printopts[] = {
462 { "altexpr", expraltp, true, "alternatives for expressions" },
463 { "ascodegen", codegenp, true, "as codegen rather than AST" },
464 { "ast", astp, true, "AST after parsing" },
465 { "astdecl", validp, true, "AST after declaration validation pass" },
466 { "asterr", errorp, true, "AST on error" },
467 { "astexpr", exprp, true, "AST after expression analysis" },
468 { "astgen", genericsp, true, "AST after instantiate generics" },
469 { "box", bboxp, true, "before box step" },
470 { "ctordtor", ctorinitp, true, "after ctor/dtor are replaced" },
471 { "codegen", bcodegenp, true, "before code generation" },
472 { "declstats", declstatsp, true, "code property statistics" },
473 { "parse", yydebug, true, "yacc (parsing) debug information" },
474 { "pretty", prettycodegenp, true, "prettyprint for ascodegen flag" },
475 { "resolver", bresolvep, true, "before resolver step" },
476 { "rproto", resolvprotop, true, "resolver-proto instance" },
477 { "rsteps", resolvep, true, "resolver steps" },
478 { "symevt", symtabp, true, "symbol table events" },
479 { "tree", parsep, true, "parse tree" },
480 { "tuple", tuplep, true, "after tuple expansion" },
481};
482enum { printoptsSize = sizeof( printopts ) / sizeof( printopts[0] ) };
483
484static void usage( char *argv[] ) {
485 cout << "Usage: " << argv[0] << " options are:" << endl;
486 int i = 0, j = 1; // j skips starting colon
487 for ( ; long_opts[i].name != 0 && optstring[j] != '\0'; i += 1, j += 1 ) {
488 if ( long_opts[i].name[0] != '\0' ) { // hidden option, internal usage only
489 if ( strcmp( long_opts[i].name, "prelude-dir" ) != 0 ) { // flag
490 cout << " -" << optstring[j] << ",";
491 } else { // no flag
492 j -= 1; // compensate
493 cout << " ";
494 } // if
495 cout << " --" << left << setw(12) << long_opts[i].name << " ";
496 if ( strcmp( long_opts[i].name, "print" ) == 0 ) {
497 cout << "one of: " << endl;
498 for ( int i = 0; i < printoptsSize; i += 1 ) {
499 cout << setw(10) << " " << left << setw(10) << printopts[i].name << " " << printopts[i].descript << endl;
500 } // for
501 } else {
502 cout << description[i] << endl;
503 } // if
504 } // if
505 if ( optstring[j + 1] == ':' ) j += 1;
506 } // for
507 if ( long_opts[i].name != 0 || optstring[j] != '\0' ) assertf( false, "internal error, mismatch of option flags and names\n" );
508 exit( EXIT_FAILURE );
509} // usage
510
511static void parse_cmdline( int argc, char * argv[], const char *& filename ) {
512 opterr = 0; // (global) prevent getopt from printing error messages
513
514 bool Wsuppress = false, Werror = false;
515 int c;
516 while ( (c = getopt_long( argc, argv, optstring, long_opts, nullptr )) != -1 ) {
517 switch ( c ) {
518 case 'h': // help message
519 usage( argv ); // no return
520 break;
521 case 'l': // generate libcfa.c
522 libcfap = true;
523 break;
524 case 'L': // generate line marks
525 linemarks = true;
526 break;
527 case 'm': // do not replace main
528 nomainp = true;
529 break;
530 case 'N': // do not generate line marks
531 linemarks = false;
532 break;
533 case 'n': // do not read prelude
534 nopreludep = true;
535 break;
536 case 'p': // generate prototypes for prelude functions
537 genproto = true;
538 break;
539 case 'P': // print options
540 for ( int i = 0;; i += 1 ) {
541 if ( i == printoptsSize ) {
542 cout << "Unknown --print option " << optarg << endl;
543 goto Default;
544 } // if
545 if ( strcmp( optarg, printopts[i].name ) == 0 ) {
546 printopts[i].flag = printopts[i].val;
547 break;
548 } // if
549 } // for
550 break;
551 case PreludeDir: // prelude directory for debug/nodebug, hidden
552 PreludeDirector = optarg;
553 break;
554 case 'S': // enable profiling information, argument comma separated list of names
555 Stats::parse_params( optarg );
556 break;
557 case 't': // build in tree
558 treep = true;
559 break;
560 case 'w': // suppress all warnings, hidden
561 Wsuppress = true;
562 break;
563 case 'W': // coordinate gcc -W with CFA, hidden
564 if ( strcmp( optarg, "all" ) == 0 ) {
565 SemanticWarning_EnableAll();
566 } else if ( strcmp( optarg, "error" ) == 0 ) {
567 Werror = true;
568 } else {
569 char * warning = optarg;
570 Severity s;
571 if ( strncmp( optarg, "no-", 3 ) == 0 ) {
572 warning += 3;
573 s = Severity::Suppress;
574 } else {
575 s = Severity::Warn;
576 } // if
577 SemanticWarning_Set( warning, s );
578 } // if
579 break;
580 case 'D': // ignore -Dxxx, forwarded by cpp, hidden
581 break;
582 case 'F': // source file-name without suffix, hidden
583 filename = optarg;
584 break;
585 case '?': // unknown option
586 if ( optopt ) { // short option ?
587 cout << "Unknown option -" << (char)optopt << endl;
588 } else {
589 cout << "Unknown option " << argv[optind - 1] << endl;
590 } // if
591 goto Default;
592 case ':': // missing option
593 if ( optopt ) { // short option ?
594 cout << "Missing option for -" << (char)optopt << endl;
595 } else {
596 cout << "Missing option for " << argv[optind - 1] << endl;
597 } // if
598 goto Default;
599 Default:
600 default:
601 usage( argv ); // no return
602 } // switch
603 } // while
604
605 if ( Werror ) {
606 SemanticWarning_WarningAsError();
607 } // if
608 if ( Wsuppress ) {
609 SemanticWarning_SuppressAll();
610 } // if
611 // for ( const auto w : WarningFormats ) {
612 // cout << w.name << ' ' << (int)w.severity << endl;
613 // } // for
614} // parse_cmdline
615
616static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit ) {
617 extern int yyparse( void );
618 extern FILE * yyin;
619 extern int yylineno;
620
621 ::linkage = linkage; // set globals
622 yyin = input;
623 yylineno = 1;
624 int parseStatus = yyparse();
625
626 fclose( input );
627 if ( shouldExit || parseStatus != 0 ) {
628 exit( parseStatus );
629 } // if
630} // parse
631
632static bool notPrelude( Declaration * decl ) {
633 return ! LinkageSpec::isBuiltin( decl->get_linkage() );
634} // notPrelude
635
636static void dump( list< Declaration * > & translationUnit, ostream & out ) {
637 list< Declaration * > decls;
638
639 if ( genproto ) {
640 filter( translationUnit.begin(), translationUnit.end(), back_inserter( decls ), notPrelude );
641 } else {
642 decls = translationUnit;
643 } // if
644
645 // depending on commandline options, either generate code or dump the AST
646 if ( codegenp ) {
647 CodeGen::generate( decls, out, ! genproto, prettycodegenp );
648 } else {
649 printAll( decls, out );
650 } // if
651 deleteAll( translationUnit );
652} // dump
653
654// Local Variables: //
655// tab-width: 4 //
656// mode: c++ //
657// compile-command: "make install" //
658// End: //
Note: See TracBrowser for help on using the repository browser.