Christophe Lyon | 073831a | 2011-01-24 17:37:40 +0100 | [diff] [blame] | 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 | |
Christophe Lyon | 1775be0 | 2014-07-10 13:46:54 +0200 | [diff] [blame^] | 26 | #if defined(__arm__) || defined(__aarch64__) |
Christophe Lyon | 073831a | 2011-01-24 17:37:40 +0100 | [diff] [blame] | 27 | #include <arm_neon.h> |
| 28 | #else |
Christophe Lyon | 0dab5f7 | 2011-07-19 17:14:09 +0200 | [diff] [blame] | 29 | #include "stm-arm-neon.h" |
Christophe Lyon | 073831a | 2011-01-24 17:37:40 +0100 | [diff] [blame] | 30 | #endif |
| 31 | |
| 32 | #include "stm-arm-neon-ref.h" |
| 33 | |
| 34 | #ifndef INSN_NAME |
| 35 | #define INSN_NAME vpadd |
| 36 | #define TEST_MSG "VPADD" |
| 37 | #endif |
| 38 | |
| 39 | #define FNNAME1(NAME) void exec_ ## NAME (void) |
| 40 | #define FNNAME(NAME) FNNAME1(NAME) |
| 41 | |
| 42 | FNNAME (INSN_NAME) |
| 43 | { |
| 44 | /* Basic test: y=OP(x), then store the result. */ |
| 45 | #define TEST_VPADD1(INSN, T1, T2, W, N) \ |
| 46 | VECT_VAR(vector_res, T1, W, N) = \ |
| 47 | INSN##_##T2##W(VECT_VAR(vector, T1, W, N), \ |
| 48 | VECT_VAR(vector, T1, W, N)); \ |
| 49 | vst1##_##T2##W(VECT_VAR(result, T1, W, N), \ |
| 50 | VECT_VAR(vector_res, T1, W, N)) |
| 51 | |
| 52 | #define TEST_VPADD(INSN, T1, T2, W, N) \ |
| 53 | TEST_VPADD1(INSN, T1, T2, W, N) \ |
| 54 | |
| 55 | /* With ARM RVCT, we need to declare variables before any executable |
| 56 | statement */ |
| 57 | |
| 58 | /* No need for 64 bits variants */ |
| 59 | DECL_VARIABLE(vector, int, 8, 8); |
| 60 | DECL_VARIABLE(vector, int, 16, 4); |
| 61 | DECL_VARIABLE(vector, int, 32, 2); |
| 62 | DECL_VARIABLE(vector, uint, 8, 8); |
| 63 | DECL_VARIABLE(vector, uint, 16, 4); |
| 64 | DECL_VARIABLE(vector, uint, 32, 2); |
| 65 | DECL_VARIABLE(vector, float, 32, 2); |
| 66 | |
| 67 | DECL_VARIABLE(vector_res, int, 8, 8); |
| 68 | DECL_VARIABLE(vector_res, int, 16, 4); |
| 69 | DECL_VARIABLE(vector_res, int, 32, 2); |
| 70 | DECL_VARIABLE(vector_res, uint, 8, 8); |
| 71 | DECL_VARIABLE(vector_res, uint, 16, 4); |
| 72 | DECL_VARIABLE(vector_res, uint, 32, 2); |
| 73 | DECL_VARIABLE(vector_res, float, 32, 2); |
| 74 | |
| 75 | clean_results (); |
| 76 | |
| 77 | /* Initialize input "vector" from "buffer" */ |
| 78 | TEST_VLOAD(vector, buffer, , int, s, 8, 8); |
| 79 | TEST_VLOAD(vector, buffer, , int, s, 16, 4); |
| 80 | TEST_VLOAD(vector, buffer, , int, s, 32, 2); |
| 81 | TEST_VLOAD(vector, buffer, , uint, u, 8, 8); |
| 82 | TEST_VLOAD(vector, buffer, , uint, u, 16, 4); |
| 83 | TEST_VLOAD(vector, buffer, , uint, u, 32, 2); |
| 84 | TEST_VLOAD(vector, buffer, , float, f, 32, 2); |
| 85 | |
| 86 | /* Apply a unary operator named INSN_NAME */ |
| 87 | TEST_VPADD(INSN_NAME, int, s, 8, 8); |
| 88 | TEST_VPADD(INSN_NAME, int, s, 16, 4); |
| 89 | TEST_VPADD(INSN_NAME, int, s, 32, 2); |
| 90 | TEST_VPADD(INSN_NAME, uint, u, 8, 8); |
| 91 | TEST_VPADD(INSN_NAME, uint, u, 16, 4); |
| 92 | TEST_VPADD(INSN_NAME, uint, u, 32, 2); |
| 93 | TEST_VPADD(INSN_NAME, float, f, 32, 2); |
| 94 | |
| 95 | dump_results_hex (TEST_MSG); |
| 96 | } |