kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
/* Copyright 2009, 2010 The University of Texas at Austin.           */
kusano 2b45e8
/* All rights reserved.                                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* Redistribution and use in source and binary forms, with or        */
kusano 2b45e8
/* without modification, are permitted provided that the following   */
kusano 2b45e8
/* conditions are met:                                               */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   1. Redistributions of source code must retain the above         */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer.                                                  */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   2. Redistributions in binary form must reproduce the above      */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer in the documentation and/or other materials       */
kusano 2b45e8
/*      provided with the distribution.                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
kusano 2b45e8
/*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
kusano 2b45e8
/*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
kusano 2b45e8
/*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
kusano 2b45e8
/*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
kusano 2b45e8
/*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
kusano 2b45e8
/*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
kusano 2b45e8
/*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
kusano 2b45e8
/*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
kusano 2b45e8
/*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
kusano 2b45e8
/*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
kusano 2b45e8
/*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
kusano 2b45e8
/*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
kusano 2b45e8
/*    POSSIBILITY OF SUCH DAMAGE.                                    */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* The views and conclusions contained in the software and           */
kusano 2b45e8
/* documentation are those of the authors and should not be          */
kusano 2b45e8
/* interpreted as representing official policies, either expressed   */
kusano 2b45e8
/* or implied, of The University of Texas at Austin.                 */
kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
kusano 2b45e8
#define ASSEMBLER
kusano 2b45e8
#include "common.h"
kusano 2b45e8
kusano 2b45e8
#ifndef WINDOWS_ABI
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG4
kusano 2b45e8
#define INCX	ARG5
kusano 2b45e8
#else
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG2
kusano 2b45e8
#define INCX	ARG3
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#define XX	%r10
kusano 2b45e8
#define I	%rax
kusano 2b45e8
kusano 2b45e8
#include "l1param.h"
kusano 2b45e8
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
#ifdef WINDOWS_ABI
kusano 2b45e8
	movq	40(%rsp), X
kusano 2b45e8
	movq	48(%rsp), INCX
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm3, %xmm0	
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	SAVEREGISTERS
kusano 2b45e8
	
kusano 2b45e8
	testq	M, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	lea	(, INCX, SIZE), INCX
kusano 2b45e8
kusano 2b45e8
	pxor	%xmm1, %xmm1
kusano 2b45e8
	comiss	%xmm0, %xmm1
kusano 2b45e8
	shufps	$0, %xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	jne	.L100		# Alpha != ZERO
kusano 2b45e8
kusano 2b45e8
/* Alpha == ZERO */
kusano 2b45e8
	cmpq	$SIZE, INCX
kusano 2b45e8
	jne	.L50
kusano 2b45e8
kusano 2b45e8
/* INCX == 1 */
kusano 2b45e8
	cmpq	$3, M
kusano 2b45e8
 	jle	.L14
kusano 2b45e8
kusano 2b45e8
	testq	$4, X		# aligned for double word?
kusano 2b45e8
	je	.L05
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	addq	$SIZE, X
kusano 2b45e8
	decq	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L05:
kusano 2b45e8
	testq	$8, X		# aligned for quad word?
kusano 2b45e8
	je	.L06
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	subq	$2, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L06:
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$4, I
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L11:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm1,  4 * SIZE(X)
kusano 2b45e8
	movaps	%xmm1,  8 * SIZE(X)
kusano 2b45e8
	movaps	%xmm1, 12 * SIZE(X)
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	testq	$15, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	je	.L13
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm1,  4 * SIZE(X)
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L13:
kusano 2b45e8
	testq  $4, M
kusano 2b45e8
	je    .L14
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L14:
kusano 2b45e8
	testq  $2, M
kusano 2b45e8
	je    .L15
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L15:
kusano 2b45e8
	testq  $1, M
kusano 2b45e8
	je    .L999
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* incx != 1 */
kusano 2b45e8
.L50:
kusano 2b45e8
	movq	M,  I		# rcx = n
kusano 2b45e8
	sarq	$3, I		# (n >> 3)
