strncat.S
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * arch/alpha/lib/strncat.S
  3.  * Contributed by Richard Henderson (rth@tamu.edu)
  4.  *
  5.  * Append no more than COUNT characters from the null-terminated string SRC
  6.  * to the null-terminated string DST.  Always null-terminate the new DST.
  7.  *
  8.  * This differs slightly from the semantics in libc in that we never write
  9.  * past count, whereas libc may write to count+1.  This follows the generic
  10.  * implementation in lib/string.c and is, IMHO, more sensible.
  11.  */
  12. .text
  13. .align 3
  14. .globl strncat
  15. .ent strncat
  16. strncat:
  17. .frame $30, 0, $26
  18. .prologue 0
  19. mov $16, $0 # set up return value
  20. beq $18, $zerocount
  21. /* Find the end of the string.  */
  22. ldq_u   $1, 0($16) # load first quadword ($16 may be misaligned)
  23. lda     $2, -1($31)
  24. insqh   $2, $16, $2
  25. andnot  $16, 7, $16
  26. or      $2, $1, $1
  27. cmpbge  $31, $1, $2 # bits set iff byte == 0
  28. bne     $2, $found
  29. $loop: ldq     $1, 8($16)
  30. addq    $16, 8, $16
  31. cmpbge  $31, $1, $2
  32. beq     $2, $loop
  33. $found: negq    $2, $3 # clear all but least set bit
  34. and     $2, $3, $2
  35. and     $2, 0xf0, $3 # binary search for that set bit
  36. and $2, 0xcc, $4
  37. and $2, 0xaa, $5
  38. cmovne $3, 4, $3
  39. cmovne $4, 2, $4
  40. cmovne $5, 1, $5
  41. addq $3, $4, $3
  42. addq $16, $5, $16
  43. addq $16, $3, $16
  44. /* Now do the append.  */
  45. bsr $23, __stxncpy
  46. /* Worry about the null termination.  */
  47. zapnot $1, $27, $2 # was last byte a null?
  48. bne $2, 0f
  49. ret
  50. 0: cmplt $27, $24, $2 # did we fill the buffer completely?
  51. or $2, $18, $2
  52. bne $2, 2f
  53. and $24, 0x80, $2 # no zero next byte
  54. bne $2, 1f
  55. /* Here there are bytes left in the current word.  Clear one.  */
  56. addq $24, $24, $24 # end-of-count bit <<= 1
  57. 2: zap $1, $24, $1
  58. stq_u $1, 0($16)
  59. ret
  60. 1: /* Here we must read the next DST word and clear the first byte.  */
  61. ldq_u $1, 8($16)
  62. zap $1, 1, $1
  63. stq_u $1, 8($16)
  64. $zerocount:
  65. ret
  66. .end strncat