blob: d5eb80dda9025a8d0eb6169fc913a7ee739c8c50 [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 "VLD1_DUP/VLD1_DUPQ"
35void exec_vld1_dup (void)
36{
37 int i;
38
39 /* Fill vector with buffer item #i */
40#define TEST_VLD1_DUP(VAR, BUF, Q, T1, T2, W, N) \
41 VECT_VAR(VAR, T1, W, N) = \
42 vld1##Q##_dup_##T2##W(&VECT_VAR(BUF, T1, W, N)[i]); \
43 vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N), VECT_VAR(VAR, T1, W, N))
44
45 /* With ARM RVCT, we need to declare variables before any executable
46 statement */
47 DECL_VARIABLE_ALL_VARIANTS(vector);
Christophe Lyond98beba2016-08-24 18:02:41 +020048#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
Christophe Lyon34adaf62013-04-11 15:05:18 +020049 DECL_VARIABLE(vector, float, 16, 4);
50 DECL_VARIABLE(vector, float, 16, 8);
51#endif
Christophe Lyon073831a2011-01-24 17:37:40 +010052
53 /* Try to read different places from the input buffer */
54 for (i=0; i<3; i++) {
55 clean_results ();
56
Christophe Lyon01af0a52013-01-17 17:23:11 +010057 TEST_MACRO_ALL_VARIANTS_2_5(TEST_VLD1_DUP, vector, buffer_dup);
Christophe Lyon073831a2011-01-24 17:37:40 +010058
Christophe Lyon01af0a52013-01-17 17:23:11 +010059 TEST_VLD1_DUP(vector, buffer_dup, , float, f, 32, 2);
60 TEST_VLD1_DUP(vector, buffer_dup, q, float, f, 32, 4);
Christophe Lyon073831a2011-01-24 17:37:40 +010061
Christophe Lyond98beba2016-08-24 18:02:41 +020062#if defined(__ARM_FP16_FORMAT_IEEE) && ( ((__ARM_FP & 0x2) != 0) || ((__ARM_NEON_FP16_INTRINSICS & 1) != 0) )
Christophe Lyon34adaf62013-04-11 15:05:18 +020063 TEST_VLD1_DUP(vector, buffer_dup, , float, f, 16, 4);
64 TEST_VLD1_DUP(vector, buffer_dup, q, float, f, 16, 8);
65#endif
66
Christophe Lyon073831a2011-01-24 17:37:40 +010067 dump_results_hex (TEST_MSG);
68 }
69}