kusano 2b45e8
	jle	.L52
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L51:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L51
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L52:
kusano 2b45e8
	testq	$7, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	je	.L53
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L53:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L54
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L54:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, (X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* Alpha != ZERO */
kusano 2b45e8
kusano 2b45e8
.L100:
kusano 2b45e8
	cmpq	$SIZE, INCX
kusano 2b45e8
	jne	.L150
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	cmpq	$3, M
kusano 2b45e8
	jle	.L116
kusano 2b45e8
kusano 2b45e8
	testq	$SIZE, X
kusano 2b45e8
	je	.L105
kusano 2b45e8
kusano 2b45e8
	movss	-32 * SIZE(X), %xmm1
kusano 2b45e8
	mulss	%xmm0, %xmm1
kusano 2b45e8
	movss	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	addq	$SIZE, X
kusano 2b45e8
	decq	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L105:
kusano 2b45e8
	testq	$2 * SIZE, X
kusano 2b45e8
	je	.L110
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
	mulps	%xmm0, %xmm1
kusano 2b45e8
	movsd	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	subq	$2, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L110:
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$5, I
kusano 2b45e8
	jle	.L113
kusano 2b45e8
kusano 2b45e8
#if defined(BARCELONA) || defined(SHANGHAI)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm1
kusano 2b45e8
	mulps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	mulps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	%xmm0, %xmm3
kusano 2b45e8
	mulps	-24 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	%xmm0, %xmm4
kusano 2b45e8
	mulps	-20 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	%xmm0, %xmm5
kusano 2b45e8
	mulps	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	%xmm0, %xmm6
kusano 2b45e8
	mulps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	%xmm0, %xmm7
kusano 2b45e8
	mulps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	%xmm0, %xmm8
kusano 2b45e8
	mulps	 -4 * SIZE(X), %xmm8
kusano 2b45e8
kusano 2b45e8
	decq	I 
kusano 2b45e8
	jle	.L112
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L111:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	movaps	%xmm2, -28 * SIZE(X)
kusano 2b45e8
	movaps	%xmm3, -24 * SIZE(X)
kusano 2b45e8
	movaps	%xmm4, -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm1
kusano 2b45e8
	mulps	  0 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	mulps	  4 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	%xmm0, %xmm3
kusano 2b45e8
	mulps	  8 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	%xmm0, %xmm4
kusano 2b45e8
	mulps	 12 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm5, -16 * SIZE(X)
kusano 2b45e8
	movaps	%xmm6, -12 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  -8 * SIZE(X)
kusano 2b45e8
	movaps	%xmm8,  -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm5
kusano 2b45e8
	mulps	 16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	%xmm0, %xmm6
kusano 2b45e8
	mulps	 20 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	%xmm0, %xmm7
kusano 2b45e8
	mulps	 24 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	%xmm0, %xmm8
kusano 2b45e8
	mulps	 28 * SIZE(X), %xmm8
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L111
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L112:
kusano 2b45e8
	movaps	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	movaps	%xmm2, -28 * SIZE(X)
kusano 2b45e8
	movaps	%xmm3, -24 * SIZE(X)
kusano 2b45e8
	movaps	%xmm4, -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm5, -16 * SIZE(X)
kusano 2b45e8
	movaps	%xmm6, -12 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  -8 * SIZE(X)
kusano 2b45e8
	movaps	%xmm8,  -4 * SIZE(X)
kusano 2b45e8
	
kusano 2b45e8
#else
kusano 2b45e8
	
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm8
kusano 2b45e8
	decq	I 
kusano 2b45e8
	jle	.L112
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L111:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm0, %xmm1
kusano 2b45e8
	movaps	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	movaps	 0 * SIZE(X), %xmm1
kusano 2b45e8
	mulps	%xmm0, %xmm2
kusano 2b45e8
	movaps	%xmm2, -28 * SIZE(X)
kusano 2b45e8
	movaps	 4 * SIZE(X), %xmm2
kusano 2b45e8
	mulps	%xmm0, %xmm3
kusano 2b45e8
	movaps	%xmm3, -24 * SIZE(X)
kusano 2b45e8
	movaps	 8 * SIZE(X), %xmm3
kusano 2b45e8
	mulps	%xmm0, %xmm4
kusano 2b45e8
	movaps	%xmm4, -20 * SIZE(X)
kusano 2b45e8
	movaps	12 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm0, %xmm5
kusano 2b45e8
	movaps	%xmm5, -16 * SIZE(X)
kusano 2b45e8
	movaps	16 * SIZE(X), %xmm5
kusano 2b45e8
	mulps	%xmm0, %xmm6
kusano 2b45e8
	movaps	%xmm6, -12 * SIZE(X)
kusano 2b45e8
	movaps	20 * SIZE(X), %xmm6
kusano 2b45e8
	mulps	%xmm0, %xmm7
kusano 2b45e8
	movaps	%xmm7,  -8 * SIZE(X)
kusano 2b45e8
	movaps	24 * SIZE(X), %xmm7
kusano 2b45e8
	mulps	%xmm0, %xmm8
kusano 2b45e8
	movaps	%xmm8,  -4 * SIZE(X)
kusano 2b45e8
	movaps	28 * SIZE(X), %xmm8
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L111
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L112:
kusano 2b45e8
	mulps	%xmm0, %xmm1
kusano 2b45e8
	movaps	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm2
kusano 2b45e8
	movaps	%xmm2, -28 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm3
kusano 2b45e8
	movaps	%xmm3, -24 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm4
kusano 2b45e8
	movaps	%xmm4, -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm0, %xmm5
kusano 2b45e8
	movaps	%xmm5, -16 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm6
kusano 2b45e8
	movaps	%xmm6, -12 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm7
kusano 2b45e8
	movaps	%xmm7,  -8 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm8
kusano 2b45e8
	movaps	%xmm8,  -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L113:
kusano 2b45e8
	testq	$31, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testq	$16, M
kusano 2b45e8
	je	.L114
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm0, %xmm1
kusano 2b45e8
	movaps	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm3
kusano 2b45e8
	movaps	%xmm3, -28 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm5
kusano 2b45e8
	movaps	%xmm5, -24 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm7
kusano 2b45e8
	movaps	%xmm7, -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L114:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	je	.L115
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm0, %xmm1
kusano 2b45e8
	movaps	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	mulps	%xmm0, %xmm3
kusano 2b45e8
	movaps	%xmm3, -28 * SIZE(X)
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L115:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	je	.L116
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	mulps	%xmm0, %xmm1
kusano 2b45e8
	movaps	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L116:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L117
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
	mulps	%xmm0, %xmm1
kusano 2b45e8
	movsd	%xmm1,  -32 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L117:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movss	-32 * SIZE(X), %xmm1
kusano 2b45e8
	mulss	%xmm0, %xmm1
kusano 2b45e8
	movss	%xmm1, -32 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
/* incx != 1 */
kusano 2b45e8
kusano 2b45e8
.L150:
kusano 2b45e8
	movq	X, XX
kusano 2b45e8
	movq	M,  I		# rcx = n
kusano 2b45e8
	sarq	$3, I		# (n >> 3)
kusano 2b45e8
	jle	.L152
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L151:
kusano 2b45e8
	movss	(X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	(X), %xmm2
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	(X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	(X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	(X), %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	(X), %xmm6
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	(X), %xmm7
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	(X), %xmm8
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	mulss	%xmm0, %xmm1
kusano 2b45e8
	mulss	%xmm0, %xmm2
kusano 2b45e8
	mulss	%xmm0, %xmm3
kusano 2b45e8
	mulss	%xmm0, %xmm4
kusano 2b45e8
	mulss	%xmm0, %xmm5
kusano 2b45e8
	mulss	%xmm0, %xmm6
kusano 2b45e8
	mulss	%xmm0, %xmm7
kusano 2b45e8
	mulss	%xmm0, %xmm8
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm2, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm3, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm4, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm5, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm6, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm7, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm8, (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L151
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L152:
kusano 2b45e8
	testq	$7, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	je	.L153
kusano 2b45e8
kusano 2b45e8
	movss	 (X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	 (X), %xmm2
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	 (X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	 (X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	mulss	%xmm0, %xmm1
kusano 2b45e8
	mulss	%xmm0, %xmm2
kusano 2b45e8
	mulss	%xmm0, %xmm3
kusano 2b45e8
	mulss	%xmm0, %xmm4
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm2,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm3,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm4,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L153:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L154
kusano 2b45e8
kusano 2b45e8
	movss	 (X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movss	 (X), %xmm2
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	mulss	%xmm0, %xmm1
kusano 2b45e8
	mulss	%xmm0, %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movss	%xmm2,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L154:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movss	 (X), %xmm1
kusano 2b45e8
	mulss	%xmm0, %xmm1
kusano 2b45e8
	movss	%xmm1,  (X)
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L999:
kusano 2b45e8
	xorq	%rax, %rax
kusano 2b45e8
kusano 2b45e8
	RESTOREREGISTERS
kusano 2b45e8
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE