This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] combine: Convert subreg-of-lshiftrt to zero_extract properly (PR78390)


On Wed, Nov 23, 2016 at 02:22:07PM +0000, Segher Boessenkool wrote:
> r242414, for PR77881, introduces some bugs (PR78390, PR78438, PR78477).
> It all has the same root cause: that patch makes combine convert every
> lowpart subreg of a logical shift right to a zero_extract.  This cannot
> work at all if it is not a constant shift, and it has to be a bit more
> careful exactly which bits it extracts.
> 
> Tested on powerpc64-linux {-m32,-m64} (where it fixes the regression
> c-c++-common/torture/vector-compare-1.c fails at -O1, and where it also
> has a bootstrap failure with some other patches).  Also tested that the
> x86_64 compiler still generates the wanted code for the PR77881 testcase.

Is this a side effect of the patch series?

  Trying 7 -> 9:
  ...
  Failed to match this instruction:
  (set (reg:SI 68 [ v_or ])
      (ior:SI (subreg:SI (zero_extract:DI (reg:DI 2 %r2 [ v_x ])
               ^^^^^^^^^^^^^^^^^^^^^^^^^^
                  (const_int 16 [0x10])
                  (const_int 0 [0])) 4)
                                    ^^^
          (reg:SI 70 [ v_and1 ])))

Shouldn't this be simply

  ...
  (ior:SI (zero_extract:SI (reg:DI) (16) (0)))
  ...

?

Ciao

Dominik ^_^  ^_^

-- 

Dominik Vogt
IBM Germany


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]