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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* checksum.S: Sparc optimized checksum code.
  2.  *
  3.  *  Copyright(C) 1995 Linus Torvalds
  4.  *  Copyright(C) 1995 Miguel de Icaza
  5.  *  Copyright(C) 1996 David S. Miller
  6.  *  Copyright(C) 1997 Jakub Jelinek
  7.  *
  8.  * derived from:
  9.  * Linux/Alpha checksum c-code
  10.  *      Linux/ix86 inline checksum assembly
  11.  *      RFC1071 Computing the Internet Checksum (esp. Jacobsons m68k code)
  12.  * David Mosberger-Tang for optimized reference c-code
  13.  * BSD4.4 portable checksum routine
  14.  */
  15. #include <asm/cprefix.h>
  16. #include <asm/errno.h>
  17. #define CSUM_BIGCHUNK(buf, offset, sum, t0, t1, t2, t3, t4, t5)
  18. ldd [buf + offset + 0x00], t0;
  19. ldd [buf + offset + 0x08], t2;
  20. addxcc t0, sum, sum;
  21. addxcc t1, sum, sum;
  22. ldd [buf + offset + 0x10], t4;
  23. addxcc t2, sum, sum;
  24. addxcc t3, sum, sum;
  25. ldd [buf + offset + 0x18], t0;
  26. addxcc t4, sum, sum;
  27. addxcc t5, sum, sum;
  28. addxcc t0, sum, sum;
  29. addxcc t1, sum, sum;
  30. #define CSUM_LASTCHUNK(buf, offset, sum, t0, t1, t2, t3)
  31. ldd [buf - offset - 0x08], t0;
  32. ldd [buf - offset - 0x00], t2;
  33. addxcc t0, sum, sum;
  34. addxcc t1, sum, sum;
  35. addxcc t2, sum, sum;
  36. addxcc t3, sum, sum;
  37. /* Do end cruft out of band to get better cache patterns. */
  38. csum_partial_end_cruft:
  39. be 1f ! caller asks %o1 & 0x8
  40.  andcc %o1, 4, %g0 ! nope, check for word remaining
  41. ldd [%o0], %g2 ! load two
  42. addcc %g2, %o2, %o2 ! add first word to sum
  43. addxcc %g3, %o2, %o2 ! add second word as well
  44. add %o0, 8, %o0 ! advance buf ptr
  45. addx %g0, %o2, %o2 ! add in final carry
  46. andcc %o1, 4, %g0 ! check again for word remaining
  47. 1: be 1f ! nope, skip this code
  48.  andcc %o1, 3, %o1 ! check for trailing bytes
  49. ld [%o0], %g2 ! load it
  50. addcc %g2, %o2, %o2 ! add to sum
  51. add %o0, 4, %o0 ! advance buf ptr
  52. addx %g0, %o2, %o2 ! add in final carry
  53. andcc %o1, 3, %g0 ! check again for trailing bytes
  54. 1: be 1f ! no trailing bytes, return
  55.  addcc %o1, -1, %g0 ! only one byte remains?
  56. bne 2f ! at least two bytes more
  57.  subcc %o1, 2, %o1 ! only two bytes more?
  58. b 4f ! only one byte remains
  59.  or %g0, %g0, %o4 ! clear fake hword value
  60. 2: lduh [%o0], %o4 ! get hword
  61. be 6f ! jmp if only hword remains
  62.  add %o0, 2, %o0 ! advance buf ptr either way
  63. sll %o4, 16, %o4 ! create upper hword
  64. 4: ldub [%o0], %o5 ! get final byte
  65. sll %o5, 8, %o5 ! put into place
  66. or %o5, %o4, %o4 ! coalese with hword (if any)
  67. 6: addcc %o4, %o2, %o2 ! add to sum
  68. 1: retl ! get outta here
  69.  addx %g0, %o2, %o0 ! add final carry into retval
  70. /* Also do alignment out of band to get better cache patterns. */
  71. csum_partial_fix_alignment:
  72. cmp %o1, 6
  73. bl cpte - 0x4
  74.  andcc %o0, 0x2, %g0
  75. be 1f
  76.  andcc %o0, 0x4, %g0
  77. lduh [%o0 + 0x00], %g2
  78. sub %o1, 2, %o1
  79. add %o0, 2, %o0
  80. sll %g2, 16, %g2
  81. addcc %g2, %o2, %o2
  82. srl %o2, 16, %g3
  83. addx %g0, %g3, %g2
  84. sll %o2, 16, %o2
  85. sll %g2, 16, %g3
  86. srl %o2, 16, %o2
  87. andcc %o0, 0x4, %g0
  88. or %g3, %o2, %o2
  89. 1: be cpa
  90.  andcc %o1, 0xffffff80, %o3
  91. ld [%o0 + 0x00], %g2
  92. sub %o1, 4, %o1
  93. addcc %g2, %o2, %o2
  94. add %o0, 4, %o0
  95. addx %g0, %o2, %o2
  96. b cpa
  97.  andcc %o1, 0xffffff80, %o3
  98. /* The common case is to get called with a nicely aligned
  99.  * buffer of size 0x20.  Follow the code path for that case.
  100.  */
  101. .globl C_LABEL(csum_partial)
  102. C_LABEL(csum_partial): /* %o0=buf, %o1=len, %o2=sum */
  103. andcc %o0, 0x7, %g0 ! alignment problems?
  104. bne csum_partial_fix_alignment ! yep, handle it
  105.  sethi %hi(cpte - 8), %g7 ! prepare table jmp ptr
  106. andcc %o1, 0xffffff80, %o3 ! num loop iterations
  107. cpa: be 3f ! none to do
  108.  andcc %o1, 0x70, %g1 ! clears carry flag too
  109. 5: CSUM_BIGCHUNK(%o0, 0x00, %o2, %o4, %o5, %g2, %g3, %g4, %g5)
  110. CSUM_BIGCHUNK(%o0, 0x20, %o2, %o4, %o5, %g2, %g3, %g4, %g5)
  111. CSUM_BIGCHUNK(%o0, 0x40, %o2, %o4, %o5, %g2, %g3, %g4, %g5)
  112. CSUM_BIGCHUNK(%o0, 0x60, %o2, %o4, %o5, %g2, %g3, %g4, %g5)
  113. addx %g0, %o2, %o2 ! sink in final carry
  114. subcc %o3, 128, %o3 ! detract from loop iters
  115. bne 5b ! more to do
  116.  add %o0, 128, %o0 ! advance buf ptr
  117. andcc %o1, 0x70, %g1 ! clears carry flag too
  118. 3: be cpte ! nope
  119.  andcc %o1, 0xf, %g0 ! anything left at all?
  120. srl %g1, 1, %o4 ! compute offset
  121. sub %g7, %g1, %g7 ! adjust jmp ptr
  122. sub %g7, %o4, %g7 ! final jmp ptr adjust
  123. jmp %g7 + %lo(cpte - 8) ! enter the table
  124.  add %o0, %g1, %o0 ! advance buf ptr
  125. cptbl: CSUM_LASTCHUNK(%o0, 0x68, %o2, %g2, %g3, %g4, %g5)
  126. CSUM_LASTCHUNK(%o0, 0x58, %o2, %g2, %g3, %g4, %g5)
  127. CSUM_LASTCHUNK(%o0, 0x48, %o2, %g2, %g3, %g4, %g5)
  128. CSUM_LASTCHUNK(%o0, 0x38, %o2, %g2, %g3, %g4, %g5)
  129. CSUM_LASTCHUNK(%o0, 0x28, %o2, %g2, %g3, %g4, %g5)
  130. CSUM_LASTCHUNK(%o0, 0x18, %o2, %g2, %g3, %g4, %g5)
  131. CSUM_LASTCHUNK(%o0, 0x08, %o2, %g2, %g3, %g4, %g5)
  132. addx %g0, %o2, %o2 ! fetch final carry
  133. andcc %o1, 0xf, %g0 ! anything left at all?
  134. cpte: bne csum_partial_end_cruft ! yep, handle it
  135.  andcc %o1, 8, %g0 ! check how much
  136. cpout: retl ! get outta here
  137.  mov %o2, %o0 ! return computed csum
  138. .globl C_LABEL(__csum_partial_copy_start), C_LABEL(__csum_partial_copy_end)
  139. C_LABEL(__csum_partial_copy_start):
  140. #define EX(x,y,a,b,z)                           
  141. 98:     x,y;                                    
  142.         .section .fixup,z##alloc,z##execinstr;  
  143.         .align  4;                              
  144. 99:     ba 30f;                                 
  145.          a, b, %o3;                             
  146.         .section __ex_table,z##alloc;           
  147.         .align  4;                              
  148.         .word   98b, 99b;                       
  149.         .text;                                  
  150.         .align  4
  151. #define EX2(x,y,z)                          
  152. 98:     x,y;                                    
  153.         .section __ex_table,z##alloc;           
  154.         .align  4;                              
  155.         .word   98b, 30f;                       
  156.         .text;                                  
  157.         .align  4
  158. #define EX3(x,y,z)                          
  159. 98:     x,y;                                    
  160.         .section __ex_table,z##alloc;           
  161.         .align  4;                              
  162.         .word   98b, 96f;                       
  163.         .text;                                  
  164.         .align  4
  165. #define EXT(start,end,handler,z)                
  166.         .section __ex_table,z##alloc;           
  167.         .align  4;                              
  168.         .word   start, 0, end, handler;         
  169.         .text;                                  
  170.         .align  4
  171. /* This aligned version executes typically in 8.5 superscalar cycles, this
  172.  * is the best I can do.  I say 8.5 because the final add will pair with
  173.  * the next ldd in the main unrolled loop.  Thus the pipe is always full.
  174.  * If you change these macros (including order of instructions),
  175.  * please check the fixup code below as well.
  176.  */
  177. #define CSUMCOPY_BIGCHUNK_ALIGNED(src, dst, sum, off, t0, t1, t2, t3, t4, t5, t6, t7)
  178. ldd [src + off + 0x00], t0;
  179. ldd [src + off + 0x08], t2;
  180. addxcc t0, sum, sum;
  181. ldd [src + off + 0x10], t4;
  182. addxcc t1, sum, sum;
  183. ldd [src + off + 0x18], t6;
  184. addxcc t2, sum, sum;
  185. std t0, [dst + off + 0x00];
  186. addxcc t3, sum, sum;
  187. std t2, [dst + off + 0x08];
  188. addxcc t4, sum, sum;
  189. std t4, [dst + off + 0x10];
  190. addxcc t5, sum, sum;
  191. std t6, [dst + off + 0x18];
  192. addxcc t6, sum, sum;
  193. addxcc t7, sum, sum;
  194. /* 12 superscalar cycles seems to be the limit for this case,
  195.  * because of this we thus do all the ldd's together to get
  196.  * Viking MXCC into streaming mode.  Ho hum...
  197.  */
  198. #define CSUMCOPY_BIGCHUNK(src, dst, sum, off, t0, t1, t2, t3, t4, t5, t6, t7)
  199. ldd [src + off + 0x00], t0;
  200. ldd [src + off + 0x08], t2;
  201. ldd [src + off + 0x10], t4;
  202. ldd [src + off + 0x18], t6;
  203. st t0, [dst + off + 0x00];
  204. addxcc t0, sum, sum;
  205. st t1, [dst + off + 0x04];
  206. addxcc t1, sum, sum;
  207. st t2, [dst + off + 0x08];
  208. addxcc t2, sum, sum;
  209. st t3, [dst + off + 0x0c];
  210. addxcc t3, sum, sum;
  211. st t4, [dst + off + 0x10];
  212. addxcc t4, sum, sum;
  213. st t5, [dst + off + 0x14];
  214. addxcc t5, sum, sum;
  215. st t6, [dst + off + 0x18];
  216. addxcc t6, sum, sum;
  217. st t7, [dst + off + 0x1c];
  218. addxcc t7, sum, sum;
  219. /* Yuck, 6 superscalar cycles... */
  220. #define CSUMCOPY_LASTCHUNK(src, dst, sum, off, t0, t1, t2, t3)
  221. ldd [src - off - 0x08], t0;
  222. ldd [src - off - 0x00], t2;
  223. addxcc t0, sum, sum;
  224. st t0, [dst - off - 0x08];
  225. addxcc t1, sum, sum;
  226. st t1, [dst - off - 0x04];
  227. addxcc t2, sum, sum;
  228. st t2, [dst - off - 0x00];
  229. addxcc t3, sum, sum;
  230. st t3, [dst - off + 0x04];
  231. /* Handle the end cruft code out of band for better cache patterns. */
  232. cc_end_cruft:
  233. be 1f
  234.  andcc %o3, 4, %g0
  235. EX(ldd [%o0 + 0x00], %g2, and %o3, 0xf,#)
  236. add %o1, 8, %o1
  237. addcc %g2, %g7, %g7
  238. add %o0, 8, %o0
  239. addxcc %g3, %g7, %g7
  240. EX2(st %g2, [%o1 - 0x08],#)
  241. addx %g0, %g7, %g7
  242. andcc %o3, 4, %g0
  243. EX2(st %g3, [%o1 - 0x04],#)
  244. 1: be 1f
  245.  andcc %o3, 3, %o3
  246. EX(ld [%o0 + 0x00], %g2, add %o3, 4,#)
  247. add %o1, 4, %o1
  248. addcc %g2, %g7, %g7
  249. EX2(st %g2, [%o1 - 0x04],#)
  250. addx %g0, %g7, %g7
  251. andcc %o3, 3, %g0
  252. add %o0, 4, %o0
  253. 1: be 1f
  254.  addcc %o3, -1, %g0
  255. bne 2f
  256.  subcc %o3, 2, %o3
  257. b 4f
  258.  or %g0, %g0, %o4
  259. 2: EX(lduh [%o0 + 0x00], %o4, add %o3, 2,#)
  260. add %o0, 2, %o0
  261. EX2(sth %o4, [%o1 + 0x00],#)
  262. be 6f
  263.  add %o1, 2, %o1
  264. sll %o4, 16, %o4
  265. 4: EX(ldub [%o0 + 0x00], %o5, add %g0, 1,#)
  266. EX2(stb %o5, [%o1 + 0x00],#)
  267. sll %o5, 8, %o5
  268. or %o5, %o4, %o4
  269. 6: addcc %o4, %g7, %g7
  270. 1: retl
  271.  addx %g0, %g7, %o0
  272. /* Also, handle the alignment code out of band. */
  273. cc_dword_align:
  274. cmp %g1, 6
  275. bl,a ccte
  276.  andcc %g1, 0xf, %o3
  277. andcc %o0, 0x1, %g0
  278. bne ccslow
  279.  andcc %o0, 0x2, %g0
  280. be 1f
  281.  andcc %o0, 0x4, %g0
  282. EX(lduh [%o0 + 0x00], %g4, add %g1, 0,#)
  283. sub %g1, 2, %g1
  284. EX2(sth %g4, [%o1 + 0x00],#)
  285. add %o0, 2, %o0
  286. sll %g4, 16, %g4
  287. addcc %g4, %g7, %g7
  288. add %o1, 2, %o1
  289. srl %g7, 16, %g3
  290. addx %g0, %g3, %g4
  291. sll %g7, 16, %g7
  292. sll %g4, 16, %g3
  293. srl %g7, 16, %g7
  294. andcc %o0, 0x4, %g0
  295. or %g3, %g7, %g7
  296. 1: be 3f
  297.  andcc %g1, 0xffffff80, %g0
  298. EX(ld [%o0 + 0x00], %g4, add %g1, 0,#)
  299. sub %g1, 4, %g1
  300. EX2(st %g4, [%o1 + 0x00],#)
  301. add %o0, 4, %o0
  302. addcc %g4, %g7, %g7
  303. add %o1, 4, %o1
  304. addx %g0, %g7, %g7
  305. b 3f
  306.  andcc %g1, 0xffffff80, %g0
  307. /* Sun, you just can't beat me, you just can't.  Stop trying,
  308.  * give up.  I'm serious, I am going to kick the living shit
  309.  * out of you, game over, lights out.
  310.  */
  311. .align 8
  312. .globl C_LABEL(__csum_partial_copy_sparc_generic)
  313. C_LABEL(__csum_partial_copy_sparc_generic):
  314. /* %o0=src, %o1=dest, %g1=len, %g7=sum */
  315. xor %o0, %o1, %o4 ! get changing bits
  316. andcc %o4, 3, %g0 ! check for mismatched alignment
  317. bne ccslow ! better this than unaligned/fixups
  318.  andcc %o0, 7, %g0 ! need to align things?
  319. bne cc_dword_align ! yes, we check for short lengths there
  320.  andcc %g1, 0xffffff80, %g0 ! can we use unrolled loop?
  321. 3: be 3f ! nope, less than one loop remains
  322.  andcc %o1, 4, %g0 ! dest aligned on 4 or 8 byte boundry?
  323. be ccdbl + 4 ! 8 byte aligned, kick ass
  324. 5: CSUMCOPY_BIGCHUNK(%o0,%o1,%g7,0x00,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  325. CSUMCOPY_BIGCHUNK(%o0,%o1,%g7,0x20,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  326. CSUMCOPY_BIGCHUNK(%o0,%o1,%g7,0x40,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  327. CSUMCOPY_BIGCHUNK(%o0,%o1,%g7,0x60,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  328. 10: EXT(5b, 10b, 20f,#) ! note for exception handling
  329. sub %g1, 128, %g1 ! detract from length
  330. addx %g0, %g7, %g7 ! add in last carry bit
  331. andcc %g1, 0xffffff80, %g0 ! more to csum?
  332. add %o0, 128, %o0 ! advance src ptr
  333. bne 5b ! we did not go negative, continue looping
  334.  add %o1, 128, %o1 ! advance dest ptr
  335. 3: andcc %g1, 0x70, %o2 ! can use table?
  336. ccmerge:be ccte ! nope, go and check for end cruft
  337.  andcc %g1, 0xf, %o3 ! get low bits of length (clears carry btw)
  338. srl %o2, 1, %o4 ! begin negative offset computation
  339. sethi %hi(12f), %o5 ! set up table ptr end
  340. add %o0, %o2, %o0 ! advance src ptr
  341. sub %o5, %o4, %o5 ! continue table calculation
  342. sll %o2, 1, %g2 ! constant multiplies are fun...
  343. sub %o5, %g2, %o5 ! some more adjustments
  344. jmp %o5 + %lo(12f) ! jump into it, duff style, wheee...
  345.  add %o1, %o2, %o1 ! advance dest ptr (carry is clear btw)
  346. cctbl: CSUMCOPY_LASTCHUNK(%o0,%o1,%g7,0x68,%g2,%g3,%g4,%g5)
  347. CSUMCOPY_LASTCHUNK(%o0,%o1,%g7,0x58,%g2,%g3,%g4,%g5)
  348. CSUMCOPY_LASTCHUNK(%o0,%o1,%g7,0x48,%g2,%g3,%g4,%g5)
  349. CSUMCOPY_LASTCHUNK(%o0,%o1,%g7,0x38,%g2,%g3,%g4,%g5)
  350. CSUMCOPY_LASTCHUNK(%o0,%o1,%g7,0x28,%g2,%g3,%g4,%g5)
  351. CSUMCOPY_LASTCHUNK(%o0,%o1,%g7,0x18,%g2,%g3,%g4,%g5)
  352. CSUMCOPY_LASTCHUNK(%o0,%o1,%g7,0x08,%g2,%g3,%g4,%g5)
  353. 12: EXT(cctbl, 12b, 22f,#) ! note for exception table handling
  354. addx %g0, %g7, %g7
  355. andcc %o3, 0xf, %g0 ! check for low bits set
  356. ccte: bne cc_end_cruft ! something left, handle it out of band
  357.  andcc %o3, 8, %g0 ! begin checks for that code
  358. retl ! return
  359.  mov %g7, %o0 ! give em the computed checksum
  360. ccdbl: CSUMCOPY_BIGCHUNK_ALIGNED(%o0,%o1,%g7,0x00,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  361. CSUMCOPY_BIGCHUNK_ALIGNED(%o0,%o1,%g7,0x20,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  362. CSUMCOPY_BIGCHUNK_ALIGNED(%o0,%o1,%g7,0x40,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  363. CSUMCOPY_BIGCHUNK_ALIGNED(%o0,%o1,%g7,0x60,%o4,%o5,%g2,%g3,%g4,%g5,%o2,%o3)
  364. 11: EXT(ccdbl, 11b, 21f,#) ! note for exception table handling
  365. sub %g1, 128, %g1 ! detract from length
  366. addx %g0, %g7, %g7 ! add in last carry bit
  367. andcc %g1, 0xffffff80, %g0 ! more to csum?
  368. add %o0, 128, %o0 ! advance src ptr
  369. bne ccdbl ! we did not go negative, continue looping
  370.  add %o1, 128, %o1 ! advance dest ptr
  371. b ccmerge ! finish it off, above
  372.  andcc %g1, 0x70, %o2 ! can use table? (clears carry btw)
  373. ccslow: cmp %g1, 0
  374. mov 0, %g5
  375. bleu 4f
  376.  andcc %o0, 1, %o5
  377. be,a 1f
  378.  srl %g1, 1, %g4
  379. sub %g1, 1, %g1
  380. EX(ldub [%o0], %g5, add %g1, 1,#)
  381. add %o0, 1, %o0
  382. EX2(stb %g5, [%o1],#)
  383. srl %g1, 1, %g4
  384. add %o1, 1, %o1
  385. 1: cmp %g4, 0
  386. be,a 3f
  387.  andcc %g1, 1, %g0
  388. andcc %o0, 2, %g0
  389. be,a 1f
  390.  srl %g4, 1, %g4
  391. EX(lduh [%o0], %o4, add %g1, 0,#)
  392. sub %g1, 2, %g1
  393. srl %o4, 8, %g2
  394. sub %g4, 1, %g4
  395. EX2(stb %g2, [%o1],#)
  396. add %o4, %g5, %g5
  397. EX2(stb %o4, [%o1 + 1],#)
  398. add %o0, 2, %o0
  399. srl %g4, 1, %g4
  400. add %o1, 2, %o1
  401. 1: cmp %g4, 0
  402. be,a 2f
  403.  andcc %g1, 2, %g0
  404. EX3(ld [%o0], %o4,#)
  405. 5: srl %o4, 24, %g2
  406. srl %o4, 16, %g3
  407. EX2(stb %g2, [%o1],#)
  408. srl %o4, 8, %g2
  409. EX2(stb %g3, [%o1 + 1],#)
  410. add %o0, 4, %o0
  411. EX2(stb %g2, [%o1 + 2],#)
  412. addcc %o4, %g5, %g5
  413. EX2(stb %o4, [%o1 + 3],#)
  414. addx %g5, %g0, %g5 ! I am now to lazy to optimize this (question it
  415. add %o1, 4, %o1 ! is worthy). Maybe some day - with the sll/srl
  416. subcc %g4, 1, %g4 ! tricks
  417. bne,a 5b
  418.  EX3(ld [%o0], %o4,#)
  419. sll %g5, 16, %g2
  420. srl %g5, 16, %g5
  421. srl %g2, 16, %g2
  422. andcc %g1, 2, %g0
  423. add %g2, %g5, %g5 
  424. 2: be,a 3f
  425.  andcc %g1, 1, %g0
  426. EX(lduh [%o0], %o4, and %g1, 3,#)
  427. andcc %g1, 1, %g0
  428. srl %o4, 8, %g2
  429. add %o0, 2, %o0
  430. EX2(stb %g2, [%o1],#)
  431. add %g5, %o4, %g5
  432. EX2(stb %o4, [%o1 + 1],#)
  433. add %o1, 2, %o1
  434. 3: be,a 1f
  435.  sll %g5, 16, %o4
  436. EX(ldub [%o0], %g2, add %g0, 1,#)
  437. sll %g2, 8, %o4
  438. EX2(stb %g2, [%o1],#)
  439. add %g5, %o4, %g5
  440. sll %g5, 16, %o4
  441. 1: addcc %o4, %g5, %g5
  442. srl %g5, 16, %o4
  443. addx %g0, %o4, %g5
  444. orcc %o5, %g0, %g0
  445. be 4f
  446.  srl %g5, 8, %o4
  447. and %g5, 0xff, %g2
  448. and %o4, 0xff, %o4
  449. sll %g2, 8, %g2
  450. or %g2, %o4, %g5
  451. 4: addcc %g7, %g5, %g7
  452. retl
  453.  addx %g0, %g7, %o0
  454. C_LABEL(__csum_partial_copy_end):
  455. /* We do these strange calculations for the csum_*_from_user case only, ie.
  456.  * we only bother with faults on loads... */
  457. /* o2 = ((g2%20)&3)*8
  458.  * o3 = g1 - (g2/20)*32 - o2 */
  459. 20:
  460. cmp %g2, 20
  461. blu,a 1f
  462.  and %g2, 3, %o2
  463. sub %g1, 32, %g1
  464. b 20b
  465.  sub %g2, 20, %g2
  466. 1:
  467. sll %o2, 3, %o2
  468. b 31f
  469.  sub %g1, %o2, %o3
  470. /* o2 = (!(g2 & 15) ? 0 : (((g2 & 15) + 1) & ~1)*8)
  471.  * o3 = g1 - (g2/16)*32 - o2 */
  472. 21:
  473. andcc %g2, 15, %o3
  474. srl %g2, 4, %g2
  475. be,a 1f
  476.  clr %o2
  477. add %o3, 1, %o3
  478. and %o3, 14, %o3
  479. sll %o3, 3, %o2
  480. 1:
  481. sll %g2, 5, %g2
  482. sub %g1, %g2, %o3
  483. b 31f
  484.  sub %o3, %o2, %o3
  485. /* o0 += (g2/10)*16 - 0x70
  486.  * 01 += (g2/10)*16 - 0x70
  487.  * o2 = (g2 % 10) ? 8 : 0
  488.  * o3 += 0x70 - (g2/10)*16 - o2 */
  489. 22:
  490. cmp %g2, 10
  491. blu,a 1f
  492.  sub %o0, 0x70, %o0
  493. add %o0, 16, %o0
  494. add %o1, 16, %o1
  495. sub %o3, 16, %o3
  496. b 22b
  497.  sub %g2, 10, %g2
  498. 1:
  499. sub %o1, 0x70, %o1
  500. add %o3, 0x70, %o3
  501. clr %o2
  502. tst %g2
  503. bne,a 1f
  504.  mov 8, %o2
  505. 1:
  506. b 31f
  507.  sub %o3, %o2, %o3
  508. 96:
  509. and %g1, 3, %g1
  510. sll %g4, 2, %g4
  511. add %g1, %g4, %o3
  512. 30:
  513. /* %o1 is dst
  514.  * %o3 is # bytes to zero out
  515.  * %o4 is faulting address
  516.  * %o5 is %pc where fault occurred */
  517. clr %o2
  518. 31:
  519. /* %o0 is src
  520.  * %o1 is dst
  521.  * %o2 is # of bytes to copy from src to dst
  522.  * %o3 is # bytes to zero out
  523.  * %o4 is faulting address
  524.  * %o5 is %pc where fault occurred */
  525. save %sp, -104, %sp
  526.         mov     %i5, %o0
  527.         mov     %i7, %o1
  528.         mov %i4, %o2
  529.         call    C_LABEL(lookup_fault)
  530.  mov %g7, %i4
  531. cmp %o0, 2
  532. bne 1f
  533.  add %g0, -EFAULT, %i5
  534. tst %i2
  535. be 2f
  536.  mov %i0, %o1
  537. mov %i1, %o0
  538. 5:
  539. call C_LABEL(__memcpy)
  540.  mov %i2, %o2
  541. tst %o0
  542. bne,a 2f
  543.  add %i3, %i2, %i3
  544. add %i1, %i2, %i1
  545. 2:
  546. mov %i1, %o0
  547. 6:
  548. call C_LABEL(__bzero)
  549.  mov %i3, %o1
  550. 1:
  551. ld [%sp + 168], %o2 ! struct_ptr of parent
  552. st %i5, [%o2]
  553. ret
  554.  restore
  555.         .section __ex_table,#alloc
  556.         .align 4
  557.         .word 5b,2
  558. .word 6b,2