Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/kernel/x86/zgemv_t_sse.S

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 * 2)
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_R		16 + STACKSIZE(%esp)
kusano 2b45e8
#define ALPHA_I		20 + STACKSIZE(%esp)
kusano 2b45e8
#define A		24 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_LDA	28 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_X		32 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_INCX	36 + STACKSIZE(%esp)
kusano 2b45e8
#define Y		40 + STACKSIZE(%esp)
kusano 2b45e8
#define STACK_INCY	44 + STACKSIZE(%esp)
kusano 2b45e8
#define BUFFER		48 + 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
#undef SUBPS
kusano 2b45e8
kusano 2b45e8
#ifndef CONJ
kusano 2b45e8
#define SUBPS	   addps
kusano 2b45e8
#else
kusano 2b45e8
#define SUBPS	   subps
kusano 2b45e8
#endif
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
	sall	$ZBASE_SHIFT, INCX
kusano 2b45e8
	sall	$ZBASE_SHIFT, LDA
kusano 2b45e8
	sall	$ZBASE_SHIFT, INCY
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	$2, I
kusano 2b45e8
	jle	.L05
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L02:
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movhps	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movhps	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movhps	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0,  0 * SIZE(Y1)
kusano 2b45e8
	movaps	%xmm1,  4 * SIZE(Y1)
kusano 2b45e8
	movaps	%xmm2,  8 * SIZE(Y1)
kusano 2b45e8
	movaps	%xmm3, 12 * SIZE(Y1)
kusano 2b45e8
kusano 2b45e8
	addl	$16 * 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	$3, I
kusano 2b45e8
	jle	.L10
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L06:
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0, (Y1)
kusano 2b45e8
	addl	$2 * 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
	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
	addl	LDA, 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	$3,  I
kusano 2b45e8
	jle	.L15
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	.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
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm4,  %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm4, %xmm5
kusano 2b45e8
	shufps	$0xb1, %xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm2,  %xmm4
kusano 2b45e8
	addps	%xmm4,  %xmm0
kusano 2b45e8
	mulps	%xmm2,  %xmm5
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	SUBPS	%xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm6,  %xmm7
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm6, %xmm7
kusano 2b45e8
	shufps	$0xb1, %xmm7, %xmm7
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm3,  %xmm6
kusano 2b45e8
	addps	%xmm6,  %xmm0
kusano 2b45e8
	mulps	%xmm3,  %xmm7
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	SUBPS	%xmm7,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	-24 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-22 * SIZE(A1), %xmm4
kusano 2b45e8
	movsd	-20 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-18 * SIZE(A1), %xmm6
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm4,  %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm4, %xmm5
kusano 2b45e8
	shufps	$0xb1, %xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm2,  %xmm4
kusano 2b45e8
	addps	%xmm4,  %xmm0
kusano 2b45e8
	mulps	%xmm2,  %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm2
kusano 2b45e8
	SUBPS	%xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm6,  %xmm7
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm6, %xmm7
kusano 2b45e8
	shufps	$0xb1, %xmm7, %xmm7
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm3,  %xmm6
kusano 2b45e8
	addps	%xmm6,  %xmm0
kusano 2b45e8
	mulps	%xmm3,  %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm3
kusano 2b45e8
	SUBPS	%xmm7,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	-16 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-14 * SIZE(A1), %xmm4
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	.L12
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L13:
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm4,  %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm4, %xmm5
kusano 2b45e8
	shufps	$0xb1, %xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm2,  %xmm4
kusano 2b45e8
	addps	%xmm4,  %xmm0
kusano 2b45e8
	mulps	%xmm2,  %xmm5
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	SUBPS	%xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm6,  %xmm7
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm6, %xmm7
kusano 2b45e8
	shufps	$0xb1, %xmm7, %xmm7
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm3,  %xmm6
kusano 2b45e8
	addps	%xmm6,  %xmm0
kusano 2b45e8
	mulps	%xmm3,  %xmm7
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	SUBPS	%xmm7,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	-24 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-22 * SIZE(A1), %xmm4
kusano 2b45e8
	movsd	-20 * SIZE(A1), %xmm6
kusano 2b45e8
	movhps	-18 * SIZE(A1), %xmm6
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm4,  %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm4, %xmm5
kusano 2b45e8
	shufps	$0xb1, %xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm2,  %xmm4
kusano 2b45e8
	addps	%xmm4,  %xmm0
kusano 2b45e8
	mulps	%xmm2,  %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm2
kusano 2b45e8
	SUBPS	%xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm6,  %xmm7
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm6, %xmm7
kusano 2b45e8
	shufps	$0xb1, %xmm7, %xmm7
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm3,  %xmm6
kusano 2b45e8
	addps	%xmm6,  %xmm0
kusano 2b45e8
	mulps	%xmm3,  %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm3
kusano 2b45e8
	SUBPS	%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	$4, M
kusano 2b45e8
	jle	.L17
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
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm4,  %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm4, %xmm5
kusano 2b45e8
	shufps	$0xb1, %xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm2,  %xmm4
kusano 2b45e8
	addps	%xmm4,  %xmm0
kusano 2b45e8
	mulps	%xmm2,  %xmm5
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	SUBPS	%xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm6,  %xmm7
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm6, %xmm7
kusano 2b45e8
	shufps	$0xb1, %xmm7, %xmm7
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm3,  %xmm6
kusano 2b45e8
	addps	%xmm6,  %xmm0
kusano 2b45e8
	mulps	%xmm3,  %xmm7
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	SUBPS	%xmm7,  %xmm1
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, A1
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L17:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	jle	.L18
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	movhps	-30 * SIZE(A1), %xmm4
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm4,  %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm4, %xmm5
kusano 2b45e8
	shufps	$0xb1, %xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm2,  %xmm4
kusano 2b45e8
	addps	%xmm4,  %xmm0
kusano 2b45e8
	mulps	%xmm2,  %xmm5
kusano 2b45e8
	SUBPS	%xmm5,  %xmm1
kusano 2b45e8
	movaps %xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, A1
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L18:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	jle	.L19
kusano 2b45e8
kusano 2b45e8
#ifdef movsd
kusano 2b45e8
	xorps	%xmm4, %xmm4
kusano 2b45e8
#endif
kusano 2b45e8
	movsd	-32 * SIZE(A1), %xmm4
kusano 2b45e8
	shufps	$0x44, %xmm2, %xmm2
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm4,  %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm4, %xmm5
kusano 2b45e8
	shufps	$0xb1, %xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulps	%xmm2,  %xmm4
kusano 2b45e8
	addps	%xmm4,  %xmm0
kusano 2b45e8
	mulps	%xmm2,  %xmm5
kusano 2b45e8
	SUBPS	%xmm5,  %xmm1
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
	
kusano 2b45e8
.L19:
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pcmpeqb	%xmm5, %xmm5
kusano 2b45e8
	psllq	$63,   %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	subl	$8, %esp
kusano 2b45e8
	movl	$0x00000000,  0(%esp)
kusano 2b45e8
	movl	$0x80000000,  4(%esp)
kusano 2b45e8
	movlps	(%esp), %xmm5
kusano 2b45e8
	addl	$8, %esp
kusano 2b45e8
	movlhps	%xmm5, %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	
kusano 2b45e8
#if (!defined(CONJ) && !defined(XCONJ)) || (defined(CONJ) && defined(XCONJ))
kusano 2b45e8
	xorps	%xmm5, %xmm0
kusano 2b45e8
#else
kusano 2b45e8
	xorps	%xmm5, %xmm1
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	haddps	%xmm1, %xmm0
kusano 2b45e8
	haddps	%xmm0, %xmm0
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	unpcklps %xmm1, %xmm0
kusano 2b45e8
	unpckhps %xmm1, %xmm2
kusano 2b45e8
kusano 2b45e8
	addps	%xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	movhlps	%xmm0, %xmm1
kusano 2b45e8
kusano 2b45e8
	addps	%xmm1, %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE2
kusano 2b45e8
	pshufd	$0xb1, %xmm0,  %xmm1
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm0, %xmm1
kusano 2b45e8
	shufps	$0xb1, %xmm1, %xmm1
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movsd	ALPHA_R, %xmm7
kusano 2b45e8
	movlhps	 %xmm7, %xmm7
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm7, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm1
kusano 2b45e8
kusano 2b45e8
	xorps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	haddps	%xmm1, %xmm0
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	shufps	$0x88, %xmm1, %xmm0
kusano 2b45e8
	shufps	$0xdd, %xmm1, %xmm2
kusano 2b45e8
	
kusano 2b45e8
	addps	%xmm2, %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(Y1), %xmm4
kusano 2b45e8
kusano 2b45e8
	shufps	$0xd8, %xmm0, %xmm0
kusano 2b45e8
	addps	%xmm4, %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  0 * SIZE(Y1)
kusano 2b45e8
	addl	INCY, Y1
kusano 2b45e8
kusano 2b45e8
	decl	J
kusano 2b45e8
	jg	.L11
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