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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [slp-12b.c] - Blame information for rev 725

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* { dg-require-effective-target vect_uintfloat_cvt } */
2
 
3
#include <stdarg.h>
4
#include "tree-vect.h"
5
 
6
#define N 64 
7
 
8
unsigned int in[N*8] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63};
9
 
10
int
11
main1 ()
12
{
13
  int i;
14
  float out2[N*8], fa[N*4];
15
 
16
  for (i = 0; i < N; i++)
17
    {
18
      out2[i*2] = (float) (in[i*2] * 2 + 11) ;
19
      out2[i*2 + 1] = (float) (in[i*2 + 1] * 3 + 7);
20
 
21
      fa[i] = (float) in[i*2+1];
22
    }
23
 
24
  /* check results:  */
25
  for (i = 0; i < N; i++)
26
    {
27
      if (out2[i*2] !=  (float) (in[i*2] * 2 + 11)
28
         || out2[i*2 + 1] != (float) (in[i*2 + 1] * 3 + 7)
29
         || fa[i] != (float) in[i*2+1])
30
        abort ();
31
    }
32
 
33
 
34
  return 0;
35
}
36
 
37
int main (void)
38
{
39
  check_vect ();
40
 
41
  main1 ();
42
 
43
  return 0;
44
}
45
 
46
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect"  { target { vect_strided2 && vect_int_mult } } } } */
47
/* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect"  { target { ! { vect_strided2 && vect_int_mult } } } } } */
48
/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect"  { target { vect_strided2 && vect_int_mult } } } } */
49
/* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 0 "vect"  { target { ! { vect_strided2 && vect_int_mult } } } } } */
50
/* { dg-final { cleanup-tree-dump "vect" } } */
51
 

powered by: WebSVN 2.1.0

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