Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / swaps-p8-36.c
blobf825f8bcfec8b9ba28e1b93010f1c0d1cce0c4df
1 /* { dg-do compile { target { powerpc64le-*-* } } } */
2 /* { dg-require-effective-target powerpc_p8vector_ok } */
3 /* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=power8" } } */
4 /* { dg-options "-mcpu=power8 -O3 " } */
6 /* Previous versions of this test required that the assembler does not
7 contain xxpermdi or xxswapd. However, with the more sophisticated
8 code generation used today, it is now possible that xxpermdi (aka
9 xxswapd) show up without being part of a lxvd2x or stxvd2x
10 sequence. */
12 #include <altivec.h>
14 extern void abort (void);
16 vector int x;
17 const vector int y = { 0, 1, 2, 3 };
18 vector int z;
20 vector int
21 foo (void)
23 return y; /* Remove 1 swap and use lvx. */
26 vector int
27 foo1 (void)
29 x = y; /* Remove 2 redundant swaps here. */
30 return x; /* Remove 1 swap and use lvx. */
33 void __attribute__ ((noinline))
34 fill_local (vector int *vp)
36 *vp = x; /* Remove 2 redundant swaps here. */
39 /* Test aligned load from local. */
40 vector int
41 foo2 (void)
43 vector int v;
45 /* Need to be clever here because v will normally reside in a
46 register rather than memory. */
47 fill_local (&v);
48 return v; /* Remove 1 swap and use lvx. */
52 /* Test aligned load from pointer. */
53 vector int
54 foo3 (vector int *arg)
56 return *arg; /* Remove 1 swap and use lvx. */
59 /* In this structure, the compiler should insert padding to assure
60 that a_vector is properly aligned. */
61 struct bar {
62 short a_field;
63 vector int a_vector;
66 vector int
67 foo4 (struct bar *bp)
69 return bp->a_vector; /* Remove 1 swap and use lvx. */
72 /* Test aligned store to global. */
73 void
74 baz (vector int arg)
76 x = arg; /* Remove 1 swap and use stvx. */
79 void __attribute__ ((noinline))
80 copy_local (vector int *arg)
82 x = *arg; /* Remove 2 redundant swaps. */
86 /* Test aligned store to local. */
87 void
88 baz1 (vector int arg)
90 vector int v;
92 /* Need cleverness, because v will normally reside in a register
93 rather than memory. */
94 v = arg; /* Aligned store to local: remove 1
95 swap and use stvx. */
96 copy_local (&v);
99 /* Test aligned store to pointer. */
100 void
101 baz2 (vector int *arg1, vector int arg2)
103 /* Assume arg2 resides in register. */
104 *arg1 = arg2; /* Remove 1 swap and use stvx. */
107 void
108 baz3 (struct bar *bp, vector int v)
110 /* Assume v resides in register. */
111 bp->a_vector = v; /* Remove 1 swap and use stvx. */
115 main (int argc, int *argv[])
117 vector int fetched_value = foo ();
118 if (fetched_value[0] != 0 || fetched_value[3] != 3)
119 abort ();
121 fetched_value = foo1 ();
122 if (fetched_value[1] != 1 || fetched_value[2] != 2)
123 abort ();
125 fetched_value = foo2 ();
126 if (fetched_value[2] != 2 || fetched_value[1] != 1)
127 abort ();
129 fetched_value = foo3 (&x);
130 if (fetched_value[3] != 3 || fetched_value[0] != 0)
131 abort ();
133 struct bar a_struct;
134 a_struct.a_vector = x; /* Remove 2 redundant swaps. */
135 fetched_value = foo4 (&a_struct);
136 if (fetched_value[2] != 2 || fetched_value[3] != 3)
137 abort ();
139 z[0] = 7;
140 z[1] = 6;
141 z[2] = 5;
142 z[3] = 4;
144 baz (z);
145 if (x[0] != 7 || x[3] != 4)
146 abort ();
148 vector int source = { 8, 7, 6, 5 };
150 baz1 (source);
151 if (x[3] != 6 || x[2] != 7)
152 abort ();
154 vector int dest;
155 baz2 (&dest, source);
156 if (dest[0] != 8 || dest[1] != 7)
157 abort ();
159 baz3 (&a_struct, source);
160 if (a_struct.a_vector[3] != 5 || a_struct.a_vector[0] != 8)
161 abort ();
163 return 0;