memset.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
  3. * Copyright (C) 2008-2009 PetaLogix
  4. * Copyright (C) 2007 John Williams
  5. *
  6. * Reasonably optimised generic C-code for memset on Microblaze
  7. * This is generic C code to do efficient, alignment-aware memcpy.
  8. *
  9. * It is based on demo code originally Copyright 2001 by Intel Corp, taken from
  10. * http://www.embedded.com/showArticle.jhtml?articleID=19205567
  11. *
  12. * Attempts were made, unsuccessfully, to contact the original
  13. * author of this code (Michael Morrow, Intel). Below is the original
  14. * copyright notice.
  15. *
  16. * This software has been developed by Intel Corporation.
  17. * Intel specifically disclaims all warranties, express or
  18. * implied, and all liability, including consequential and
  19. * other indirect damages, for the use of this program, including
  20. * liability for infringement of any proprietary rights,
  21. * and including the warranties of merchantability and fitness
  22. * for a particular purpose. Intel does not assume any
  23. * responsibility for and errors which may appear in this program
  24. * not any responsibility to update it.
  25. */
  26. #include <linux/types.h>
  27. #include <linux/stddef.h>
  28. #include <linux/compiler.h>
  29. #include <linux/module.h>
  30. #include <linux/string.h>
  31. #ifdef __HAVE_ARCH_MEMSET
  32. void *memset(void *v_src, int c, __kernel_size_t n)
  33. {
  34. char *src = v_src;
  35. #ifdef CONFIG_OPT_LIB_FUNCTION
  36. uint32_t *i_src;
  37. uint32_t w32 = 0;
  38. #endif
  39. /* Truncate c to 8 bits */
  40. c = (c & 0xFF);
  41. #ifdef CONFIG_OPT_LIB_FUNCTION
  42. if (unlikely(c)) {
  43. /* Make a repeating word out of it */
  44. w32 = c;
  45. w32 |= w32 << 8;
  46. w32 |= w32 << 16;
  47. }
  48. if (likely(n >= 4)) {
  49. /* Align the destination to a word boundary */
  50. /* This is done in an endian independant manner */
  51. switch ((unsigned) src & 3) {
  52. case 1:
  53. *src++ = c;
  54. --n;
  55. case 2:
  56. *src++ = c;
  57. --n;
  58. case 3:
  59. *src++ = c;
  60. --n;
  61. }
  62. i_src = (void *)src;
  63. /* Do as many full-word copies as we can */
  64. for (; n >= 4; n -= 4)
  65. *i_src++ = w32;
  66. src = (void *)i_src;
  67. }
  68. #endif
  69. /* Simple, byte oriented memset or the rest of count. */
  70. while (n--)
  71. *src++ = c;
  72. return v_src;
  73. }
  74. EXPORT_SYMBOL(memset);
  75. #endif /* __HAVE_ARCH_MEMSET */