regvar.h 456 B

1234567891011121314151617181920212223
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. struct regvar {
  7. struct regvar *rv_next;
  8. long rv_off;
  9. int rv_size;
  10. int rv_type;
  11. int rv_score;
  12. int rv_reg;
  13. };
  14. struct regassigned {
  15. struct regvar *ra_rv;
  16. int ra_score;
  17. };
  18. extern struct regvar *rvlist;
  19. extern int nregvar[];
  20. extern struct regassigned *regassigned[];