Commit 5b2a32e8 authored by LEROY Christophe's avatar LEROY Christophe Committed by Scott Wood

powerpc/32: memset(0): use cacheable_memzero

cacheable_memzero uses dcbz instruction and is more efficient than
memset(0) when the destination is in RAM

This patch renames memset as generic_memset, and defines memset
as a prolog to cacheable_memzero. This prolog checks if the byte
to set is 0. If not, it falls back to generic_memcpy()

cacheable_memzero disappears as it is not referenced anywhere anymore
Signed-off-by: default avatarChristophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
parent df087e45
...@@ -74,9 +74,9 @@ CACHELINE_MASK = (L1_CACHE_BYTES-1) ...@@ -74,9 +74,9 @@ CACHELINE_MASK = (L1_CACHE_BYTES-1)
* to set them to zero. This requires that the destination * to set them to zero. This requires that the destination
* area is cacheable. -- paulus * area is cacheable. -- paulus
*/ */
_GLOBAL(cacheable_memzero) _GLOBAL(memset)
mr r5,r4 cmplwi r4,0
li r4,0 bne- generic_memset
addi r6,r3,-4 addi r6,r3,-4
cmplwi 0,r5,4 cmplwi 0,r5,4
blt 7f blt 7f
...@@ -117,7 +117,7 @@ _GLOBAL(cacheable_memzero) ...@@ -117,7 +117,7 @@ _GLOBAL(cacheable_memzero)
bdnz 8b bdnz 8b
blr blr
_GLOBAL(memset) _GLOBAL(generic_memset)
rlwimi r4,r4,8,16,23 rlwimi r4,r4,8,16,23
rlwimi r4,r4,16,0,15 rlwimi r4,r4,16,0,15
addi r6,r3,-4 addi r6,r3,-4
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment