Add cortex-a53.a57 target for 32 bit big/little.
The routines optimized for cortex-a7 and cortex-a53 cause performance drops on cortex-a57. Instead create a target that is the middle ground that works relatively well on either core. Change-Id: Ie2b6cc9a59a01c7b30602ee368b2b90f5e886289
This commit is contained in:
parent
8d92afe322
commit
54ee0407dc
1 changed files with 21 additions and 0 deletions
21
libc/arch-arm/cortex-a53.a57/cortex-a53.a57.mk
Normal file
21
libc/arch-arm/cortex-a53.a57/cortex-a53.a57.mk
Normal file
|
@ -0,0 +1,21 @@
|
|||
# This file represents the best optimized routines that are the middle
|
||||
# ground when running on a big/little system that is cortex-a57/cortex-a53.
|
||||
# The cortex-a7 optimized routines, and the cortex-a53 optimized routines
|
||||
# decrease performance on cortex-a57 processors by as much as 20%.
|
||||
|
||||
libc_bionic_src_files_arm += \
|
||||
arch-arm/cortex-a15/bionic/memcpy.S \
|
||||
arch-arm/cortex-a15/bionic/memset.S \
|
||||
arch-arm/cortex-a15/bionic/stpcpy.S \
|
||||
arch-arm/cortex-a15/bionic/strcat.S \
|
||||
arch-arm/cortex-a15/bionic/__strcat_chk.S \
|
||||
arch-arm/cortex-a15/bionic/strcmp.S \
|
||||
arch-arm/cortex-a15/bionic/strcpy.S \
|
||||
arch-arm/cortex-a15/bionic/__strcpy_chk.S \
|
||||
arch-arm/cortex-a15/bionic/strlen.S \
|
||||
|
||||
libc_bionic_src_files_arm += \
|
||||
arch-arm/generic/bionic/memcmp.S \
|
||||
|
||||
libc_bionic_src_files_arm += \
|
||||
arch-arm/denver/bionic/memmove.S \
|
Loading…
Reference in a new issue