home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / jikepg12.zip / jikespg / src / lpgdef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-04  |  1.0 KB  |  36 lines

  1. /* $Id: lpgdef.h,v 1.2 1999/11/04 14:02:22 shields Exp $ */
  2. /*
  3.  This software is subject to the terms of the IBM Jikes Compiler
  4.  License Agreement available at the following URL:
  5.  http://www.ibm.com/research/jikes.
  6.  Copyright (C) 1983, 1999, International Business Machines Corporation
  7.  and others.  All Rights Reserved.
  8.  You must accept the terms of that agreement to use this software.
  9. */
  10. #ifndef lpgdef_INCLUDED
  11. #define lpgdef_INCLUDED
  12.  
  13. enum {
  14.       NT_OFFSET         = 19,
  15.       BUFF_UBOUND       = 30,
  16.       BUFF_SIZE         = 31,
  17.       STACK_UBOUND      = 20,
  18.       STACK_SIZE        = 21,
  19.       SCOPE_UBOUND      = -1,
  20.       SCOPE_SIZE        = 0,
  21.       LA_STATE_OFFSET   = 392,
  22.       MAX_LA            = 1,
  23.       NUM_RULES         = 141,
  24.       NUM_TERMINALS     = 19,
  25.       NUM_NON_TERMINALS = 38,
  26.       NUM_SYMBOLS       = 57,
  27.       START_STATE       = 144,
  28.       EOFT_SYMBOL       = 19,
  29.       EOLT_SYMBOL       = 20,
  30.       ACCEPT_ACTION     = 250,
  31.       ERROR_ACTION      = 251
  32.      };
  33.  
  34.  
  35. #endif /* lpgdef_INCLUDED */
  36.