Subversion Repositories HelenOS

Rev

Rev 2145 | Rev 2165 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2145 kebrt 1
#
2153 kebrt 2
# Copyright (c) 2007 Michal Kebrt
2145 kebrt 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
7
# are met:
8
#
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
14
# - The name of the author may not be used to endorse or promote products
15
#   derived from this software without specific prior written permission.
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
28
 
29
 
30
.text
31
 
2153 kebrt 32
.global memcpy
2145 kebrt 33
 
34
memcpy:
35
 
2153 kebrt 36
add     r3, r1, #3
37
bic     r3, r3, #3
38
cmp     r1, r3
39
stmdb   sp!, {r4, lr}
40
beq     case_4
41
case_1:
42
cmp     r2, #0
43
movne   ip, #0
44
beq     case_3
45
case_2:
46
ldrb    r3, [ip, r1]
47
strb    r3, [ip, r0]
48
add     ip, ip, #1
49
cmp     ip, r2
50
bne     case_2
51
case_3:
52
mov     r0, r1
53
ldmia   sp!, {r4, pc}
54
case_4:
55
add     r3, r0, #3
56
bic     r3, r3, #3
57
cmp     r0, r3
58
bne     case_1
59
movs    r4, r2, lsr #2
60
moveq   lr, r4
61
beq     case_6
62
mov     lr, #0
63
mov     ip, lr
64
case_5:
65
ldr     r3, [ip, r1]
66
add     lr, lr, #1
67
cmp     lr, r4
68
str     r3, [ip, r0]
69
add     ip, ip, #4
70
bne     case_5
71
case_6:
72
ands    r4, r2, #3
73
beq     case_3
74
mov     r3, lr, lsl #2
75
add     r0, r3, r0
76
add     ip, r3, r1
77
mov     r2, #0
78
case_7:
79
ldrb    r3, [r2, ip]
80
strb    r3, [r2, r0]
81
add     r2, r2, #1
82
cmp     r2, r4
83
bne     case_7
84
b       case_3
2145 kebrt 85
 
86