xref: /optee_os/lib/libutils/isoc/arch/arm/arm32_aeabi_ldivmod_a32.S (revision bc420748bfc44a9e09000a3966fc59e9e0219df4)
1/*
2 * Copyright (c) 2015, Linaro Limited
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation
13 * and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
27
28	.macro FUNC name colon
29	.global \name
30	.type \name , %function
31	\name \colon
32	.endm
33
34	.macro END_FUNC name
35	.size \name , .-\name
36	.endm
37
38	.section .text
39	.balign 4
40	.code  32
41
42/*
43 * __value_in_regs lldiv_t __aeabi_ldivmod( long long n, long long d)
44 */
45FUNC __aeabi_ldivmod , :
46	push	{ip, lr}
47	push	{r0-r3}
48	mov	r0, sp
49	bl	__l_divmod
50	pop	{r0-r3}
51	pop	{ip, pc}
52END_FUNC __aeabi_uldivmod
53
54/*
55 * __value_in_regs ulldiv_t __aeabi_uldivmod(
56 *		unsigned long long n, unsigned long long d)
57 */
58FUNC __aeabi_uldivmod , :
59	push	{ip, lr}
60	push	{r0-r3}
61	mov	r0, sp
62	bl	__ul_divmod
63	pop	{r0-r3}
64	pop	{ip, pc}
65END_FUNC __aeabi_uldivmod
66