Blame sysdeps/s390/wcslen-vx.S

Packit 6c4009
/* Vector optimized 32/64 bit S/390 version of wcslen.
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 23bd9b
#include <ifunc-wcslen.h>
Packit Service 23bd9b
#if HAVE_WCSLEN_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 wcslen (const wchar_t *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 23bd9b
ENTRY(WCSLEN_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
	tmll	%r2,3		/* Test if s is 4-byte aligned?   */
Packit 6c4009
	jne	.Lfallback	/* And use common-code variant if not.  */
Packit 6c4009
Packit 6c4009
	vfenezf	%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
	jl	.Lend		/* 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 16byte aligned loop.  */
Packit 6c4009
.Lloop:
Packit 6c4009
	vl	%v16,0(%r5,%r2)	/* Load s.  */
Packit 6c4009
	vfenezfs %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
	vfenezfs %v16,%v16,%v16
Packit 6c4009
	je	.Lfound16
Packit 6c4009
	vl	%v16,32(%r5,%r2)
Packit 6c4009
	vfenezfs %v16,%v16,%v16
Packit 6c4009
	je	.Lfound32
Packit 6c4009
	vl	%v16,48(%r5,%r2)
Packit 6c4009
	vfenezfs %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
.Lend:
Packit 6c4009
	srlg	%r2,%r2,2	/* Convert byte-count to character-count.  */
Packit 6c4009
	br	%r14
Packit 6c4009
.Lfallback:
Packit Service 23bd9b
	jg	WCSLEN_C
Packit Service 23bd9b
END(WCSLEN_Z13)
Packit Service 23bd9b
Packit Service 23bd9b
# if ! HAVE_WCSLEN_IFUNC
Packit Service 23bd9b
strong_alias (WCSLEN_Z13, __wcslen)
Packit Service 23bd9b
weak_alias (__wcslen, wcslen)
Packit Service 23bd9b
# endif
Packit Service 23bd9b
#endif