source: src/main.cc@ 3145fa2

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 3145fa2 was 1cb2282, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

add new assert macro for printing message

  • Property mode set to 100644
File size: 10.7 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// main.cc --
8//
9// Author : 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 Aug 18 16:33:49 2016
13// Update Count : 347
14//
15
16#include <iostream>
17#include <fstream>
18#include <getopt.h>
19#include "Parser/lex.h"
20#include "Parser/parser.h"
21#include "Parser/TypedefTable.h"
22#include "GenPoly/Lvalue.h"
23#include "GenPoly/Specialize.h"
24#include "GenPoly/Box.h"
25#include "GenPoly/CopyParams.h"
26#include "GenPoly/InstantiateGeneric.h"
27#include "CodeGen/Generate.h"
28#include "CodeGen/FixNames.h"
29#include "ControlStruct/Mutate.h"
30#include "SymTab/Validate.h"
31#include "ResolvExpr/AlternativePrinter.h"
32#include "ResolvExpr/Resolver.h"
33#include "MakeLibCfa.h"
34#include "InitTweak/GenInit.h"
35#include "InitTweak/FixInit.h"
36#include "Common/UnimplementedError.h"
37
38#include "../config.h"
39
40using namespace std;
41
42#define OPTPRINT(x) if ( errorp ) std::cerr << x << std::endl;
43
44
45LinkageSpec::Type linkage = LinkageSpec::Cforall;
46TypedefTable typedefTable;
47DeclarationNode * parseTree = nullptr; // program parse tree
48
49extern int yydebug; // set for -g flag (Grammar)
50bool
51 astp = false,
52 bresolvep = false,
53 bboxp = false,
54 ctorinitp = false,
55 exprp = false,
56 expraltp = false,
57 libcfap = false,
58 nopreludep = false,
59 noprotop = false,
60 parsep = false,
61 resolvep = false, // used in AlternativeFinder
62 symtabp = false,
63 treep = false,
64 validp = false,
65 errorp = false,
66 codegenp = false;
67
68static void parse_cmdline( int argc, char *argv[], const char *& filename );
69static void parse( FILE * input, LinkageSpec::Type t, bool shouldExit = false );
70static void dump( std::list< Declaration * > & translationUnit, std::ostream & out = std::cout );
71
72int main( int argc, char * argv[] ) {
73 FILE * input; // use FILE rather than istream because yyin is FILE
74 std::ostream *output = & std::cout;
75 std::list< Declaration * > translationUnit;
76 const char *filename = nullptr;
77
78 parse_cmdline( argc, argv, filename ); // process command-line arguments
79
80 try {
81 // choose to read the program from a file or stdin
82 if ( optind < argc ) { // any commands after the flags ? => input file name
83 input = fopen( argv[ optind ], "r" );
84 assertf( input, "cannot open %s\n", argv[ optind ] );
85 // if running cfa-cpp directly, might forget to pass -F option (and really shouldn't have to)
86 if ( filename == nullptr ) filename = argv[ optind ];
87 // prelude filename comes in differently
88 if ( libcfap ) filename = "prelude.cf";
89 optind += 1;
90 } else { // no input file name
91 input = stdin;
92 // if running cfa-cpp directly, might forget to pass -F option. Since this takes from stdin, pass
93 // a fake name along
94 if ( filename == nullptr ) filename = "stdin";
95 } // if
96
97 if ( optind < argc ) { // any commands after the flags and input file ? => output file name
98 output = new ofstream( argv[ optind ] );
99 } // if
100
101 // read in the builtins, extras, and the prelude
102 if ( ! nopreludep ) { // include gcc builtins
103 // -l is for initial build ONLY and builtins.cf is not in the lib directory so access it here.
104 FILE * builtins = fopen( libcfap | treep ? "builtins.cf" : CFA_LIBDIR "/builtins.cf", "r" );
105 assertf( builtins, "cannot open builtins.cf\n" );
106 parse( builtins, LinkageSpec::Compiler );
107
108 // read the extra prelude in, if not generating the cfa library
109 FILE * extras = fopen( libcfap | treep ? "extras.cf" : CFA_LIBDIR "/extras.cf", "r" );
110 assertf( extras, "cannot open extras.cf\n" );
111 parse( extras, LinkageSpec::C );
112
113 if ( ! libcfap ) {
114 // read the prelude in, if not generating the cfa library
115 FILE * prelude = fopen( treep ? "prelude.cf" : CFA_LIBDIR "/prelude.cf", "r" );
116 assertf( prelude, "cannot open prelude.cf\n" );
117 parse( prelude, LinkageSpec::Intrinsic );
118 } // if
119 } // if
120
121 parse( input, libcfap ? LinkageSpec::Intrinsic : LinkageSpec::Cforall, yydebug );
122
123 if ( parsep ) {
124 parseTree->printList( std::cout );
125 delete parseTree;
126 return 0;
127 } // if
128
129 buildList( parseTree, translationUnit );
130 delete parseTree;
131 parseTree = nullptr;
132
133 if ( astp ) {
134 dump( translationUnit );
135 return 0;
136 } // if
137
138 // add the assignment statement after the initialization of a type parameter
139 OPTPRINT( "validate" )
140 SymTab::validate( translationUnit, symtabp );
141 if ( symtabp ) {
142 return 0;
143 } // if
144
145 if ( expraltp ) {
146 ResolvExpr::AlternativePrinter printer( std::cout );
147 acceptAll( translationUnit, printer );
148 return 0;
149 } // if
150
151 if ( validp ) {
152 dump( translationUnit );
153 return 0;
154 } // if
155
156 OPTPRINT( "mutate" )
157 ControlStruct::mutate( translationUnit );
158 OPTPRINT( "fixNames" )
159 CodeGen::fixNames( translationUnit );
160 OPTPRINT( "tweakInit" )
161 InitTweak::genInit( translationUnit );
162
163 if ( libcfap ) {
164 // generate the bodies of cfa library functions
165 LibCfa::makeLibCfa( translationUnit );
166 } // if
167
168 if ( bresolvep ) {
169 dump( translationUnit );
170 return 0;
171 } // if
172
173 OPTPRINT( "resolve" )
174 ResolvExpr::resolve( translationUnit );
175 if ( exprp ) {
176 dump( translationUnit );
177 return 0;
178 } // if
179
180 // fix ObjectDecl - replaces ConstructorInit nodes
181 OPTPRINT( "fixInit" )
182 InitTweak::fix( translationUnit, filename, libcfap || treep );
183 if ( ctorinitp ) {
184 dump ( translationUnit );
185 return 0;
186 } // if
187
188 OPTPRINT("instantiateGenerics")
189 GenPoly::instantiateGeneric( translationUnit );
190 OPTPRINT( "copyParams" );
191 GenPoly::copyParams( translationUnit );
192 OPTPRINT( "convertSpecializations" )
193 GenPoly::convertSpecializations( translationUnit );
194 OPTPRINT( "convertLvalue" )
195 GenPoly::convertLvalue( translationUnit );
196
197 if ( bboxp ) {
198 dump( translationUnit );
199 return 0;
200 } // if
201 OPTPRINT( "box" )
202 GenPoly::box( translationUnit );
203
204 // print tree right before code generation
205 if ( codegenp ) {
206 dump( translationUnit );
207 return 0;
208 } // if
209
210 CodeGen::generate( translationUnit, *output, ! noprotop );
211
212 if ( output != &std::cout ) {
213 delete output;
214 } // if
215 } catch ( SemanticError &e ) {
216 if ( errorp ) {
217 std::cerr << "---AST at error:---" << std::endl;
218 dump( translationUnit, std::cerr );
219 std::cerr << std::endl << "---End of AST, begin error message:---\n" << std::endl;
220 } // if
221 e.print( std::cerr );
222 if ( output != &std::cout ) {
223 delete output;
224 } // if
225 return 1;
226 } catch ( UnimplementedError &e ) {
227 std::cout << "Sorry, " << e.get_what() << " is not currently implemented" << std::endl;
228 if ( output != &std::cout ) {
229 delete output;
230 } // if
231 return 1;
232 } catch ( CompilerError &e ) {
233 std::cerr << "Compiler Error: " << e.get_what() << std::endl;
234 std::cerr << "(please report bugs to " << std::endl;
235 if ( output != &std::cout ) {
236 delete output;
237 } // if
238 return 1;
239 } // try
240
241 deleteAll( translationUnit );
242 return 0;
243} // main
244
245void parse_cmdline( int argc, char * argv[], const char *& filename ) {
246 enum { Ast, Bbox, Bresolver, CtorInitFix, Expr, ExprAlt, Grammar, LibCFA, Nopreamble, Parse, Prototypes, Resolver, Symbol, Tree, Validate, };
247
248 static struct option long_opts[] = {
249 { "ast", no_argument, 0, Ast },
250 { "before-box", no_argument, 0, Bbox },
251 { "before-resolver", no_argument, 0, Bresolver },
252 { "ctorinitfix", no_argument, 0, CtorInitFix },
253 { "expr", no_argument, 0, Expr },
254 { "expralt", no_argument, 0, ExprAlt },
255 { "grammar", no_argument, 0, Grammar },
256 { "libcfa", no_argument, 0, LibCFA },
257 { "no-preamble", no_argument, 0, Nopreamble },
258 { "parse", no_argument, 0, Parse },
259 { "no-prototypes", no_argument, 0, Prototypes },
260 { "resolver", no_argument, 0, Resolver },
261 { "symbol", no_argument, 0, Symbol },
262 { "tree", no_argument, 0, Tree },
263 { "validate", no_argument, 0, Validate },
264 { 0, 0, 0, 0 }
265 }; // long_opts
266 int long_index;
267
268 opterr = 0; // (global) prevent getopt from printing error messages
269
270 int c;
271 while ( (c = getopt_long( argc, argv, "abBcefglnpqrstvyzD:F:", long_opts, &long_index )) != -1 ) {
272 switch ( c ) {
273 case Ast:
274 case 'a': // dump AST
275 astp = true;
276 break;
277 case Bresolver:
278 case 'b': // print before resolver steps
279 bresolvep = true;
280 break;
281 case 'B': // print before resolver steps
282 bboxp = true;
283 break;
284 case CtorInitFix:
285 case 'c':
286 ctorinitp = true;
287 break;
288 case Expr:
289 case 'e': // dump AST after expression analysis
290 exprp = true;
291 break;
292 case ExprAlt:
293 case 'f': // print alternatives for expressions
294 expraltp = true;
295 break;
296 case Grammar:
297 case 'g': // bison debugging info (grammar rules)
298 yydebug = true;
299 break;
300 case LibCFA:
301 case 'l': // generate libcfa.c
302 libcfap = true;
303 break;
304 case Nopreamble:
305 case 'n': // do not read preamble
306 nopreludep = true;
307 break;
308 case Prototypes:
309 case 'p': // generate prototypes for preamble functions
310 noprotop = true;
311 break;
312 case Parse:
313 case 'q': // dump parse tree
314 parsep = true;
315 break;
316 case Resolver:
317 case 'r': // print resolver steps
318 resolvep = true;
319 break;
320 case Symbol:
321 case 's': // print symbol table events
322 symtabp = true;
323 break;
324 case Tree:
325 case 't': // build in tree
326 treep = true;
327 break;
328 case 'v': // dump AST after decl validation pass
329 validp = true;
330 break;
331 case 'y':
332 errorp = true;
333 break;
334 case 'z':
335 codegenp = true;
336 break;
337 case 'D': // ignore -Dxxx
338 break;
339 case 'F': // source file-name without suffix
340 filename = optarg;
341 break;
342 case '?':
343 assertf( false, "Unknown option: '%c'\n", (char)optopt );
344 default:
345 abort();
346 } // switch
347 } // while
348} // parse_cmdline
349
350static void parse( FILE * input, LinkageSpec::Type link, bool shouldExit ) {
351 extern int yyparse( void );
352 extern FILE * yyin;
353 extern int yylineno;
354
355 linkage = link; // set globals
356 yyin = input;
357 yylineno = 1;
358 typedefTable.enterScope();
359 int parseStatus = yyparse();
360
361 fclose( input );
362 if ( shouldExit || parseStatus != 0 ) {
363 exit( parseStatus );
364 } // if
365} // parse
366
367static bool notPrelude( Declaration * decl ) {
368 return ! LinkageSpec::isBuiltin( decl->get_linkage() );
369} // notPrelude
370
371static void dump( std::list< Declaration * > & translationUnit, std::ostream & out ) {
372 std::list< Declaration * > decls;
373
374 if ( noprotop ) {
375 filter( translationUnit.begin(), translationUnit.end(), std::back_inserter( decls ), notPrelude );
376 } else {
377 decls = translationUnit;
378 } // if
379
380 printAll( decls, out );
381 deleteAll( translationUnit );
382} // dump
383
384// Local Variables: //
385// tab-width: 4 //
386// mode: c++ //
387// compile-command: "make install" //
388// End: //
Note: See TracBrowser for help on using the repository browser.