/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* strncpy(s1, s2)
*
* Copy string s2 to s1, truncating or null-padding to always copy n bytes
* return s1.
*
* Fast assembler language version of the following C-program for strncpy
* which represents the `standard' for the C-library.
*
* char *
* strncpy(char *s1, const char *s2, size_t n)
* {
* char *os1 = s1;
*
* n++;
* while ((--n != 0) && ((*s1++ = *s2++) != '\0'))
* ;
* if (n != 0)
* while (--n != 0)
* *s1++ = '\0';
* return (os1);
* }
*/
#include <sys/asm_linkage.h>
!
.align 32
.alignsrc:
sub %i2, 4, %i2 ! adjust for dest pre-incr in cpy loops
or %l1, %lo(0x01010101),%l1! finish loading magic1
andcc %l0, 3, %g1 ! destination word aligned ?
bnz .dstnotaligned ! nope
sll %l1, 7, %i5 ! create Alan Mycroft's magic2
.zerobyte:
! with, and we have padded at most 3 bytes suring dst aligning
.fillaligned:
add %i4, 3, %i2 ! round up to next word boundary
and %i2, -4, %l1 ! pointer to next word boundary
and %i2, 4, %i2 ! word count odd ? 4 : 0
stw %g0, [%l0] ! store first word
addcc %l1, %i2, %l1 ! dword count == 1 ?
add %i4, %i2, %i4 ! if word count odd, n -= 4
bz .bytepad ! if word count == 1, pad bytes left
add %l0, %i2, %l0 ! bump dst if word count odd
.fillword:
addcc %l1, 8, %l1 ! count -= 8
stw %g0, [%l0] ! dst[n] = 0
stw %g0, [%l0 + 4] ! dst[n+4] = 0
add %l0, 8, %l0 ! dst += 8
bcc .fillword ! fill words until count == 0
addcc %i4, 8, %i4 ! n -= 8
bz .done ! if n == 0, we are done
.empty
.bytepad:
and %i4, 1, %i2 ! byte count odd ? 1 : 0
stb %g0, [%l0] ! store first byte
addcc %i4, %i2, %i4 ! byte count == 1 ?
bz .done ! yup, we are done
add %l0, %i2, %l0 ! bump pointer if odd
.fillbyte:
addcc %i4, 2, %i4 ! n -= 2
stb %g0, [%l0] ! dst[n] = 0
stb %g0, [%l0 + 1] ! dst[n+1] = 0
bnz .fillbyte ! fill until n == 0
add %l0, 2, %l0 ! dst += 2
.done:
ret ! done
restore %i0, %g0, %o0 ! restore reg window, return dst
! this is the last word. It may contain null bytes. store bytes
! until n == 0. if null byte encountered, continue
.lastword:
sub %i4, 4, %i4 ! undo counter pre-increment
add %i2, 4, %i2 ! adjust dst for counter un-bumping
srl %i1, 24, %g1 ! first byte
stb %g1, [%i2 + %i4] ! store it
inccc %i4 ! n--
and %g1, 0xff, %g1 ! isolate byte
sub %g1, 1, %g1 ! byte == 0 ? -1 : byte - 1
sra %g1, 31, %g1 ! byte == 0 ? -1 : 0
andn %i1, %g1, %i1 ! if byte == 0, start padding with null
srl %i1, 8, %g1 ! third byte
stb %g1, [%i2 + %i4] ! store it
inccc %i4 ! n--
.shortcpy:
.padbyte:
.padbyte2: