source: src/main.cc @ 1622af5

ADTast-experimentalenumforall-pointer-decaypthread-emulationqualifiedEnum
Last change on this file since 1622af5 was 1622af5, checked in by Andrew Beach <ajbeach@…>, 3 years ago

Created CandidatePrinter? from AlternativePrinter? (seems to uncover a bug in CandidateFinder?).

  • Property mode set to 100644
File size: 28.9 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 : Andrew Beach
12// Last Modified On : Tue Nov  9 11:10:00 2021
13// Update Count     : 657
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 <cassert>                          // for assertf
20#include <cstdio>                           // for fopen, FILE, fclose, stdin
21#include <cstdlib>                          // for exit, free, abort, EXIT_F...
22#include <csignal>                          // for signal, SIGABRT, SIGSEGV
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
31using namespace std;
32
33#include "AST/Convert.hpp"
34#include "CompilationState.h"
35#include "../config.h"                      // for CFA_LIBDIR
36#include "CodeGen/FixMain.h"                // for FixMain
37#include "CodeGen/FixNames.h"               // for fixNames
38#include "CodeGen/Generate.h"               // for generate
39#include "CodeGen/LinkOnce.h"               // for translateLinkOnce
40#include "CodeTools/DeclStats.h"            // for printDeclStats
41#include "CodeTools/ResolvProtoDump.h"      // for dumpAsResolvProto
42#include "CodeTools/TrackLoc.h"             // for fillLocations
43#include "Common/CodeLocationTools.hpp"     // for forceFillCodeLocations
44#include "Common/CompilerError.h"           // for CompilerError
45#include "Common/DeclStats.hpp"             // for printDeclStats
46#include "Common/ResolvProtoDump.hpp"       // for dumpAsResolverProto
47#include "Common/Stats.h"
48#include "Common/PassVisitor.h"
49#include "Common/SemanticError.h"           // for SemanticError
50#include "Common/UnimplementedError.h"      // for UnimplementedError
51#include "Common/utility.h"                 // for deleteAll, filter, printAll
52#include "Concurrency/Waitfor.h"            // for generateWaitfor
53#include "ControlStruct/ExceptDecl.h"       // for translateExcept
54#include "ControlStruct/ExceptTranslate.h"  // for translateEHM
55#include "ControlStruct/FixLabels.hpp"      // for fixLabels
56#include "ControlStruct/Mutate.h"           // for mutate
57#include "GenPoly/Box.h"                    // for box
58#include "GenPoly/InstantiateGeneric.h"     // for instantiateGeneric
59#include "GenPoly/Lvalue.h"                 // for convertLvalue
60#include "GenPoly/Specialize.h"             // for convertSpecializations
61#include "InitTweak/FixInit.h"              // for fix
62#include "InitTweak/GenInit.h"              // for genInit
63#include "MakeLibCfa.h"                     // for makeLibCfa
64#include "Parser/ParseNode.h"               // for DeclarationNode, buildList
65#include "Parser/TypedefTable.h"            // for TypedefTable
66#include "ResolvExpr/AlternativePrinter.h"  // for AlternativePrinter
67#include "ResolvExpr/CandidatePrinter.hpp"  // for printCandidates
68#include "ResolvExpr/Resolver.h"            // for resolve
69#include "SymTab/Validate.h"                // for validate
70#include "SynTree/LinkageSpec.h"            // for Spec, Cforall, Intrinsic
71#include "SynTree/Declaration.h"            // for Declaration
72#include "SynTree/Visitor.h"                // for acceptAll
73#include "Tuples/Tuples.h"                  // for expandMemberTuples, expan...
74#include "Virtual/ExpandCasts.h"            // for expandCasts
75
76
77static void NewPass( const char * const name ) {
78        Stats::Heap::newPass( name );
79        using namespace Stats::Counters;
80        {
81                static auto group = build<CounterGroup>( "Pass Visitor" );
82                auto pass = build<CounterGroup>( name, group );
83                pass_visitor_stats.depth = 0;
84                pass_visitor_stats.avg = build<AverageCounter<double>>( "Average Depth", pass );
85                pass_visitor_stats.max = build<MaxCounter<double>>( "Max Depth", pass );
86        }
87        {
88                static auto group = build<CounterGroup>( "Syntax Node" );
89                auto pass = build<CounterGroup>( name, group );
90                BaseSyntaxNode::new_nodes = build<SimpleCounter>( "Allocs", pass );
91        }
92}
93
94#define PASS( name, pass )                  \
95        if ( errorp ) { cerr << name << endl; } \
96        NewPass(name);                          \
97        Stats::Time::StartBlock(name);          \
98        pass;                                   \
99        Stats::Time::StopBlock();
100
101LinkageSpec::Spec linkage = LinkageSpec::Cforall;
102TypedefTable typedefTable;
103DeclarationNode * parseTree = nullptr;                                  // program parse tree
104
105static bool waiting_for_gdb = false;                                    // flag to set cfa-cpp to wait for gdb on start
106
107static string PreludeDirector = "";
108
109static void parse_cmdline( int argc, char * argv[] );
110static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit = false );
111static void dump( list< Declaration * > & translationUnit, ostream & out = cout );
112static void dump( ast::TranslationUnit && transUnit, ostream & out = cout );
113
114static void backtrace( int start ) {                                    // skip first N stack frames
115        enum { Frames = 50, };                                                          // maximum number of stack frames
116        void * array[Frames];
117        size_t size = ::backtrace( array, Frames );
118        char ** messages = ::backtrace_symbols( array, size ); // does not demangle names
119
120        *index( messages[0], '(' ) = '\0';                                      // find executable name
121        cerr << "Stack back trace for: " << messages[0] << endl;
122
123        // skip last 2 stack frames after main
124        for ( unsigned int i = start; i < size - 2 && messages != nullptr; i += 1 ) {
125                char * mangled_name = nullptr, * offset_begin = nullptr, * offset_end = nullptr;
126
127                for ( char * p = messages[i]; *p; p += 1 ) {    // find parantheses and +offset
128                        if ( *p == '(' ) {
129                                mangled_name = p;
130                        } else if ( *p == '+' ) {
131                                offset_begin = p;
132                        } else if ( *p == ')' ) {
133                                offset_end = p;
134                                break;
135                        } // if
136                } // for
137
138                // if line contains symbol, attempt to demangle
139                int frameNo = i - start;
140                if ( mangled_name && offset_begin && offset_end && mangled_name < offset_begin ) {
141                        *mangled_name++ = '\0';                                         // delimit strings
142                        *offset_begin++ = '\0';
143                        *offset_end++ = '\0';
144
145                        int status;
146                        char * real_name = __cxxabiv1::__cxa_demangle( mangled_name, 0, 0, &status );
147                        // bug in __cxa_demangle for single-character lower-case non-mangled names
148                        if ( status == 0 ) {                                            // demangling successful ?
149                                cerr << "(" << frameNo << ") " << messages[i] << " : "
150                                         << real_name << "+" << offset_begin << offset_end << endl;
151                        } else {                                                                        // otherwise, output mangled name
152                                cerr << "(" << frameNo << ") " << messages[i] << " : "
153                                         << mangled_name << "(/*unknown*/)+" << offset_begin << offset_end << endl;
154                        } // if
155
156                        free( real_name );
157                } else {                                                                                // otherwise, print the whole line
158                        cerr << "(" << frameNo << ") " << messages[i] << endl;
159                } // if
160        } // for
161
162        free( messages );
163} // backtrace
164
165#define SIGPARMS int sig __attribute__(( unused )), siginfo_t * sfp __attribute__(( unused )), ucontext_t * cxt __attribute__(( unused ))
166
167static void _Signal(struct sigaction & act, int sig, int flags ) {
168        act.sa_flags = flags;
169
170        if ( sigaction( sig, &act, nullptr ) == -1 ) {
171            cerr << "*cfa-cpp compilation error* problem installing signal handler, error(" << errno << ") " << strerror( errno ) << endl;
172            _exit( EXIT_FAILURE );
173        } // if
174}
175
176static void Signal( int sig, void (* handler)(SIGPARMS), int flags ) {
177        struct sigaction act;
178        act.sa_sigaction = (void (*)(int, siginfo_t *, void *))handler;
179        _Signal(act, sig, flags);
180} // Signal
181
182static void Signal( int sig, void (* handler)(int), int flags ) {
183        struct sigaction act;
184        act.sa_handler = handler;
185        _Signal(act, sig, flags);
186} // Signal
187
188static void sigSegvBusHandler( SIGPARMS ) {
189        if ( sfp->si_addr == nullptr ) {
190                cerr << "Null pointer (nullptr) dereference." << endl;
191        } else {
192                cerr << (sig == SIGSEGV ? "Segment fault" : "Bus error") << " at memory location " << sfp->si_addr << "." << endl
193                         << "Possible cause is reading outside the address space or writing to a protected area within the address space with an invalid pointer or subscript." << endl;
194        } // if
195        backtrace( 2 );                                                                         // skip first 2 stack frames
196        abort();                                                                                        // cause core dump for debugging
197} // sigSegvBusHandler
198
199static void sigFpeHandler( SIGPARMS ) {
200        const char * msg;
201
202        switch ( sfp->si_code ) {
203          case FPE_INTDIV: case FPE_FLTDIV: msg = "divide by zero"; break;
204          case FPE_FLTOVF: msg = "overflow"; break;
205          case FPE_FLTUND: msg = "underflow"; break;
206          case FPE_FLTRES: msg = "inexact result"; break;
207          case FPE_FLTINV: msg = "invalid operation"; break;
208          default: msg = "unknown";
209        } // choose
210        cerr << "Computation error " << msg << " at location " << sfp->si_addr << endl
211                 << "Possible cause is constant-expression evaluation invalid." << endl;
212        backtrace( 2 );                                                                         // skip first 2 stack frames
213        abort();                                                                                        // cause core dump for debugging
214} // sigFpeHandler
215
216static void sigAbortHandler( SIGPARMS ) {
217        backtrace( 6 );                                                                         // skip first 6 stack frames
218        Signal( SIGABRT, SIG_DFL, SA_SIGINFO ); // reset default signal handler
219        raise( SIGABRT );                                                                       // reraise SIGABRT
220} // sigAbortHandler
221
222int main( int argc, char * argv[] ) {
223        FILE * input;                                                                           // use FILE rather than istream because yyin is FILE
224        ostream * output = & cout;
225        list< Declaration * > translationUnit;
226
227        Signal( SIGSEGV, sigSegvBusHandler, SA_SIGINFO );
228        Signal( SIGBUS, sigSegvBusHandler, SA_SIGINFO );
229        Signal( SIGFPE, sigFpeHandler, SA_SIGINFO );
230        Signal( SIGABRT, sigAbortHandler, SA_SIGINFO );
231
232        // cout << "main" << endl;
233        // for ( int i = 0; i < argc; i += 1 ) {
234        //      cout << '\t' << argv[i] << endl;
235        // } // for
236
237        parse_cmdline( argc, argv );                                            // process command-line arguments
238        CodeGen::FixMain::setReplaceMain( !nomainp );
239
240        if ( waiting_for_gdb ) {
241                cerr << "Waiting for gdb" << endl;
242                cerr << "run :" << endl;
243                cerr << "  gdb attach " << getpid() << endl;
244                raise(SIGSTOP);
245        } // if
246
247        try {
248                // choose to read the program from a file or stdin
249                if ( optind < argc ) {                                                  // any commands after the flags ? => input file name
250                        input = fopen( argv[ optind ], "r" );
251                        assertf( input, "cannot open %s because %s\n", argv[ optind ], strerror( errno ) );
252                        optind += 1;
253                } else {                                                                                // no input file name
254                        input = stdin;
255                } // if
256
257                Stats::Time::StartGlobal();
258                NewPass("Parse");
259                Stats::Time::StartBlock("Parse");
260
261                // read in the builtins, extras, and the prelude
262                if ( ! nopreludep ) {                                                   // include gcc builtins
263                        // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
264
265                        assertf( !PreludeDirector.empty(), "Can't find prelude without option --prelude-dir must be used." );
266
267                        // Read to gcc builtins, if not generating the cfa library
268                        FILE * gcc_builtins = fopen( (PreludeDirector + "/gcc-builtins.cf").c_str(), "r" );
269                        assertf( gcc_builtins, "cannot open gcc-builtins.cf\n" );
270                        parse( gcc_builtins, LinkageSpec::Compiler );
271
272                        // read the extra prelude in, if not generating the cfa library
273                        FILE * extras = fopen( (PreludeDirector + "/extras.cf").c_str(), "r" );
274                        assertf( extras, "cannot open extras.cf\n" );
275                        parse( extras, LinkageSpec::BuiltinC );
276
277                        if ( ! libcfap ) {
278                                // read the prelude in, if not generating the cfa library
279                                FILE * prelude = fopen( (PreludeDirector + "/prelude.cfa").c_str(), "r" );
280                                assertf( prelude, "cannot open prelude.cfa\n" );
281                                parse( prelude, LinkageSpec::Intrinsic );
282
283                                // Read to cfa builtins, if not generating the cfa library
284                                FILE * builtins = fopen( (PreludeDirector + "/builtins.cf").c_str(), "r" );
285                                assertf( builtins, "cannot open builtins.cf\n" );
286                                parse( builtins, LinkageSpec::BuiltinCFA );
287                        } // if
288                } // if
289
290                parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, yydebug );
291
292                if ( parsep ) {
293                        parseTree->printList( cout );
294                        delete parseTree;
295                        return EXIT_SUCCESS;
296                } // if
297
298                buildList( parseTree, translationUnit );
299                delete parseTree;
300                parseTree = nullptr;
301
302                if ( astp ) {
303                        dump( translationUnit );
304                        return EXIT_SUCCESS;
305                } // if
306
307                // Temporary: fill locations after parsing so that every node has a location, for early error messages.
308                // Eventually we should pass the locations from the parser to every node, but this quick and dirty solution
309                // works okay for now.
310                CodeTools::fillLocations( translationUnit );
311                Stats::Time::StopBlock();
312
313                PASS( "Translate Exception Declarations", ControlStruct::translateExcept( translationUnit ) );
314                if ( exdeclp ) {
315                        dump( translationUnit );
316                        return EXIT_SUCCESS;
317                } // if
318
319                // add the assignment statement after the initialization of a type parameter
320                PASS( "Validate", SymTab::validate( translationUnit, symtabp ) );
321
322                CodeTools::fillLocations( translationUnit );
323
324                if( useNewAST ) {
325                        if (Stats::Counters::enabled) {
326                                ast::pass_visitor_stats.avg = Stats::Counters::build<Stats::Counters::AverageCounter<double>>("Average Depth - New");
327                                ast::pass_visitor_stats.max = Stats::Counters::build<Stats::Counters::MaxCounter<double>>("Max depth - New");
328                        }
329                        auto transUnit = convert( move( translationUnit ) );
330
331                        forceFillCodeLocations( transUnit );
332
333                        if ( symtabp ) {
334                                return EXIT_SUCCESS;
335                        } // if
336
337                        if ( expraltp ) {
338                                ResolvExpr::printCandidates( transUnit );
339                                return EXIT_SUCCESS;
340                        } // if
341
342                        if ( validp ) {
343                                dump( move( transUnit ) );
344                                return EXIT_SUCCESS;
345                        } // if
346
347                        PASS( "Translate Throws", ControlStruct::translateThrows( transUnit ) );
348                        PASS( "Fix Labels", ControlStruct::fixLabels( transUnit ) );
349                        PASS( "Fix Names", CodeGen::fixNames( transUnit ) );
350                        PASS( "Gen Init", InitTweak::genInit( transUnit ) );
351                        PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( transUnit ) );
352
353                        if ( libcfap ) {
354                                // Generate the bodies of cfa library functions.
355                                LibCfa::makeLibCfa( transUnit );
356                        } // if
357
358                        if ( declstatsp ) {
359                                printDeclStats( transUnit );
360                                return EXIT_SUCCESS;
361                        } // if
362
363                        if ( bresolvep ) {
364                                dump( move( transUnit ) );
365                                return EXIT_SUCCESS;
366                        } // if
367
368                        if ( resolvprotop ) {
369                                dumpAsResolverProto( transUnit );
370                                return EXIT_SUCCESS;
371                        } // if
372
373                        PASS( "Resolve", ResolvExpr::resolve( transUnit ) );
374                        if ( exprp ) {
375                                dump( move( transUnit ) );
376                                return EXIT_SUCCESS;
377                        } // if
378
379                        forceFillCodeLocations( transUnit );
380
381                        PASS( "Fix Init", InitTweak::fix(transUnit, buildingLibrary()));
382
383                        translationUnit = convert( move( transUnit ) );
384                } else {
385                        if ( symtabp ) {
386                                deleteAll( translationUnit );
387                                return EXIT_SUCCESS;
388                        } // if
389
390                        if ( expraltp ) {
391                                PassVisitor<ResolvExpr::AlternativePrinter> printer( cout );
392                                acceptAll( translationUnit, printer );
393                                return EXIT_SUCCESS;
394                        } // if
395
396                        if ( validp ) {
397                                dump( translationUnit );
398                                return EXIT_SUCCESS;
399                        } // if
400
401                        PASS( "Translate Throws", ControlStruct::translateThrows( translationUnit ) );
402                        PASS( "Fix Labels", ControlStruct::fixLabels( translationUnit ) );
403                        PASS( "Fix Names", CodeGen::fixNames( translationUnit ) );
404                        PASS( "Gen Init", InitTweak::genInit( translationUnit ) );
405                        PASS( "Expand Member Tuples" , Tuples::expandMemberTuples( translationUnit ) );
406
407                        if ( libcfap ) {
408                                // Generate the bodies of cfa library functions.
409                                LibCfa::makeLibCfa( translationUnit );
410                        } // if
411
412                        if ( declstatsp ) {
413                                CodeTools::printDeclStats( translationUnit );
414                                deleteAll( translationUnit );
415                                return EXIT_SUCCESS;
416                        } // if
417
418                        if ( bresolvep ) {
419                                dump( translationUnit );
420                                return EXIT_SUCCESS;
421                        } // if
422
423                        CodeTools::fillLocations( translationUnit );
424
425                        if ( resolvprotop ) {
426                                CodeTools::dumpAsResolvProto( translationUnit );
427                                return EXIT_SUCCESS;
428                        } // if
429
430                        PASS( "Resolve", ResolvExpr::resolve( translationUnit ) );
431                        if ( exprp ) {
432                                dump( translationUnit );
433                                return EXIT_SUCCESS;
434                        }
435
436                        PASS( "Fix Init", InitTweak::fix( translationUnit, buildingLibrary() ) );
437                }
438
439                // fix ObjectDecl - replaces ConstructorInit nodes
440                if ( ctorinitp ) {
441                        dump ( translationUnit );
442                        return EXIT_SUCCESS;
443                } // if
444
445                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
446
447                PASS( "Translate Tries" , ControlStruct::translateTries( translationUnit ) );
448
449                PASS( "Gen Waitfor" , Concurrency::generateWaitFor( translationUnit ) );
450
451                PASS( "Convert Specializations",  GenPoly::convertSpecializations( translationUnit ) ); // needs to happen before tuple types are expanded
452
453                PASS( "Expand Tuples", Tuples::expandTuples( translationUnit ) ); // xxx - is this the right place for this?
454
455                if ( tuplep ) {
456                        dump( translationUnit );
457                        return EXIT_SUCCESS;
458                } // if
459
460                PASS( "Virtual Expand Casts", Virtual::expandCasts( translationUnit ) ); // Must come after translateEHM
461
462                PASS( "Instantiate Generics", GenPoly::instantiateGeneric( translationUnit ) );
463                if ( genericsp ) {
464                        dump( translationUnit );
465                        return EXIT_SUCCESS;
466                } // if
467
468                PASS( "Convert L-Value", GenPoly::convertLvalue( translationUnit ) );
469
470                if ( bboxp ) {
471                        dump( translationUnit );
472                        return EXIT_SUCCESS;
473                } // if
474                PASS( "Box", GenPoly::box( translationUnit ) );
475
476                PASS( "Link-Once", CodeGen::translateLinkOnce( translationUnit ) );
477
478                // Code has been lowered to C, now we can start generation.
479
480                if ( bcodegenp ) {
481                        dump( translationUnit );
482                        return EXIT_SUCCESS;
483                } // if
484
485                if ( optind < argc ) {                                                  // any commands after the flags and input file ? => output file name
486                        output = new ofstream( argv[ optind ] );
487                } // if
488
489                CodeTools::fillLocations( translationUnit );
490                PASS( "Code Gen", CodeGen::generate( translationUnit, *output, ! genproto, prettycodegenp, true, linemarks ) );
491
492                CodeGen::FixMain::fix( translationUnit, *output,
493                                (PreludeDirector + "/bootloader.c").c_str() );
494                if ( output != &cout ) {
495                        delete output;
496                } // if
497        } catch ( SemanticErrorException & e ) {
498                if ( errorp ) {
499                        cerr << "---AST at error:---" << endl;
500                        dump( translationUnit, cerr );
501                        cerr << endl << "---End of AST, begin error message:---\n" << endl;
502                } // if
503                e.print();
504                if ( output != &cout ) {
505                        delete output;
506                } // if
507                return EXIT_FAILURE;
508        } catch ( UnimplementedError & e ) {
509                cout << "Sorry, " << e.get_what() << " is not currently implemented" << endl;
510                if ( output != &cout ) {
511                        delete output;
512                } // if
513                return EXIT_FAILURE;
514        } catch ( CompilerError & e ) {
515                cerr << "Compiler Error: " << e.get_what() << endl;
516                cerr << "(please report bugs to [REDACTED])" << endl;
517                if ( output != &cout ) {
518                        delete output;
519                } // if
520                return EXIT_FAILURE;
521        } catch ( std::bad_alloc & ) {
522                cerr << "*cfa-cpp compilation error* std::bad_alloc" << endl;
523                backtrace( 1 );
524                abort();
525        } catch ( ... ) {
526                exception_ptr eptr = current_exception();
527                try {
528                        if (eptr) {
529                                rethrow_exception(eptr);
530                        } else {
531                                cerr << "*cfa-cpp compilation error* exception uncaught and unknown" << endl;
532                        } // if
533                } catch( const exception & e ) {
534                        cerr << "*cfa-cpp compilation error* uncaught exception \"" << e.what() << "\"\n";
535                } // try
536                return EXIT_FAILURE;
537        } // try
538
539        deleteAll( translationUnit );
540        Stats::print();
541        return EXIT_SUCCESS;
542} // main
543
544
545static const char optstring[] = ":c:ghlLmNnpdOAP:S:twW:D:";
546
547enum { PreludeDir = 128 };
548static struct option long_opts[] = {
549        { "colors", required_argument, nullptr, 'c' },
550        { "gdb", no_argument, nullptr, 'g' },
551        { "help", no_argument, nullptr, 'h' },
552        { "libcfa", no_argument, nullptr, 'l' },
553        { "linemarks", no_argument, nullptr, 'L' },
554        { "no-main", no_argument, 0, 'm' },
555        { "no-linemarks", no_argument, nullptr, 'N' },
556        { "no-prelude", no_argument, nullptr, 'n' },
557        { "prototypes", no_argument, nullptr, 'p' },
558        { "deterministic-out", no_argument, nullptr, 'd' },
559        { "old-ast", no_argument, nullptr, 'O'},
560        { "new-ast", no_argument, nullptr, 'A'},
561        { "print", required_argument, nullptr, 'P' },
562        { "prelude-dir", required_argument, nullptr, PreludeDir },
563        { "statistics", required_argument, nullptr, 'S' },
564        { "tree", no_argument, nullptr, 't' },
565        { "", no_argument, nullptr, 0 },                                        // -w
566        { "", no_argument, nullptr, 0 },                                        // -W
567        { "", no_argument, nullptr, 0 },                                        // -D
568        { nullptr, 0, nullptr, 0 }
569}; // long_opts
570
571static const char * description[] = {
572        "diagnostic color: never, always, auto",                        // -c
573        "wait for gdb to attach",                                                       // -g
574        "print translator help message",                                        // -h
575        "generate libcfa.c",                                                            // -l
576        "generate line marks",                                                          // -L
577        "do not replace main",                                                          // -m
578        "do not generate line marks",                                           // -N
579        "do not read prelude",                                                          // -n
580        "do not generate prelude prototypes => prelude not printed", // -p
581        "only print deterministic output",                  // -d
582        "Use the old-ast",                                                                      // -O
583        "Use the new-ast",                                                                      // -A
584        "print",                                                                                        // -P
585        "<directory> prelude directory for debug/nodebug",      // no flag
586        "<option-list> enable profiling information: counters, heap, time, all, none", // -S
587        "building cfa standard lib",                                            // -t
588        "",                                                                                                     // -w
589        "",                                                                                                     // -W
590        "",                                                                                                     // -D
591}; // description
592
593static_assert( sizeof( long_opts ) / sizeof( long_opts[0] ) - 1 == sizeof( description ) / sizeof( description[0] ), "Long opts and description must match" );
594
595static struct Printopts {
596        const char * name;
597        int & flag;
598        int val;
599        const char * descript;
600} printopts[] = {
601        { "ascodegen", codegenp, true, "print AST as codegen rather than AST" },
602        { "asterr", errorp, true, "print AST on error" },
603        { "declstats", declstatsp, true, "code property statistics" },
604        { "parse", yydebug, true, "yacc (parsing) debug information" },
605        { "pretty", prettycodegenp, true, "prettyprint for ascodegen flag" },
606        { "rproto", resolvprotop, true, "resolver-proto instance" },
607        { "rsteps", resolvep, true, "print resolver steps" },
608        { "tree", parsep, true, "print parse tree" },
609        // code dumps
610        { "ast", astp, true, "print AST after parsing" },
611        { "exdecl", exdeclp, true, "print AST after translating exception decls" },
612        { "symevt", symtabp, true, "print AST after symbol table events" },
613        { "altexpr", expraltp, true, "print alternatives for expressions" },
614        { "astdecl", validp, true, "print AST after declaration validation pass" },
615        { "resolver", bresolvep, true, "print AST before resolver step" },
616        { "astexpr", exprp, true, "print AST after expression analysis" },
617        { "ctordtor", ctorinitp, true, "print AST after ctor/dtor are replaced" },
618        { "tuple", tuplep, true, "print AST after tuple expansion" },
619        { "astgen", genericsp, true, "print AST after instantiate generics" },
620        { "box", bboxp, true, "print AST before box step" },
621        { "codegen", bcodegenp, true, "print AST before code generation" },
622};
623enum { printoptsSize = sizeof( printopts ) / sizeof( printopts[0] ) };
624
625static void usage( char * argv[] ) {
626    cout << "Usage: " << argv[0] << " [options] [input-file (default stdin)] [output-file (default stdout)], where options are:" << endl;
627        int i = 0, j = 1;                                                                       // j skips starting colon
628        for ( ; long_opts[i].name != 0 && optstring[j] != '\0'; i += 1, j += 1 ) {
629                if ( long_opts[i].name[0] != '\0' ) {                   // hidden option, internal usage only
630                        if ( strcmp( long_opts[i].name, "prelude-dir" ) != 0 ) { // flag
631                                cout << "  -" << optstring[j] << ",";
632                        } else {                                                                        // no flag
633                                j -= 1;                                                                 // compensate
634                                cout << "     ";
635                        } // if
636                        cout << " --" << left << setw(12) << long_opts[i].name << "  ";
637                        if ( strcmp( long_opts[i].name, "print" ) == 0 ) {
638                                cout << "one of: " << endl;
639                                for ( int i = 0; i < printoptsSize; i += 1 ) {
640                                        cout << setw(10) << " " << left << setw(10) << printopts[i].name << "  " << printopts[i].descript << endl;
641                                } // for
642                        } else {
643                                cout << description[i] << endl;
644                        } // if
645                } // if
646                if ( optstring[j + 1] == ':' ) j += 1;
647        } // for
648        if ( long_opts[i].name != 0 || optstring[j] != '\0' ) assertf( false, "internal error, mismatch of option flags and names\n" );
649    exit( EXIT_FAILURE );
650} // usage
651
652static void parse_cmdline( int argc, char * argv[] ) {
653        opterr = 0;                                                                                     // (global) prevent getopt from printing error messages
654
655        bool Wsuppress = false, Werror = false;
656        int c;
657        while ( (c = getopt_long( argc, argv, optstring, long_opts, nullptr )) != -1 ) {
658                switch ( c ) {
659                  case 'c':                                                                             // diagnostic colors
660                        if ( strcmp( optarg, "always" ) == 0 ) {
661                                ErrorHelpers::colors = ErrorHelpers::Colors::Always;
662                        } else if ( strcmp( optarg, "never" ) == 0 ) {
663                                ErrorHelpers::colors = ErrorHelpers::Colors::Never;
664                        } else if ( strcmp( optarg, "auto" ) == 0 ) {
665                                ErrorHelpers::colors = ErrorHelpers::Colors::Auto;
666                        } // if
667                        break;
668                  case 'h':                                                                             // help message
669                        usage( argv );                                                          // no return
670                        break;
671                  case 'l':                                                                             // generate libcfa.c
672                        libcfap = true;
673                        break;
674                  case 'L':                                                                             // generate line marks
675                        linemarks = true;
676                        break;
677                  case 'm':                                                                             // do not replace main
678                        nomainp = true;
679                        break;
680                  case 'N':                                                                             // do not generate line marks
681                        linemarks = false;
682                        break;
683                  case 'n':                                                                             // do not read prelude
684                        nopreludep = true;
685                        break;
686                  case 'p':                                                                             // generate prototypes for prelude functions
687                        genproto = true;
688                        break;
689                  case 'd':                                     // don't print non-deterministic output
690                        deterministic_output = true;
691                        break;
692                  case 'O':                                     // don't print non-deterministic output
693                        useNewAST = false;
694                        break;
695                  case 'A':                                     // don't print non-deterministic output
696                        useNewAST = true;
697                        break;
698                  case 'P':                                                                             // print options
699                        for ( int i = 0;; i += 1 ) {
700                                if ( i == printoptsSize ) {
701                                        cout << "Unknown --print option " << optarg << endl;
702                                        goto Default;
703                                } // if
704                                if ( strcmp( optarg, printopts[i].name ) == 0 ) {
705                                        printopts[i].flag = printopts[i].val;
706                                        break;
707                                } // if
708                        } // for
709                        break;
710                  case PreludeDir:                                                              // prelude directory for debug/nodebug, hidden
711                        PreludeDirector = optarg;
712                        break;
713                  case 'S':                                                                             // enable profiling information, argument comma separated list of names
714                        Stats::parse_params( optarg );
715                        break;
716                  case 't':                                                                             // building cfa stdlib
717                        treep = true;
718                        break;
719                  case 'g':                                                                             // wait for gdb
720                        waiting_for_gdb = true;
721                        break;
722                  case 'w':                                                                             // suppress all warnings, hidden
723                        Wsuppress = true;
724                        break;
725                  case 'W':                                                                             // coordinate gcc -W with CFA, hidden
726                        if ( strcmp( optarg, "all" ) == 0 ) {
727                                SemanticWarning_EnableAll();
728                        } else if ( strcmp( optarg, "error" ) == 0 ) {
729                                Werror = true;
730                        } else {
731                                char * warning = optarg;
732                                Severity s;
733                                if ( strncmp( optarg, "no-", 3 ) == 0 ) {
734                                        warning += 3;
735                                        s = Severity::Suppress;
736                                } else {
737                                        s = Severity::Warn;
738                                } // if
739                                SemanticWarning_Set( warning, s );
740                        } // if
741                        break;
742                  case 'D':                                                                             // ignore -Dxxx, forwarded by cpp, hidden
743                        break;
744                  case '?':                                                                             // unknown option
745                        if ( optopt ) {                                                         // short option ?
746                                cout << "Unknown option -" << (char)optopt << endl;
747                        } else {
748                                cout << "Unknown option " << argv[optind - 1] << endl;
749                        } // if
750                        goto Default;
751                  case ':':                                                                             // missing option
752                        if ( optopt ) {                                                         // short option ?
753                                cout << "Missing option for -" << (char)optopt << endl;
754                        } else {
755                                cout << "Missing option for " << argv[optind - 1] << endl;
756                        } // if
757                        goto Default;
758                  Default:
759                  default:
760                        usage( argv );                                                          // no return
761                } // switch
762        } // while
763
764        if ( Werror ) {
765                SemanticWarning_WarningAsError();
766        } // if
767        if ( Wsuppress ) {
768                SemanticWarning_SuppressAll();
769        } // if
770        // for ( const auto w : WarningFormats ) {
771        //      cout << w.name << ' ' << (int)w.severity << endl;
772        // } // for
773} // parse_cmdline
774
775static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit ) {
776        extern int yyparse( void );
777        extern FILE * yyin;
778        extern int yylineno;
779
780        ::linkage = linkage;                                                            // set globals
781        yyin = input;
782        yylineno = 1;
783        int parseStatus = yyparse();
784
785        fclose( input );
786        if ( shouldExit || parseStatus != 0 ) {
787                exit( parseStatus );
788        } // if
789} // parse
790
791static bool notPrelude( Declaration * decl ) {
792        return ! LinkageSpec::isBuiltin( decl->get_linkage() );
793} // notPrelude
794
795static void dump( list< Declaration * > & translationUnit, ostream & out ) {
796        list< Declaration * > decls;
797
798        if ( genproto ) {
799                filter( translationUnit.begin(), translationUnit.end(), back_inserter( decls ), notPrelude );
800        } else {
801                decls = translationUnit;
802        } // if
803
804        // depending on commandline options, either generate code or dump the AST
805        if ( codegenp ) {
806                CodeGen::generate( decls, out, ! genproto, prettycodegenp );
807        } else {
808                printAll( decls, out );
809        } // if
810        deleteAll( translationUnit );
811} // dump
812
813static void dump( ast::TranslationUnit && transUnit, ostream & out ) {
814        std::list< Declaration * > translationUnit = convert( move( transUnit ) );
815        dump( translationUnit, out );
816}
817
818// Local Variables: //
819// tab-width: 4 //
820// mode: c++ //
821// compile-command: "make install" //
822// End:  //
Note: See TracBrowser for help on using the repository browser.