1 04/25/85  list_dpda
 2 
 3 Syntax:  list_dpda result_file_path {control_args}
 4 
 5 
 6 Function:  produces a listing of the DPDA extracted from the
 7    result file of a previous LALR generation.  This listing is
 8    formatted in the same manner as that produced by the -list
 9    control argument of the lalr command.
10 
11 
12 Arguments:
13 result_file_path
14    is the pathname of the result file from a previous LALR
15    generation from which the DPDA is to be extracted.  The
16    grammar suffix is assumed if not supplied.  This argument may
17    be an archive component pathname.
18 
19 
20 Control arguments:
21 -dpda_xref, -xref, -dx
22    includes cross reference lists of states, terminals, and
23    variables in the listing of the DPDA.  If the source segment
24    was in the separate semantics format, the semantic actions are
25    also cross referenced.
26 -line_length N, -ll N
27    causes the listing to be prepared with lines no longer that N
28    characters.  If this control argument is not specified, a line
29    length of 136 characters is assumed.
30 -no_dpda_xref, -no_xref, -ndx
31    does not include any DPDA cross reference lists in the listing
32    of the DPDA.  (Default)
33 -page_length N, -pl N
34    prints the listing so that no more than N lines are on a page.
35    If this control argument is not specified, a page length of 60
36    lines is assumed.
37 
38 
39 Notes:
40 If the result file used is named X.grammar, the listing produced will
41 be placed in a segment named X.o.list in the working directory.