kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
/* Copyright 2009, 2010 The University of Texas at Austin.           */
kusano 2b45e8
/* All rights reserved.                                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* Redistribution and use in source and binary forms, with or        */
kusano 2b45e8
/* without modification, are permitted provided that the following   */
kusano 2b45e8
/* conditions are met:                                               */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   1. Redistributions of source code must retain the above         */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer.                                                  */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   2. Redistributions in binary form must reproduce the above      */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer in the documentation and/or other materials       */
kusano 2b45e8
/*      provided with the distribution.                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
kusano 2b45e8
/*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
kusano 2b45e8
/*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
kusano 2b45e8
/*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
kusano 2b45e8
/*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
kusano 2b45e8
/*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
kusano 2b45e8
/*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
kusano 2b45e8
/*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
kusano 2b45e8
/*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
kusano 2b45e8
/*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
kusano 2b45e8
/*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
kusano 2b45e8
/*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
kusano 2b45e8
/*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
kusano 2b45e8
/*    POSSIBILITY OF SUCH DAMAGE.                                    */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* The views and conclusions contained in the software and           */
kusano 2b45e8
/* documentation are those of the authors and should not be          */
kusano 2b45e8
/* interpreted as representing official policies, either expressed   */
kusano 2b45e8
/* or implied, of The University of Texas at Austin.                 */
kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
kusano 2b45e8
#define ASSEMBLER
kusano 2b45e8
#include "common.h"
kusano 2b45e8
kusano 2b45e8
#ifndef WINDOWS_ABI
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG4
kusano 2b45e8
#define INCX	ARG5
kusano 2b45e8
#else
kusano 2b45e8
#define M	ARG1
kusano 2b45e8
#define X	ARG2
kusano 2b45e8
#define INCX	ARG3
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#define XX	%r10
kusano 2b45e8
#define I	%rax
kusano 2b45e8
kusano 2b45e8
#include "l1param.h"
kusano 2b45e8
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
#ifdef WINDOWS_ABI
kusano 2b45e8
	movaps	%xmm3, %xmm0
kusano 2b45e8
	movsd	40(%rsp), %xmm1
kusano 2b45e8
	movq	48(%rsp), X
kusano 2b45e8
	movq	56(%rsp), INCX
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	SAVEREGISTERS
kusano 2b45e8
	
kusano 2b45e8
	salq	$ZBASE_SHIFT, INCX
kusano 2b45e8
kusano 2b45e8
	testq	M, M
kusano 2b45e8
	jle	.L999
kusano 2b45e8
	
kusano 2b45e8
	pxor	%xmm15, %xmm15
kusano 2b45e8
	comisd	%xmm0, %xmm15
kusano 2b45e8
	jne	.L30		# Alpha_r != ZERO
kusano 2b45e8
kusano 2b45e8
	comisd	%xmm1, %xmm15
kusano 2b45e8
	jne	.L30		# Alpha_i != ZERO
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
/* Alpha == ZERO */
kusano 2b45e8
	cmpq	$2 * SIZE, INCX
kusano 2b45e8
	jne	.L20
kusano 2b45e8
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$2, I
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L11:
kusano 2b45e8
	movsd	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  1 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  2 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  3 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm1,  4 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  5 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  6 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  7 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$8 * SIZE, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L11
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	testq  $2, M
kusano 2b45e8
	je    .L14
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  1 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  2 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  3 * SIZE(X)
kusano 2b45e8
kusano 2b45e8
	addq	$4 * SIZE, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L14:
kusano 2b45e8
	testq  $1, M
kusano 2b45e8
	je    .L999
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm1,  0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1,  1 * SIZE(X)
kusano 2b45e8
	addq	$2 * SIZE, X
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L20:
kusano 2b45e8
	movq	M,  I		# rcx = n
kusano 2b45e8
	sarq	$2, I
kusano 2b45e8
	jle	.L22
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L21:
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1, 1 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1, 1 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1, 1 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1, 1 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L21
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L22:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L23
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1, 1 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1, 1 * SIZE(X)
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L23:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm1, 0 * SIZE(X)
kusano 2b45e8
	movsd	%xmm1, 1 * SIZE(X)
kusano 2b45e8
	jmp	.L999
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
/* Alpha != ZERO */
kusano 2b45e8
.L30:
kusano 2b45e8
	movq	X, XX
kusano 2b45e8
kusano 2b45e8
	movq	M,  I
kusano 2b45e8
	sarq	$2, I
kusano 2b45e8
	jle	.L35
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm6
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm7
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm4
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm8
kusano 2b45e8
	mulsd	%xmm0, %xmm2
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm9
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	mulsd	%xmm0, %xmm3
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm2
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm10
kusano 2b45e8
	addsd	%xmm4,  %xmm3
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm11
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm6, %xmm4
kusano 2b45e8
	mulsd	%xmm0, %xmm6
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	movaps	%xmm7, %xmm5
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	mulsd	%xmm0, %xmm7
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	decq	  I
kusano 2b45e8
	jle	  .L32
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L31:
kusano 2b45e8
#ifdef PREFETCHW
kusano 2b45e8
	PREFETCHW (PREFETCHSIZE +  0) - PREOFFSET(X)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm6
kusano 2b45e8
	movsd	%xmm2,  0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm7
kusano 2b45e8
	movsd	%xmm3,  1 * SIZE(XX)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm8, %xmm4
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	mulsd	%xmm0, %xmm8
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movaps	%xmm9, %xmm5
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm3
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	mulsd	%xmm0, %xmm9
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm8
kusano 2b45e8
	movsd	%xmm6,  0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm9
kusano 2b45e8
	movsd	%xmm7,  1 * SIZE(XX)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm10, %xmm4
kusano 2b45e8
	movsd	0 * SIZE(X), %xmm6
kusano 2b45e8
	mulsd	%xmm0,  %xmm10
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movaps	%xmm11, %xmm5
kusano 2b45e8
	movsd	1 * SIZE(X), %xmm7
kusano 2b45e8
	mulsd	%xmm1,  %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	mulsd	%xmm0,  %xmm11
kusano 2b45e8
	mulsd	%xmm1,  %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm10
kusano 2b45e8
	movsd	%xmm8,  0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm11
kusano 2b45e8
	movsd	%xmm9,  1 * SIZE(XX)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm4
kusano 2b45e8
	movsd	0 * SIZE(X), %xmm8
kusano 2b45e8
	mulsd	%xmm0, %xmm2
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	movsd	1 * SIZE(X), %xmm9
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	mulsd	%xmm0, %xmm3
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm2
kusano 2b45e8
	movsd	%xmm10, 0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm3
kusano 2b45e8
	movsd	%xmm11, 1 * SIZE(XX)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm6, %xmm4
kusano 2b45e8
 	movsd	0 * SIZE(X), %xmm10
kusano 2b45e8
	mulsd	%xmm0, %xmm6
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movaps	%xmm7, %xmm5
kusano 2b45e8
	movsd	1 * SIZE(X), %xmm11
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	mulsd	%xmm0, %xmm7
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	decq	I
kusano 2b45e8
	jg	.L31
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L32:
kusano 2b45e8
	subsd	%xmm5,  %xmm6
kusano 2b45e8
	movsd	%xmm2,  0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm7
kusano 2b45e8
	movsd	%xmm3,  1 * SIZE(XX)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm8, %xmm4
kusano 2b45e8
	mulsd	%xmm0, %xmm8
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movaps	%xmm9, %xmm5
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	mulsd	%xmm0, %xmm9
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm8
kusano 2b45e8
	movsd	%xmm6,  0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm9
kusano 2b45e8
	movsd	%xmm7,  1 * SIZE(XX)
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm10, %xmm4
kusano 2b45e8
	mulsd	%xmm0,  %xmm10
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	movaps	%xmm11, %xmm5
kusano 2b45e8
	mulsd	%xmm1,  %xmm5
kusano 2b45e8
	mulsd	%xmm0,  %xmm11
kusano 2b45e8
	mulsd	%xmm1,  %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm10
kusano 2b45e8
	movsd	%xmm8,  0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm11
kusano 2b45e8
	movsd	%xmm9,  1 * SIZE(XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm10, 0 * SIZE(XX)
kusano 2b45e8
	movsd	%xmm11, 1 * SIZE(XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L35:
kusano 2b45e8
	testq	$2, M
kusano 2b45e8
	je	.L37
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm3
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm4
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm6
kusano 2b45e8
	mulsd	%xmm0, %xmm2
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm7
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	addq	INCX, X
kusano 2b45e8
	mulsd	%xmm0, %xmm3
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm2
kusano 2b45e8
	addsd	%xmm4,  %xmm3
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm6, %xmm4
kusano 2b45e8
	mulsd	%xmm0, %xmm6
kusano 2b45e8
	movaps	%xmm7, %xmm5
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	mulsd	%xmm0, %xmm7
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm6
kusano 2b45e8
	movsd	%xmm2,  0 * SIZE(XX)
kusano 2b45e8
	addsd	%xmm4,  %xmm7
kusano 2b45e8
	movsd	%xmm3,  1 * SIZE(XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm6,  0 * SIZE(XX)
kusano 2b45e8
	movsd	%xmm7,  1 * SIZE(XX)
kusano 2b45e8
	addq	INCX, XX
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L37:
kusano 2b45e8
	testq	$1, M
kusano 2b45e8
	je	.L999
kusano 2b45e8
kusano 2b45e8
	movsd	 0 * SIZE(X), %xmm2
kusano 2b45e8
	movsd	 1 * SIZE(X), %xmm3
kusano 2b45e8
kusano 2b45e8
	movaps	%xmm2, %xmm4
kusano 2b45e8
	mulsd	%xmm0, %xmm2
kusano 2b45e8
	movaps	%xmm3, %xmm5
kusano 2b45e8
	mulsd	%xmm1, %xmm5
kusano 2b45e8
	mulsd	%xmm0, %xmm3
kusano 2b45e8
	mulsd	%xmm1, %xmm4
kusano 2b45e8
kusano 2b45e8
	subsd	%xmm5,  %xmm2
kusano 2b45e8
	addsd	%xmm4,  %xmm3
kusano 2b45e8
kusano 2b45e8
	movsd	%xmm2,  0 * SIZE(XX)
kusano 2b45e8
	movsd	%xmm3,  1 * SIZE(XX)
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