home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / g__src3 / reload.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-23  |  1.8 KB  |  52 lines

  1. /* Communication between reload.c and reload1.c.
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 1, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* See reload.c and reload1.c for comments on these variables.  */
  22.  
  23. extern rtx reload_in[FIRST_PSEUDO_REGISTER];
  24. extern rtx reload_out[FIRST_PSEUDO_REGISTER];
  25. extern rtx reload_in_reg[FIRST_PSEUDO_REGISTER];
  26. extern enum reg_class reload_reg_class[FIRST_PSEUDO_REGISTER];
  27. extern enum machine_mode reload_inmode[FIRST_PSEUDO_REGISTER];
  28. extern enum machine_mode reload_outmode[FIRST_PSEUDO_REGISTER];
  29. extern char reload_strict_low[FIRST_PSEUDO_REGISTER];
  30. extern char reload_optional[FIRST_PSEUDO_REGISTER];
  31. extern int reload_inc[FIRST_PSEUDO_REGISTER];
  32. extern int n_reloads;
  33.  
  34. extern rtx reload_reg_rtx[FIRST_PSEUDO_REGISTER];
  35.  
  36. extern rtx *reg_equiv_constant;
  37. extern rtx *reg_equiv_address;
  38. extern rtx *reg_equiv_mem;
  39.  
  40. /* All the "earlyclobber" operands of the current insn
  41.    are recorded here.  */
  42. extern int n_earlyclobbers;
  43. extern rtx reload_earlyclobbers[MAX_RECOG_OPERANDS];
  44.  
  45. /* First uid used by insns created by reload in this function.
  46.    Used in find_equiv_reg.  */
  47. extern int reload_first_uid;
  48.  
  49. void init_reload ();
  50. void find_reloads ();
  51. void subst_reloads ();
  52.