| [c850687] | 1 | 
 | 
|---|
| [b87a5ed] | 2 | //
 | 
|---|
 | 3 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
 | 
|---|
 | 4 | //
 | 
|---|
 | 5 | // The contents of this file are covered under the licence agreement in the
 | 
|---|
 | 6 | // file "LICENCE" distributed with Cforall.
 | 
|---|
 | 7 | //
 | 
|---|
| [71f4e4f] | 8 | // main.cc --
 | 
|---|
| [b87a5ed] | 9 | //
 | 
|---|
| [843054c2] | 10 | // Author           : Richard C. Bilson
 | 
|---|
| [b87a5ed] | 11 | // Created On       : Fri May 15 23:12:02 2015
 | 
|---|
| [c59bde6] | 12 | // Last Modified By : Peter A. Buhr
 | 
|---|
 | 13 | // Last Modified On : Tue Oct 31 12:22:40 2017
 | 
|---|
 | 14 | // Update Count     : 445
 | 
|---|
| [b87a5ed] | 15 | //
 | 
|---|
 | 16 | 
 | 
|---|
| [bf2438c] | 17 | #include <cxxabi.h>                         // for __cxa_demangle
 | 
|---|
 | 18 | #include <execinfo.h>                       // for backtrace, backtrace_symbols
 | 
|---|
 | 19 | #include <getopt.h>                         // for no_argument, optind, geto...
 | 
|---|
 | 20 | #include <signal.h>                         // for signal, SIGABRT, SIGSEGV
 | 
|---|
| [08fc48f] | 21 | #include <cassert>                          // for assertf
 | 
|---|
| [bf2438c] | 22 | #include <cstdio>                           // for fopen, FILE, fclose, stdin
 | 
|---|
 | 23 | #include <cstdlib>                          // for exit, free, abort, EXIT_F...
 | 
|---|
 | 24 | #include <cstring>                          // for index
 | 
|---|
| [be9288a] | 25 | #include <fstream>                          // for ofstream
 | 
|---|
| [bf2438c] | 26 | #include <iostream>                         // for operator<<, basic_ostream
 | 
|---|
 | 27 | #include <iterator>                         // for back_inserter
 | 
|---|
 | 28 | #include <list>                             // for list
 | 
|---|
| [08fc48f] | 29 | #include <string>                           // for char_traits, operator<<
 | 
|---|
| [e6955b1] | 30 | 
 | 
|---|
| [bf2438c] | 31 | #include "../config.h"                      // for CFA_LIBDIR
 | 
|---|
 | 32 | #include "CodeGen/FixMain.h"                // for FixMain
 | 
|---|
 | 33 | #include "CodeGen/FixNames.h"               // for fixNames
 | 
|---|
 | 34 | #include "CodeGen/Generate.h"               // for generate
 | 
|---|
 | 35 | #include "CodeTools/DeclStats.h"            // for printDeclStats
 | 
|---|
 | 36 | #include "CodeTools/TrackLoc.h"             // for fillLocations
 | 
|---|
| [bff09c8] | 37 | #include "Common/PassVisitor.h"
 | 
|---|
| [bf2438c] | 38 | #include "Common/CompilerError.h"           // for CompilerError
 | 
|---|
 | 39 | #include "Common/SemanticError.h"           // for SemanticError
 | 
|---|
 | 40 | #include "Common/UnimplementedError.h"      // for UnimplementedError
 | 
|---|
 | 41 | #include "Common/utility.h"                 // for deleteAll, filter, printAll
 | 
|---|
| [9f5ecf5] | 42 | #include "Concurrency/Waitfor.h"            // for generateWaitfor
 | 
|---|
| [bf2438c] | 43 | #include "ControlStruct/ExceptTranslate.h"  // for translateEHM
 | 
|---|
 | 44 | #include "ControlStruct/Mutate.h"           // for mutate
 | 
|---|
 | 45 | #include "GenPoly/Box.h"                    // for box
 | 
|---|
 | 46 | #include "GenPoly/InstantiateGeneric.h"     // for instantiateGeneric
 | 
|---|
 | 47 | #include "GenPoly/Lvalue.h"                 // for convertLvalue
 | 
|---|
 | 48 | #include "GenPoly/Specialize.h"             // for convertSpecializations
 | 
|---|
 | 49 | #include "InitTweak/FixInit.h"              // for fix
 | 
|---|
 | 50 | #include "InitTweak/GenInit.h"              // for genInit
 | 
|---|
 | 51 | #include "MakeLibCfa.h"                     // for makeLibCfa
 | 
|---|
 | 52 | #include "Parser/LinkageSpec.h"             // for Spec, Cforall, Intrinsic
 | 
|---|
 | 53 | #include "Parser/ParseNode.h"               // for DeclarationNode, buildList
 | 
|---|
 | 54 | #include "Parser/TypedefTable.h"            // for TypedefTable
 | 
|---|
 | 55 | #include "ResolvExpr/AlternativePrinter.h"  // for AlternativePrinter
 | 
|---|
 | 56 | #include "ResolvExpr/Resolver.h"            // for resolve
 | 
|---|
 | 57 | #include "SymTab/Validate.h"                // for validate
 | 
|---|
 | 58 | #include "SynTree/Declaration.h"            // for Declaration
 | 
|---|
 | 59 | #include "SynTree/Visitor.h"                // for acceptAll
 | 
|---|
 | 60 | #include "Tuples/Tuples.h"                  // for expandMemberTuples, expan...
 | 
|---|
| [a5f0529] | 61 | #include "Virtual/ExpandCasts.h"            // for expandCasts
 | 
|---|
| [51b73452] | 62 | 
 | 
|---|
 | 63 | using namespace std;
 | 
|---|
 | 64 | 
 | 
|---|
| [e6955b1] | 65 | #define OPTPRINT(x) if ( errorp ) cerr << x << endl;
 | 
|---|
| [81419b5] | 66 | 
 | 
