Blame sysdeps/s390/strchrnul-vx.S

Packit 6c4009
/* Vector optimized 32/64 bit S/390 version of strchrnul.
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 Bot c684b7
#include <ifunc-strchrnul.h>
Packit Bot c684b7
Packit Bot c684b7
#if HAVE_STRCHRNUL_Z13
Packit 6c4009
Packit 6c4009
# include "sysdep.h"
Packit 6c4009
# include "asm-syntax.h"
Packit 6c4009
Packit 6c4009
	.text
Packit 6c4009
Packit 6c4009
/* char *strchrnul (const char *s, int c)
Packit 6c4009
   Returns pointer to first c or to \0 if c not found.
Packit 6c4009
Packit 6c4009
   Register usage:
Packit 6c4009
   -r1=tmp
Packit 6c4009
   -r2=s and return pointer
Packit 6c4009
   -r3=c
Packit 6c4009
   -r4=tmp
Packit 6c4009
   -r5=current_len
Packit 6c4009
   -v16=part of s
Packit 6c4009
   -v18=vector with c replicated in every byte
Packit 6c4009
*/
Packit Bot c684b7
ENTRY(STRCHRNUL_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
	lghi	%r5,0		/* current_len = 0.  */
Packit 6c4009
Packit 6c4009
	vlvgb	%v18,%r3,0	/* Generate vector which elements are all c.
Packit 6c4009
				   If c > 255, c will be truncated.  */
Packit 6c4009
	vrepb	%v18,%v18,0
Packit 6c4009
Packit 6c4009
	vfeezbs	%v16,%v16,%v18	/* Find element equal with zero search.  */
Packit 6c4009
	vlgvb	%r4,%v16,7	/* Load byte index of character or zero.  */
Packit 6c4009
	clrjl	%r4,%r1,.Lfound /* Return if c/zero is in loaded bytes.  */
Packit 6c4009
Packit 6c4009
	/* Align s to 16 byte.  */
Packit 6c4009
	risbgn	%r4,%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,%r4		/* Compute bytes to 16bytes boundary.  */
Packit 6c4009
Packit 6c4009
	/* Find c/zero in 16byte aligned loop */
Packit 6c4009
.Lloop:
Packit 6c4009
	vl	%v16,0(%r5,%r2) /* Load s */
Packit 6c4009
	vfeezbs	%v16,%v16,%v18	/* Find element equal with zero search.  */
Packit 6c4009
	jno	.Lfound		/* Found c/zero (cc=0|1|2).  */
Packit 6c4009
	vl	%v16,16(%r5,%r2)
Packit 6c4009
	vfeezbs	%v16,%v16,%v18
Packit 6c4009
	jno	.Lfound16
Packit 6c4009
	vl	%v16,32(%r5,%r2)
Packit 6c4009
	vfeezbs	%v16,%v16,%v18
Packit 6c4009
	jno	.Lfound32
Packit 6c4009
	vl	%v16,48(%r5,%r2)
Packit 6c4009
	vfeezbs	%v16,%v16,%v18
Packit 6c4009
	jno	.Lfound48
Packit 6c4009
Packit 6c4009
	aghi	%r5,64
Packit 6c4009
	j	.Lloop		/* No character and no zero -> loop.  */
Packit 6c4009
Packit 6c4009
	/* Found character or zero */
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	%r1,%v16,7	/* Load byte index of character.  */
Packit 6c4009
	algr	%r5,%r1
Packit 6c4009
	la	%r2,0(%r5,%r2)	/* Return pointer to character.  */
Packit 6c4009
Packit 6c4009
.Lend:
Packit 6c4009
	br	%r14
Packit Bot c684b7
END(STRCHRNUL_Z13)
Packit Bot c684b7
Packit Bot c684b7
# if ! HAVE_STRCHRNUL_IFUNC
Packit Bot c684b7
strong_alias (STRCHRNUL_Z13, __strchrnul)
Packit Bot c684b7
weak_alias (__strchrnul, strchrnul)
Packit Bot c684b7
# endif
Packit Bot c684b7
Packit Bot c684b7
#endif /* HAVE_STRCHRNUL_Z13  */