source: src/main.cc @ df78cce

Last change on this file since df78cce was df78cce, checked in by JiadaL <j82liang@…>, 3 months ago

Save the change in main for git pull

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