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
#ifdef movsd
kusano 2b45e8
#undef movsd
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef PENTIUM3
kusano 2b45e8
#ifdef HAVE_SSE
kusano 2b45e8
#define PREFETCH	prefetcht0
kusano 2b45e8
#define PREFETCHW	prefetcht0
kusano 2b45e8
#define PREFETCHSIZE	(16 * 2)
kusano 2b45e8
#endif
kusano 2b45e8
#define movsd		movlps
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef PENTIUM4
kusano 2b45e8
#define PREFETCH	prefetcht0
kusano 2b45e8
#define PREFETCHW	prefetcht0
kusano 2b45e8
#define PREFETCHSIZE	(16 * 4)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#if defined(CORE2) || defined(PENRYN) || defined(DUNNINGTON) || defined(NEHALEM)
kusano 2b45e8
#define PREFETCH	prefetcht0
kusano 2b45e8
#define PREFETCHW	prefetcht0
kusano 2b45e8
#define PREFETCHSIZE	(16 * 7)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef OPTERON
kusano 2b45e8
#define PREFETCH	prefetchnta
kusano 2b45e8
#define PREFETCHW	prefetchw
kusano 2b45e8
#define PREFETCHSIZE	(16 * 3)
kusano 2b45e8
#define movsd		movlps
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef BARCELONA
kusano 2b45e8
#define PREFETCH	prefetchnta
kusano 2b45e8
#define PREFETCHW	prefetchw
kusano 2b45e8
#define PREFETCHSIZE	(16 * 5)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef ATOM
kusano 2b45e8
#define PREFETCH	prefetchnta
kusano 2b45e8
#define PREFETCHW	prefetcht0
kusano 2b45e8
#define PREFETCHSIZE	(16 * 6)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef NANO
kusano 2b45e8
#define PREFETCH	prefetcht0
kusano 2b45e8
#define PREFETCHSIZE	(16 * 4)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#define STACKSIZE	16
kusano 2b45e8
kusano 2b45e8
#define M		 4 + STACKSIZE(%esp)
kusano 2b45e8
#define N		 8 + STACKSIZE(%esp)
kusano 2b45e8
#define ALPHA		16 + STACKSIZE(%esp)
kusano 2b45e8
#define A		20 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_LDA	24 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_X		28 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_INCX	32 + STACKSIZE(%esp)
kusano 2b45e8
#define Y		36 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_INCY	40 + STACKSIZE(%esp)
kusano 2b45e8
#define BUFFER		44 + STACKSIZE(%esp)
kusano 2b45e8
	
kusano 2b45e8
#define I	%eax
kusano 2b45e8
#define J	%ebx
kusano 2b45e8
kusano 2b45e8
#define INCX	J
kusano 2b45e8
#define INCY	%ecx
kusano 2b45e8
kusano 2b45e8
#define A1	%esi
kusano 2b45e8
#define X	%edx
kusano 2b45e8
#define Y1	%edi
kusano 2b45e8
#define LDA	%ebp
kusano 2b45e8
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
kusano 2b45e8
	pushl	%ebp
kusano 2b45e8
	pushl	%edi
kusano 2b45e8
	pushl	%esi
kusano 2b45e8
	pushl	%ebx
kusano 2b45e8
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
	movl	STACK_LDA,  LDA
kusano 2b45e8
	movl	STACK_X,    X
kusano 2b45e8
	movl	STACK_INCX, INCX
kusano 2b45e8
	movl	STACK_INCY, INCY
kusano 2b45e8
kusano 2b45e8
	leal	(,INCX, SIZE), INCX
kusano 2b45e8
	leal	(,INCY, SIZE), INCY
kusano 2b45e8
	leal	(,LDA,  SIZE), LDA
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, A
kusano 2b45e8
kusano 2b45e8
	cmpl	$0, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	cmpl	$0, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	movl	BUFFER, Y1
kusano 2b45e8
	
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$3, I
kusano 2b45e8
	jle	.L05
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L02:
kusano 2b45e8
	movss	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movss	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	unpcklps %xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movss	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	unpcklps %xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	(X), %xmm4
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movss	(X), %xmm5
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	unpcklps %xmm5, %xmm4
kusano 2b45e8
kusano 2b45e8
	movss	(X), %xmm6
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movss	(X), %xmm7
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	unpcklps %xmm7, %xmm6
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0, 0 * SIZE(Y1)
kusano 2b45e8
	movlps	%xmm2, 2 * SIZE(Y1)
