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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: checksum.S,v 1.6 2001/10/01 14:47:35 bjornw Exp $
  2.  * A fast checksum routine using movem
  3.  * Copyright (c) 1998-2001 Axis Communications AB
  4.  *
  5.  * csum_partial(const unsigned char * buff, int len, unsigned int sum)
  6.  */
  7. .globl csum_partial
  8. csum_partial:
  9. ;; r10 - src
  10. ;; r11 - length
  11. ;; r12 - checksum
  12. ;; check for breakeven length between movem and normal word looping versions
  13. ;; we also do _NOT_ want to compute a checksum over more than the 
  14. ;; actual length when length < 40
  15. cmpu.w 80,$r11
  16. blo _word_loop
  17. nop
  18. ;; need to save the registers we use below in the movem loop
  19. ;; this overhead is why we have a check above for breakeven length
  20. ;; only r0 - r8 have to be saved, the other ones are clobber-able
  21. ;; according to the ABI
  22. subq 9*4,$sp
  23. movem $r8,[$sp]
  24. ;; do a movem checksum
  25. subq 10*4,$r11 ; update length for the first loop
  26. _mloop: movem [$r10+],$r9 ; read 10 longwords
  27. ;; perform dword checksumming on the 10 longwords
  28. add.d $r0,$r12
  29. ax
  30. add.d $r1,$r12
  31. ax
  32. add.d $r2,$r12
  33. ax
  34. add.d $r3,$r12
  35. ax
  36. add.d $r4,$r12
  37. ax
  38. add.d $r5,$r12
  39. ax
  40. add.d $r6,$r12
  41. ax
  42. add.d $r7,$r12
  43. ax
  44. add.d $r8,$r12
  45. ax
  46. add.d $r9,$r12
  47. ;; fold the carry into the checksum, to avoid having to loop the carry
  48. ;; back into the top
  49. ax
  50. addq 0,$r12
  51. ax ; do it again, since we might have generated a carry
  52. addq 0,$r12
  53. subq 10*4,$r11
  54. bge _mloop
  55. nop
  56. addq 10*4,$r11 ; compensate for last loop underflowing length
  57. movem [$sp+],$r8 ; restore regs
  58. _word_loop:
  59. ;; only fold if there is anything to fold.
  60. cmpq 0,$r12
  61. beq _no_fold
  62. ;; fold 32-bit checksum into a 16-bit checksum, to avoid carries below.
  63. ;; r9 and r13 can be used as temporaries.
  64. moveq -1,$r9 ; put 0xffff in r9, faster than move.d 0xffff,r9
  65. lsrq 16,$r9
  66. move.d $r12,$r13
  67. lsrq 16,$r13 ; r13 = checksum >> 16
  68. and.d $r9,$r12 ; checksum = checksum & 0xffff
  69. add.d $r13,$r12 ; checksum += r13
  70. move.d $r12,$r13 ; do the same again, maybe we got a carry last add
  71. lsrq 16,$r13
  72. and.d $r9,$r12
  73. add.d $r13,$r12
  74. _no_fold:
  75. cmpq 2,$r11
  76. blt _no_words
  77. nop
  78. ;; checksum the rest of the words
  79. subq 2,$r11
  80. _wloop: subq 2,$r11
  81. bge _wloop
  82. addu.w [$r10+],$r12
  83. addq 2,$r11
  84. _no_words:
  85. ;; see if we have one odd byte more
  86. cmpq 1,$r11
  87. beq _do_byte
  88. nop
  89. ret
  90. move.d $r12, $r10
  91. _do_byte:
  92. ;; copy and checksum the last byte
  93. addu.b [$r10],$r12
  94. ret
  95. move.d $r12, $r10