| 1 | //
 | 
|---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
 | 
|---|
| 3 | //
 | 
|---|
| 4 | // The contents of this file are covered under the licence agreement in the
 | 
|---|
| 5 | // file "LICENCE" distributed with Cforall.
 | 
|---|
| 6 | //
 | 
|---|
| 7 | // main.cc -- 
 | 
|---|
| 8 | //
 | 
|---|
| 9 | // Author           : Richard C. Bilson
 | 
|---|
| 10 | // Created On       : Fri May 15 23:12:02 2015
 | 
|---|
| 11 | // Last Modified By : Peter A. Buhr
 | 
|---|
| 12 | // Last Modified On : Thu Nov 19 22:31:40 2015
 | 
|---|
| 13 | // Update Count     : 168
 | 
|---|
| 14 | //
 | 
|---|
| 15 | 
 | 
|---|
| 16 | #include <iostream>
 | 
|---|
| 17 | #include <fstream>
 | 
|---|
| 18 | #include <cstdlib>
 | 
|---|
| 19 | #include <cstdio>
 | 
|---|
| 20 | #include <getopt.h>
 | 
|---|
| 21 | #include "Parser/Parser.h"
 | 
|---|
| 22 | #include "Parser/ParseNode.h"
 | 
|---|
| 23 | #include "Parser/LinkageSpec.h"
 | 
|---|
| 24 | #include "SynTree/Declaration.h"
 | 
|---|
| 25 | #include "SynTree/Visitor.h"
 | 
|---|
| 26 | #include "GenPoly/InstantiateGeneric.h"
 | 
|---|
| 27 | #include "GenPoly/Lvalue.h"
 | 
|---|
| 28 | #include "GenPoly/Specialize.h"
 | 
|---|
| 29 | #include "GenPoly/Box.h"
 | 
|---|
| 30 | #include "GenPoly/CopyParams.h"
 | 
|---|
| 31 | #include "CodeGen/Generate.h"
 | 
|---|
| 32 | #include "CodeGen/FixNames.h"
 | 
|---|
| 33 | #include "ControlStruct/Mutate.h"
 | 
|---|
| 34 | #include "Tuples/Mutate.h"
 | 
|---|
| 35 | #include "Tuples/FunctionChecker.h"
 | 
|---|
| 36 | #include "SymTab/Mangler.h"
 | 
|---|
| 37 | #include "SymTab/Indexer.h"
 | 
|---|
| 38 | #include "SymTab/Validate.h"
 | 
|---|
| 39 | #include "ResolvExpr/AlternativePrinter.h"
 | 
|---|
| 40 | #include "ResolvExpr/Resolver.h"
 | 
|---|
| 41 | #include "MakeLibCfa.h"
 | 
|---|
| 42 | #include "InitTweak/Mutate.h"
 | 
|---|
| 43 | #include "InitTweak/RemoveInit.h"
 | 
|---|
| 44 | //#include "Explain/GenProlog.h"
 | 
|---|
| 45 | //#include "Try/Visit.h"
 | 
|---|
| 46 | 
 | 
|---|
| 47 | #include "SemanticError.h"
 | 
|---|
| 48 | #include "UnimplementedError.h"
 | 
|---|
| 49 | 
 | 
|---|
| 50 | #include "../config.h"
 | 
|---|
| 51 | 
 | 
|---|
| 52 | using namespace std;
 | 
|---|
| 53 | 
 | 
|---|
| 54 | #define OPTPRINT(x) \
 | 
|---|
| 55 |         if ( errorp ) std::cerr << x << std::endl;
 | 
|---|
| 56 | 
 | 
|---|
| 57 | static void parse( FILE * input, LinkageSpec::Type t, bool shouldExit = false );
 | 
|---|
| 58 | static void dump( std::list< Declaration * > & translationUnit );
 | 
|---|
| 59 | 
 | 
|---|
| 60 | bool
 | 
|---|
| 61 |         astp = false,
 | 
|---|
| 62 |         bresolvep = false,
 | 
|---|
| 63 |         exprp = false,
 | 
|---|
| 64 |         expraltp = false,
 | 
|---|
| 65 |         grammarp = false,
 | 
|---|
| 66 |         libcfap = false,
 | 
|---|
| 67 |         nopreludep = false,
 | 
|---|
| 68 |         noprotop = false,
 | 
|---|
| 69 |         parsep = false,
 | 
|---|
| 70 |         resolvep = false,                                                                       // used in AlternativeFinder
 | 
|---|
| 71 |         symtabp = false,
 | 
