mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-14 22:28:08 +02:00
As per the emailed RFC in https://edk2.groups.io/g/devel/topic/rfc_move/107675828, this patch moves CompilerIntrinsicsLib from ArmPkg to MdePkg as this library provides compiler intrinsics, which are industry standard. This aligns with the goal of integrating ArmPkg into existing packages: https://bugzilla.tianocore.org/show_bug.cgi?id=4121. The newly placed CompilerIntrinsicsLib is added to MdeLibs.dsc.inc as every DSC that builds ARM/AARCH64 needs this library added. The old location is removed from every DSC in edk2 in this commit also to not break bisectability with minimal hoop jumping. Continuous-integration-options: PatchCheck.ignore-multi-package Signed-off-by: Oliver Smith-Denny <osde@linux.microsoft.com>
41 lines
887 B
ArmAsm
41 lines
887 B
ArmAsm
#------------------------------------------------------------------------------
|
|
#
|
|
# Copyright (c) 2011-2014, ARM Limited. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
#------------------------------------------------------------------------------
|
|
|
|
#include <AsmMacroLib.h>
|
|
|
|
# VOID
|
|
# EFIAPI
|
|
# memmove (
|
|
# IN VOID *Destination,
|
|
# IN CONST VOID *Source,
|
|
# IN UINT32 Size
|
|
# );
|
|
ASM_FUNC(memmove)
|
|
CMP r2, #0
|
|
BXEQ lr
|
|
CMP r0, r1
|
|
BXEQ lr
|
|
BHI memmove_backward
|
|
|
|
memmove_forward:
|
|
LDRB r3, [r1], #1
|
|
STRB r3, [r0], #1
|
|
SUBS r2, r2, #1
|
|
BXEQ lr
|
|
B memmove_forward
|
|
|
|
memmove_backward:
|
|
add r0, r2
|
|
add r1, r2
|
|
memmove_backward_loop:
|
|
LDRB r3, [r1, #-1]!
|
|
STRB r3, [r0, #-1]!
|
|
SUBS r2, r2, #1
|
|
BXEQ lr
|
|
B memmove_backward_loop
|