2013-01-25 12:28:06 +01:00
|
|
|
#/** @file
|
|
|
|
# Compiler intrinsic for ARM compiler
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
|
|
|
|
# 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.;
|
|
|
|
#
|
|
|
|
#**/
|
2014-08-19 15:29:52 +02:00
|
|
|
#
|
2013-01-25 12:28:06 +01:00
|
|
|
|
2016-08-10 14:38:08 +02:00
|
|
|
#include <AsmMacroIoLib.h>
|
2013-01-25 12:28:06 +01:00
|
|
|
|
2016-08-10 14:38:08 +02:00
|
|
|
.syntax unified
|
2013-01-25 12:28:06 +01:00
|
|
|
|
2016-08-10 14:38:08 +02:00
|
|
|
ASM_FUNC(__switchu8)
|
2013-01-25 12:28:06 +01:00
|
|
|
ldrb ip,[lr,#-1]
|
|
|
|
cmp r0,ip
|
2015-12-15 16:01:42 +01:00
|
|
|
ldrbcc r0,[lr,r0]
|
|
|
|
ldrbcs r0,[lr,ip]
|
2013-01-25 12:28:06 +01:00
|
|
|
add ip,lr,r0,LSL #1
|
|
|
|
bx ip
|
|
|
|
|