mirror of
https://github.com/apache/nuttx.git
synced 2026-08-28 04:40:41 +00:00
Add support for ARMv6-M and ARMv8-M Baseline architectures (Cortex-M0/M0+/M23) in the mcount profiling function. These cores only support limited Thumb-1 instruction set and require different assembly instructions compared to ARMv7-M and higher. Changes: - Use MOVS+BICS instead of BIC for bit clearing on M0/M23 - Separate register restore for limited push/pop instructions - Use BX instead of direct POP to PC on M0/M23 Signed-off-by: yinshengkai <yinshengkai@bytedance.com>
57 lines
2.3 KiB
ArmAsm
57 lines
2.3 KiB
ArmAsm
/****************************************************************************
|
|
* libs/libc/machine/arm/arch_mcount.S
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
.globl __gnu_mcount_nc
|
|
|
|
.syntax unified
|
|
.file "mcount.S"
|
|
|
|
.type __gnu_mcount_nc, %function
|
|
__gnu_mcount_nc:
|
|
#if defined(CONFIG_ARCH_CORTEXM0) || defined(CONFIG_ARCH_CORTEXM23)
|
|
/* Cortex-M0/M0+/M23 - ARMv6-M and ARMv8-M Baseline */
|
|
/* These cores only support limited Thumb-1 instruction set */
|
|
push {r0, r1, r2, r3, lr} /* Save registers */
|
|
mov r1, lr
|
|
movs r2, #1
|
|
bics r1, r2 /* R1 contains callee address, with thumb bit cleared */
|
|
ldr r0, [sp, #20] /* R0 contains caller address */
|
|
movs r2, #1
|
|
bics r0, r2 /* Clear thumb bit */
|
|
bl mcount_internal /* Jump to internal _mcount() implementation */
|
|
pop {r0, r1, r2, r3, pc} /* Restore r0-r3 and return to caller */
|
|
#else
|
|
/* ARMv7-M/A/R and higher - Full Thumb-2 support */
|
|
push {r0, r1, r2, r3, lr} /* Save registers */
|
|
mov r1, lr
|
|
bic r1, r1, #1 /* R1 contains callee address, with thumb bit cleared */
|
|
ldr r0, [sp, #20] /* R0 contains caller address */
|
|
bic r0, r0, #1 /* Clear thumb bit */
|
|
bl mcount_internal /* Jump to internal _mcount() implementation */
|
|
pop {r0, r1, r2, r3, ip, lr} /* Restore saved registers */
|
|
bx ip /* Return to callee */
|
|
#endif
|
|
|
|
.size __gnu_mcount_nc, .-__gnu_mcount_nc
|
|
.end
|