Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilco Dijkstra <wdijkstr@arm.com>2015-07-30 14:51:34 +0300
committerMarcus Shawcroft <marcus.shawcroft@arm.com>2015-07-30 14:51:34 +0300
commit127c38bd44ab47d3db860355ddbc7e3edef7fbb0 (patch)
treea0fcbf64d859674e2758b4457f626a85e4ef0849 /newlib/ChangeLog
parent7666b3634b3124a0057e22238658aca665b285da (diff)
[AArch64] Rewrite optimized memset.
This is an optimized memset for AArch64. Memset is split into 4 main cases: small sets of up to 16 bytes, medium of 16..96 bytes which are fully unrolled. Large memsets of more than 96 bytes align the destination and use an unrolled loop processing 64 bytes per iteration. Memsets of zero of more than 256 use the dc zva instruction, and there are faster versions for the common ZVA sizes 64 or 128. STP of Q registers is used to reduce codesize without loss of performance.
Diffstat (limited to 'newlib/ChangeLog')
-rw-r--r--newlib/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index a9c50467e..528da824b 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2015-07-30 Wilco Dijkstra <wdijkstr@arm.com>
+
+ * libc/machine/aarch64/memset.S (memset): Rewrite.
+
2015-07-28 Sebastian Huber <sebastian.huber@embedded-brains.de>
libc/sys/rtems/machine/_types.h: Move to ...