blob: 0f7c933db2ea5468dcd1a44bdff80c0e59a69ea5 [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_NAME vqmovn
35#define TEST_MSG "VQMOVN"
36
37#define FNNAME1(NAME) void exec_ ## NAME (void)
38#define FNNAME(NAME) FNNAME1(NAME)
39
40FNNAME (INSN_NAME)
41{
42 /* Basic test: y=OP(x), then store the result. */
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020043#define TEST_UNARY_OP1(INSN, T1, T2, W, W2, N) \
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##_##T2##W2(VECT_VAR(vector, T1, W2, N)); \
47 vst1##_##T2##W(VECT_VAR(result, T1, W, N), \
48 VECT_VAR(vector_res, T1, W, N)); \
49 dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##_##T2##W2), \
50 xSTR(T1), W, N)
Christophe Lyon073831a2011-01-24 17:37:40 +010051
52#define TEST_UNARY_OP(INSN, T1, T2, W, W2, N) \
53 TEST_UNARY_OP1(INSN, T1, T2, W, W2, N) \
54
55 /* With ARM RVCT, we need to declare variables before any executable
56 statement */
57
58 /* No need for 64 bits variants */
59 DECL_VARIABLE(vector, int, 16, 8);
60 DECL_VARIABLE(vector, int, 32, 4);
61 DECL_VARIABLE(vector, int, 64, 2);
62 DECL_VARIABLE(vector, uint, 16, 8);
63 DECL_VARIABLE(vector, uint, 32, 4);
64 DECL_VARIABLE(vector, uint, 64, 2);
65
66 DECL_VARIABLE(vector_res, int, 8, 8);
67 DECL_VARIABLE(vector_res, int, 16, 4);
68 DECL_VARIABLE(vector_res, int, 32, 2);
69 DECL_VARIABLE(vector_res, uint, 8, 8);
70 DECL_VARIABLE(vector_res, uint, 16, 4);
71 DECL_VARIABLE(vector_res, uint, 32, 2);
72
73 clean_results ();
74
75 /* Fill input vector with arbitrary values */
Christophe Lyonf2053672014-12-16 10:26:00 +010076 VDUP(vector, q, int, s, 16, 8, 0x12);
77 VDUP(vector, q, int, s, 32, 4, 0x1278);
78 VDUP(vector, q, int, s, 64, 2, 0x12345678);
79 VDUP(vector, q, uint, u, 16, 8, 0x82);
80 VDUP(vector, q, uint, u, 32, 4, 0x8765);
81 VDUP(vector, q, uint, u, 64, 2, 0x87654321);
Christophe Lyon073831a2011-01-24 17:37:40 +010082
83 /* Apply a unary operator named INSN_NAME */
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020084 fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG);
Christophe Lyon073831a2011-01-24 17:37:40 +010085 TEST_UNARY_OP(INSN_NAME, int, s, 8, 16, 8);
86 TEST_UNARY_OP(INSN_NAME, int, s, 16, 32, 4);
87 TEST_UNARY_OP(INSN_NAME, int, s, 32, 64, 2);
88 TEST_UNARY_OP(INSN_NAME, uint, u, 8, 16, 8);
89 TEST_UNARY_OP(INSN_NAME, uint, u, 16, 32, 4);
90 TEST_UNARY_OP(INSN_NAME, uint, u, 32, 64, 2);
91
92 dump_results_hex (TEST_MSG);
93
94
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020095 /* Fill input vector with arbitrary values which cause an cumulative
96 saturation. */
Christophe Lyonf2053672014-12-16 10:26:00 +010097 VDUP(vector, q, int, s, 16, 8, 0x1234);
98 VDUP(vector, q, int, s, 32, 4, 0x12345678);
99 VDUP(vector, q, int, s, 64, 2, 0x1234567890ABLL);
100 VDUP(vector, q, uint, u, 16, 8, 0x8234);
101 VDUP(vector, q, uint, u, 32, 4, 0x87654321);
102 VDUP(vector, q, uint, u, 64, 2, 0x8765432187654321ULL);
Christophe Lyon073831a2011-01-24 17:37:40 +0100103
104 /* Apply a unary operator named INSN_NAME */
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +0200105 fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG);
Christophe Lyon073831a2011-01-24 17:37:40 +0100106 TEST_UNARY_OP(INSN_NAME, int, s, 8, 16, 8);
107 TEST_UNARY_OP(INSN_NAME, int, s, 16, 32, 4);
108 TEST_UNARY_OP(INSN_NAME, int, s, 32, 64, 2);
109 TEST_UNARY_OP(INSN_NAME, uint, u, 8, 16, 8);
110 TEST_UNARY_OP(INSN_NAME, uint, u, 16, 32, 4);
111 TEST_UNARY_OP(INSN_NAME, uint, u, 32, 64, 2);
112
113 dump_results_hex (TEST_MSG);
114}