kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
/* Copyright 2009, 2010 The University of Texas at Austin.           */
kusano 2b45e8
/* All rights reserved.                                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* Redistribution and use in source and binary forms, with or        */
kusano 2b45e8
/* without modification, are permitted provided that the following   */
kusano 2b45e8
/* conditions are met:                                               */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   1. Redistributions of source code must retain the above         */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer.                                                  */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   2. Redistributions in binary form must reproduce the above      */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer in the documentation and/or other materials       */
kusano 2b45e8
/*      provided with the distribution.                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
kusano 2b45e8
/*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
kusano 2b45e8
/*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
kusano 2b45e8
/*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
kusano 2b45e8
/*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
kusano 2b45e8
/*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
kusano 2b45e8
/*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
kusano 2b45e8
/*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
kusano 2b45e8
/*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
kusano 2b45e8
/*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
kusano 2b45e8
/*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
kusano 2b45e8
/*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
kusano 2b45e8
/*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
kusano 2b45e8
/*    POSSIBILITY OF SUCH DAMAGE.                                    */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* The views and conclusions contained in the software and           */
kusano 2b45e8
/* documentation are those of the authors and should not be          */
kusano 2b45e8
/* interpreted as representing official policies, either expressed   */
kusano 2b45e8
/* or implied, of The University of Texas at Austin.                 */
kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
kusano 2b45e8
#define ASSEMBLER
kusano 2b45e8
#include "common.h"
kusano 2b45e8
kusano 2b45e8
#ifndef WINDOWS_ABI
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG4
kusano 2b45e8
#define INCX	ARG5
kusano 2b45e8
#else
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG2
kusano 2b45e8
#define INCX	ARG3
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#define XX	%r10
kusano 2b45e8
#define FLAG	%r11
kusano 2b45e8
#define I	%rax
kusano 2b45e8
kusano 2b45e8
#include "l1param.h"
kusano 2b45e8
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
#ifdef WINDOWS_ABI
kusano 2b45e8
	movaps	%xmm3, %xmm0
kusano 2b45e8
	movsd	40(%rsp), %xmm1
kusano 2b45e8
	movq	48(%rsp), X
kusano 2b45e8
	movq	56(%rsp), INCX
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	SAVEREGISTERS
kusano 2b45e8
	
kusano 2b45e8
	salq	$ZBASE_SHIFT, INCX
kusano 2b45e8
	xor	FLAG, FLAG
kusano 2b45e8
kusano 2b45e8
	testq	M, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	pxor	%xmm15, %xmm15
kusano 2b45e8
	comiss	%xmm0, %xmm15
kusano 2b45e8
	jne	.L100		# Alpha_r != ZERO
kusano 2b45e8
kusano 2b45e8
	comiss	%xmm1, %xmm15
kusano 2b45e8
	jne	.L100		# Alpha_i != ZERO
kusano 2b45e8
kusano 2b45e8
/* Alpha == ZERO */
kusano 2b45e8
	cmpq	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L50
kusano 2b45e8
kusano 2b45e8
/* INCX == 1 */
kusano 2b45e8
	cmpq	$3, M
kusano 2b45e8
	jle	.L13
kusano 2b45e8
kusano 2b45e8
	testq	$4, X
kusano 2b45e8
	je	.L05
kusano 2b45e8
	movss	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	$SIZE, X
kusano 2b45e8
	movq	$1, FLAG
kusano 2b45e8
	decq	M
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L05:
kusano 2b45e8
	testq	$8, X
kusano 2b45e8
	je	.L06
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	subq	$1, M
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
.L06:
kusano 2b45e8
kusano 2b45e8
	movq	M,  I	# rcx = n
kusano 2b45e8
	sarq	$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	%xmm15,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm15,  4 * SIZE(X)
kusano 2b45e8
	movaps	%xmm15,  8 * SIZE(X)
kusano 2b45e8
	movaps	%xmm15, 12 * SIZE(X)
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	testq	$7, M
kusano 2b45e8
	je	.L19
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	je	.L13
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm15,  0 * SIZE(X)
kusano 2b45e8
	movaps	%xmm15,  4 * SIZE(X)
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L13:
kusano 2b45e8
	testq  $2, M
