From: Richard Henderson Date: Thu, 2 Apr 1998 01:33:22 +0000 (-0800) Subject: emit-rtl.c (gen_lowpart_common): Skip count by HARD_REGNO_NREGS. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4901a643933d7005c4745beec0fee58552412b2b;p=gcc.git emit-rtl.c (gen_lowpart_common): Skip count by HARD_REGNO_NREGS. * emit-rtl.c (gen_lowpart_common): Skip count by HARD_REGNO_NREGS. (gen_highpart): Likewise. From-SVN: r18945 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 80459cb1f7b..9eea255533b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -3,6 +3,9 @@ Thu Apr 2 01:01:34 1998 Richard Henderson * configure (alpha-*-linuxecoff, alpha-*-linux-gnulibc1): Run fixincludes. + * emit-rtl.c (gen_lowpart_common): Skip count by HARD_REGNO_NREGS. + (gen_highpart): Likewise. + Wed Apr 1 22:26:22 1998 Jeffrey A Law (law@cygnus.com) * fold-const.c optimze_bit_field_compare): Initialize rnbitpos, diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 54af3b8bc5b..fe99e8e6866 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -652,6 +652,17 @@ gen_lowpart_common (mode, x) : gen_rtx_SUBREG (mode, SUBREG_REG (x), SUBREG_WORD (x) + word)); else if (GET_CODE (x) == REG) { + /* Let the backend decide how many registers to skip. This is needed + in particular for Sparc64 where fp regs are smaller than a word. */ + /* ??? Note that subregs are now ambiguous, in that those against + pseudos are sized by the Word Size, while those against hard + regs are sized by the underlying register size. Better would be + to always interpret the subreg offset parameter as bytes or bits. */ + + if (WORDS_BIG_ENDIAN && REGNO (x) < FIRST_PSEUDO_REGISTER) + word = (HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)) + - HARD_REGNO_NREGS (REGNO (x), mode)); + /* If the register is not valid for MODE, return 0. If we don't do this, there is no way to fix up the resulting REG later. But we do do this if the current REG is not valid for its @@ -1002,17 +1013,16 @@ gen_highpart (mode, x) { int word = 0; - if (! WORDS_BIG_ENDIAN - && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD) - word = ((GET_MODE_SIZE (GET_MODE (x)) - - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD)) - / UNITS_PER_WORD); - - /* - * ??? This fails miserably for complex values being passed in registers - * where the sizeof the real and imaginary part are not equal to the - * sizeof SImode. FIXME - */ + /* Let the backend decide how many registers to skip. This is needed + in particular for sparc64 where fp regs are smaller than a word. */ + /* ??? Note that subregs are now ambiguous, in that those against + pseudos are sized by the Word Size, while those against hard + regs are sized by the underlying register size. Better would be + to always interpret the subreg offset parameter as bytes or bits. */ + + if (! WORDS_BIG_ENDIAN && REGNO (x) < FIRST_PSEUDO_REGISTER) + word = (HARD_REGNO_NREGS (REGNO (x), GET_MODE (x)) + - HARD_REGNO_NREGS (REGNO (x), mode)); if (REGNO (x) < FIRST_PSEUDO_REGISTER /* integrate.c can't handle parts of a return value register. */