summaryrefslogtreecommitdiff
path: root/lib/libutils/isoc/arch/arm/arm32_aeabi_ldivmod_a32.S
blob: 376d02de75eddc82e3bc79c37707ad697b68cb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2015, Linaro Limited
 */

#include <asm.S>

/*
 * This assembly source is used both in kernel and userland
 * hence define unwind resources that match both environments.
 */
#if defined(CFG_UNWIND)
#define LOCAL_UNWIND(...)	__VA_ARGS__
#else
#define LOCAL_UNWIND(...)
#endif

/*
 * __value_in_regs lldiv_t __aeabi_ldivmod( long long n, long long d)
 */
.section .text.__aeabi_ldivmod
FUNC __aeabi_ldivmod , :
LOCAL_UNWIND(.fnstart)
	push	{ip, lr}
LOCAL_UNWIND(.save {ip, lr})
	push	{r0-r3}
LOCAL_UNWIND(.save {r0-r3})
	mov	r0, sp
	bl	__l_divmod
	pop	{r0-r3}
	pop	{ip, pc}
LOCAL_UNWIND(.fnend)
END_FUNC __aeabi_ldivmod

/*
 * __value_in_regs ulldiv_t __aeabi_uldivmod(
 *		unsigned long long n, unsigned long long d)
 */
.section .text.__aeabi_uldivmod
FUNC __aeabi_uldivmod , :
LOCAL_UNWIND(.fnstart)
	push	{ip, lr}
LOCAL_UNWIND(.save {ip, lr})
	push	{r0-r3}
LOCAL_UNWIND(.save {r0-r3})
	mov	r0, sp
	bl	__ul_divmod
	pop	{r0-r3}
	pop	{ip, pc}
LOCAL_UNWIND(.fnend)
END_FUNC __aeabi_uldivmod