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 N	ARG1	/* rdi */
kusano 2b45e8
#define X	ARG2	/* rsi */
kusano 2b45e8
#define INCX	ARG3	/* rdx */
kusano 2b45e8
#define Y	ARG4	/* rcx */
kusano 2b45e8
#define INCY	ARG5	/* r8  */
kusano 2b45e8
#else
kusano 2b45e8
#define RESULT_ADDRESS	ARG1    /*rcx*/
kusano 2b45e8
#define N	ARG2	/* rdx */
kusano 2b45e8
#define X	ARG3	/* r8 */
kusano 2b45e8
#define INCX	ARG4	/* r9*/
kusano 2b45e8
#define Y	%r10	
kusano 2b45e8
#define INCY	%r11
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#include "l1param.h"
kusano 2b45e8
kusano 2b45e8
#undef movsd
kusano 2b45e8
kusano 2b45e8
#ifndef OPTERON
kusano 2b45e8
#define MOVLPS	movsd
kusano 2b45e8
#else
kusano 2b45e8
#define MOVLPS	movlps
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
#ifdef WINDOWS_ABI
kusano 2b45e8
	movq	40(%rsp), Y
kusano 2b45e8
	movq	48(%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
	xorps	%xmm0, %xmm0
kusano 2b45e8
	xorps	%xmm1, %xmm1
kusano 2b45e8
	xorps	%xmm2, %xmm2
kusano 2b45e8
	xorps	%xmm3, %xmm3
kusano 2b45e8
kusano 2b45e8
	cmpq	$0, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	cmpq	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L50
kusano 2b45e8
	cmpq	$2 * SIZE, INCY
kusano 2b45e8
	jne	.L50
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	testq	$SIZE, Y
kusano 2b45e8
	jne	.L30
kusano 2b45e8
kusano 2b45e8
	testq	$SIZE, X
kusano 2b45e8
	jne	.L20
kusano 2b45e8
kusano 2b45e8
	movq	N,  %rax
kusano 2b45e8
	sarq	$3, %rax
kusano 2b45e8
	jle	.L15
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm9
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(Y), %xmm10
kusano 2b45e8
	movaps	-10 * SIZE(Y), %xmm11
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L11:
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -8 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	 -6 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	 -2 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %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	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	  2 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	movaps	  2 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	  4 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	  6 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	movaps	  6 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -8 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	 -6 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	 -2 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L15:
kusano 2b45e8
	testq	$4, N
kusano 2b45e8
	jle	.L16
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm9
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	-12 * SIZE(Y), %xmm10
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	-10 * SIZE(Y), %xmm11
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L16:
kusano 2b45e8
	testq	$2, N
kusano 2b45e8
	jle	.L17
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm9
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L17:
kusano 2b45e8
	testq	$1, N
kusano 2b45e8
	jle	.L98
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
	jmp	.L98
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L20:
kusano 2b45e8
	movq	N,  %rax
kusano 2b45e8
	sarq	$3, %rax
kusano 2b45e8
	jle	.L25
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm4
kusano 2b45e8
	MOVLPS	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-13 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm9
kusano 2b45e8
	MOVLPS	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	-11 * SIZE(X), %xmm6
kusano 2b45e8
	MOVLPS	-10 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -9 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(Y), %xmm10
kusano 2b45e8
	movaps	-10 * SIZE(Y), %xmm11
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L22
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L21:
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -8 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	 -8 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	 -7 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	 -6 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	 -6 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -5 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	 -4 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	 -3 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	 -2 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	 -2 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -1 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %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	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	  0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	  1 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	  2 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	  2 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	  3 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	  4 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	  4 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	  5 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	  6 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	  6 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	  7 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L21
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L22:
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -8 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	 -8 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	 -7 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	 -6 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	 -6 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	 -5 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	 -4 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	 -3 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	 -2 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	 -2 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -1 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L25:
kusano 2b45e8
	testq	$4, N
kusano 2b45e8
	jle	.L26
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-13 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm9
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-12 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	-11 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	-12 * SIZE(Y), %xmm10
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-10 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	 -9 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	-10 * SIZE(Y), %xmm11
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L26:
kusano 2b45e8
	testq	$2, N
kusano 2b45e8
	jle	.L27
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-14 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	-13 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm9
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L27:
kusano 2b45e8
	testq	$1, N
kusano 2b45e8
	jle	.L98
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
	jmp	.L98
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L30:
kusano 2b45e8
	testq	$SIZE, X
kusano 2b45e8
	jne	.L40
kusano 2b45e8
kusano 2b45e8
	movq	N,  %rax
kusano 2b45e8
	sarq	$3, %rax
kusano 2b45e8
	jle	.L35
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(Y), %xmm4
kusano 2b45e8
	MOVLPS	-14 * SIZE(Y), %xmm5
kusano 2b45e8
	movhps	-13 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm8
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm9
kusano 2b45e8
	MOVLPS	-12 * SIZE(Y), %xmm6
kusano 2b45e8
	movhps	-11 * SIZE(Y), %xmm6
kusano 2b45e8
	MOVLPS	-10 * SIZE(Y), %xmm7
kusano 2b45e8
	movhps	 -9 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm10
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm11
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L32
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L31:
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	 -8 * SIZE(Y), %xmm4
kusano 2b45e8
	movhps	 -7 * SIZE(Y), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	 -6 * SIZE(Y), %xmm5
kusano 2b45e8
	movhps	 -5 * SIZE(Y), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	 -4 * SIZE(Y), %xmm6
kusano 2b45e8
	movhps	 -3 * SIZE(Y), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	 -2 * SIZE(Y), %xmm7
kusano 2b45e8
	movhps	 -1 * SIZE(Y), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	  0 * SIZE(Y), %xmm4
kusano 2b45e8
	movhps	  1 * SIZE(Y), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	  2 * SIZE(X), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	  2 * SIZE(Y), %xmm5
kusano 2b45e8
	movhps	  3 * SIZE(Y), %xmm5
kusano 2b45e8
	addpd	%xmm12, %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	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	  4 * SIZE(Y), %xmm6
kusano 2b45e8
	movhps	  5 * SIZE(Y), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	  6 * SIZE(X), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	  6 * SIZE(Y), %xmm7
kusano 2b45e8
	movhps	  7 * SIZE(Y), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L31
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L32:
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	 -8 * SIZE(Y), %xmm4
kusano 2b45e8
	movhps	 -7 * SIZE(Y), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	 -6 * SIZE(Y), %xmm5
kusano 2b45e8
	movhps	 -5 * SIZE(Y), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	 -4 * SIZE(Y), %xmm6
kusano 2b45e8
	movhps	 -3 * SIZE(Y), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	 -2 * SIZE(Y), %xmm7
kusano 2b45e8
	movhps	 -1 * SIZE(Y), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L35:
kusano 2b45e8
	testq	$4, N
kusano 2b45e8
	jle	.L36
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-14 * SIZE(Y), %xmm5
kusano 2b45e8
	movhps	-13 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm9
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-12 * SIZE(Y), %xmm6
kusano 2b45e8
	movhps	-11 * SIZE(Y), %xmm6
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm10
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-10 * SIZE(Y), %xmm7
kusano 2b45e8
	movhps	 -9 * SIZE(Y), %xmm7
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm11
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L36:
kusano 2b45e8
	testq	$2, N
kusano 2b45e8
	jle	.L37
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-14 * SIZE(Y), %xmm5
kusano 2b45e8
	movhps	-13 * SIZE(Y), %xmm5
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm9
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L37:
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm1
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm3
kusano 2b45e8
kusano 2b45e8
	testq	$1, N
kusano 2b45e8
	jle	.L98
kusano 2b45e8
kusano 2b45e8
	MOVLPS	-16 * SIZE(Y), %xmm4
kusano 2b45e8
	movhps	-15 * SIZE(Y), %xmm4
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	SHUFPD_1 %xmm12, %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
	jmp	.L98
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L40:
kusano 2b45e8
	movhps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	addq	$SIZE, X
kusano 2b45e8
	movhps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
	addq	$SIZE, Y
kusano 2b45e8
kusano 2b45e8
	movq	N,  %rax
kusano 2b45e8
	sarq	$3, %rax
kusano 2b45e8
	jle	.L45
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm9
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm10
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(Y), %xmm11
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L42
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L41:
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm9,  %xmm8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	movsd	%xmm5,  %xmm4
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	-10 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm10, %xmm9
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	movsd	%xmm6,  %xmm5
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm0
kusano 2b45e8
 	movaps	 -8 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCH
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm11, %xmm10
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	movsd	%xmm7,  %xmm6
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -6 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8, %xmm11
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	movsd	%xmm4,  %xmm7
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11,  %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm9,  %xmm8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	movsd	%xmm5,  %xmm4
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -2 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm10, %xmm9
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	movsd	%xmm6,  %xmm5
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm0
kusano 2b45e8
	movaps	  0 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	movaps	  0 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
#if defined(PREFETCH) && !defined(FETCH128)
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm11, %xmm10
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	movsd	%xmm7,  %xmm6
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	  2 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	movaps	  2 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8, %xmm11
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	movsd	%xmm4,  %xmm7
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11,  %xmm0
kusano 2b45e8
	movaps	  4 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	movaps	  4 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L41
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L42:
kusano 2b45e8
	movsd	%xmm9,  %xmm8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	movsd	%xmm5,  %xmm4
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	-10 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm10, %xmm9
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	movsd	%xmm6,  %xmm5
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm0
kusano 2b45e8
 	movaps	 -8 * SIZE(Y), %xmm9
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	movaps	 -8 * SIZE(X), %xmm5
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm11, %xmm10
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	movsd	%xmm7,  %xmm6
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	movaps	 -6 * SIZE(Y), %xmm10
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	movaps	 -6 * SIZE(X), %xmm6
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8, %xmm11
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	movsd	%xmm4,  %xmm7
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11,  %xmm0
kusano 2b45e8
	movaps	 -4 * SIZE(Y), %xmm11
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	movaps	 -4 * SIZE(X), %xmm7
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm9,  %xmm8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	movsd	%xmm5,  %xmm4
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	movaps	 -2 * SIZE(Y), %xmm8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	movaps	 -2 * SIZE(X), %xmm4
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm10, %xmm9
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	movsd	%xmm6,  %xmm5
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm0
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm11, %xmm10
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	movsd	%xmm7,  %xmm6
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8, %xmm11
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	movsd	%xmm4,  %xmm7
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11,  %xmm0
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	subq	$-16 * SIZE, X
kusano 2b45e8
	subq	$-16 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L45:
kusano 2b45e8
	testq	$4, N
kusano 2b45e8
	jle	.L46
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm9
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm10
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm9,  %xmm8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	movsd	%xmm5,  %xmm4
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	-12 * SIZE(X), %xmm7
kusano 2b45e8
	movaps	-12 * SIZE(Y), %xmm11
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm10, %xmm9
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	movsd	%xmm6,  %xmm5
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm0
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	-10 * SIZE(X), %xmm4
kusano 2b45e8
	movaps	-10 * SIZE(Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm11, %xmm10
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	movsd	%xmm7,  %xmm6
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm8, %xmm11
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	movsd	%xmm4,  %xmm7
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11,  %xmm0
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	addq	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L46:
kusano 2b45e8
	testq	$2, N
kusano 2b45e8
	jle	.L47
kusano 2b45e8
kusano 2b45e8
	movaps	-16 * SIZE(X), %xmm5
kusano 2b45e8
	movaps	-16 * SIZE(Y), %xmm9
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm9,  %xmm8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	movsd	%xmm5,  %xmm4
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	-14 * SIZE(X), %xmm6
kusano 2b45e8
	movaps	-14 * SIZE(Y), %xmm10
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm10, %xmm9
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	movsd	%xmm6,  %xmm5
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm0
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm6,  %xmm4
kusano 2b45e8
	movaps	%xmm10, %xmm8
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	addq	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L47:
kusano 2b45e8
	testq	$1, N
kusano 2b45e8
	jle	.L48
kusano 2b45e8
kusano 2b45e8
	movlps	-16 * SIZE(X), %xmm4
kusano 2b45e8
	movlps	-16 * SIZE(Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L48:
kusano 2b45e8
	SHUFPD_1 %xmm0, %xmm0
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm1
kusano 2b45e8
	SHUFPD_1 %xmm2, %xmm2
kusano 2b45e8
	SHUFPD_1 %xmm3, %xmm3
kusano 2b45e8
	jmp	.L98	
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L50:
kusano 2b45e8
	movq	N,  %rax
kusano 2b45e8
	sarq	$3, %rax
kusano 2b45e8
	jle	.L55
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm8
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm8
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm9
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm9
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm6
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm10
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm10
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm7
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm11
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm11
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jle	.L54
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L53:
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm8
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm8
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm9
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm9
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm10
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm10
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm6
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm11
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm11
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm7
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm8
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm8
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm9
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm9
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm10
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm10
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm6
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm11
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm11
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm7
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	decq	%rax
kusano 2b45e8
	jg	.L53
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L54:
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm8
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm8
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm9
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm9
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm10
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm10
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm6
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm11
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm11
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm7
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L55:
kusano 2b45e8
	testq	$4, N
kusano 2b45e8
	jle	.L56
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm8
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm8
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm9
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm9
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm6
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm6
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm10
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm10
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm10, %xmm12 
kusano 2b45e8
	mulpd	%xmm6,  %xmm10
kusano 2b45e8
	addpd	%xmm10, %xmm0
kusano 2b45e8
	mulpd	%xmm6,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm7
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm7
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm11
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm11
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm11, %xmm12 
kusano 2b45e8
	mulpd	%xmm7,  %xmm11
kusano 2b45e8
	addpd	%xmm11, %xmm2
kusano 2b45e8
	mulpd	%xmm7,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L56:
kusano 2b45e8
	testq	$2, N
kusano 2b45e8
	jle	.L57
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm4
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm8
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm8
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm5
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm9
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm9
kusano 2b45e8
	addq	INCY, Y
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm9, %xmm12 
kusano 2b45e8
	mulpd	%xmm5,  %xmm9
kusano 2b45e8
	addpd	%xmm9,  %xmm2
kusano 2b45e8
	mulpd	%xmm5,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm3
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L57:
kusano 2b45e8
	testq	$1, N
kusano 2b45e8
	jle	.L98
kusano 2b45e8
kusano 2b45e8
	MOVLPS	0 * SIZE(X), %xmm4
kusano 2b45e8
	movhps	1 * SIZE(X), %xmm4
kusano 2b45e8
	MOVLPS	0 * SIZE(Y), %xmm8
kusano 2b45e8
	movhps	1 * SIZE(Y), %xmm8
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e,  %xmm8, %xmm12 
kusano 2b45e8
	mulpd	%xmm4,  %xmm8
kusano 2b45e8
	addpd	%xmm8,  %xmm0
kusano 2b45e8
	mulpd	%xmm4,  %xmm12
kusano 2b45e8
	addpd	%xmm12, %xmm1
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L98:
kusano 2b45e8
	addpd	%xmm2, %xmm0
kusano 2b45e8
	addpd	%xmm3, %xmm1
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm0, %xmm2
kusano 2b45e8
	pshufd	$0x4e, %xmm1, %xmm3
kusano 2b45e8
kusano 2b45e8
.L999:
kusano 2b45e8
#ifndef CONJ
kusano 2b45e8
	subsd	 %xmm2, %xmm0
kusano 2b45e8
	addsd	 %xmm3, %xmm1
kusano 2b45e8
#else
kusano 2b45e8
	addsd	 %xmm2, %xmm0
kusano 2b45e8
	subsd	 %xmm3, %xmm1
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifdef WINDOWS_ABI
kusano 2b45e8
	movq	RESULT_ADDRESS,	%rax
kusano 2b45e8
	movsd	%xmm0,	(%rax)
kusano 2b45e8
	movsd	%xmm1,	8(%rax)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	RESTOREREGISTERS
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE