blob: b2c37dbe352f27c842886344bcc4a62fe2758c59 [file] [log] [blame]
Christophe Lyon073831a2011-01-24 17:37:40 +01001/*
2
Christophe Lyonc94d4c12013-03-29 16:32:37 +01003Copyright (c) 2009, 2010, 2011, 2012 STMicroelectronics
Christophe Lyon073831a2011-01-24 17:37:40 +01004Written 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 INSN vqrdmulh
35#define TEST_MSG "VQRDMULH_LANE"
36
37#define FNNAME1(NAME) void exec_ ## NAME ## _lane (void)
38#define FNNAME(NAME) FNNAME1(NAME)
39
40FNNAME (INSN)
41{
42 /* vector_res = vqrdmulh_lane(vector,vector2,lane), then store the result. */
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020043#define TEST_VQRDMULH_LANE2(INSN, Q, T1, T2, W, N, N2, L) \
Christophe Lyonc1cc7822015-01-20 16:04:24 +010044 Set_Neon_Cumulative_Sat(0, VECT_VAR(vector_res, T1, W, N)); \
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020045 VECT_VAR(vector_res, T1, W, N) = \
46 INSN##Q##_lane_##T2##W(VECT_VAR(vector, T1, W, N), \
47 VECT_VAR(vector2, T1, W, N2), \
48 L); \
49 vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N), \
50 VECT_VAR(vector_res, T1, W, N)); \
51 dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##Q##_lane_##T2##W), \
52 xSTR(T1), W, N)
Christophe Lyon073831a2011-01-24 17:37:40 +010053
54 /* Two auxliary macros are necessary to expand INSN */
55#define TEST_VQRDMULH_LANE1(INSN, Q, T1, T2, W, N, N2, L) \
56 TEST_VQRDMULH_LANE2(INSN, Q, T1, T2, W, N, N2, L)
57
58#define TEST_VQRDMULH_LANE(Q, T1, T2, W, N, N2, L) \
59 TEST_VQRDMULH_LANE1(INSN, Q, T1, T2, W, N, N2, L)
60
61
62 /* With ARM RVCT, we need to declare variables before any executable
63 statement */
64 DECL_VARIABLE(vector, int, 16, 4);
65 DECL_VARIABLE(vector, int, 32, 2);
66 DECL_VARIABLE(vector, int, 16, 8);
67 DECL_VARIABLE(vector, int, 32, 4);
68
69 DECL_VARIABLE(vector_res, int, 16, 4);
70 DECL_VARIABLE(vector_res, int, 32, 2);
71 DECL_VARIABLE(vector_res, int, 16, 8);
72 DECL_VARIABLE(vector_res, int, 32, 4);
73
74 /* vector2: vqrdmulh_lane and vqrdmulhq_lane have a 2nd argument with
75 the same number of elements, so we need only one variable of each
76 type. */
77 DECL_VARIABLE(vector2, int, 16, 4);
78 DECL_VARIABLE(vector2, int, 32, 2);
79
80 clean_results ();
81
Christophe Lyonf2053672014-12-16 10:26:00 +010082 VLOAD(vector, buffer, , int, s, 16, 4);
83 VLOAD(vector, buffer, , int, s, 32, 2);
Christophe Lyon073831a2011-01-24 17:37:40 +010084
Christophe Lyonf2053672014-12-16 10:26:00 +010085 VLOAD(vector, buffer, q, int, s, 16, 8);
86 VLOAD(vector, buffer, q, int, s, 32, 4);
Christophe Lyon073831a2011-01-24 17:37:40 +010087
88 /* Initialize vector2 */
Christophe Lyonf2053672014-12-16 10:26:00 +010089 VDUP(vector2, , int, s, 16, 4, 0x55);
90 VDUP(vector2, , int, s, 32, 2, 0xBB);
Christophe Lyon073831a2011-01-24 17:37:40 +010091
92 /* Choose lane arbitrarily */
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020093 fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG);
Christophe Lyon073831a2011-01-24 17:37:40 +010094 TEST_VQRDMULH_LANE(, int, s, 16, 4, 4, 2);
95 TEST_VQRDMULH_LANE(, int, s, 32, 2, 2, 1);
96 TEST_VQRDMULH_LANE(q, int, s, 16, 8, 4, 3);
97 TEST_VQRDMULH_LANE(q, int, s, 32, 4, 2, 0);
98
99 /* FIXME: only a subset of the result buffers are used, but we
100 output all of them */
101 dump_results_hex (TEST_MSG);
102
103
Christophe Lyonf2053672014-12-16 10:26:00 +0100104 VDUP(vector, , int, s, 16, 4, 0x8000);
105 VDUP(vector, , int, s, 32, 2, 0x80000000);
106 VDUP(vector, q, int, s, 16, 8, 0x8000);
107 VDUP(vector, q, int, s, 32, 4, 0x80000000);
108 VDUP(vector2, , int, s, 16, 4, 0x8000);
109 VDUP(vector2, , int, s, 32, 2, 0x80000000);
Christophe Lyon073831a2011-01-24 17:37:40 +0100110
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +0200111 fprintf(ref_file, "\n%s cumulative saturation output:\n",
112 TEST_MSG " (check mul cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +0100113 TEST_VQRDMULH_LANE(, int, s, 16, 4, 4, 2);
114 TEST_VQRDMULH_LANE(, int, s, 32, 2, 2, 1);
115 TEST_VQRDMULH_LANE(q, int, s, 16, 8, 4, 3);
116 TEST_VQRDMULH_LANE(q, int, s, 32, 4, 2, 0);
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +0200117 dump_results_hex2 (TEST_MSG, " (check mul cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +0100118
119
Christophe Lyonf2053672014-12-16 10:26:00 +0100120 VDUP(vector, , int, s, 16, 4, 0x8000);
121 VDUP(vector, , int, s, 32, 2, 0x80000000);
122 VDUP(vector, q, int, s, 16, 8, 0x8000);
123 VDUP(vector, q, int, s, 32, 4, 0x80000000);
124 VDUP(vector2, , int, s, 16, 4, 0x8001);
125 VDUP(vector2, , int, s, 32, 2, 0x80000001);
Christophe Lyon073831a2011-01-24 17:37:40 +0100126
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +0200127 fprintf(ref_file, "\n%s cumulative saturation output:\n",
128 TEST_MSG " (check rounding cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +0100129 TEST_VQRDMULH_LANE(, int, s, 16, 4, 4, 2);
130 TEST_VQRDMULH_LANE(, int, s, 32, 2, 2, 1);
131 TEST_VQRDMULH_LANE(q, int, s, 16, 8, 4, 3);
132 TEST_VQRDMULH_LANE(q, int, s, 32, 4, 2, 0);
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +0200133 dump_results_hex2 (TEST_MSG, " (check rounding cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +0100134}