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	16
kusano 2b45e8
#define ARGS     0
kusano 2b45e8
	
kusano 2b45e8
#define N	 4 + STACK + ARGS(%esp)
kusano 2b45e8
#ifdef XDOUBLE
kusano 2b45e8
#define X	48 + STACK + ARGS(%esp)
kusano 2b45e8
#define INCX	52 + STACK + ARGS(%esp)
kusano 2b45e8
#define Y	56 + STACK + ARGS(%esp)
kusano 2b45e8
#define INCY	60 + STACK + ARGS(%esp)
kusano 2b45e8
#elif defined(DOUBLE)
kusano 2b45e8
#define X	32 + STACK + ARGS(%esp)
kusano 2b45e8
#define INCX	36 + STACK + ARGS(%esp)
kusano 2b45e8
#define Y	40 + STACK + ARGS(%esp)
kusano 2b45e8
#define INCY	44 + STACK + ARGS(%esp)
kusano 2b45e8
#else
kusano 2b45e8
#define X	24 + STACK + ARGS(%esp)
kusano 2b45e8
#define INCX	28 + STACK + ARGS(%esp)
kusano 2b45e8
#define Y	32 + STACK + ARGS(%esp)
kusano 2b45e8
#define INCY	36 + STACK + ARGS(%esp)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	PROLOGUE
kusano 2b45e8
kusano 2b45e8
	pushl	%ebp
kusano 2b45e8
	pushl	%edi
kusano 2b45e8
	pushl	%esi
kusano 2b45e8
	pushl	%ebx
kusano 2b45e8
kusano 2b45e8
	PROFCODE
kusano 2b45e8
kusano 2b45e8
#if defined(F_INTERFACE_GFORT) || defined(F_INTERFACE_G95)
kusano 2b45e8
	EMMS
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movl	N,    %edx
kusano 2b45e8
	movl	X,    %esi
kusano 2b45e8
	movl	Y,    %edi
kusano 2b45e8
	movl	INCX, %ebx
kusano 2b45e8
	movl	INCY, %ecx
kusano 2b45e8
kusano 2b45e8
	sall	$ZBASE_SHIFT, %ebx
kusano 2b45e8
	sall	$ZBASE_SHIFT, %ecx
kusano 2b45e8
kusano 2b45e8
	cmpl	$2 * SIZE, %ebx
kusano 2b45e8
	jne	.L14
kusano 2b45e8
	cmpl	$2 * SIZE, %ecx
kusano 2b45e8
	jne	.L14
kusano 2b45e8
kusano 2b45e8
	movl	%edx, %eax
kusano 2b45e8
	sarl	$1,   %eax
kusano 2b45e8
	jle	.L15
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L16:
kusano 2b45e8
#if defined(DOUBLE) || defined(XDOUBLE)
kusano 2b45e8
	FLD	3 * SIZE(%esi)
kusano 2b45e8
	FLD	2 * SIZE(%esi)
kusano 2b45e8
	FLD	1 * SIZE(%esi)
kusano 2b45e8
	FLD	0 * SIZE(%esi)
kusano 2b45e8
	FLD	3 * SIZE(%edi)
kusano 2b45e8
	FLD	2 * SIZE(%edi)
kusano 2b45e8
	FLD	1 * SIZE(%edi)
kusano 2b45e8
	FLD	0 * SIZE(%edi)
kusano 2b45e8
kusano 2b45e8
	FST	0 * SIZE(%esi)
kusano 2b45e8
	FST	1 * SIZE(%esi)
kusano 2b45e8
	FST	2 * SIZE(%esi)
kusano 2b45e8
	FST	3 * SIZE(%esi)
kusano 2b45e8
	FST	0 * SIZE(%edi)
kusano 2b45e8
	FST	1 * SIZE(%edi)
kusano 2b45e8
	FST	2 * SIZE(%edi)
kusano 2b45e8
	FST	3 * SIZE(%edi)
kusano 2b45e8
#else
kusano 2b45e8
	fldl	2 * SIZE(%esi)
kusano 2b45e8
	fldl	0 * SIZE(%esi)
kusano 2b45e8
	fldl	2 * SIZE(%edi)
kusano 2b45e8
	fldl	0 * SIZE(%edi)
kusano 2b45e8
kusano 2b45e8
	fstpl	0 * SIZE(%esi)
kusano 2b45e8
	fstpl	2 * SIZE(%esi)
kusano 2b45e8
	fstpl	0 * SIZE(%edi)
kusano 2b45e8
	fstpl	2 * SIZE(%edi)
kusano 2b45e8
#endif
kusano 2b45e8
	addl	$4 * SIZE, %esi
kusano 2b45e8
	addl	$4 * SIZE, %edi
kusano 2b45e8
	decl	%eax
kusano 2b45e8
	jg	.L16
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L15:
kusano 2b45e8
	movl	%edx, %eax
kusano 2b45e8
	andl	$1,   %eax
kusano 2b45e8
	jle	.L27
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L22:
kusano 2b45e8
#if defined(DOUBLE) || defined(XDOUBLE)
kusano 2b45e8
	FLD	1 * SIZE(%esi)
kusano 2b45e8
	FLD	0 * SIZE(%esi)
kusano 2b45e8
	FLD	1 * SIZE(%edi)
kusano 2b45e8
	FLD	0 * SIZE(%edi)
