~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/microblaze/lib/memset.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  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 
 27 #include <linux/export.h>
 28 #include <linux/types.h>
 29 #include <linux/stddef.h>
 30 #include <linux/compiler.h>
 31 #include <linux/string.h>
 32 
 33 #ifdef CONFIG_OPT_LIB_FUNCTION
 34 void *memset(void *v_src, int c, __kernel_size_t n)
 35 {
 36         char *src = v_src;
 37         uint32_t *i_src;
 38         uint32_t w32 = 0;
 39 
 40         /* Truncate c to 8 bits */
 41         c = (c & 0xFF);
 42 
 43         if (unlikely(c)) {
 44                 /* Make a repeating word out of it */
 45                 w32 = c;
 46                 w32 |= w32 << 8;
 47                 w32 |= w32 << 16;
 48         }
 49 
 50         if (likely(n >= 4)) {
 51                 /* Align the destination to a word boundary */
 52                 /* This is done in an endian independent manner */
 53                 switch ((unsigned) src & 3) {
 54                 case 1:
 55                         *src++ = c;
 56                         --n;
 57                         fallthrough;
 58                 case 2:
 59                         *src++ = c;
 60                         --n;
 61                         fallthrough;
 62                 case 3:
 63                         *src++ = c;
 64                         --n;
 65                 }
 66 
 67                 i_src  = (void *)src;
 68 
 69                 /* Do as many full-word copies as we can */
 70                 for (; n >= 4; n -= 4)
 71                         *i_src++ = w32;
 72 
 73                 src  = (void *)i_src;
 74         }
 75 
 76         /* Simple, byte oriented memset or the rest of count. */
 77         switch (n) {
 78         case 3:
 79                 *src++ = c;
 80                 fallthrough;
 81         case 2:
 82                 *src++ = c;
 83                 fallthrough;
 84         case 1:
 85                 *src++ = c;
 86                 break;
 87         default:
 88                 break;
 89         }
 90 
 91         return v_src;
 92 }
 93 EXPORT_SYMBOL(memset);
 94 #endif /* CONFIG_OPT_LIB_FUNCTION */
 95 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php