URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [vect-outer-fir-lb.c] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-require-effective-target vect_float } */ #include <stdarg.h> #include "tree-vect.h" #define N 40 #define M 64 float in[N+M]; float coeff[M]; float out[N]; float fir_out[N]; /* Should be vectorized. Fixed misaligment in the inner-loop. */ /* Currently not vectorized because the loop-count for the inner-loop has a maybe_zero component. Will be fixed when we incorporate the "cond_expr in rhs" patch. */ __attribute__ ((noinline)) void foo (){ int i,j,k; float diff; for (i = 0; i < N; i++) { out[i] = 0; } for (k = 0; k < 4; k++) { for (i = 0; i < N; i++) { diff = 0; j = k; do { diff += in[j+i]*coeff[j]; j+=4; } while (j < M); out[i] += diff; } } } /* Vectorized. Changing misalignment in the inner-loop. */ __attribute__ ((noinline)) void fir (){ int i,j,k; float diff; for (i = 0; i < N; i++) { diff = 0; for (j = 0; j < M; j++) { diff += in[j+i]*coeff[j]; } fir_out[i] = diff; } } int main (void) { check_vect (); int i, j; float diff; for (i = 0; i < M; i++) coeff[i] = i; for (i = 0; i < N+M; i++) in[i] = i; foo (); fir (); for (i = 0; i < N; i++) { if (out[i] != fir_out[i]) abort (); } return 0; } /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 2 "vect" { xfail *-*-* } } } */ /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { xfail vect_no_align } } } */ /* { dg-final { cleanup-tree-dump "vect" } } */
Go to most recent revision | Compare with Previous | Blame | View Log