Thread (23 messages) 23 messages, 6 authors, 2021-06-18

RE: [PATCH 1/3] riscv: optimized memcpy

From: David Laight <hidden>
Date: 2021-06-15 08:57:13
Also in: linux-riscv, lkml

From: Matteo Croce
Sent: 15 June 2021 03:38

Write a C version of memcpy() which uses the biggest data size allowed,
without generating unaligned accesses.
I'm surprised that the C loop:
+		for (; count >= bytes_long; count -= bytes_long)
+			*d.ulong++ = *s.ulong++;
ends up being faster than the ASM 'read lots' - 'write lots' loop.

Especially since there was an earlier patch to convert
copy_to/from_user() to use the ASM 'read lots' - 'write lots' loop
instead of a tight single register copy loop.

I'd also guess that the performance needs to be measured on
different classes of riscv cpu.

A simple cpu will behave differently to one that can execute
multiple instructions per clock.
Any form of 'out of order' execution also changes things.
The other big change is whether the cpu can to a memory
read and write in the same clock.

I'd guess that riscv exist with some/all of those features.

	David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help