• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2 
3 Copyright (c) 2009, 2010, 2011 STMicroelectronics
4 Written by Christophe Lyon
5 
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to deal
8 in the Software without restriction, including without limitation the rights
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
12 
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15 
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 THE SOFTWARE.
23 
24 */
25 
26 #if defined(__arm__) || defined(__aarch64__)
27 #include <arm_neon.h>
28 #else
29 #include "stm-arm-neon.h"
30 #endif
31 
32 #include "stm-arm-neon-ref.h"
33 
34 #ifndef INSN_NAME
35 #define INSN_NAME vmla
36 #define TEST_MSG "VMLA_N"
37 #endif
38 
39 #define FNNAME1(NAME) void exec_ ## NAME ##_n (void)
40 #define FNNAME(NAME) FNNAME1(NAME)
41 
FNNAME(INSN_NAME)42 FNNAME (INSN_NAME)
43 {
44 #define DECL_VMLX_N(VAR)			\
45   DECL_VARIABLE(VAR, int, 16, 4);		\
46   DECL_VARIABLE(VAR, int, 32, 2);		\
47   DECL_VARIABLE(VAR, uint, 16, 4);		\
48   DECL_VARIABLE(VAR, uint, 32, 2);		\
49   DECL_VARIABLE(VAR, float, 32, 2);		\
50   DECL_VARIABLE(VAR, int, 16, 8);		\
51   DECL_VARIABLE(VAR, int, 32, 4);		\
52   DECL_VARIABLE(VAR, uint, 16, 8);		\
53   DECL_VARIABLE(VAR, float, 32, 4);		\
54   DECL_VARIABLE(VAR, uint, 32, 4)
55 
56   /* vector_res = vmlx_n(vector, vector2, val),
57      then store the result.  */
58 #define TEST_VMLX_N1(INSN, Q, T1, T2, W, N, V)          \
59   VECT_VAR(vector_res, T1, W, N) =                      \
60     INSN##Q##_n_##T2##W(VECT_VAR(vector, T1, W, N),     \
61 			VECT_VAR(vector2, T1, W, N),    \
62 			V);                             \
63   vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N),         \
64 		    VECT_VAR(vector_res, T1, W, N))
65 
66 #define TEST_VMLX_N(INSN, Q, T1, T2, W, N, V)	\
67   TEST_VMLX_N1(INSN, Q, T1, T2, W, N, V)
68 
69   /* With ARM RVCT, we need to declare variables before any executable
70      statement */
71   DECL_VMLX_N(vector);
72   DECL_VMLX_N(vector2);
73   DECL_VMLX_N(vector_res);
74 
75   clean_results ();
76 
77   VLOAD(vector, buffer, , int, s, 16, 4);
78   VLOAD(vector, buffer, , int, s, 32, 2);
79   VLOAD(vector, buffer, , uint, u, 16, 4);
80   VLOAD(vector, buffer, , uint, u, 32, 2);
81   VLOAD(vector, buffer, , float, f, 32, 2);
82   VLOAD(vector, buffer, q, int, s, 16, 8);
83   VLOAD(vector, buffer, q, int, s, 32, 4);
84   VLOAD(vector, buffer, q, uint, u, 16, 8);
85   VLOAD(vector, buffer, q, uint, u, 32, 4);
86   VLOAD(vector, buffer, q, float, f, 32, 4);
87 
88   VDUP(vector2, , int, s, 16, 4, 0x55);
89   VDUP(vector2, , int, s, 32, 2, 0x55);
90   VDUP(vector2, , uint, u, 16, 4, 0x55);
91   VDUP(vector2, , uint, u, 32, 2, 0x55);
92   VDUP(vector2, , float, f, 32, 2, 55.2f);
93   VDUP(vector2, q, int, s, 16, 8, 0x55);
94   VDUP(vector2, q, int, s, 32, 4, 0x55);
95   VDUP(vector2, q, uint, u, 16, 8, 0x55);
96   VDUP(vector2, q, uint, u, 32, 4, 0x55);
97   VDUP(vector2, q, float, f, 32, 4, 55.9f);
98 
99   /* Choose multiplier arbitrarily */
100   TEST_VMLX_N(INSN_NAME, , int, s, 16, 4, 0x11);
101   TEST_VMLX_N(INSN_NAME, , int, s, 32, 2, 0x22);
102   TEST_VMLX_N(INSN_NAME, , uint, u, 16, 4, 0x33);
103   TEST_VMLX_N(INSN_NAME, , uint, u, 32, 2, 0x44);
104   TEST_VMLX_N(INSN_NAME, , float, f, 32, 2, 22.3f);
105   TEST_VMLX_N(INSN_NAME, q, int, s, 16, 8, 0x55);
106   TEST_VMLX_N(INSN_NAME, q, int, s, 32, 4, 0x66);
107   TEST_VMLX_N(INSN_NAME, q, uint, u, 16, 8, 0x77);
108   TEST_VMLX_N(INSN_NAME, q, uint, u, 32, 4, 0x88);
109   TEST_VMLX_N(INSN_NAME, q, float, f, 32, 4, 66.7f);
110 
111   dump_results_hex (TEST_MSG);
112 }
113