il1_anal.h 746 B

12345678910111213141516171819202122
  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. /* I N L I N E S U B S T I T U T I O N
  7. *
  8. * I L 1 _ A N A L . H
  9. */
  10. void apriori(proc_p proctab);
  11. /* For every procedure, see if we can determine
  12. * from the information provided by the previous
  13. * phases of the optimizer that it cannot or should not
  14. * be expanded in line. This will reduce the length
  15. * of the call list.
  16. */
  17. void anal_proc(proc_p p, FILE *cf, FILE *ccf);
  18. /* Analyse a procedure. See which formal parameters
  19. * it uses and which procedures it calls.
  20. * cf and ccf are the call-file and the call-count file.
  21. */