ra_allocl.h 748 B

123456789101112131415161718192021222324
  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. /* R E G I S T E R A L L O C A T I O N
  7. *
  8. * R A _ A L L O C L I S T . H
  9. */
  10. alloc_p build_alloc_list(proc_p p, short nrloops, item_p itemlist);
  11. /* item_p itemlist)
  12. * Build a list of possible allocations
  13. * for procedure p. An allocation
  14. * essentially is a pair (item,timespan)
  15. */
  16. void build_rivals_graph(alloc_p alloclist);
  17. /* See which allocations in the list are
  18. * rivals of each other, i.e. there is
  19. * some point of time, falling in both
  20. * timespans, at which the items of
  21. * both allocations are live.
  22. */