hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// SPDX-License-Identifier: GPL-2.0
// Copyright (C) 2005-2017 Andes Technology Corporation
 
#include <linux/linkage.h>
 
/*
  void *memmove(void *dst, const void *src, int n);
 
  dst: $r0
  src: $r1
  n  : $r2
  ret: $r0 - pointer to the memory area dst.
*/
   .text
 
ENTRY(memmove)
   move    $r5, $r0        ! Set return value = det
   beq    $r0, $r1, exit_memcpy    ! Exit when det = src
   beqz    $r2, exit_memcpy    ! Exit when n = 0
   pushm    $t0, $t1        ! Save reg
   srli    $p1, $r2, #2        ! $p1 is how many words to copy
 
   ! Avoid data lost when memory overlap
   ! Copy data reversely when src < dst
   slt    $p0, $r0, $r1        ! check if $r0 < $r1
   beqz    $p0, do_reverse        ! branch if dst > src
 
   ! No reverse, dst < src
   andi    $r2, $r2, #3        ! How many bytes are less than a word
   li    $t0, #1            ! Determining copy direction in byte_cpy
   beqz    $p1, byte_cpy        ! When n is less than a word
 
word_cpy:
   lmw.bim    $p0, [$r1], $p0        ! Read a word from src
   addi    $p1, $p1, #-1        ! How many words left to copy
   smw.bim    $p0, [$r0], $p0        ! Copy the word to det
   bnez    $p1, word_cpy        ! If remained words > 0
   beqz    $r2, end_memcpy        ! No left bytes to copy
   b    byte_cpy
 
do_reverse:
   add    $r0, $r0, $r2        ! Start with the end of $r0
   add    $r1, $r1, $r2        ! Start with the end of $r1
   andi    $r2, $r2, #3        ! How many bytes are less than a word
   li    $t0, #-1        ! Determining copy direction in byte_cpy
   beqz    $p1, reverse_byte_cpy    ! When n is less than a word
 
reverse_word_cpy:
   lmw.adm    $p0, [$r1], $p0        ! Read a word from src
   addi    $p1, $p1, #-1        ! How many words left to copy
   smw.adm    $p0, [$r0], $p0        ! Copy the word to det
   bnez    $p1, reverse_word_cpy    ! If remained words > 0
   beqz    $r2, end_memcpy        ! No left bytes to copy
 
reverse_byte_cpy:
   addi    $r0, $r0, #-1
   addi    $r1, $r1, #-1
byte_cpy:                ! Less than 4 bytes to copy now
   lb.bi    $p0, [$r1], $t0        ! Read a byte from src
   addi    $r2, $r2, #-1        ! How many bytes left to copy
   sb.bi    $p0, [$r0], $t0        ! copy the byte to det
   bnez    $r2, byte_cpy        ! If remained bytes > 0
 
end_memcpy:
   popm    $t0, $t1
exit_memcpy:
   move    $r0, $r5
   ret
 
ENDPROC(memmove)