diff options
Diffstat (limited to 'MdePkg/Library/CompilerIntrinsicsLib/Arm/switch8.S')
-rw-r--r-- | MdePkg/Library/CompilerIntrinsicsLib/Arm/switch8.S | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MdePkg/Library/CompilerIntrinsicsLib/Arm/switch8.S b/MdePkg/Library/CompilerIntrinsicsLib/Arm/switch8.S new file mode 100644 index 0000000000..08fec9a8a0 --- /dev/null +++ b/MdePkg/Library/CompilerIntrinsicsLib/Arm/switch8.S @@ -0,0 +1,21 @@ +#/** @file
+# Compiler intrinsic for ARM compiler
+#
+# Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+#
+#**/
+#
+
+#include <AsmMacroLib.h>
+
+.syntax unified
+
+ASM_FUNC(__switch8)
+ ldrb ip, [lr, #-1]
+ cmp r0, ip
+ ldrsbcc r0, [lr, r0]
+ ldrsbcs r0, [lr, ip]
+ add ip, lr, r0, lsl #1
+ bx ip
+
|