aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/cell_builtin-3.c
blob: 4b437291ea57b75631622e8048d4620807780290 (plain)
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
/* { dg-do compile { target { powerpc*-*-* } } } */
/* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-O2 -maltivec -mcpu=cell" } */
/* { dg-final { scan-assembler-times "lvrx" 19 } } */

#include <altivec.h>

typedef __vector signed char vsc;
typedef __vector signed short vss;
typedef __vector signed int vsi;
typedef __vector unsigned char vuc;
typedef __vector unsigned short vus;
typedef __vector unsigned int vui;
typedef __vector bool char vbc;
typedef __vector bool short vbs;
typedef __vector bool int vbi;
typedef __vector float vsf;
typedef __vector pixel vp;
typedef signed char sc;
typedef signed short ss;
typedef signed int si;
typedef signed long sl;
typedef unsigned char uc;
typedef unsigned short us;
typedef unsigned int ui;
typedef unsigned long ul;
typedef float sf;

vsc  lc3(long a, void *p)           { return __builtin_altivec_lvrx (a,p); }
vsf  lrx01(long a, vsf *p)          { return __builtin_vec_lvrx (a,p); }
vsf  lrx02(long a, sf *p)           { return __builtin_vec_lvrx (a,p); }
vbi  lrx03(long a, vbi *p)          { return __builtin_vec_lvrx (a,p); }
vsi  lrx04(long a, vsi *p)          { return __builtin_vec_lvrx (a,p); }
vsi  lrx05(long a, si *p)           { return __builtin_vec_lvrx (a,p); }
vui  lrx06(long a, vui *p)          { return __builtin_vec_lvrx (a,p); }
vui  lrx07(long a, ui *p)           { return __builtin_vec_lvrx (a,p); }
vbs  lrx08(long a, vbs *p)          { return __builtin_vec_lvrx (a,p); }
vp   lrx09(long a, vp *p)           { return __builtin_vec_lvrx (a,p); }
vss  lrx10(long a, vss *p)          { return __builtin_vec_lvrx (a,p); }
vss  lrx11(long a, ss *p)           { return __builtin_vec_lvrx (a,p); }
vus  lrx12(long a, vus *p)          { return __builtin_vec_lvrx (a,p); }
vus  lrx13(long a, us *p)           { return __builtin_vec_lvrx (a,p); }
vbc  lrx14(long a, vbc *p)          { return __builtin_vec_lvrx (a,p); }
vsc  lrx15(long a, vsc *p)          { return __builtin_vec_lvrx (a,p); }
vsc  lrx16(long a, sc *p)           { return __builtin_vec_lvrx (a,p); }
vuc  lrx17(long a, vuc *p)          { return __builtin_vec_lvrx (a,p); }
vuc  lrx18(long a, uc *p)           { return __builtin_vec_lvrx (a,p); }