Merge to HEAD at tree-cleanup-merge-20041024 .
[official-gcc.git] / gcc / testsuite / gcc.dg / compat / vector-defs.h
blob57140f115cd02596aec770613570324b0a72b525
1 /* This includes all of the vector modes that are recognized by
2 c_common_type_for_mode. */
4 typedef int __attribute__((mode(QI))) qi;
5 typedef int __attribute__((mode(HI))) hi;
6 typedef int __attribute__((mode(SI))) si;
7 typedef int __attribute__((mode(DI))) di;
8 typedef float __attribute__((mode(SF))) sf;
9 typedef float __attribute__((mode(DF))) df;
11 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 5)
13 typedef qi __attribute__((vector_size (8))) v8qi;
14 typedef qi __attribute__((vector_size (16))) v16qi;
16 typedef hi __attribute__((vector_size (4))) v2hi;
17 typedef hi __attribute__((vector_size (8))) v4hi;
18 typedef hi __attribute__((vector_size (16))) v8hi;
20 typedef si __attribute__((vector_size (8))) v2si;
21 typedef si __attribute__((vector_size (16))) v4si;
23 typedef di __attribute__((vector_size (8))) v1di;
24 typedef di __attribute__((vector_size (16))) v2di;
26 typedef sf __attribute__((vector_size (8))) v2sf;
27 typedef sf __attribute__((vector_size (16))) v4sf;
28 typedef sf __attribute__((vector_size (64))) v16sf;
30 typedef df __attribute__((vector_size (16))) v2df;
32 #else
34 typedef int __attribute__((mode(V8QI))) v8qi;
35 typedef int __attribute__((mode(V16QI))) v16qi;
37 typedef int __attribute__((mode(V2HI))) v2hi;
38 typedef int __attribute__((mode(V4HI))) v4hi;
39 typedef int __attribute__((mode(V8HI))) v8hi;
41 typedef int __attribute__((mode(V2SI))) v2si;
42 typedef int __attribute__((mode(V4SI))) v4si;
44 typedef int __attribute__((mode(V1DI))) v1di;
45 typedef int __attribute__((mode(V2DI))) v2di;
47 typedef float __attribute__((mode(V2SF))) v2sf;
48 typedef float __attribute__((mode(V4SF))) v4sf;
49 typedef float __attribute__((mode(V16SF))) v16sf;
51 typedef float __attribute__((mode(V2DF))) v2df;
53 #endif
55 typedef union U8QI { v8qi v; qi a[8]; } u8qi;
56 typedef union U16QI { v16qi v; qi a[16]; } u16qi;
58 typedef union U2HI { v2hi v; hi a[2]; } u2hi;
59 typedef union U4HI { v4hi v; hi a[4]; } u4hi;
60 typedef union U8HI { v8hi v; hi a[8]; } u8hi;
62 typedef union U2SI { v2si v; si a[2]; } u2si;
63 typedef union U4SI { v4si v; si a[4]; } u4si;
65 typedef union U1DI { v1di v; di a[1]; } u1di;
66 typedef union U2DI { v2di v; di a[2]; } u2di;
68 typedef union U2SF { v2sf v; sf a[2]; } u2sf;
69 typedef union U4SF { v4sf v; sf a[4]; } u4sf;
70 typedef union U16SF { v16sf v; sf a[16]; } u16sf;
72 typedef union U2DF { v2df v; df a[2]; } u2df;