1995-02-18 01:27:10 +00:00
|
|
|
/* memcopy.h -- definitions for memory copy functions. Generic C version.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 1991-2020 Free Software Foundation, Inc.
|
2001-07-06 04:58:11 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
Contributed by Torbjorn Granlund (tege@sics.se).
|
|
|
|
|
1997-02-15 04:31:36 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-02-15 04:31:36 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2012-12-04 21:05:57 +00:00
|
|
|
#ifndef _MEMCOPY_H
|
|
|
|
#define _MEMCOPY_H 1
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
/* The strategy of the memory functions is:
|
|
|
|
|
|
|
|
1. Copy bytes until the destination pointer is aligned.
|
|
|
|
|
|
|
|
2. Copy words in unrolled loops. If the source and destination
|
|
|
|
are not aligned in the same way, use word memory operations,
|
|
|
|
but shift and merge two read words before writing.
|
|
|
|
|
|
|
|
3. Copy the few remaining bytes.
|
|
|
|
|
|
|
|
This is fast on processors that have at least 10 registers for
|
|
|
|
allocation by GCC, and that can access memory at reg+const in one
|
|
|
|
instruction.
|
|
|
|
|
|
|
|
I made an "exhaustive" test of this memmove when I wrote it,
|
|
|
|
exhaustive in the sense that I tried all alignment and length
|
|
|
|
combinations, with and without overlap. */
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <endian.h>
|
2014-07-02 19:58:45 +00:00
|
|
|
#include <pagecopy.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
/* The macros defined in this file are:
|
|
|
|
|
|
|
|
BYTE_COPY_FWD(dst_beg_ptr, src_beg_ptr, nbytes_to_copy)
|
|
|
|
|
|
|
|
BYTE_COPY_BWD(dst_end_ptr, src_end_ptr, nbytes_to_copy)
|
|
|
|
|
|
|
|
WORD_COPY_FWD(dst_beg_ptr, src_beg_ptr, nbytes_remaining, nbytes_to_copy)
|
|
|
|
|
|
|
|
WORD_COPY_BWD(dst_end_ptr, src_end_ptr, nbytes_remaining, nbytes_to_copy)
|
|
|
|
|
|
|
|
MERGE(old_word, sh_1, new_word, sh_2)
|
|
|
|
[I fail to understand. I feel stupid. --roland]
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Type to use for aligned memory operations.
|
|
|
|
This should normally be the biggest type supported by a single load
|
|
|
|
and store. */
|
|
|
|
#define op_t unsigned long int
|
2019-02-27 13:55:45 +00:00
|
|
|
#define OPSIZ (sizeof (op_t))
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
/* Type to use for unaligned operations. */
|
|
|
|
typedef unsigned char byte;
|
|
|
|
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
#define MERGE(w0, sh_1, w1, sh_2) (((w0) >> (sh_1)) | ((w1) << (sh_2)))
|
|
|
|
#endif
|
|
|
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
|
|
#define MERGE(w0, sh_1, w1, sh_2) (((w0) << (sh_1)) | ((w1) >> (sh_2)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Copy exactly NBYTES bytes from SRC_BP to DST_BP,
|
|
|
|
without any assumptions about alignment of the pointers. */
|
|
|
|
#define BYTE_COPY_FWD(dst_bp, src_bp, nbytes) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
size_t __nbytes = (nbytes); \
|
|
|
|
while (__nbytes > 0) \
|
|
|
|
{ \
|
|
|
|
byte __x = ((byte *) src_bp)[0]; \
|
|
|
|
src_bp += 1; \
|
|
|
|
__nbytes -= 1; \
|
|
|
|
((byte *) dst_bp)[0] = __x; \
|
|
|
|
dst_bp += 1; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Copy exactly NBYTES_TO_COPY bytes from SRC_END_PTR to DST_END_PTR,
|
|
|
|
beginning at the bytes right before the pointers and continuing towards
|
|
|
|
smaller addresses. Don't assume anything about alignment of the
|
|
|
|
pointers. */
|
|
|
|
#define BYTE_COPY_BWD(dst_ep, src_ep, nbytes) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
size_t __nbytes = (nbytes); \
|
|
|
|
while (__nbytes > 0) \
|
|
|
|
{ \
|
|
|
|
byte __x; \
|
|
|
|
src_ep -= 1; \
|
|
|
|
__x = ((byte *) src_ep)[0]; \
|
|
|
|
dst_ep -= 1; \
|
|
|
|
__nbytes -= 1; \
|
|
|
|
((byte *) dst_ep)[0] = __x; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Copy *up to* NBYTES bytes from SRC_BP to DST_BP, with
|
|
|
|
the assumption that DST_BP is aligned on an OPSIZ multiple. If
|
|
|
|
not all bytes could be easily copied, store remaining number of bytes
|
|
|
|
in NBYTES_LEFT, otherwise store 0. */
|
2015-10-15 21:01:35 +00:00
|
|
|
extern void _wordcopy_fwd_aligned (long int, long int, size_t)
|
|
|
|
attribute_hidden __THROW;
|
|
|
|
extern void _wordcopy_fwd_dest_aligned (long int, long int, size_t)
|
|
|
|
attribute_hidden __THROW;
|
1995-02-18 01:27:10 +00:00
|
|
|
#define WORD_COPY_FWD(dst_bp, src_bp, nbytes_left, nbytes) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (src_bp % OPSIZ == 0) \
|
|
|
|
_wordcopy_fwd_aligned (dst_bp, src_bp, (nbytes) / OPSIZ); \
|
|
|
|
else \
|
|
|
|
_wordcopy_fwd_dest_aligned (dst_bp, src_bp, (nbytes) / OPSIZ); \
|
|
|
|
src_bp += (nbytes) & -OPSIZ; \
|
|
|
|
dst_bp += (nbytes) & -OPSIZ; \
|
|
|
|
(nbytes_left) = (nbytes) % OPSIZ; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Copy *up to* NBYTES_TO_COPY bytes from SRC_END_PTR to DST_END_PTR,
|
|
|
|
beginning at the words (of type op_t) right before the pointers and
|
|
|
|
continuing towards smaller addresses. May take advantage of that
|
|
|
|
DST_END_PTR is aligned on an OPSIZ multiple. If not all bytes could be
|
|
|
|
easily copied, store remaining number of bytes in NBYTES_REMAINING,
|
|
|
|
otherwise store 0. */
|
2015-10-15 21:01:35 +00:00
|
|
|
extern void _wordcopy_bwd_aligned (long int, long int, size_t)
|
|
|
|
attribute_hidden __THROW;
|
|
|
|
extern void _wordcopy_bwd_dest_aligned (long int, long int, size_t)
|
|
|
|
attribute_hidden __THROW;
|
1995-02-18 01:27:10 +00:00
|
|
|
#define WORD_COPY_BWD(dst_ep, src_ep, nbytes_left, nbytes) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (src_ep % OPSIZ == 0) \
|
|
|
|
_wordcopy_bwd_aligned (dst_ep, src_ep, (nbytes) / OPSIZ); \
|
|
|
|
else \
|
|
|
|
_wordcopy_bwd_dest_aligned (dst_ep, src_ep, (nbytes) / OPSIZ); \
|
|
|
|
src_ep -= (nbytes) & -OPSIZ; \
|
|
|
|
dst_ep -= (nbytes) & -OPSIZ; \
|
|
|
|
(nbytes_left) = (nbytes) % OPSIZ; \
|
|
|
|
} while (0)
|
|
|
|
|
2014-07-02 19:58:45 +00:00
|
|
|
/* The macro PAGE_COPY_FWD_MAYBE (dstp, srcp, nbytes_left, nbytes) is invoked
|
|
|
|
like WORD_COPY_FWD et al. The pointers should be at least word aligned.
|
|
|
|
This will check if virtual copying by pages can and should be done and do it
|
|
|
|
if so. The pointers will be aligned to PAGE_SIZE bytes. The macro requires
|
|
|
|
that pagecopy.h defines at least PAGE_COPY_THRESHOLD to 0. If
|
|
|
|
PAGE_COPY_THRESHOLD is non-zero, the header must also define PAGE_COPY_FWD
|
|
|
|
and PAGE_SIZE.
|
|
|
|
*/
|
|
|
|
#if PAGE_COPY_THRESHOLD
|
|
|
|
|
|
|
|
# include <assert.h>
|
|
|
|
|
|
|
|
# define PAGE_COPY_FWD_MAYBE(dstp, srcp, nbytes_left, nbytes) \
|
|
|
|
do \
|
|
|
|
{ \
|
2019-02-25 13:19:19 +00:00
|
|
|
if ((nbytes) >= PAGE_COPY_THRESHOLD \
|
|
|
|
&& PAGE_OFFSET ((dstp) - (srcp)) == 0) \
|
2014-07-02 19:58:45 +00:00
|
|
|
{ \
|
|
|
|
/* The amount to copy is past the threshold for copying \
|
|
|
|
pages virtually with kernel VM operations, and the \
|
|
|
|
source and destination addresses have the same alignment. */ \
|
|
|
|
size_t nbytes_before = PAGE_OFFSET (-(dstp)); \
|
|
|
|
if (nbytes_before != 0) \
|
|
|
|
{ \
|
|
|
|
/* First copy the words before the first page boundary. */ \
|
|
|
|
WORD_COPY_FWD (dstp, srcp, nbytes_left, nbytes_before); \
|
|
|
|
assert (nbytes_left == 0); \
|
|
|
|
nbytes -= nbytes_before; \
|
|
|
|
} \
|
|
|
|
PAGE_COPY_FWD (dstp, srcp, nbytes_left, nbytes); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* The page size is always a power of two, so we can avoid modulo division. */
|
|
|
|
# define PAGE_OFFSET(n) ((n) & (PAGE_SIZE - 1))
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
# define PAGE_COPY_FWD_MAYBE(dstp, srcp, nbytes_left, nbytes) /* nada */
|
|
|
|
|
|
|
|
#endif
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
/* Threshold value for when to enter the unrolled loops. */
|
|
|
|
#define OP_T_THRES 16
|
2012-12-04 21:05:57 +00:00
|
|
|
|
2014-07-04 19:39:15 +00:00
|
|
|
/* Set to 1 if memcpy is safe to use for forward-copying memmove with
|
|
|
|
overlapping addresses. This is 0 by default because memcpy implementations
|
|
|
|
are generally not safe for overlapping addresses. */
|
2014-06-28 00:35:24 +00:00
|
|
|
#define MEMCPY_OK_FOR_FWD_MEMMOVE 0
|
|
|
|
|
2012-12-04 21:05:57 +00:00
|
|
|
#endif /* memcopy.h */
|