aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/altivec_vld_vst_addr-2.c
blob: f27785dd52baa7e7ee4fbd50cd9659701783b669 (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
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
/* { dg-options "-mvsx" } */
/* { dg-require-effective-target powerpc_vsx } */

/* Note that vector long long and vector double type require vsx support. */

/* Test vec_ld and vec_st can support both scalar and vector
   type address points, the list is:
     - address of unsigned long long
     - address of signed long long
     - address of double
     - address of vector unsigned long long
     - address of vector signed long long
     - address of vector double */
#include <altivec.h>

/* Test vec_ld can allow scalar and vector type address. */

vector unsigned long long
test_vld_scalar_ul (const unsigned long long *address)
{
  return __builtin_vec_ld (0, address);
}

vector signed long long
test_vld_scalar_sl (const signed long long *address)
{
  return __builtin_vec_ld (0, address);
}

vector double
test_vld_scalar_d (const double *address)
{
  return __builtin_vec_ld (0, address);
}

vector unsigned long long
test_vld_vector_ul (const vector unsigned long long *address)
{
  return __builtin_vec_ld (0, address);
}

vector signed long long
test_vld_vector_sl (const vector signed long long *address)
{
  return __builtin_vec_ld (0, address);
}

vector double
test_vld_vector_d (const vector double *address)
{
  return __builtin_vec_ld (0, address);
}

/* Test vec_st can allow scalar and vector type address. */

void
test_vst_scalar_ul (vector unsigned long long v, unsigned long long *address)
{
  __builtin_vec_st (v, 0, address);
}

void
test_vst_scalar_sl (vector signed long long v, signed long long *address)
{
  __builtin_vec_st (v, 0, address);
}

void
test_vst_scalar_d (vector double v, double *address)
{
  __builtin_vec_st (v, 0, address);
}

void
test_vst_vector_ul (vector unsigned long long v,
		    vector unsigned long long *address)
{
  __builtin_vec_st (v, 0, address);
}

void
test_vst_vector_sl (vector signed long long v, vector signed long long *address)
{
  __builtin_vec_st (v, 0, address);
}

void
test_vst_vector_d (vector double v, vector double *address)
{
  __builtin_vec_st (v, 0, address);
}