Commit bf9a0db3 by Kazu Hirata Committed by Kazu Hirata

reload1.c (reloads_conflict, gen_reload): Make them static.

	* reload1.c (reloads_conflict, gen_reload): Make them static.
	* reload.h: Remove the corresponding prototypes.

From-SVN: r90350
parent 10015a27
2004-11-09 Kazu Hirata <kazu@cs.umass.edu> 2004-11-09 Kazu Hirata <kazu@cs.umass.edu>
* reload1.c (reloads_conflict, gen_reload): Make them static.
* reload.h: Remove the corresponding prototypes.
2004-11-09 Kazu Hirata <kazu@cs.umass.edu>
* reload.c (refers_to_mem_for_reload_p, * reload.c (refers_to_mem_for_reload_p,
refers_to_regno_for_reload_p): Make them static. refers_to_regno_for_reload_p): Make them static.
* reload.h: Remove the corresponding prototypes. * reload.h: Remove the corresponding prototypes.
......
...@@ -331,7 +331,6 @@ extern int push_reload (rtx, rtx, rtx *, rtx *, enum reg_class, ...@@ -331,7 +331,6 @@ extern int push_reload (rtx, rtx, rtx *, rtx *, enum reg_class,
extern void reload_cse_regs (rtx); extern void reload_cse_regs (rtx);
/* Functions in reload1.c: */ /* Functions in reload1.c: */
extern int reloads_conflict (int, int);
/* Initialize the reload pass once per compilation. */ /* Initialize the reload pass once per compilation. */
extern void init_reload (void); extern void init_reload (void);
...@@ -347,11 +346,6 @@ extern void mark_home_live (int); ...@@ -347,11 +346,6 @@ extern void mark_home_live (int);
replacement (such as sp), plus an offset. */ replacement (such as sp), plus an offset. */
extern rtx eliminate_regs (rtx, enum machine_mode, rtx); extern rtx eliminate_regs (rtx, enum machine_mode, rtx);
/* Emit code to perform a reload from IN (which may be a reload register) to
OUT (which may also be a reload register). IN or OUT is from operand
OPNUM with reload type TYPE. */
extern rtx gen_reload (rtx, rtx, int, enum reload_type);
/* Deallocate the reload register used by reload number R. */ /* Deallocate the reload register used by reload number R. */
extern void deallocate_reload_reg (int r); extern void deallocate_reload_reg (int r);
......
...@@ -430,6 +430,8 @@ static rtx inc_for_reload (rtx, rtx, rtx, int); ...@@ -430,6 +430,8 @@ static rtx inc_for_reload (rtx, rtx, rtx, int);
static void add_auto_inc_notes (rtx, rtx); static void add_auto_inc_notes (rtx, rtx);
#endif #endif
static void copy_eh_notes (rtx, rtx); static void copy_eh_notes (rtx, rtx);
static int reloads_conflict (int, int);
static rtx gen_reload (rtx, rtx, int, enum reload_type);
/* Initialize the reload pass once per compilation. */ /* Initialize the reload pass once per compilation. */
...@@ -4593,7 +4595,7 @@ reload_reg_reaches_end_p (unsigned int regno, int opnum, enum reload_type type) ...@@ -4593,7 +4595,7 @@ reload_reg_reaches_end_p (unsigned int regno, int opnum, enum reload_type type)
This function uses the same algorithm as reload_reg_free_p above. */ This function uses the same algorithm as reload_reg_free_p above. */
int static int
reloads_conflict (int r1, int r2) reloads_conflict (int r1, int r2)
{ {
enum reload_type r1_type = rld[r1].when_needed; enum reload_type r1_type = rld[r1].when_needed;
...@@ -7334,7 +7336,7 @@ emit_reload_insns (struct insn_chain *chain) ...@@ -7334,7 +7336,7 @@ emit_reload_insns (struct insn_chain *chain)
Returns first insn emitted. */ Returns first insn emitted. */
rtx static rtx
gen_reload (rtx out, rtx in, int opnum, enum reload_type type) gen_reload (rtx out, rtx in, int opnum, enum reload_type type)
{ {
rtx last = get_last_insn (); rtx last = get_last_insn ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment