mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
4e062fc955
This patch enables the use of the optimized memset(), memmove() & memcpy() versions recently added on ARM64. Please note that these optimized functions are now only enabled for recent GCC versions (>= 9.4), as earlier GCC versions throw these errors: aarch64-linux-ar: warning: arch/arm/lib/memset-arm64.o: unsupported GNU_PROPERTY_TYPE (5) type: 0xc0000000 ... Signed-off-by: Stefan Roese <sr@denx.de> [trini: Make this default to off as it causes problems on some platforms still] Signed-off-by: Tom Rini <trini@konsulko.com>
57 lines
1.3 KiB
C
57 lines
1.3 KiB
C
#ifndef __ASM_ARM_STRING_H
|
|
#define __ASM_ARM_STRING_H
|
|
|
|
#include <config.h>
|
|
|
|
/*
|
|
* We don't do inline string functions, since the
|
|
* optimised inline asm versions are not small.
|
|
*/
|
|
|
|
#undef __HAVE_ARCH_STRRCHR
|
|
extern char * strrchr(const char * s, int c);
|
|
|
|
#undef __HAVE_ARCH_STRCHR
|
|
extern char * strchr(const char * s, int c);
|
|
|
|
#if CONFIG_IS_ENABLED(USE_ARCH_MEMCPY)
|
|
#define __HAVE_ARCH_MEMCPY
|
|
#endif
|
|
extern void * memcpy(void *, const void *, __kernel_size_t);
|
|
|
|
#if CONFIG_IS_ENABLED(USE_ARCH_MEMMOVE)
|
|
#define __HAVE_ARCH_MEMMOVE
|
|
#else
|
|
#undef __HAVE_ARCH_MEMMOVE
|
|
#endif
|
|
extern void * memmove(void *, const void *, __kernel_size_t);
|
|
|
|
#undef __HAVE_ARCH_MEMCHR
|
|
extern void * memchr(const void *, int, __kernel_size_t);
|
|
|
|
#undef __HAVE_ARCH_MEMZERO
|
|
#if CONFIG_IS_ENABLED(USE_ARCH_MEMSET)
|
|
#define __HAVE_ARCH_MEMSET
|
|
#endif
|
|
extern void * memset(void *, int, __kernel_size_t);
|
|
|
|
#if 0
|
|
extern void __memzero(void *ptr, __kernel_size_t n);
|
|
|
|
#define memset(p,v,n) \
|
|
({ \
|
|
if ((n) != 0) { \
|
|
if (__builtin_constant_p((v)) && (v) == 0) \
|
|
__memzero((p),(n)); \
|
|
else \
|
|
memset((p),(v),(n)); \
|
|
} \
|
|
(p); \
|
|
})
|
|
|
|
#define memzero(p,n) ({ if ((n) != 0) __memzero((p),(n)); (p); })
|
|
#else
|
|
extern void memzero(void *ptr, __kernel_size_t n);
|
|
#endif
|
|
|
|
#endif
|