Add in the 1st version of ECP.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2832 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
;------------------------------------------------------------------------------
|
||||
;
|
||||
; Copyright (c) 2007, Intel Corporation
|
||||
; All rights reserved. This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
; which accompanies this distribution. The full text of the license may be found at
|
||||
; http://opensource.org/licenses/bsd-license.php
|
||||
;
|
||||
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
;
|
||||
; Module Name:
|
||||
;
|
||||
; CopyMem.asm
|
||||
;
|
||||
; Abstract:
|
||||
;
|
||||
; memcpy function
|
||||
;
|
||||
; Notes:
|
||||
;
|
||||
;------------------------------------------------------------------------------
|
||||
|
||||
.686
|
||||
.model flat,C
|
||||
.mmx
|
||||
.code
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; VOID *
|
||||
; memcpy (
|
||||
; IN VOID *Destination,
|
||||
; IN VOID *Source,
|
||||
; IN UINTN Count
|
||||
; );
|
||||
;------------------------------------------------------------------------------
|
||||
memcpy PROC USES esi edi
|
||||
mov esi, [esp + 16] ; esi <- Source
|
||||
mov edi, [esp + 12] ; edi <- Destination
|
||||
mov edx, [esp + 20] ; edx <- Count
|
||||
lea eax, [esi + edx - 1] ; eax <- End of Source
|
||||
cmp esi, edi
|
||||
je @CopyMemDone
|
||||
cmp edx, 0
|
||||
je @CopyMemDone
|
||||
cmp esi, edi
|
||||
jae @F
|
||||
cmp eax, edi ; Overlapped?
|
||||
jae @CopyBackward ; Copy backward if overlapped
|
||||
@@:
|
||||
mov ecx, edx
|
||||
and edx, 7
|
||||
shr ecx, 3 ; ecx <- # of Qwords to copy
|
||||
jz @CopyBytes
|
||||
push eax
|
||||
push eax
|
||||
movq [esp], mm0 ; save mm0
|
||||
@@:
|
||||
movq mm0, [esi]
|
||||
movq [edi], mm0
|
||||
add esi, 8
|
||||
add edi, 8
|
||||
loop @B
|
||||
movq mm0, [esp] ; restore mm0
|
||||
pop ecx ; stack cleanup
|
||||
pop ecx ; stack cleanup
|
||||
jmp @CopyBytes
|
||||
@CopyBackward:
|
||||
mov esi, eax ; esi <- Last byte in Source
|
||||
lea edi, [edi + edx - 1] ; edi <- Last byte in Destination
|
||||
std
|
||||
@CopyBytes:
|
||||
mov ecx, edx
|
||||
rep movsb
|
||||
cld
|
||||
@CopyMemDone:
|
||||
mov eax, [esp + 12]
|
||||
ret
|
||||
memcpy ENDP
|
||||
|
||||
END
|
@@ -0,0 +1,86 @@
|
||||
;------------------------------------------------------------------------------
|
||||
;
|
||||
; Copyright (c) 2007, Intel Corporation
|
||||
; All rights reserved. This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
; which accompanies this distribution. The full text of the license may be found at
|
||||
; http://opensource.org/licenses/bsd-license.php
|
||||
;
|
||||
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
;
|
||||
; Module Name:
|
||||
;
|
||||
; CopyMem.asm
|
||||
;
|
||||
; Abstract:
|
||||
;
|
||||
; memcpy function
|
||||
;
|
||||
; Notes:
|
||||
;
|
||||
;------------------------------------------------------------------------------
|
||||
|
||||
.686
|
||||
.model flat,C
|
||||
.xmm
|
||||
.code
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; VOID *
|
||||
; memcpy (
|
||||
; IN VOID *Destination,
|
||||
; IN VOID *Source,
|
||||
; IN UINTN Count
|
||||
; );
|
||||
;------------------------------------------------------------------------------
|
||||
memcpy PROC USES esi edi
|
||||
mov esi, [esp + 16] ; esi <- Source
|
||||
mov edi, [esp + 12] ; edi <- Destination
|
||||
mov edx, [esp + 20] ; edx <- Count
|
||||
lea eax, [esi + edx - 1] ; eax <- End of Source
|
||||
cmp esi, edi
|
||||
je @CopyMemDone
|
||||
cmp edx, 0
|
||||
je @CopyMemDone
|
||||
cmp esi, edi
|
||||
jae @F
|
||||
cmp eax, edi ; Overlapped?
|
||||
jae @CopyBackward ; Copy backward if overlapped
|
||||
@@:
|
||||
xor ecx, ecx
|
||||
sub ecx, edi
|
||||
and ecx, 15 ; ecx + edi aligns on 16-byte boundary
|
||||
jz @F
|
||||
cmp ecx, edx
|
||||
cmova ecx, edx
|
||||
sub edx, ecx ; edx <- remaining bytes to copy
|
||||
rep movsb
|
||||
@@:
|
||||
mov ecx, edx
|
||||
and edx, 15
|
||||
shr ecx, 4 ; ecx <- # of DQwords to copy
|
||||
jz @CopyBytes
|
||||
add esp, -16
|
||||
@@:
|
||||
movdqu xmm0, [esi] ; esi may not be 16-bytes aligned
|
||||
movdqa [edi], xmm0 ; edi should be 16-bytes aligned
|
||||
add esi, 16
|
||||
add edi, 16
|
||||
loop @B
|
||||
add esp, 16 ; stack cleanup
|
||||
jmp @CopyBytes
|
||||
@CopyBackward:
|
||||
mov esi, eax ; esi <- Last byte in Source
|
||||
lea edi, [edi + edx - 1] ; edi <- Last byte in Destination
|
||||
std
|
||||
@CopyBytes:
|
||||
mov ecx, edx
|
||||
rep movsb
|
||||
cld
|
||||
@CopyMemDone:
|
||||
mov eax, [esp + 12]
|
||||
ret
|
||||
memcpy ENDP
|
||||
|
||||
END
|
@@ -0,0 +1,72 @@
|
||||
;------------------------------------------------------------------------------
|
||||
;
|
||||
; Copyright (c) 2007, Intel Corporation
|
||||
; All rights reserved. This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
; which accompanies this distribution. The full text of the license may be found at
|
||||
; http://opensource.org/licenses/bsd-license.php
|
||||
;
|
||||
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
;
|
||||
; Module Name:
|
||||
;
|
||||
; SetMem.asm
|
||||
;
|
||||
; Abstract:
|
||||
;
|
||||
; memset function
|
||||
;
|
||||
; Notes:
|
||||
;
|
||||
;------------------------------------------------------------------------------
|
||||
|
||||
.686
|
||||
.model flat,C
|
||||
.mmx
|
||||
.code
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; VOID *
|
||||
; memset (
|
||||
; OUT VOID *Buffer,
|
||||
; IN UINT8 Value,
|
||||
; IN UINTN Count
|
||||
; )
|
||||
;------------------------------------------------------------------------------
|
||||
memset PROC USES edi
|
||||
mov al, [esp + 12]
|
||||
mov ah, al
|
||||
shrd edx, eax, 16
|
||||
shld eax, edx, 16
|
||||
mov ecx, [esp + 16] ; ecx <- Count
|
||||
cmp ecx, 0 ; if Count == 0, do nothing
|
||||
je @SetDone
|
||||
mov edi, [esp + 8] ; edi <- Buffer
|
||||
mov edx, ecx
|
||||
and edx, 7
|
||||
shr ecx, 3 ; # of Qwords to set
|
||||
jz @SetBytes
|
||||
add esp, -10h
|
||||
movq [esp], mm0 ; save mm0
|
||||
movq [esp + 8], mm1 ; save mm1
|
||||
movd mm0, eax
|
||||
movd mm1, eax
|
||||
psllq mm0, 32
|
||||
por mm0, mm1 ; fill mm0 with 8 Value's
|
||||
@@:
|
||||
movq [edi], mm0
|
||||
add edi, 8
|
||||
loop @B
|
||||
movq mm0, [esp] ; restore mm0
|
||||
movq mm1, [esp + 8] ; restore mm1
|
||||
add esp, 10h ; stack cleanup
|
||||
@SetBytes:
|
||||
mov ecx, edx
|
||||
rep stosb
|
||||
@SetDone:
|
||||
mov eax, [esp + 8] ; eax <- Buffer as return value
|
||||
ret
|
||||
memset ENDP
|
||||
|
||||
END
|
@@ -0,0 +1,74 @@
|
||||
;------------------------------------------------------------------------------
|
||||
;
|
||||
; Copyright (c) 2007, Intel Corporation
|
||||
; All rights reserved. This program and the accompanying materials
|
||||
; are licensed and made available under the terms and conditions of the BSD License
|
||||
; which accompanies this distribution. The full text of the license may be found at
|
||||
; http://opensource.org/licenses/bsd-license.php
|
||||
;
|
||||
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
;
|
||||
; Module Name:
|
||||
;
|
||||
; SetMem.asm
|
||||
;
|
||||
; Abstract:
|
||||
;
|
||||
; memset function
|
||||
;
|
||||
; Notes:
|
||||
;
|
||||
;------------------------------------------------------------------------------
|
||||
|
||||
.686
|
||||
.model flat,C
|
||||
.xmm
|
||||
.code
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
; VOID *
|
||||
; memset (
|
||||
; OUT VOID *Buffer,
|
||||
; IN UINT8 Value,
|
||||
; IN UINTN Count
|
||||
; )
|
||||
;------------------------------------------------------------------------------
|
||||
memset PROC USES edi
|
||||
mov edx, [esp + 16] ; edx <- Count
|
||||
cmp edx, 0 ; if Count == 0, do nothing
|
||||
je @SetDone
|
||||
mov edi, [esp + 8] ; edi <- Buffer
|
||||
mov al, [esp + 12] ; al <- Value
|
||||
xor ecx, ecx
|
||||
sub ecx, edi
|
||||
and ecx, 15 ; ecx + edi aligns on 16-byte boundary
|
||||
jz @F
|
||||
cmp ecx, edx
|
||||
cmova ecx, edx
|
||||
sub edx, ecx
|
||||
rep stosb
|
||||
@@:
|
||||
mov ecx, edx
|
||||
and edx, 15
|
||||
shr ecx, 4 ; ecx <- # of DQwords to set
|
||||
jz @SetBytes
|
||||
mov ah, al ; ax <- Value | (Value << 8)
|
||||
add esp, -16
|
||||
movd xmm0, eax
|
||||
pshuflw xmm0, xmm0, 0 ; xmm0[0..63] <- Value repeats 8 times
|
||||
movlhps xmm0, xmm0 ; xmm0 <- Value repeats 16 times
|
||||
@@:
|
||||
movdqa [edi], xmm0 ; edi should be 16-byte aligned
|
||||
add edi, 16
|
||||
loop @B
|
||||
add esp, 16 ; stack cleanup
|
||||
@SetBytes:
|
||||
mov ecx, edx
|
||||
rep stosb
|
||||
@SetDone:
|
||||
mov eax, [esp + 8] ; eax <- Buffer as return value
|
||||
ret
|
||||
memset ENDP
|
||||
|
||||
END
|
Reference in New Issue
Block a user