|---|
| 72 |         validp = false,
 | 
|---|
| 73 |         errorp = false,
 | 
|---|
| 74 |         codegenp = false;
 | 
|---|
| 75 | 
 | 
|---|
| 76 | enum { Ast, Bresolver, Expr, ExprAlt, Grammar, LibCFA, Nopreamble, Parse, Prototypes, Resolver, Symbol, Validate, };
 | 
|---|
| 77 | 
 | 
|---|
| 78 | static struct option long_opts[] = {
 | 
|---|
| 79 |         { "ast", no_argument, 0, Ast },
 | 
|---|
| 80 |         { "before-resolver", no_argument, 0, Bresolver },
 | 
|---|
| 81 |         { "expr", no_argument, 0, Expr },
 | 
|---|
| 82 |         { "expralt", no_argument, 0, ExprAlt },
 | 
|---|
| 83 |         { "grammar", no_argument, 0, Grammar },
 | 
|---|
| 84 |         { "libcfa", no_argument, 0, LibCFA },
 | 
|---|
| 85 |         { "no-preamble", no_argument, 0, Nopreamble },
 | 
|---|
| 86 |         { "parse", no_argument, 0, Parse },
 | 
|---|
| 87 |         { "no-prototypes", no_argument, 0, Prototypes },
 | 
|---|
| 88 |         { "resolver", no_argument, 0, Resolver },
 | 
|---|
| 89 |         { "symbol", no_argument, 0, Symbol },
 | 
|---|
| 90 |         { "validate", no_argument, 0, Validate },
 | 
|---|
| 91 |         { 0, 0, 0, 0 }
 | 
|---|
| 92 | };
 | 
|---|
| 93 | 
 | 
