You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

sum.S 4.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*******************************************************************************
  2. Copyright (c) 2019, 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 ASSEMBLER
  28. #include "common.h"
  29. #define N x0 /* vector length */
  30. #define X x1 /* X vector address */
  31. #define INC_X x2 /* X stride */
  32. #define I x5 /* loop variable */
  33. /*******************************************************************************
  34. * Macro definitions
  35. *******************************************************************************/
  36. #if !defined(DOUBLE)
  37. #define REG0 wzr
  38. #define SUMF s0
  39. #define TMPF s1
  40. #define TMPVF {v1.s}[0]
  41. #define SZ 4
  42. #else
  43. #define REG0 xzr
  44. #define SUMF d0
  45. #define TMPF d1
  46. #define TMPVF {v1.d}[0]
  47. #define SZ 8
  48. #endif
  49. /******************************************************************************/
  50. .macro KERNEL_F1
  51. ldr TMPF, [X], #SZ
  52. fadd SUMF, SUMF, TMPF
  53. .endm
  54. .macro KERNEL_F8
  55. #if !defined(DOUBLE)
  56. ld1 {v1.4s, v2.4s}, [X], #32 // Load [X3, X2, X1, X0]
  57. fadd v1.4s, v1.4s, v2.4s // [X3+X1, X2+X0]
  58. fadd v0.4s, v0.4s, v1.4s // [X3+X1, X2+X0]
  59. PRFM PLDL1KEEP, [X, #1024]
  60. #else // DOUBLE
  61. ld1 {v2.2d, v3.2d, v4.2d, v5.2d}, [X]
  62. add X, X, #64
  63. PRFM PLDL1KEEP, [X, #1024]
  64. fadd v2.2d, v2.2d, v3.2d
  65. fadd v4.2d, v4.2d, v5.2d
  66. fadd v0.2d, v0.2d, v2.2d
  67. fadd v0.2d, v0.2d, v4.2d
  68. #endif
  69. .endm
  70. .macro KERNEL_F8_FINALIZE
  71. #if !defined(DOUBLE)
  72. ext v1.16b, v0.16b, v0.16b, #8
  73. fadd v0.2s, v0.2s, v1.2s
  74. faddp SUMF, v0.2s
  75. #else
  76. faddp SUMF, v0.2d
  77. #endif
  78. .endm
  79. .macro INIT_S
  80. #if !defined(DOUBLE)
  81. lsl INC_X, INC_X, #2
  82. #else
  83. lsl INC_X, INC_X, #3
  84. #endif
  85. .endm
  86. .macro KERNEL_S1
  87. ld1 TMPVF, [X], INC_X
  88. fadd SUMF, SUMF, TMPF
  89. .endm
  90. /*******************************************************************************
  91. * End of macro definitions
  92. *******************************************************************************/
  93. PROLOGUE
  94. fmov SUMF, REG0
  95. #if !defined(DOUBLE)
  96. fmov s1, SUMF
  97. #else
  98. fmov d1, SUMF
  99. #endif
  100. cmp N, xzr
  101. ble .Lsum_kernel_L999
  102. cmp INC_X, xzr
  103. ble .Lsum_kernel_L999
  104. cmp INC_X, #1
  105. bne .Lsum_kernel_S_BEGIN
  106. .Lsum_kernel_F_BEGIN:
  107. asr I, N, #3
  108. cmp I, xzr
  109. beq .Lsum_kernel_F1
  110. .Lsum_kernel_F8:
  111. KERNEL_F8
  112. subs I, I, #1
  113. bne .Lsum_kernel_F8
  114. KERNEL_F8_FINALIZE
  115. .Lsum_kernel_F1:
  116. ands I, N, #7
  117. ble .Lsum_kernel_L999
  118. .Lsum_kernel_F10:
  119. KERNEL_F1
  120. subs I, I, #1
  121. bne .Lsum_kernel_F10
  122. .Lsum_kernel_L999:
  123. ret
  124. .Lsum_kernel_S_BEGIN:
  125. INIT_S
  126. asr I, N, #2
  127. cmp I, xzr
  128. ble .Lsum_kernel_S1
  129. .Lsum_kernel_S4:
  130. KERNEL_S1
  131. KERNEL_S1
  132. KERNEL_S1
  133. KERNEL_S1
  134. subs I, I, #1
  135. bne .Lsum_kernel_S4
  136. .Lsum_kernel_S1:
  137. ands I, N, #3
  138. ble .Lsum_kernel_L999
  139. .Lsum_kernel_S10:
  140. KERNEL_S1
  141. subs I, I, #1
  142. bne .Lsum_kernel_S10
  143. ret
  144. EPILOGUE