|---|
| [0da3e2c] | 67 | 
 | 
|---|
| [8b7ee09] | 68 | LinkageSpec::Spec linkage = LinkageSpec::Cforall;
 | 
|---|
| [0da3e2c] | 69 | TypedefTable typedefTable;
 | 
|---|
| [cbaee0d] | 70 | DeclarationNode * parseTree = nullptr;                                  // program parse tree
 | 
|---|
| [81419b5] | 71 | 
 | 
|---|
| [926af74] | 72 | extern int yydebug;                                                                             // set for -g flag (Grammar)
 | 
|---|
| [b87a5ed] | 73 | bool
 | 
|---|
 | 74 |         astp = false,
 | 
|---|
| [de62360d] | 75 |         bresolvep = false,
 | 
|---|
| [fea7ca7] | 76 |         bboxp = false,
 | 
|---|
| [8905f56] | 77 |         bcodegenp = false,
 | 
|---|
| [ca1c11f] | 78 |         ctorinitp = false,
 | 
|---|
| [41a7137] | 79 |         declstatsp = false,
 | 
|---|
| [b87a5ed] | 80 |         exprp = false,
 | 
|---|
 | 81 |         expraltp = false,
 | 
|---|
| [53d3ab4b] | 82 |         genericsp = false,
 | 
|---|
| [b87a5ed] | 83 |         libcfap = false,
 | 
|---|
| [de62360d] | 84 |         nopreludep = false,
 | 
|---|
| [1ab4ce2] | 85 |         noprotop = false,
 | 
|---|
| [3fe34ae] | 86 |         nomainp = false,
 | 
|---|
| [de62360d] | 87 |         parsep = false,
 | 
|---|
| [b87a5ed] | 88 |         resolvep = false,                                                                       // used in AlternativeFinder
 | 
|---|
 | 89 |         symtabp = false,
 | 
|---|
| [d3b7937] | 90 |         treep = false,
 | 
|---|
| [626dbc10] | 91 |         tuplep = false,
 | 
|---|
| [b87a5ed] | 92 |         validp = false,
 | 
|---|
| [de62360d] | 93 |         errorp = false,
 | 
|---|
| [35b1bf4] | 94 |         codegenp = false,
 | 
|---|
| [c850687] | 95 |         prettycodegenp = false,
 | 
|---|
| [6de43b6] | 96 |         linemarks = false;
 | 
|---|
| [b87a5ed] | 97 | 
 | 
|---|
| [926af74] | 98 | static void parse_cmdline( int argc, char *argv[], const char *& filename );
 | 
|---|
| [8b7ee09] | 99 | static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit = false );
 | 
|---|
| [e6955b1] | 100 | static void dump( list< Declaration * > & translationUnit, ostream & out = cout );
 | 
|---|
 | 101 | 
 | 
|---|
| [0afffee] | 102 | static void backtrace( int start ) {                                    // skip first N stack frames
 | 
|---|
| [e6955b1] | 103 |         enum { Frames = 50 };
 | 
|---|
 | 104 |         void * array[Frames];
 | 
|---|
| [0afffee] | 105 |         int size = ::backtrace( array, Frames );
 | 
|---|
 | 106 |         char ** messages = ::backtrace_symbols( array, size ); // does not demangle names
 | 
|---|
 | 107 | 
 | 
|---|
 | 108 |         *index( messages[0], '(' ) = '\0';                                      // find executable name
 | 
|---|
 | 109 |         cerr << "Stack back trace for: " << messages[0] << endl;
 | 
|---|
| [e6955b1] | 110 | 
 | 
|---|
| [b542bfb] | 111 |         // skip last 2 stack frames after main
 | 
|---|
 | 112 |         for ( int i = start; i < size - 2 && messages != nullptr; i += 1 ) {
 | 
|---|
| [e6955b1] | 113 |                 char * mangled_name = nullptr, * offset_begin = nullptr, * offset_end = nullptr;
 | 
|---|
 | 114 |                 for ( char *p = messages[i]; *p; ++p ) {        // find parantheses and +offset
 | 
|---|
| [0afffee] | 115 |                         if ( *p == '(' ) {
 | 
|---|
| [46f6134] | 116 |                                 mangled_name = p;
 | 
|---|
| [0afffee] | 117 |                         } else if ( *p == '+' ) {
 | 
|---|
| [e6955b1] | 118 |                                 offset_begin = p;
 | 
|---|
| [0afffee] | 119 |                         } else if ( *p == ')' ) {
 | 
|---|
| [e6955b1] | 120 |                                 offset_end = p;
 | 
|---|
 | 121 |                                 break;
 | 
|---|
 | 122 |                         } // if
 | 
|---|
 | 123 |                 } // for
 | 
|---|
 | 124 | 
 | 
|---|
 | 125 |                 // if line contains symbol, attempt to demangle
 | 
|---|
| [b542bfb] | 126 |                 int frameNo = i - start;
 | 
|---|
| [e6955b1] | 127 |                 if ( mangled_name && offset_begin && offset_end && mangled_name < offset_begin ) {
 | 
|---|
| [0afffee] | 128 |                         *mangled_name++ = '\0';                                         // delimit strings
 | 
|---|
| [e6955b1] | 129 |                         *offset_begin++ = '\0';
 | 
|---|
 | 130 |                         *offset_end++ = '\0';
 | 
|---|
 | 131 | 
 | 
|---|
| [0afffee] | 132 |                         int status;
 | 
|---|
| [e6955b1] | 133 |                         char * real_name = __cxxabiv1::__cxa_demangle( mangled_name, 0, 0, &status );
 | 
|---|
| [0afffee] | 134 |                         // bug in __cxa_demangle for single-character lower-case non-mangled names
 | 
|---|
| [e6955b1] | 135 |                         if ( status == 0 ) {                                            // demangling successful ?
 | 
|---|
| [b542bfb] | 136 |                                 cerr << "(" << frameNo << ") " << messages[i] << " : "
 | 
|---|
| [e6955b1] | 137 |                                          << real_name << "+" << offset_begin << offset_end << endl;
 | 
|---|
 | 138 |                         } else {                                                                        // otherwise, output mangled name
 | 
|---|
| [b542bfb] | 139 |                                 cerr << "(" << frameNo << ") " << messages[i] << " : "
 | 
|---|
| [0afffee] | 140 |                                          << mangled_name << "(/*unknown*/)+" << offset_begin << offset_end << endl;
 | 
|---|
| [e6955b1] | 141 |                         } // if
 | 
|---|
| [0afffee] | 142 | 
 | 
|---|
| [e6955b1] | 143 |                         free( real_name );
 | 
|---|
 | 144 |                 } else {                                                                                // otherwise, print the whole line
 | 
|---|
| [b542bfb] | 145 |                         cerr << "(" << frameNo << ") " << messages[i] << endl;
 | 
|---|
| [e6955b1] | 146 |                 } // if
 | 
|---|
 | 147 |         } // for
 | 
|---|
| [b542bfb] | 148 | 
 | 
|---|
| [e6955b1] | 149 |         free( messages );
 | 
|---|
| [b542bfb] | 150 | } // backtrace
 | 
