blob: bf92c6bbda873f164d925a8257bf5cdda0b8e60f [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 vqdmull
35#define TEST_MSG "VQDMULL_LANE"
36#define FNNAME1(NAME) void exec_ ## NAME ## _lane (void)
37#define FNNAME(NAME) FNNAME1(NAME)
38
39FNNAME (INSN)
40{
41 int i;
42
43 /* vector_res = vqdmull_lane(vector,vector2,lane), then store the result. */
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020044#define TEST_VQDMULL_LANE2(INSN, T1, T2, W, W2, N, L) \
Christophe Lyonc1cc7822015-01-20 16:04:24 +010045 Set_Neon_Cumulative_Sat(0, VECT_VAR(vector_res, T1, W2, N)); \
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020046 VECT_VAR(vector_res, T1, W2, N) = \
47 INSN##_lane_##T2##W(VECT_VAR(vector, T1, W, N), \
48 VECT_VAR(vector2, T1, W, N), \
49 L); \
50 vst1q_##T2##W2(VECT_VAR(result, T1, W2, N), \
51 VECT_VAR(vector_res, T1, W2, N)); \
52 dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##_lane_##T2##W), \
53 xSTR(T1), W, N)
Christophe Lyon073831a2011-01-24 17:37:40 +010054
55 /* Two auxliary macros are necessary to expand INSN */
56#define TEST_VQDMULL_LANE1(INSN, T1, T2, W, W2, N, L) \
57 TEST_VQDMULL_LANE2(INSN, T1, T2, W, W2, N, L)
58
59#define TEST_VQDMULL_LANE(T1, T2, W, W2, N, L) \
60 TEST_VQDMULL_LANE1(INSN, T1, T2, W, W2, N, L)
61
62
63 /* With ARM RVCT, we need to declare variables before any executable
64 statement */
65 DECL_VARIABLE(vector, int, 16, 4);
66 DECL_VARIABLE(vector, int, 32, 2);
67 DECL_VARIABLE(vector2, int, 16, 4);
68 DECL_VARIABLE(vector2, int, 32, 2);
69
70 DECL_VARIABLE(vector_res, int, 32, 4);
71 DECL_VARIABLE(vector_res, int, 64, 2);
72
73 clean_results ();
74
75 /* Initialize vector */
Christophe Lyonf2053672014-12-16 10:26:00 +010076 VDUP(vector, , int, s, 16, 4, 0x1000);
77 VDUP(vector, , int, s, 32, 2, 0x1000);
Christophe Lyon073831a2011-01-24 17:37:40 +010078
79 /* Initialize vector2 */
Christophe Lyonf2053672014-12-16 10:26:00 +010080 VDUP(vector2, , int, s, 16, 4, 0x4);
81 VDUP(vector2, , int, s, 32, 2, 0x2);
Christophe Lyon073831a2011-01-24 17:37:40 +010082
83 /* Choose lane arbitrarily */
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_VQDMULL_LANE(int, s, 16, 32, 4, 2);
86 TEST_VQDMULL_LANE(int, s, 32, 64, 2, 1);
87
88
89 fprintf(ref_file, "\n%s output:\n", TEST_MSG);
Christophe Lyonbf218262014-07-10 15:53:15 +020090 fprintf(gcc_tests_file, "\n%s output:\n", TEST_MSG);
Christophe Lyon073831a2011-01-24 17:37:40 +010091 DUMP(TEST_MSG, int, 32, 4, PRIx32);
92 DUMP(TEST_MSG, int, 64, 2, PRIx64);
93
94
95
Christophe Lyonf2053672014-12-16 10:26:00 +010096 VDUP(vector, , int, s, 16, 4, 0x8000);
97 VDUP(vector2, , int, s, 16, 4, 0x8000);
98 VDUP(vector, , int, s, 32, 2, 0x80000000);
99 VDUP(vector2, , int, s, 32, 2, 0x80000000);
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +0200100 fprintf(ref_file, "\n%s cumulative saturation output:\n",
101 TEST_MSG " (check mul cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +0100102 TEST_VQDMULL_LANE(int, s, 16, 32, 4, 2);
103 TEST_VQDMULL_LANE(int, s, 32, 64, 2, 1);
104
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +0200105 fprintf (ref_file, "\n%s output:\n",
106 TEST_MSG " (check mul cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +0100107 DUMP(TEST_MSG, int, 32, 4, PRIx32);
108 DUMP(TEST_MSG, int, 64, 2, PRIx64);
109}