memset.S 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * File: memset.S
  3. *
  4. * Copyright 2004-2007 Analog Devices Inc.
  5. * Enter bugs at http://blackfin.uclinux.org/
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, see the file COPYING, or write
  19. * to the Free Software Foundation, Inc.,
  20. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. .align 2
  23. /*
  24. * C Library function MEMSET
  25. * R0 = address (leave unchanged to form result)
  26. * R1 = filler byte
  27. * R2 = count
  28. * Favours word aligned data.
  29. */
  30. .globl _memset;
  31. _memset:
  32. P0 = R0 ; /* P0 = address */
  33. P2 = R2 ; /* P2 = count */
  34. R3 = R0 + R2; /* end */
  35. CC = R2 <= 7(IU);
  36. IF CC JUMP .Ltoo_small;
  37. R1 = R1.B (Z); /* R1 = fill char */
  38. R2 = 3;
  39. R2 = R0 & R2; /* addr bottom two bits */
  40. CC = R2 == 0; /* AZ set if zero. */
  41. IF !CC JUMP .Lforce_align ; /* Jump if addr not aligned. */
  42. .Laligned:
  43. P1 = P2 >> 2; /* count = n/4 */
  44. R2 = R1 << 8; /* create quad filler */
  45. R2.L = R2.L + R1.L(NS);
  46. R2.H = R2.L + R1.H(NS);
  47. P2 = R3;
  48. LSETUP (.Lquad_loop , .Lquad_loop) LC0=P1;
  49. .Lquad_loop:
  50. [P0++] = R2;
  51. CC = P0 == P2;
  52. IF !CC JUMP .Lbytes_left;
  53. RTS;
  54. .Lbytes_left:
  55. R2 = R3; /* end point */
  56. R3 = P0; /* current position */
  57. R2 = R2 - R3; /* bytes left */
  58. P2 = R2;
  59. .Ltoo_small:
  60. CC = P2 == 0; /* Check zero count */
  61. IF CC JUMP .Lfinished; /* Unusual */
  62. .Lbytes:
  63. LSETUP (.Lbyte_loop , .Lbyte_loop) LC0=P2;
  64. .Lbyte_loop:
  65. B[P0++] = R1;
  66. .Lfinished:
  67. RTS;
  68. .Lforce_align:
  69. CC = BITTST (R0, 0); /* odd byte */
  70. R0 = 4;
  71. R0 = R0 - R2;
  72. P1 = R0;
  73. R0 = P0; /* Recover return address */
  74. IF !CC JUMP .Lskip1;
  75. B[P0++] = R1;
  76. .Lskip1:
  77. CC = R2 <= 2; /* 2 bytes */
  78. P2 -= P1; /* reduce count */
  79. IF !CC JUMP .Laligned;
  80. B[P0++] = R1;
  81. B[P0++] = R1;
  82. JUMP .Laligned;