Home | History | Annotate | Download | only in lib
      1 /* This file contains the definitions for timing variables used to -*- C -*-
      2    measure run-time performance of the compiler.
      3    Copyright (C) 2002 Free Software Foundation, Inc.
      4    Contributed by Akim Demaille <akim (at) freefriends.org>.
      5 
      6    This file is part of Bison, the GNU Compiler Compiler.
      7 
      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)
     11    any later version.
     12 
     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.
     17 
     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, 51 Franklin Street, Fifth Floor,
     21    Boston, MA 02110-1301, USA.  */
     22 
     23 /* This file contains timing variable definitions, used by timevar.h
     24    and timevar.c.
     25 
     26    Syntax:
     27 
     28      DEFTIMEVAR (id, name)
     29 
     30    where ID is the enumeral value used to identify the timing
     31    variable, and NAME is a character string describing its purpose.  */
     32 
     33 /* The total execution time.  */
     34 DEFTIMEVAR (TV_TOTAL                 , "total time")
     35 
     36 /* Time spent in the reader.  */
     37 DEFTIMEVAR (TV_READER                , "reader")
     38 DEFTIMEVAR (TV_SCANNING              , "scanner")
     39 DEFTIMEVAR (TV_PARSING               , "parser")
     40 
     41 /* Time spent handling the grammar.  */
     42 DEFTIMEVAR (TV_REDUCE                , "reducing the grammar")
     43 DEFTIMEVAR (TV_SETS                  , "computing the sets")
     44 DEFTIMEVAR (TV_LR0                   , "LR(0)")
     45 DEFTIMEVAR (TV_LALR                  , "LALR(1)")
     46 DEFTIMEVAR (TV_CONFLICTS             , "conflicts")
     47 
     48 /* Time spent outputing results.  */
     49 DEFTIMEVAR (TV_REPORT                , "outputing report")
     50 DEFTIMEVAR (TV_GRAPH                 , "outputing graph")
     51 DEFTIMEVAR (TV_ACTIONS               , "parser action tables")
     52 DEFTIMEVAR (TV_PARSER                , "outputing parser")
     53 DEFTIMEVAR (TV_M4                    , "running m4")
     54 
     55 /* Time spent by freeing the memory :).  */
     56 DEFTIMEVAR (TV_FREE                  , "freeing")
     57