Blame sysdeps/alpha/alphaev6/memset.S

Packit 6c4009
/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
Packit 6c4009
   Contributed by Richard Henderson (rth@tamu.edu)
Packit 6c4009
   EV6 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
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 6c4009
#include <sysdep.h>
Packit 6c4009
Packit 6c4009
	.arch ev6
Packit 6c4009
	.set noat
Packit 6c4009
	.set noreorder
Packit 6c4009
Packit 6c4009
ENTRY(memset)
Packit 6c4009
#ifdef PROF
Packit 6c4009
	ldgp	gp, 0(pv)
Packit 6c4009
	lda	AT, _mcount
Packit 6c4009
	jsr	AT, (AT), _mcount
Packit 6c4009
	.prologue 1
Packit 6c4009
#else
Packit 6c4009
	.prologue 0
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
	/*
Packit 6c4009
	 * Serious stalling happens.  The only way to mitigate this is to
Packit 6c4009
	 * undertake a major re-write to interleave the constant materialization
Packit 6c4009
	 * with other parts of the fall-through code.  This is important, even
Packit 6c4009
	 * though it makes maintenance tougher.
Packit 6c4009
	 * Do this later.
Packit 6c4009
	 */
Packit 6c4009
	and	$17, 255, $1	# E : 00000000000000ch
Packit 6c4009
	insbl	$17, 1, $2	# U : 000000000000ch00
Packit 6c4009
	mov	$16, $0		# E : return value
Packit 6c4009
	ble	$18, $end	# U : zero length requested?
Packit 6c4009
Packit 6c4009
	addq	$18, $16, $6	# E : max address to write to
Packit 6c4009
	or	$1, $2, $17	# E : 000000000000chch
Packit 6c4009
	insbl	$1, 2, $3	# U : 0000000000ch0000
Packit 6c4009
	insbl	$1, 3, $4	# U : 00000000ch000000
Packit 6c4009
Packit 6c4009
	or	$3, $4, $3	# E : 00000000chch0000
Packit 6c4009
	inswl	$17, 4, $5	# U : 0000chch00000000
Packit 6c4009
	xor	$16, $6, $1	# E : will complete write be within one quadword?
Packit 6c4009
	inswl	$17, 6, $2	# U : chch000000000000
Packit 6c4009
Packit 6c4009
	or	$17, $3, $17	# E : 00000000chchchch
Packit 6c4009
	or	$2, $5, $2	# E : chchchch00000000
Packit 6c4009
	bic	$1, 7, $1	# E : fit within a single quadword?
Packit 6c4009
	and	$16, 7, $3	# E : Target addr misalignment
Packit 6c4009
Packit 6c4009
	or	$17, $2, $17	# E : chchchchchchchch
Packit 6c4009
	beq	$1, $within_quad # U :
Packit 6c4009
	nop			# E :
Packit 6c4009
	beq	$3, $aligned	# U : target is 0mod8
Packit 6c4009
Packit 6c4009
	/*
Packit 6c4009
	 * Target address is misaligned, and won't fit within a quadword.
Packit 6c4009
	 */
Packit 6c4009
	ldq_u	$4, 0($16)	# L : Fetch first partial
Packit 6c4009
	mov	$16, $5		# E : Save the address
Packit 6c4009
	insql	$17, $16, $2	# U : Insert new bytes
Packit 6c4009
	subq	$3, 8, $3	# E : Invert (for addressing uses)
Packit 6c4009
Packit 6c4009
	addq	$18, $3, $18	# E : $18 is new count ($3 is negative)
Packit 6c4009
	mskql	$4, $16, $4	# U : clear relevant parts of the quad
Packit 6c4009
	subq	$16, $3, $16	# E : $16 is new aligned destination
Packit 6c4009
	or	$2, $4, $1	# E : Final bytes
Packit 6c4009
Packit 6c4009
	nop
Packit 6c4009
	stq_u	$1,0($5)	# L : Store result
Packit 6c4009
	nop
Packit 6c4009
	nop
Packit 6c4009
Packit 6c4009
	.align 4
Packit 6c4009
$aligned:
Packit 6c4009
	/*
Packit 6c4009
	 * We are now guaranteed to be quad aligned, with at least
Packit 6c4009
	 * one partial quad to write.
Packit 6c4009
	 */
Packit 6c4009
Packit 6c4009
	sra	$18, 3, $3	# U : Number of remaining quads to write
Packit 6c4009
	and	$18, 7, $18	# E : Number of trailing bytes to write
Packit 6c4009
	mov	$16, $5		# E : Save dest address
Packit 6c4009
	beq	$3, $no_quad	# U : tail stuff only
Packit 6c4009
Packit 6c4009
	/*
Packit 6c4009
	 * It's worth the effort to unroll this and use wh64 if possible.
Packit 6c4009
	 * At this point, entry values are:
Packit 6c4009
	 * $16	Current destination address
Packit 6c4009
	 * $5	A copy of $16
Packit 6c4009
	 * $6	The max quadword address to write to
Packit 6c4009
	 * $18	Number trailer bytes
Packit 6c4009
	 * $3	Number quads to write
Packit 6c4009
	 */
Packit 6c4009
Packit 6c4009
	and	$16, 0x3f, $2	# E : Forward work (only useful for unrolled loop)
Packit 6c4009
	subq	$3, 16, $4	# E : Only try to unroll if > 128 bytes
Packit 6c4009
	subq	$2, 0x40, $1	# E : bias counter (aligning stuff 0mod64)
Packit 6c4009
	blt	$4, $loop	# U :
Packit 6c4009
Packit 6c4009
	/*
Packit 6c4009
	 * We know we've got at least 16 quads, minimum of one trip
Packit 6c4009
	 * through unrolled loop.  Do a quad at a time to get us 0mod64
Packit 6c4009
	 * aligned.
Packit 6c4009
	 */
Packit 6c4009
Packit 6c4009
	nop			# E :
Packit 6c4009
	nop			# E :
Packit 6c4009
	nop			# E :
Packit 6c4009
	beq	$1, $bigalign	# U :
Packit 6c4009
Packit 6c4009
$alignmod64:
Packit 6c4009
	stq	$17, 0($5)	# L :
Packit 6c4009
	subq	$3, 1, $3	# E : For consistency later
Packit 6c4009
	addq	$1, 8, $1	# E : Increment towards zero for alignment
Packit 6c4009
	addq	$5, 8, $4	# E : Initial wh64 address (filler instruction)
Packit 6c4009
Packit 6c4009
	nop
Packit 6c4009
	nop
Packit 6c4009
	addq	$5, 8, $5	# E : Inc address
Packit 6c4009
	blt	$1, $alignmod64 # U :
Packit 6c4009
Packit 6c4009
$bigalign:
Packit 6c4009
	/*
Packit 6c4009
	 * $3 - number quads left to go
Packit 6c4009
	 * $5 - target address (aligned 0mod64)
Packit 6c4009
	 * $17 - mask of stuff to store
Packit 6c4009
	 * Scratch registers available: $7, $2, $4, $1
Packit 6c4009
	 * We know that we'll be taking a minimum of one trip through.
Packit 6c4009
	 * CWG Section 3.7.6: do not expect a sustained store rate of > 1/cycle
Packit 6c4009
	 * Assumes the wh64 needs to be for 2 trips through the loop in the future.
Packit 6c4009
	 * The wh64 is issued on for the starting destination address for trip +2
Packit 6c4009
	 * through the loop, and if there are less than two trips left, the target
Packit 6c4009
	 * address will be for the current trip.
Packit 6c4009
	 */
Packit 6c4009
Packit 6c4009
$do_wh64:
Packit 6c4009
	wh64	($4)		# L1 : memory subsystem write hint
Packit 6c4009
	subq	$3, 24, $2	# E : For determining future wh64 addresses
Packit 6c4009
	stq	$17, 0($5)	# L :
Packit 6c4009
	nop			# E :
Packit 6c4009
Packit 6c4009
	addq	$5, 128, $4	# E : speculative target of next wh64
Packit 6c4009
	stq	$17, 8($5)	# L :
Packit 6c4009
	stq	$17, 16($5)	# L :
Packit 6c4009
	addq	$5, 64, $7	# E : Fallback address for wh64 (== next trip addr)
Packit 6c4009
Packit 6c4009
	stq	$17, 24($5)	# L :
Packit 6c4009
	stq	$17, 32($5)	# L :
Packit 6c4009
	cmovlt	$2, $7, $4	# E : Latency 2, extra mapping cycle
Packit 6c4009
	nop
Packit 6c4009
Packit 6c4009
	stq	$17, 40($5)	# L :
Packit 6c4009
	stq	$17, 48($5)	# L :
Packit 6c4009
	subq	$3, 16, $2	# E : Repeat the loop at least once more?
Packit 6c4009
	nop
Packit 6c4009
Packit 6c4009
	stq	$17, 56($5)	# L :
Packit 6c4009
	addq	$5, 64, $5	# E :
Packit 6c4009
	subq	$3, 8, $3	# E :
Packit 6c4009
	bge	$2, $do_wh64	# U :
Packit 6c4009
Packit 6c4009
	nop
Packit 6c4009
	nop
Packit 6c4009
	nop
Packit 6c4009
	beq	$3, $no_quad	# U : Might have finished already
Packit 6c4009
Packit 6c4009
	.align 4
Packit 6c4009
	/*
Packit 6c4009
	 * Simple loop for trailing quadwords, or for small amounts
Packit 6c4009
	 * of data (where we can't use an unrolled loop and wh64)
Packit 6c4009
	 */
Packit 6c4009
$loop:
Packit 6c4009
	stq	$17, 0($5)	# L :
Packit 6c4009
	subq	$3, 1, $3	# E : Decrement number quads left
Packit 6c4009
	addq	$5, 8, $5	# E : Inc address
Packit 6c4009
	bne	$3, $loop	# U : more?
Packit 6c4009
Packit 6c4009
$no_quad:
Packit 6c4009
	/*
Packit 6c4009
	 * Write 0..7 trailing bytes.
Packit 6c4009
	 */
Packit 6c4009
	nop			# E :
Packit 6c4009
	beq	$18, $end	# U : All done?
Packit 6c4009
	ldq	$7, 0($5)	# L :
Packit 6c4009
	mskqh	$7, $6, $2	# U : Mask final quad
Packit 6c4009
Packit 6c4009
	insqh	$17, $6, $4	# U : New bits
Packit 6c4009
	or	$2, $4, $1	# E : Put it all together
Packit 6c4009
	stq	$1, 0($5)	# L : And back to memory
Packit 6c4009
	ret	$31,($26),1	# L0 :
Packit 6c4009
Packit 6c4009
$within_quad:
Packit 6c4009
	ldq_u	$1, 0($16)	# L :
Packit 6c4009
	insql	$17, $16, $2	# U : New bits
Packit 6c4009
	mskql	$1, $16, $4	# U : Clear old
Packit 6c4009
	or	$2, $4, $2	# E : New result
Packit 6c4009
Packit 6c4009
	mskql	$2, $6, $4	# U :
Packit 6c4009
	mskqh	$1, $6, $2	# U :
Packit 6c4009
	or	$2, $4, $1	# E :
Packit 6c4009
	stq_u	$1, 0($16)	# L :
Packit 6c4009
Packit 6c4009
$end:
Packit 6c4009
	nop
Packit 6c4009
	nop
Packit 6c4009
	nop
Packit 6c4009
	ret $31,($26),1		# L0 :
Packit 6c4009
Packit 6c4009
	END(memset)
Packit 6c4009
libc_hidden_builtin_def (memset)