]> git.ipfire.org Git - thirdparty/glibc.git/commit - ChangeLog
powerpc: POWER7 strcpy optimization for unaligned strings
authorRajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
Wed, 31 Dec 2014 19:05:00 +0000 (14:05 -0500)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Wed, 31 Dec 2014 19:35:59 +0000 (14:35 -0500)
commitf59ad976ed979d22637c5187f6a92fbbd8c191e4
treeadf67bb23ce8a0a994d21d95ab4a541217bb9f05
parent4a3d39994e07105fb1bd20ed71d166f6ebb21974
powerpc: POWER7 strcpy optimization for unaligned strings

This patch optimizes strcpy for ppc64/power7 for unaligned source or
destination address.  The source or destination address is aligned
to doubleword and data is shifted based on the alignment and
added with the previous loaded data to be written as a doubleword.
For each load, cmpb instruction is used for faster null check.

The word aligned optimization is also removed, since the new unaligned
code path shows better results handling word-aligned strings.

More combination of unaligned inputs is also added in benchtest
to measure the improvement.The new optimization shows 2 to 80% of
performance improvement for longer string though it does not show
big difference on string size less than 16 due to additional checks.
ChangeLog
benchtests/bench-strcpy.c
sysdeps/powerpc/powerpc64/power7/strcpy.S