Blame sysdeps/s390/multiarch/wcsnlen-vx.S

Packit Service 1f32a9
/* Vector optimized 32/64 bit S/390 version of wcsnlen.
Packit Service 1f32a9
   Copyright (C) 2015-2018 Free Software Foundation, Inc.
Packit Service 1f32a9
   This file is part of the GNU C Library.
Packit Service 1f32a9
Packit Service 1f32a9
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 1f32a9
   modify it under the terms of the GNU Lesser General Public
Packit Service 1f32a9
   License as published by the Free Software Foundation; either
Packit Service 1f32a9
   version 2.1 of the License, or (at your option) any later version.
Packit Service 1f32a9
Packit Service 1f32a9
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 1f32a9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 1f32a9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 1f32a9
   Lesser General Public License for more details.
Packit Service 1f32a9
Packit Service 1f32a9
   You should have received a copy of the GNU Lesser General Public
Packit Service 1f32a9
   License along with the GNU C Library; if not, see
Packit Service 1f32a9
   <http://www.gnu.org/licenses/>.  */
Packit Service 1f32a9
Packit Service 1f32a9
#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
Packit Service 1f32a9
Packit Service 1f32a9
# include "sysdep.h"
Packit Service 1f32a9
# include "asm-syntax.h"
Packit Service 1f32a9
Packit Service 1f32a9
	.text
Packit Service 1f32a9
Packit Service 1f32a9
/* size_t wcsnlen (const wchar_t *s, size_t maxlen)
Packit Service 1f32a9
   Returns the number of characters in s or at most maxlen.
Packit Service 1f32a9
Packit Service 1f32a9
   Register usage:
Packit Service 1f32a9
   -r1=tmp
Packit Service 1f32a9
   -r2=address of string
Packit Service 1f32a9
   -r3=maxlen (number of characters to be read)
Packit Service 1f32a9
   -r4=tmp
Packit Service 1f32a9
   -r5=current_len and return_value
Packit Service 1f32a9
   -v16=part of s
Packit Service 1f32a9
*/
Packit Service 1f32a9
ENTRY(__wcsnlen_vx)
Packit Service 1f32a9
Packit Service 1f32a9
	.machine "z13"
Packit Service 1f32a9
	.machinemode "zarch_nohighgprs"
Packit Service 1f32a9
Packit Service 1f32a9
# if !defined __s390x__
Packit Service 1f32a9
	llgfr	%r3,%r3
Packit Service 1f32a9
# endif /* !defined __s390x__ */
Packit Service 1f32a9
Packit Service 1f32a9
	clgfi	%r3,0		/* if maxlen == 0, return 0.  */
Packit Service 1f32a9
	locgre	%r2,%r3
Packit Service 1f32a9
	ber	%r14
Packit Service 1f32a9
Packit Service 1f32a9
	vlbb	%v16,0(%r2),6	/* Load s until next 4k-byte boundary.  */
Packit Service 1f32a9
	lcbb	%r1,0(%r2),6	/* Get bytes to 4k-byte boundary or 16.  */
Packit Service 1f32a9
	llgfr	%r1,%r1		/* Convert 32bit to 64bit.  */
Packit Service 1f32a9
Packit Service 1f32a9
	tmll	%r2,3		/* Test if s is 4-byte aligned?  */
Packit Service 1f32a9
	jne	.Lfallback	/* And use common-code variant if not.  */
Packit Service 1f32a9
Packit Service 1f32a9
	/* Check range of maxlen and convert to byte-count.  */
Packit Service 1f32a9
# ifdef __s390x__
Packit Service 1f32a9
	tmhh	%r3,49152	/* Test bit 0 or 1 of maxlen.  */
Packit Service 1f32a9
	lghi	%r4,-4		/* Max byte-count is 18446744073709551612.  */
Packit Service 1f32a9
# else
Packit Service 1f32a9
	tmlh	%r3,49152	/* Test bit 0 or 1 of maxlen.  */
Packit Service 1f32a9
	llilf	%r4,4294967292	/* Max byte-count is 4294967292.  */
Packit Service 1f32a9
# endif /* !__s390x__ */
Packit Service 1f32a9
	sllg	%r3,%r3,2	/* Convert character-count to byte-count.  */
Packit Service 1f32a9
	locgrne	%r3,%r4		/* Use max byte-count, if bit 0/1 was one.  */
Packit Service 1f32a9
Packit Service 1f32a9
	vfenezf	%v16,%v16,%v16	/* Find element not equal with zero search.  */
Packit Service 1f32a9
	clgr	%r1,%r3
Packit Service 1f32a9
	locgrh	%r1,%r3		/* loaded_byte_count
Packit Service 1f32a9
				   = min (loaded_byte_count, maxlen)  */
Packit Service 1f32a9
Packit Service 1f32a9
	vlgvb	%r5,%v16,7	/* Load zero index or 16 if not found.  */
Packit Service 1f32a9
	clrjl	%r5,%r1,.Lend	/* Found zero within loaded bytes -> return.  */
Packit Service 1f32a9
Packit Service 1f32a9
	clgr	%r1,%r3		/* If loaded_byte_count == maxlen -> end.  */
Packit Service 1f32a9
	locgre	%r5,%r3
Packit Service 1f32a9
	je	.Lend
Packit Service 1f32a9
Packit Service 1f32a9
	/* Align s to 16 byte.  */
Packit Service 1f32a9
	risbgn	%r4,%r2,60,128+63,0 /* %r3 = bits 60-63 of %r2 'and' 15.  */
Packit Service 1f32a9
	lghi	%r5,16		/* current_len = 16.  */
Packit Service 1f32a9
	slr	%r5,%r4		/* Compute bytes to 16bytes boundary.  */
Packit Service 1f32a9
Packit Service 1f32a9
	lgr	%r1,%r5		/* If %r5 + 64 < maxlen? -> loop64.  */
Packit Service 1f32a9
	aghi	%r1,64
Packit Service 1f32a9
	clgrjl	%r1,%r3,.Lloop64
Packit Service 1f32a9
Packit Service 1f32a9
	/* Find zero in max 64byte with aligned s.  */
Packit Service 1f32a9
.Llt64:
Packit Service 1f32a9
	vl	%v16,0(%r5,%r2)	/* Load s.  */
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16	/* Find element not equal with zero search.  */
Packit Service 1f32a9
	je	.Lfound		/* Jump away if zero was found.  */
Packit Service 1f32a9
	aghi	%r5,16
Packit Service 1f32a9
	clgrjhe	%r5,%r3,.Lfound /* If current_len >= maxlen -> end.  */
Packit Service 1f32a9
	vl	%v16,0(%r5,%r2)
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16
Packit Service 1f32a9
	je	.Lfound
Packit Service 1f32a9
	aghi	%r5,16
Packit Service 1f32a9
	clgrjhe	%r5,%r3,.Lfound
Packit Service 1f32a9
	vl	%v16,0(%r5,%r2)
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16
Packit Service 1f32a9
	je	.Lfound
Packit Service 1f32a9
	aghi	%r5,16
Packit Service 1f32a9
	clgrjhe	%r5,%r3,.Lfound
Packit Service 1f32a9
	vl	%v16,0(%r5,%r2)
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16
Packit Service 1f32a9
	j	.Lfound
Packit Service 1f32a9
Packit Service 1f32a9
.Lfound48:
Packit Service 1f32a9
	aghi	%r5,16
Packit Service 1f32a9
.Lfound32:
Packit Service 1f32a9
	aghi	%r5,16
Packit Service 1f32a9
.Lfound16:
Packit Service 1f32a9
	aghi	%r5,16
Packit Service 1f32a9
.Lfound:
Packit Service 1f32a9
	vlgvb	%r4,%v16,7	/* Load byte index of zero or 16 if no zero.  */
Packit Service 1f32a9
	algr	%r5,%r4
Packit Service 1f32a9
Packit Service 1f32a9
	clgr	%r5,%r3
Packit Service 1f32a9
	locgrh	%r5,%r3		/* Return min (current_len, maxlen).  */
Packit Service 1f32a9
.Lend:
Packit Service 1f32a9
	srlg	%r2,%r5,2	/* Convert byte-count to character-count.  */
Packit Service 1f32a9
	br	%r14
Packit Service 1f32a9
Packit Service 1f32a9
	/* Find zero in 16byte aligned loop.  */
Packit Service 1f32a9
.Lloop64:
Packit Service 1f32a9
	vl	%v16,0(%r5,%r2)	/* Load s.  */
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16	/* Find element not equal with zero search.  */
Packit Service 1f32a9
	je	.Lfound		/* Jump away if zero was found.  */
Packit Service 1f32a9
	vl	%v16,16(%r5,%r2)
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16
Packit Service 1f32a9
	je	.Lfound16
Packit Service 1f32a9
	vl	%v16,32(%r5,%r2)
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16
Packit Service 1f32a9
	je	.Lfound32
Packit Service 1f32a9
	vl	%v16,48(%r5,%r2)
Packit Service 1f32a9
	vfenezfs %v16,%v16,%v16
Packit Service 1f32a9
	je	.Lfound48
Packit Service 1f32a9
Packit Service 1f32a9
	aghi	%r5,64
Packit Service 1f32a9
	lgr	%r1,%r5		/* If %r5 + 64 < maxlen? -> loop64.  */
Packit Service 1f32a9
	aghi	%r1,64
Packit Service 1f32a9
	clgrjl	%r1,%r3,.Lloop64
Packit Service 1f32a9
Packit Service 1f32a9
	j	.Llt64
Packit Service 1f32a9
Packit Service 1f32a9
.Lfallback:
Packit Service 1f32a9
	jg	__wcsnlen_c
Packit Service 1f32a9
END(__wcsnlen_vx)
Packit Service 1f32a9
#endif /* HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc) */