kusano 2b45e8
	je    .L14
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm15,  0 * SIZE(X)
kusano 2b45e8
	movhps	%xmm15,  2 * SIZE(X)
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L14:
kusano 2b45e8
	testq  $1, M
kusano 2b45e8
	je    .L19
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm15,  0 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L19:
kusano 2b45e8
	testq  $1, FLAG
kusano 2b45e8
	je    .L999
kusano 2b45e8
kusano 2b45e8
	movss	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* incx != 1 */
kusano 2b45e8
.L50:
kusano 2b45e8
	movq	M,  I		# rcx = n
kusano 2b45e8
	sarq	$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	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L51
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L52:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L53
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L53:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm15, 0 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* Alpha != ZERO */
kusano 2b45e8
kusano 2b45e8
.L100:
kusano 2b45e8
	testq	$SIZE, X
kusano 2b45e8
	jne	.L130
kusano 2b45e8
kusano 2b45e8
	cmpq	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L120
kusano 2b45e8
kusano 2b45e8
	pshufd	$0, %xmm0, %xmm14
kusano 2b45e8
	pshufd	$0, %xmm1, %xmm1
kusano 2b45e8
	subps	  %xmm1,   %xmm15
kusano 2b45e8
	unpcklps  %xmm1,   %xmm15
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	testq	$2 * SIZE, X
kusano 2b45e8
	je	.L105
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	decq	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L105:
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$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
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	decq	I
kusano 2b45e8
	jle	.L112
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L111:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movaps	 12 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm4, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm4
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm4
kusano 2b45e8
	movaps	%xmm4,  -16 * SIZE(X)
kusano 2b45e8
	movaps	 16 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm5, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm5
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm5
kusano 2b45e8
	movaps	%xmm5,  -12 * SIZE(X)
kusano 2b45e8
	movaps	 20 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm6, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm6
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm6
kusano 2b45e8
	movaps	%xmm6,   -8 * SIZE(X)
kusano 2b45e8
	movaps	 24 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm7, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm7
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm7
kusano 2b45e8
	movaps	%xmm7,   -4 * SIZE(X)
kusano 2b45e8
	movaps	 28 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L111
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L112:
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm4, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm4
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm4
kusano 2b45e8
	movaps	%xmm4,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm5, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm5
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm5
kusano 2b45e8
	movaps	%xmm5,  -12 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm6, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm6
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm6
kusano 2b45e8
	movaps	%xmm6,   -8 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm7, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm7
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm7
kusano 2b45e8
	movaps	%xmm7,   -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L115:
kusano 2b45e8
	testq	$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
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %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
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L116:
kusano 2b45e8
	testq	$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
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L117:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L118
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L118:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %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
	pshufd	$0, %xmm0, %xmm14
kusano 2b45e8
	pshufd	$0, %xmm1, %xmm1
kusano 2b45e8
	subps	  %xmm1,   %xmm15
kusano 2b45e8
	unpcklps  %xmm1,   %xmm15
kusano 2b45e8
kusano 2b45e8
	movq	X, XX