|---|
 | 151 | 
 | 
|---|
 | 152 | void sigSegvBusHandler( int sig_num ) {
 | 
|---|
 | 153 |         cerr << "*CFA runtime error* program cfa-cpp terminated with "
 | 
|---|
 | 154 |                  <<     (sig_num == SIGSEGV ? "segment fault" : "bus error")
 | 
|---|
| [0afffee] | 155 |                  << "." << endl;
 | 
|---|
| [b542bfb] | 156 |         backtrace( 2 );                                                                         // skip first 2 stack frames
 | 
|---|
| [e6955b1] | 157 |         exit( EXIT_FAILURE );
 | 
|---|
 | 158 | } // sigSegvBusHandler
 | 
|---|
| [0da3e2c] | 159 | 
 | 
|---|
| [b3c36f4] | 160 | void sigAbortHandler( __attribute__((unused)) int sig_num ) {
 | 
|---|
| [b542bfb] | 161 |         backtrace( 6 );                                                                         // skip first 6 stack frames
 | 
|---|
 | 162 |         signal( SIGABRT, SIG_DFL);                                                      // reset default signal handler
 | 
|---|
 | 163 |     raise( SIGABRT );                                                                   // reraise SIGABRT
 | 
|---|
 | 164 | } // sigAbortHandler
 | 
|---|
 | 165 | 
 | 
|---|
 | 166 | 
 | 
