blob: e9ec9758ff6637c2928e5b6a1e9714b76733f9a3 [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 "VABAL"
35void exec_vabal (void)
36{
37 /* Basic test: v4=vabal(v1,v2,v3), then store the result. */
38#define TEST_VABAL(T1, T2, W, W2, N) \
39 VECT_VAR(vector_res, T1, W2, N) = \
40 vabal_##T2##W(VECT_VAR(vector1, T1, W2, N), \
41 VECT_VAR(vector2, T1, W, N), \
42 VECT_VAR(vector3, T1, W, N)); \
43 vst1q_##T2##W2(VECT_VAR(result, T1, W2, N), VECT_VAR(vector_res, T1, W2, N))
44
45 /* With ARM RVCT, we need to declare variables before any executable
46 statement */
47#define DECL_VABAL_VAR_LONG(VAR) \
48 DECL_VARIABLE(VAR, int, 16, 8); \
49 DECL_VARIABLE(VAR, int, 32, 4); \
50 DECL_VARIABLE(VAR, int, 64, 2); \
51 DECL_VARIABLE(VAR, uint, 16, 8); \
52 DECL_VARIABLE(VAR, uint, 32, 4); \
53 DECL_VARIABLE(VAR, uint, 64, 2)
54
55#define DECL_VABAL_VAR_SHORT(VAR) \
56 DECL_VARIABLE(VAR, int, 8, 8); \
57 DECL_VARIABLE(VAR, int, 16, 4); \
58 DECL_VARIABLE(VAR, int, 32, 2); \
59 DECL_VARIABLE(VAR, uint, 8, 8); \
60 DECL_VARIABLE(VAR, uint, 16, 4); \
61 DECL_VARIABLE(VAR, uint, 32, 2)
62
63 DECL_VABAL_VAR_LONG(vector1);
64 DECL_VABAL_VAR_SHORT(vector2);
65 DECL_VABAL_VAR_SHORT(vector3);
66 DECL_VABAL_VAR_LONG(vector_res);
67
68 clean_results ();
69
70 /* Initialize input "vector" from "buffer" */
Christophe Lyonf2053672014-12-16 10:26:00 +010071 VLOAD(vector1, buffer, q, int, s, 16, 8);
72 VLOAD(vector1, buffer, q, int, s, 32, 4);
73 VLOAD(vector1, buffer, q, int, s, 64, 2);
74 VLOAD(vector1, buffer, q, uint, u, 16, 8);
75 VLOAD(vector1, buffer, q, uint, u, 32, 4);
76 VLOAD(vector1, buffer, q, uint, u, 64, 2);
Christophe Lyon073831a2011-01-24 17:37:40 +010077
78
79 /* Choose init value arbitrarily */
Christophe Lyonf2053672014-12-16 10:26:00 +010080 VDUP(vector2, , int, s, 8, 8, 1);
81 VDUP(vector2, , int, s, 16, 4, -13);
82 VDUP(vector2, , int, s, 32, 2, 8);
83 VDUP(vector2, , uint, u, 8, 8, 1);
84 VDUP(vector2, , uint, u, 16, 4, 13);
85 VDUP(vector2, , uint, u, 32, 2, 8);
Christophe Lyon073831a2011-01-24 17:37:40 +010086
87 /* Choose init value arbitrarily */
Christophe Lyonf2053672014-12-16 10:26:00 +010088 VDUP(vector3, , int, s, 8, 8, -5);
89 VDUP(vector3, , int, s, 16, 4, 25);
90 VDUP(vector3, , int, s, 32, 2, -40);
91 VDUP(vector3, , uint, u, 8, 8, 100);
92 VDUP(vector3, , uint, u, 16, 4, 2340);
93 VDUP(vector3, , uint, u, 32, 2, 0xffffffff);
Christophe Lyon073831a2011-01-24 17:37:40 +010094
95 TEST_VABAL(int, s, 8, 16, 8);
96 TEST_VABAL(int, s, 16, 32, 4);
97 TEST_VABAL(int, s, 32, 64, 2);
98 TEST_VABAL(uint, u, 8, 16, 8);
99 TEST_VABAL(uint, u, 16, 32, 4);
100 TEST_VABAL(uint, u, 32, 64, 2);
101
102 dump_results_hex (TEST_MSG);
Christophe Lyonc8aa0f62011-09-26 18:00:27 +0200103
104 /* Use values that could lead to overflow intermediate
105 * calculations. */
Christophe Lyonf2053672014-12-16 10:26:00 +0100106 VDUP(vector2, , int, s, 8, 8, 0x80);
107 VDUP(vector2, , int, s, 16, 4, 0x8000);
108 VDUP(vector2, , int, s, 32, 2, 0x80000000);
109 VDUP(vector2, , uint, u, 8, 8, 1);
110 VDUP(vector2, , uint, u, 16, 4, 13);
111 VDUP(vector2, , uint, u, 32, 2, 8);
Christophe Lyonc8aa0f62011-09-26 18:00:27 +0200112
Christophe Lyonf2053672014-12-16 10:26:00 +0100113 VDUP(vector3, , int, s, 8, 8, 0x7f);
114 VDUP(vector3, , int, s, 16, 4, 0x7fff);
115 VDUP(vector3, , int, s, 32, 2, 0x7fffffff);
116 VDUP(vector3, , uint, u, 8, 8, 0xff);
117 VDUP(vector3, , uint, u, 16, 4, 0xffff);
118 VDUP(vector3, , uint, u, 32, 2, 0xffffffff);
Christophe Lyonc8aa0f62011-09-26 18:00:27 +0200119
120 TEST_VABAL(int, s, 8, 16, 8);
121 TEST_VABAL(int, s, 16, 32, 4);
122 TEST_VABAL(int, s, 32, 64, 2);
123 TEST_VABAL(uint, u, 8, 16, 8);
124 TEST_VABAL(uint, u, 16, 32, 4);
125 TEST_VABAL(uint, u, 32, 64, 2);
126
127 dump_results_hex2 (TEST_MSG, " test intermediate overflow");
Christophe Lyon073831a2011-01-24 17:37:40 +0100128}