blob: d009377fd7bb9b8e6a82b92604f1c030a90f791d [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
26#ifdef __arm__
27#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 vqdmulh
35#define TEST_MSG "VQDMULH_N"
36#define FNNAME1(NAME) void exec_ ## NAME ## _n (void)
37#define FNNAME(NAME) FNNAME1(NAME)
38
39FNNAME (INSN)
40{
41 int i;
42
43 /* vector_res = vqdmulh_n(vector,val), then store the result. */
44#define TEST_VQDMULH_N2(INSN, Q, T1, T2, W, N, L) \
Christophe Lyoneb8034b2012-05-09 17:06:10 +020045 Set_Neon_Overflow(0); \
Christophe Lyon073831a2011-01-24 17:37:40 +010046 VECT_VAR(vector_res, T1, W, N) = \
47 INSN##Q##_n_##T2##W(VECT_VAR(vector, T1, W, N), \
48 L); \
49 vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N), \
50 VECT_VAR(vector_res, T1, W, N)); \
51 dump_neon_overflow(TEST_MSG, xSTR(INSN##Q##_n_##T2##W))
52
53 /* Two auxliary macros are necessary to expand INSN */
54#define TEST_VQDMULH_N1(INSN, Q, T1, T2, W, N, L) \
55 TEST_VQDMULH_N2(INSN, Q, T1, T2, W, N, L)
56
57#define TEST_VQDMULH_N(Q, T1, T2, W, N, L) \
58 TEST_VQDMULH_N1(INSN, Q, T1, T2, W, N, L)
59
60
61 /* With ARM RVCT, we need to declare variables before any executable
62 statement */
63 DECL_VARIABLE(vector, int, 16, 4);
64 DECL_VARIABLE(vector, int, 32, 2);
65 DECL_VARIABLE(vector, int, 16, 8);
66 DECL_VARIABLE(vector, int, 32, 4);
67
68 DECL_VARIABLE(vector_res, int, 16, 4);
69 DECL_VARIABLE(vector_res, int, 32, 2);
70 DECL_VARIABLE(vector_res, int, 16, 8);
71 DECL_VARIABLE(vector_res, int, 32, 4);
72
73 clean_results ();
74
75
76 /* Initialize vector */
77 TEST_VDUP(vector, , int, s, 16, 4, 0x1000);
78 TEST_VDUP(vector, , int, s, 32, 2, 0x100023);
79 TEST_VDUP(vector, q, int, s, 16, 8, 0x1000);
80 TEST_VDUP(vector, q, int, s, 32, 4, 0x100045);
81
82 /* Choose multiplier arbitrarily */
83 fprintf(ref_file, "\n%s overflow output:\n", TEST_MSG);
84 TEST_VQDMULH_N(, int, s, 16, 4, 0xCF);
85 TEST_VQDMULH_N(, int, s, 32, 2, 0x2344);
86 TEST_VQDMULH_N(q, int, s, 16, 8, 0x80);
87 TEST_VQDMULH_N(q, int, s, 32, 4, 0x5422);
88
89 fprintf(ref_file, "\n%s output:\n", TEST_MSG);
90 DUMP(TEST_MSG, int, 16, 4, PRIx16);
91 DUMP(TEST_MSG, int, 32, 2, PRIx32);
92 DUMP(TEST_MSG, int, 16, 8, PRIx16);
93 DUMP(TEST_MSG, int, 32, 4, PRIx32);
94
95
96
97 TEST_VDUP(vector, , int, s, 16, 4, 0x8000);
98 TEST_VDUP(vector, , int, s, 32, 2, 0x80000000);
99 TEST_VDUP(vector, q, int, s, 16, 8, 0x8000);
100 TEST_VDUP(vector, q, int, s, 32, 4, 0x80000000);
101 fprintf(ref_file, "\n%s overflow output:\n",
102 TEST_MSG " (check mul overflow)");
103 TEST_VQDMULH_N(, int, s, 16, 4, 0x8000);
104 TEST_VQDMULH_N(, int, s, 32, 2, 0x80000000);
105 TEST_VQDMULH_N(q, int, s, 16, 8, 0x8000);
106 TEST_VQDMULH_N(q, int, s, 32, 4, 0x80000000);
107 dump_results_hex2 (TEST_MSG, " (check mul overflow)");
108}