|---|
| [cbaee0d] | 167 | int main( int argc, char * argv[] ) {
 | 
|---|
| [3b8e52c] | 168 |         FILE * input;                                                                           // use FILE rather than istream because yyin is FILE
 | 
|---|
| [e6955b1] | 169 |         ostream *output = & cout;
 | 
|---|
| [926af74] | 170 |         const char *filename = nullptr;
 | 
|---|
| [e6955b1] | 171 |         list< Declaration * > translationUnit;
 | 
|---|
 | 172 | 
 | 
|---|
 | 173 |         signal( SIGSEGV, sigSegvBusHandler );
 | 
|---|
 | 174 |         signal( SIGBUS, sigSegvBusHandler );
 | 
|---|
| [b542bfb] | 175 |         signal( SIGABRT, sigAbortHandler );
 | 
|---|
| [b87a5ed] | 176 | 
 | 
|---|
| [0da3e2c] | 177 |         parse_cmdline( argc, argv, filename );                          // process command-line arguments
 | 
|---|
| [13de47bc] | 178 |         CodeGen::FixMain::setReplaceMain( !nomainp );
 | 
|---|
| [b87a5ed] | 179 | 
 | 
|---|
 | 180 |         try {
 | 
|---|
| [81419b5] | 181 |                 // choose to read the program from a file or stdin
 | 
|---|
| [3b8e52c] | 182 |                 if ( optind < argc ) {                                                  // any commands after the flags ? => input file name
 | 
|---|
| [b87a5ed] | 183 |                         input = fopen( argv[ optind ], "r" );
 | 
|---|
| [3b8e52c] | 184 |                         assertf( input, "cannot open %s\n", argv[ optind ] );
 | 
|---|
| [d029162e] | 185 |                         // if running cfa-cpp directly, might forget to pass -F option (and really shouldn't have to)
 | 
|---|
| [926af74] | 186 |                         if ( filename == nullptr ) filename = argv[ optind ];
 | 
|---|
| [37024fd] | 187 |                         // prelude filename comes in differently
 | 
|---|
 | 188 |                         if ( libcfap ) filename = "prelude.cf";
 | 
|---|
| [b87a5ed] | 189 |                         optind += 1;
 | 
|---|
| [3b8e52c] | 190 |                 } else {                                                                                // no input file name
 | 
|---|
| [b87a5ed] | 191 |                         input = stdin;
 | 
|---|
| [2a7e29b] | 192 |                         // if running cfa-cpp directly, might forget to pass -F option. Since this takes from stdin, pass
 | 
|---|
 | 193 |                         // a fake name along
 | 
|---|
| [926af74] | 194 |                         if ( filename == nullptr ) filename = "stdin";
 | 
|---|
| [b87a5ed] | 195 |                 } // if
 | 
|---|
 | 196 | 
 | 
|---|
| [159c62e] | 197 |                 // read in the builtins, extras, and the prelude
 | 
|---|
| [de62360d] | 198 |                 if ( ! nopreludep ) {                                                   // include gcc builtins
 | 
|---|
| [faf8857] | 199 |                         // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
 | 
|---|
| [807ce84] | 200 | 
 | 
|---|
 | 201 |                         // Read to gcc builtins, if not generating the cfa library
 | 
|---|
| [6ce3ae9] | 202 |                         FILE * gcc_builtins = fopen( libcfap | treep ? "../prelude/gcc-builtins.cf" : CFA_LIBDIR "/gcc-builtins.cf", "r" );
 | 
|---|
 | 203 |                         assertf( gcc_builtins, "cannot open gcc-builtins.cf\n" );
 | 
|---|
 | 204 |                         parse( gcc_builtins, LinkageSpec::Compiler );
 | 
|---|
| [81419b5] | 205 | 
 | 
|---|
| [159c62e] | 206 |                         // read the extra prelude in, if not generating the cfa library
 | 
|---|
| [375a068] | 207 |                         FILE * extras = fopen( libcfap | treep ? "../prelude/extras.cf" : CFA_LIBDIR "/extras.cf", "r" );
 | 
|---|
| [3b8e52c] | 208 |                         assertf( extras, "cannot open extras.cf\n" );
 | 
|---|
| [f0994a1] | 209 |                         parse( extras, LinkageSpec::BuiltinC );
 | 
|---|
| [159c62e] | 210 | 
 | 
|---|
| [81419b5] | 211 |                         if ( ! libcfap ) {
 | 
|---|
| [faf8857] | 212 |                                 // read the prelude in, if not generating the cfa library
 | 
|---|
| [375a068] | 213 |                                 FILE * prelude = fopen( treep ? "../prelude/prelude.cf" : CFA_LIBDIR "/prelude.cf", "r" );
 | 
|---|
| [3b8e52c] | 214 |                                 assertf( prelude, "cannot open prelude.cf\n" );
 | 
|---|
| [35304009] | 215 |                                 parse( prelude, LinkageSpec::Intrinsic );
 | 
|---|
| [fa4805f] | 216 | 
 | 
|---|
 | 217 |                                 // Read to cfa builtins, if not generating the cfa library
 | 
|---|
 | 218 |                                 FILE * builtins = fopen( libcfap | treep ? "../prelude/builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" );
 | 
|---|
 | 219 |                                 assertf( builtins, "cannot open builtins.cf\n" );
 | 
|---|
| [54d714e] | 220 |                                 parse( builtins, LinkageSpec::BuiltinCFA );
 | 
|---|
| [b87a5ed] | 221 |                         } // if
 | 
|---|
 | 222 |                 } // if
 | 
|---|
| [81419b5] | 223 | 
 | 
|---|
| [926af74] | 224 |                 parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, yydebug );
 | 
|---|
| [71f4e4f] | 225 | 
 | 
|---|
| [b87a5ed] | 226 |                 if ( parsep ) {
 | 
|---|
| [e6955b1] | 227 |                         parseTree->printList( cout );
 | 
|---|
| [0da3e2c] | 228 |                         delete parseTree;
 | 
|---|
| [b87a5ed] | 229 |                         return 0;
 | 
|---|
 | 230 |                 } // if
 | 
|---|
 | 231 | 
 | 
|---|
| [0da3e2c] | 232 |                 buildList( parseTree, translationUnit );
 | 
|---|
 | 233 |                 delete parseTree;
 | 
|---|
| [cbaee0d] | 234 |                 parseTree = nullptr;
 | 
|---|
| [b87a5ed] | 235 | 
 | 
|---|
 | 236 |                 if ( astp ) {
 | 
|---|
| [1ab4ce2] | 237 |                         dump( translationUnit );
 | 
|---|
| [b87a5ed] | 238 |                         return 0;
 | 
|---|
 | 239 |                 } // if
 | 
|---|
 | 240 | 
 | 
|---|
| [839ccbb] | 241 |                 // add the assignment statement after the initialization of a type parameter
 | 
|---|
| [81419b5] | 242 |                 OPTPRINT( "validate" )
 | 
|---|
 | 243 |                 SymTab::validate( translationUnit, symtabp );
 | 
|---|
 | 244 |                 if ( symtabp ) {
 | 
|---|
| [46f6134] | 245 |                         deleteAll( translationUnit );
 | 
|---|
| [b87a5ed] | 246 |                         return 0;
 | 
|---|
 | 247 |                 } // if
 | 
|---|
 | 248 | 
 | 
|---|
| [81419b5] | 249 |                 if ( expraltp ) {
 | 
|---|
| [bff09c8] | 250 |                         PassVisitor<ResolvExpr::AlternativePrinter> printer( cout );
 | 
|---|
| [81419b5] | 251 |                         acceptAll( translationUnit, printer );
 | 
|---|
| [b87a5ed] | 252 |                         return 0;
 | 
|---|
 | 253 |                 } // if
 | 
|---|
 | 254 | 
 | 
|---|
 | 255 |                 if ( validp ) {
 | 
|---|
| [1ab4ce2] | 256 |                         dump( translationUnit );
 | 
|---|
| [b87a5ed] | 257 |                         return 0;
 | 
|---|
 | 258 |                 } // if
 | 
|---|
 | 259 | 
 | 
|---|
| [81419b5] | 260 |                 OPTPRINT( "mutate" )
 | 
|---|
 | 261 |                 ControlStruct::mutate( translationUnit );
 | 
|---|
| [71f4e4f] | 262 |                 OPTPRINT( "fixNames" )
 | 
|---|
| [81419b5] | 263 |                 CodeGen::fixNames( translationUnit );
 | 
|---|
| [ef42b143] | 264 |                 OPTPRINT( "genInit" )
 | 
|---|
| [a0fdbd5] | 265 |                 InitTweak::genInit( translationUnit );
 | 
|---|
| [bf32bb8] | 266 |                 OPTPRINT( "expandMemberTuples" );
 | 
|---|
 | 267 |                 Tuples::expandMemberTuples( translationUnit );
 | 
|---|
| [81419b5] | 268 |                 if ( libcfap ) {
 | 
|---|
 | 269 |                         // generate the bodies of cfa library functions
 | 
|---|
 | 270 |                         LibCfa::makeLibCfa( translationUnit );
 | 
|---|
| [b87a5ed] | 271 |                 } // if
 | 
|---|
 | 272 | 
 | 
|---|
| [fa2de95] | 273 |                 if ( declstatsp ) {
 | 
|---|
 | 274 |                         CodeTools::printDeclStats( translationUnit );
 | 
|---|
 | 275 |                         deleteAll( translationUnit );
 | 
|---|
 | 276 |                         return 0;
 | 
|---|
 | 277 |                 }
 | 
|---|
 | 278 | 
 | 
|---|
| [de62360d] | 279 |                 if ( bresolvep ) {
 | 
|---|
| [1ab4ce2] | 280 |                         dump( translationUnit );
 | 
|---|
| [de62360d] | 281 |                         return 0;
 | 
|---|
 | 282 |                 } // if
 | 
|---|
 | 283 | 
 | 
|---|
| [81419b5] | 284 |                 OPTPRINT( "resolve" )
 | 
|---|
| [b87a5ed] | 285 |                 ResolvExpr::resolve( translationUnit );
 | 
|---|
| [81419b5] | 286 |                 if ( exprp ) {
 | 
|---|
| [1ab4ce2] | 287 |                         dump( translationUnit );
 | 
|---|
| [ca1c11f] | 288 |                         return 0;
 | 
|---|
| [926af74] | 289 |                 } // if
 | 
|---|
| [81419b5] | 290 | 
 | 
|---|
| [71f4e4f] | 291 |                 // fix ObjectDecl - replaces ConstructorInit nodes
 | 
|---|
| [6cf27a07] | 292 |                 OPTPRINT( "fixInit" )
 | 
|---|
 | 293 |                 InitTweak::fix( translationUnit, filename, libcfap || treep );
 | 
|---|
| [ca1c11f] | 294 |                 if ( ctorinitp ) {
 | 
|---|
 | 295 |                         dump ( translationUnit );
 | 
|---|
 | 296 |                         return 0;
 | 
|---|
| [926af74] | 297 |                 } // if
 | 
|---|
| [71f4e4f] | 298 | 
 | 
|---|
| [141b786] | 299 |                 OPTPRINT( "expandUniqueExpr" ); // xxx - is this the right place for this? want to expand ASAP so that subsequent 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
 | 
|---|
 | 300 |                 Tuples::expandUniqueExpr( translationUnit );
 | 
|---|
| [626dbc10] | 301 | 
 | 
|---|
| [307a732] | 302 |                 OPTPRINT( "translateEHM" );
 | 
|---|
 | 303 |                 ControlStruct::translateEHM( translationUnit );
 | 
|---|
 | 304 | 
 | 
|---|
| [9f5ecf5] | 305 |                 OPTPRINT( "generateWaitfor" );
 | 
|---|
 | 306 |                 Concurrency::generateWaitFor( translationUnit );
 | 
|---|
 | 307 | 
 | 
|---|
| [626dbc10] | 308 |                 OPTPRINT( "convertSpecializations" ) // needs to happen before tuple types are expanded
 | 
|---|
 | 309 |                 GenPoly::convertSpecializations( translationUnit );
 | 
|---|
 | 310 | 
 | 
|---|
| [d9fa60a] | 311 |                 OPTPRINT( "expandTuples" ); // xxx - is this the right place for this?
 | 
|---|
 | 312 |                 Tuples::expandTuples( translationUnit );
 | 
|---|
| [626dbc10] | 313 |                 if ( tuplep ) {
 | 
|---|
 | 314 |                         dump( translationUnit );
 | 
|---|
 | 315 |                         return 0;
 | 
|---|
 | 316 |                 }
 | 
|---|
| [141b786] | 317 | 
 | 
|---|
| [a5f0529] | 318 |                 OPTPRINT( "virtual expandCasts" ) // Must come after translateEHM
 | 
|---|
 | 319 |                 Virtual::expandCasts( translationUnit );
 | 
|---|
 | 320 | 
 | 
|---|
| [ea5daeb] | 321 |                 OPTPRINT("instantiateGenerics")
 | 
|---|
 | 322 |                 GenPoly::instantiateGeneric( translationUnit );
 | 
|---|
| [53d3ab4b] | 323 |                 if ( genericsp ) {
 | 
|---|
 | 324 |                         dump( translationUnit );
 | 
|---|
 | 325 |                         return 0;
 | 
|---|
 | 326 |                 }
 | 
|---|
| [81419b5] | 327 |                 OPTPRINT( "convertLvalue" )
 | 
|---|
| [b87a5ed] | 328 |                 GenPoly::convertLvalue( translationUnit );
 | 
|---|
| [fea7ca7] | 329 | 
 | 
|---|
| [53d3ab4b] | 330 | 
 | 
|---|
| [fea7ca7] | 331 |                 if ( bboxp ) {
 | 
|---|
 | 332 |                         dump( translationUnit );
 | 
|---|
 | 333 |                         return 0;
 | 
|---|
| [926af74] | 334 |                 } // if
 | 
|---|
| [81419b5] | 335 |                 OPTPRINT( "box" )
 | 
|---|
| [b87a5ed] | 336 |                 GenPoly::box( translationUnit );
 | 
|---|
| [81419b5] | 337 | 
 | 
|---|
| [8905f56] | 338 |                 if ( bcodegenp ) {
 | 
|---|
 | 339 |                         dump( translationUnit );
 | 
|---|
 | 340 |                         return 0;
 | 
|---|
 | 341 |                 }
 | 
|---|
 | 342 | 
 | 
|---|
| [13de47bc] | 343 |                 if ( optind < argc ) {                                                  // any commands after the flags and input file ? => output file name
 | 
|---|
 | 344 |                         output = new ofstream( argv[ optind ] );
 | 
|---|
 | 345 |                 } // if
 | 
|---|
| [0270824] | 346 | 
 | 
|---|
| [7b15d7a] | 347 |                 CodeTools::fillLocations( translationUnit );
 | 
|---|
| [53d3ab4b] | 348 |                 OPTPRINT( "codegen" )
 | 
|---|
| [6de43b6] | 349 |                 CodeGen::generate( translationUnit, *output, ! noprotop, prettycodegenp, true, linemarks );
 | 
|---|
| [0270824] | 350 | 
 | 
|---|
| [13de47bc] | 351 |                 CodeGen::FixMain::fix( *output, treep ? "../prelude/bootloader.c" : CFA_LIBDIR "/bootloader.c" );
 | 
|---|
| [53d3ab4b] | 352 |                 OPTPRINT( "end" )
 | 
|---|
| [0270824] | 353 | 
 | 
|---|
| [e6955b1] | 354 |                 if ( output != &cout ) {
 | 
|---|
| [b87a5ed] | 355 |                         delete output;
 | 
|---|
 | 356 |                 } // if
 | 
|---|
 | 357 |         } catch ( SemanticError &e ) {
 | 
|---|
 | 358 |                 if ( errorp ) {
 | 
|---|
| [e6955b1] | 359 |                         cerr << "---AST at error:---" << endl;
 | 
|---|
 | 360 |                         dump( translationUnit, cerr );
 | 
|---|
 | 361 |                         cerr << endl << "---End of AST, begin error message:---\n" << endl;
 | 
|---|
| [926af74] | 362 |                 } // if
 | 
|---|
| [e6955b1] | 363 |                 e.print( cerr );
 | 
|---|
 | 364 |                 if ( output != &cout ) {
 | 
|---|
| [b87a5ed] | 365 |                         delete output;
 | 
|---|
 | 366 |                 } // if
 | 
|---|
 | 367 |                 return 1;
 | 
|---|
 | 368 |         } catch ( UnimplementedError &e ) {
 | 
|---|
| [e6955b1] | 369 |                 cout << "Sorry, " << e.get_what() << " is not currently implemented" << endl;
 | 
|---|
 | 370 |                 if ( output != &cout ) {
 | 
|---|
| [b87a5ed] | 371 |                         delete output;
 | 
|---|
 | 372 |                 } // if
 | 
|---|
 | 373 |                 return 1;
 | 
|---|
 | 374 |         } catch ( CompilerError &e ) {
 | 
|---|
| [e6955b1] | 375 |                 cerr << "Compiler Error: " << e.get_what() << endl;
 | 
|---|
| [c850687] | 376 |                 cerr << "(please report bugs to [REDACTED])" << endl;
 | 
|---|
| [e6955b1] | 377 |                 if ( output != &cout ) {
 | 
|---|
| [b87a5ed] | 378 |                         delete output;
 | 
|---|
 | 379 |                 } // if
 | 
|---|
 | 380 |                 return 1;
 | 
|---|
 | 381 |         } // try
 | 
|---|
 | 382 | 
 | 
|---|
| [39786813] | 383 |         deleteAll( translationUnit );
 | 
|---|
| [b87a5ed] | 384 |         return 0;
 | 
|---|
| [d9a0e76] | 385 | } // main
 | 
|---|
| [51b73452] | 386 | 
 | 
|---|
| [cbaee0d] | 387 | void parse_cmdline( int argc, char * argv[], const char *& filename ) {
 | 
|---|
| [6de43b6] | 388 |         enum { Ast, Bbox, Bresolver, CtorInitFix, DeclStats, Expr, ExprAlt, Grammar, LibCFA, Linemarks, Nolinemarks, Nopreamble, Parse, Prototypes, Resolver, Symbol, Tree, TupleExpansion, Validate, };
 | 
|---|
| [0da3e2c] | 389 | 
 | 
|---|
 | 390 |         static struct option long_opts[] = {
 | 
|---|
 | 391 |                 { "ast", no_argument, 0, Ast },
 | 
|---|
 | 392 |                 { "before-box", no_argument, 0, Bbox },
 | 
|---|
 | 393 |                 { "before-resolver", no_argument, 0, Bresolver },
 | 
|---|
 | 394 |                 { "ctorinitfix", no_argument, 0, CtorInitFix },
 | 
|---|
| [41a7137] | 395 |                 { "decl-stats", no_argument, 0, DeclStats },
 | 
|---|
| [0da3e2c] | 396 |                 { "expr", no_argument, 0, Expr },
 | 
|---|
 | 397 |                 { "expralt", no_argument, 0, ExprAlt },
 | 
|---|
 | 398 |                 { "grammar", no_argument, 0, Grammar },
 | 
|---|
 | 399 |                 { "libcfa", no_argument, 0, LibCFA },
 | 
|---|
| [6de43b6] | 400 |                 { "line-marks", no_argument, 0, Linemarks },
 | 
|---|
 | 401 |                 { "no-line-marks", no_argument, 0, Nolinemarks },
 | 
|---|
| [0da3e2c] | 402 |                 { "no-preamble", no_argument, 0, Nopreamble },
 | 
|---|
 | 403 |                 { "parse", no_argument, 0, Parse },
 | 
|---|
 | 404 |                 { "no-prototypes", no_argument, 0, Prototypes },
 | 
|---|
 | 405 |                 { "resolver", no_argument, 0, Resolver },
 | 
|---|
 | 406 |                 { "symbol", no_argument, 0, Symbol },
 | 
|---|
 | 407 |                 { "tree", no_argument, 0, Tree },
 | 
|---|
| [626dbc10] | 408 |                 { "tuple-expansion", no_argument, 0, TupleExpansion },
 | 
|---|
| [0da3e2c] | 409 |                 { "validate", no_argument, 0, Validate },
 | 
|---|
 | 410 |                 { 0, 0, 0, 0 }
 | 
|---|
 | 411 |         }; // long_opts
 | 
|---|
 | 412 |         int long_index;
 | 
|---|
 | 413 | 
 | 
|---|
 | 414 |         opterr = 0;                                                                                     // (global) prevent getopt from printing error messages
 | 
|---|
 | 415 | 
 | 
|---|
 | 416 |         int c;
 | 
|---|
| [53d3ab4b] | 417 |         while ( (c = getopt_long( argc, argv, "abBcCdefgGlLmnNpqrstTvyzZD:F:", long_opts, &long_index )) != -1 ) {
 | 
|---|
| [0da3e2c] | 418 |                 switch ( c ) {
 | 
|---|
 | 419 |                   case Ast:
 | 
|---|
 | 420 |                   case 'a':                                                                             // dump AST
 | 
|---|
 | 421 |                         astp = true;
 | 
|---|
 | 422 |                         break;
 | 
|---|
 | 423 |                   case Bresolver:
 | 
|---|
 | 424 |                   case 'b':                                                                             // print before resolver steps
 | 
|---|
 | 425 |                         bresolvep = true;
 | 
|---|
 | 426 |                         break;
 | 
|---|
| [626dbc10] | 427 |                   case 'B':                                                                             // print before box steps
 | 
|---|
| [0da3e2c] | 428 |                         bboxp = true;
 | 
|---|
 | 429 |                         break;
 | 
|---|
 | 430 |                   case CtorInitFix:
 | 
|---|
| [e39241b] | 431 |                   case 'c':                                                                             // print after constructors and destructors are replaced
 | 
|---|
| [0da3e2c] | 432 |                         ctorinitp = true;
 | 
|---|
 | 433 |                         break;
 | 
|---|
| [8905f56] | 434 |                   case 'C':                                                                             // print before code generation
 | 
|---|
 | 435 |                         bcodegenp = true;
 | 
|---|
 | 436 |                         break;
 | 
|---|
| [41a7137] | 437 |                   case DeclStats:
 | 
|---|
 | 438 |                   case 'd':
 | 
|---|
 | 439 |                     declstatsp = true;
 | 
|---|
 | 440 |                         break;
 | 
|---|
| [0da3e2c] | 441 |                   case Expr:
 | 
|---|
 | 442 |                   case 'e':                                                                             // dump AST after expression analysis
 | 
|---|
 | 443 |                         exprp = true;
 | 
|---|
 | 444 |                         break;
 | 
|---|
 | 445 |                   case ExprAlt:
 | 
|---|
 | 446 |                   case 'f':                                                                             // print alternatives for expressions
 | 
|---|
 | 447 |                         expraltp = true;
 | 
|---|
 | 448 |                         break;
 | 
|---|
 | 449 |                   case Grammar:
 | 
|---|
 | 450 |                   case 'g':                                                                             // bison debugging info (grammar rules)
 | 
|---|
| [926af74] | 451 |                         yydebug = true;
 | 
|---|
| [0da3e2c] | 452 |                         break;
 | 
|---|
| [53d3ab4b] | 453 |                   case 'G':                   // dump AST after instantiate generics
 | 
|---|
 | 454 |                         genericsp = true;
 | 
|---|
 | 455 |                         break;
 | 
|---|
| [0da3e2c] | 456 |                   case LibCFA:
 | 
|---|
 | 457 |                   case 'l':                                                                             // generate libcfa.c
 | 
|---|
 | 458 |                         libcfap = true;
 | 
|---|
 | 459 |                         break;
 | 
|---|
| [6de43b6] | 460 |                   case Linemarks:
 | 
|---|
 | 461 |                   case 'L':                                                                             // print lines marks
 | 
|---|
 | 462 |                         linemarks = true;
 | 
|---|
| [c850687] | 463 |                         break;
 | 
|---|
| [0da3e2c] | 464 |                   case Nopreamble:
 | 
|---|
 | 465 |                   case 'n':                                                                             // do not read preamble
 | 
|---|
 | 466 |                         nopreludep = true;
 | 
|---|
 | 467 |                         break;
 | 
|---|
| [6de43b6] | 468 |                   case Nolinemarks:
 | 
|---|
 | 469 |                   case 'N':                                                                             // suppress line marks
 | 
|---|
 | 470 |                         linemarks = false;
 | 
|---|
| [c59bde6] | 471 |                         break;
 | 
|---|
| [0da3e2c] | 472 |                   case Prototypes:
 | 
|---|
 | 473 |                   case 'p':                                                                             // generate prototypes for preamble functions
 | 
|---|
 | 474 |                         noprotop = true;
 | 
|---|
 | 475 |                         break;
 | 
|---|
| [3fe34ae] | 476 |                   case 'm':                                                                             // don't replace the main
 | 
|---|
 | 477 |                         nomainp = true;
 | 
|---|
 | 478 |                         break;
 | 
|---|
| [0da3e2c] | 479 |                   case Parse:
 | 
|---|
 | 480 |                   case 'q':                                                                             // dump parse tree
 | 
|---|
 | 481 |                         parsep = true;
 | 
|---|
 | 482 |                         break;
 | 
|---|
 | 483 |                   case Resolver:
 | 
|---|
 | 484 |                   case 'r':                                                                             // print resolver steps
 | 
|---|
 | 485 |                         resolvep = true;
 | 
|---|
 | 486 |                         break;
 | 
|---|
 | 487 |                   case Symbol:
 | 
|---|
 | 488 |                   case 's':                                                                             // print symbol table events
 | 
|---|
 | 489 |                         symtabp = true;
 | 
|---|
 | 490 |                         break;
 | 
|---|
 | 491 |                   case Tree:
 | 
|---|
 | 492 |                   case 't':                                                                             // build in tree
 | 
|---|
 | 493 |                         treep = true;
 | 
|---|
 | 494 |                         break;
 | 
|---|
| [626dbc10] | 495 |                   case TupleExpansion:
 | 
|---|
 | 496 |                   case 'T':                                                                             // print after tuple expansion
 | 
|---|
 | 497 |                         tuplep = true;
 | 
|---|
 | 498 |                         break;
 | 
|---|
| [0da3e2c] | 499 |                   case 'v':                                                                             // dump AST after decl validation pass
 | 
|---|
 | 500 |                         validp = true;
 | 
|---|
 | 501 |                         break;
 | 
|---|
| [e39241b] | 502 |                   case 'y':                                                                             // dump AST on error
 | 
|---|
| [0da3e2c] | 503 |                         errorp = true;
 | 
|---|
 | 504 |                         break;
 | 
|---|
| [e39241b] | 505 |                   case 'z':                                                                             // dump as codegen rather than AST
 | 
|---|
| [0da3e2c] | 506 |                         codegenp = true;
 | 
|---|
| [e39241b] | 507 |                         break;
 | 
|---|
 | 508 |                         case 'Z':                                                                       // prettyprint during codegen (i.e. print unmangled names, etc.)
 | 
|---|
| [35b1bf4] | 509 |                         prettycodegenp = true;
 | 
|---|
| [0da3e2c] | 510 |                         break;
 | 
|---|
 | 511 |                   case 'D':                                                                             // ignore -Dxxx
 | 
|---|
 | 512 |                         break;
 | 
|---|
 | 513 |                   case 'F':                                                                             // source file-name without suffix
 | 
|---|
 | 514 |                         filename = optarg;
 | 
|---|
 | 515 |                         break;
 | 
|---|
 | 516 |                   case '?':
 | 
|---|
| [ae47a23] | 517 |                         if ( optopt ) {                                                         // short option ?
 | 
|---|
 | 518 |                                 assertf( false, "Unknown option: -%c\n", (char)optopt );
 | 
|---|
 | 519 |                         } else {
 | 
|---|
 | 520 |                                 assertf( false, "Unknown option: %s\n", argv[optind - 1] );
 | 
|---|
 | 521 |                         } // if
 | 
|---|
| [af98d27] | 522 |                         #if __GNUC__ < 7
 | 
|---|
 | 523 |                         #else
 | 
|---|
 | 524 |                                 __attribute__((fallthrough));
 | 
|---|
 | 525 |                         #endif
 | 
|---|
| [0da3e2c] | 526 |                   default:
 | 
|---|
 | 527 |                         abort();
 | 
|---|
 | 528 |                 } // switch
 | 
|---|
 | 529 |         } // while
 | 
|---|
 | 530 | } // parse_cmdline
 | 
|---|
 | 531 | 
 | 
|---|
| [8b7ee09] | 532 | static void parse( FILE * input, LinkageSpec::Spec linkage, bool shouldExit ) {
 | 
|---|
| [0da3e2c] | 533 |         extern int yyparse( void );
 | 
|---|
| [cbaee0d] | 534 |         extern FILE * yyin;
 | 
|---|
| [0da3e2c] | 535 |         extern int yylineno;
 | 
|---|
 | 536 | 
 | 
|---|
| [8b7ee09] | 537 |         ::linkage = linkage;                                                            // set globals
 | 
|---|
| [0da3e2c] | 538 |         yyin = input;
 | 
|---|
 | 539 |         yylineno = 1;
 | 
|---|
 | 540 |         typedefTable.enterScope();
 | 
|---|
 | 541 |         int parseStatus = yyparse();
 | 
|---|
| [81419b5] | 542 | 
 | 
|---|
 | 543 |         fclose( input );
 | 
|---|
| [0da3e2c] | 544 |         if ( shouldExit || parseStatus != 0 ) {
 | 
|---|
 | 545 |                 exit( parseStatus );
 | 
|---|
| [81419b5] | 546 |         } // if
 | 
|---|
| [0da3e2c] | 547 | } // parse
 | 
|---|
| [81419b5] | 548 | 
 | 
|---|
| [1ab4ce2] | 549 | static bool notPrelude( Declaration * decl ) {
 | 
|---|
 | 550 |         return ! LinkageSpec::isBuiltin( decl->get_linkage() );
 | 
|---|
| [0da3e2c] | 551 | } // notPrelude
 | 
|---|
| [1ab4ce2] | 552 | 
 | 
|---|
| [e6955b1] | 553 | static void dump( list< Declaration * > & translationUnit, ostream & out ) {
 | 
|---|
 | 554 |         list< Declaration * > decls;
 | 
|---|
| [926af74] | 555 | 
 | 
|---|
| [1ab4ce2] | 556 |         if ( noprotop ) {
 | 
|---|
| [e6955b1] | 557 |                 filter( translationUnit.begin(), translationUnit.end(), back_inserter( decls ), notPrelude );
 | 
|---|
| [1ab4ce2] | 558 |         } else {
 | 
|---|
 | 559 |                 decls = translationUnit;
 | 
|---|
| [926af74] | 560 |         } // if
 | 
|---|
| [1ab4ce2] | 561 | 
 | 
|---|
| [e39241b] | 562 |         // depending on commandline options, either generate code or dump the AST
 | 
|---|
 | 563 |         if ( codegenp ) {
 | 
|---|
 | 564 |                 CodeGen::generate( decls, out, ! noprotop, prettycodegenp );
 | 
|---|
 | 565 |         } else {
 | 
|---|
 | 566 |                 printAll( decls, out );
 | 
|---|
 | 567 |         }
 | 
|---|
| [7f5566b] | 568 |         deleteAll( translationUnit );
 | 
|---|
| [0da3e2c] | 569 | } // dump
 | 
|---|
| [1ab4ce2] | 570 | 
 | 
|---|
| [51b73452] | 571 | // Local Variables: //
 | 
|---|
| [b87a5ed] | 572 | // tab-width: 4 //
 | 
|---|
 | 573 | // mode: c++ //
 | 
|---|
 | 574 | // compile-command: "make install" //
 | 
|---|
| [51b73452] | 575 | // End:  //
 | 
|---|