Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/kernel/x86_64/zaxpy_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
#ifndef WINDOWS_ABI
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG4
kusano 2b45e8
#define INCX	ARG5
kusano 2b45e8
#define Y	ARG6
kusano 2b45e8
#define INCY	ARG2
kusano 2b45e8
#else
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG2
kusano 2b45e8
#define INCX	ARG3
kusano 2b45e8
#define Y	ARG4
kusano 2b45e8
#define INCY	%r10
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#define	YY	%r11
kusano 2b45e8
kusano 2b45e8
#define ALPHA_R	%xmm14
kusano 2b45e8
#define ALPHA_I	%xmm15
kusano 2b45e8
kusano 2b45e8
#include "l1param.h"
kusano 2b45e8
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
#ifndef WINDOWS_ABI
kusano 2b45e8
	movq	 8(%rsp), INCY
kusano 2b45e8
#else
kusano 2b45e8
	movaps	%xmm3, %xmm0
kusano 2b45e8
	movss	40(%rsp), %xmm1	
kusano 2b45e8
kusano 2b45e8
	movq	48(%rsp), X
kusano 2b45e8
	movq	56(%rsp), INCX
kusano 2b45e8
	movq	64(%rsp), Y
kusano 2b45e8
	movq	72(%rsp), INCY
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	SAVEREGISTERS
kusano 2b45e8
	
kusano 2b45e8
	salq	$ZBASE_SHIFT, INCX
kusano 2b45e8
	salq	$ZBASE_SHIFT, INCY
kusano 2b45e8
kusano 2b45e8
	testq	M, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	
kusano 2b45e8
	cmpq	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L100
kusano 2b45e8
	cmpq	$2 * SIZE, INCY
kusano 2b45e8
	jne	.L100
kusano 2b45e8
kusano 2b45e8
	pcmpeqb	%xmm7, %xmm7
kusano 2b45e8
	psllq	$63,   %xmm7
kusano 2b45e8
kusano 2b45e8
	pshufd	$0, %xmm0, ALPHA_R
kusano 2b45e8
	pshufd	$0, %xmm1, ALPHA_I
kusano 2b45e8
kusano 2b45e8
#ifndef CONJ
kusano 2b45e8
	shufps	$0xb1, %xmm7, %xmm7
kusano 2b45e8
	xorpd	%xmm7, ALPHA_I
kusano 2b45e8
#else
kusano 2b45e8
	xorpd	%xmm7, ALPHA_R
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	testq	$2 * SIZE, Y
kusano 2b45e8
	je	.L10
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
	movsd	-32 * SIZE(Y), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	addps	%xmm1,   %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	addq	$2 * SIZE, Y
kusano 2b45e8
	decq	M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L10:
kusano 2b45e8
	testq	$SIZE, Y
kusano 2b45e8
	jne	.L50
kusano 2b45e8
kusano 2b45e8
	testq	$3 * SIZE, X
kusano 2b45e8
	jne	.L20
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L15
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
	decq	%rax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L11:
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	 12 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L15:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L16
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	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
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	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L16:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L17
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	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L17:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L18
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L18:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm1,   %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movlps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L20:
kusano 2b45e8
#ifdef ALIGNED_ACCESS
kusano 2b45e8
kusano 2b45e8
	testq	$2 * SIZE, X
kusano 2b45e8
	jne	.L30
kusano 2b45e8
kusano 2b45e8
	subq	$1 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L25
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
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L22
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L21:
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	SHUFPS_39  %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	SHUFPS_39  %xmm3, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	SHUFPS_39  %xmm4, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	SHUFPS_39  %xmm5, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 12 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	 16 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	SHUFPS_39  %xmm6, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	SHUFPS_39  %xmm7, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L21
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L22:
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	SHUFPS_39  %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	SHUFPS_39  %xmm3, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	SHUFPS_39  %xmm4, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	SHUFPS_39  %xmm5, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	SHUFPS_39  %xmm6, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	SHUFPS_39  %xmm7, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L25:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L26
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	SHUFPS_39  %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm3
kusano 2b45e8
	SHUFPS_39  %xmm3, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L26:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L27
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L27:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L28
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L28:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x06, %xmm0, %xmm8
kusano 2b45e8
	pshufd	$0x09, %xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
kusano 2b45e8
	movlps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L30:
kusano 2b45e8
	testq	$1 * SIZE, X
kusano 2b45e8
	jne	.L40
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L35
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
	decq	%rax
kusano 2b45e8
	jle	.L32
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L31:
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-14 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-10 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	 -6 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -2 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	  0 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	  2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	  4 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	  6 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	  8 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	 10 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	 12 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 14 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L31
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L32:
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-14 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-10 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	 -6 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -2 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L35:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L36
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	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
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
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L36:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L37
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	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L37:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L38
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	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L38:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(Y), %xmm1
kusano 2b45e8
kusano 2b45e8
	addps	%xmm1, %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movlps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
#ifdef ALIGNED_ACCESS
kusano 2b45e8
kusano 2b45e8
.L40:
kusano 2b45e8
	subq	$3 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L45
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
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L42
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L41:
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	shufps	 $0x93,  %xmm3, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	shufps	 $0x93,  %xmm4, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	shufps	 $0x93,  %xmm5, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	shufps	 $0x93,  %xmm6, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 12 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	 16 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	shufps	 $0x93,  %xmm7, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	shufps	 $0x93,  %xmm0, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L41
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L42:
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	shufps	 $0x93,  %xmm3, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	shufps	 $0x93,  %xmm4, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	shufps	 $0x93,  %xmm5, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	shufps	 $0x93,  %xmm6, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	shufps	 $0x93,  %xmm7, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	shufps	 $0x93,  %xmm0, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L45:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L46
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	shufps	 $0x93,  %xmm3, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm3
kusano 2b45e8
	shufps	 $0x93,  %xmm0, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L46:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L47
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L47:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L48
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L48:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm1
kusano 2b45e8
	movsd	-32 * SIZE(Y), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	addps	%xmm2,   %xmm0
kusano 2b45e8
	movlps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
.L50:
kusano 2b45e8
	xorps	%xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	subq	$1 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	testq	$3 * SIZE, X
kusano 2b45e8
	jne	.L60
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L55
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L52
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L51:
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	 12 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L51
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L52:
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L55:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L56
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L56:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L57
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L57:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L58
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L58:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L59
kusano 2b45e8
kusano 2b45e8
#ifdef movsd
kusano 2b45e8
	xorps	%xmm1, %xmm1
kusano 2b45e8
#endif
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L59:
kusano 2b45e8
	shufps	$0x93,  %xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	addss	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movss	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L60:
kusano 2b45e8
#ifdef ALIGNED_ACCESS
kusano 2b45e8
kusano 2b45e8
	testq	$2 * SIZE, X
kusano 2b45e8
	jne	.L70
kusano 2b45e8
kusano 2b45e8
	subq	$1 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L65
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L62
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L61:
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	SHUFPS_39  %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	SHUFPS_39  %xmm3, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	SHUFPS_39  %xmm4, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	SHUFPS_39  %xmm5, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	SHUFPS_39  %xmm6, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	SHUFPS_39  %xmm7, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7, -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L61
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L62:
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	SHUFPS_39  %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	SHUFPS_39  %xmm3, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	SHUFPS_39  %xmm4, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	SHUFPS_39  %xmm5, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	SHUFPS_39  %xmm6, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	SHUFPS_39  %xmm7, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7, -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L65:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L66
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	SHUFPS_39  %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm3
kusano 2b45e8
	SHUFPS_39  %xmm3, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	SHUFPS_39  %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L66:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L67
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	SHUFPS_39  %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm0
kusano 2b45e8
	movaps	%xmm3, %xmm1
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L67:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L68
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
	movaps	%xmm2, %xmm1
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L68:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L69
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	SHUFPS_39  %xmm1, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movlps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	movhlps	%xmm0, %xmm0
kusano 2b45e8
	movss	%xmm0, -30 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
kusano 2b45e8
.L69:
kusano 2b45e8
	shufps	$0x93,  %xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	addss	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movss	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L70:
kusano 2b45e8
	testq	$1 * SIZE, X
kusano 2b45e8
	jne	.L80
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L75
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm1
kusano 2b45e8
	movsd	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	-26 * SIZE(X), %xmm2
kusano 2b45e8
	movsd	-24 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	-22 * SIZE(X), %xmm3
kusano 2b45e8
	movsd	-20 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-18 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L72
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L71:
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	-10 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -6 * SIZE(X), %xmm7
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 -2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	  0 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	  2 * SIZE(X), %xmm1
kusano 2b45e8
	movsd	  4 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	  6 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	  8 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	 10 * SIZE(X), %xmm3
kusano 2b45e8
	movsd	 12 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	 14 * SIZE(X), %xmm4
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L71
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L72:
kusano 2b45e8
	movsd	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movsd	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	-10 * SIZE(X), %xmm6
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	 -8 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -6 * SIZE(X), %xmm7
kusano 2b45e8
	movsd	 -4 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	 -2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7,  -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L75:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L76
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm1
kusano 2b45e8
	movsd	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	-26 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	-24 * SIZE(X), %xmm3
kusano 2b45e8
	movhps	-22 * SIZE(X), %xmm3
kusano 2b45e8
	movsd	-20 * SIZE(X), %xmm0
kusano 2b45e8
	movhps	-18 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L76:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L77
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movsd	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movhps	-26 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L77:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L78
kusano 2b45e8
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
	movhps	-30 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L78:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L79
kusano 2b45e8
kusano 2b45e8
#ifdef movsd
kusano 2b45e8
	xorps	%xmm1, %xmm1
kusano 2b45e8
#endif
kusano 2b45e8
	movsd	-32 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L79:
kusano 2b45e8
	shufps	$0x93,  %xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	addss	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movss	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
#ifdef ALIGNED_ACCESS
kusano 2b45e8
kusano 2b45e8
.L80:
kusano 2b45e8
	subq	$3 * SIZE, X
kusano 2b45e8
kusano 2b45e8
	movaps	-32 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$4, %rax
kusano 2b45e8
	jle	.L85
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L82
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L81:
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	shufps	 $0x93,  %xmm3, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	shufps	 $0x93,  %xmm4, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	shufps	 $0x93,  %xmm5, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCHW) && !defined(FETCH128)
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	shufps	 $0x93,  %xmm6, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	shufps	 $0x93,  %xmm7, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	  8 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	shufps	 $0x93,  %xmm0, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7, -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L81
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L82:
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	shufps	 $0x93,  %xmm3, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm7
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm4,  %xmm3
kusano 2b45e8
	shufps	 $0x93,  %xmm4, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm5,  %xmm4
kusano 2b45e8
	shufps	 $0x93,  %xmm5, %xmm4
kusano 2b45e8
	pshufd	$0xb1,   %xmm4, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm4
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm4
kusano 2b45e8
	movss	%xmm4,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm4, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm6,  %xmm5
kusano 2b45e8
	shufps	 $0x93,  %xmm6, %xmm5
kusano 2b45e8
	pshufd	$0xb1,   %xmm5, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm5
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm5
kusano 2b45e8
	movss	%xmm5,   %xmm4
kusano 2b45e8
	shufps	$0x93,   %xmm5, %xmm4
kusano 2b45e8
	addps	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	%xmm4, -16 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm7,  %xmm6
kusano 2b45e8
	shufps	 $0x93,  %xmm7, %xmm6
kusano 2b45e8
	pshufd	$0xb1,   %xmm6, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm6
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm6
kusano 2b45e8
	movss	%xmm6,   %xmm5
kusano 2b45e8
	shufps	$0x93,   %xmm6, %xmm5
kusano 2b45e8
	addps	-12 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	%xmm5, -12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm7
kusano 2b45e8
	shufps	 $0x93,  %xmm0, %xmm7
kusano 2b45e8
	pshufd	$0xb1,   %xmm7, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm7
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm7
kusano 2b45e8
	movss	%xmm7,   %xmm6
kusano 2b45e8
	shufps	$0x93,   %xmm7, %xmm6
kusano 2b45e8
	addps	 -8 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	%xmm6,  -8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm7
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm7
kusano 2b45e8
	addps	 -4 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	%xmm7, -4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	subq	$-32 * SIZE, X
kusano 2b45e8
	subq	$-32 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L85:
kusano 2b45e8
	testq	$8, M
kusano 2b45e8
	jle	.L86
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	shufps	 $0x93,  %xmm3, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	-20 * SIZE(X), %xmm0
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm1
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm0,  %xmm3
kusano 2b45e8
	shufps	 $0x93,  %xmm0, %xmm3
kusano 2b45e8
	pshufd	$0xb1,   %xmm3, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm3
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm3
kusano 2b45e8
	movss	%xmm3,   %xmm2
kusano 2b45e8
	shufps	$0x93,   %xmm3, %xmm2
kusano 2b45e8
	addps	-24 * SIZE(Y), %xmm2
kusano 2b45e8
	movaps	%xmm2, -24 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm1,  %xmm0
kusano 2b45e8
	shufps	 $0x93,  %xmm1, %xmm0
kusano 2b45e8
	pshufd	$0xb1,   %xmm0, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm0
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm0
kusano 2b45e8
	movss	%xmm0,   %xmm3
kusano 2b45e8
	shufps	$0x93,   %xmm0, %xmm3
kusano 2b45e8
	addps	-20 * SIZE(Y), %xmm3
kusano 2b45e8
	movaps	%xmm3, -20 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addq	$16 * SIZE, X
kusano 2b45e8
	addq	$16 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L86:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L87
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
	movaps	-24 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm3,  %xmm2
kusano 2b45e8
	shufps	 $0x93,  %xmm3, %xmm2
kusano 2b45e8
	pshufd	$0xb1,   %xmm2, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm2
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm2
kusano 2b45e8
	movss	%xmm2,   %xmm1
kusano 2b45e8
	shufps	$0x93,   %xmm2, %xmm1
kusano 2b45e8
	addps	-28 * SIZE(Y), %xmm1
kusano 2b45e8
	movaps	%xmm1, -28 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm0
kusano 2b45e8
	movaps	%xmm3, %xmm1
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L87:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L88
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movaps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm1, %xmm0
kusano 2b45e8
	movaps	%xmm2, %xmm1
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L88:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L89
kusano 2b45e8
kusano 2b45e8
	movaps	-28 * SIZE(X), %xmm2
kusano 2b45e8
kusano 2b45e8
	movss	 %xmm2,  %xmm1
kusano 2b45e8
	shufps	 $0x93,  %xmm2, %xmm1
kusano 2b45e8
	pshufd	$0xb1,   %xmm1, %xmm8
kusano 2b45e8
	mulps	ALPHA_R, %xmm1
kusano 2b45e8
	mulps	ALPHA_I, %xmm8
kusano 2b45e8
	addps	%xmm8,   %xmm1
kusano 2b45e8
	movss	%xmm1,   %xmm0
kusano 2b45e8
	shufps	$0x93,   %xmm1, %xmm0
kusano 2b45e8
kusano 2b45e8
	addps	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movlps	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	movhlps	%xmm0, %xmm0
kusano 2b45e8
	movss	%xmm0, -30 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
kusano 2b45e8
.L89:
kusano 2b45e8
	shufps	$0x93,  %xmm0, %xmm0
kusano 2b45e8
kusano 2b45e8
	addss	-32 * SIZE(Y), %xmm0
kusano 2b45e8
	movss	%xmm0, -32 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
.L100:
kusano 2b45e8
#ifndef CONJ
kusano 2b45e8
	pshufd	$0, %xmm0, %xmm14
kusano 2b45e8
	pshufd	$0, %xmm1, %xmm15
kusano 2b45e8
kusano 2b45e8
	pxor	%xmm13, %xmm13
kusano 2b45e8
	subps	%xmm15, %xmm13
kusano 2b45e8
kusano 2b45e8
	unpcklps %xmm14, %xmm13
kusano 2b45e8
	unpcklps %xmm15, %xmm14
kusano 2b45e8
	movaps	 %xmm13, %xmm15
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0, %xmm0, %xmm14
kusano 2b45e8
	pshufd	$0, %xmm1, %xmm15
