OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [sse4_1-init-v4si-1.c] - Diff between revs 318 and 338

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 318 Rev 338
/* { dg-do run } */
/* { dg-do run } */
/* { dg-require-effective-target sse4 } */
/* { dg-require-effective-target sse4 } */
/* { dg-options "-O2 -msse4.1" } */
/* { dg-options "-O2 -msse4.1" } */
 
 
#include "sse4_1-check.h"
#include "sse4_1-check.h"
 
 
#ifdef DEBUG
#ifdef DEBUG
#include <stdio.h>
#include <stdio.h>
#endif
#endif
 
 
#include <emmintrin.h>
#include <emmintrin.h>
 
 
static void
static void
__attribute__((noinline))
__attribute__((noinline))
check (__m128i x, unsigned int *v, int j)
check (__m128i x, unsigned int *v, int j)
{
{
  union
  union
    {
    {
      __m128i x;
      __m128i x;
      unsigned int i[4];
      unsigned int i[4];
    } u;
    } u;
  unsigned int i;
  unsigned int i;
 
 
  u.x = x;
  u.x = x;
 
 
  for (i = 0; i < sizeof (v) / sizeof (v[0]); i++)
  for (i = 0; i < sizeof (v) / sizeof (v[0]); i++)
    if (i == j)
    if (i == j)
      {
      {
        if (v[i] != u.i[i])
        if (v[i] != u.i[i])
          {
          {
#ifdef DEBUG
#ifdef DEBUG
            printf ("%i: 0x%x != 0x%x\n", i, v[i], u.i[i]);
            printf ("%i: 0x%x != 0x%x\n", i, v[i], u.i[i]);
#endif
#endif
            abort ();
            abort ();
          }
          }
      }
      }
    else if (u.i[i] != 0)
    else if (u.i[i] != 0)
      {
      {
#ifdef DEBUG
#ifdef DEBUG
        printf ("%i: 0x%x != 0\n", i, u.i[i]);
        printf ("%i: 0x%x != 0\n", i, u.i[i]);
#endif
#endif
        abort ();
        abort ();
      }
      }
}
}
 
 
static void
static void
__attribute__((noinline))
__attribute__((noinline))
test (unsigned int *v)
test (unsigned int *v)
{
{
  __m128i x;
  __m128i x;
 
 
  x = _mm_set_epi32 (0, 0, 0, v[0]);
  x = _mm_set_epi32 (0, 0, 0, v[0]);
  check (x, v, 0);
  check (x, v, 0);
  x = _mm_set_epi32 (0, 0, v[1], 0);
  x = _mm_set_epi32 (0, 0, v[1], 0);
  check (x, v, 1);
  check (x, v, 1);
  x = _mm_set_epi32 (0, v[2], 0, 0);
  x = _mm_set_epi32 (0, v[2], 0, 0);
  check (x, v, 2);
  check (x, v, 2);
  x = _mm_set_epi32 (v[3], 0, 0, 0);
  x = _mm_set_epi32 (v[3], 0, 0, 0);
  check (x, v, 3);
  check (x, v, 3);
}
}
 
 
static void
static void
sse4_1_test (void)
sse4_1_test (void)
{
{
  unsigned int v[4]
  unsigned int v[4]
    = { 0x7B5B5465, 0x73745665, 0x63746F72, 0x5D53475D };
    = { 0x7B5B5465, 0x73745665, 0x63746F72, 0x5D53475D };
  test (v);
  test (v);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.