1 /* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
2 Contributed by Richard Henderson <rth@tamu.edu>, 1996.
3 EV67 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library. If not, see
18 <http://www.gnu.org/licenses/>. */
20 /* Append no more than COUNT characters from the null-terminated string SRC
21 to the null-terminated string DST. Always null-terminate the new DST. */
39 mov a0, v0 # set up return value
40 beq a2, $zerocount # U :
41 /* Find the end of the string. */
42 ldq_u t0, 0(a0) # L : load first quadword (a0 may be misaligned)
45 insqh t1, v0, t1 # U :
46 andnot a0, 7, a0 # E :
52 cmpbge zero, t0, t1 # E : bits set iff byte == 0
55 $loop: ldq t0, 8(a0) # L :
57 cmpbge zero, t0, t1 # E :
60 $found: cttz t1, t2 # U0 :
62 jsr t9, __stxncpy # L0 : Now do the append.
64 /* Worry about the null termination. */
66 cttz t10, t2 # U0: byte offset of end-of-count.
67 bic a0, 7, a0 # E : word align the last write address.
68 zapnot t0, t8, t1 # U : was last byte a null?
76 0: addq t2, a0, a0 # E : address of end-of-count