1 ; Test that vectors are scalarized/lowered correctly.
2 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5
3 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g3
10 %d8 = type <8 x double>
14 ;;; TEST HANDLING OF VARIOUS VECTOR SIZES
16 void %test_f1(%f1 *%P, %f1* %Q, %f1 *%S) {
24 void %test_f2(%f2 *%P, %f2* %Q, %f2 *%S) {
32 void %test_f4(%f4 *%P, %f4* %Q, %f4 *%S) {
40 void %test_f8(%f8 *%P, %f8* %Q, %f8 *%S) {
48 void %test_fmul(%f8 *%P, %f8* %Q, %f8 *%S) {
56 void %test_div(%f8 *%P, %f8* %Q, %f8 *%S) {
64 ;;; TEST VECTOR CONSTRUCTS
66 void %test_cst(%f4 *%P, %f4 *%S) {
68 %R = add %f4 %p, <float 0.1, float 1.0, float 2.0, float 4.5>
73 void %test_zero(%f4 *%P, %f4 *%S) {
75 %R = add %f4 %p, zeroinitializer
80 void %test_undef(%f4 *%P, %f4 *%S) {
82 %R = add %f4 %p, undef
87 void %test_constant_insert(%f4 *%S) {
88 %R = insertelement %f4 zeroinitializer, float 10.0, uint 0
93 void %test_variable_buildvector(float %F, %f4 *%S) {
94 %R = insertelement %f4 zeroinitializer, float %F, uint 0
99 void %test_scalar_to_vector(float %F, %f4 *%S) {
100 %R = insertelement %f4 undef, float %F, uint 0 ;; R = scalar_to_vector F
101 store %f4 %R, %f4 *%S
105 float %test_extract_elt(%f8 *%P) {
107 %R = extractelement %f8 %p, uint 3
111 double %test_extract_elt2(%d8 *%P) {
113 %R = extractelement %d8 %p, uint 3
117 void %test_cast_1(<4 x float>* %b, <4 x int>* %a) {
118 %tmp = load <4 x float>* %b
119 %tmp2 = add <4 x float> %tmp, <float 1.0, float 2.0, float 3.0, float 4.0>
120 %tmp3 = cast <4 x float> %tmp2 to <4 x int>
121 %tmp4 = add <4 x int> %tmp3, <int 1, int 2, int 3, int 4>
122 store <4 x int> %tmp4, <4 x int>* %a
126 void %test_cast_2(<8 x float>* %a, <8 x int>* %b) {
127 %T = load <8 x float>* %a
128 %T2 = cast <8 x float> %T to <8 x int>
129 store <8 x int> %T2, <8 x int>* %b
134 ;;; TEST IMPORTANT IDIOMS
136 void %splat(%f4* %P, %f4* %Q, float %X) {
137 %tmp = insertelement %f4 undef, float %X, uint 0
138 %tmp2 = insertelement %f4 %tmp, float %X, uint 1
139 %tmp4 = insertelement %f4 %tmp2, float %X, uint 2
140 %tmp6 = insertelement %f4 %tmp4, float %X, uint 3
142 %R = add %f4 %q, %tmp6
143 store %f4 %R, %f4* %P
147 void %splat_i4(%i4* %P, %i4* %Q, int %X) {
148 %tmp = insertelement %i4 undef, int %X, uint 0
149 %tmp2 = insertelement %i4 %tmp, int %X, uint 1
150 %tmp4 = insertelement %i4 %tmp2, int %X, uint 2
151 %tmp6 = insertelement %i4 %tmp4, int %X, uint 3
153 %R = add %i4 %q, %tmp6
154 store %i4 %R, %i4* %P