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
#define STACK	16
kusano 2b45e8
#define ARGS     0
kusano 2b45e8
kusano 2b45e8
#define STACK_M	 	 4 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_ALPHA_R	16 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_ALPHA_I	24 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_X		32 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_INCX	36 + STACK + ARGS(%esp)
kusano 2b45e8
kusano 2b45e8
#define M	%ebx
kusano 2b45e8
#define X	%ecx
kusano 2b45e8
#define INCX	%edx
kusano 2b45e8
#define I	%esi
kusano 2b45e8
#define XX	%edi
kusano 2b45e8
#define FLAG	%ebp
kusano 2b45e8
kusano 2b45e8
#include "l1param.h"
kusano 2b45e8
kusano 2b45e8
#if defined(NEHALEM) || defined(PENRYN) || defined(DUNNINGTON)
kusano 2b45e8
#define  USE_PSHUFD
kusano 2b45e8
#else
kusano 2b45e8
#define USE_PSHUFD_HALF
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
#define xmm8	xmm0
kusano 2b45e8
#define xmm9	xmm1
kusano 2b45e8
#define xmm10	xmm2
kusano 2b45e8
#define xmm11	xmm3
kusano 2b45e8
#define xmm12	xmm4
kusano 2b45e8
#define xmm13	xmm5
kusano 2b45e8
#define xmm14	xmm6
kusano 2b45e8
#define xmm15	xmm7
kusano 2b45e8
kusano 2b45e8
	
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
	pushl	%edi
kusano 2b45e8
	pushl	%esi
kusano 2b45e8
	pushl	%ebx
kusano 2b45e8
	pushl	%ebp
kusano 2b45e8
kusano 2b45e8
	movl	STACK_M,     M
kusano 2b45e8
	movl	STACK_X,     X
kusano 2b45e8
	movl	STACK_INCX,  INCX
kusano 2b45e8
kusano 2b45e8
	movsd	STACK_ALPHA_R, %xmm0
kusano 2b45e8
	movsd	STACK_ALPHA_I, %xmm1
kusano 2b45e8
kusano 2b45e8
	sall	$ZBASE_SHIFT, INCX
kusano 2b45e8
	xor	FLAG, FLAG
kusano 2b45e8
kusano 2b45e8
	testl	M, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	
kusano 2b45e8
	xorps	%xmm7, %xmm7
kusano 2b45e8
	comisd	%xmm0, %xmm7
kusano 2b45e8
	jne	.L100
kusano 2b45e8
kusano 2b45e8
	comisd	%xmm1, %xmm7
kusano 2b45e8
	jne	.L100
kusano 2b45e8
kusano 2b45e8
/* Alpha == ZERO */
kusano 2b45e8
	cmpl	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L20
kusano 2b45e8
kusano 2b45e8
/* INCX == 1 */
kusano 2b45e8
	testl	$SIZE, X
kusano 2b45e8
	je	.L05
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	$SIZE, X
kusano 2b45e8
	movl	$1, FLAG
kusano 2b45e8
	decl	M
kusano 2b45e8
	jle	.L19
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
.L05:
kusano 2b45e8
kusano 2b45e8
	movl	M,  I	# rcx = n
kusano 2b45e8
	sarl	$3, 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	%xmm7,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  2 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  4 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  6 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm7,  8 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7, 10 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7, 12 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7, 14 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L13
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm7,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  2 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  4 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  6 * SIZE(X)
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L13:
kusano 2b45e8
	testl  $2, M
kusano 2b45e8
	je    .L14
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm7,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  2 * SIZE(X)
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L14:
kusano 2b45e8
	testl  $1, M
kusano 2b45e8
	je    .L19
kusano 2b45e8
	movaps	%xmm7,  0 * SIZE(X)
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L19:
kusano 2b45e8
	testl  $1, FLAG
kusano 2b45e8
	je    .L999
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* incx != 1 */
kusano 2b45e8
.L20:
kusano 2b45e8
	testl	$SIZE, X
kusano 2b45e8
	jne	.L30
kusano 2b45e8
kusano 2b45e8
/* Aligned Mode */
kusano 2b45e8
	movl	M,  I		# rcx = n
kusano 2b45e8
	sarl	$2, I
kusano 2b45e8
	jle	.L22
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L21:	
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm7, (X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	%xmm7, (X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	%xmm7, (X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	%xmm7, (X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L21
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L22:
kusano 2b45e8
	testl	$3, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L23
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm7, (X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	%xmm7, (X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L23:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm7, (X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
/* Unaligned Mode */
kusano 2b45e8
.L30:
kusano 2b45e8
	movl	M,  I		# rcx = n
kusano 2b45e8
	sarl	$2, I
kusano 2b45e8
	jle	.L32
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L31:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	movlps	%xmm7, 1 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	movlps	%xmm7, 1 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	movlps	%xmm7, 1 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	movlps	%xmm7, 1 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L31
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L32:
kusano 2b45e8
	testl	$3, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L33
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	movlps	%xmm7, 1 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	movlps	%xmm7, 1 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L33:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	movlps	%xmm7, 1 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* Alpha != ZERO */
kusano 2b45e8
.L100:
kusano 2b45e8
	testl	$SIZE, X
kusano 2b45e8
	jne	.L200
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	movddup	%xmm0, %xmm6
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0x44, %xmm0, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
	
kusano 2b45e8
	xorps	%xmm7, %xmm7
kusano 2b45e8
	subsd	%xmm1, %xmm7
kusano 2b45e8
	movlhps	%xmm1, %xmm7	
kusano 2b45e8
kusano 2b45e8
	cmpl	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L120
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$3, I
kusano 2b45e8
	jle	.L115
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	decl	  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
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	 -15 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -16 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	 -13 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -14 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	 -11 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -12 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -12 * SIZE(X)
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -9 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -10 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -10 * SIZE(X)
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -7 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -8 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movaps	%xmm0,   -8 * SIZE(X)
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -5 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -6 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movaps	%xmm1,   -6 * SIZE(X)
kusano 2b45e8
	movaps	  2 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -3 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -4 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movaps	%xmm2,   -4 * SIZE(X)
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -1 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -2 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movaps	%xmm3,   -2 * SIZE(X)
kusano 2b45e8
	movaps	  6 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L111
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L112:
kusano 2b45e8
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	 -15 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -16 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	 -13 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -14 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	 -11 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -12 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -12 * SIZE(X)
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -9 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -10 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -10 * SIZE(X)
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -7 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -8 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movaps	%xmm0,   -8 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -5 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -6 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movaps	%xmm1,   -6 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
#if defined(USE_PSHUFD) || defined(USE_PSHUFD_HALF)
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -3 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -4 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movaps	%xmm2,   -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
#ifdef USE_PSHUFD
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	movsd	  -1 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  -2 * SIZE(X), %xmm5
kusano 2b45e8
#endif
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movaps	%xmm3,   -2 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L115:
kusano 2b45e8
	testl	$7, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L116
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  -12 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  -10 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L116:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L117
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L117:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L120:
kusano 2b45e8
	movl	X, XX
kusano 2b45e8
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$3, I
kusano 2b45e8
	jle	.L125
kusano 2b45e8
kusano 2b45e8
	movaps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	decl	  I
kusano 2b45e8
	jle	  .L122
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L121:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L121
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L122:
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movaps	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L125:
kusano 2b45e8
	testl	$7, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L126
kusano 2b45e8
kusano 2b45e8
	movaps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	movaps	(X), %xmm2
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	(X), %xmm3
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L126:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L127
kusano 2b45e8
kusano 2b45e8
	movaps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movaps	(X), %xmm1
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L127:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movaps	(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0,  (XX)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L200:
kusano 2b45e8
	cmpl	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L220
kusano 2b45e8
kusano 2b45e8
#if defined(ALIGNED_ACCESS) && !defined(NEHALEM)
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	movddup	%xmm0, %xmm6
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0x44, %xmm0, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
	pxor	%xmm7,  %xmm7
kusano 2b45e8
	subsd	%xmm1,  %xmm7
kusano 2b45e8
	movlhps	%xmm1,  %xmm7	
kusano 2b45e8
	shufpd	$1, %xmm7, %xmm7
kusano 2b45e8
kusano 2b45e8
	movhps	0 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	1 * SIZE(X), %xmm1
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	unpckhpd %xmm0, %xmm0
kusano 2b45e8
	mulsd	%xmm6, %xmm0
kusano 2b45e8
	movaps	%xmm1, %xmm5
kusano 2b45e8
	mulsd	%xmm7, %xmm5
kusano 2b45e8
	subsd	%xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0, -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	decl	M
kusano 2b45e8
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$3, I
kusano 2b45e8
	jle	.L205
kusano 2b45e8
kusano 2b45e8
	movaps	-13 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-11 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	decl	  I
kusano 2b45e8
	jle	  .L202
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L201:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm0
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm0
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
	movaps	 -9 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm1
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm1
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
	movaps	 -7 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm0, %xmm2
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm2
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  -11 * SIZE(X)
kusano 2b45e8
	movaps	 -5 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm3
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm3
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,   -9 * SIZE(X)
kusano 2b45e8
	movaps	 -3 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm0
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm0
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,   -7 * SIZE(X)
kusano 2b45e8
	movaps	 -1 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm1
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm1
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,   -5 * SIZE(X)
kusano 2b45e8
	movaps	  1 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm0, %xmm2
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm2
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,   -3 * SIZE(X)
kusano 2b45e8
	movaps	  3 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm3
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm3
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,   -1 * SIZE(X)
kusano 2b45e8
	movaps	  5 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L201
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L202:
kusano 2b45e8
	movaps	%xmm1, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm0
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm0
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
	movaps	 -9 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm1
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm1
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
	movaps	 -7 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm0, %xmm2
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm2
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  -11 * SIZE(X)
kusano 2b45e8
	movaps	 -5 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm3
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm3
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,   -9 * SIZE(X)
kusano 2b45e8
	movaps	 -3 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm0
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm0
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,   -7 * SIZE(X)
kusano 2b45e8
	movaps	 -1 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm1
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm1
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,   -5 * SIZE(X)
kusano 2b45e8
	movaps	  1 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm0, %xmm2
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm2
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,   -3 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm3
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm3
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,   -1 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L205:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L206
kusano 2b45e8
kusano 2b45e8
	movaps	-13 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm0
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm0
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-11 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm1
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm1
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 -9 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm0, %xmm2
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm2
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  -11 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 -7 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm3
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm3
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,   -9 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L206:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L207
kusano 2b45e8
kusano 2b45e8
	movaps	-13 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm0
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-11 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm1
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm0
kusano 2b45e8
	movaps	%xmm3, %xmm1
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L207:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L208
kusano 2b45e8
kusano 2b45e8
	movaps	-13 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1,  %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	mulpd	%xmm6, %xmm5
kusano 2b45e8
	mulpd	%xmm7, %xmm0
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
	movaps	%xmm2, %xmm1
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L208:
kusano 2b45e8
	unpckhpd %xmm0, %xmm0
kusano 2b45e8
	mulsd	%xmm6, %xmm1
kusano 2b45e8
	mulsd	%xmm7, %xmm0
kusano 2b45e8
	addsd	%xmm1, %xmm0
kusano 2b45e8
	movlps	%xmm0, -15 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
#else
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	movddup	%xmm0, %xmm6
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0x44, %xmm0, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
	pxor	%xmm7, %xmm7
kusano 2b45e8
	subsd	%xmm1,  %xmm7
kusano 2b45e8
	movlhps	%xmm1,  %xmm7	
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$3, I
kusano 2b45e8
	jle	.L205
kusano 2b45e8
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm0
kusano 2b45e8
	movsd	-14 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-13 * SIZE(X), %xmm1
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	-11 * SIZE(X), %xmm2
kusano 2b45e8
	movsd	-10 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 -9 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	decl	  I
kusano 2b45e8
	jle	  .L202
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L201:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 -7 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movlps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
	movsd	 -6 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 -5 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movlps	%xmm2,  -12 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -11 * SIZE(X)
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 -3 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movlps	%xmm3,  -10 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,   -9 * SIZE(X)
kusano 2b45e8
	movsd	 -2 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 -1 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movlps	%xmm0,   -8 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,   -7 * SIZE(X)
kusano 2b45e8
	movsd	  0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	  1 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movlps	%xmm1,   -6 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,   -5 * SIZE(X)
kusano 2b45e8
	movsd	  2 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	  3 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movlps	%xmm2,   -4 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,   -3 * SIZE(X)
kusano 2b45e8
	movsd	  4 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	  5 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movlps	%xmm3,   -2 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,   -1 * SIZE(X)
kusano 2b45e8
	movsd	  6 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	  7 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L201
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L202:
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 -7 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movlps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
	movsd	 -6 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 -5 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movlps	%xmm2,  -12 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -11 * SIZE(X)
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 -3 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movlps	%xmm3,  -10 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,   -9 * SIZE(X)
kusano 2b45e8
	movsd	 -2 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 -1 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movlps	%xmm0,   -8 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,   -7 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movlps	%xmm1,   -6 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,   -5 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movlps	%xmm2,   -4 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,   -3 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movlps	%xmm3,   -2 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,   -1 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subl	$-16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L205:
kusano 2b45e8
	testl	$7, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L206
kusano 2b45e8
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm0
kusano 2b45e8
	movsd	-14 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-13 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movlps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	-11 * SIZE(X), %xmm2
kusano 2b45e8
	movsd	-10 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 -9 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm2
kusano 2b45e8
	movlps	%xmm2,  -12 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -11 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm3
kusano 2b45e8
	movlps	%xmm3,  -10 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,   -9 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L206:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L207
kusano 2b45e8
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	-14 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-13 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5,  %xmm1
kusano 2b45e8
	movlps	%xmm1,  -14 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -13 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L207:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -15 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
.L220:
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	movddup	%xmm0, %xmm6
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0x44, %xmm0, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
	pxor	%xmm7, %xmm7
kusano 2b45e8
	subsd	%xmm1, %xmm7
kusano 2b45e8
	movlhps	%xmm1, %xmm7	
kusano 2b45e8
kusano 2b45e8
	movl	X, XX
kusano 2b45e8
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$3, I
kusano 2b45e8
	jle	.L225
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm0
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm1
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm2
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm3
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	decl	  I
kusano 2b45e8
	jle	  .L222
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L221:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm0,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm0
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm1,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm1
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm2,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm2
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm3,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm3
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm0,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm0
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm1,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm1
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm2,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm2
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm3,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm3
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L221
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L222:
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm0,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm0
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm1,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm1
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm2,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm2
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm3,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm3
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm0,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm1,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm2,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm3,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L225:
kusano 2b45e8
	testl	$7, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L226
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm0
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm0,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm1
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm1,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm2
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm2, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm2
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm2,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm3
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm3
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm3,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L226:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L227
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm0
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm0,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm1
kusano 2b45e8
	addl	 INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm1
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,   0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm1,   1 * SIZE(XX)
kusano 2b45e8
	addl	 INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L227:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 1 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm5
kusano 2b45e8
	mulpd	%xmm6, %xmm0
kusano 2b45e8
	mulpd	%xmm7, %xmm5
kusano 2b45e8
	addpd	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  0 * SIZE(XX)
kusano 2b45e8
	movhps	%xmm0,  1 * SIZE(XX)
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L999:
kusano 2b45e8
	xorl	%eax, %eax
kusano 2b45e8
kusano 2b45e8
	popl	%ebp
kusano 2b45e8
	popl	%ebx
kusano 2b45e8
	popl	%esi
kusano 2b45e8
	popl	%edi
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE
kusano 2b45e8