2016-08-11 16:01:24 +02:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright (c) 2016, Linaro Ltd. All rights reserved.<BR>
|
2020-12-10 11:11:59 +01:00
|
|
|
// Copyright (c) 2021, Arm Limited. All rights reserved.<BR>
|
2016-08-11 16:01:24 +02:00
|
|
|
//
|
2019-04-04 01:03:18 +02:00
|
|
|
// SPDX-License-Identifier: BSD-2-Clause-Patent
|
2016-08-11 16:01:24 +02:00
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
typedef __SIZE_TYPE__ size_t;
|
|
|
|
|
ArmPkg/CompilerIntrinsicsLib: fix GCC8 warning for __aeabi_memcpy aliases
This was the warning (shown for __aeabi_memcpy, __aeabi_memcpy4 and
__aeabi_memcpy8):
ArmPkg/Library/CompilerIntrinsicsLib/memcpy.c:42:6:
error: '__aeabi_memcpy8' alias between functions of incompatible types
'void(void*, const void *, size_t)'
{aka 'void(void *, const void *, unsigned int)'}
and 'void *(void *, const void *, size_t)'
{aka 'void *(void *, const void *, unsigned int)'} [-Werror=attribute-alias]
void __aeabi_memcpy8(void *dest, const void *src, size_t n);
ArmPkg/Library/CompilerIntrinsicsLib/memcpy.c:19:7: note: aliased declaration here
void *__memcpy(void *dest, const void *src, size_t n)
The problem is the different return type (void vs void*). So reshuffle
the code so the prototypes match between the aliases.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael Zimmermann <sigmaepsilon92@gmail.com>
[ardb: change prototype of internal __memcpy() and drop extra wrapper]
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
2018-06-07 07:47:20 +02:00
|
|
|
static void __memcpy(void *dest, const void *src, size_t n)
|
2016-08-11 16:01:24 +02:00
|
|
|
{
|
2020-12-10 14:04:26 +01:00
|
|
|
unsigned char *d;
|
|
|
|
unsigned char const *s;
|
|
|
|
|
|
|
|
d = dest;
|
|
|
|
s = src;
|
2016-08-11 16:01:24 +02:00
|
|
|
|
2020-12-10 11:11:59 +01:00
|
|
|
while (n-- != 0) {
|
2016-08-11 16:01:24 +02:00
|
|
|
*d++ = *s++;
|
2020-12-10 11:11:59 +01:00
|
|
|
}
|
ArmPkg/CompilerIntrinsicsLib: fix GCC8 warning for __aeabi_memcpy aliases
This was the warning (shown for __aeabi_memcpy, __aeabi_memcpy4 and
__aeabi_memcpy8):
ArmPkg/Library/CompilerIntrinsicsLib/memcpy.c:42:6:
error: '__aeabi_memcpy8' alias between functions of incompatible types
'void(void*, const void *, size_t)'
{aka 'void(void *, const void *, unsigned int)'}
and 'void *(void *, const void *, size_t)'
{aka 'void *(void *, const void *, unsigned int)'} [-Werror=attribute-alias]
void __aeabi_memcpy8(void *dest, const void *src, size_t n);
ArmPkg/Library/CompilerIntrinsicsLib/memcpy.c:19:7: note: aliased declaration here
void *__memcpy(void *dest, const void *src, size_t n)
The problem is the different return type (void vs void*). So reshuffle
the code so the prototypes match between the aliases.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael Zimmermann <sigmaepsilon92@gmail.com>
[ardb: change prototype of internal __memcpy() and drop extra wrapper]
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
2018-06-07 07:47:20 +02:00
|
|
|
}
|
2016-08-11 16:01:24 +02:00
|
|
|
|
ArmPkg/CompilerIntrinsicsLib: fix GCC8 warning for __aeabi_memcpy aliases
This was the warning (shown for __aeabi_memcpy, __aeabi_memcpy4 and
__aeabi_memcpy8):
ArmPkg/Library/CompilerIntrinsicsLib/memcpy.c:42:6:
error: '__aeabi_memcpy8' alias between functions of incompatible types
'void(void*, const void *, size_t)'
{aka 'void(void *, const void *, unsigned int)'}
and 'void *(void *, const void *, size_t)'
{aka 'void *(void *, const void *, unsigned int)'} [-Werror=attribute-alias]
void __aeabi_memcpy8(void *dest, const void *src, size_t n);
ArmPkg/Library/CompilerIntrinsicsLib/memcpy.c:19:7: note: aliased declaration here
void *__memcpy(void *dest, const void *src, size_t n)
The problem is the different return type (void vs void*). So reshuffle
the code so the prototypes match between the aliases.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael Zimmermann <sigmaepsilon92@gmail.com>
[ardb: change prototype of internal __memcpy() and drop extra wrapper]
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
2018-06-07 07:47:20 +02:00
|
|
|
void *memcpy(void *dest, const void *src, size_t n)
|
|
|
|
{
|
|
|
|
__memcpy(dest, src, n);
|
2016-08-11 16:01:24 +02:00
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __arm__
|
|
|
|
|
|
|
|
__attribute__((__alias__("__memcpy")))
|
|
|
|
void __aeabi_memcpy(void *dest, const void *src, size_t n);
|
|
|
|
|
|
|
|
__attribute__((__alias__("__memcpy")))
|
|
|
|
void __aeabi_memcpy4(void *dest, const void *src, size_t n);
|
|
|
|
|
|
|
|
__attribute__((__alias__("__memcpy")))
|
|
|
|
void __aeabi_memcpy8(void *dest, const void *src, size_t n);
|
|
|
|
|
|
|
|
#endif
|