kusano 2b45e8
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$3, I
kusano 2b45e8
	jle	.L125
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm2
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm2
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	decq	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	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm2
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm2,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm2,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm2
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm2
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm3,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm3,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L121
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L122:
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm2
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm2,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm2,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm3,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm3,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L125:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	je	.L127
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm1
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm1,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L127:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L128
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movhps	(X), %xmm0
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movhps	%xmm0,  (XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L128:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  (XX)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L130:
kusano 2b45e8
	cmpq	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L120
kusano 2b45e8
kusano 2b45e8
#if defined(ALIGNED_ACCESS) && !defined(NEHALEM)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0, %xmm0, %xmm14
kusano 2b45e8
	pshufd	$0, %xmm1, %xmm1
kusano 2b45e8
	subps	  %xmm1,   %xmm15
kusano 2b45e8
	unpcklps  %xmm1,   %xmm15
kusano 2b45e8
kusano 2b45e8
	subq	$-31 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	testq	$2 * SIZE, X
kusano 2b45e8
	je	.L130x
kusano 2b45e8
kusano 2b45e8
	movsd	-31 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -31 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	decq	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L130x:
kusano 2b45e8
	shufps	$0xb1, %xmm15, %xmm15
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	%xmm0, %xmm9
kusano 2b45e8
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$4, I
kusano 2b45e8
	jle	.L135
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	decq	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
	pshufd	$0x1b,  %xmm0, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm2,  %xmm1
kusano 2b45e8
	pshufd	$0x1b,  %xmm1, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm1
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm3,  %xmm2
kusano 2b45e8
	pshufd	$0x1b,  %xmm2, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm2
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	%xmm4,  %xmm3
kusano 2b45e8
	pshufd	$0x1b,  %xmm3, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm3
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 12 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	%xmm5,  %xmm4
kusano 2b45e8
	pshufd	$0x1b,  %xmm4, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm4
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm4
kusano 2b45e8
	movaps	%xmm4,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm4
kusano 2b45e8
	movaps	%xmm4,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 16 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
	movss	%xmm6,  %xmm5
kusano 2b45e8
	pshufd	$0x1b,  %xmm5, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm5
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm5
kusano 2b45e8
	movaps	%xmm5,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm5
kusano 2b45e8
	movaps	%xmm5,  -12 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 20 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	movss	%xmm7,  %xmm6
kusano 2b45e8
	pshufd	$0x1b,  %xmm6, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm6
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm6
kusano 2b45e8
	movaps	%xmm6,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm6
kusano 2b45e8
	movaps	%xmm6,   -8 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 24 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0,  %xmm7
kusano 2b45e8
	pshufd	$0x1b,  %xmm7, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm7
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm7
kusano 2b45e8
	movaps	%xmm7,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm7
kusano 2b45e8
	movaps	%xmm7,   -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	 28 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L131
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L132:
kusano 2b45e8
	movss	%xmm1,  %xmm0
kusano 2b45e8
	pshufd	$0x1b,  %xmm0, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	   0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm2,  %xmm1
kusano 2b45e8
	pshufd	$0x1b,  %xmm1, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm1
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movss	%xmm3,  %xmm2
kusano 2b45e8
	pshufd	$0x1b,  %xmm2, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm2
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movss	%xmm4,  %xmm3
kusano 2b45e8
	pshufd	$0x1b,  %xmm3, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm3
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movss	%xmm5,  %xmm4
kusano 2b45e8
	pshufd	$0x1b,  %xmm4, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm4
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm4
kusano 2b45e8
	movaps	%xmm4,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm4
kusano 2b45e8
	movaps	%xmm4,  -16 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movss	%xmm6,  %xmm5
kusano 2b45e8
	pshufd	$0x1b,  %xmm5, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm5
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm5
kusano 2b45e8
	movaps	%xmm5,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm5
kusano 2b45e8
	movaps	%xmm5,  -12 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movss	%xmm7,  %xmm6
kusano 2b45e8
	pshufd	$0x1b,  %xmm6, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm6
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm6
kusano 2b45e8
	movaps	%xmm6,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm6
kusano 2b45e8
	movaps	%xmm6,   -8 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0,  %xmm7
kusano 2b45e8
	pshufd	$0x1b,  %xmm7, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm7
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm7
kusano 2b45e8
	movaps	%xmm7,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm7
kusano 2b45e8
	movaps	%xmm7,   -4 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L135:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	je	.L136
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1,  %xmm0
kusano 2b45e8
	pshufd	$0x1b,  %xmm0, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	%xmm2,  %xmm1
kusano 2b45e8
	pshufd	$0x1b,  %xmm1, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm1
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movss	%xmm3,  %xmm2
kusano 2b45e8
	pshufd	$0x1b,  %xmm2, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm2
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm2
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm2
kusano 2b45e8
	movaps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	%xmm0,  %xmm3
kusano 2b45e8
	pshufd	$0x1b,  %xmm3, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm3
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm3
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm3,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm3
kusano 2b45e8
	movaps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L136:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	je	.L137
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1,  %xmm0
kusano 2b45e8
	pshufd	$0x1b,  %xmm0, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	%xmm2,  %xmm1
kusano 2b45e8
	pshufd	$0x1b,  %xmm1, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm1
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1,  %xmm9
kusano 2b45e8
	movss	%xmm10,  %xmm1
kusano 2b45e8
	movaps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2,  %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L137:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L138
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	%xmm1,  %xmm0
kusano 2b45e8
	pshufd	$0x1b,  %xmm0, %xmm8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm8
kusano 2b45e8
	addps	%xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm0,  %xmm10
kusano 2b45e8
	movss	%xmm9,  %xmm0
kusano 2b45e8
	movaps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movaps	%xmm10, %xmm9
kusano 2b45e8
	movaps	%xmm1,  %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L138:
kusano 2b45e8
	movss	%xmm9, -32 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0x1b,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0x39, %xmm0, %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
	pshufd	$0, %xmm0, %xmm14
kusano 2b45e8
	pshufd	$0, %xmm1, %xmm1
kusano 2b45e8
	subps	  %xmm1,   %xmm15
kusano 2b45e8
	unpcklps  %xmm1,   %xmm15
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	testq	$2 * SIZE, X
kusano 2b45e8
	je	.L130x
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	decq	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L130x:
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$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
	movsd	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-14 * SIZE(X), %xmm4
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-10 * SIZE(X), %xmm5
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	 -6 * SIZE(X), %xmm6
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -2 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	decq	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
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	  0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	  2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
	movlps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -26 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	  4 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	  6 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm2
kusano 2b45e8
	movlps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -22 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	  8 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 10 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
	movlps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,  -18 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	 12 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 14 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm4, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm4
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm4
kusano 2b45e8
	movlps	%xmm4,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm4,  -14 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	 16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	 18 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm5, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm5
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm5
kusano 2b45e8
	movlps	%xmm5,  -12 * SIZE(X)
kusano 2b45e8
	movhps	%xmm5,  -10 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	 20 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 22 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm6, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm6
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm6
kusano 2b45e8
	movlps	%xmm6,   -8 * SIZE(X)
kusano 2b45e8
	movhps	%xmm6,   -6 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	 24 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	 26 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm7, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm7
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm7
kusano 2b45e8
	movlps	%xmm7,   -4 * SIZE(X)
kusano 2b45e8
	movhps	%xmm7,   -2 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	 28 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 30 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L131
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L132:
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
	movlps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -26 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm2
kusano 2b45e8
	movlps	%xmm2,  -24 * SIZE(X)
kusano 2b45e8
	movhps	%xmm2,  -22 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
	movlps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,  -18 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm4, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm4
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm4
kusano 2b45e8
	movlps	%xmm4,  -16 * SIZE(X)
kusano 2b45e8
	movhps	%xmm4,  -14 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm5, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm5
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm5
kusano 2b45e8
	movlps	%xmm5,  -12 * SIZE(X)
kusano 2b45e8
	movhps	%xmm5,  -10 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm6, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm6
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm6
kusano 2b45e8
	movlps	%xmm6,   -8 * SIZE(X)
kusano 2b45e8
	movhps	%xmm6,   -6 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm7, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm7
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm7
kusano 2b45e8
	movlps	%xmm7,   -4 * SIZE(X)
kusano 2b45e8
	movhps	%xmm7,   -2 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L135:
kusano 2b45e8
	testq	$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
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %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
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %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
	pshufd	 $0xb1,  %xmm2, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm2
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %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
	pshufd	 $0xb1,  %xmm3, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm3
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm3
kusano 2b45e8
	movlps	%xmm3,  -20 * SIZE(X)
kusano 2b45e8
	movhps	%xmm3,  -18 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L136:
kusano 2b45e8
	testq	$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
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm1, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm1
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm1
kusano 2b45e8
	movlps	%xmm1,  -28 * SIZE(X)
kusano 2b45e8
	movhps	%xmm1,  -26 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L137:
kusano 2b45e8
	testq	$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
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	movhps	%xmm0,  -30 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L138:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	 $0xb1,  %xmm0, %xmm8
kusano 2b45e8
	mulps	 %xmm14, %xmm0
kusano 2b45e8
	mulps	 %xmm15, %xmm8
kusano 2b45e8
	addps	 %xmm8,  %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0,  -32 * SIZE(X)
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
.L999:
kusano 2b45e8
	xorq	%rax, %rax
kusano 2b45e8
kusano 2b45e8
	RESTOREREGISTERS
kusano 2b45e8
	
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE