2008-11-03 10:25:10 +01:00
|
|
|
#
|
|
|
|
# ConvertAsm.py: Automatically generated from SetMem64.asm
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
2009-08-11 17:32:16 +02:00
|
|
|
# Copyright (c) 2006 - 2009, Intel Corporation
|
2008-11-03 10:25:10 +01:00
|
|
|
# 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:
|
|
|
|
#
|
|
|
|
# SetMem64.S
|
|
|
|
#
|
|
|
|
# Abstract:
|
|
|
|
#
|
|
|
|
# SetMem64 function
|
|
|
|
#
|
|
|
|
# Notes:
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# VOID *
|
|
|
|
# InternalMemSetMem64 (
|
|
|
|
# IN VOID *Buffer,
|
|
|
|
# IN UINTN Count,
|
|
|
|
# IN UINT64 Value
|
|
|
|
# )
|
|
|
|
#------------------------------------------------------------------------------
|
2009-05-20 12:22:09 +02:00
|
|
|
ASM_GLOBAL ASM_PFX(InternalMemSetMem64)
|
2008-11-03 10:25:10 +01:00
|
|
|
ASM_PFX(InternalMemSetMem64):
|
2009-08-12 04:23:31 +02:00
|
|
|
movd %r8, %mm0 #Value
|
2009-08-11 17:32:16 +02:00
|
|
|
movw %rcx, %rax #rax <- Buffer
|
|
|
|
xchg %rdx, %rcx #rcx <- Count
|
2008-11-03 10:25:10 +01:00
|
|
|
L0:
|
2009-08-11 17:32:16 +02:00
|
|
|
movntq %mm0, (%rdx)
|
|
|
|
addq $8, %rdx
|
2008-11-03 10:25:10 +01:00
|
|
|
loop L0
|
|
|
|
mfence
|
|
|
|
ret
|
|
|
|
|