1 /* Top level entry point of Bison. 
   3    Copyright (C) 1984, 1986, 1989, 1992, 1995, 2000, 2001, 2002, 2004, 2005 
   4    Free Software Foundation, Inc. 
   6    This file is part of Bison, the GNU Compiler Compiler. 
   8    Bison is free software; you can redistribute it and/or modify 
   9    it under the terms of the GNU General Public License as published by 
  10    the Free Software Foundation; either version 2, or (at your option) 
  13    Bison is distributed in the hope that it will be useful, 
  14    but WITHOUT ANY WARRANTY; without even the implied warranty of 
  15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
  16    GNU General Public License for more details. 
  18    You should have received a copy of the GNU General Public License 
  19    along with Bison; see the file COPYING.  If not, write to 
  20    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 
  21    Boston, MA 02110-1301, USA.  */ 
  26 #include <bitset_stats.h> 
  32 #include "conflicts.h" 
  38 #include "muscle_tab.h" 
  42 #include "print_graph.h" 
  49 /* The name this program was run with, for messages.  */ 
  55 main (int argc
, char *argv
[]) 
  57   program_name 
= argv
[0]; 
  58   setlocale (LC_ALL
, ""); 
  59   (void) bindtextdomain (PACKAGE
, LOCALEDIR
); 
  60   (void) bindtextdomain ("bison-runtime", LOCALEDIR
); 
  61   (void) textdomain (PACKAGE
); 
  67   timevar_report 
= trace_flag 
& trace_time
; 
  69   timevar_start (TV_TOTAL
); 
  71   if (trace_flag 
& trace_bitsets
) 
  72     bitset_stats_enable (); 
  76   /* Read the input.  Copy some parts of it to FGUARD, FACTION, FTABLE 
  77      and FATTRS.  In file reader.c.  The other parts are recorded in 
  78      the grammar; see gram.h.  */ 
  80   timevar_push (TV_READER
); 
  82   timevar_pop (TV_READER
); 
  87   /* Find useless nonterminals and productions and reduce the grammar. */ 
  88   timevar_push (TV_REDUCE
); 
  90   timevar_pop (TV_REDUCE
); 
  92   /* Record other info about the grammar.  In files derives and 
  94   timevar_push (TV_SETS
); 
  97   timevar_pop (TV_SETS
); 
  99   /* Convert to nondeterministic finite state machine.  In file LR0. 
 100      See state.h for more info.  */ 
 101   timevar_push (TV_LR0
); 
 103   timevar_pop (TV_LR0
); 
 105   /* make it deterministic.  In file lalr.  */ 
 106   timevar_push (TV_LALR
); 
 108   timevar_pop (TV_LALR
); 
 110   /* Find and record any conflicts: places where one token of 
 111      look-ahead is not enough to disambiguate the parsing.  In file 
 112      conflicts.  Also resolve s/r conflicts based on precedence 
 114   timevar_push (TV_CONFLICTS
); 
 117   timevar_pop (TV_CONFLICTS
); 
 119   /* Compute the parser tables.  */ 
 120   timevar_push (TV_ACTIONS
); 
 122   timevar_pop (TV_ACTIONS
); 
 124   grammar_rules_never_reduced_report
 
 125     (_("rule never reduced because of conflicts")); 
 127   /* Output file names. */ 
 128   compute_output_file_names (); 
 130   /* Output the detailed report on the grammar.  */ 
 133       timevar_push (TV_REPORT
); 
 135       timevar_pop (TV_REPORT
); 
 138   /* Output the VCG graph.  */ 
 141       timevar_push (TV_GRAPH
); 
 143       timevar_pop (TV_GRAPH
); 
 146   /* Stop if there were errors, to avoid trashing previous output 
 148   if (complaint_issued
) 
 151   /* Look-ahead tokens are no longer needed. */ 
 152   timevar_push (TV_FREE
); 
 154   timevar_pop (TV_FREE
); 
 156   /* Output the tables and the parser to ftable.  In file output.  */ 
 157   timevar_push (TV_PARSER
); 
 159   timevar_pop (TV_PARSER
); 
 161   timevar_push (TV_FREE
); 
 170   /* The scanner memory cannot be released right after parsing, as it 
 171      contains things such as user actions, prologue, epilogue etc.  */ 
 175   timevar_pop (TV_FREE
); 
 177   if (trace_flag 
& trace_bitsets
) 
 178     bitset_stats_dump (stderr
); 
 182   /* Stop timing and print the times.  */ 
 183   timevar_stop (TV_TOTAL
); 
 184   timevar_print (stderr
); 
 186   return complaint_issued 
? EXIT_FAILURE 
: EXIT_SUCCESS
;