kusano 2b45e8
	movlps	%xmm4, 4 * SIZE(Y1)
kusano 2b45e8
	movlps	%xmm6, 6 * SIZE(Y1)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, Y1
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L02
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L05:
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	andl	$7, I
kusano 2b45e8
	jle	.L10
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L06:
kusano 2b45e8
	movss	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movss	%xmm0, 0 * SIZE(Y1)
kusano 2b45e8
	addl	$SIZE, Y1
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L06
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L10:
kusano 2b45e8
	movl	Y, Y1
kusano 2b45e8
kusano 2b45e8
	movl	N,  J
kusano 2b45e8
	sarl	$1, J
kusano 2b45e8
	jle	.L20
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L11:
kusano 2b45e8
	movl	BUFFER, X
kusano 2b45e8
	addl	$32 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movl	A, A1
kusano 2b45e8
	leal	(A1, LDA, 2), %eax
kusano 2b45e8
	movl	%eax, A
kusano 2b45e8
kusano 2b45e8
	xorps	%xmm0, %xmm0
kusano 2b45e8
	xorps	%xmm1, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movl	M,   I
kusano 2b45e8
	sarl	$4,  I
kusano 2b45e8
	jle	.L15
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-30 * SIZE(A1), %xmm4
kusano 2b45e8
	movsd	-32 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
	movhps	-30 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
kusano 2b45e8
	movsd	-28 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-26 * SIZE(A1), %xmm6
kusano 2b45e8
	movsd	-28 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
	movhps	-26 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jle	.L13
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH PREFETCHSIZE * SIZE(A1)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movsd	-24 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-22 * SIZE(A1), %xmm4
kusano 2b45e8
	mulps	%xmm2, %xmm5
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
	movsd	-24 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
	movhps	-22 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	movsd	-20 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-18 * SIZE(A1), %xmm6
kusano 2b45e8
	mulps	%xmm3, %xmm7
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm7, %xmm1
kusano 2b45e8
	movsd	-20 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
	movhps	-18 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH PREFETCHSIZE * SIZE(A1, LDA)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movsd	-16 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-14 * SIZE(A1), %xmm4
kusano 2b45e8
	mulps	%xmm2, %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
	movsd	-16 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
	movhps	-14 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	movsd	-12 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-10 * SIZE(A1), %xmm6
kusano 2b45e8
	mulps	%xmm3, %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm7, %xmm1
kusano 2b45e8
	movsd	-12 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
	movhps	-10 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, A1
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L12
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L13:
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movsd	-24 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-22 * SIZE(A1), %xmm4
kusano 2b45e8
	mulps	%xmm2, %xmm5
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
	movsd	-24 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
	movhps	-22 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	movsd	-20 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-18 * SIZE(A1), %xmm6
kusano 2b45e8
	mulps	%xmm3, %xmm7
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm7, %xmm1
kusano 2b45e8
	movsd	-20 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
	movhps	-18 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	mulps	%xmm2, %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm3, %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm7, %xmm1
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, A1
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L15:
kusano 2b45e8
	testl	$8, M
kusano 2b45e8
	jle	.L16
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-30 * SIZE(A1), %xmm4
kusano 2b45e8
	movsd	-32 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
	movhps	-30 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
kusano 2b45e8
	movsd	-28 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-26 * SIZE(A1), %xmm6
kusano 2b45e8
	movsd	-28 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
	movhps	-26 * SIZE(A1, LDA), %xmm7
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	mulps	%xmm2, %xmm5
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm3, %xmm7
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm7, %xmm1
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, A1
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L16:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	jle	.L17
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-30 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
	movhps	-30 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	mulps	%xmm2, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm3, %xmm2
kusano 2b45e8
	
kusano 2b45e8
	addl	$4 * SIZE, A1
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L17:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	jle	.L18
kusano 2b45e8
kusano 2b45e8
#ifdef movsd
kusano 2b45e8
	xorps	%xmm4, %xmm4
kusano 2b45e8
#endif
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
#ifdef movsd
kusano 2b45e8
	xorps	%xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	movsd	-32 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	mulps	%xmm2, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
	movhlps	%xmm2, %xmm2
kusano 2b45e8
	
kusano 2b45e8
	addl	$2 * SIZE, A1
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L18:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	jle	.L19
kusano 2b45e8
kusano 2b45e8
	movss	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	mulss	%xmm2, %xmm4
kusano 2b45e8
	addss	%xmm4, %xmm0
kusano 2b45e8
	movss	-32 * SIZE(A1, LDA), %xmm5
