]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Library/SemihostLib/Arm/GccSemihost.S
Fix semihosting on gcc. We need to save lr as svc instruction will change it.
[mirror_edk2.git] / ArmPkg / Library / SemihostLib / Arm / GccSemihost.S
CommitLineData
d9629029 1#------------------------------------------------------------------------------
2#
3# Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
4#
5# This program and the accompanying materials
6# are licensed and made available under the terms and conditions of the BSD License
7# which accompanies this distribution. The full text of the license may be found at
8# http://opensource.org/licenses/bsd-license.php
9#
10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12#
13#------------------------------------------------------------------------------
14
15.text
16.align 2
17
18.globl ASM_PFX(GccSemihostCall)
19INTERWORK_FUNC(GccSemihostCall)
20
21/*
22 Semihosting operation request mechanism
23
24 SVC 0x123456 in ARM state (for all architectures)
25 SVC 0xAB in Thumb state (excluding ARMv7-M)
26 BKPT 0xAB for ARMv7-M (Thumb-2 only)
27
28 R0 - operation type
7d952405 29 R1 - block containing all other parametes
30
31 lr - must be saved as svc instruction will cause an svc exception and write
32 the svc lr register. That happens to be the one we are using, so we must
33 save it or we will not be able to return.
d9629029 34 */
35ASM_PFX(GccSemihostCall):
7d952405 36 stmfd sp!, {lr} \r
d9629029 37 svc #0x123456
7d952405 38 ldmfd sp!, {lr}\r
d9629029 39 bx lr
40
41