memset.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

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 by Ralf Baechle
  7.  */
  8. #include <asm/asm.h>
  9. #include <asm/offset.h>
  10. #include <asm/regdef.h>
  11. #define EX(insn,reg,addr,handler)
  12. 9: insn reg, addr;
  13. .section __ex_table,"a"; 
  14. PTR 9b, handler; 
  15. .previous
  16. #define F_FILL64(dst, offset, val, fixup)
  17. EX(sw, val, (offset + 0x00)(dst), fixup);
  18. EX(sw, val, (offset + 0x04)(dst), fixup);
  19. EX(sw, val, (offset + 0x08)(dst), fixup);
  20. EX(sw, val, (offset + 0x0c)(dst), fixup);
  21. EX(sw, val, (offset + 0x10)(dst), fixup);
  22. EX(sw, val, (offset + 0x14)(dst), fixup);
  23. EX(sw, val, (offset + 0x18)(dst), fixup);
  24. EX(sw, val, (offset + 0x1c)(dst), fixup);
  25. EX(sw, val, (offset + 0x20)(dst), fixup);
  26. EX(sw, val, (offset + 0x24)(dst), fixup);
  27. EX(sw, val, (offset + 0x28)(dst), fixup);
  28. EX(sw, val, (offset + 0x2c)(dst), fixup);
  29. EX(sw, val, (offset + 0x30)(dst), fixup);
  30. EX(sw, val, (offset + 0x34)(dst), fixup);
  31. EX(sw, val, (offset + 0x38)(dst), fixup);
  32. EX(sw, val, (offset + 0x3c)(dst), fixup)
  33. /*
  34.  * memset(void *s, int c, size_t n)
  35.  *
  36.  * a0: start of area to clear
  37.  * a1: char to fill with
  38.  * a2: size of area to clear
  39.  */
  40. .set noreorder
  41. .align 5
  42. LEAF(memset)
  43. beqz a1, 1f
  44.  move v0, a0 /* result */
  45. andi a1, 0xff /* spread fillword */
  46. sll t1, a1, 8
  47. or a1, t1
  48. sll t1, a1, 16
  49. or a1, t1
  50. 1:
  51. EXPORT(__bzero)
  52. .type   __bzero, @function
  53. sltiu t0, a2, 4 /* very small region? */
  54. bnez t0, small_memset
  55.  andi t0, a0, 3 /* aligned? */
  56. beqz t0, 1f
  57.  subu t0, 4 /* alignment in bytes */
  58. #ifdef __MIPSEB__
  59. EX(swl, a1, (a0), first_fixup) /* make word aligned */
  60. #endif
  61. #ifdef __MIPSEL__
  62. EX(swr, a1, (a0), first_fixup) /* make word aligned */
  63. #endif
  64. subu a0, t0 /* word align ptr */
  65. addu a2, t0 /* correct size */
  66. 1: ori t1, a2, 0x3f /* # of full blocks */
  67. xori t1, 0x3f
  68. beqz t1, memset_partial /* no block to fill */
  69.  andi t0, a2, 0x3c
  70. addu t1, a0 /* end address */
  71. .set reorder
  72. 1: addiu a0, 64
  73. F_FILL64(a0, -64, a1, fwd_fixup)
  74. bne t1, a0, 1b
  75. .set noreorder
  76. memset_partial:
  77. la t1, 2f /* where to start */
  78. subu t1, t0
  79. jr t1
  80.  addu a0, t0 /* dest ptr */
  81. F_FILL64(a0, -64, a1, partial_fixup) /* ... but first do wrds ... */
  82. 2: andi a2, 3 /* 0 <= n <= 3 to go */
  83. beqz a2, 1f
  84.  addu a0, a2 /* What's left */
  85. #ifdef __MIPSEB__
  86. EX(swr, a1, -1(a0), last_fixup)
  87. #endif
  88. #ifdef __MIPSEL__
  89. EX(swl, a1, -1(a0), last_fixup)
  90. #endif
  91. 1: jr ra
  92.  move a2, zero
  93. small_memset:
  94. beqz a2, 2f
  95.  addu t1, a0, a2
  96. 1: addiu a0, 1 /* fill bytewise */
  97. bne t1, a0, 1b
  98.  sb a1, -1(a0)
  99. 2: jr ra /* done */
  100.  move a2, zero
  101. END(memset)
  102. first_fixup:
  103. jr ra
  104.  nop
  105. fwd_fixup:
  106. lw t0, THREAD_BUADDR($28)
  107. andi a2, 0x3f
  108. addu a2, t1
  109. jr ra
  110.  subu a2, t0
  111. partial_fixup:
  112. lw t0, THREAD_BUADDR($28)
  113. andi a2, 3
  114. addu a2, t1
  115. jr ra
  116.  subu a2, t0
  117. last_fixup:
  118. jr ra
  119.  andi v1, a2, 3