kusano 2b45e8
	mulss	%xmm2, %xmm5
kusano 2b45e8
	addss	%xmm5, %xmm1
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L19:
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	haddps	%xmm0, %xmm0
kusano 2b45e8
	haddps	%xmm1, %xmm1
kusano 2b45e8
kusano 2b45e8
	haddps	%xmm0, %xmm0
kusano 2b45e8
	haddps	%xmm1, %xmm1
kusano 2b45e8
#else
kusano 2b45e8
	movhlps	%xmm0, %xmm2
kusano 2b45e8
	movhlps	%xmm1, %xmm3
kusano 2b45e8
kusano 2b45e8
	addps	%xmm2, %xmm0
kusano 2b45e8
	addps	%xmm3, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	shufps	$1, %xmm0, %xmm0
kusano 2b45e8
	movaps	%xmm1, %xmm3
kusano 2b45e8
	shufps	$1, %xmm1, %xmm1
kusano 2b45e8
kusano 2b45e8
	addss	%xmm2, %xmm0
kusano 2b45e8
	addss	%xmm3, %xmm1
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	ALPHA, %xmm7
kusano 2b45e8
kusano 2b45e8
	mulss	%xmm7, %xmm0
kusano 2b45e8
	mulss	%xmm7, %xmm1
kusano 2b45e8
kusano 2b45e8
	addss	(Y1), %xmm0
kusano 2b45e8
	addss	(Y1, INCY), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, (Y1)
kusano 2b45e8
	movss	%xmm1, (Y1, INCY)
kusano 2b45e8
	leal	(Y1, INCY, 2), Y1
kusano 2b45e8
kusano 2b45e8
	decl	J
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L20:
kusano 2b45e8
	testl	$1, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	movl	BUFFER, X
kusano 2b45e8
	addl	$32 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movl	A, A1
kusano 2b45e8
kusano 2b45e8
	xorps	%xmm0, %xmm0
kusano 2b45e8
	xorps	%xmm1, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movl	M,   I
kusano 2b45e8
	sarl	$4,  I
kusano 2b45e8
	jle	.L25
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-30 * SIZE(A1), %xmm4
kusano 2b45e8
	movsd	-28 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-26 * SIZE(A1), %xmm6
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jle	.L23
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L22:
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH PREFETCHSIZE * SIZE(A1)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movsd	-24 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-22 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	movsd	-20 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-18 * SIZE(A1), %xmm6
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movsd	-16 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-14 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	movsd	-12 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-10 * SIZE(A1), %xmm6
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, A1
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L22
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L23:
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movsd	-24 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-22 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
	movsd	-20 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-18 * SIZE(A1), %xmm6
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, A1
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L25:
kusano 2b45e8
	testl	$8, M
kusano 2b45e8
	jle	.L26
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-30 * SIZE(A1), %xmm4
kusano 2b45e8
	movsd	-28 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-26 * SIZE(A1), %xmm6
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm3, %xmm6
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	addps	%xmm6, %xmm0
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, A1
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L26:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	jle	.L27
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-30 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm3, %xmm2
kusano 2b45e8
	
kusano 2b45e8
	addl	$4 * SIZE, A1
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L27:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	jle	.L28
kusano 2b45e8
kusano 2b45e8
#ifdef movsd
kusano 2b45e8
	xorps	%xmm4, %xmm4
kusano 2b45e8
#endif
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm2, %xmm4
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
	movhlps	%xmm2, %xmm2
kusano 2b45e8
	
kusano 2b45e8
	addl	$2 * SIZE, A1
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L28:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	jle	.L29
kusano 2b45e8
kusano 2b45e8
	movss	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	mulss	%xmm2, %xmm4
kusano 2b45e8
	addss	%xmm4, %xmm0
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L29:
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	haddps	%xmm0, %xmm0
kusano 2b45e8
	haddps	%xmm0, %xmm0
kusano 2b45e8
#else
kusano 2b45e8
	movhlps	%xmm0, %xmm2
kusano 2b45e8
kusano 2b45e8
	addps	%xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	shufps	$1, %xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	addss	%xmm2, %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	ALPHA, %xmm7
kusano 2b45e8
kusano 2b45e8
	mulss	%xmm7, %xmm0
kusano 2b45e8
kusano 2b45e8
	addss	(Y1), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, (Y1)
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
 	
kusano 2b45e8
.L999:
kusano 2b45e8
	popl	%ebx
kusano 2b45e8
	popl	%esi
kusano 2b45e8
	popl	%edi	
kusano 2b45e8
	popl	%ebp
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE