Fix PR rtl-optimization/46490

Eric Botcazou ebotcazou@adacore.com
Tue Nov 16 22:59:00 GMT 2010


This is a regression with -O2 -mtune=i386 present on the mainline.

The combiner turns:

(insn 9 8 10 2 (set (reg:QI 68)
        (sign_extract:QI (reg:HI 70)
            (const_int 8 [0x8])
            (const_int 8 [0x8]))) p.adb:9 64 {*movqi_extv_1}
     (expr_list:REG_EQUAL (mod:QI (reg:QI 66 [ q__fix_half ])
            (const_int 16 [0x10]))
        (nil)))

(insn 11 10 12 2 (set (reg:QI 72)
        (reg:QI 68)) p.adb:9 52 {*movqi_internal}
     (expr_list:REG_DEAD (reg:QI 68)
        (nil)))

into:

(insn 11 10 12 2 (parallel [
            (set (reg:QI 72)
                (ashift:QI (subreg:QI (reg:HI 70) 0)
                    (const_int -8 [0xfffffff8])))
            (clobber (reg:CC 17 flags))
        ]) p.adb:9 391 {*ashlqi3_1_lea}
     (expr_list:REG_UNUSED (reg:CC 17 flags)
        (expr_list:REG_DEAD (reg:HI 70)
            (nil))))

Note the bogus (const_int -8).  Yet the combiner specifically checks for that:

  /* If we reach here, we want to return a pair of shifts.  The inner
     shift is a left shift of BITSIZE - POS - LEN bits.  The outer
     shift is a right shift of BITSIZE - LEN bits.  It is arithmetic or
     logical depending on the value of UNSIGNEDP.

     If this was a ZERO_EXTEND or ZERO_EXTRACT, this pair of shifts will be
     converted into an AND of a shift.

     We must check for the case where the left shift would have a negative
     count.  This can happen in a case like (x >> 31) & 255 on machines
     that can't shift by a constant.  On those machines, we would first
     combine the shift with the AND to produce a variable-position
     extraction.  Then the constant of 31 would be substituted in to produce
     a such a position.  */

but there has been a thinko in the check since the first revision (r357).

This had apparently stayed latent until after H.J. added the 8-bit divmov
support to the x86 port in June, with the unusual sign_extract pattern.

Tested on i586-suse-linux, applied on the mainline 


2010-11-16  Eric Botcazou  <ebotcazou@adacore.com>

	PR rtl-optimization/46490
	* combine.c (expand_compound_operation): Fix thinko.


2010-11-16  Eric Botcazou  <ebotcazou@adacore.com>

	* gnat.dg/opt12.adb: New test.
	* gnat.dg/opt12_pkg.ad[sb]: New helper.


-- 
Eric Botcazou
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pr46490.diff
Type: text/x-diff
Size: 841 bytes
Desc: not available
URL: <http://gcc.gnu.org/pipermail/gcc-patches/attachments/20101116/a45c5944/attachment.bin>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: opt12.adb
Type: text/x-adasrc
Size: 288 bytes
Desc: not available
URL: <http://gcc.gnu.org/pipermail/gcc-patches/attachments/20101116/a45c5944/attachment-0001.bin>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: opt12_pkg.adb
Type: text/x-adasrc
Size: 149 bytes
Desc: not available
URL: <http://gcc.gnu.org/pipermail/gcc-patches/attachments/20101116/a45c5944/attachment-0002.bin>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: opt12_pkg.ads
Type: text/x-adasrc
Size: 245 bytes
Desc: not available
URL: <http://gcc.gnu.org/pipermail/gcc-patches/attachments/20101116/a45c5944/attachment-0003.bin>


More information about the Gcc-patches mailing list