memccpy.S 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /* Optimized version of the memccpy() function.
  2. This file is part of the GNU C Library.
  3. Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
  4. Contributed by Dan Pop <Dan.Pop@cern.ch>.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. /* Return: a pointer to the next byte after char in dest or NULL
  17. Inputs:
  18. in0: dest
  19. in1: src
  20. in2: char
  21. in3: byte count
  22. This implementation assumes little endian mode (UM.be = 0).
  23. This implementation assumes that it is safe to do read ahead
  24. in the src block, without getting beyond its limit. */
  25. #include <sysdep.h>
  26. #undef ret
  27. #define OP_T_THRES 16
  28. #define OPSIZ 8
  29. #define saved_pr r17
  30. #define saved_lc r18
  31. #define dest r19
  32. #define src r20
  33. #define len r21
  34. #define asrc r22
  35. #define tmp r23
  36. #define char r24
  37. #define charx8 r25
  38. #define saved_ec r26
  39. #define sh2 r28
  40. #define sh1 r29
  41. #define loopcnt r30
  42. #define value r31
  43. #ifdef GAS_ALIGN_BREAKS_UNWIND_INFO
  44. /* Manually force proper loop-alignment. Note: be sure to
  45. double-check the code-layout after making any changes to
  46. this routine! */
  47. # define ALIGN(n) { nop 0 }
  48. #else
  49. # define ALIGN(n) .align n
  50. #endif
  51. ENTRY(memccpy)
  52. .prologue
  53. alloc r2 = ar.pfs, 4, 40 - 4, 0, 40
  54. #include "softpipe.h"
  55. .rotr r[MEMLAT + 7], tmp1[4], tmp2[4], val[4], tmp3[2], pos0[2]
  56. .rotp p[MEMLAT + 6 + 1]
  57. mov ret0 = r0 /* return NULL if no match */
  58. .save pr, saved_pr
  59. mov saved_pr = pr /* save the predicate registers */
  60. mov dest = in0 /* dest */
  61. .save ar.lc, saved_lc
  62. mov saved_lc = ar.lc /* save the loop counter */
  63. mov saved_ec = ar.ec /* save the loop counter */
  64. .body
  65. mov src = in1 /* src */
  66. extr.u char = in2, 0, 8 /* char */
  67. mov len = in3 /* len */
  68. sub tmp = r0, in0 /* tmp = -dest */
  69. cmp.ne p7, p0 = r0, r0 /* clear p7 */
  70. ;;
  71. and loopcnt = 7, tmp /* loopcnt = -dest % 8 */
  72. cmp.ge p6, p0 = OP_T_THRES, len /* is len <= OP_T_THRES */
  73. mov ar.ec = 0 /* ec not guaranteed zero on entry */
  74. (p6) br.cond.spnt .cpyfew /* copy byte by byte */
  75. ;;
  76. cmp.eq p6, p0 = loopcnt, r0
  77. mux1 charx8 = char, @brcst
  78. (p6) br.cond.sptk .dest_aligned
  79. sub len = len, loopcnt /* len -= -dest % 8 */
  80. adds loopcnt = -1, loopcnt /* --loopcnt */
  81. ;;
  82. mov ar.lc = loopcnt
  83. .l1: /* copy -dest % 8 bytes */
  84. ld1 value = [src], 1 /* value = *src++ */
  85. ;;
  86. st1 [dest] = value, 1 /* *dest++ = value */
  87. cmp.eq p6, p0 = value, char
  88. (p6) br.cond.spnt .foundit
  89. br.cloop.dptk .l1
  90. .dest_aligned:
  91. and sh1 = 7, src /* sh1 = src % 8 */
  92. and tmp = -8, len /* tmp = len & -OPSIZ */
  93. and asrc = -8, src /* asrc = src & -OPSIZ -- align src */
  94. shr.u loopcnt = len, 3 /* loopcnt = len / 8 */
  95. and len = 7, len ;; /* len = len % 8 */
  96. shl sh1 = sh1, 3 /* sh1 = 8 * (src % 8) */
  97. adds loopcnt = -1, loopcnt /* --loopcnt */
  98. mov pr.rot = 1 << 16 ;; /* set rotating predicates */
  99. sub sh2 = 64, sh1 /* sh2 = 64 - sh1 */
  100. mov ar.lc = loopcnt /* set LC */
  101. cmp.eq p6, p0 = sh1, r0 /* is the src aligned? */
  102. (p6) br.cond.sptk .src_aligned ;;
  103. add src = src, tmp /* src += len & -OPSIZ */
  104. mov ar.ec = MEMLAT + 6 + 1 /* six more passes needed */
  105. ld8 r[1] = [asrc], 8 /* r[1] = w0 */
  106. cmp.ne p6, p0 = r0, r0 ;; /* clear p6 */
  107. ALIGN(32)
  108. .l2:
  109. (p[0]) ld8.s r[0] = [asrc], 8 /* r[0] = w1 */
  110. (p[MEMLAT]) shr.u tmp1[0] = r[1 + MEMLAT], sh1 /* tmp1 = w0 >> sh1 */
  111. (p[MEMLAT]) shl tmp2[0] = r[0 + MEMLAT], sh2 /* tmp2 = w1 << sh2 */
  112. (p[MEMLAT+4]) xor tmp3[0] = val[1], charx8
  113. (p[MEMLAT+5]) czx1.r pos0[0] = tmp3[1]
  114. (p[MEMLAT+6]) chk.s r[6 + MEMLAT], .recovery1 /* our data isn't */
  115. /* valid - rollback! */
  116. (p[MEMLAT+6]) cmp.ne p6, p0 = 8, pos0[1]
  117. (p6) br.cond.spnt .gotit
  118. (p[MEMLAT+6]) st8 [dest] = val[3], 8 /* store val to dest */
  119. (p[MEMLAT+3]) or val[0] = tmp1[3], tmp2[3] /* val = tmp1 | tmp2 */
  120. br.ctop.sptk .l2
  121. br.cond.sptk .cpyfew
  122. .src_aligned:
  123. cmp.ne p6, p0 = r0, r0 /* clear p6 */
  124. mov ar.ec = MEMLAT + 2 + 1 ;; /* set EC */
  125. .l3:
  126. (p[0]) ld8.s r[0] = [src], 8
  127. (p[MEMLAT]) xor tmp3[0] = r[MEMLAT], charx8
  128. (p[MEMLAT+1]) czx1.r pos0[0] = tmp3[1]
  129. (p[MEMLAT+2]) cmp.ne p7, p0 = 8, pos0[1]
  130. (p[MEMLAT+2]) chk.s r[MEMLAT+2], .recovery2
  131. (p7) br.cond.spnt .gotit
  132. .back2:
  133. (p[MEMLAT+2]) st8 [dest] = r[MEMLAT+2], 8
  134. br.ctop.dptk .l3
  135. .cpyfew:
  136. cmp.eq p6, p0 = len, r0 /* is len == 0 ? */
  137. adds len = -1, len /* --len; */
  138. (p6) br.cond.spnt .restore_and_exit ;;
  139. mov ar.lc = len
  140. .l4:
  141. ld1 value = [src], 1
  142. ;;
  143. st1 [dest] = value, 1
  144. cmp.eq p6, p0 = value, char
  145. (p6) br.cond.spnt .foundit
  146. br.cloop.dptk .l4 ;;
  147. .foundit:
  148. (p6) mov ret0 = dest
  149. .restore_and_exit:
  150. mov pr = saved_pr, -1 /* restore the predicate registers */
  151. mov ar.lc = saved_lc /* restore the loop counter */
  152. mov ar.ec = saved_ec ;; /* restore the epilog counter */
  153. br.ret.sptk.many b0
  154. .gotit:
  155. .pred.rel "mutex" p6, p7
  156. (p6) mov value = val[3] /* if coming from l2 */
  157. (p7) mov value = r[MEMLAT+2] /* if coming from l3 */
  158. mov ar.lc = pos0[1] ;;
  159. .l5:
  160. extr.u tmp = value, 0, 8 ;;
  161. st1 [dest] = tmp, 1
  162. shr.u value = value, 8
  163. br.cloop.sptk .l5 ;;
  164. mov ret0 = dest
  165. mov pr = saved_pr, -1
  166. mov ar.lc = saved_lc
  167. br.ret.sptk.many b0
  168. .recovery1:
  169. adds src = -(MEMLAT + 6 + 1) * 8, asrc
  170. mov loopcnt = ar.lc
  171. mov tmp = ar.ec ;;
  172. sub sh1 = (MEMLAT + 6 + 1), tmp
  173. shr.u sh2 = sh2, 3
  174. ;;
  175. shl loopcnt = loopcnt, 3
  176. sub src = src, sh2
  177. shl sh1 = sh1, 3
  178. shl tmp = tmp, 3
  179. ;;
  180. add len = len, loopcnt
  181. add src = sh1, src ;;
  182. add len = tmp, len
  183. .back1:
  184. br.cond.sptk .cpyfew
  185. .recovery2:
  186. add tmp = -(MEMLAT + 3) * 8, src
  187. (p7) br.cond.spnt .gotit
  188. ;;
  189. ld8 r[MEMLAT+2] = [tmp] ;;
  190. xor pos0[1] = r[MEMLAT+2], charx8 ;;
  191. czx1.r pos0[1] = pos0[1] ;;
  192. cmp.ne p7, p6 = 8, pos0[1]
  193. (p7) br.cond.spnt .gotit
  194. br.cond.sptk .back2
  195. END(memccpy)