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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
/* { dg-do run } */
/* { dg-options "-mpaired-single forbid_cpu=octeon.* (REQUIRES_STDLIB)" } */
/* Test MIPS paired-single builtin functions */
#include <stdlib.h>
#include <stdio.h>
typedef float v2sf __attribute__ ((vector_size(8)));
NOMIPS16 int main ()
{
int little_endian;
v2sf a, b, c, d;
float e,f;
int i;
union { long long ll; int i[2]; } endianness_test;
endianness_test.ll = 1;
little_endian = endianness_test.i[0];
/* pll.ps */
a = (v2sf) {1, 2};
b = (v2sf) {3, 4};
c = __builtin_mips_pll_ps (a, b);
if (little_endian) // little endian
d = (v2sf) {3, 1};
else // big endian
d = (v2sf) {2, 4};
if (!__builtin_mips_upper_c_eq_ps (c, d) ||
!__builtin_mips_lower_c_eq_ps (c, d))
abort ();
/* pul.ps */
a = (v2sf) {1, 2};
b = (v2sf) {3, 4};
c = __builtin_mips_pul_ps (a, b);
if (little_endian) // little endian
d = (v2sf) {3, 2};
else // big endian
d = (v2sf) {1, 4};
if (!__builtin_mips_upper_c_eq_ps (c, d) ||
!__builtin_mips_lower_c_eq_ps (c, d))
abort ();
/* plu.ps */
a = (v2sf) {1, 2};
b = (v2sf) {3, 4};
c = __builtin_mips_plu_ps (a, b);
if (little_endian) // little endian
d = (v2sf) {4, 1};
else // big endian
d = (v2sf) {2, 3};
if (!__builtin_mips_upper_c_eq_ps (c, d) ||
!__builtin_mips_lower_c_eq_ps (c, d))
abort ();
/* puu.ps */
a = (v2sf) {1, 2};
b = (v2sf) {3, 4};
c = __builtin_mips_puu_ps (a, b);
if (little_endian) // little endian
d = (v2sf) {4, 2};
else // big endian
d = (v2sf) {1, 3};
if (!__builtin_mips_upper_c_eq_ps (c, d) ||
!__builtin_mips_lower_c_eq_ps (c, d))
abort ();
/* cvt.ps.s */
e = 3.4;
f = 4.5;
a = __builtin_mips_cvt_ps_s (e, f);
if (little_endian) // little endian
b = (v2sf) {4.5, 3.4};
else // big endian
b = (v2sf) {3.4, 4.5};
if (!__builtin_mips_upper_c_eq_ps (a, b) ||
!__builtin_mips_lower_c_eq_ps (a, b))
abort ();
/* cvt.s.pl */
a = (v2sf) {35.1, 120.2};
e = __builtin_mips_cvt_s_pl (a);
if (little_endian) // little endian
f = 35.1;
else // big endian
f = 120.2;
if (e != f)
abort ();
/* cvt.s.pu */
a = (v2sf) {30.0, 100.0};
e = __builtin_mips_cvt_s_pu (a);
if (little_endian) // little endian
f = 100.0;
else // big endian
f = 30.0;
if (e != f)
abort ();
/* abs.ps */
a = (v2sf) {-3.4, -5.8};
b = __builtin_mips_abs_ps (a);
c = (v2sf) {3.4, 5.8};
if (!__builtin_mips_upper_c_eq_ps (b, c) ||
!__builtin_mips_lower_c_eq_ps (b, c))
abort ();
/* alnv.ps with rs = 4*/
a = (v2sf) {1, 2};
b = (v2sf) {3, 4};
i = 4;
c = __builtin_mips_alnv_ps (a, b, i);
d = (v2sf) {2, 3};
if (!__builtin_mips_upper_c_eq_ps (c, d) ||
!__builtin_mips_lower_c_eq_ps (c, d))
abort ();
/* alnv.ps with rs = 0 */
a = (v2sf) {5, 6};
b = (v2sf) {7, 8};
i = 0;
c = __builtin_mips_alnv_ps (a, b, i);
d = (v2sf) {5, 6};
if (!__builtin_mips_upper_c_eq_ps (c, d) ||
!__builtin_mips_lower_c_eq_ps (c, d))
abort ();
printf ("Test Passes\n");
exit (0);
}
|