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

  1. /* $Id: space.h,v 1.2 1999/11/04 14:02:23 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 SPACE_INCLUDED
  11. #define SPACE_INCLUDED
  12.  
  13. struct new_state_type
  14. {
  15.     struct reduce_header_type reduce;
  16.     short                     shift_number,
  17.                               link,
  18.                               thread,
  19.                               image;
  20. };
  21.  
  22. extern struct new_state_type *new_state_element;
  23.  
  24. extern short *shift_image,
  25.              *real_shift_number;
  26.  
  27. extern int *term_state_index,
  28.            *shift_check_index;
  29.  
  30. extern int shift_domain_count,
  31.            num_terminal_states,
  32.            check_size,
  33.            term_check_size,
  34.            term_action_size,
  35.            shift_check_size;
  36.  
  37. #endif /* SPACE_INCLUDED */
  38.