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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vmx/] [sn7153.c] - Blame information for rev 689

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* In the source code, the vec_adds appears before the call to
2
   validate_sat().  In the .s code, the vaddubs has been moved to after
3
   the call to validate_sat().  This invalidates the meaning of checking
4
   the saturation bit.  */
5
 
6
#include <stdio.h>
7
#include <stdlib.h>
8
#include <altivec.h>
9
 
10
static int failed;
11
 
12
void validate_sat();
13
void validate_u8(vector unsigned char, vector unsigned char);
14
 
15
int
16
main()
17
{
18
  vector unsigned char result_u8;
19
  vec_mtvscr(((vector unsigned short){0,0,0,0,0,0,0,0}));
20
  result_u8 = vec_adds(((vector unsigned
21
                        char){0,1,2,3,0xfc,0xfd,0xfe,0xff,
22
                              0,1,2,3,0xfc,0xfd,0xfe,0xff}),
23
                       ((vector unsigned
24
                        char){0,0xf0,0xfd,0xfd,2,2,2,2,0,
25
                              0xf0,0xfd,0xfd,2,2,2,2}));
26
  validate_sat();
27
  validate_u8(result_u8, ((vector unsigned
28
                          char){0,0xf1,0xff,0xff,0xfe,0xff,0xff,0xff,
29
                                  0,0xf1,0xff,0xff,0xfe,0xff,0xff,0xff}));
30
  if (failed)
31
    abort ();
32
  return 0;
33
}
34
 
35
void validate_sat()
36
{
37
  if (vec_any_ne(vec_splat(vec_mfvscr(), 7), ((vector unsigned short){1,1,1,1,1,1,1,1})))
38
    {
39
      union {vector unsigned short v; unsigned short s[8];} u;
40
      u.v = vec_mfvscr();
41
      printf("error: vscr == { %d,%d,%d,%d,%d,%d,%d,%d }",
42
             u.s[0], u.s[1], u.s[2], u.s[3],
43
             u.s[4], u.s[5], u.s[6], u.s[7]);
44
      printf("expected { 1,1,1,1,1,1,1,1 }\n");
45
      failed++;
46
    }
47
}
48
 
49
void validate_u8(vector unsigned char v, vector unsigned char vx)
50
{
51
  union {vector unsigned char v; unsigned char x[16]; } u, ux;
52
  int i;
53
  u.v = v;
54
  ux.v = vx;
55
  for (i=0; i<16; i++) {
56
    if (u.x[i] != ux.x[i]) {
57
      printf(" error: field %d %#2.2x expected %#2.2x\n",
58
             i, u.x[i], ux.x[i]);
59
      failed++;
60
    }
61
  }
62
}

powered by: WebSVN 2.1.0

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