source: src/main.cc @ ba662b9

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since ba662b9 was bcd74f3, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Merge branch 'master' into new-ast

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