kusano 2b45e8
	FST	0 * SIZE(%esi)
kusano 2b45e8
	FST	1 * SIZE(%esi)
kusano 2b45e8
	FST	0 * SIZE(%edi)
kusano 2b45e8
	FST	1 * SIZE(%edi)
kusano 2b45e8
#else
kusano 2b45e8
	fldl	0 * SIZE(%esi)
kusano 2b45e8
	fldl	0 * SIZE(%edi)
kusano 2b45e8
	fstpl	0 * SIZE(%esi)
kusano 2b45e8
	fstpl	0 * SIZE(%edi)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	jmp	.L27
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
/* INCX != 1 or INCY != 1 */
kusano 2b45e8
kusano 2b45e8
.L14:
kusano 2b45e8
	movl	%edx, %eax
kusano 2b45e8
	sarl	$1,   %eax
kusano 2b45e8
	jle	.L28
kusano 2b45e8
	ALIGN_2
kusano 2b45e8
kusano 2b45e8
.L29:
kusano 2b45e8
#if defined(DOUBLE) || defined(XDOUBLE)
kusano 2b45e8
	FLD	1 * SIZE(%esi)
kusano 2b45e8
	FLD	0 * SIZE(%esi)
kusano 2b45e8
	addl	%ebx, %esi
kusano 2b45e8
	FLD	1 * SIZE(%esi)
kusano 2b45e8
	FLD	0 * SIZE(%esi)
kusano 2b45e8
kusano 2b45e8
	FLD	1 * SIZE(%edi)
kusano 2b45e8
	FLD	0 * SIZE(%edi)
kusano 2b45e8
	addl	%ecx, %edi
kusano 2b45e8
	FLD	1 * SIZE(%edi)
kusano 2b45e8
	FLD	0 * SIZE(%edi)
kusano 2b45e8
kusano 2b45e8
	FST	0 * SIZE(%esi)
kusano 2b45e8
	FST	1 * SIZE(%esi)
kusano 2b45e8
	subl	%ebx, %esi
kusano 2b45e8
	FST	0 * SIZE(%esi)
kusano 2b45e8
	FST	1 * SIZE(%esi)
kusano 2b45e8
	leal	(%esi, %ebx, 2), %esi
kusano 2b45e8
kusano 2b45e8
	FST	0 * SIZE(%edi)
kusano 2b45e8
	FST	1 * SIZE(%edi)
kusano 2b45e8
	subl	%ecx, %edi
kusano 2b45e8
	FST	0 * SIZE(%edi)
kusano 2b45e8
	FST	1 * SIZE(%edi)
kusano 2b45e8
	leal	(%edi, %ecx, 2), %edi
kusano 2b45e8
#else
kusano 2b45e8
	fldl	0 * SIZE(%esi)
kusano 2b45e8
	addl	%ebx, %esi
kusano 2b45e8
	fldl	0 * SIZE(%esi)
kusano 2b45e8
kusano 2b45e8
	fldl	0 * SIZE(%edi)
kusano 2b45e8
	addl	%ecx, %edi
kusano 2b45e8
	fldl	0 * SIZE(%edi)
kusano 2b45e8
kusano 2b45e8
	fstpl	0 * SIZE(%esi)
kusano 2b45e8
	subl	%ebx, %esi
kusano 2b45e8
	fstpl	0 * SIZE(%esi)
kusano 2b45e8
	leal	(%esi, %ebx, 2), %esi
kusano 2b45e8
kusano 2b45e8
	fstpl	0 * SIZE(%edi)
kusano 2b45e8
	subl	%ecx, %edi
kusano 2b45e8
	fstpl	0 * SIZE(%edi)
kusano 2b45e8
	leal	(%edi, %ecx, 2), %edi
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	decl	%eax
kusano 2b45e8
	jg	.L29
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L28:
kusano 2b45e8
	movl	%edx, %eax
kusano 2b45e8
	andl	$1,   %eax
kusano 2b45e8
	jle	.L27
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L35:
kusano 2b45e8
#if defined(DOUBLE) || defined(XDOUBLE)
kusano 2b45e8
	FLD	1 * SIZE(%esi)
kusano 2b45e8
	FLD	0 * SIZE(%esi)
kusano 2b45e8
	FLD	1 * SIZE(%edi)
kusano 2b45e8
	FLD	0 * SIZE(%edi)
kusano 2b45e8
	FST	0 * SIZE(%esi)
kusano 2b45e8
	FST	1 * SIZE(%esi)
kusano 2b45e8
	FST	0 * SIZE(%edi)
kusano 2b45e8
	FST	1 * SIZE(%edi)
kusano 2b45e8
#else
kusano 2b45e8
	fldl	0 * SIZE(%esi)
kusano 2b45e8
	fldl	0 * SIZE(%edi)
kusano 2b45e8
	fstpl	0 * SIZE(%esi)
kusano 2b45e8
	fstpl	0 * SIZE(%edi)
kusano 2b45e8
#endif
kusano 2b45e8
	ALIGN_3
kusano 2b45e8
kusano 2b45e8
.L27:
kusano 2b45e8
	xorl	%eax,%eax
kusano 2b45e8
	popl	%ebx
kusano 2b45e8
	popl	%esi
kusano 2b45e8
	popl	%edi
kusano 2b45e8
	popl	%ebp
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE