1 /* 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
13 void validate_u8(vector
unsigned char, vector
unsigned char);
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}),
24 char){0,0xf0,0xfd,0xfd,2,2,2,2,0,
25 0xf0,0xfd,0xfd,2,2,2,2}));
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}));
37 if (vec_any_ne(vec_splat(vec_mfvscr(), 7), ((vector
unsigned short){1,1,1,1,1,1,1,1})))
39 union {vector
unsigned short v
; unsigned short s
[8];} u
;
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");
49 void validate_u8(vector
unsigned char v
, vector
unsigned char vx
)
51 union {vector
unsigned char v
; unsigned char x
[16]; } u
, ux
;
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",