Difference between revisions of "32v 1m yacc"

From Computer History Wiki
Jump to: navigation, search
(New page: YACC(1) UNIX Programmer's Manual YACC(1) == NAME == yacc - yet another compiler-compiler == SYNOPSIS == yacc [ -vd ] grammar == DESCRIPTION == ...)
 
 
Line 4: Line 4:
  
 
== NAME ==
 
== NAME ==
    yacc - yet another compiler-compiler
+
yacc - yet another compiler-compiler
  
 
== SYNOPSIS ==
 
== SYNOPSIS ==
    yacc [ -vd ] grammar
+
yacc [ -vd ] grammar
  
 
== DESCRIPTION ==
 
== DESCRIPTION ==
    _Y_a_c_c converts a context-free grammar into a set of tables
+
'''Yacc''' converts a context-free grammar into a set of tables for a simple automaton which executes an LR(1) parsing algorithm.  The grammar may be ambiguous; specified precedence rules are used to break ambiguities.
    for a simple automaton which executes an LR(1) parsing algo-
 
    rithm.  The grammar may be ambiguous; specified precedence
 
    rules are used to break ambiguities.
 
  
    The output file, _y._t_a_b._c, must be compiled by the C compiler
+
The output file, '''y.tab.c''', must be compiled by the C compiler to produce a program '''yyparse'''.  This program must be loaded with the lexical analyzer program, '''yylex''', as well as main and '''yyerror''', an error handling routine.  These routines must be supplied by the user; '''Lex'''(1) is useful for creating lexical analyzers usable by '''yacc'''.
    to produce a program _y_y_p_a_r_s_e.  This program must be loaded
 
    with the lexical analyzer program, _y_y_l_e_x, as well as _m_a_i_n
 
    and _y_y_e_r_r_o_r, an error handling routine.  These routines must
 
    be supplied by the user; _L_e_x(1) is useful for creating lexi-
 
    cal analyzers usable by _y_a_c_c.
 
  
    If the -v flag is given, the file _y._o_u_t_p_u_t is prepared,
+
If the -v flag is given, the file '''y.output''' is prepared,
    which contains a description of the parsing tables and a
+
which contains a description of the parsing tables and a
    report on conflicts generated by ambiguities in the grammar.
+
report on conflicts generated by ambiguities in the grammar.
  
    If the -d flag is used, the file _y._t_a_b._h is generated with
+
If the -d flag is used, the file '''y.tab.h''' is generated with the '''define''' statements that associate the '''yacc'''-assigned `token codes' with the user-declared `token names'.  This allows source files other than '''y.tab.c''' to access the token codes.
    the _d_e_f_i_n_e statements that associate the _y_a_c_c-assigned
 
    `token codes' with the user-declared `token names'.  This
 
    allows source files other than _y._t_a_b._c to access the token
 
    codes.
 
  
 
== FILES ==
 
== FILES ==
Line 41: Line 29:
  
 
== SEE ALSO ==
 
== SEE ALSO ==
    [[32v 1m lex|'''lex'''(1)]]
+
*[[32v 1m lex|'''lex'''(1)]]
    _L_R _P_a_r_s_i_n_g by A. V. Aho and S. C. Johnson, Computing Sur-
+
*'''LR Parsing''' by A. V. Aho and S. C. Johnson, Computing Surveys, June, 1974.
    veys, June, 1974.
+
*'''YACC - Yet Another Compiler Compiler''' by S. C. Johnson.
    _Y_A_C_C - _Y_e_t _A_n_o_t_h_e_r _C_o_m_p_i_l_e_r _C_o_m_p_i_l_e_r by S. C. Johnson.
 
  
 
== DIAGNOSTICS ==
 
== DIAGNOSTICS ==
    The number of reduce-reduce and shift-reduce conflicts is
+
The number of reduce-reduce and shift-reduce conflicts is
    reported on the standard output; a more detailed report is
+
reported on the standard output; a more detailed report is
    found in the _y._o_u_t_p_u_t file.  Similarly, if some rules are
+
found in the '''y.output''' file.  Similarly, if some rules are
    not reachable from the start symbol, this is also reported.
+
not reachable from the start symbol, this is also reported.
  
 
== BUGS ==
 
== BUGS ==
    Because file names are fixed, at most one _y_a_c_c process can
+
Because file names are fixed, at most one '''yacc''' process can be active in a given directory at a time.
    be active in a given directory at a time.
 
  
 
[[Category:32v man section 1]]
 
[[Category:32v man section 1]]

Latest revision as of 21:34, 26 October 2009

YACC(1) UNIX Programmer's Manual YACC(1)


NAME

yacc - yet another compiler-compiler

SYNOPSIS

yacc [ -vd ] grammar

DESCRIPTION

Yacc converts a context-free grammar into a set of tables for a simple automaton which executes an LR(1) parsing algorithm. The grammar may be ambiguous; specified precedence rules are used to break ambiguities.

The output file, y.tab.c, must be compiled by the C compiler to produce a program yyparse. This program must be loaded with the lexical analyzer program, yylex, as well as main and yyerror, an error handling routine. These routines must be supplied by the user; Lex(1) is useful for creating lexical analyzers usable by yacc.

If the -v flag is given, the file y.output is prepared, which contains a description of the parsing tables and a report on conflicts generated by ambiguities in the grammar.

If the -d flag is used, the file y.tab.h is generated with the define statements that associate the yacc-assigned `token codes' with the user-declared `token names'. This allows source files other than y.tab.c to access the token codes.

FILES

    y.output
    y.tab.c
    y.tab.h             defines for token names
    yacc.tmp, yacc.acts temporary files
    /usr/lib/yaccpar    parser prototype for C programs
    /lib/liby.a         library with default `main' and `yyerror'

SEE ALSO

  • lex(1)
  • LR Parsing by A. V. Aho and S. C. Johnson, Computing Surveys, June, 1974.
  • YACC - Yet Another Compiler Compiler by S. C. Johnson.

DIAGNOSTICS

The number of reduce-reduce and shift-reduce conflicts is reported on the standard output; a more detailed report is found in the y.output file. Similarly, if some rules are not reachable from the start symbol, this is also reported.

BUGS

Because file names are fixed, at most one yacc process can be active in a given directory at a time.