blob: 59c3672981612aced99a1e8420de6f1fab4ff0fc [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
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 vqdmlal
36#define TEST_MSG "VQDMLAL"
37#endif
38
39
40#define FNNAME1(NAME) void exec_ ## NAME (void)
41#define FNNAME(NAME) FNNAME1(NAME)
42
43FNNAME (INSN_NAME)
44{
45 /* vector_res = OP(vector, vector3, vector4),
46 then store the result. */
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020047#define TEST_VQDMLXL1(INSN, T1, T2, W, W2, N) \
Christophe Lyonc1cc7822015-01-20 16:04:24 +010048 Set_Neon_Cumulative_Sat(0, VECT_VAR(vector_res, T1, W, N)); \
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020049 VECT_VAR(vector_res, T1, W, N) = \
50 INSN##_##T2##W2(VECT_VAR(vector, T1, W, N), \
51 VECT_VAR(vector3, T1, W2, N), \
52 VECT_VAR(vector4, T1, W2, N)); \
53 vst1q_##T2##W(VECT_VAR(result, T1, W, N), \
54 VECT_VAR(vector_res, T1, W, N)); \
55 dump_neon_cumulative_sat(TEST_MSG, xSTR(INSN##_##T2##W2), \
56 xSTR(T1), W, N)
Christophe Lyon073831a2011-01-24 17:37:40 +010057
58#define TEST_VQDMLXL(INSN, T1, T2, W, W2, N) \
59 TEST_VQDMLXL1(INSN, T1, T2, W, W2, N)
60
61 /* With ARM RVCT, we need to declare variables before any executable
62 statement */
63 DECL_VARIABLE(vector, int, 32, 4);
64 DECL_VARIABLE(vector3, int, 16, 4);
65 DECL_VARIABLE(vector4, int, 16, 4);
66 DECL_VARIABLE(vector_res, int, 32, 4);
67 DECL_VARIABLE(vector, int, 64, 2);
68 DECL_VARIABLE(vector3, int, 32, 2);
69 DECL_VARIABLE(vector4, int, 32, 2);
70 DECL_VARIABLE(vector_res, int, 64, 2);
71
72 clean_results ();
73
Christophe Lyonf2053672014-12-16 10:26:00 +010074 VLOAD(vector, buffer, q, int, s, 32, 4);
75 VLOAD(vector, buffer, q, int, s, 64, 2);
Christophe Lyon073831a2011-01-24 17:37:40 +010076
Christophe Lyonf2053672014-12-16 10:26:00 +010077 VDUP(vector3, , int, s, 16, 4, 0x55);
78 VDUP(vector4, , int, s, 16, 4, 0xBB);
79 VDUP(vector3, , int, s, 32, 2, 0x55);
80 VDUP(vector4, , int, s, 32, 2, 0xBB);
Christophe Lyon073831a2011-01-24 17:37:40 +010081
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020082 fprintf(ref_file, "\n%s cumulative saturation output:\n", TEST_MSG);
Christophe Lyon073831a2011-01-24 17:37:40 +010083 TEST_VQDMLXL(INSN_NAME, int, s, 32, 16, 4);
84 TEST_VQDMLXL(INSN_NAME, int, s, 64, 32, 2);
85 dump_results_hex (TEST_MSG);
86
87
Christophe Lyonf2053672014-12-16 10:26:00 +010088 VDUP(vector3, , int, s, 16, 4, 0x8000);
89 VDUP(vector4, , int, s, 16, 4, 0x8000);
90 VDUP(vector3, , int, s, 32, 2, 0x80000000);
91 VDUP(vector4, , int, s, 32, 2, 0x80000000);
Christophe Lyon073831a2011-01-24 17:37:40 +010092
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020093 fprintf(ref_file, "\n%s cumulative saturation output:\n",
94 TEST_MSG " (check mul cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +010095 TEST_VQDMLXL(INSN_NAME, int, s, 32, 16, 4);
96 TEST_VQDMLXL(INSN_NAME, int, s, 64, 32, 2);
Christophe Lyon4a6e5cc2014-06-03 22:47:52 +020097 dump_results_hex2 (TEST_MSG, " (check mul cumulative saturation)");
Christophe Lyon073831a2011-01-24 17:37:40 +010098}