blob: bbbed144f63d5e15de05a7cc094f93ef3e9d5610 [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 "VSRA_N"
35void exec_vsra_n (void)
36{
37 /* Basic test: y=vsra_n(x,v), then store the result. */
38#define TEST_VSRA_N(Q, T1, T2, W, N, V) \
39 VECT_VAR(vector_res, T1, W, N) = \
40 vsra##Q##_n_##T2##W(VECT_VAR(vector, T1, W, N), \
41 VECT_VAR(vector2, T1, W, N), \
42 V); \
43 vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N), VECT_VAR(vector_res, T1, W, N))
44
45 /* With ARM RVCT, we need to declare variables before any executable
46 statement */
47
48 DECL_VARIABLE_ALL_VARIANTS(vector);
49 DECL_VARIABLE_ALL_VARIANTS(vector2);
50 DECL_VARIABLE_ALL_VARIANTS(vector_res);
51
52 clean_results ();
53
54 /* Initialize input "vector" from "buffer" */
Christophe Lyonf2053672014-12-16 10:26:00 +010055 TEST_MACRO_ALL_VARIANTS_2_5(VLOAD, vector, buffer);
Christophe Lyon073831a2011-01-24 17:37:40 +010056
57 /* Choose arbitrary initialization values */
Christophe Lyonf2053672014-12-16 10:26:00 +010058 VDUP(vector2, , int, s, 8, 8, 0x11);
59 VDUP(vector2, , int, s, 16, 4, 0x22);
60 VDUP(vector2, , int, s, 32, 2, 0x33);
61 VDUP(vector2, , int, s, 64, 1, 0x44);
62 VDUP(vector2, , uint, u, 8, 8, 0x55);
63 VDUP(vector2, , uint, u, 16, 4, 0x66);
64 VDUP(vector2, , uint, u, 32, 2, 0x77);
65 VDUP(vector2, , uint, u, 64, 1, 0x88);
Christophe Lyon073831a2011-01-24 17:37:40 +010066
Christophe Lyonf2053672014-12-16 10:26:00 +010067 VDUP(vector2, q, int, s, 8, 16, 0x11);
68 VDUP(vector2, q, int, s, 16, 8, 0x22);
69 VDUP(vector2, q, int, s, 32, 4, 0x33);
70 VDUP(vector2, q, int, s, 64, 2, 0x44);
71 VDUP(vector2, q, uint, u, 8, 16, 0x55);
72 VDUP(vector2, q, uint, u, 16, 8, 0x66);
73 VDUP(vector2, q, uint, u, 32, 4, 0x77);
74 VDUP(vector2, q, uint, u, 64, 2, 0x88);
Christophe Lyon073831a2011-01-24 17:37:40 +010075
76 /* Choose shift amount arbitrarily */
77 TEST_VSRA_N(, int, s, 8, 8, 1);
78 TEST_VSRA_N(, int, s, 16, 4, 12);
79 TEST_VSRA_N(, int, s, 32, 2, 2);
80 TEST_VSRA_N(, int, s, 64, 1, 32);
81 TEST_VSRA_N(, uint, u, 8, 8, 2);
82 TEST_VSRA_N(, uint, u, 16, 4, 3);
83 TEST_VSRA_N(, uint, u, 32, 2, 5);
84 TEST_VSRA_N(, uint, u, 64, 1, 33);
85
86 TEST_VSRA_N(q, int, s, 8, 16, 1);
87 TEST_VSRA_N(q, int, s, 16, 8, 12);
88 TEST_VSRA_N(q, int, s, 32, 4, 2);
89 TEST_VSRA_N(q, int, s, 64, 2, 32);
90 TEST_VSRA_N(q, uint, u, 8, 16, 2);
91 TEST_VSRA_N(q, uint, u, 16, 8, 3);
92 TEST_VSRA_N(q, uint, u, 32, 4, 5);
93 TEST_VSRA_N(q, uint, u, 64, 2, 33);
94
95 /* FIXME: only a few result buffers are used, but we output all of them */
96 dump_results_hex (TEST_MSG);
97}