reload.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. /* Communication between reload.c, reload1.c and the rest of compiler.
  2. Copyright (C) 1987-2015 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GCC; see the file COPYING3. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef GCC_RELOAD_H
  16. #define GCC_RELOAD_H
  17. /* If secondary reloads are the same for inputs and outputs, define those
  18. macros here. */
  19. #ifdef SECONDARY_RELOAD_CLASS
  20. #define SECONDARY_INPUT_RELOAD_CLASS(CLASS, MODE, X) \
  21. SECONDARY_RELOAD_CLASS (CLASS, MODE, X)
  22. #define SECONDARY_OUTPUT_RELOAD_CLASS(CLASS, MODE, X) \
  23. SECONDARY_RELOAD_CLASS (CLASS, MODE, X)
  24. #endif
  25. extern int register_move_cost (machine_mode, reg_class_t, reg_class_t);
  26. extern int memory_move_cost (machine_mode, reg_class_t, bool);
  27. extern int memory_move_secondary_cost (machine_mode, reg_class_t, bool);
  28. /* Maximum number of reloads we can need. */
  29. #define MAX_RELOADS (2 * MAX_RECOG_OPERANDS * (MAX_REGS_PER_ADDRESS + 1))
  30. /* Encode the usage of a reload. The following codes are supported:
  31. RELOAD_FOR_INPUT reload of an input operand
  32. RELOAD_FOR_OUTPUT likewise, for output
  33. RELOAD_FOR_INSN a reload that must not conflict with anything
  34. used in the insn, but may conflict with
  35. something used before or after the insn
  36. RELOAD_FOR_INPUT_ADDRESS reload for parts of the address of an object
  37. that is an input reload
  38. RELOAD_FOR_INPADDR_ADDRESS reload needed for RELOAD_FOR_INPUT_ADDRESS
  39. RELOAD_FOR_OUTPUT_ADDRESS like RELOAD_FOR INPUT_ADDRESS, for output
  40. RELOAD_FOR_OUTADDR_ADDRESS reload needed for RELOAD_FOR_OUTPUT_ADDRESS
  41. RELOAD_FOR_OPERAND_ADDRESS reload for the address of a non-reloaded
  42. operand; these don't conflict with
  43. any other addresses.
  44. RELOAD_FOR_OPADDR_ADDR reload needed for RELOAD_FOR_OPERAND_ADDRESS
  45. reloads; usually secondary reloads
  46. RELOAD_OTHER none of the above, usually multiple uses
  47. RELOAD_FOR_OTHER_ADDRESS reload for part of the address of an input
  48. that is marked RELOAD_OTHER.
  49. This used to be "enum reload_when_needed" but some debuggers have trouble
  50. with an enum tag and variable of the same name. */
  51. enum reload_type
  52. {
  53. RELOAD_FOR_INPUT, RELOAD_FOR_OUTPUT, RELOAD_FOR_INSN,
  54. RELOAD_FOR_INPUT_ADDRESS, RELOAD_FOR_INPADDR_ADDRESS,
  55. RELOAD_FOR_OUTPUT_ADDRESS, RELOAD_FOR_OUTADDR_ADDRESS,
  56. RELOAD_FOR_OPERAND_ADDRESS, RELOAD_FOR_OPADDR_ADDR,
  57. RELOAD_OTHER, RELOAD_FOR_OTHER_ADDRESS
  58. };
  59. #ifdef GCC_INSN_CODES_H
  60. /* Each reload is recorded with a structure like this. */
  61. struct reload
  62. {
  63. /* The value to reload from */
  64. rtx in;
  65. /* Where to store reload-reg afterward if nec (often the same as
  66. reload_in) */
  67. rtx out;
  68. /* The class of registers to reload into. */
  69. enum reg_class rclass;
  70. /* The mode this operand should have when reloaded, on input. */
  71. machine_mode inmode;
  72. /* The mode this operand should have when reloaded, on output. */
  73. machine_mode outmode;
  74. /* The mode of the reload register. */
  75. machine_mode mode;
  76. /* the largest number of registers this reload will require. */
  77. unsigned int nregs;
  78. /* Positive amount to increment or decrement by if
  79. reload_in is a PRE_DEC, PRE_INC, POST_DEC, POST_INC.
  80. Ignored otherwise (don't assume it is zero). */
  81. int inc;
  82. /* A reg for which reload_in is the equivalent.
  83. If reload_in is a symbol_ref which came from
  84. reg_equiv_constant, then this is the pseudo
  85. which has that symbol_ref as equivalent. */
  86. rtx in_reg;
  87. rtx out_reg;
  88. /* Used in find_reload_regs to record the allocated register. */
  89. int regno;
  90. /* This is the register to reload into. If it is zero when `find_reloads'
  91. returns, you must find a suitable register in the class specified by
  92. reload_reg_class, and store here an rtx for that register with mode from
  93. reload_inmode or reload_outmode. */
  94. rtx reg_rtx;
  95. /* The operand number being reloaded. This is used to group related reloads
  96. and need not always be equal to the actual operand number in the insn,
  97. though it current will be; for in-out operands, it is one of the two
  98. operand numbers. */
  99. int opnum;
  100. /* Gives the reload number of a secondary input reload, when needed;
  101. otherwise -1. */
  102. int secondary_in_reload;
  103. /* Gives the reload number of a secondary output reload, when needed;
  104. otherwise -1. */
  105. int secondary_out_reload;
  106. /* If a secondary input reload is required, gives the INSN_CODE that uses the
  107. secondary reload as a scratch register, or CODE_FOR_nothing if the
  108. secondary reload register is to be an intermediate register. */
  109. enum insn_code secondary_in_icode;
  110. /* Likewise, for a secondary output reload. */
  111. enum insn_code secondary_out_icode;
  112. /* Classifies reload as needed either for addressing an input reload,
  113. addressing an output, for addressing a non-reloaded mem ref, or for
  114. unspecified purposes (i.e., more than one of the above). */
  115. enum reload_type when_needed;
  116. /* Nonzero for an optional reload. Optional reloads are ignored unless the
  117. value is already sitting in a register. */
  118. unsigned int optional:1;
  119. /* nonzero if this reload shouldn't be combined with another reload. */
  120. unsigned int nocombine:1;
  121. /* Nonzero if this is a secondary register for one or more reloads. */
  122. unsigned int secondary_p:1;
  123. /* Nonzero if this reload must use a register not already allocated to a
  124. group. */
  125. unsigned int nongroup:1;
  126. };
  127. extern struct reload rld[MAX_RELOADS];
  128. extern int n_reloads;
  129. #endif
  130. /* Target-dependent globals. */
  131. struct target_reload {
  132. /* Nonzero if indirect addressing is supported when the innermost MEM is
  133. of the form (MEM (SYMBOL_REF sym)). It is assumed that the level to
  134. which these are valid is the same as spill_indirect_levels, above. */
  135. bool x_indirect_symref_ok;
  136. /* Nonzero if an address (plus (reg frame_pointer) (reg ...)) is valid. */
  137. bool x_double_reg_address_ok;
  138. /* Nonzero if indirect addressing is supported on the machine; this means
  139. that spilling (REG n) does not require reloading it into a register in
  140. order to do (MEM (REG n)) or (MEM (PLUS (REG n) (CONST_INT c))). The
  141. value indicates the level of indirect addressing supported, e.g., two
  142. means that (MEM (MEM (REG n))) is also valid if (REG n) does not get
  143. a hard register. */
  144. bool x_spill_indirect_levels;
  145. /* True if caller-save has been reinitialized. */
  146. bool x_caller_save_initialized_p;
  147. /* Modes for each hard register that we can save. The smallest mode is wide
  148. enough to save the entire contents of the register. When saving the
  149. register because it is live we first try to save in multi-register modes.
  150. If that is not possible the save is done one register at a time. */
  151. machine_mode (x_regno_save_mode
  152. [FIRST_PSEUDO_REGISTER]
  153. [MAX_MOVE_MAX / MIN_UNITS_PER_WORD + 1]);
  154. /* We will only make a register eligible for caller-save if it can be
  155. saved in its widest mode with a simple SET insn as long as the memory
  156. address is valid. We record the INSN_CODE is those insns here since
  157. when we emit them, the addresses might not be valid, so they might not
  158. be recognized. */
  159. int x_cached_reg_save_code[FIRST_PSEUDO_REGISTER][MAX_MACHINE_MODE];
  160. int x_cached_reg_restore_code[FIRST_PSEUDO_REGISTER][MAX_MACHINE_MODE];
  161. };
  162. extern struct target_reload default_target_reload;
  163. #if SWITCHABLE_TARGET
  164. extern struct target_reload *this_target_reload;
  165. #else
  166. #define this_target_reload (&default_target_reload)
  167. #endif
  168. #define indirect_symref_ok \
  169. (this_target_reload->x_indirect_symref_ok)
  170. #define double_reg_address_ok \
  171. (this_target_reload->x_double_reg_address_ok)
  172. #define caller_save_initialized_p \
  173. (this_target_reload->x_caller_save_initialized_p)
  174. /* Register equivalences. Indexed by register number. */
  175. struct reg_equivs_t
  176. {
  177. /* The constant value to which pseudo reg N is equivalent,
  178. or zero if pseudo reg N is not equivalent to a constant.
  179. find_reloads looks at this in order to replace pseudo reg N
  180. with the constant it stands for. */
  181. rtx constant;
  182. /* An invariant value to which pseudo reg N is equivalent.
  183. eliminate_regs_in_insn uses this to replace pseudos in particular
  184. contexts. */
  185. rtx invariant;
  186. /* A memory location to which pseudo reg N is equivalent,
  187. prior to any register elimination (such as frame pointer to stack
  188. pointer). Depending on whether or not it is a valid address, this value
  189. is transferred to either equiv_address or equiv_mem. */
  190. rtx memory_loc;
  191. /* The address of stack slot to which pseudo reg N is equivalent.
  192. This is used when the address is not valid as a memory address
  193. (because its displacement is too big for the machine.) */
  194. rtx address;
  195. /* The memory slot to which pseudo reg N is equivalent,
  196. or zero if pseudo reg N is not equivalent to a memory slot. */
  197. rtx mem;
  198. /* An EXPR_LIST of REG_EQUIVs containing MEMs with
  199. alternate representations of the location of pseudo reg N. */
  200. rtx_expr_list *alt_mem_list;
  201. /* The list of insns that initialized reg N from its equivalent
  202. constant or memory slot. */
  203. rtx init;
  204. };
  205. #define reg_equiv_constant(ELT) \
  206. (*reg_equivs)[(ELT)].constant
  207. #define reg_equiv_invariant(ELT) \
  208. (*reg_equivs)[(ELT)].invariant
  209. #define reg_equiv_memory_loc(ELT) \
  210. (*reg_equivs)[(ELT)].memory_loc
  211. #define reg_equiv_address(ELT) \
  212. (*reg_equivs)[(ELT)].address
  213. #define reg_equiv_mem(ELT) \
  214. (*reg_equivs)[(ELT)].mem
  215. #define reg_equiv_alt_mem_list(ELT) \
  216. (*reg_equivs)[(ELT)].alt_mem_list
  217. #define reg_equiv_init(ELT) \
  218. (*reg_equivs)[(ELT)].init
  219. extern vec<reg_equivs_t, va_gc> *reg_equivs;
  220. /* All the "earlyclobber" operands of the current insn
  221. are recorded here. */
  222. extern int n_earlyclobbers;
  223. extern rtx reload_earlyclobbers[MAX_RECOG_OPERANDS];
  224. /* Save the number of operands. */
  225. extern int reload_n_operands;
  226. /* First uid used by insns created by reload in this function.
  227. Used in find_equiv_reg. */
  228. extern int reload_first_uid;
  229. extern int num_not_at_initial_offset;
  230. #if defined SET_HARD_REG_BIT && defined CLEAR_REG_SET
  231. /* This structure describes instructions which are relevant for reload.
  232. Apart from all regular insns, this also includes CODE_LABELs, since they
  233. must be examined for register elimination. */
  234. struct insn_chain
  235. {
  236. /* Links to the neighbor instructions. */
  237. struct insn_chain *next, *prev;
  238. /* Link through a chains set up by calculate_needs_all_insns, containing
  239. all insns that need reloading. */
  240. struct insn_chain *next_need_reload;
  241. /* The rtx of the insn. */
  242. rtx_insn *insn;
  243. /* The basic block this insn is in. */
  244. int block;
  245. /* Nonzero if find_reloads said the insn requires reloading. */
  246. unsigned int need_reload:1;
  247. /* Nonzero if find_reloads needs to be run during reload_as_needed to
  248. perform modifications on any operands. */
  249. unsigned int need_operand_change:1;
  250. /* Nonzero if eliminate_regs_in_insn said it requires eliminations. */
  251. unsigned int need_elim:1;
  252. /* Nonzero if this insn was inserted by perform_caller_saves. */
  253. unsigned int is_caller_save_insn:1;
  254. /* Register life information: record all live hard registers, and
  255. all live pseudos that have a hard register. This set also
  256. contains pseudos spilled by IRA. */
  257. bitmap_head live_throughout;
  258. bitmap_head dead_or_set;
  259. /* Copies of the global variables computed by find_reloads. */
  260. struct reload *rld;
  261. int n_reloads;
  262. /* Indicates which registers have already been used for spills. */
  263. HARD_REG_SET used_spill_regs;
  264. };
  265. /* A chain of insn_chain structures to describe all non-note insns in
  266. a function. */
  267. extern struct insn_chain *reload_insn_chain;
  268. /* Allocate a new insn_chain structure. */
  269. extern struct insn_chain *new_insn_chain (void);
  270. #endif
  271. #if defined SET_HARD_REG_BIT
  272. extern void compute_use_by_pseudos (HARD_REG_SET *, bitmap);
  273. #endif
  274. /* Functions from reload.c: */
  275. extern reg_class_t secondary_reload_class (bool, reg_class_t,
  276. machine_mode, rtx);
  277. #ifdef GCC_INSN_CODES_H
  278. extern enum reg_class scratch_reload_class (enum insn_code);
  279. #endif
  280. /* Return a memory location that will be used to copy X in mode MODE.
  281. If we haven't already made a location for this mode in this insn,
  282. call find_reloads_address on the location being returned. */
  283. extern rtx get_secondary_mem (rtx, machine_mode, int, enum reload_type);
  284. /* Clear any secondary memory locations we've made. */
  285. extern void clear_secondary_mem (void);
  286. /* Transfer all replacements that used to be in reload FROM to be in
  287. reload TO. */
  288. extern void transfer_replacements (int, int);
  289. /* IN_RTX is the value loaded by a reload that we now decided to inherit,
  290. or a subpart of it. If we have any replacements registered for IN_RTX,
  291. cancel the reloads that were supposed to load them.
  292. Return nonzero if we canceled any reloads. */
  293. extern int remove_address_replacements (rtx in_rtx);
  294. /* Like rtx_equal_p except that it allows a REG and a SUBREG to match
  295. if they are the same hard reg, and has special hacks for
  296. autoincrement and autodecrement. */
  297. extern int operands_match_p (rtx, rtx);
  298. /* Return 1 if altering OP will not modify the value of CLOBBER. */
  299. extern int safe_from_earlyclobber (rtx, rtx);
  300. /* Search the body of INSN for values that need reloading and record them
  301. with push_reload. REPLACE nonzero means record also where the values occur
  302. so that subst_reloads can be used. */
  303. extern int find_reloads (rtx_insn *, int, int, int, short *);
  304. /* Compute the sum of X and Y, making canonicalizations assumed in an
  305. address, namely: sum constant integers, surround the sum of two
  306. constants with a CONST, put the constant as the second operand, and
  307. group the constant on the outermost sum. */
  308. extern rtx form_sum (machine_mode, rtx, rtx);
  309. /* Substitute into the current INSN the registers into which we have reloaded
  310. the things that need reloading. */
  311. extern void subst_reloads (rtx_insn *);
  312. /* Make a copy of any replacements being done into X and move those copies
  313. to locations in Y, a copy of X. We only look at the highest level of
  314. the RTL. */
  315. extern void copy_replacements (rtx, rtx);
  316. /* Change any replacements being done to *X to be done to *Y */
  317. extern void move_replacements (rtx *x, rtx *y);
  318. /* If LOC was scheduled to be replaced by something, return the replacement.
  319. Otherwise, return *LOC. */
  320. extern rtx find_replacement (rtx *);
  321. /* Nonzero if modifying X will affect IN. */
  322. extern int reg_overlap_mentioned_for_reload_p (rtx, rtx);
  323. /* Check the insns before INSN to see if there is a suitable register
  324. containing the same value as GOAL. */
  325. extern rtx find_equiv_reg (rtx, rtx_insn *, enum reg_class, int, short *,
  326. int, machine_mode);
  327. /* Return 1 if register REGNO is the subject of a clobber in insn INSN. */
  328. extern int regno_clobbered_p (unsigned int, rtx_insn *, machine_mode, int);
  329. /* Return 1 if X is an operand of an insn that is being earlyclobbered. */
  330. extern int earlyclobber_operand_p (rtx);
  331. /* Record one reload that needs to be performed. */
  332. extern int push_reload (rtx, rtx, rtx *, rtx *, enum reg_class,
  333. machine_mode, machine_mode,
  334. int, int, int, enum reload_type);
  335. /* Functions in reload1.c: */
  336. /* Initialize the reload pass once per compilation. */
  337. extern void init_reload (void);
  338. /* The reload pass itself. */
  339. extern bool reload (rtx_insn *, int);
  340. /* Mark the slots in regs_ever_live for the hard regs
  341. used by pseudo-reg number REGNO. */
  342. extern void mark_home_live (int);
  343. /* Scan X and replace any eliminable registers (such as fp) with a
  344. replacement (such as sp), plus an offset. */
  345. extern rtx eliminate_regs (rtx, machine_mode, rtx);
  346. extern bool elimination_target_reg_p (rtx);
  347. /* Called from the register allocator to estimate costs of eliminating
  348. invariant registers. */
  349. extern void calculate_elim_costs_all_insns (void);
  350. /* Deallocate the reload register used by reload number R. */
  351. extern void deallocate_reload_reg (int r);
  352. /* Functions in caller-save.c: */
  353. /* Initialize for caller-save. */
  354. extern void init_caller_save (void);
  355. /* Initialize save areas by showing that we haven't allocated any yet. */
  356. extern void init_save_areas (void);
  357. /* Allocate save areas for any hard registers that might need saving. */
  358. extern void setup_save_areas (void);
  359. /* Find the places where hard regs are live across calls and save them. */
  360. extern void save_call_clobbered_regs (void);
  361. /* Replace (subreg (reg)) with the appropriate (reg) for any operands. */
  362. extern void cleanup_subreg_operands (rtx_insn *);
  363. /* Debugging support. */
  364. extern void debug_reload_to_stream (FILE *);
  365. extern void debug_reload (void);
  366. /* Compute the actual register we should reload to, in case we're
  367. reloading to/from a register that is wider than a word. */
  368. extern rtx reload_adjust_reg_for_mode (rtx, machine_mode);
  369. /* Allocate or grow the reg_equiv tables, initializing new entries to 0. */
  370. extern void grow_reg_equivs (void);
  371. #endif /* GCC_RELOAD_H */