|---|
| 94 | int main( int argc, char *argv[] ) {
 | 
|---|
| 95 |         FILE *input;
 | 
|---|
| 96 |         std::ostream *output = &std::cout;
 | 
|---|
| 97 |         int long_index;
 | 
|---|
| 98 |         std::list< Declaration* > translationUnit;
 | 
|---|
| 99 | 
 | 
|---|
| 100 |         opterr = 0;                                                                                     // prevent getopt from printing error messages
 | 
|---|
| 101 |         
 | 
|---|
| 102 |         int c;
 | 
|---|
| 103 |         while ( (c = getopt_long( argc, argv, "abefglnpqrsvyzD:", long_opts, &long_index )) != -1 ) {
 | 
|---|
| 104 |                 switch ( c ) {
 | 
|---|
| 105 |                   case Ast:
 | 
|---|
| 106 |                   case 'a':                                                                             // dump AST
 | 
|---|
| 107 |                         astp = true;
 | 
|---|
| 108 |                         break;
 | 
|---|
| 109 |                   case Bresolver:
 | 
|---|
| 110 |                   case 'b':                                                                             // print before resolver steps
 | 
|---|
| 111 |                         bresolvep = true;
 | 
|---|
| 112 |                         break;
 | 
|---|
| 113 |                   case Expr:
 | 
|---|
| 114 |                   case 'e':                                                                             // dump AST after expression analysis
 | 
|---|
| 115 |                         exprp = true;
 | 
|---|
| 116 |                         break;
 | 
|---|
| 117 |                   case ExprAlt:
 | 
|---|
| 118 |                   case 'f':                                                                             // print alternatives for expressions
 | 
|---|
| 119 |                         expraltp = true;
 | 
|---|
| 120 |                         break;
 | 
|---|
| 121 |                   case Grammar:
 | 
|---|
| 122 |                   case 'g':                                                                             // bison debugging info (grammar rules)
 | 
|---|
| 123 |                         grammarp = true;
 | 
|---|
| 124 |                         break;
 | 
|---|
| 125 |                   case LibCFA:
 | 
|---|
| 126 |                   case 'l':                                                                             // generate libcfa.c
 | 
|---|
| 127 |                         libcfap = true;
 | 
|---|
| 128 |                         break;
 | 
|---|
| 129 |                   case Nopreamble:
 | 
|---|
| 130 |                   case 'n':                                                                             // do not read preamble
 | 
|---|
| 131 |                         nopreludep = true;
 | 
|---|
| 132 |                         break;
 | 
|---|
| 133 |                   case Prototypes:
 | 
|---|
| 134 |                   case 'p':                                                                             // generate prototypes for preamble functions
 | 
|---|
| 135 |                         noprotop = true;
 | 
|---|
| 136 |                         break;
 | 
|---|
| 137 |                   case Parse:
 | 
|---|
| 138 |                   case 'q':                                                                             // dump parse tree
 | 
|---|
| 139 |                         parsep = true;
 | 
|---|
| 140 |                         break;
 | 
|---|
| 141 |                   case Resolver:
 | 
|---|
| 142 |                   case 'r':                                                                             // print resolver steps
 | 
|---|
| 143 |                         resolvep = true;
 | 
|---|
| 144 |                         break;
 | 
|---|
| 145 |                   case Symbol:
 | 
|---|
| 146 |                   case 's':                                                                             // print symbol table events
 | 
|---|
| 147 |                         symtabp = true;
 | 
|---|
| 148 |                         break;
 | 
|---|
| 149 |                   case 'v':                                                                             // dump AST after decl validation pass
 | 
|---|
| 150 |                         validp = true;
 | 
|---|
| 151 |                         break;
 | 
|---|
| 152 |                   case 'y':
 | 
|---|
| 153 |                         errorp = true;
 | 
|---|
| 154 |                         break;
 | 
|---|
| 155 |                   case 'z':
 | 
|---|
| 156 |                         codegenp = true;
 | 
|---|
| 157 |                         break;
 | 
|---|
| 158 |                   case 'D':                                                                             // ignore -Dxxx
 | 
|---|
| 159 |                         break;
 | 
|---|
| 160 |                   case '?':
 | 
|---|
| 161 |                         cout << "Unknown option: '" << (char)optopt << "'" << endl;
 | 
|---|
| 162 |                         exit(1);
 | 
|---|
| 163 |                   default:
 | 
|---|
| 164 |                         abort();
 | 
|---|
| 165 |                 } // switch
 | 
|---|
| 166 |         } // while
 | 
|---|
| 167 | 
 | 
|---|
| 168 |         try {
 | 
|---|
| 169 |                 // choose to read the program from a file or stdin
 | 
|---|
| 170 |                 if ( optind < argc ) {
 | 
|---|
| 171 |                         input = fopen( argv[ optind ], "r" );
 | 
|---|
| 172 |                         if ( ! input ) {
 | 
|---|
| 173 |                                 std::cout << "Error: can't open " << argv[optind] << std::endl;
 | 
|---|
| 174 |                                 exit( 1 );
 | 
|---|
| 175 |                         } // if
 | 
|---|
| 176 |                         optind += 1;
 | 
|---|
| 177 |                 } else {
 | 
|---|
| 178 |                         input = stdin;
 | 
|---|
| 179 |                 } // if
 | 
|---|
| 180 | 
 | 
|---|
| 181 |                 if ( optind < argc ) {
 | 
|---|
| 182 |                         output = new ofstream( argv[ optind ] );
 | 
|---|
| 183 |                 } // if
 | 
|---|
| 184 |         
 | 
|---|
| 185 |                 Parser::get_parser().set_debug( grammarp );
 | 
|---|
| 186 | 
 | 
|---|
| 187 |                 // read in the builtins and the prelude
 | 
|---|
| 188 |                 if ( ! nopreludep ) {                                                   // include gcc builtins
 | 
|---|
| 189 |                         FILE * builtins = fopen( CFA_LIBDIR "/builtins.cf", "r" );
 | 
|---|
| 190 |                         if ( builtins == NULL ) {
 | 
|---|
| 191 |                                 std::cerr << "Error: can't open builtins" << std::endl;
 | 
|---|
| 192 |                                 exit( 1 );
 | 
|---|
| 193 |                         } // if
 | 
|---|
| 194 | 
 | 
|---|
| 195 |                         parse( builtins, LinkageSpec::Compiler );
 | 
|---|
| 196 | 
 | 
|---|
| 197 |                         if ( ! libcfap ) {
 | 
|---|
| 198 |                                 // read the prelude in, if we're not generating the cfa library
 | 
|---|
| 199 |                                 FILE * prelude = fopen( CFA_LIBDIR "/prelude.cf", "r" );
 | 
|---|
| 200 |                                 if ( prelude == NULL ) {
 | 
|---|
| 201 |                                         std::cerr << "Error: can't open prelude" << std::endl;
 | 
|---|
| 202 |                                         exit( 1 );
 | 
|---|
| 203 |                                 } // if
 | 
|---|
| 204 |                     
 | 
|---|
| 205 |                     parse( prelude, LinkageSpec::Intrinsic );
 | 
|---|
| 206 |                         } // if
 | 
|---|
| 207 |                 } // if
 | 
|---|
| 208 | 
 | 
|---|
| 209 |                 if ( libcfap ) {
 | 
|---|
| 210 |                         parse( input, LinkageSpec::Intrinsic ); 
 | 
|---|
| 211 |                 } else {
 | 
|---|
| 212 |                         parse( input, LinkageSpec::Cforall, grammarp ); 
 | 
|---|
| 213 |                 }
 | 
|---|
| 214 |   
 | 
|---|
| 215 |                 if ( parsep ) {
 | 
|---|
| 216 |                         Parser::get_parser().get_parseTree()->printList( std::cout );
 | 
|---|
| 217 |                         Parser::get_parser().freeTree();
 | 
|---|
| 218 |                         return 0;
 | 
|---|
| 219 |                 } // if
 | 
|---|
| 220 | 
 | 
|---|
| 221 |                 buildList( Parser::get_parser().get_parseTree(), translationUnit );
 | 
|---|
| 222 | 
 | 
|---|
| 223 |                 Parser::get_parser().freeTree();
 | 
|---|
| 224 |                 if ( astp ) {
 | 
|---|
| 225 |                         dump( translationUnit );
 | 
|---|
| 226 |                         return 0;
 | 
|---|
| 227 |                 } // if
 | 
|---|
| 228 | 
 | 
|---|
| 229 |                 // add the assignment statement after the initialization of a type parameter
 | 
|---|
| 230 |                 OPTPRINT( "validate" )
 | 
|---|
| 231 |                 SymTab::validate( translationUnit, symtabp );
 | 
|---|
| 232 |                 if ( symtabp ) {
 | 
|---|
| 233 |                         return 0;
 | 
|---|
| 234 |                 } // if
 | 
|---|
| 235 | 
 | 
|---|
| 236 |                 if ( expraltp ) {
 | 
|---|
| 237 |                         ResolvExpr::AlternativePrinter printer( std::cout );
 | 
|---|
| 238 |                         acceptAll( translationUnit, printer );
 | 
|---|
| 239 |                         return 0;
 | 
|---|
| 240 |                 } // if
 | 
|---|
| 241 | 
 | 
|---|
| 242 |                 if ( validp ) {
 | 
|---|
| 243 |                         dump( translationUnit );
 | 
|---|
| 244 |                         return 0;
 | 
|---|
| 245 |                 } // if
 | 
|---|
| 246 | 
 | 
|---|
| 247 |                 OPTPRINT( "mutate" )
 | 
|---|
| 248 |                 ControlStruct::mutate( translationUnit );
 | 
|---|
| 249 |                 OPTPRINT( "fixNames" ) 
 | 
|---|
| 250 |                 CodeGen::fixNames( translationUnit );
 | 
|---|
| 251 |                 OPTPRINT( "tweak" )
 | 
|---|
| 252 |                 InitTweak::tweak( translationUnit );
 | 
|---|
| 253 | 
 | 
|---|
| 254 |                 if ( libcfap ) {
 | 
|---|
| 255 |                         // generate the bodies of cfa library functions
 | 
|---|
| 256 |                         LibCfa::makeLibCfa( translationUnit );
 | 
|---|
| 257 |                 } // if
 | 
|---|
| 258 | 
 | 
|---|
| 259 |                 if ( bresolvep ) {
 | 
|---|
| 260 |                         dump( translationUnit );
 | 
|---|
| 261 |                         return 0;
 | 
|---|
| 262 |                 } // if
 | 
|---|
| 263 | 
 | 
|---|
| 264 |                 OPTPRINT( "resolve" )
 | 
|---|
| 265 |                 ResolvExpr::resolve( translationUnit );
 | 
|---|
| 266 |                 if ( exprp ) {
 | 
|---|
| 267 |                         dump( translationUnit );
 | 
|---|
| 268 |                 }
 | 
|---|
| 269 | 
 | 
|---|
| 270 |                 OPTPRINT( "instantiateGeneric" )
 | 
|---|
| 271 |                 GenPoly::instantiateGeneric( translationUnit );
 | 
|---|
| 272 |                 OPTPRINT( "copyParams" );
 | 
|---|
| 273 |                 GenPoly::copyParams( translationUnit );
 | 
|---|
| 274 |                 OPTPRINT( "convertSpecializations" )
 | 
|---|
| 275 |                 GenPoly::convertSpecializations( translationUnit );
 | 
|---|
| 276 |                 OPTPRINT( "convertLvalue" )
 | 
|---|
| 277 |                 GenPoly::convertLvalue( translationUnit );
 | 
|---|
| 278 |                 OPTPRINT( "box" )
 | 
|---|
| 279 |                 GenPoly::box( translationUnit );
 | 
|---|
| 280 | 
 | 
|---|
| 281 |                 // print tree right before code generation
 | 
|---|
| 282 |                 if ( codegenp ) {
 | 
|---|
| 283 |                         dump( translationUnit );
 | 
|---|
| 284 |                         return 0;
 | 
|---|
| 285 |                 } // if
 | 
|---|
| 286 | 
 | 
|---|
| 287 |                 CodeGen::generate( translationUnit, *output, ! noprotop );
 | 
|---|
| 288 | 
 | 
|---|
| 289 |                 if ( output != &std::cout ) {
 | 
|---|
| 290 |                         delete output;
 | 
|---|
| 291 |                 } // if
 | 
|---|
| 292 |         } catch ( SemanticError &e ) {
 | 
|---|
| 293 |                 if ( errorp ) {
 | 
|---|
| 294 |                         dump( translationUnit );
 | 
|---|
| 295 |                 }
 | 
|---|
| 296 |                 e.print( std::cerr );
 | 
|---|
| 297 |                 if ( output != &std::cout ) {
 | 
|---|
| 298 |                         delete output;
 | 
|---|
| 299 |                 } // if
 | 
|---|
| 300 |                 return 1;
 | 
|---|
| 301 |         } catch ( UnimplementedError &e ) {
 | 
|---|
| 302 |                 std::cout << "Sorry, " << e.get_what() << " is not currently implemented" << std::endl;
 | 
|---|
| 303 |                 if ( output != &std::cout ) {
 | 
|---|
| 304 |                         delete output;
 | 
|---|
| 305 |                 } // if
 | 
|---|
| 306 |                 return 1;
 | 
|---|
| 307 |         } catch ( CompilerError &e ) {
 | 
|---|
| 308 |                 std::cerr << "Compiler Error: " << e.get_what() << std::endl;
 | 
|---|
| 309 |                 std::cerr << "(please report bugs to " << std::endl;
 | 
|---|
| 310 |                 if ( output != &std::cout ) {
 | 
|---|
| 311 |                         delete output;
 | 
|---|
| 312 |                 } // if
 | 
|---|
| 313 |                 return 1;
 | 
|---|
| 314 |         } // try
 | 
|---|
| 315 | 
 | 
|---|
| 316 |         return 0;
 | 
|---|
| 317 | } // main
 | 
