blob: 94f42b036ac749fd15d48dfce58bb6c5fa7f60ac [file] [log] [blame]
Christophe Lyon073831a2011-01-24 17:37:40 +01001/*
2
3Copyright (c) 2009, 2010, 2011 STMicroelectronics
4Written by Christophe Lyon
5
6Permission is hereby granted, free of charge, to any person obtaining a copy
7of this software and associated documentation files (the "Software"), to deal
8in the Software without restriction, including without limitation the rights
9to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10copies of the Software, and to permit persons to whom the Software is
11furnished to do so, subject to the following conditions:
12
13The above copyright notice and this permission notice shall be included in
14all copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22THE SOFTWARE.
23
24*/
25
Christophe Lyon1775be02014-07-10 13:46:54 +020026#if defined(__arm__) || defined(__aarch64__)
Christophe Lyon073831a2011-01-24 17:37:40 +010027#include <arm_neon.h>
28#else
Christophe Lyon0dab5f72011-07-19 17:14:09 +020029#include "stm-arm-neon.h"
Christophe Lyon073831a2011-01-24 17:37:40 +010030#endif
31
32#include "stm-arm-neon-ref.h"
33
34#define TEST_MSG "VRSHRN_N"
35void exec_vrshrn_n (void)
36{
37 /* Basic test: v2=vrshrn_n(v1,v), then store the result. */
38#define TEST_VRSHRN_N(T1, T2, W, N, W2, V) \
39 VECT_VAR(vector_res, T1, W2, N) = \
40 vrshrn_n_##T2##W(VECT_VAR(vector, T1, W, N), \
41 V); \
42 vst1_##T2##W2(VECT_VAR(result, T1, W2, N), VECT_VAR(vector_res, T1, W2, N))
43
44 /* With ARM RVCT, we need to declare variables before any executable
45 statement */
46
47 /* vector is twice as large as vector_res */
48 DECL_VARIABLE(vector, int, 16, 8);
49 DECL_VARIABLE(vector, int, 32, 4);
50 DECL_VARIABLE(vector, int, 64, 2);
51 DECL_VARIABLE(vector, uint, 16, 8);
52 DECL_VARIABLE(vector, uint, 32, 4);
53 DECL_VARIABLE(vector, uint, 64, 2);
54
55 DECL_VARIABLE(vector_res, int, 8, 8);
56 DECL_VARIABLE(vector_res, int, 16, 4);
57 DECL_VARIABLE(vector_res, int, 32, 2);
58 DECL_VARIABLE(vector_res, uint, 8, 8);
59 DECL_VARIABLE(vector_res, uint, 16, 4);
60 DECL_VARIABLE(vector_res, uint, 32, 2);
61
62 clean_results ();
63
64 /* Fill input vector with 0, to check behavior on limits */
Christophe Lyonf2053672014-12-16 10:26:00 +010065 VDUP(vector, q, int, s, 16, 8, 0);
66 VDUP(vector, q, int, s, 32, 4, 0);
67 VDUP(vector, q, int, s, 64, 2, 0);
68 VDUP(vector, q, uint, u, 16, 8, 0);
69 VDUP(vector, q, uint, u, 32, 4, 0);
70 VDUP(vector, q, uint, u, 64, 2, 0);
Christophe Lyon073831a2011-01-24 17:37:40 +010071
72 /* Choose shift amount arbitrarily */
73 TEST_VRSHRN_N(int, s, 16, 8, 8, 1);
74 TEST_VRSHRN_N(int, s, 32, 4, 16, 1);
75 TEST_VRSHRN_N(int, s, 64, 2, 32, 2);
76 TEST_VRSHRN_N(uint, u, 16, 8, 8, 2);
77 TEST_VRSHRN_N(uint, u, 32, 4, 16, 3);
78 TEST_VRSHRN_N(uint, u, 64, 2, 32, 3);
79
80 dump_results_hex2 (TEST_MSG, " (with input = 0)");
81
82 /* Test again, with predefined input values */
Christophe Lyonf2053672014-12-16 10:26:00 +010083 VLOAD(vector, buffer, q, int, s, 16, 8);
84 VLOAD(vector, buffer, q, int, s, 32, 4);
85 VLOAD(vector, buffer, q, int, s, 64, 2);
86 VLOAD(vector, buffer, q, uint, u, 16, 8);
87 VLOAD(vector, buffer, q, uint, u, 32, 4);
88 VLOAD(vector, buffer, q, uint, u, 64, 2);
Christophe Lyon073831a2011-01-24 17:37:40 +010089
90 /* Choose shift amount arbitrarily */
91 TEST_VRSHRN_N(int, s, 16, 8, 8, 1);
92 TEST_VRSHRN_N(int, s, 32, 4, 16, 1);
93 TEST_VRSHRN_N(int, s, 64, 2, 32, 2);
94 TEST_VRSHRN_N(uint, u, 16, 8, 8, 2);
95 TEST_VRSHRN_N(uint, u, 32, 4, 16, 3);
96 TEST_VRSHRN_N(uint, u, 64, 2, 32, 3);
97
98 /* FIXME: only a few result buffers are used, but we output all of them */
99 dump_results_hex (TEST_MSG);
100
101 /* Fill input arbitrary values */
Christophe Lyonf2053672014-12-16 10:26:00 +0100102 VDUP(vector, q, int, s, 16, 8, 30);
103 VDUP(vector, q, int, s, 32, 4, 0);
104 VDUP(vector, q, int, s, 64, 2, 0);
105 VDUP(vector, q, uint, u, 16, 8, 0xFFF0);
106 VDUP(vector, q, uint, u, 32, 4, 0xFFFFFFF0);
107 VDUP(vector, q, uint, u, 64, 2, 0);
Christophe Lyon073831a2011-01-24 17:37:40 +0100108
109 /* Choose shift amount arbitrarily */
110 TEST_VRSHRN_N(int, s, 16, 8, 8, 7);
111 TEST_VRSHRN_N(int, s, 32, 4, 16, 14);
112 TEST_VRSHRN_N(int, s, 64, 2, 32, 31);
113 TEST_VRSHRN_N(uint, u, 16, 8, 8, 7);
114 TEST_VRSHRN_N(uint, u, 32, 4, 16, 16);
115 TEST_VRSHRN_N(uint, u, 64, 2, 32, 3);
116
117 /* FIXME: only a few result buffers are used, but we output all of them */
118 dump_results_hex2 (TEST_MSG, " (with large shift amount)");
119}