public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug rtl-optimization/67751] New: redundant zero extension
@ 2015-09-28 18:05 konstantin.vladimirov at gmail dot com
  0 siblings, 0 replies; only message in thread
From: konstantin.vladimirov at gmail dot com @ 2015-09-28 18:05 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67751

            Bug ID: 67751
           Summary: redundant zero extension
           Product: gcc
           Version: 5.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: konstantin.vladimirov at gmail dot com
  Target Milestone: ---

Simple test:

---
struct U {
  unsigned s: 1;
};

struct V {
  unsigned short o: 7;
  unsigned short u: 1;
};

extern struct U t[];
extern struct V d[];

unsigned
foo ()
{
    struct V descr = d[0];
    unsigned osize = descr.o;
    if ( descr.u )
      {
        struct U udata = t[osize];
        if (udata.s) osize++;
      }
    return osize;
}
---

Compiled with specified gcc:

>gcc -v
Using built-in specs.
COLLECT_GCC=/tools/local/gcc-5.2.0/bin/gcc
COLLECT_LTO_WRAPPER=/tools/local/gcc-5.2.0/libexec/gcc/x86_64-unknown-linux-gnu/5.2.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc-5.2.0/configure
--prefix=/tools/local/gcc-5.2.0 --program-suffix=-5.2.0
--with-as=/tools/local/binutils-2.24/bin/as
--with-ld=/tools/local/binutils-2.24/bin/ld
Thread model: posix
gcc version 5.2.0 (GCC)

---

with options:  -02 -S

---

Yields assembler:

---

foo:
        movzbl  d(%rip), %eax
        andl    $127, %eax
        cmpb    $0, d(%rip)
        movzbl  %al, %eax // <----- why this is here?
        jns     .L2
        movl    %eax, %edx
        movl    t(,%rdx,4), %edx
        andl    $1, %edx
        cmpb    $1, %dl
        sbbl    $-1, %eax
.L2:
        rep ret
---

Second movzbl looks excessive


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-09-28 18:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-28 18:05 [Bug rtl-optimization/67751] New: redundant zero extension konstantin.vladimirov at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).