blob: cd04bf8f3456c8a2d9a9b2aa79d0bd6def10bd9a [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 "VSET_LANE/VSET_LANEQ"
35void exec_vset_lane (void)
36{
37 /* vec=vset_lane(val, vec, lane), then store the result. */
38#define TEST_VSET_LANE_HERE(Q, T1, T2, W, N, V, L) \
39 VECT_VAR(vector, T1, W, N) = \
40 vset##Q##_lane_##T2##W(V, \
41 VECT_VAR(vector, T1, W, N), \
42 L); \
43 vst1##Q##_##T2##W(VECT_VAR(result, T1, W, N), VECT_VAR(vector, T1, W, N))
44
45 /* With ARM RVCT, we need to declare variables before any executable
46 statement */
47 DECL_VARIABLE_ALL_VARIANTS(vector);
48
49 clean_results ();
50
51 /* Initialize input "vector" from "buffer" */
Christophe Lyonf2053672014-12-16 10:26:00 +010052 TEST_MACRO_ALL_VARIANTS_2_5(VLOAD, vector, buffer);
53 VLOAD(vector, buffer, , float, f, 32, 2);
54 VLOAD(vector, buffer, q, float, f, 32, 4);
Christophe Lyon073831a2011-01-24 17:37:40 +010055
56 /* Choose value and lane arbitrarily */
57 TEST_VSET_LANE_HERE(, int, s, 8, 8, 0x11, 7);
58 TEST_VSET_LANE_HERE(, int, s, 16, 4, 0x22, 3);
59 TEST_VSET_LANE_HERE(, int, s, 32, 2, 0x33, 1);
60 TEST_VSET_LANE_HERE(, int, s, 64, 1, 0x44, 0);
61 TEST_VSET_LANE_HERE(, uint, u, 8, 8, 0x55, 6);
62 TEST_VSET_LANE_HERE(, uint, u, 16, 4, 0x66, 2);
63 TEST_VSET_LANE_HERE(, uint, u, 32, 2, 0x77, 1);
64 TEST_VSET_LANE_HERE(, uint, u, 64, 1, 0x88, 0);
Christophe Lyon80902f62013-03-29 16:26:42 +010065 TEST_VSET_LANE_HERE(, poly, p, 8, 8, 0x55, 6);
66 TEST_VSET_LANE_HERE(, poly, p, 16, 4, 0x66, 2);
Christophe Lyonbd9ecf42011-07-19 16:30:50 +020067 TEST_VSET_LANE_HERE(, float, f, 32, 2, 33.2f, 1);
Christophe Lyon073831a2011-01-24 17:37:40 +010068
69 TEST_VSET_LANE_HERE(q, int, s, 8, 16, 0x99, 15);
70 TEST_VSET_LANE_HERE(q, int, s, 16, 8, 0xAA, 5);
71 TEST_VSET_LANE_HERE(q, int, s, 32, 4, 0xBB, 3);
72 TEST_VSET_LANE_HERE(q, int, s, 64, 2, 0xCC, 1);
73 TEST_VSET_LANE_HERE(q, uint, u, 8, 16, 0xDD, 14);
74 TEST_VSET_LANE_HERE(q, uint, u, 16, 8, 0xEE, 6);
75 TEST_VSET_LANE_HERE(q, uint, u, 32, 4, 0xFF, 2);
76 TEST_VSET_LANE_HERE(q, uint, u, 64, 2, 0x11, 1);
Christophe Lyon80902f62013-03-29 16:26:42 +010077 TEST_VSET_LANE_HERE(q, poly, p, 8, 16, 0xDD, 14);
78 TEST_VSET_LANE_HERE(q, poly, p, 16, 8, 0xEE, 6);
Christophe Lyonbd9ecf42011-07-19 16:30:50 +020079 TEST_VSET_LANE_HERE(q, float, f, 32, 4, 11.2f, 3);
Christophe Lyon073831a2011-01-24 17:37:40 +010080
81 dump_results_hex (TEST_MSG);
82}