public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/67683] New: Missed vectorization: shifts of an induction variable
@ 2015-09-22 17:21 alalaw01 at gcc dot gnu.org
  2015-09-23  8:16 ` [Bug tree-optimization/67683] " rguenth at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: alalaw01 at gcc dot gnu.org @ 2015-09-22 17:21 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 67683
           Summary: Missed vectorization: shifts of an induction variable
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: alalaw01 at gcc dot gnu.org
            Blocks: 53947
  Target Milestone: ---

This testcase:

void test (unsigned char *data, int max)
{
  unsigned short val = 0xcdef;
  for(int i = 0; i < max; i++) { 
          data[i] = (unsigned char)(val & 0xff);
          val >>= 1; 
  }
}

does not vectorize on AArch64 or x86_64 at -O3. (I haven't yet looked at
whether it's a mid-end deficiency or both back-ends are missing patterns.)


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53947
[Bug 53947] [meta-bug] vectorizer missed-optimizations


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-03-18  9:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-22 17:21 [Bug tree-optimization/67683] New: Missed vectorization: shifts of an induction variable alalaw01 at gcc dot gnu.org
2015-09-23  8:16 ` [Bug tree-optimization/67683] " rguenth at gcc dot gnu.org
2015-10-06 15:15 ` alalaw01 at gcc dot gnu.org
2015-10-07  8:05 ` rguenth at gcc dot gnu.org
2024-03-18  7:29 ` pinskia at gcc dot gnu.org
2024-03-18  7:36 ` pinskia at gcc dot gnu.org
2024-03-18  9:16 ` liuhongt at gcc dot gnu.org

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).