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

Packit Service 1c5418
/* Vector optimized 32/64 bit S/390 version of strlen.
Packit Service 1c5418
   Copyright (C) 2015-2018 Free Software Foundation, Inc.
Packit Service 1c5418
   This file is part of the GNU C Library.
Packit Service 1c5418
Packit Service 1c5418
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 1c5418
   modify it under the terms of the GNU Lesser General Public
Packit Service 1c5418
   License as published by the Free Software Foundation; either
Packit Service 1c5418
   version 2.1 of the License, or (at your option) any later version.
Packit Service 1c5418
Packit Service 1c5418
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 1c5418
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 1c5418
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 1c5418
   Lesser General Public License for more details.
Packit Service 1c5418
Packit Service 1c5418
   You should have received a copy of the GNU Lesser General Public
Packit Service 1c5418
   License along with the GNU C Library; if not, see
Packit Service 1c5418
   <http://www.gnu.org/licenses/>.  */
Packit Service 1c5418
Packit Service 1c5418
#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
Packit Service 1c5418
Packit Service 1c5418
# include "sysdep.h"
Packit Service 1c5418
# include "asm-syntax.h"
Packit Service 1c5418
Packit Service 1c5418
	.text
Packit Service 1c5418
Packit Service 1c5418
/* size_t strlen (const char *s)
Packit Service 1c5418
   Returns length of string s.
Packit Service 1c5418
Packit Service 1c5418
   Register usage:
Packit Service 1c5418
   -r1=bytes to 4k-byte boundary
Packit Service 1c5418
   -r2=s
Packit Service 1c5418
   -r3=tmp
Packit Service 1c5418
   -r4=tmp
Packit Service 1c5418
   -r5=current_len and return_value
Packit Service 1c5418
   -v16=part of s
Packit Service 1c5418
*/
Packit Service 1c5418
ENTRY(__strlen_vx)
Packit Service 1c5418
	.machine "z13"
Packit Service 1c5418
	.machinemode "zarch_nohighgprs"
Packit Service 1c5418
Packit Service 1c5418
	vlbb	%v16,0(%r2),6	/* Load s until next 4k-byte boundary.  */
Packit Service 1c5418
	lcbb	%r1,0(%r2),6	/* Get bytes to 4k-byte boundary or 16.  */
Packit Service 1c5418
Packit Service 1c5418
	vfenezb	%v16,%v16,%v16	/* Find element not equal with zero search.  */
Packit Service 1c5418
	vlgvb	%r4,%v16,7	/* Load zero index or 16 if not found.  */
Packit Service 1c5418
	clr	%r4,%r1		/* If found zero within loaded bytes?  */
Packit Service 1c5418
	locgrl	%r2,%r4		/* Then copy return value.  */
Packit Service 1c5418
	blr	%r14		/* And return.  */
Packit Service 1c5418
Packit Service 1c5418
	/* Align s to 16 byte.  */
Packit Service 1c5418
	risbgn	%r3,%r2,60,128+63,0 /* %r3 = bits 60-63 of %r2 'and' 15.  */
Packit Service 1c5418
	lghi	%r5,16		/* current_len = 16.  */
Packit Service 1c5418
	slr	%r5,%r3		/* Compute bytes to 16bytes boundary.  */
Packit Service 1c5418
Packit Service 1c5418
	/* Find zero in 16 byte aligned loop.  */
Packit Service 1c5418
.Lloop:
Packit Service 1c5418
	vl	%v16,0(%r5,%r2)	/* Load s.  */
Packit Service 1c5418
	vfenezbs %v16,%v16,%v16 /* Find element not equal with zero search.  */
Packit Service 1c5418
	je	.Lfound		/* Jump away if zero was found.  */
Packit Service 1c5418
	vl	%v16,16(%r5,%r2)
Packit Service 1c5418
	vfenezbs %v16,%v16,%v16
Packit Service 1c5418
	je	.Lfound16
Packit Service 1c5418
	vl	%v16,32(%r5,%r2)
Packit Service 1c5418
	vfenezbs %v16,%v16,%v16
Packit Service 1c5418
	je	.Lfound32
Packit Service 1c5418
	vl	%v16,48(%r5,%r2)
Packit Service 1c5418
	vfenezbs %v16,%v16,%v16
Packit Service 1c5418
	je	.Lfound48
Packit Service 1c5418
Packit Service 1c5418
	aghi	%r5,64
Packit Service 1c5418
	j	.Lloop		/* No zero found -> loop.  */
Packit Service 1c5418
Packit Service 1c5418
.Lfound48:
Packit Service 1c5418
	aghi	%r5,16
Packit Service 1c5418
.Lfound32:
Packit Service 1c5418
	aghi	%r5,16
Packit Service 1c5418
.Lfound16:
Packit Service 1c5418
	aghi	%r5,16
Packit Service 1c5418
.Lfound:
Packit Service 1c5418
	vlgvb	%r2,%v16,7	/* Load byte index of zero.  */
Packit Service 1c5418
	algr	%r2,%r5
Packit Service 1c5418
	br	%r14
Packit Service 1c5418
END(__strlen_vx)
Packit Service 1c5418
#endif /* HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc) */