Changeset 4ceef572 in mainline
- Timestamp:
- 2012-04-07T17:47:51Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a4a0f1d
- Parents:
- aaa77ba0
- Files:
-
- 2 added
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/Makefile.inc
raaa77ba0 r4ceef572 49 49 SOURCES = \ 50 50 arch/$(BARCH)/src/asm.S \ 51 arch/$(BARCH)/src/eabi.S \ 51 52 arch/$(BARCH)/src/main.c \ 52 53 arch/$(BARCH)/src/mm.c \ -
kernel/arch/arm32/Makefile.inc
raaa77ba0 r4ceef572 41 41 arch/$(KARCH)/src/start.S \ 42 42 arch/$(KARCH)/src/asm.S \ 43 arch/$(KARCH)/src/eabi.S \ 43 44 arch/$(KARCH)/src/exc_handler.S \ 44 45 arch/$(KARCH)/src/arm32.c \ 45 arch/$(KARCH)/src/eabi.c \46 46 arch/$(KARCH)/src/machine_func.c \ 47 47 arch/$(KARCH)/src/context.S \ -
uspace/lib/c/arch/arm32/src/eabi.S
raaa77ba0 r4ceef572 1 1 # 2 # Copyright (c) 20 07 Pavel Jancik2 # Copyright (c) 2012 Martin Decky 3 3 # All rights reserved. 4 4 # … … 31 31 .global __aeabi_read_tp 32 32 33 .global __aeabi_idiv 34 .global __aeabi_uidiv 35 36 .global __aeabi_idivmod 37 .global __aeabi_uidivmod 38 39 .global __aeabi_ldivmod 40 .global __aeabi_uldivmod 41 33 42 __aeabi_read_tp: 34 43 mov r0, r9 35 44 mov pc, lr 45 46 __aeabi_idiv: 47 push {sp, lr} 48 bl __divsi3 49 ldr lr, [sp, #4] 50 add sp, sp, #8 51 bx lr 52 53 __aeabi_uidiv: 54 push {sp, lr} 55 bl __udivsi3 56 ldr lr, [sp, #4] 57 add sp, sp, #8 58 bx lr 59 60 __aeabi_idivmod: 61 sub sp, sp, #8 62 push {sp, lr} 63 bl __divmodsi3 64 ldr lr, [sp, #4] 65 add sp, sp, #8 66 pop {r1, r2} 67 bx lr 68 69 __aeabi_uidivmod: 70 sub sp, sp, #8 71 push {sp, lr} 72 bl __udivmodsi3 73 ldr lr, [sp, #4] 74 add sp, sp, #8 75 pop {r1, r2} 76 bx lr 77 78 __aeabi_ldivmod: 79 sub sp, sp, #8 80 push {sp, lr} 81 bl __divmoddi3 82 ldr lr, [sp, #4] 83 add sp, sp, #8 84 pop {r2, r3} 85 bx lr 86 87 __aeabi_uldivmod: 88 sub sp, sp, #8 89 push {sp, lr} 90 bl __udivmoddi3 91 ldr lr, [sp, #4] 92 add sp, sp, #8 93 pop {r2, r3} 94 bx lr
Note:
See TracChangeset
for help on using the changeset viewer.