2010-01-18 20:40:29 +00:00
|
|
|
/* Optimized memcpy implementation for CELL BE PowerPC.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 2010-2020 Free Software Foundation, Inc.
|
2010-01-18 20:40:29 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
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/>. */
|
2010-01-18 20:40:29 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
|
|
|
#define PREFETCH_AHEAD 6 /* no cache lines SRC prefetching ahead */
|
|
|
|
#define ZERO_AHEAD 4 /* no cache lines DST zeroing ahead */
|
|
|
|
|
|
|
|
/* memcpy routine optimized for CELL-BE-PPC v2.0
|
|
|
|
*
|
|
|
|
* The CELL PPC core has 1 integer unit and 1 load/store unit
|
|
|
|
* CELL:
|
|
|
|
* 1st level data cache = 32K
|
|
|
|
* 2nd level data cache = 512K
|
|
|
|
* 3rd level data cache = 0K
|
|
|
|
* With 3.2 GHz clockrate the latency to 2nd level cache is >36 clocks,
|
|
|
|
* latency to memory is >400 clocks
|
|
|
|
* To improve copy performance we need to prefetch source data
|
|
|
|
* far ahead to hide this latency
|
2013-01-07 17:20:53 +00:00
|
|
|
* For best performance instruction forms ending in "." like "andi."
|
2010-01-18 20:40:29 +00:00
|
|
|
* should be avoided as the are implemented in microcode on CELL.
|
|
|
|
* The below code is loop unrolled for the CELL cache line of 128 bytes
|
|
|
|
*/
|
|
|
|
|
|
|
|
.align 7
|
|
|
|
|
2013-02-28 21:23:47 +00:00
|
|
|
EALIGN (memcpy, 5, 0)
|
2010-01-18 20:43:47 +00:00
|
|
|
CALL_MCOUNT
|
2010-01-18 20:40:29 +00:00
|
|
|
|
|
|
|
dcbt 0,r4 /* Prefetch ONE SRC cacheline */
|
|
|
|
cmplwi cr1,r5,16 /* is size < 16 ? */
|
2010-01-18 20:43:47 +00:00
|
|
|
mr r6,r3
|
2010-01-18 20:40:29 +00:00
|
|
|
blt+ cr1,.Lshortcopy
|
|
|
|
|
|
|
|
.Lbigcopy:
|
|
|
|
neg r8,r3 /* LS 3 bits = # bytes to 8-byte dest bdry */
|
2013-08-21 17:48:48 +00:00
|
|
|
clrlwi r8,r8,32-4 /* align to 16byte boundary */
|
2010-01-18 20:40:29 +00:00
|
|
|
sub r7,r4,r3
|
|
|
|
cmplwi cr0,r8,0
|
|
|
|
beq+ .Ldst_aligned
|
|
|
|
|
|
|
|
.Ldst_unaligned:
|
|
|
|
mtcrf 0x01,r8 /* put #bytes to boundary into cr7 */
|
|
|
|
subf r5,r8,r5
|
|
|
|
|
|
|
|
bf cr7*4+3,1f
|
|
|
|
lbzx r0,r7,r6 /* copy 1 byte */
|
|
|
|
stb r0,0(r6)
|
|
|
|
addi r6,r6,1
|
|
|
|
1: bf cr7*4+2,2f
|
|
|
|
lhzx r0,r7,r6 /* copy 2 byte */
|
|
|
|
sth r0,0(r6)
|
|
|
|
addi r6,r6,2
|
|
|
|
2: bf cr7*4+1,4f
|
|
|
|
lwzx r0,r7,r6 /* copy 4 byte */
|
|
|
|
stw r0,0(r6)
|
|
|
|
addi r6,r6,4
|
|
|
|
4: bf cr7*4+0,8f
|
|
|
|
lfdx fp9,r7,r6 /* copy 8 byte */
|
|
|
|
stfd fp9,0(r6)
|
|
|
|
addi r6,r6,8
|
|
|
|
8:
|
|
|
|
add r4,r7,r6
|
|
|
|
|
|
|
|
.Ldst_aligned:
|
|
|
|
|
|
|
|
cmpwi cr5,r5,128-1
|
|
|
|
|
|
|
|
neg r7,r6
|
|
|
|
addi r6,r6,-8 /* prepare for stfdu */
|
|
|
|
addi r4,r4,-8 /* prepare for lfdu */
|
|
|
|
|
|
|
|
clrlwi r7,r7,32-7 /* align to cacheline boundary */
|
|
|
|
ble+ cr5,.Llessthancacheline
|
|
|
|
|
|
|
|
cmplwi cr6,r7,0
|
|
|
|
subf r5,r7,r5
|
|
|
|
srwi r7,r7,4 /* divide size by 16 */
|
|
|
|
srwi r10,r5,7 /* number of cache lines to copy */
|
|
|
|
|
|
|
|
cmplwi r10,0
|
|
|
|
li r11,0 /* number cachelines to copy with prefetch */
|
|
|
|
beq .Lnocacheprefetch
|
|
|
|
|
|
|
|
cmplwi r10,PREFETCH_AHEAD
|
|
|
|
li r12,128+8 /* prefetch distance */
|
|
|
|
ble .Llessthanmaxprefetch
|
|
|
|
|
|
|
|
subi r11,r10,PREFETCH_AHEAD
|
|
|
|
li r10,PREFETCH_AHEAD
|
|
|
|
|
|
|
|
.Llessthanmaxprefetch:
|
|
|
|
mtctr r10
|
|
|
|
|
|
|
|
.LprefetchSRC:
|
|
|
|
dcbt r12,r4
|
2010-01-18 20:43:47 +00:00
|
|
|
addi r12,r12,128
|
|
|
|
bdnz .LprefetchSRC
|
2010-01-18 20:40:29 +00:00
|
|
|
|
|
|
|
.Lnocacheprefetch:
|
|
|
|
mtctr r7
|
|
|
|
cmplwi cr1,r5,128
|
|
|
|
clrlwi r5,r5,32-7
|
|
|
|
beq cr6,.Lcachelinealigned
|
|
|
|
|
|
|
|
.Laligntocacheline:
|
2010-01-18 20:43:47 +00:00
|
|
|
lfd fp9,0x08(r4)
|
2010-01-18 20:40:29 +00:00
|
|
|
lfdu fp10,0x10(r4)
|
|
|
|
stfd fp9,0x08(r6)
|
|
|
|
stfdu fp10,0x10(r6)
|
|
|
|
bdnz .Laligntocacheline
|
|
|
|
|
|
|
|
|
|
|
|
.Lcachelinealigned: /* copy while cache lines */
|
|
|
|
|
2010-01-18 20:43:47 +00:00
|
|
|
blt- cr1,.Llessthancacheline /* size <128 */
|
2010-01-18 20:40:29 +00:00
|
|
|
|
|
|
|
.Louterloop:
|
2010-01-18 20:43:47 +00:00
|
|
|
cmpwi r11,0
|
2010-01-18 20:40:29 +00:00
|
|
|
mtctr r11
|
|
|
|
beq- .Lendloop
|
|
|
|
|
|
|
|
li r11,128*ZERO_AHEAD +8 /* DCBZ dist */
|
|
|
|
|
|
|
|
.align 4
|
|
|
|
/* Copy whole cachelines, optimized by prefetching SRC cacheline */
|
2010-01-18 20:43:47 +00:00
|
|
|
.Lloop: /* Copy aligned body */
|
2010-01-18 20:40:29 +00:00
|
|
|
dcbt r12,r4 /* PREFETCH SOURCE some cache lines ahead */
|
|
|
|
lfd fp9, 0x08(r4)
|
|
|
|
dcbz r11,r6
|
|
|
|
lfd fp10, 0x10(r4) /* 4 register stride copy is optimal */
|
2013-01-07 17:20:53 +00:00
|
|
|
lfd fp11, 0x18(r4) /* to hide 1st level cache latency. */
|
2010-01-18 20:40:29 +00:00
|
|
|
lfd fp12, 0x20(r4)
|
|
|
|
stfd fp9, 0x08(r6)
|
|
|
|
stfd fp10, 0x10(r6)
|
|
|
|
stfd fp11, 0x18(r6)
|
|
|
|
stfd fp12, 0x20(r6)
|
|
|
|
lfd fp9, 0x28(r4)
|
|
|
|
lfd fp10, 0x30(r4)
|
|
|
|
lfd fp11, 0x38(r4)
|
|
|
|
lfd fp12, 0x40(r4)
|
|
|
|
stfd fp9, 0x28(r6)
|
|
|
|
stfd fp10, 0x30(r6)
|
|
|
|
stfd fp11, 0x38(r6)
|
|
|
|
stfd fp12, 0x40(r6)
|
|
|
|
lfd fp9, 0x48(r4)
|
|
|
|
lfd fp10, 0x50(r4)
|
|
|
|
lfd fp11, 0x58(r4)
|
|
|
|
lfd fp12, 0x60(r4)
|
|
|
|
stfd fp9, 0x48(r6)
|
|
|
|
stfd fp10, 0x50(r6)
|
|
|
|
stfd fp11, 0x58(r6)
|
|
|
|
stfd fp12, 0x60(r6)
|
|
|
|
lfd fp9, 0x68(r4)
|
|
|
|
lfd fp10, 0x70(r4)
|
|
|
|
lfd fp11, 0x78(r4)
|
|
|
|
lfdu fp12, 0x80(r4)
|
|
|
|
stfd fp9, 0x68(r6)
|
|
|
|
stfd fp10, 0x70(r6)
|
|
|
|
stfd fp11, 0x78(r6)
|
|
|
|
stfdu fp12, 0x80(r6)
|
|
|
|
|
|
|
|
bdnz .Lloop
|
|
|
|
|
|
|
|
.Lendloop:
|
|
|
|
cmpwi r10,0
|
|
|
|
slwi r10,r10,2 /* adjust from 128 to 32 byte stride */
|
|
|
|
beq- .Lendloop2
|
|
|
|
mtctr r10
|
|
|
|
|
2010-01-18 20:43:47 +00:00
|
|
|
.Lloop2: /* Copy aligned body */
|
2010-01-18 20:40:29 +00:00
|
|
|
lfd fp9, 0x08(r4)
|
|
|
|
lfd fp10, 0x10(r4)
|
|
|
|
lfd fp11, 0x18(r4)
|
|
|
|
lfdu fp12, 0x20(r4)
|
|
|
|
stfd fp9, 0x08(r6)
|
|
|
|
stfd fp10, 0x10(r6)
|
|
|
|
stfd fp11, 0x18(r6)
|
|
|
|
stfdu fp12, 0x20(r6)
|
|
|
|
|
|
|
|
bdnz .Lloop2
|
|
|
|
.Lendloop2:
|
|
|
|
|
|
|
|
.Llessthancacheline: /* less than cache to do ? */
|
|
|
|
cmplwi cr0,r5,16
|
|
|
|
srwi r7,r5,4 /* divide size by 16 */
|
|
|
|
blt- .Ldo_lt16
|
|
|
|
mtctr r7
|
|
|
|
|
|
|
|
.Lcopy_remaining:
|
2010-01-18 20:43:47 +00:00
|
|
|
lfd fp9,0x08(r4)
|
2010-01-18 20:40:29 +00:00
|
|
|
lfdu fp10,0x10(r4)
|
|
|
|
stfd fp9,0x08(r6)
|
|
|
|
stfdu fp10,0x10(r6)
|
|
|
|
bdnz .Lcopy_remaining
|
|
|
|
|
|
|
|
.Ldo_lt16: /* less than 16 ? */
|
|
|
|
cmplwi cr0,r5,0 /* copy remaining bytes (0-15) */
|
2010-01-18 20:43:47 +00:00
|
|
|
beqlr+ /* no rest to copy */
|
2010-01-18 20:40:29 +00:00
|
|
|
addi r4,r4,8
|
|
|
|
addi r6,r6,8
|
|
|
|
|
|
|
|
.Lshortcopy: /* SIMPLE COPY to handle size =< 15 bytes */
|
|
|
|
mtcrf 0x01,r5
|
|
|
|
sub r7,r4,r6
|
|
|
|
bf- cr7*4+0,8f
|
|
|
|
lfdx fp9,r7,r6 /* copy 8 byte */
|
|
|
|
stfd fp9,0(r6)
|
|
|
|
addi r6,r6,8
|
|
|
|
8:
|
|
|
|
bf cr7*4+1,4f
|
|
|
|
lwzx r0,r7,r6 /* copy 4 byte */
|
|
|
|
stw r0,0(r6)
|
|
|
|
addi r6,r6,4
|
|
|
|
4:
|
|
|
|
bf cr7*4+2,2f
|
|
|
|
lhzx r0,r7,r6 /* copy 2 byte */
|
|
|
|
sth r0,0(r6)
|
|
|
|
addi r6,r6,2
|
|
|
|
2:
|
|
|
|
bf cr7*4+3,1f
|
|
|
|
lbzx r0,r7,r6 /* copy 1 byte */
|
|
|
|
stb r0,0(r6)
|
|
|
|
1: blr
|
|
|
|
|
2013-02-28 21:23:47 +00:00
|
|
|
END (memcpy)
|
2010-01-18 20:40:29 +00:00
|
|
|
libc_hidden_builtin_def (memcpy)
|