Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/kernel/x86/zscal_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
#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	20 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_X		24 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_INCX	28 + 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
#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
#include "l1param.h"
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
	movss	STACK_ALPHA_R, %xmm0
kusano 2b45e8
	movss	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
	comiss	%xmm0, %xmm7
kusano 2b45e8
	jne	.L100		# Alpha_r != ZERO
kusano 2b45e8
kusano 2b45e8
	comiss	%xmm1, %xmm7
kusano 2b45e8
	jne	.L100		# Alpha_i != ZERO
kusano 2b45e8
kusano 2b45e8
/* Alpha == ZERO */
kusano 2b45e8
	cmpl	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L50
kusano 2b45e8
kusano 2b45e8
/* INCX == 1 */
kusano 2b45e8
	cmpl	$3, M
kusano 2b45e8
	jle	.L13
kusano 2b45e8
kusano 2b45e8
	testl	$4, X
kusano 2b45e8
	je	.L05
kusano 2b45e8
	movss	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	$SIZE, X
kusano 2b45e8
	movl	$1, FLAG
kusano 2b45e8
	decl	M
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L05:
kusano 2b45e8
	testl	$8, X
kusano 2b45e8
	je	.L06
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	subl	$1, M
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
.L06:
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,  4 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  8 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7, 12 * SIZE(X)
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	$7, M
kusano 2b45e8
	je	.L19
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L13
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm7,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm7,  4 * 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
	movlps	%xmm7,  0 * SIZE(X)
kusano 2b45e8
	movhps	%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
kusano 2b45e8
	movlps	%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
	movss	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* incx != 1 */
kusano 2b45e8
.L50:
kusano 2b45e8
	movl	M,  I		# rcx = n
kusano 2b45e8
	sarl	$2, I
kusano 2b45e8
	jle	.L52
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L51:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L51
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L52:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L53
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movsd	%xmm7, 0 * SIZE(X)
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L53:
kusano 2b45e8
	testl	$1, M
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
/* Alpha != ZERO */
kusano 2b45e8
kusano 2b45e8
.L100:
kusano 2b45e8
	testl	$SIZE, X
kusano 2b45e8
	jne	.L130
kusano 2b45e8
kusano 2b45e8
	cmpl	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L120
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm6
kusano 2b45e8
	shufps	$0, %xmm6, %xmm6
kusano 2b45e8
	shufps	$0, %xmm1, %xmm1
kusano 2b45e8
	subps	  %xmm1,   %xmm7
kusano 2b45e8
	unpcklps  %xmm1,   %xmm7
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	testl	$2 * SIZE, X
kusano 2b45e8
	je	.L105
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	decl	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L105:
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$4, I
kusano 2b45e8
	jle	.L115
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-20 * 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
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -12 * SIZE(X)
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,   -8 * SIZE(X)
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,   -4 * SIZE(X)
kusano 2b45e8
	movaps	 12 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L111
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L112:
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -12 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,   -8 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,   -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L115:
kusano 2b45e8
	testl	$8, M
kusano 2b45e8
	je	.L116
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L116:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L117
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L117:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L118
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L118:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L120:
kusano 2b45e8
	PSHUFD2($0, %xmm0, %xmm6)
kusano 2b45e8
	PSHUFD2($0, %xmm1, %xmm1)
kusano 2b45e8
	subps	  %xmm1,   %xmm7
kusano 2b45e8
	unpcklps  %xmm1,   %xmm7
