Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/kernel/x86/rot_sse2.S

kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
/* Copyright 2009, 2010 The University of Texas at Austin.           */
kusano 2b45e8
/* All rights reserved.                                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* Redistribution and use in source and binary forms, with or        */
kusano 2b45e8
/* without modification, are permitted provided that the following   */
kusano 2b45e8
/* conditions are met:                                               */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   1. Redistributions of source code must retain the above         */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer.                                                  */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   2. Redistributions in binary form must reproduce the above      */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer in the documentation and/or other materials       */
kusano 2b45e8
/*      provided with the distribution.                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
kusano 2b45e8
/*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
kusano 2b45e8
/*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
kusano 2b45e8
/*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
kusano 2b45e8
/*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
kusano 2b45e8
/*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
kusano 2b45e8
/*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
kusano 2b45e8
/*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
kusano 2b45e8
/*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
kusano 2b45e8
/*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
kusano 2b45e8
/*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
kusano 2b45e8
/*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
kusano 2b45e8
/*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
kusano 2b45e8
/*    POSSIBILITY OF SUCH DAMAGE.                                    */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* The views and conclusions contained in the software and           */
kusano 2b45e8
/* documentation are those of the authors and should not be          */
kusano 2b45e8
/* interpreted as representing official policies, either expressed   */
kusano 2b45e8
/* or implied, of The University of Texas at Austin.                 */
kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
kusano 2b45e8
#define ASSEMBLER
kusano 2b45e8
#include "common.h"
kusano 2b45e8
kusano 2b45e8
#define STACK	12
kusano 2b45e8
#define ARGS     0
kusano 2b45e8
kusano 2b45e8
#define STACK_N		 4 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_X		 8 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_INCX	12 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_Y		16 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_INCY	20 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_C		24 + STACK + ARGS(%esp)
kusano 2b45e8
#define STACK_S		32 + STACK + ARGS(%esp)
kusano 2b45e8
kusano 2b45e8
#define N	%ebx
kusano 2b45e8
#define X	%esi
kusano 2b45e8
#define INCX	%ecx
kusano 2b45e8
#define Y	%edi
kusano 2b45e8
#define INCY	%edx
kusano 2b45e8
kusano 2b45e8
#define	I	%eax
kusano 2b45e8
kusano 2b45e8
#include "l1param.h"
kusano 2b45e8
kusano 2b45e8
#define C	%xmm6
kusano 2b45e8
#define S	%xmm7
kusano 2b45e8
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
	pushl	%edi
kusano 2b45e8
	pushl	%esi
kusano 2b45e8
	pushl	%ebx
kusano 2b45e8
kusano 2b45e8
	movl	STACK_N,     N
kusano 2b45e8
	movl	STACK_X,     X
kusano 2b45e8
	movl	STACK_INCX,  INCX
kusano 2b45e8
	movl	STACK_Y,     Y
kusano 2b45e8
	movl	STACK_INCY,  INCY
kusano 2b45e8
kusano 2b45e8
	leal	(, INCX, SIZE), INCX	
kusano 2b45e8
	leal	(, INCY, SIZE), INCY	
kusano 2b45e8
kusano 2b45e8
	movsd	STACK_C, C
kusano 2b45e8
	movsd	STACK_S, S
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x44, C, C
kusano 2b45e8
	pshufd	$0x44, S, S
kusano 2b45e8
kusano 2b45e8
	cmpl	$0, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	cmpl	$SIZE, INCX
kusano 2b45e8
	jne	.L50
kusano 2b45e8
	cmpl	$SIZE, INCY
kusano 2b45e8
	jne	.L50
kusano 2b45e8
kusano 2b45e8
	testl	$SIZE, X
kusano 2b45e8
	je	.L10
kusano 2b45e8
kusano 2b45e8
	movsd	0 * SIZE(Y), %xmm1
kusano 2b45e8
	movsd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm0
kusano 2b45e8
	mulsd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm2
kusano 2b45e8
	mulsd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addsd	%xmm1, %xmm0
kusano 2b45e8
	subsd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$1 * SIZE, X
kusano 2b45e8
	addl	$1 * SIZE, Y
kusano 2b45e8
	decl	N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L10:
kusano 2b45e8
	testl	$SIZE, Y
kusano 2b45e8
	jne	.L20
kusano 2b45e8
kusano 2b45e8
	movl	N,  I
kusano 2b45e8
	sarl	$4, I
kusano 2b45e8
	jle	.L14
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L11:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	0 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	2 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 2 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 2 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	4 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	4 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 4 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	6 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	6 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 6 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 6 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	8 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	8 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 8 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 8 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	10 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	10 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 10 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 10 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	12 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	12 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 12 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 12 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	14 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	14 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 14 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 14 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	addl	$16 * SIZE, Y
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L14:
kusano 2b45e8
	testl	$15, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$8, N
kusano 2b45e8
	jle	.L15
kusano 2b45e8
kusano 2b45e8
	movapd	0 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	2 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 2 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 2 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	4 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	4 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 4 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 4 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	6 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	6 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 6 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 6 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	addl	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L15:
kusano 2b45e8
	testl	$4, N
kusano 2b45e8
	jle	.L16
kusano 2b45e8
kusano 2b45e8
	movapd	0 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	2 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 2 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 2 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	addl	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L16:
kusano 2b45e8
	testl	$2, N
kusano 2b45e8
	jle	.L17
kusano 2b45e8
kusano 2b45e8
	movapd	0 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movapd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	addl	$2 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L17:
kusano 2b45e8
	testl	$1, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	0 * SIZE(Y), %xmm1
kusano 2b45e8
	movsd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm0
kusano 2b45e8
	mulsd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm2
kusano 2b45e8
	mulsd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addsd	%xmm1, %xmm0
kusano 2b45e8
	subsd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L20:
kusano 2b45e8
	movapd	-1 * SIZE(Y), %xmm1
kusano 2b45e8
kusano 2b45e8
	movl	N,  I
kusano 2b45e8
	sarl	$4, I
kusano 2b45e8
	jle	.L24
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L21:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	1 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 1 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	3 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm4
kusano 2b45e8
	movapd	%xmm4, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm4
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm4, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 2 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 2 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 3 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	5 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	4 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 4 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 4 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 5 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	7 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	6 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm4
kusano 2b45e8
	movapd	%xmm4, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm4
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm4, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 6 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 6 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 7 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	9 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	8 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 8 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 8 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 9 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	11 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	10 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm4
kusano 2b45e8
	movapd	%xmm4, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm4
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm4, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 10 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 10 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 11 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	13 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	12 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 12 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 12 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 13 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE + 64) - PREOFFSET(Y)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movapd	15 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	14 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm4
kusano 2b45e8
	movapd	%xmm4, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm4
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm4, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 14 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 14 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 15 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$16 * SIZE, X
kusano 2b45e8
	addl	$16 * SIZE, Y
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L21
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L24:
kusano 2b45e8
	testl	$15, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	testl	$8, N
kusano 2b45e8
	jle	.L25
kusano 2b45e8
kusano 2b45e8
	movapd	1 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 1 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	3 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm4
kusano 2b45e8
	movapd	%xmm4, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm4
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm4, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 2 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 2 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 3 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	5 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	4 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 4 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 4 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 5 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	7 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	6 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm4
kusano 2b45e8
	movapd	%xmm4, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm4
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm4, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 6 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 6 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 7 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$8 * SIZE, X
kusano 2b45e8
	addl	$8 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L25:
kusano 2b45e8
	testl	$4, N
kusano 2b45e8
	jle	.L26
kusano 2b45e8
kusano 2b45e8
	movapd	1 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 1 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	movapd	3 * SIZE(Y), %xmm1
kusano 2b45e8
	movapd	2 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm1, %xmm4
kusano 2b45e8
	movapd	%xmm4, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm4
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm4, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 2 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 2 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 3 * SIZE(Y)
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, X
kusano 2b45e8
	addl	$4 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L26:
kusano 2b45e8
	testl	$2, N
kusano 2b45e8
	jle	.L27
kusano 2b45e8
kusano 2b45e8
	movapd	1 * SIZE(Y), %xmm4
kusano 2b45e8
	movapd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm4, %xmm1
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movlpd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
	movhpd	%xmm2, 1 * SIZE(Y)
kusano 2b45e8
	movapd	%xmm4, %xmm1
kusano 2b45e8
kusano 2b45e8
	addl	$2 * SIZE, X
kusano 2b45e8
	addl	$2 * SIZE, Y
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L27:
kusano 2b45e8
	testl	$1, N
kusano 2b45e8
	jle	.L999
kusano 2b45e8
kusano 2b45e8
	unpckhpd %xmm1, %xmm1
kusano 2b45e8
	movsd	0 * SIZE(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm0
kusano 2b45e8
	mulsd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm2
kusano 2b45e8
	mulsd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addsd	%xmm1, %xmm0
kusano 2b45e8
	subsd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm0, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm2, 0 * SIZE(Y)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L50:
kusano 2b45e8
	movl	N,  I
kusano 2b45e8
	cmpl	$0, INCX
kusano 2b45e8
	je  .L56
kusano 2b45e8
	cmpl	$0, INCY
kusano 2b45e8
	je  .L56
kusano 2b45e8
	sarl	$2, I
kusano 2b45e8
	jle	.L55
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L53:
kusano 2b45e8
	movsd	(Y), %xmm1
kusano 2b45e8
	movhpd	(Y, INCY), %xmm1
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	movhpd	(X, INCX), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm0, (X)
kusano 2b45e8
	movhpd	%xmm0, (X, INCX)
kusano 2b45e8
	movlpd	%xmm2, (Y)
kusano 2b45e8
	movhpd	%xmm2, (Y, INCY)
kusano 2b45e8
kusano 2b45e8
	leal	(X, INCX, 2), X
kusano 2b45e8
	leal	(Y, INCY, 2), Y
kusano 2b45e8
kusano 2b45e8
	movsd	(Y), %xmm1
kusano 2b45e8
	movhpd	(Y, INCY), %xmm1
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
	movhpd	(X, INCX), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm0
kusano 2b45e8
	mulpd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulpd	C, %xmm2
kusano 2b45e8
	mulpd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm1, %xmm0
kusano 2b45e8
	subpd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm0, (X)
kusano 2b45e8
	movhpd	%xmm0, (X, INCX)
kusano 2b45e8
	movlpd	%xmm2, (Y)
kusano 2b45e8
	movhpd	%xmm2, (Y, INCY)
kusano 2b45e8
kusano 2b45e8
	leal	(X, INCX, 2), X
kusano 2b45e8
	leal	(Y, INCY, 2), Y
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L53
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L55:
kusano 2b45e8
	movl	N,  I
kusano 2b45e8
	andl	$3, I
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L56:
kusano 2b45e8
	movsd	(Y), %xmm1
kusano 2b45e8
	movsd	(X), %xmm0
kusano 2b45e8
kusano 2b45e8
	movapd	%xmm1, %xmm2
kusano 2b45e8
	movapd	%xmm0, %xmm3
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm0
kusano 2b45e8
	mulsd	S, %xmm1
kusano 2b45e8
kusano 2b45e8
	mulsd	C, %xmm2
kusano 2b45e8
	mulsd	S, %xmm3
kusano 2b45e8
kusano 2b45e8
	addsd	%xmm1, %xmm0
kusano 2b45e8
	subsd	%xmm3, %xmm2
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm0, (X)
kusano 2b45e8
	movsd	%xmm2, (Y)
kusano 2b45e8
kusano 2b45e8
	addl	INCX, X
kusano 2b45e8
	addl	INCY, Y
kusano 2b45e8
kusano 2b45e8
	decl	I
kusano 2b45e8
	jg	.L56
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L999:
kusano 2b45e8
	popl	%ebx
kusano 2b45e8
	popl	%esi
kusano 2b45e8
	popl	%edi
kusano 2b45e8
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE