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.dg/] [vect/] [vect-outer-3a.c] - Diff between revs 298 and 338

Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 338
/* { dg-require-effective-target vect_float } */
/* { dg-require-effective-target vect_float } */
#include <stdarg.h>
#include <stdarg.h>
#include "tree-vect.h"
#include "tree-vect.h"
 
 
#define N 40
#define N 40
float image[N][N+1] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
float image[N][N+1] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
float out[N];
float out[N];
 
 
/* Outer-loop vectorization with misaliged accesses in the inner-loop.  */
/* Outer-loop vectorization with misaliged accesses in the inner-loop.  */
 
 
__attribute__ ((noinline)) void
__attribute__ ((noinline)) void
foo (){
foo (){
  int i,j;
  int i,j;
  float diff;
  float diff;
 
 
  for (i = 0; i < N; i++) {
  for (i = 0; i < N; i++) {
    diff = 0;
    diff = 0;
    for (j = 0; j < N; j++) {
    for (j = 0; j < N; j++) {
      diff += image[j][i];
      diff += image[j][i];
    }
    }
    out[i]=diff;
    out[i]=diff;
  }
  }
}
}
 
 
int main (void)
int main (void)
{
{
  check_vect ();
  check_vect ();
  int i, j;
  int i, j;
  float diff;
  float diff;
 
 
  for (i = 0; i < N; i++) {
  for (i = 0; i < N; i++) {
    for (j = 0; j < N; j++) {
    for (j = 0; j < N; j++) {
      image[i][j]=i+j;
      image[i][j]=i+j;
    }
    }
  }
  }
 
 
  foo ();
  foo ();
 
 
  for (i = 0; i < N; i++) {
  for (i = 0; i < N; i++) {
    diff = 0;
    diff = 0;
    for (j = 0; j < N; j++) {
    for (j = 0; j < N; j++) {
      diff += image[j][i];
      diff += image[j][i];
    }
    }
    if (out[i] != diff)
    if (out[i] != diff)
      abort ();
      abort ();
  }
  }
 
 
  return 0;
  return 0;
}
}
 
 
/* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { xfail vect_no_align } } } */
/* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { xfail vect_no_align } } } */
/* { dg-final { scan-tree-dump-times "step doesn't divide the vector-size" 2 "vect" } } */
/* { dg-final { scan-tree-dump-times "step doesn't divide the vector-size" 2 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
 
 

powered by: WebSVN 2.1.0

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