kusano 2b45e8
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
	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
	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
	PSHUFD2( $0xb1,  %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
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
	PSHUFD2( $0xb1,  %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm2
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
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
	PSHUFD2( $0xb1,  %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm3
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
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
	decl	I
kusano 2b45e8
	jg	.L121
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L122:
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm2
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm2,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm3
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm3,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L125:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L127
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
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
	PSHUFD2( $0xb1,  %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm1,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L127:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L128
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addl	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L128:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L130:
kusano 2b45e8
	cmpl	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L120
kusano 2b45e8
kusano 2b45e8
#if defined(ALIGNED_ACCESS) && !defined(NEHALEM)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2($0, %xmm0, %xmm6)
kusano 2b45e8
	PSHUFD2($0, %xmm1, %xmm1)
kusano 2b45e8
	subps	  %xmm1,   %xmm7
kusano 2b45e8
	unpcklps  %xmm1,   %xmm7
kusano 2b45e8
kusano 2b45e8
	subl	$-31 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	testl	$2 * SIZE, X
kusano 2b45e8
	je	.L130x
kusano 2b45e8
kusano 2b45e8
	movsd	-31 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -31 * SIZE(X)
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	decl	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L130x:
kusano 2b45e8
	shufps	$0xb1, %xmm7, %xmm7
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	%xmm0, %xmm4
kusano 2b45e8
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$4, I
kusano 2b45e8
	jle	.L135
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jle	.L132
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L131:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -12 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,   -8 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,   -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L131
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L132:
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -12 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,   -8 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,   -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L135:
kusano 2b45e8
	testl	$8, M
kusano 2b45e8
	je	.L136
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L136:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L137
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0, %xmm1
kusano 2b45e8
	PSHUFD2($0x1b, %xmm1, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm1
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm4
kusano 2b45e8
	movss	%xmm2, %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L137:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L138
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1, %xmm0
kusano 2b45e8
	PSHUFD2($0x1b, %xmm0, %xmm5)
kusano 2b45e8
	mulps	%xmm6, %xmm0
kusano 2b45e8
	mulps	%xmm7, %xmm5
kusano 2b45e8
	addps	%xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0, %xmm2
kusano 2b45e8
	movss	%xmm4, %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movaps	%xmm2, %xmm4
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L138:
kusano 2b45e8
	movss	%xmm4, -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0x1b,  %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD1( $0x39, %xmm0)
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -31 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
#else
kusano 2b45e8
	
kusano 2b45e8
	PSHUFD2($0, %xmm0, %xmm6)
kusano 2b45e8
	PSHUFD2($0, %xmm1, %xmm1)
kusano 2b45e8
	subps	  %xmm1,   %xmm7
kusano 2b45e8
	unpcklps  %xmm1,   %xmm7
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	testl	$2 * SIZE, X
kusano 2b45e8
	je	.L130x
kusano 2b45e8
kusano 2b45e8
#ifdef movsd
kusano 2b45e8
	xorps	%xmm0, %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1,  %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	decl	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L130x:
kusano 2b45e8
	movl	M,  I
kusano 2b45e8
	sarl	$4, I
kusano 2b45e8
	jle	.L135
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm0
kusano 2b45e8
	movsd	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-26 * SIZE(X), %xmm1
kusano 2b45e8
	movsd	-24 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	-22 * SIZE(X), %xmm2
kusano 2b45e8
	movsd	-20 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	-18 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jle	.L132
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L131:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-14 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -26 * SIZE(X)
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-10 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -22 * SIZE(X)
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 -6 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,  -18 * SIZE(X)
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 -2 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -14 * SIZE(X)
kusano 2b45e8
	movsd	  0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	  2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,  -12 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -10 * SIZE(X)
kusano 2b45e8
	movsd	  4 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	  6 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,   -8 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,   -6 * SIZE(X)
kusano 2b45e8
	movsd	  8 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 10 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,   -4 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,   -2 * SIZE(X)
kusano 2b45e8
	movsd	 12 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 14 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L131
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L132:
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-14 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -26 * SIZE(X)
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-10 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -22 * SIZE(X)
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 -6 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,  -18 * SIZE(X)
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 -2 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -14 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,  -12 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -10 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,   -8 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,   -6 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,   -4 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,   -2 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subl	$-32 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L135:
kusano 2b45e8
	testl	$8, M
kusano 2b45e8
	je	.L136
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-26 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -26 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	-24 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	-22 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm2, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm2
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm2
kusano 2b45e8
	movlps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -22 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	-20 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	-18 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm3, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm3
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm3
kusano 2b45e8
	movlps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,  -18 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L136:
kusano 2b45e8
	testl	$4, M
kusano 2b45e8
	je	.L137
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm0
kusano 2b45e8
	movsd	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-26 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm1, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm1
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm1
kusano 2b45e8
	movlps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -26 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L137:
kusano 2b45e8
	testl	$2, M
kusano 2b45e8
	je	.L138
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L138:
kusano 2b45e8
	testl	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	PSHUFD2( $0xb1, %xmm0, %xmm5)
kusano 2b45e8
	mulps	 %xmm6, %xmm0
kusano 2b45e8
	mulps	 %xmm7, %xmm5
kusano 2b45e8
	addps	 %xmm5, %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
.L999:
kusano 2b45e8
	xorl	%eax, %eax
kusano 2b45e8
	popl	%ebp
kusano 2b45e8
	popl	%ebx
kusano 2b45e8
	popl	%esi
kusano 2b45e8
	popl	%edi
kusano 2b45e8
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE