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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 /* Append no more than COUNT characters from the null-terminated string SRC
22 to the null-terminated string DST. Always null-terminate the new DST. */
40 mov a0, v0 # set up return value
41 beq a2, $zerocount # U :
42 /* Find the end of the string. */
43 ldq_u t0, 0(a0) # L : load first quadword (a0 may be misaligned)
46 insqh t1, v0, t1 # U :
47 andnot a0, 7, a0 # E :
53 cmpbge zero, t0, t1 # E : bits set iff byte == 0
56 $loop: ldq t0, 8(a0) # L :
58 cmpbge zero, t0, t1 # E :
61 $found: cttz t1, t2 # U0 :
63 jsr t9, __stxncpy # L0 : Now do the append.
65 /* Worry about the null termination. */
67 cttz t10, t2 # U0: byte offset of end-of-count.
68 bic a0, 7, a0 # E : word align the last write address.
69 zapnot t0, t8, t1 # U : was last byte a null?
77 0: addq t2, a0, a0 # E : address of end-of-count