From d546b10a8ec570dde00451c2412d65bd581751af Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 7 Aug 1994 08:52:03 -0400 Subject: [PATCH] (find_reg) If CLASS_CANNOT_CHANGE_SIZE, avoid its registers if reg_changes_size. From-SVN: r7866 --- gcc/global.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/gcc/global.c b/gcc/global.c index 3f15cbe1302..08a0f8a1e6d 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -923,6 +923,12 @@ find_reg (allocno, losers, alt_regs_p, accept_call_clobbered, retrying) IOR_HARD_REG_SET (used1, hard_reg_conflicts[allocno]); +#ifdef CLASS_CANNOT_CHANGE_SIZE + if (reg_changes_size[allocno_reg[allocno]]) + IOR_HARD_REG_SET (used1, + reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE]); +#endif + /* Try each hard reg to see if it fits. Do this in two passes. In the first pass, skip registers that are preferred by some other pseudo to give it a better chance of getting one of those registers. Only if @@ -1096,7 +1102,14 @@ find_reg (allocno, losers, alt_regs_p, accept_call_clobbered, retrying) if (local_reg_n_refs[regno] != 0 /* Don't use a reg no good for this pseudo. */ && ! TEST_HARD_REG_BIT (used2, regno) - && HARD_REGNO_MODE_OK (regno, mode)) + && HARD_REGNO_MODE_OK (regno, mode) +#ifdef CLASS_CANNOT_CHANGE_SIZE + && ! (reg_changes_size[allocno_reg[allocno]] + && (TEST_HARD_REG_BIT + (reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE], + regno))) +#endif + ) { /* We explicitly evaluate the divide results into temporary variables so as to avoid excess precision problems that occur -- 2.30.2