reload.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* Communication between reload.c and reload1.c.
  2. Copyright (C) 1987 Free Software Foundation, Inc.
  3. This file is part of GNU CC.
  4. GNU CC is distributed in the hope that it will be useful,
  5. but WITHOUT ANY WARRANTY. No author or distributor
  6. accepts responsibility to anyone for the consequences of using it
  7. or for whether it serves any particular purpose or works at all,
  8. unless he says so in writing. Refer to the GNU CC General Public
  9. License for full details.
  10. Everyone is granted permission to copy, modify and redistribute
  11. GNU CC, but only under the conditions described in the
  12. GNU CC General Public License. A copy of this license is
  13. supposed to have been given to you along with GNU CC so you
  14. can know your rights and responsibilities. It should be in a
  15. file named COPYING. Among other things, the copyright notice
  16. and this notice must be preserved on all copies. */
  17. extern rtx reload_in[FIRST_PSEUDO_REGISTER];
  18. extern rtx reload_out[FIRST_PSEUDO_REGISTER];
  19. extern enum reg_class reload_reg_class[FIRST_PSEUDO_REGISTER];
  20. extern enum machine_mode reload_mode[FIRST_PSEUDO_REGISTER];
  21. extern char reload_optional[FIRST_PSEUDO_REGISTER];
  22. extern int reload_inc[FIRST_PSEUDO_REGISTER];
  23. extern int n_reloads;
  24. extern rtx reload_reg_rtx[FIRST_PSEUDO_REGISTER];
  25. extern rtx *reg_equiv_constant;
  26. void init_reload ();
  27. void find_reloads ();
  28. void subst_reloads ();