public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/49133] New: [4.6 Regression] modification of aliased __m128d miscompiles
@ 2011-05-23 22:20 kretz at kde dot org
  2011-05-24  8:54 ` [Bug target/49133] [4.6/4.7 " ubizjak at gmail dot com
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: kretz at kde dot org @ 2011-05-23 22:20 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49133

           Summary: [4.6 Regression] modification of aliased __m128d
                    miscompiles
           Product: gcc
           Version: 4.6.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: kretz@kde.org


Compile the following testcase with "g++ -msse2 -O2"

#include <xmmintrin.h>

typedef double double_a __attribute__((__may_alias__));

struct V
{
    __m128d data;
};

int main()
{
    V a;
    __m128d b;
    b      = _mm_set_pd(1., 0.);
    a.data = _mm_set_pd(1., 0.);
    a.data = _mm_add_pd(a.data, _mm_and_pd(_mm_cmpeq_pd(a.data,
_mm_set1_pd(0.)), _mm_set1_pd(2.)));
    reinterpret_cast<double_a *>(&a.data)[1] += 1.;
    b = _mm_add_pd(b, _mm_and_pd(_mm_cmpeq_pd(b, _mm_set1_pd(0.)),
_mm_set1_pd(1.)));
    b = _mm_add_pd(b, _mm_and_pd(_mm_cmpeq_pd(b, _mm_set1_pd(1.)),
_mm_set1_pd(1.)));
    if (_mm_movemask_pd(_mm_cmpeq_pd(a.data, b)) != 0x3) {
        abort();
    }
    return 0;
}

GCC 4.6.[01] calculate the correct values for a.data[0] and a.data[1] but fail
to combine the results correctly. I.e. the resulting shufpd $0x1 is wrong. GCC
4.5.x uses unpacklpd, which gives the correct result, but emits unnecessary
stores to the stack.


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

end of thread, other threads:[~2011-05-25 16:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-23 22:20 [Bug target/49133] New: [4.6 Regression] modification of aliased __m128d miscompiles kretz at kde dot org
2011-05-24  8:54 ` [Bug target/49133] [4.6/4.7 " ubizjak at gmail dot com
2011-05-24 10:36 ` kretz at kde dot org
2011-05-24 11:48 ` ubizjak at gmail dot com
2011-05-24 11:54 ` ubizjak at gmail dot com
2011-05-24 15:58 ` uros at gcc dot gnu.org
2011-05-24 18:58 ` uros at gcc dot gnu.org
2011-05-25  8:15 ` jakub at gcc dot gnu.org
2011-05-25 13:47 ` uros at gcc dot gnu.org
2011-05-25 16:43 ` uros 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).