|---|
| 318 | 
 | 
|---|
| 319 | static void parse( FILE * input, LinkageSpec::Type linkage, bool shouldExit ) {
 | 
|---|
| 320 |         Parser::get_parser().set_linkage( linkage );
 | 
|---|
| 321 |         Parser::get_parser().parse( input );
 | 
|---|
| 322 | 
 | 
|---|
| 323 |         fclose( input );
 | 
|---|
| 324 |         if ( shouldExit || Parser::get_parser().get_parseStatus() != 0 ) {
 | 
|---|
| 325 |                 exit( Parser::get_parser().get_parseStatus() );
 | 
|---|
| 326 |         } // if
 | 
|---|
| 327 | }
 | 
|---|
| 328 | 
 | 
|---|
| 329 | static bool notPrelude( Declaration * decl ) {
 | 
|---|
| 330 |         return ! LinkageSpec::isBuiltin( decl->get_linkage() );
 | 
|---|
| 331 | }
 | 
|---|
| 332 | 
 | 
|---|
| 333 | static void dump( std::list< Declaration * > & translationUnit ) {
 | 
|---|
| 334 |         std::list< Declaration * > decls;
 | 
|---|
| 335 |         if ( noprotop ) {
 | 
|---|
| 336 |                 filter( translationUnit.begin(), translationUnit.end(), 
 | 
|---|
| 337 |                                 std::back_inserter( decls ), notPrelude );
 | 
|---|
| 338 |         } else {
 | 
|---|
| 339 |                 decls = translationUnit;
 | 
|---|
| 340 |         }
 | 
|---|
| 341 | 
 | 
|---|
| 342 |         printAll( decls, std::cout );
 | 
|---|
| 343 |         deleteAll( translationUnit );
 | 
|---|
| 344 | }
 | 
|---|
| 345 | 
 | 
|---|
| 346 | 
 | 
|---|
| 347 | // Local Variables: //
 | 
|---|
| 348 | // tab-width: 4 //
 | 
|---|
| 349 | // mode: c++ //
 | 
|---|
| 350 | // compile-command: "make install" //
 | 
|---|
| 351 | // End:  //
 | 
|---|