memcpy(): faster version using ASM rep; movsl

This commit is contained in:
Balazs Gerofi
2016-11-23 08:51:22 +09:00
parent 64607152ee
commit 2f8cca2d6d
3 changed files with 35 additions and 4 deletions

View File

@ -0,0 +1,23 @@
#ifndef _ASM_X86_STRING_H
#define _ASM_X86_STRING_H
#define ARCH_FAST_MEMCPY
static inline void *__inline_memcpy(void *to, const void *from, size_t n)
{
unsigned long d0, d1, d2;
asm volatile("rep ; movsl\n\t"
"testb $2,%b4\n\t"
"je 1f\n\t"
"movsw\n"
"1:\ttestb $1,%b4\n\t"
"je 2f\n\t"
"movsb\n"
"2:"
: "=&c" (d0), "=&D" (d1), "=&S" (d2)
: "0" (n / 4), "q" (n), "1" ((long)to), "2" ((long)from)
: "memory");
return to;
}
#endif

View File

@ -7909,10 +7909,11 @@ retry_lookup:
} }
rva = phys_to_virt(rphys); rva = phys_to_virt(rphys);
memcpy((op == PROCESS_VM_READ) ? local_iov[li].iov_base + loff : rva, fast_memcpy(
(op == PROCESS_VM_READ) ? rva : local_iov[li].iov_base + loff, (op == PROCESS_VM_READ) ? local_iov[li].iov_base + loff : rva,
to_copy); (op == PROCESS_VM_READ) ? rva : local_iov[li].iov_base + loff,
to_copy);
copied += to_copy; copied += to_copy;
dkprintf("local_iov[%d]: 0x%lx %s remote_iov[%d]: 0x%lx, %lu copied, psize: %lu, rpage_left: %lu\n", dkprintf("local_iov[%d]: 0x%lx %s remote_iov[%d]: 0x%lx, %lu copied, psize: %lu, rpage_left: %lu\n",

View File

@ -14,6 +14,7 @@
#define __STRING_H #define __STRING_H
#include <types.h> #include <types.h>
#include <arch-string.h>
size_t strlen(const char *p); size_t strlen(const char *p);
size_t strnlen(const char *p, size_t maxlen); size_t strnlen(const char *p, size_t maxlen);
@ -29,6 +30,12 @@ void *memcpy_long(void *dest, const void *src, size_t n);
int memcmp(const void *s1, const void *s2, size_t n); int memcmp(const void *s1, const void *s2, size_t n);
void *memset(void *s, int n, size_t l); void *memset(void *s, int n, size_t l);
#ifdef ARCH_FAST_MEMCPY
#define fast_memcpy __inline_memcpy
#else
#define fast_memcpy memcpy
#endif
extern int snprintf(char * buf, size_t size, const char *fmt, ...); extern int snprintf(char * buf, size_t size, const char *fmt, ...);
extern int sprintf(char * buf, const char *fmt, ...); extern int sprintf(char * buf, const char *fmt, ...);
extern int sscanf(const char * buf, const char * fmt, ...); extern int sscanf(const char * buf, const char * fmt, ...);