blob: 9d07c2356db5ceca0092ab2df377ed68f62df628 [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
35#define FNNAME1(NAME) void exec_ ## NAME (void)
36#define FNNAME(NAME) FNNAME1(NAME)
37
38FNNAME (INSN_NAME)
39{
40 int i;
41
42 /* Basic test: y=vcomp(x,x), then store the result. */
43#define TEST_VCOMP1(INSN, Q, T1, T2, T3, W, N) \
44 VECT_VAR(vector_res, T3, W, N) = \
45 INSN##Q##_##T2##W(VECT_VAR(vector, T1, W, N), \
46 VECT_VAR(vector2, T1, W, N)); \
47 vst1##Q##_u##W(VECT_VAR(result, T3, W, N), VECT_VAR(vector_res, T3, W, N))
48
49#define TEST_VCOMP(INSN, Q, T1, T2, T3, W, N) \
50 TEST_VCOMP1(INSN, Q, T1, T2, T3, W, N)
51
52 /* With ARM RVCT, we need to declare variables before any executable
53 statement */
54 DECL_VARIABLE(vector, float, 32, 2);
55 DECL_VARIABLE(vector, float, 32, 4);
56 DECL_VARIABLE(vector2, float, 32, 2);
57 DECL_VARIABLE(vector2, float, 32, 4);
58 DECL_VARIABLE(vector_res, uint, 32, 2);
59 DECL_VARIABLE(vector_res, uint, 32, 4);
60
61 clean_results ();
62
Christophe Lyonf2053672014-12-16 10:26:00 +010063 VLOAD(vector, buffer, , float, f, 32, 2);
64 VLOAD(vector, buffer, q, float, f, 32, 4);
Christophe Lyon073831a2011-01-24 17:37:40 +010065
66 /* Choose init value arbitrarily, will be used for vector
67 comparison */
Christophe Lyonf2053672014-12-16 10:26:00 +010068 VDUP(vector2, , float, f, 32, 2, -16.0f);
69 VDUP(vector2, q, float, f, 32, 4, -14.0f);
Christophe Lyon073831a2011-01-24 17:37:40 +010070
71 fprintf(ref_file, "\n%s output:\n", TEST_MSG);
Christophe Lyonbf218262014-07-10 15:53:15 +020072 fprintf(gcc_tests_file, "\n%s output:\n", TEST_MSG);
Christophe Lyon073831a2011-01-24 17:37:40 +010073 TEST_VCOMP(INSN_NAME, , float, f, uint, 32, 2);
74 DUMP(TEST_MSG, uint, 32, 2, PRIx32);
75
76 TEST_VCOMP(INSN_NAME, q, float, f, uint, 32, 4);
77 DUMP(TEST_MSG, uint, 32, 4, PRIx32);
78
Christophe Lyonf2053672014-12-16 10:26:00 +010079 VDUP(vector2, , float, f, 32, 2, -10.0f);
80 VDUP(vector2, q, float, f, 32, 4, 10.0f);
Christophe Lyon073831a2011-01-24 17:37:40 +010081
82 fprintf(ref_file, "\n%s output:\n", TEST_MSG);
Christophe Lyonbf218262014-07-10 15:53:15 +020083 fprintf(gcc_tests_file, "\n%s output:\n", TEST_MSG);
Christophe Lyon073831a2011-01-24 17:37:40 +010084 TEST_VCOMP(INSN_NAME, , float, f, uint, 32, 2);
85 DUMP(TEST_MSG, uint, 32, 2, PRIx32);
86
87 TEST_VCOMP(INSN_NAME, q, float, f, uint, 32, 4);
88 DUMP(TEST_MSG, uint, 32, 4, PRIx32);
89}