blob: 2225749b4b9a26172b655c00654a6d2da1aecd2c [file] [log] [blame]
Christophe Lyon073831a2011-01-24 17:37:40 +01001/*
2
Christophe Lyon80902f62013-03-29 16:26:42 +01003Copyright (c) 2009, 2010, 2011, 2013 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#define TEST_MSG "VST1_LANE/VST1_LANEQ"
35void exec_vst1_lane (void)
36{
37#define TEST_VST1_LANE(Q, T1, T2, W, N, L) \
38 VECT_VAR(vector, T1, W, N) = \
39 vld1##Q##_##T2##W(VECT_VAR(buffer, T1, W, N)); \
40 vst1##Q##_lane_##T2##W(VECT_VAR(result, T1, W, N), \
41 VECT_VAR(vector, T1, W, N), L)
42
43 /* With ARM RVCT, we need to declare variables before any executable
44 statement */
45 DECL_VARIABLE_ALL_VARIANTS(vector);
Christophe Lyond98beba2016-08-24 18:02:41 +020046#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
Christophe Lyon34adaf62013-04-11 15:05:18 +020047 DECL_VARIABLE(vector, float, 16, 4);
48 DECL_VARIABLE(vector, float, 16, 8);
49#endif
Christophe Lyon073831a2011-01-24 17:37:40 +010050
51 clean_results ();
52
53 /* Choose lane arbitrarily */
54 TEST_VST1_LANE(, int, s, 8, 8, 7);
55 TEST_VST1_LANE(, int, s, 16, 4, 3);
56 TEST_VST1_LANE(, int, s, 32, 2, 1);
57 TEST_VST1_LANE(, int, s, 64, 1, 0);
58 TEST_VST1_LANE(, uint, u, 8, 8, 6);
59 TEST_VST1_LANE(, uint, u, 16, 4, 2);
60 TEST_VST1_LANE(, uint, u, 32, 2, 0);
61 TEST_VST1_LANE(, uint, u, 64, 1, 0);
Christophe Lyon80902f62013-03-29 16:26:42 +010062 TEST_VST1_LANE(, poly, p, 8, 8, 6);
63 TEST_VST1_LANE(, poly, p, 16, 4, 2);
Christophe Lyon073831a2011-01-24 17:37:40 +010064 TEST_VST1_LANE(, float, f, 32, 2, 1);
Christophe Lyond98beba2016-08-24 18:02:41 +020065#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
Christophe Lyon34adaf62013-04-11 15:05:18 +020066 TEST_VST1_LANE(, float, f, 16, 4, 2);
67#endif
Christophe Lyon073831a2011-01-24 17:37:40 +010068
69 TEST_VST1_LANE(q, int, s, 8, 16, 15);
70 TEST_VST1_LANE(q, int, s, 16, 8, 5);
71 TEST_VST1_LANE(q, int, s, 32, 4, 1);
72 TEST_VST1_LANE(q, int, s, 64, 2, 1);
73 TEST_VST1_LANE(q, uint, u, 8, 16, 10);
74 TEST_VST1_LANE(q, uint, u, 16, 8, 4);
75 TEST_VST1_LANE(q, uint, u, 32, 4, 3);
76 TEST_VST1_LANE(q, uint, u, 64, 2, 0);
Christophe Lyon80902f62013-03-29 16:26:42 +010077 TEST_VST1_LANE(q, poly, p, 8, 16, 10);
78 TEST_VST1_LANE(q, poly, p, 16, 8, 4);
Christophe Lyon073831a2011-01-24 17:37:40 +010079 TEST_VST1_LANE(q, float, f, 32, 4, 1);
Christophe Lyond98beba2016-08-24 18:02:41 +020080#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
Christophe Lyon34adaf62013-04-11 15:05:18 +020081 TEST_VST1_LANE(q, float, f, 16, 8, 5);
82#endif
Christophe Lyon073831a2011-01-24 17:37:40 +010083
84 dump_results_hex (TEST_MSG);
85}