Blame sysdeps/s390/strlen-vx.S

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