source: src/main.cc @ 0522ebe

Last change on this file since 0522ebe was a55ebcc, checked in by JiadaL <j82liang@…>, 5 months ago
  1. Add debug print option for replacePseudoFunc; 2. Change resolver handling enum types; 3. change QualifiedNameExpr? representation pre-resolver; 4. Disable able a test that currently doesn't work
  • Property mode set to 100644
File size: 28.0 KB
RevLine 
[b87a5ed]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//
[71f4e4f]7// main.cc --
[b87a5ed]8//
[3e96559]9// Author           : Peter Buhr and Rob Schluntz
[b87a5ed]10// Created On       : Fri May 15 23:12:02 2015
[372b6d3]11// Last Modified By : Peter A. Buhr
[be3f163]12// Last Modified On : Wed Nov  1 21:12:58 2023
13// Update Count     : 690
[b87a5ed]14//
15
[bf2438c]16#include <cxxabi.h>                         // for __cxa_demangle
17#include <execinfo.h>                       // for backtrace, backtrace_symbols
18#include <getopt.h>                         // for no_argument, optind, geto...
[08fc48f]19#include <cassert>                          // for assertf
[bf2438c]20#include <cstdio>                           // for fopen, FILE, fclose, stdin
21#include <cstdlib>                          // for exit, free, abort, EXIT_F...
[bffcd66]22#include <csignal>                          // for signal, SIGABRT, SIGSEGV
[bf2438c]23#include <cstring>                          // for index
[be9288a]24#include <fstream>                          // for ofstream
[bf2438c]25#include <iostream>                         // for operator<<, basic_ostream
[62ce290]26#include <iomanip>
[bf2438c]27#include <iterator>                         // for back_inserter
28#include <list>                             // for list
[08fc48f]29#include <string>                           // for char_traits, operator<<
[e6955b1]30
[bccd70a]31#include "AST/Pass.hpp"                     // for pass_visitor_stats
[0b5e780]32#include "AST/Print.hpp"                    // for printAll
[bccd70a]33#include "AST/TranslationUnit.hpp"          // for TranslationUnit
[52f9804]34#include "AST/Util.hpp"                     // for checkInvariants
[7f38b67a]35#include "CompilationState.h"
[bf2438c]36#include "../config.h"                      // for CFA_LIBDIR
37#include "CodeGen/FixMain.h"                // for FixMain
38#include "CodeGen/FixNames.h"               // for fixNames
39#include "CodeGen/Generate.h"               // for generate
[aff7e86]40#include "CodeGen/LinkOnce.h"               // for translateLinkOnce
[f57faf6f]41#include "Common/CodeLocationTools.hpp"     // for forceFillCodeLocations
[55cbff8]42#include "Common/DeclStats.hpp"             // for printDeclStats
43#include "Common/ResolvProtoDump.hpp"       // for dumpAsResolverProto
[09366b8]44#include "Common/Stats.h"                   // for Stats
[bf2438c]45#include "Common/utility.h"                 // for deleteAll, filter, printAll
[3dd8f42]46#include "Concurrency/Actors.hpp"           // for implementActors
[eb779d5]47#include "Concurrency/Corun.hpp"            // for implementCorun
[2cf3b87]48#include "Concurrency/Keywords.h"           // for implementMutex, implement...
[9f5ecf5]49#include "Concurrency/Waitfor.h"            // for generateWaitfor
[c86b08d]50#include "Concurrency/Waituntil.hpp"        // for generateWaitUntil
[0c730d9]51#include "ControlStruct/ExceptDecl.h"       // for translateExcept
[09366b8]52#include "ControlStruct/ExceptTranslate.h"  // for translateThrows, translat...
[b8ab91a]53#include "ControlStruct/FixLabels.hpp"      // for fixLabels
[a488783]54#include "ControlStruct/HoistControlDecls.hpp" //  hoistControlDecls
[bf2438c]55#include "GenPoly/Box.h"                    // for box
56#include "GenPoly/InstantiateGeneric.h"     // for instantiateGeneric
57#include "GenPoly/Lvalue.h"                 // for convertLvalue
58#include "GenPoly/Specialize.h"             // for convertSpecializations
59#include "InitTweak/FixInit.h"              // for fix
60#include "InitTweak/GenInit.h"              // for genInit
61#include "MakeLibCfa.h"                     // for makeLibCfa
[cbd1ba8]62#include "Parser/RunParser.hpp"             // for buildList, dumpParseTree,...
[1622af5]63#include "ResolvExpr/CandidatePrinter.hpp"  // for printCandidates
[d3652df]64#include "ResolvExpr/EraseWith.hpp"         // for eraseWith
[bf2438c]65#include "ResolvExpr/Resolver.h"            // for resolve
66#include "Tuples/Tuples.h"                  // for expandMemberTuples, expan...
[a488783]67#include "Validate/Autogen.hpp"             // for autogenerateRoutines
[298fe57]68#include "Validate/CompoundLiteral.hpp"     // for handleCompoundLiterals
69#include "Validate/EliminateTypedef.hpp"    // for eliminateTypedef
[1931bb01]70#include "Validate/EnumAndPointerDecay.hpp" // for decayEnumsAndPointers
[ce36b55]71#include "Validate/FindSpecialDecls.h"      // for findGlobalDecls
[298fe57]72#include "Validate/FixQualifiedTypes.hpp"   // for fixQualifiedTypes
[1931bb01]73#include "Validate/FixReturnTypes.hpp"      // for fixReturnTypes
[9490621]74#include "Validate/ForallPointerDecay.hpp"  // for decayForallPointers
[298fe57]75#include "Validate/GenericParameter.hpp"    // for fillGenericParameters, tr...
76#include "Validate/HoistStruct.hpp"         // for hoistStruct
[1931bb01]77#include "Validate/HoistTypeDecls.hpp"      // for hoistTypeDecls
[ce36b55]78#include "Validate/InitializerLength.hpp"   // for setLengthFromInitializer
79#include "Validate/LabelAddressFixer.hpp"   // for fixLabelAddresses
[37b3151]80#include "Validate/LinkInstanceTypes.hpp"   // for linkInstanceTypes
[1931bb01]81#include "Validate/ReplaceTypedef.hpp"      // for replaceTypedef
[4ec9513]82#include "Validate/ReturnCheck.hpp"         // for checkReturnStatements
[1931bb01]83#include "Validate/VerifyCtorDtorAssign.hpp" // for verifyCtorDtorAssign
[61e362f]84#include "Validate/ReplacePseudoFunc.hpp"   // for replacePseudoFunc
[a5f0529]85#include "Virtual/ExpandCasts.h"            // for expandCasts
[37b3151]86#include "Virtual/VirtualDtor.hpp"          // for implementVirtDtors
[51b7345]87
[2c38b15]88using namespace std;
89
[3e96559]90static void NewPass( const char * const name ) {
91        Stats::Heap::newPass( name );
[1cb7fab2]92        using namespace Stats::Counters;
[b8665e3]93        {
[f43146e4]94                static auto group = build<CounterGroup>( "Pass Visitor Template" );
[3e96559]95                auto pass = build<CounterGroup>( name, group );
[f43146e4]96                ast::pass_visitor_stats.depth = 0;
97                ast::pass_visitor_stats.avg = build<AverageCounter<double>>( "Average Depth", pass );
98                ast::pass_visitor_stats.max = build<MaxCounter<double>>( "Max Depth", pass );
[b8665e3]99        }
[675716e]100}
101
[52f9804]102// Helpers for checkInvariant:
103void checkInvariants( std::list< Declaration * > & ) {}
104using ast::checkInvariants;
105
106#define PASS( name, pass, unit, ... )       \
[ecaeac6e]107        if ( errorp ) { cerr << name << endl; } \
[675716e]108        NewPass(name);                          \
[4f97937]109        Stats::Time::StartBlock(name);          \
[52f9804]110        pass(unit,##__VA_ARGS__);               \
111        Stats::Time::StopBlock();               \
112        if ( invariant ) {                      \
113                checkInvariants(unit);              \
114        }
115
116#define DUMP( cond, unit )                  \
117        if ( cond ) {                           \
118                dump(unit);                         \
119                return EXIT_SUCCESS;                \
120        }
[0da3e2c]121
[ef22ad6]122static bool waiting_for_gdb = false;                                    // flag to set cfa-cpp to wait for gdb on start
[dee1f89]123
[bffcd66]124static string PreludeDirector = "";
[4dcaed2]125
[77d601f]126static void parse_cmdline( int argc, char * argv[] );
[e499381]127static void dump( ast::TranslationUnit && transUnit, ostream & out = cout );
[e6955b1]128
[0afffee]129static void backtrace( int start ) {                                    // skip first N stack frames
[74330e7]130        enum { Frames = 50, };                                                          // maximum number of stack frames
[e6955b1]131        void * array[Frames];
[74330e7]132        size_t size = ::backtrace( array, Frames );
[0afffee]133        char ** messages = ::backtrace_symbols( array, size ); // does not demangle names
134
135        *index( messages[0], '(' ) = '\0';                                      // find executable name
136        cerr << "Stack back trace for: " << messages[0] << endl;
[e6955b1]137
[b542bfb]138        // skip last 2 stack frames after main
[74330e7]139        for ( unsigned int i = start; i < size - 2 && messages != nullptr; i += 1 ) {
[e6955b1]140                char * mangled_name = nullptr, * offset_begin = nullptr, * offset_end = nullptr;
[7006ba5]141
142                for ( char * p = messages[i]; *p; p += 1 ) {    // find parantheses and +offset
[0afffee]143                        if ( *p == '(' ) {
[46f6134]144                                mangled_name = p;
[0afffee]145                        } else if ( *p == '+' ) {
[e6955b1]146                                offset_begin = p;
[0afffee]147                        } else if ( *p == ')' ) {
[e6955b1]148                                offset_end = p;
149                                break;
150                        } // if
151                } // for
152
153                // if line contains symbol, attempt to demangle
[b542bfb]154                int frameNo = i - start;
[e6955b1]155                if ( mangled_name && offset_begin && offset_end && mangled_name < offset_begin ) {
[0afffee]156                        *mangled_name++ = '\0';                                         // delimit strings
[e6955b1]157                        *offset_begin++ = '\0';
158                        *offset_end++ = '\0';
159
[0afffee]160                        int status;
[e6955b1]161                        char * real_name = __cxxabiv1::__cxa_demangle( mangled_name, 0, 0, &status );
[0afffee]162                        // bug in __cxa_demangle for single-character lower-case non-mangled names
[e6955b1]163                        if ( status == 0 ) {                                            // demangling successful ?
[b542bfb]164                                cerr << "(" << frameNo << ") " << messages[i] << " : "
[e6955b1]165                                         << real_name << "+" << offset_begin << offset_end << endl;
166                        } else {                                                                        // otherwise, output mangled name
[b542bfb]167                                cerr << "(" << frameNo << ") " << messages[i] << " : "
[0afffee]168                                         << mangled_name << "(/*unknown*/)+" << offset_begin << offset_end << endl;
[e6955b1]169                        } // if
[0afffee]170
[e6955b1]171                        free( real_name );
172                } else {                                                                                // otherwise, print the whole line
[b542bfb]173                        cerr << "(" << frameNo << ") " << messages[i] << endl;
[e6955b1]174                } // if
175        } // for
[b542bfb]176
[e6955b1]177        free( messages );
[b542bfb]178} // backtrace
179
[bffcd66]180#define SIGPARMS int sig __attribute__(( unused )), siginfo_t * sfp __attribute__(( unused )), ucontext_t * cxt __attribute__(( unused ))
181
[1f68d5d]182static void _Signal(struct sigaction & act, int sig, int flags ) {
[bffcd66]183        act.sa_flags = flags;
184
185        if ( sigaction( sig, &act, nullptr ) == -1 ) {
[77d601f]186            cerr << "*cfa-cpp compilation error* problem installing signal handler, error(" << errno << ") " << strerror( errno ) << endl;
[bffcd66]187            _exit( EXIT_FAILURE );
188        } // if
[1f68d5d]189}
190
191static void Signal( int sig, void (* handler)(SIGPARMS), int flags ) {
192        struct sigaction act;
193        act.sa_sigaction = (void (*)(int, siginfo_t *, void *))handler;
194        _Signal(act, sig, flags);
195} // Signal
196
197static void Signal( int sig, void (* handler)(int), int flags ) {
198        struct sigaction act;
199        act.sa_handler = handler;
200        _Signal(act, sig, flags);
[bffcd66]201} // Signal
202
203static void sigSegvBusHandler( SIGPARMS ) {
204        if ( sfp->si_addr == nullptr ) {
205                cerr << "Null pointer (nullptr) dereference." << endl;
206        } else {
207                cerr << (sig == SIGSEGV ? "Segment fault" : "Bus error") << " at memory location " << sfp->si_addr << "." << endl
208                         << "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;
209        } // if
[b542bfb]210        backtrace( 2 );                                                                         // skip first 2 stack frames
[3e96559]211        abort();                                                                                        // cause core dump for debugging
[e6955b1]212} // sigSegvBusHandler
[0da3e2c]213
[74330e7]214static void sigFpeHandler( SIGPARMS ) {
215        const char * msg;
216
217        switch ( sfp->si_code ) {
218          case FPE_INTDIV: case FPE_FLTDIV: msg = "divide by zero"; break;
219          case FPE_FLTOVF: msg = "overflow"; break;
220          case FPE_FLTUND: msg = "underflow"; break;
221          case FPE_FLTRES: msg = "inexact result"; break;
222          case FPE_FLTINV: msg = "invalid operation"; break;
223          default: msg = "unknown";
224        } // choose
225        cerr << "Computation error " << msg << " at location " << sfp->si_addr << endl
226                 << "Possible cause is constant-expression evaluation invalid." << endl;
227        backtrace( 2 );                                                                         // skip first 2 stack frames
228        abort();                                                                                        // cause core dump for debugging
229} // sigFpeHandler
230
[bffcd66]231static void sigAbortHandler( SIGPARMS ) {
[b542bfb]232        backtrace( 6 );                                                                         // skip first 6 stack frames
[1f68d5d]233        Signal( SIGABRT, SIG_DFL, SA_SIGINFO ); // reset default signal handler
[9be45a2]234        raise( SIGABRT );                                                                       // reraise SIGABRT
[b542bfb]235} // sigAbortHandler
236
[cbaee0d]237int main( int argc, char * argv[] ) {
[3b8e52c]238        FILE * input;                                                                           // use FILE rather than istream because yyin is FILE
[d08beee]239        ostream * output = & cout;
[64b3cda]240        ast::TranslationUnit transUnit;
[e6955b1]241
[bffcd66]242        Signal( SIGSEGV, sigSegvBusHandler, SA_SIGINFO );
243        Signal( SIGBUS, sigSegvBusHandler, SA_SIGINFO );
[74330e7]244        Signal( SIGFPE, sigFpeHandler, SA_SIGINFO );
[bffcd66]245        Signal( SIGABRT, sigAbortHandler, SA_SIGINFO );
[b87a5ed]246
[bffcd66]247        // cout << "main" << endl;
[44bca7f]248        // for ( int i = 0; i < argc; i += 1 ) {
[bffcd66]249        //      cout << '\t' << argv[i] << endl;
[44bca7f]250        // } // for
251
[e0bd0f9]252        parse_cmdline( argc, argv );                                            // process command-line arguments
[b87a5ed]253
[ef22ad6]254        if ( waiting_for_gdb ) {
[bffcd66]255                cerr << "Waiting for gdb" << endl;
256                cerr << "run :" << endl;
257                cerr << "  gdb attach " << getpid() << endl;
[dee1f89]258                raise(SIGSTOP);
[ef22ad6]259        } // if
[dee1f89]260
[b87a5ed]261        try {
[81419b5]262                // choose to read the program from a file or stdin
[3b8e52c]263                if ( optind < argc ) {                                                  // any commands after the flags ? => input file name
[b87a5ed]264                        input = fopen( argv[ optind ], "r" );
[e0bd0f9]265                        assertf( input, "cannot open %s because %s\n", argv[ optind ], strerror( errno ) );
[b87a5ed]266                        optind += 1;
[3b8e52c]267                } else {                                                                                // no input file name
[b87a5ed]268                        input = stdin;
269                } // if
270
[79eaeb7]271                Stats::Time::StartGlobal();
[3c0d4cd]272                NewPass("Parse");
273                Stats::Time::StartBlock("Parse");
[675716e]274
[159c62e]275                // read in the builtins, extras, and the prelude
[de62360d]276                if ( ! nopreludep ) {                                                   // include gcc builtins
[faf8857]277                        // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
[807ce84]278
[37fe352]279                        assertf( !PreludeDirector.empty(), "Can't find prelude without option --prelude-dir must be used." );
[4dcaed2]280
[807ce84]281                        // Read to gcc builtins, if not generating the cfa library
[be3f163]282                        FILE * gcc_builtins = fopen( (PreludeDirector + "/gcc-builtins.cfa").c_str(), "r" );
[6ce3ae9]283                        assertf( gcc_builtins, "cannot open gcc-builtins.cf\n" );
[f2f595d7]284                        parse( gcc_builtins, ast::Linkage::Compiler );
[81419b5]285
[159c62e]286                        // read the extra prelude in, if not generating the cfa library
[be3f163]287                        FILE * extras = fopen( (PreludeDirector + "/extras.cfa").c_str(), "r" );
[3b8e52c]288                        assertf( extras, "cannot open extras.cf\n" );
[f2f595d7]289                        parse( extras, ast::Linkage::BuiltinC );
[81419b5]290                        if ( ! libcfap ) {
[faf8857]291                                // read the prelude in, if not generating the cfa library
[e523b07]292                                FILE * prelude = fopen( (PreludeDirector + "/prelude.cfa").c_str(), "r" );
293                                assertf( prelude, "cannot open prelude.cfa\n" );
[f2f595d7]294                                parse( prelude, ast::Linkage::Intrinsic );
[fa4805f]295
296                                // Read to cfa builtins, if not generating the cfa library
[be3f163]297                                FILE * builtins = fopen( (PreludeDirector + "/builtins.cfa").c_str(), "r" );
[fa4805f]298                                assertf( builtins, "cannot open builtins.cf\n" );
[f2f595d7]299                                parse( builtins, ast::Linkage::BuiltinCFA );
[b87a5ed]300                        } // if
301                } // if
[81419b5]302
[f2f595d7]303                parse( input, libcfap ? ast::Linkage::Intrinsic : ast::Linkage::Cforall, yydebug );
[71f4e4f]304
[64b3cda]305                transUnit = buildUnit();
[b87a5ed]306
[52f9804]307                DUMP( astp, std::move( transUnit ) );
[b87a5ed]308
[3c0d4cd]309                Stats::Time::StopBlock();
[036dd5f]310
[52f9804]311                PASS( "Hoist Type Decls", Validate::hoistTypeDecls, transUnit );
312
313                PASS( "Translate Exception Declarations", ControlStruct::translateExcept, transUnit );
314                DUMP( exdeclp, std::move( transUnit ) );
315                PASS( "Verify Ctor, Dtor & Assign", Validate::verifyCtorDtorAssign, transUnit );
316                PASS( "Replace Typedefs", Validate::replaceTypedef, transUnit );
317                PASS( "Fix Return Types", Validate::fixReturnTypes, transUnit );
318                PASS( "Enum and Pointer Decay", Validate::decayEnumsAndPointers, transUnit );
319
[37b3151]320                PASS( "Link Instance Types", Validate::linkInstanceTypes, transUnit );
[52f9804]321
[14c0f7b]322                PASS( "Forall Pointer Decay", Validate::decayForallPointers, transUnit );
[52f9804]323                PASS( "Fix Qualified Types", Validate::fixQualifiedTypes, transUnit );
[59c8dff]324
[52f9804]325                PASS( "Eliminate Typedef", Validate::eliminateTypedef, transUnit );
[2c38b15]326                PASS( "Hoist Struct", Validate::hoistStruct, transUnit );
[52f9804]327                PASS( "Validate Generic Parameters", Validate::fillGenericParameters, transUnit );
328                PASS( "Translate Dimensions", Validate::translateDimensionParameters, transUnit );
329                PASS( "Check Function Returns", Validate::checkReturnStatements, transUnit );
330                PASS( "Fix Return Statements", InitTweak::fixReturnStatements, transUnit );
331                PASS( "Implement Concurrent Keywords", Concurrency::implementKeywords, transUnit );
[14c0f7b]332                PASS( "Fix Unique Ids", Validate::fixUniqueIds, transUnit );
[cf3da24]333                PASS( "Implement Corun", Concurrency::implementCorun, transUnit );
[52f9804]334                PASS( "Hoist Control Declarations", ControlStruct::hoistControlDecls, transUnit );
335
336                PASS( "Generate Autogen Routines", Validate::autogenerateRoutines, transUnit );
337
338                PASS( "Implement Actors", Concurrency::implementActors, transUnit );
339                PASS( "Implement Virtual Destructors", Virtual::implementVirtDtors, transUnit );
340                PASS( "Implement Mutex", Concurrency::implementMutex, transUnit );
341                PASS( "Implement Thread Start", Concurrency::implementThreadStarter, transUnit );
342                PASS( "Compound Literal", Validate::handleCompoundLiterals, transUnit );
343                PASS( "Set Length From Initializer", Validate::setLengthFromInitializer, transUnit );
344                PASS( "Find Global Decls", Validate::findGlobalDecls, transUnit );
345                PASS( "Fix Label Address", Validate::fixLabelAddresses, transUnit );
[09366b8]346
347                if ( symtabp ) {
348                        return EXIT_SUCCESS;
349                } // if
[ccbc65c]350
[09366b8]351                if ( expraltp ) {
352                        ResolvExpr::printCandidates( transUnit );
353                        return EXIT_SUCCESS;
354                } // if
[3606fe4]355
[52f9804]356                DUMP( validp, std::move( transUnit ) );
[6a896b0]357
[52f9804]358                PASS( "Translate Throws", ControlStruct::translateThrows, transUnit );
359                PASS( "Fix Labels", ControlStruct::fixLabels, transUnit );
[14c0f7b]360                PASS( "Implement Waituntil", Concurrency::generateWaitUntil, transUnit  );
[52f9804]361                PASS( "Fix Names", CodeGen::fixNames, transUnit );
362                PASS( "Gen Init", InitTweak::genInit, transUnit );
363                PASS( "Expand Member Tuples" , Tuples::expandMemberTuples, transUnit );
[ce36b55]364
[09366b8]365                if ( libcfap ) {
366                        // Generate the bodies of cfa library functions.
367                        LibCfa::makeLibCfa( transUnit );
368                } // if
[1622af5]369
[09366b8]370                if ( declstatsp ) {
371                        printDeclStats( transUnit );
372                        return EXIT_SUCCESS;
373                } // if
[1622af5]374
[52f9804]375                DUMP( bresolvep, std::move( transUnit ) );
[1622af5]376
[09366b8]377                if ( resolvprotop ) {
378                        dumpAsResolverProto( transUnit );
379                        return EXIT_SUCCESS;
380                } // if
[9f5a19fa]381
[52f9804]382                PASS( "Resolve", ResolvExpr::resolve, transUnit );
383                DUMP( exprp, std::move( transUnit ) );
[59c8dff]384                PASS( "Replace Pseudo Func", Validate::replacePseudoFunc, transUnit );
[a55ebcc]385                DUMP( reppseu, std::move( transUnit ) );
[52f9804]386                PASS( "Fix Init", InitTweak::fix, transUnit, buildingLibrary() );
[d3652df]387                PASS( "Erase With", ResolvExpr::eraseWith, transUnit );
[68fe946e]388
[09366b8]389                // fix ObjectDecl - replaces ConstructorInit nodes
[52f9804]390                DUMP( ctorinitp, std::move( transUnit ) );
[68fe946e]391
[09366b8]392                // Currently not working due to unresolved issues with UniqueExpr
[52f9804]393                PASS( "Expand Unique Expr", Tuples::expandUniqueExpr, transUnit ); // 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
[68fe946e]394
[52f9804]395                PASS( "Translate Tries", ControlStruct::translateTries, transUnit );
396                PASS( "Gen Waitfor", Concurrency::generateWaitFor, transUnit );
[61efa42]397                PASS( "Fix Main Linkage", CodeGen::fixMainLinkage, transUnit, !nomainp );
[4615ac8]398
[09366b8]399                // Needs to happen before tuple types are expanded.
[52f9804]400                PASS( "Convert Specializations",  GenPoly::convertSpecializations, transUnit );
[81419b5]401
[52f9804]402                PASS( "Expand Tuples", Tuples::expandTuples, transUnit );
403                DUMP( tuplep, std::move( transUnit ) );
[626dbc10]404
[09366b8]405                // Must come after Translate Tries.
[52f9804]406                PASS( "Virtual Expand Casts", Virtual::expandCasts, transUnit );
[141b786]407
[52f9804]408                PASS( "Instantiate Generics", GenPoly::instantiateGeneric, transUnit );
409                DUMP( genericsp, std::move( transUnit ) );
[b4f8808]410
[52f9804]411                PASS( "Convert L-Value", GenPoly::convertLvalue, transUnit );
[1ee0a4da]412                DUMP( bboxp, std::move( transUnit ) );
413                PASS( "Box", GenPoly::box, transUnit );
[3cbe320]414                PASS( "Link-Once", CodeGen::translateLinkOnce, transUnit );
[7fffb1b]415
[aff7e86]416                // Code has been lowered to C, now we can start generation.
417
[8941b6b]418                DUMP( bcodegenp, std::move( transUnit ) );
[8905f56]419
[13de47bc]420                if ( optind < argc ) {                                                  // any commands after the flags and input file ? => output file name
421                        output = new ofstream( argv[ optind ] );
422                } // if
[0270824]423
[8941b6b]424                PASS( "Code Gen", CodeGen::generate, transUnit, *output, !genproto, prettycodegenp, true, linemarks, false );
[61efa42]425                CodeGen::fixMainInvoke( transUnit, *output, (PreludeDirector + "/bootloader.c").c_str() );
[8941b6b]426
[e6955b1]427                if ( output != &cout ) {
[b87a5ed]428                        delete output;
429                } // if
[77d601f]430        } catch ( SemanticErrorException & e ) {
[b87a5ed]431                if ( errorp ) {
[e6955b1]432                        cerr << "---AST at error:---" << endl;
[0b5e780]433                        dump( std::move( transUnit ), cerr );
[e6955b1]434                        cerr << endl << "---End of AST, begin error message:---\n" << endl;
[926af74]435                } // if
[d55d7a6]436                e.print();
[e6955b1]437                if ( output != &cout ) {
[b87a5ed]438                        delete output;
439                } // if
[3e96559]440                return EXIT_FAILURE;
[77d601f]441        } catch ( std::bad_alloc & ) {
442                cerr << "*cfa-cpp compilation error* std::bad_alloc" << endl;
443                backtrace( 1 );
444                abort();
[3e96559]445        } catch ( ... ) {
[bffcd66]446                exception_ptr eptr = current_exception();
[4990812]447                try {
448                        if (eptr) {
[bffcd66]449                                rethrow_exception(eptr);
[3e96559]450                        } else {
[77d601f]451                                cerr << "*cfa-cpp compilation error* exception uncaught and unknown" << endl;
[3e96559]452                        } // if
[77d601f]453                } catch( const exception & e ) {
454                        cerr << "*cfa-cpp compilation error* uncaught exception \"" << e.what() << "\"\n";
[3e96559]455                } // try
456                return EXIT_FAILURE;
457        } // try
[b87a5ed]458
[1cb7fab2]459        Stats::print();
[3e96559]460        return EXIT_SUCCESS;
[d9a0e76]461} // main
[51b7345]462
[0da3e2c]463
[372b6d3]464static const char optstring[] = ":c:ghilLmNnpdP:S:twW:D:";
[3e96559]465
[62ce290]466enum { PreludeDir = 128 };
[3e96559]467static struct option long_opts[] = {
[1a69a90]468        { "colors", required_argument, nullptr, 'c' },
469        { "gdb", no_argument, nullptr, 'g' },
[3e96559]470        { "help", no_argument, nullptr, 'h' },
[372b6d3]471        { "invariant", no_argument, nullptr, 'i' },
[3e96559]472        { "libcfa", no_argument, nullptr, 'l' },
[62ce290]473        { "linemarks", no_argument, nullptr, 'L' },
[372b6d3]474        { "no-main", no_argument, nullptr, 'm' },
[62ce290]475        { "no-linemarks", no_argument, nullptr, 'N' },
476        { "no-prelude", no_argument, nullptr, 'n' },
[3e96559]477        { "prototypes", no_argument, nullptr, 'p' },
[7215000]478        { "deterministic-out", no_argument, nullptr, 'd' },
[62ce290]479        { "print", required_argument, nullptr, 'P' },
480        { "prelude-dir", required_argument, nullptr, PreludeDir },
481        { "statistics", required_argument, nullptr, 'S' },
[3e96559]482        { "tree", no_argument, nullptr, 't' },
483        { "", no_argument, nullptr, 0 },                                        // -w
484        { "", no_argument, nullptr, 0 },                                        // -W
485        { "", no_argument, nullptr, 0 },                                        // -D
486        { nullptr, 0, nullptr, 0 }
487}; // long_opts
488
489static const char * description[] = {
[aa88cb9a]490        "diagnostic color: never, always, auto",                        // -c
[3e9de01]491        "wait for gdb to attach",                                                       // -g
[aa88cb9a]492        "print translator help message",                                        // -h
[372b6d3]493        "invariant checking during AST passes",                         // -i
[3e9de01]494        "generate libcfa.c",                                                            // -l
495        "generate line marks",                                                          // -L
496        "do not replace main",                                                          // -m
497        "do not generate line marks",                                           // -N
498        "do not read prelude",                                                          // -n
[aa88cb9a]499        "do not generate prelude prototypes => prelude not printed", // -p
[3e9de01]500        "only print deterministic output",                  // -d
501        "print",                                                                                        // -P
[62ce290]502        "<directory> prelude directory for debug/nodebug",      // no flag
[aa88cb9a]503        "<option-list> enable profiling information: counters, heap, time, all, none", // -S
[3e9de01]504        "building cfa standard lib",                                            // -t
505        "",                                                                                                     // -w
506        "",                                                                                                     // -W
507        "",                                                                                                     // -D
[3e96559]508}; // description
509
[0c0f548]510static_assert( sizeof( long_opts ) / sizeof( long_opts[0] ) - 1 == sizeof( description ) / sizeof( description[0] ), "Long opts and description must match" );
[62ce290]511
512static struct Printopts {
513        const char * name;
514        int & flag;
515        int val;
516        const char * descript;
517} printopts[] = {
[0e464f6]518        { "ascodegen", codegenp, true, "print AST as codegen rather than AST" },
519        { "asterr", errorp, true, "print AST on error" },
[12f671e]520        { "declstats", declstatsp, true, "print code property statistics" },
521        { "parse", yydebug, true, "print yacc (parsing) debug information" },
[62ce290]522        { "pretty", prettycodegenp, true, "prettyprint for ascodegen flag" },
523        { "rproto", resolvprotop, true, "resolver-proto instance" },
[0e464f6]524        { "rsteps", resolvep, true, "print resolver steps" },
[5f917740]525        // AST dumps
[0e464f6]526        { "ast", astp, true, "print AST after parsing" },
[5f917740]527        { "excpdecl", exdeclp, true, "print AST after translating exception decls" },
[0e464f6]528        { "symevt", symtabp, true, "print AST after symbol table events" },
[5f917740]529        { "expralt", expraltp, true, "print AST after expressions alternatives" },
530        { "valdecl", validp, true, "print AST after declaration validation pass" },
531        { "bresolver", bresolvep, true, "print AST before resolver step" },
532        { "expranly", exprp, true, "print AST after expression analysis" },
[0e464f6]533        { "ctordtor", ctorinitp, true, "print AST after ctor/dtor are replaced" },
534        { "tuple", tuplep, true, "print AST after tuple expansion" },
[5f917740]535        { "instgen", genericsp, true, "print AST after instantiate generics" },
536        { "bbox", bboxp, true, "print AST before box pass" },
537        { "bcodegen", bcodegenp, true, "print AST before code generation" },
[a55ebcc]538        { "reppseu", reppseu, true, "print AST after replacing pseudo functions" }
[62ce290]539};
540enum { printoptsSize = sizeof( printopts ) / sizeof( printopts[0] ) };
541
[77d601f]542static void usage( char * argv[] ) {
[e0bd0f9]543    cout << "Usage: " << argv[0] << " [options] [input-file (default stdin)] [output-file (default stdout)], where options are:" << endl;
[3e96559]544        int i = 0, j = 1;                                                                       // j skips starting colon
545        for ( ; long_opts[i].name != 0 && optstring[j] != '\0'; i += 1, j += 1 ) {
546                if ( long_opts[i].name[0] != '\0' ) {                   // hidden option, internal usage only
[62ce290]547                        if ( strcmp( long_opts[i].name, "prelude-dir" ) != 0 ) { // flag
548                                cout << "  -" << optstring[j] << ",";
549                        } else {                                                                        // no flag
550                                j -= 1;                                                                 // compensate
551                                cout << "     ";
552                        } // if
553                        cout << " --" << left << setw(12) << long_opts[i].name << "  ";
554                        if ( strcmp( long_opts[i].name, "print" ) == 0 ) {
555                                cout << "one of: " << endl;
556                                for ( int i = 0; i < printoptsSize; i += 1 ) {
557                                        cout << setw(10) << " " << left << setw(10) << printopts[i].name << "  " << printopts[i].descript << endl;
558                                } // for
559                        } else {
560                                cout << description[i] << endl;
561                        } // if
[3e96559]562                } // if
[62ce290]563                if ( optstring[j + 1] == ':' ) j += 1;
[3e96559]564        } // for
565        if ( long_opts[i].name != 0 || optstring[j] != '\0' ) assertf( false, "internal error, mismatch of option flags and names\n" );
566    exit( EXIT_FAILURE );
567} // usage
568
[e0bd0f9]569static void parse_cmdline( int argc, char * argv[] ) {
[0da3e2c]570        opterr = 0;                                                                                     // (global) prevent getopt from printing error messages
571
[c5e5109]572        bool Wsuppress = false, Werror = false;
[0da3e2c]573        int c;
[3e96559]574        while ( (c = getopt_long( argc, argv, optstring, long_opts, nullptr )) != -1 ) {
[0da3e2c]575                switch ( c ) {
[1a69a90]576                  case 'c':                                                                             // diagnostic colors
577                        if ( strcmp( optarg, "always" ) == 0 ) {
578                                ErrorHelpers::colors = ErrorHelpers::Colors::Always;
579                        } else if ( strcmp( optarg, "never" ) == 0 ) {
580                                ErrorHelpers::colors = ErrorHelpers::Colors::Never;
581                        } else if ( strcmp( optarg, "auto" ) == 0 ) {
582                                ErrorHelpers::colors = ErrorHelpers::Colors::Auto;
583                        } // if
584                        break;
[3e96559]585                  case 'h':                                                                             // help message
586                        usage( argv );                                                          // no return
[53d3ab4b]587                        break;
[372b6d3]588                  case 'i':                                                                             // invariant checking
589                        invariant = true;
590                        break;
[3e96559]591                  case 'l':                                                                             // generate libcfa.c
[0da3e2c]592                        libcfap = true;
593                        break;
[62ce290]594                  case 'L':                                                                             // generate line marks
[6de43b6]595                        linemarks = true;
[c850687]596                        break;
[3e96559]597                  case 'm':                                                                             // do not replace main
598                        nomainp = true;
[0da3e2c]599                        break;
[62ce290]600                  case 'N':                                                                             // do not generate line marks
[6de43b6]601                        linemarks = false;
[c59bde6]602                        break;
[62ce290]603                  case 'n':                                                                             // do not read prelude
[3e96559]604                        nopreludep = true;
[0da3e2c]605                        break;
[62ce290]606                  case 'p':                                                                             // generate prototypes for prelude functions
607                        genproto = true;
[0da3e2c]608                        break;
[7215000]609                  case 'd':                                     // don't print non-deterministic output
[a77257be]610                        deterministic_output = true;
611                        break;
[62ce290]612                  case 'P':                                                                             // print options
613                        for ( int i = 0;; i += 1 ) {
614                                if ( i == printoptsSize ) {
615                                        cout << "Unknown --print option " << optarg << endl;
616                                        goto Default;
617                                } // if
618                                if ( strcmp( optarg, printopts[i].name ) == 0 ) {
619                                        printopts[i].flag = printopts[i].val;
620                                        break;
621                                } // if
622                        } // for
[0da3e2c]623                        break;
[62ce290]624                  case PreludeDir:                                                              // prelude directory for debug/nodebug, hidden
625                        PreludeDirector = optarg;
[3b3491b]626                        break;
[3e96559]627                  case 'S':                                                                             // enable profiling information, argument comma separated list of names
628                        Stats::parse_params( optarg );
[ebcc940]629                        break;
[dee1f89]630                  case 't':                                                                             // building cfa stdlib
[0da3e2c]631                        treep = true;
632                        break;
[dee1f89]633                  case 'g':                                                                             // wait for gdb
634                        waiting_for_gdb = true;
635                        break;
[3e96559]636                  case 'w':                                                                             // suppress all warnings, hidden
[c5e5109]637                        Wsuppress = true;
[44bca7f]638                        break;
[3e96559]639                  case 'W':                                                                             // coordinate gcc -W with CFA, hidden
[44bca7f]640                        if ( strcmp( optarg, "all" ) == 0 ) {
[68e9ace]641                                SemanticWarning_EnableAll();
[44bca7f]642                        } else if ( strcmp( optarg, "error" ) == 0 ) {
643                                Werror = true;
644                        } else {
645                                char * warning = optarg;
646                                Severity s;
647                                if ( strncmp( optarg, "no-", 3 ) == 0 ) {
648                                        warning += 3;
649                                        s = Severity::Suppress;
650                                } else {
651                                        s = Severity::Warn;
652                                } // if
[68e9ace]653                                SemanticWarning_Set( warning, s );
[44bca7f]654                        } // if
655                        break;
[3e96559]656                  case 'D':                                                                             // ignore -Dxxx, forwarded by cpp, hidden
[0da3e2c]657                        break;
[3e96559]658                  case '?':                                                                             // unknown option
659                        if ( optopt ) {                                                         // short option ?
660                                cout << "Unknown option -" << (char)optopt << endl;
661                        } else {
662                                cout << "Unknown option " << argv[optind - 1] << endl;
663                        } // if
664                        goto Default;
665                  case ':':                                                                             // missing option
[ae47a23]666                        if ( optopt ) {                                                         // short option ?
[3e96559]667                                cout << "Missing option for -" << (char)optopt << endl;
[ae47a23]668                        } else {
[3e96559]669                                cout << "Missing option for " << argv[optind - 1] << endl;
[ae47a23]670                        } // if
[3e96559]671                        goto Default;
672                  Default:
673                  default:
674                        usage( argv );                                                          // no return
[0da3e2c]675                } // switch
676        } // while
[44bca7f]677
678        if ( Werror ) {
[68e9ace]679                SemanticWarning_WarningAsError();
[44bca7f]680        } // if
[c5e5109]681        if ( Wsuppress ) {
682                SemanticWarning_SuppressAll();
683        } // if
[44bca7f]684        // for ( const auto w : WarningFormats ) {
685        //      cout << w.name << ' ' << (int)w.severity << endl;
686        // } // for
[0da3e2c]687} // parse_cmdline
688
[0b5e780]689static bool notPrelude( ast::ptr<ast::Decl> & decl ) {
690        return !decl->linkage.is_builtin;
691}
[926af74]692
[0b5e780]693static void dump( ast::TranslationUnit && unit, std::ostream & out ) {
694        // May filter out all prelude declarations.
[62ce290]695        if ( genproto ) {
[0b5e780]696                std::list<ast::ptr<ast::Decl>> decls;
697                std::copy_if( unit.decls.begin(), unit.decls.end(),
698                        std::back_inserter( decls ), notPrelude );
699                decls.swap( unit.decls );
700        }
[1ab4ce2]701
[0b5e780]702        // May print as full dump or as code generation.
[e39241b]703        if ( codegenp ) {
[0b5e780]704                CodeGen::generate( unit, out, !genproto, prettycodegenp, false, false, false );
[e39241b]705        } else {
[0b5e780]706                ast::printAll( out, unit.decls );
707        }
[e499381]708}
709
[51b7345]710// Local Variables: //
[b87a5ed]711// tab-width: 4 //
712// mode: c++ //
713// compile-command: "make install" //
[51b7345]714// End:  //
Note: See TracBrowser for help on using the repository browser.