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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1998, 1999, 2000 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  */
  9. #include <asm/asm.h>
  10. #include <asm/offset.h>
  11. #include <asm/regdef.h>
  12. #include <asm/mipsregs.h>
  13. #include <asm/stackframe.h>
  14. #define EX(insn,reg,addr,handler)
  15. 9: insn reg, addr;
  16. .section __ex_table,"a"; 
  17. PTR 9b, handler; 
  18. .previous
  19. #define F_FILL64(dst, offset, val, fixup)
  20. EX(sd, val, (offset + 0x00)(dst), fixup);
  21. EX(sd, val, (offset + 0x08)(dst), fixup);
  22. EX(sd, val, (offset + 0x10)(dst), fixup);
  23. EX(sd, val, (offset + 0x18)(dst), fixup);
  24. EX(sd, val, (offset + 0x20)(dst), fixup);
  25. EX(sd, val, (offset + 0x28)(dst), fixup);
  26. EX(sd, val, (offset + 0x30)(dst), fixup);
  27. EX(sd, val, (offset + 0x38)(dst), fixup)
  28. /*
  29.  * memset(void *s, int c, size_t n)
  30.  *
  31.  * a0: start of area to clear
  32.  * a1: char to fill with
  33.  * a2: size of area to clear
  34.  */
  35. .set noreorder
  36. .align 5
  37. LEAF(memset)
  38. beqz a1, 1f
  39.  move v0, a0 /* result */
  40. andi a1, 0xff /* spread fillword */
  41. dsll t1, a1, 8
  42. or a1, t1
  43. dsll t1, a1, 16
  44. or a1, t1
  45. dsll t1, a1, 32
  46. or a1, t1
  47. 1:
  48. FEXPORT(__bzero)
  49. sltiu t0, a2, 8 /* very small region? */
  50. bnez t0, small_memset
  51.  andi t0, a0, 7 /* aligned? */
  52. beqz t0, 1f
  53.  dsubu t0, 8 /* alignment in bytes */
  54. #ifdef __MIPSEB__
  55. EX(sdl, a1, (a0), first_fixup) /* make dword aligned */
  56. #endif
  57. #ifdef __MIPSEL__
  58. EX(sdr, a1, (a0), first_fixup) /* make dword aligned */
  59. #endif
  60. dsubu a0, t0 /* dword align ptr */
  61. daddu a2, t0 /* correct size */
  62. 1: ori t1, a2, 0x3f /* # of full blocks */
  63. xori t1, 0x3f
  64. beqz t1, memset_partial /* no block to fill */
  65.  andi t0, a2, 0x38
  66. daddu t1, a0 /* end address */
  67. .set reorder
  68. 1: daddiu a0, 64
  69. F_FILL64(a0, -64, a1, fwd_fixup)
  70. bne t1, a0, 1b
  71. .set noreorder
  72. memset_partial:
  73. PTR_LA t1, 2f /* where to start */
  74. .set noat
  75. dsrl AT, t0, 1
  76. dsubu t1, AT
  77. .set noat
  78. jr t1
  79.  daddu a0, t0 /* dest ptr */
  80. .set push
  81. .set noreorder
  82. .set nomacro
  83. F_FILL64(a0, -64, a1, partial_fixup) /* ... but first do dwds ... */
  84. 2: .set pop
  85. andi a2, 7 /* 0 <= n <= 7 to go */
  86. beqz a2, 1f
  87.  daddu a0, a2 /* What's left */
  88. #ifdef __MIPSEB__
  89. EX(sdr, a1, -1(a0), last_fixup)
  90. #endif
  91. #ifdef __MIPSEL__
  92. EX(sdl, a1, -1(a0), last_fixup)
  93. #endif
  94. 1: jr ra
  95.  move a2, zero
  96. small_memset:
  97. beqz a2, 2f
  98.  daddu t1, a0, a2
  99. 1: daddiu a0, 1 /* fill bytewise */
  100. bne t1, a0, 1b
  101.  sb a1, -1(a0)
  102. 2: jr ra /* done */
  103.  move a2, zero
  104. END(memset)
  105. first_fixup:
  106. jr ra
  107.  nop
  108. fwd_fixup:
  109. ld t0, THREAD_BUADDR($28)
  110. andi a2, 0x3f
  111. daddu a2, t1
  112. jr ra
  113.  dsubu a2, t0
  114. partial_fixup:
  115. ld t0, THREAD_BUADDR($28)
  116. andi a2, 7
  117. daddu a2, t1
  118. jr ra
  119.  dsubu a2, t0
  120. last_fixup:
  121. jr ra
  122.  andi v1, a2, 7