1 /* memcpy - copy a block from source to destination. S/390 version.
2 Copyright (C) 2012-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
21 #include "asm-syntax.h"
24 %r2 = address of destination memory area
25 %r3 = address of source memory area
26 %r4 = number of bytes to copy. */
31 lr %r1,%r2 # Use as dest
32 la %r2,0(%r4,%r2) # Return dest + n
36 libc_hidden_def (__mempcpy)
37 weak_alias (__mempcpy, mempcpy)
38 libc_hidden_builtin_def (mempcpy)
43 lr %r1,%r2 # r1: Use as dest ; r2: Return dest
55 ex %r4,.L_G5_17-.L_G5_16(%r5)
59 chi %r5,4096 # Switch to mvcle for copies >1MB
71 libc_hidden_builtin_def (memcpy)
75 # Using as standalone function will result in unexpected
76 # results since the length field is incremented by 1 in order to
77 # compensate the changes already done in the functions above.
78 lr %r0,%r2 # backup return dest [ + n ]
79 ahi %r4,1 # length + 1
80 lr %r5,%r4 # source length
81 lr %r4,%r3 # source address
82 lr %r2,%r1 # destination address
83 lr %r3,%r5 # destination length = source length
85 mvcle %r2,%r4,0 # thats it, MVCLE is your friend
87 lr %r2,%r0 # return destination address