global.c 569 B

1234567891011121314151617181920212223242526
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. /* S H A R E D F I L E
  7. *
  8. * G L O B A L . C
  9. */
  10. #include "types.h"
  11. int ps = 0;
  12. int ws = 0;
  13. proc_p curproc; /* current procedure */
  14. char *filename; /* name of current input file */
  15. lset mesregs; /* set of MES ms_reg pseudos */
  16. short time_space_ratio = 50;
  17. /* 0 if optimizing for space only,
  18. * 100 if optimizing for time only,
  19. * else something 'in between'.
  20. */