home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Bison.sit.hqx / Bison / Source / gram.h < prev    next >
Text File  |  1992-08-21  |  4KB  |  128 lines

  1. /***********************************************************
  2.  *
  3.  * Macintosh/MPW version of GNU Bison 1.18
  4.  * Please read the README_MPW file for more information
  5.  *
  6.  ***********************************************************/
  7.  
  8. /* Data definitions for internal representation of bison's input,
  9.    Copyright (C) 1984, 1986, 1989 Free Software Foundation, Inc.
  10.  
  11. This file is part of Bison, the GNU Compiler Compiler.
  12.  
  13. Bison is free software; you can redistribute it and/or modify
  14. it under the terms of the GNU General Public License as published by
  15. the Free Software Foundation; either version 2, or (at your option)
  16. any later version.
  17.  
  18. Bison is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. GNU General Public License for more details.
  22.  
  23. You should have received a copy of the GNU General Public License
  24. along with Bison; see the file COPYING.  If not, write to
  25. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  26.  
  27.  
  28. /* representation of the grammar rules:
  29.  
  30. ntokens is the number of tokens, and nvars is the number of variables
  31. (nonterminals).  nsyms is the total number, ntokens + nvars.
  32.  
  33. Each symbol (either token or variable) receives a symbol number.
  34. Numbers 0 to ntokens-1 are for tokens, and ntokens to nsyms-1 are for
  35. variables.  Symbol number zero is the end-of-input token.  This token
  36. is counted in ntokens.
  37.  
  38. The rules receive rule numbers 1 to nrules in the order they are written.
  39. Actions and guards are accessed via the rule number.
  40.  
  41. The rules themselves are described by three arrays: rrhs, rlhs and
  42. ritem.  rlhs[R] is the symbol number of the left hand side of rule R.
  43. The right hand side is stored as symbol numbers in a portion of
  44. ritem.  rrhs[R] contains the index in ritem of the beginning of the
  45. portion for rule R.
  46.  
  47. If rlhs[R] is -1, the rule has been thrown out by reduce.c
  48. and should be ignored.
  49.  
  50. The length of the portion is one greater
  51.  than the number of symbols in the rule's right hand side.
  52. The last element in the portion contains minus R, which
  53. identifies it as the end of a portion and says which rule it is for.
  54.  
  55. The portions of ritem come in order of increasing rule number and are
  56. followed by an element which is zero to mark the end.  nitems is the
  57. total length of ritem, not counting the final zero.  Each element of
  58. ritem is called an "item" and its index in ritem is an item number.
  59.  
  60. Item numbers are used in the finite state machine to represent
  61. places that parsing can get to.
  62.  
  63. Precedence levels are recorded in the vectors sprec and rprec.
  64. sprec records the precedence level of each symbol,
  65. rprec the precedence level of each rule.
  66. rprecsym is the symbol-number of the symbol in %prec for this rule (if any).
  67.  
  68. Precedence levels are assigned in increasing order starting with 1 so
  69. that numerically higher precedence values mean tighter binding as they
  70. ought to.  Zero as a symbol or rule's precedence means none is
  71. assigned.
  72.  
  73. Associativities are recorded similarly in rassoc and sassoc.  */
  74.  
  75.  
  76. #define    ISTOKEN(s)    ((s) < ntokens)
  77. #define    ISVAR(s)    ((s) >= ntokens)
  78.  
  79.  
  80. extern int nitems;
  81. extern int nrules;
  82. extern int nsyms;
  83. extern int ntokens;
  84. extern int nvars;
  85.  
  86. extern short *ritem;
  87. extern short *rlhs;
  88. extern short *rrhs;
  89. extern short *rprec;
  90. extern short *rprecsym;
  91. extern short *sprec;
  92. extern short *rassoc;
  93. extern short *sassoc;
  94. extern short *rline;        /* Source line number of each rule */
  95.  
  96. extern int start_symbol;
  97.  
  98.  
  99. /* associativity values in elements of rassoc, sassoc.  */
  100.  
  101. #define RIGHT_ASSOC 1
  102. #define LEFT_ASSOC 2
  103. #define NON_ASSOC 3
  104.  
  105. /* token translation table:
  106. indexed by a token number as returned by the user's yylex routine,
  107. it yields the internal token number used by the parser and throughout bison.
  108. If translations is zero, the translation table is not used because
  109. the two kinds of token numbers are the same.  */
  110.  
  111. extern short *token_translations;
  112. extern int translations;
  113. extern int max_user_token_number;
  114.  
  115. /* semantic_parser is nonzero if the input file says to use the hairy parser
  116. that provides for semantic error recovery.  If it is zero, the yacc-compatible
  117. simplified parser is used.  */
  118.  
  119. extern int semantic_parser;
  120.  
  121. /* pure_parser is nonzero if should generate a parser that is all pure and reentrant. */
  122.  
  123. extern int pure_parser;
  124.  
  125. /* error_token_number is the token number of the error token.  */
  126.  
  127. extern int error_token_number;
  128.