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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: blockops.S,v 1.8 1998/01/30 10:58:44 jj Exp $
  2.  * blockops.S: Common block zero optimized routines.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #include <asm/cprefix.h>
  7. #include <asm/page.h>
  8. /* Zero out 64 bytes of memory at (buf + offset).
  9.  * Assumes %g1 contains zero.
  10.  */
  11. #define BLAST_BLOCK(buf, offset) 
  12. std %g0, [buf + offset + 0x38]; 
  13. std %g0, [buf + offset + 0x30]; 
  14. std %g0, [buf + offset + 0x28]; 
  15. std %g0, [buf + offset + 0x20]; 
  16. std %g0, [buf + offset + 0x18]; 
  17. std %g0, [buf + offset + 0x10]; 
  18. std %g0, [buf + offset + 0x08]; 
  19. std %g0, [buf + offset + 0x00];
  20. /* Copy 32 bytes of memory at (src + offset) to
  21.  * (dst + offset).
  22.  */
  23. #define MIRROR_BLOCK(dst, src, offset, t0, t1, t2, t3, t4, t5, t6, t7) 
  24. ldd [src + offset + 0x18], t0; 
  25. ldd [src + offset + 0x10], t2; 
  26. ldd [src + offset + 0x08], t4; 
  27. ldd [src + offset + 0x00], t6; 
  28. std t0, [dst + offset + 0x18]; 
  29. std t2, [dst + offset + 0x10]; 
  30. std t4, [dst + offset + 0x08]; 
  31. std t6, [dst + offset + 0x00];
  32. /* Profiling evidence indicates that memset() is
  33.  * commonly called for blocks of size PAGE_SIZE,
  34.  * and (2 * PAGE_SIZE) (for kernel stacks)
  35.  * and with a second arg of zero.  We assume in
  36.  * all of these cases that the buffer is aligned
  37.  * on at least an 8 byte boundry.
  38.  *
  39.  * Therefore we special case them to make them
  40.  * as fast as possible.
  41.  */
  42. .text
  43. .align 4
  44. .globl C_LABEL(bzero_1page), C_LABEL(__copy_1page)
  45. C_LABEL(bzero_1page):
  46. /* NOTE: If you change the number of insns of this routine, please check
  47.  * arch/sparc/mm/hypersparc.S */
  48. /* %o0 = buf */
  49. or %g0, %g0, %g1
  50. or %o0, %g0, %o1
  51. or %g0, (PAGE_SIZE >> 8), %g2
  52. 1:
  53. BLAST_BLOCK(%o0, 0x00)
  54. BLAST_BLOCK(%o0, 0x40)
  55. BLAST_BLOCK(%o0, 0x80)
  56. BLAST_BLOCK(%o0, 0xc0)
  57. subcc %g2, 1, %g2
  58. bne 1b
  59.  add %o0, 0x100, %o0
  60. retl
  61.  nop
  62. C_LABEL(__copy_1page):
  63. /* NOTE: If you change the number of insns of this routine, please check
  64.  * arch/sparc/mm/hypersparc.S */
  65. /* %o0 = dst, %o1 = src */
  66. or %g0, (PAGE_SIZE >> 8), %g1
  67. 1:
  68. MIRROR_BLOCK(%o0, %o1, 0x00, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  69. MIRROR_BLOCK(%o0, %o1, 0x20, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  70. MIRROR_BLOCK(%o0, %o1, 0x40, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  71. MIRROR_BLOCK(%o0, %o1, 0x60, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  72. MIRROR_BLOCK(%o0, %o1, 0x80, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  73. MIRROR_BLOCK(%o0, %o1, 0xa0, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  74. MIRROR_BLOCK(%o0, %o1, 0xc0, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  75. MIRROR_BLOCK(%o0, %o1, 0xe0, %o2, %o3, %o4, %o5, %g2, %g3, %g4, %g5)
  76. subcc %g1, 1, %g1
  77. add %o0, 0x100, %o0
  78. bne 1b
  79.  add %o1, 0x100, %o1
  80. retl
  81.  nop