af1dc80de12102de57ba070053f1972ad5287f7b
[gcc.git] / gcc / testsuite / gcc.target / powerpc / cell_builtin-4.c
1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
3 /* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=cell" } } */
4 /* { dg-options "-O2 -maltivec -mcpu=cell" } */
5 /* { dg-final { scan-assembler-times "lvrxl" 19 } } */
6
7 #include <altivec.h>
8
9 typedef __vector signed char vsc;
10 typedef __vector signed short vss;
11 typedef __vector signed int vsi;
12 typedef __vector unsigned char vuc;
13 typedef __vector unsigned short vus;
14 typedef __vector unsigned int vui;
15 typedef __vector bool char vbc;
16 typedef __vector bool short vbs;
17 typedef __vector bool int vbi;
18 typedef __vector float vsf;
19 typedef __vector pixel vp;
20 typedef signed char sc;
21 typedef signed short ss;
22 typedef signed int si;
23 typedef signed long sl;
24 typedef unsigned char uc;
25 typedef unsigned short us;
26 typedef unsigned int ui;
27 typedef unsigned long ul;
28 typedef float sf;
29
30 vsc lc4(long a, void *p) { return __builtin_altivec_lvrxl (a,p); }
31 vsf lrxl01(long a, vsf *p) { return __builtin_vec_lvrxl (a,p); }
32 vsf lrxl02(long a, sf *p) { return __builtin_vec_lvrxl (a,p); }
33 vbi lrxl03(long a, vbi *p) { return __builtin_vec_lvrxl (a,p); }
34 vsi lrxl04(long a, vsi *p) { return __builtin_vec_lvrxl (a,p); }
35 vsi lrxl05(long a, si *p) { return __builtin_vec_lvrxl (a,p); }
36 vui lrxl06(long a, vui *p) { return __builtin_vec_lvrxl (a,p); }
37 vui lrxl07(long a, ui *p) { return __builtin_vec_lvrxl (a,p); }
38 vbs lrxl08(long a, vbs *p) { return __builtin_vec_lvrxl (a,p); }
39 vp lrxl09(long a, vp *p) { return __builtin_vec_lvrxl (a,p); }
40 vss lrxl10(long a, vss *p) { return __builtin_vec_lvrxl (a,p); }
41 vss lrxl11(long a, ss *p) { return __builtin_vec_lvrxl (a,p); }
42 vus lrxl12(long a, vus *p) { return __builtin_vec_lvrxl (a,p); }
43 vus lrxl13(long a, us *p) { return __builtin_vec_lvrxl (a,p); }
44 vbc lrxl14(long a, vbc *p) { return __builtin_vec_lvrxl (a,p); }
45 vsc lrxl15(long a, vsc *p) { return __builtin_vec_lvrxl (a,p); }
46 vsc lrxl16(long a, sc *p) { return __builtin_vec_lvrxl (a,p); }
47 vuc lrxl17(long a, vuc *p) { return __builtin_vec_lvrxl (a,p); }
48 vuc lrxl18(long a, uc *p) { return __builtin_vec_lvrxl (a,p); }