blob: 638785caf414f7b047b1631837231e2aefc84b83 [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#ifndef INSN_NAME
35#define INSN_NAME vaddw
36#define TEST_MSG "VADDW"
37#endif
38
39#define FNNAME1(NAME) void exec_ ## NAME (void)
40#define FNNAME(NAME) FNNAME1(NAME)
41
42FNNAME (INSN_NAME)
43{
44 /* Basic test: y=vaddw(x,x), then store the result. */
45#define TEST_VADDW1(INSN, T1, T2, W, W2, N) \
46 VECT_VAR(vector_res, T1, W2, N) = \
47 INSN##_##T2##W(VECT_VAR(vector, T1, W2, N), \
48 VECT_VAR(vector2, T1, W, N)); \
49 vst1q_##T2##W2(VECT_VAR(result, T1, W2, N), VECT_VAR(vector_res, T1, W2, N))
50
51#define TEST_VADDW(INSN, T1, T2, W, W2, N) \
52 TEST_VADDW1(INSN, T1, T2, W, W2, N)
53
54 /* With ARM RVCT, we need to declare variables before any executable
55 statement */
56 DECL_VARIABLE(vector, int, 16, 8);
57 DECL_VARIABLE(vector, int, 32, 4);
58 DECL_VARIABLE(vector, int, 64, 2);
59 DECL_VARIABLE(vector, uint, 16, 8);
60 DECL_VARIABLE(vector, uint, 32, 4);
61 DECL_VARIABLE(vector, uint, 64, 2);
62
63 DECL_VARIABLE(vector2, int, 8, 8);
64 DECL_VARIABLE(vector2, int, 16, 4);
65 DECL_VARIABLE(vector2, int, 32, 2);
66 DECL_VARIABLE(vector2, uint, 8, 8);
67 DECL_VARIABLE(vector2, uint, 16, 4);
68 DECL_VARIABLE(vector2, uint, 32, 2);
69
70 DECL_VARIABLE(vector_res, int, 16, 8);
71 DECL_VARIABLE(vector_res, int, 32, 4);
72 DECL_VARIABLE(vector_res, int, 64, 2);
73 DECL_VARIABLE(vector_res, uint, 16, 8);
74 DECL_VARIABLE(vector_res, uint, 32, 4);
75 DECL_VARIABLE(vector_res, uint, 64, 2);
76
77 clean_results ();
78
79 /* Initialize input "vector" from "buffer" */
Christophe Lyonf2053672014-12-16 10:26:00 +010080 VLOAD(vector, buffer, q, int, s, 16, 8);
81 VLOAD(vector, buffer, q, int, s, 32, 4);
82 VLOAD(vector, buffer, q, int, s, 64, 2);
83 VLOAD(vector, buffer, q, uint, u, 16, 8);
84 VLOAD(vector, buffer, q, uint, u, 32, 4);
85 VLOAD(vector, buffer, q, uint, u, 64, 2);
Christophe Lyon073831a2011-01-24 17:37:40 +010086
87 /* Choose init value arbitrarily */
Christophe Lyonf2053672014-12-16 10:26:00 +010088 VDUP(vector2, , int, s, 8, 8, -13);
89 VDUP(vector2, , int, s, 16, 4, -14);
90 VDUP(vector2, , int, s, 32, 2, -16);
91 VDUP(vector2, , uint, u, 8, 8, 0xf3);
92 VDUP(vector2, , uint, u, 16, 4, 0xfff1);
93 VDUP(vector2, , uint, u, 32, 2, 0xfffffff0);
Christophe Lyon073831a2011-01-24 17:37:40 +010094
95 TEST_VADDW(INSN_NAME, int, s, 8, 16, 8);
96 TEST_VADDW(INSN_NAME, int, s, 16, 32, 4);
97 TEST_VADDW(INSN_NAME, int, s, 32, 64, 2);
98 TEST_VADDW(INSN_NAME, uint, u, 8, 16, 8);
99 TEST_VADDW(INSN_NAME, uint, u, 16, 32, 4);
100 TEST_VADDW(INSN_NAME, uint, u, 32, 64, 2);
101
102 /* FIXME: only a few result buffers are used, but we output all of them */
103 dump_results_hex (TEST_MSG);
104}