|
| 1 | +/*************************************************************************** |
| 2 | +Copyright (c) 2021, The OpenBLAS Project |
| 3 | +All rights reserved. |
| 4 | +Redistribution and use in source and binary forms, with or without |
| 5 | +modification, are permitted provided that the following conditions are |
| 6 | +met: |
| 7 | +1. Redistributions of source code must retain the above copyright |
| 8 | +notice, this list of conditions and the following disclaimer. |
| 9 | +2. Redistributions in binary form must reproduce the above copyright |
| 10 | +notice, this list of conditions and the following disclaimer in |
| 11 | +the documentation and/or other materials provided with the |
| 12 | +distribution. |
| 13 | +3. Neither the name of the OpenBLAS project nor the names of |
| 14 | +its contributors may be used to endorse or promote products |
| 15 | +derived from this software without specific prior written permission. |
| 16 | +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 17 | +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 18 | +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 19 | +ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBLAS PROJECT OR CONTRIBUTORS BE |
| 20 | +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 21 | +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 22 | +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 23 | +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
| 25 | +USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | +*****************************************************************************/ |
| 27 | +#define HAVE_KERNEL_32 1 |
| 28 | + |
| 29 | +#if defined(DOUBLE) |
| 30 | +static void dswap_kernel_32 (long n, double *x, double *y) |
| 31 | +#else |
| 32 | +static void sswap_kernel_32 (long n, float *x, float *y) |
| 33 | +#endif |
| 34 | +{ |
| 35 | + __asm__ |
| 36 | + ( |
| 37 | + ".align 5 \n" |
| 38 | + "one%=: \n\t" |
| 39 | + |
| 40 | + "lxvp 32, 0(%4) \n\t" |
| 41 | + "lxvp 34, 32(%4) \n\t" |
| 42 | + "lxvp 36, 64(%4) \n\t" |
| 43 | + "lxvp 38, 96(%4) \n\t" |
| 44 | + |
| 45 | + "lxvp 40, 128(%4) \n\t" |
| 46 | + "lxvp 42, 160(%4) \n\t" |
| 47 | + "lxvp 44, 192(%4) \n\t" |
| 48 | + "lxvp 46, 224(%4) \n\t" |
| 49 | + |
| 50 | + "lxvp 48, 0(%3) \n\t" |
| 51 | + "lxvp 50, 32(%3) \n\t" |
| 52 | + "lxvp 52, 64(%3) \n\t" |
| 53 | + "lxvp 54, 96(%3) \n\t" |
| 54 | + |
| 55 | + "lxvp 56, 128(%3) \n\t" |
| 56 | + "lxvp 58, 160(%3) \n\t" |
| 57 | + "lxvp 60, 192(%3) \n\t" |
| 58 | + "lxvp 62, 224(%3) \n\t" |
| 59 | + |
| 60 | + "stxvp 32, 0(%3) \n\t" |
| 61 | + "stxvp 34, 32(%3) \n\t" |
| 62 | + "stxvp 36, 64(%3) \n\t" |
| 63 | + "stxvp 38, 96(%3) \n\t" |
| 64 | + |
| 65 | + "stxvp 40, 128(%3) \n\t" |
| 66 | + "stxvp 42, 160(%3) \n\t" |
| 67 | + "stxvp 44, 192(%3) \n\t" |
| 68 | + "stxvp 46, 224(%3) \n\t" |
| 69 | + |
| 70 | + "stxvp 48, 0(%4) \n\t" |
| 71 | + "stxvp 50, 32(%4) \n\t" |
| 72 | + "stxvp 52, 64(%4) \n\t" |
| 73 | + "stxvp 54, 96(%4) \n\t" |
| 74 | + |
| 75 | + "stxvp 56, 128(%4) \n\t" |
| 76 | + "stxvp 58, 160(%4) \n\t" |
| 77 | + "stxvp 60, 192(%4) \n\t" |
| 78 | + "stxvp 62, 224(%4) \n\t" |
| 79 | + |
| 80 | + "addi %4, %4, 256 \n\t" |
| 81 | + "addi %3, %3, 256 \n\t" |
| 82 | + |
| 83 | +#if defined(DOUBLE) |
| 84 | + "addic. %2, %2, -32 \n\t" |
| 85 | +#else |
| 86 | + "addic. %2, %2, -64 \n\t" |
| 87 | +#endif |
| 88 | + "bgt one%= \n" |
| 89 | + |
| 90 | + "#n=%2 x=%0=%3 y=%1=%4" |
| 91 | + : |
| 92 | + "+m" (*x), |
| 93 | + "+m" (*y), |
| 94 | + "+r" (n), // 2 |
| 95 | + "+b" (x), // 3 |
| 96 | + "+b" (y) // 4 |
| 97 | + : |
| 98 | + : |
| 99 | + "cr0", |
| 100 | + "vs32","vs33","vs34","vs35","vs36","vs37","vs38","vs39", |
| 101 | + "vs40","vs41","vs42","vs43","vs44","vs45","vs46","vs47", |
| 102 | + "vs48","vs49","vs50","vs51","vs52","vs53","vs54","vs55", |
| 103 | + "vs56","vs57","vs58","vs59","vs60","vs61","vs62","vs63" |
| 104 | + ); |
| 105 | +} |
0 commit comments