2005-04-16 18:20:36 -04:00
|
|
|
/* Copyright 2002 Andi Kleen */
|
|
|
|
|
|
|
|
#include <asm/cpufeature.h>
|
|
|
|
/*
|
|
|
|
* memcpy - Copy a memory block.
|
|
|
|
*
|
|
|
|
* Input:
|
|
|
|
* rdi destination
|
|
|
|
* rsi source
|
|
|
|
* rdx count
|
|
|
|
*
|
|
|
|
* Output:
|
|
|
|
* rax original destination
|
2005-11-05 11:25:54 -05:00
|
|
|
*
|
|
|
|
* TODO: check best memcpy for PSC
|
2005-04-16 18:20:36 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
.globl __memcpy
|
|
|
|
.globl memcpy
|
|
|
|
.p2align 4
|
|
|
|
__memcpy:
|
|
|
|
memcpy:
|
|
|
|
movq %rdi,%rax
|
|
|
|
movl %edx,%ecx
|
|
|
|
shrl $3,%ecx
|
|
|
|
andl $7,%edx
|
|
|
|
rep
|
|
|
|
movsq
|
|
|
|
movl %edx,%ecx
|
|
|
|
rep
|
|
|
|
movsb
|
|
|
|
ret
|