kusano 2b45e8
kusano 2b45e8
	pxor	%xmm13, %xmm13
kusano 2b45e8
	subps	%xmm14, %xmm13
kusano 2b45e8
kusano 2b45e8
	unpcklps %xmm15, %xmm14
kusano 2b45e8
	unpcklps %xmm13, %xmm15
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
//If incx==0 || incy==0, avoid unloop and jump to end.
kusano 2b45e8
	cmpq	$0, INCX
kusano 2b45e8
	je  .L200
kusano 2b45e8
	cmpq	$0, INCY
kusano 2b45e8
	je	.L200
kusano 2b45e8
kusano 2b45e8
	movq	Y, YY
kusano 2b45e8
kusano 2b45e8
	movq	M,  %rax
kusano 2b45e8
	sarq	$3, %rax
kusano 2b45e8
	jle	.L105
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L102:
kusano 2b45e8
	movsd	 (X), %xmm0
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movhps	 (X), %xmm0
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movsd	 (X), %xmm2
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movhps	 (X), %xmm2
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movsd	 (X), %xmm4
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movhps	 (X), %xmm4
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movsd	 (X), %xmm6
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movhps	 (X), %xmm6
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	movshdup %xmm0, %xmm1
kusano 2b45e8
	movsldup %xmm0, %xmm0
kusano 2b45e8
	movshdup %xmm2, %xmm3
kusano 2b45e8
	movsldup %xmm2, %xmm2
kusano 2b45e8
	movshdup %xmm4, %xmm5
kusano 2b45e8
	movsldup %xmm4, %xmm4
kusano 2b45e8
	movshdup %xmm6, %xmm7
kusano 2b45e8
	movsldup %xmm6, %xmm6
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0xf5, %xmm0, %xmm1
kusano 2b45e8
	shufps	$0xa0, %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xf5, %xmm2, %xmm3
kusano 2b45e8
	shufps	$0xa0, %xmm2, %xmm2
kusano 2b45e8
	pshufd	$0xf5, %xmm4, %xmm5
kusano 2b45e8
	shufps	$0xa0, %xmm4, %xmm4
kusano 2b45e8
	pshufd	$0xf5, %xmm6, %xmm7
kusano 2b45e8
	shufps	$0xa0, %xmm6, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm1
kusano 2b45e8
	mulps	%xmm14, %xmm2
kusano 2b45e8
	mulps	%xmm15, %xmm3
kusano 2b45e8
	mulps	%xmm14, %xmm4
kusano 2b45e8
	mulps	%xmm15, %xmm5
kusano 2b45e8
	mulps	%xmm14, %xmm6
kusano 2b45e8
	mulps	%xmm15, %xmm7
kusano 2b45e8
kusano 2b45e8
	movsd	(Y), %xmm8
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movhps	(Y), %xmm8
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movsd	(Y), %xmm9
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movhps	(Y), %xmm9
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movsd	(Y), %xmm10
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movhps	(Y), %xmm10
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movsd	(Y), %xmm11
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movhps	(Y), %xmm11
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
kusano 2b45e8
	addps	%xmm0, %xmm8
kusano 2b45e8
	addps	%xmm1, %xmm8
kusano 2b45e8
	addps	%xmm2, %xmm9
kusano 2b45e8
	addps	%xmm3, %xmm9
kusano 2b45e8
	addps	%xmm4, %xmm10
kusano 2b45e8
	addps	%xmm5, %xmm10
kusano 2b45e8
	addps	%xmm6, %xmm11
kusano 2b45e8
	addps	%xmm7, %xmm11
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movhps	%xmm8,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movsd	%xmm9,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movhps	%xmm9,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movsd	%xmm10, (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movhps	%xmm10, (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movsd	%xmm11, (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movhps	%xmm11, (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L102
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L105:
kusano 2b45e8
	testq	$4, M
kusano 2b45e8
	jle	.L106
kusano 2b45e8
kusano 2b45e8
	movsd	 (X), %xmm0
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movhps	 (X), %xmm0
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movsd	 (X), %xmm2
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
	movhps	 (X), %xmm2
kusano 2b45e8
	addq	 INCX, X
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	movshdup %xmm0, %xmm1
kusano 2b45e8
	movsldup %xmm0, %xmm0
kusano 2b45e8
	movshdup %xmm2, %xmm3
kusano 2b45e8
	movsldup %xmm2, %xmm2
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0xf5, %xmm0, %xmm1
kusano 2b45e8
	shufps	$0xa0, %xmm0, %xmm0
kusano 2b45e8
	pshufd	$0xf5, %xmm2, %xmm3
kusano 2b45e8
	shufps	$0xa0, %xmm2, %xmm2
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm1
kusano 2b45e8
	mulps	%xmm14, %xmm2
kusano 2b45e8
	mulps	%xmm15, %xmm3
kusano 2b45e8
kusano 2b45e8
	movsd	(Y), %xmm8
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movhps	(Y), %xmm8
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movsd	(Y), %xmm9
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movhps	(Y), %xmm9
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
kusano 2b45e8
	addps	%xmm0, %xmm8
kusano 2b45e8
	addps	%xmm1, %xmm8
kusano 2b45e8
	addps	%xmm2, %xmm9
kusano 2b45e8
	addps	%xmm3, %xmm9
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movhps	%xmm8,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movsd	%xmm9,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movhps	%xmm9,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L106:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	jle	.L107
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
#ifdef HAVE_SSE3
kusano 2b45e8
	movshdup %xmm0, %xmm1
kusano 2b45e8
	movsldup %xmm0, %xmm0
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0xf5, %xmm0, %xmm1
kusano 2b45e8
	shufps	$0xa0, %xmm0, %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	(Y), %xmm8
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
	movhps	(Y), %xmm8
kusano 2b45e8
	addq	 INCY, Y
kusano 2b45e8
kusano 2b45e8
	addps	%xmm0, %xmm8
kusano 2b45e8
	addps	%xmm1, %xmm8
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	movhps	%xmm8,  (YY)
kusano 2b45e8
	addq	 INCY, YY
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L107:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	 (X), %xmm0
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
	movshdup %xmm0, %xmm1
kusano 2b45e8
	movsldup %xmm0, %xmm0
kusano 2b45e8
#else
kusano 2b45e8
	pshufd	$0xf5, %xmm0, %xmm1
kusano 2b45e8
	shufps	$0xa0, %xmm0, %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	mulps	%xmm14, %xmm0
kusano 2b45e8
	mulps	%xmm15, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	 (Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	addps	%xmm0, %xmm8
kusano 2b45e8
	addps	%xmm1, %xmm8
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8,   (Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
		
kusano 2b45e8
.L200:
kusano 2b45e8
    movq    M, %rax
kusano 2b45e8
	cmpq	$0, %rax
kusano 2b45e8
    jle .L999
kusano 2b45e8
    ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L201:
kusano 2b45e8
    movsd    (X), %xmm0
kusano 2b45e8
    addq    INCX, X
kusano 2b45e8
kusano 2b45e8
#ifdef HAVE_SSE3
kusano 2b45e8
    movshdup %xmm0, %xmm1
kusano 2b45e8
    movsldup %xmm0, %xmm0
kusano 2b45e8
#else
kusano 2b45e8
    pshufd  $0xf5, %xmm0, %xmm1
kusano 2b45e8
    shufps  $0xa0, %xmm0, %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
    mulps   %xmm14, %xmm0
kusano 2b45e8
    mulps   %xmm15, %xmm1
kusano 2b45e8
kusano 2b45e8
    movsd    (Y), %xmm8
kusano 2b45e8
kusano 2b45e8
    addps   %xmm0, %xmm8
kusano 2b45e8
    addps   %xmm1, %xmm8
kusano 2b45e8
kusano 2b45e8
	movsd   %xmm8,   (Y)
kusano 2b45e8
    addq    INCY, Y
kusano 2b45e8
		
kusano 2b45e8
	decq    %rax
kusano 2b45e8
    jg  .L201
kusano 2b45e8
    ALIGN_3
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
kusano 2b45e8