The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/lib/libkern/bcopy.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: bcopy.c,v 1.5 2003/08/07 16:32:07 agc Exp $    */
    2 
    3 /*-
    4  * Copyright (c) 1990, 1993
    5  *      The Regents of the University of California.  All rights reserved.
    6  *
    7  * This code is derived from software contributed to Berkeley by
    8  * Chris Torek.
    9  *
   10  * Redistribution and use in source and binary forms, with or without
   11  * modification, are permitted provided that the following conditions
   12  * are met:
   13  * 1. Redistributions of source code must retain the above copyright
   14  *    notice, this list of conditions and the following disclaimer.
   15  * 2. Redistributions in binary form must reproduce the above copyright
   16  *    notice, this list of conditions and the following disclaimer in the
   17  *    documentation and/or other materials provided with the distribution.
   18  * 3. Neither the name of the University nor the names of its contributors
   19  *    may be used to endorse or promote products derived from this software
   20  *    without specific prior written permission.
   21  *
   22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   32  * SUCH DAMAGE.
   33  */
   34 
   35 #include <sys/cdefs.h>
   36 #if defined(LIBC_SCCS) && !defined(lint)
   37 #if 0
   38 static char sccsid[] = "@(#)bcopy.c     8.1 (Berkeley) 6/4/93";
   39 #else
   40 __RCSID("$NetBSD: bcopy.c,v 1.5 2003/08/07 16:32:07 agc Exp $");
   41 #endif
   42 #endif /* LIBC_SCCS and not lint */
   43 
   44 #if !defined(_KERNEL) && !defined(_STANDALONE)
   45 #include <string.h>
   46 #else
   47 #include <lib/libkern/libkern.h>
   48 #endif
   49 
   50 /*
   51  * sizeof(word) MUST BE A POWER OF TWO
   52  * SO THAT wmask BELOW IS ALL ONES
   53  */
   54 typedef long word;              /* "word" used for optimal copy speed */
   55 
   56 #define wsize   sizeof(word)
   57 #define wmask   (wsize - 1)
   58 
   59 /*
   60  * Copy a block of memory, handling overlap.
   61  * This is the routine that actually implements
   62  * (the portable versions of) bcopy, memcpy, and memmove.
   63  */
   64 #ifdef MEMCOPY
   65 void *
   66 memcpy(dst0, src0, length)
   67 #else
   68 #ifdef MEMMOVE
   69 void *
   70 memmove(dst0, src0, length)
   71 #else
   72 void
   73 bcopy(src0, dst0, length)
   74 #endif
   75 #endif
   76         void *dst0;
   77         const void *src0;
   78         size_t length;
   79 {
   80         char *dst = dst0;
   81         const char *src = src0;
   82         size_t t;
   83 
   84         if (length == 0 || dst == src)          /* nothing to do */
   85                 goto done;
   86 
   87         /*
   88          * Macros: loop-t-times; and loop-t-times, t>0
   89          */
   90 #define TLOOP(s) if (t) TLOOP1(s)
   91 #define TLOOP1(s) do { s; } while (--t)
   92 
   93 #ifndef MEMCOPY
   94         if ((unsigned long)dst < (unsigned long)src) {
   95 #endif
   96                 /*
   97                  * Copy forward.
   98                  */
   99                 t = (long)src;  /* only need low bits */
  100                 if ((t | (long)dst) & wmask) {
  101                         /*
  102                          * Try to align operands.  This cannot be done
  103                          * unless the low bits match.
  104                          */
  105                         if ((t ^ (long)dst) & wmask || length < wsize)
  106                                 t = length;
  107                         else
  108                                 t = wsize - (t & wmask);
  109                         length -= t;
  110                         TLOOP1(*dst++ = *src++);
  111                 }
  112                 /*
  113                  * Copy whole words, then mop up any trailing bytes.
  114                  */
  115                 t = length / wsize;
  116                 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
  117                 t = length & wmask;
  118                 TLOOP(*dst++ = *src++);
  119 #ifndef MEMCOPY
  120         } else {
  121                 /*
  122                  * Copy backwards.  Otherwise essentially the same.
  123                  * Alignment works as before, except that it takes
  124                  * (t&wmask) bytes to align, not wsize-(t&wmask).
  125                  */
  126                 src += length;
  127                 dst += length;
  128                 t = (long)src;
  129                 if ((t | (long)dst) & wmask) {
  130                         if ((t ^ (long)dst) & wmask || length <= wsize)
  131                                 t = length;
  132                         else
  133                                 t &= wmask;
  134                         length -= t;
  135                         TLOOP1(*--dst = *--src);
  136                 }
  137                 t = length / wsize;
  138                 TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
  139                 t = length & wmask;
  140                 TLOOP(*--dst = *--src);
  141         }
  142 #endif  /* MEMCOPY */
  143 
  144 done:
  145 #if defined(MEMCOPY) || defined(MEMMOVE)
  146         return (dst0);
  147 #else
  148         return;
  149 #endif
  150 }

Cache object: 6fcb63f4ccad7dd2606159bd30bd858f


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.