1 /* memcpy - copy a block from source to destination. 64 bit S/390 version.
2 Copyright (C) 2012-2015 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. */
50 chi %r5,4096 # Switch to mvcle for copies >1MB
65 libc_hidden_builtin_def (memcpy)
69 # Using as standalone function will result in unexpected
70 # results since the length field is incremented by 1 in order to
71 # compensate the changes already done in the functions above.
72 aghi %r4,1 # length + 1
73 lgr %r5,%r4 # source length
74 lgr %r4,%r3 # source address
75 lgr %r3,%r5 # destination length = source length
77 mvcle %r2,%r4,0 # thats it, MVCLE is your friend
79 lgr %r2,%r1 # return destination address