Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/kernel/x86/zgemm_kernel_1x2_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	16
kusano 2b45e8
#define ARGS	 0
kusano 2b45e8
	
kusano 2b45e8
#define STACK_M	 4 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_N	 8 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_K	12 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_ALPHA_R	16 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_ALPHA_I	24 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_A	32 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_B	36 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_C	40 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_LDC	44 + STACK + ARGS(%esi)
kusano 2b45e8
#define STACK_OFFT	48 + STACK + ARGS(%esi)
kusano 2b45e8
kusano 2b45e8
#define POSINV	 0(%esp)
kusano 2b45e8
#define ALPHA_R	16(%esp)
kusano 2b45e8
#define ALPHA_I	32(%esp)
kusano 2b45e8
#define K	48(%esp)
kusano 2b45e8
#define N	52(%esp)
kusano 2b45e8
#define M	56(%esp)
kusano 2b45e8
#define A	60(%esp)
kusano 2b45e8
#define C	64(%esp)
kusano 2b45e8
#define J	68(%esp)
kusano 2b45e8
#define OLD_STACK 72(%esp)
kusano 2b45e8
#define OFFSET  76(%esp)
kusano 2b45e8
#define KK	80(%esp)
kusano 2b45e8
#define KKK	84(%esp)
kusano 2b45e8
#define BUFFER 128(%esp)
kusano 2b45e8
kusano 2b45e8
#define STACK_ALIGN	4096
kusano 2b45e8
#define STACK_OFFSET	1024
kusano 2b45e8
kusano 2b45e8
#if defined(OPTERON) || defined(BARCELONA)
kusano 2b45e8
#define PREFETCH	prefetch
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#define PREFETCHSIZE (8 * 10 + 4)
kusano 2b45e8
kusano 2b45e8
#define AA	%edx
kusano 2b45e8
#define BB	%ecx
kusano 2b45e8
#define LDC	%ebp
kusano 2b45e8
#define B	%edi
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
#define KERNEL1(address) \
kusano 2b45e8
	mulpd	%xmm0, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm4; \
kusano 2b45e8
	PREFETCH (PREFETCHSIZE +  0) * SIZE + (address) * 1 * SIZE(AA); \
kusano 2b45e8
	movapd	 2 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm0, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm5; \
kusano 2b45e8
	movapd	 4 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm0, %xmm2; \
kusano 2b45e8
	mulpd	 6 * SIZE + (address) * 4 * SIZE(BB), %xmm0; \
kusano 2b45e8
	addpd	%xmm2, %xmm6; \
kusano 2b45e8
	movapd	16 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	addpd	%xmm0, %xmm7; \
kusano 2b45e8
	movapd	 2 * SIZE + (address) * 1 * SIZE(AA), %xmm0
kusano 2b45e8
kusano 2b45e8
#define KERNEL2(address) \
kusano 2b45e8
	mulpd	%xmm0, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm4; \
kusano 2b45e8
	movapd	10 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm0, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm5; \
kusano 2b45e8
	movapd	12 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm0, %xmm3; \
kusano 2b45e8
	mulpd	14 * SIZE + (address) * 4 * SIZE(BB), %xmm0; \
kusano 2b45e8
	addpd	%xmm3, %xmm6; \
kusano 2b45e8
	movapd	24 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	addpd	%xmm0, %xmm7; \
kusano 2b45e8
	movapd	 4 * SIZE + (address) * 1 * SIZE(AA), %xmm0
kusano 2b45e8
kusano 2b45e8
#define KERNEL3(address) \
kusano 2b45e8
	mulpd	%xmm0, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm4; \
kusano 2b45e8
	movapd	18 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm0, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm5; \
kusano 2b45e8
	movapd	20 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm0, %xmm2; \
kusano 2b45e8
	mulpd	22 * SIZE + (address) * 4 * SIZE(BB), %xmm0; \
kusano 2b45e8
	addpd	%xmm2, %xmm6; \
kusano 2b45e8
	movapd	32 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	addpd	%xmm0, %xmm7; \
kusano 2b45e8
	movapd	 6 * SIZE + (address) * 1 * SIZE(AA), %xmm0
kusano 2b45e8
kusano 2b45e8
#define KERNEL4(address) \
kusano 2b45e8
	mulpd	%xmm0, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm4; \
kusano 2b45e8
	movapd	26 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm0, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm5; \
kusano 2b45e8
	movapd	28 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm0, %xmm3; \
kusano 2b45e8
	mulpd	30 * SIZE + (address) * 4 * SIZE(BB), %xmm0; \
kusano 2b45e8
	addpd	%xmm3, %xmm6; \
kusano 2b45e8
	movapd	40 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	addpd	%xmm0, %xmm7; \
kusano 2b45e8
	movapd	16 * SIZE + (address) * 1 * SIZE(AA), %xmm0
kusano 2b45e8
kusano 2b45e8
#define KERNEL5(address) \
kusano 2b45e8
	PREFETCH (PREFETCHSIZE + 8) * SIZE + (address) * 1 * SIZE(AA); \
kusano 2b45e8
	mulpd	%xmm1, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm4; \
kusano 2b45e8
	movapd	34 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm1, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm5; \
kusano 2b45e8
	movapd	36 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm1, %xmm2; \
kusano 2b45e8
	mulpd	38 * SIZE + (address) * 4 * SIZE(BB), %xmm1; \
kusano 2b45e8
	addpd	%xmm2, %xmm6; \
kusano 2b45e8
	movapd	48 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	addpd	%xmm1, %xmm7; \
kusano 2b45e8
	movapd	10 * SIZE + (address) * 1 * SIZE(AA), %xmm1
kusano 2b45e8
kusano 2b45e8
#define KERNEL6(address) \
kusano 2b45e8
	mulpd	%xmm1, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm4; \
kusano 2b45e8
	movapd	42 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm1, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm5; \
kusano 2b45e8
	movapd	44 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm1, %xmm3; \
kusano 2b45e8
	mulpd	46 * SIZE + (address) * 4 * SIZE(BB), %xmm1; \
kusano 2b45e8
	addpd	%xmm3, %xmm6; \
kusano 2b45e8
	movapd	56 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	addpd	%xmm1, %xmm7; \
kusano 2b45e8
	movapd	12 * SIZE + (address) * 1 * SIZE(AA), %xmm1
kusano 2b45e8
kusano 2b45e8
#define KERNEL7(address) \
kusano 2b45e8
	mulpd	%xmm1, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm4; \
kusano 2b45e8
	movapd	50 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm1, %xmm2; \
kusano 2b45e8
	addpd	%xmm2, %xmm5; \
kusano 2b45e8
	movapd	52 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	mulpd	%xmm1, %xmm2; \
kusano 2b45e8
	mulpd	54 * SIZE + (address) * 4 * SIZE(BB), %xmm1; \
kusano 2b45e8
	addpd	%xmm2, %xmm6; \
kusano 2b45e8
	movapd	64 * SIZE + (address) * 4 * SIZE(BB), %xmm2; \
kusano 2b45e8
	addpd	%xmm1, %xmm7; \
kusano 2b45e8
	movapd	14 * SIZE + (address) * 1 * SIZE(AA), %xmm1
kusano 2b45e8
kusano 2b45e8
#define KERNEL8(address) \
kusano 2b45e8
	mulpd	%xmm1, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm4; \
kusano 2b45e8
	movapd	58 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm1, %xmm3; \
kusano 2b45e8
	addpd	%xmm3, %xmm5; \
kusano 2b45e8
	movapd	60 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	mulpd	%xmm1, %xmm3; \
kusano 2b45e8
	mulpd	62 * SIZE + (address) * 4 * SIZE(BB), %xmm1; \
kusano 2b45e8
	addpd	%xmm3, %xmm6; \
kusano 2b45e8
	movapd	72 * SIZE + (address) * 4 * SIZE(BB), %xmm3; \
kusano 2b45e8
	addpd	%xmm1, %xmm7; \
kusano 2b45e8
	movapd	24 * SIZE + (address) * 1 * SIZE(AA), %xmm1
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
	EMMS
kusano 2b45e8
kusano 2b45e8
	movl	%esp, %esi	# save old stack
kusano 2b45e8
kusano 2b45e8
	subl	$128 + LOCAL_BUFFER_SIZE + STACK_OFFSET, %esp
kusano 2b45e8
	andl	$-STACK_ALIGN, %esp	# align stack
kusano 2b45e8
	addl	$STACK_OFFSET, %esp
kusano 2b45e8
kusano 2b45e8
	STACK_TOUCHING
kusano 2b45e8
kusano 2b45e8
	movl	STACK_M, %ebx
kusano 2b45e8
	movl	STACK_N, %eax
kusano 2b45e8
	movl	STACK_K, %ecx
kusano 2b45e8
	movl	STACK_A, %edx
kusano 2b45e8
kusano 2b45e8
	movl	%ebx, M
kusano 2b45e8
	movl	%eax, N
kusano 2b45e8
	movl	%ecx, K
kusano 2b45e8
	movl	%edx, A
kusano 2b45e8
	movl	%esi, OLD_STACK
kusano 2b45e8
kusano 2b45e8
	movl	STACK_B, B
kusano 2b45e8
	movl	STACK_C, %ebx
kusano 2b45e8
#ifdef TRMMKERNEL
kusano 2b45e8
	movss	STACK_OFFT, %xmm4
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movlpd	STACK_ALPHA_R, %xmm0
kusano 2b45e8
	movlpd	STACK_ALPHA_I, %xmm1
kusano 2b45e8
kusano 2b45e8
	pcmpeqb	%xmm7, %xmm7
kusano 2b45e8
	psllq	$63, %xmm7	# Generate mask
kusano 2b45e8
	pxor	%xmm2, %xmm2
kusano 2b45e8
kusano 2b45e8
	movlpd	 %xmm0, 0 + ALPHA_R
kusano 2b45e8
	movlpd	 %xmm0, 8 + ALPHA_R
kusano 2b45e8
	
kusano 2b45e8
	movlpd	 %xmm1, 8 + ALPHA_I
kusano 2b45e8
	xorpd	 %xmm7, %xmm1
kusano 2b45e8
	movlpd	 %xmm1, 0 + ALPHA_I
kusano 2b45e8
kusano 2b45e8
	movlpd	  %xmm2,  0 + POSINV
kusano 2b45e8
	movlpd	  %xmm7,  8 + POSINV
kusano 2b45e8
kusano 2b45e8
	movl	%ebx, C
kusano 2b45e8
	movl	STACK_LDC, LDC
kusano 2b45e8
kusano 2b45e8
#ifdef TRMMKERNEL
kusano 2b45e8
	movss	%xmm4, OFFSET
kusano 2b45e8
	movss	%xmm4, KK
kusano 2b45e8
#ifndef LEFT
kusano 2b45e8
	negl	KK
kusano 2b45e8
#endif	
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	sall	$ZBASE_SHIFT, LDC
kusano 2b45e8
kusano 2b45e8
	sarl	$1, %eax
kusano 2b45e8
	movl	%eax, J			# j = n
kusano 2b45e8
	jle	.L100
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L01:
kusano 2b45e8
#if defined(TRMMKERNEL) && defined(LEFT)
kusano 2b45e8
	movl	OFFSET, %eax
kusano 2b45e8
	movl	%eax, KK
kusano 2b45e8
#endif	
kusano 2b45e8
kusano 2b45e8
	leal	BUFFER, %ecx
kusano 2b45e8
kusano 2b45e8
	movapd	POSINV, %xmm7
kusano 2b45e8
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	sarl	$1, %eax
kusano 2b45e8
	jle	.L03
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L02:
kusano 2b45e8
	prefetchnta	 56 * SIZE(B)
kusano 2b45e8
kusano 2b45e8
	movlpd	 0 * SIZE(B), %xmm0
kusano 2b45e8
	movlpd	 1 * SIZE(B), %xmm1
kusano 2b45e8
	movlpd	 2 * SIZE(B), %xmm2
kusano 2b45e8
	movlpd	 3 * SIZE(B), %xmm3
kusano 2b45e8
	movlpd	 4 * SIZE(B), %xmm4
kusano 2b45e8
	movlpd	 5 * SIZE(B), %xmm5
kusano 2b45e8
	movlpd	 6 * SIZE(B), %xmm6
kusano 2b45e8
	movlpd	 7 * SIZE(B), %xmm7
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm0,  0 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm0,  1 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  2 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  3 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm2,  4 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm2,  5 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm3,  6 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm3,  7 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm4,  8 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm4,  9 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm5, 10 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm5, 11 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm6, 12 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm6, 13 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm7, 14 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm7, 15 * SIZE(BB)
kusano 2b45e8
kusano 2b45e8
	addl	$  8 * SIZE, B
kusano 2b45e8
	subl	$-16 * SIZE, BB
kusano 2b45e8
kusano 2b45e8
	decl	%eax
kusano 2b45e8
	jne	.L02
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L03:
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	andl	$1, %eax
kusano 2b45e8
	BRANCH
kusano 2b45e8
	jle	.L05
kusano 2b45e8
kusano 2b45e8
	movlpd	 0 * SIZE(B), %xmm0
kusano 2b45e8
	movlpd	 1 * SIZE(B), %xmm1
kusano 2b45e8
	movlpd	 2 * SIZE(B), %xmm2
kusano 2b45e8
	movlpd	 3 * SIZE(B), %xmm3
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm0,  0 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm0,  1 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  2 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  3 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm2,  4 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm2,  5 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm3,  6 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm3,  7 * SIZE(BB)
kusano 2b45e8
kusano 2b45e8
	addl	$4 * SIZE, B
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L05:
kusano 2b45e8
	movl	C, %esi		# coffset = c
kusano 2b45e8
	movl	A, AA		# aoffset = a
kusano 2b45e8
	movl	M,  %ebx
kusano 2b45e8
	testl	%ebx, %ebx
kusano 2b45e8
	jle	.L100
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L10:
kusano 2b45e8
#if !defined(TRMMKERNEL) || \
kusano 2b45e8
	(defined(TRMMKERNEL) &&  defined(LEFT) &&  defined(TRANSA)) || \
kusano 2b45e8
	(defined(TRMMKERNEL) && !defined(LEFT) && !defined(TRANSA))
kusano 2b45e8
kusano 2b45e8
	leal	BUFFER, BB	# boffset1 = boffset
kusano 2b45e8
#else
kusano 2b45e8
	leal	BUFFER, BB	# boffset1 = boffset
kusano 2b45e8
	movl	KK, %eax
kusano 2b45e8
	leal	(, %eax, SIZE), %eax
kusano 2b45e8
	leal	(AA, %eax, 2), AA
kusano 2b45e8
	leal	(BB, %eax, 8), BB
kusano 2b45e8
#endif	
kusano 2b45e8
kusano 2b45e8
	movapd	 0 * SIZE(AA), %xmm0
kusano 2b45e8
	pxor	%xmm4, %xmm4
kusano 2b45e8
	movapd	 8 * SIZE(AA), %xmm1
kusano 2b45e8
	pxor	%xmm5, %xmm5
kusano 2b45e8
	movapd	 0 * SIZE(BB), %xmm2
kusano 2b45e8
	pxor	%xmm6, %xmm6
kusano 2b45e8
	movapd	 8 * SIZE(BB), %xmm3
kusano 2b45e8
	pxor	%xmm7, %xmm7
kusano 2b45e8
kusano 2b45e8
	prefetchw 2 * SIZE(%esi)
kusano 2b45e8
	prefetchw 2 * SIZE(%esi, LDC)
kusano 2b45e8
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
#elif (defined(LEFT) && !defined(TRANSA)) || (!defined(LEFT) && defined(TRANSA))
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	subl	KK, %eax
kusano 2b45e8
	movl	%eax, KKK	
kusano 2b45e8
#else
kusano 2b45e8
	movl	KK, %eax
kusano 2b45e8
#ifdef LEFT
kusano 2b45e8
	addl	$1, %eax
kusano 2b45e8
#else
kusano 2b45e8
	addl	$2, %eax
kusano 2b45e8
#endif
kusano 2b45e8
	movl	%eax, KKK
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#if 1
kusano 2b45e8
	andl	$-8, %eax
kusano 2b45e8
	sall	$4, %eax
kusano 2b45e8
	je	.L15
kusano 2b45e8
.L1X:	
kusano 2b45e8
	KERNEL1(16  *  0)
kusano 2b45e8
	KERNEL2(16  *  0)
kusano 2b45e8
	KERNEL3(16  *  0)
kusano 2b45e8
	KERNEL4(16  *  0)
kusano 2b45e8
	KERNEL5(16  *  0)
kusano 2b45e8
	KERNEL6(16  *  0)
kusano 2b45e8
	KERNEL7(16  *  0)
kusano 2b45e8
	KERNEL8(16  *  0)
kusano 2b45e8
	cmpl	$128 *  1, %eax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	KERNEL1(16  *  1)
kusano 2b45e8
	KERNEL2(16  *  1)
kusano 2b45e8
	KERNEL3(16  *  1)
kusano 2b45e8
	KERNEL4(16  *  1)
kusano 2b45e8
	KERNEL5(16  *  1)
kusano 2b45e8
	KERNEL6(16  *  1)
kusano 2b45e8
	KERNEL7(16  *  1)
kusano 2b45e8
	KERNEL8(16  *  1)
kusano 2b45e8
	cmpl	$128 *  2, %eax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	KERNEL1(16  *  2)
kusano 2b45e8
	KERNEL2(16  *  2)
kusano 2b45e8
	KERNEL3(16  *  2)
kusano 2b45e8
	KERNEL4(16  *  2)
kusano 2b45e8
	KERNEL5(16  *  2)
kusano 2b45e8
	KERNEL6(16  *  2)
kusano 2b45e8
	KERNEL7(16  *  2)
kusano 2b45e8
	KERNEL8(16  *  2)
kusano 2b45e8
	cmpl	$128 *  3, %eax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	KERNEL1(16  *  3)
kusano 2b45e8
	KERNEL2(16  *  3)
kusano 2b45e8
	KERNEL3(16  *  3)
kusano 2b45e8
	KERNEL4(16  *  3)
kusano 2b45e8
	KERNEL5(16  *  3)
kusano 2b45e8
	KERNEL6(16  *  3)
kusano 2b45e8
	KERNEL7(16  *  3)
kusano 2b45e8
	KERNEL8(16  *  3)
kusano 2b45e8
	cmpl	$128 *  4, %eax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	KERNEL1(16  *  4)
kusano 2b45e8
	KERNEL2(16  *  4)
kusano 2b45e8
	KERNEL3(16  *  4)
kusano 2b45e8
	KERNEL4(16  *  4)
kusano 2b45e8
	KERNEL5(16  *  4)
kusano 2b45e8
	KERNEL6(16  *  4)
kusano 2b45e8
	KERNEL7(16  *  4)
kusano 2b45e8
	KERNEL8(16  *  4)
kusano 2b45e8
	cmpl	$128 *  5, %eax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	KERNEL1(16  *  5)
kusano 2b45e8
	KERNEL2(16  *  5)
kusano 2b45e8
	KERNEL3(16  *  5)
kusano 2b45e8
	KERNEL4(16  *  5)
kusano 2b45e8
	KERNEL5(16  *  5)
kusano 2b45e8
	KERNEL6(16  *  5)
kusano 2b45e8
	KERNEL7(16  *  5)
kusano 2b45e8
	KERNEL8(16  *  5)
kusano 2b45e8
	cmpl	$128 *  6, %eax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	KERNEL1(16  *  6)
kusano 2b45e8
	KERNEL2(16  *  6)
kusano 2b45e8
	KERNEL3(16  *  6)
kusano 2b45e8
	KERNEL4(16  *  6)
kusano 2b45e8
	KERNEL5(16  *  6)
kusano 2b45e8
	KERNEL6(16  *  6)
kusano 2b45e8
	KERNEL7(16  *  6)
kusano 2b45e8
	KERNEL8(16  *  6)
kusano 2b45e8
	cmpl	$128 *  7, %eax
kusano 2b45e8
	jle	.L12
kusano 2b45e8
	KERNEL1(16  *  7)
kusano 2b45e8
	KERNEL2(16  *  7)
kusano 2b45e8
	KERNEL3(16  *  7)
kusano 2b45e8
	KERNEL4(16  *  7)
kusano 2b45e8
	KERNEL5(16  *  7)
kusano 2b45e8
	KERNEL6(16  *  7)
kusano 2b45e8
	KERNEL7(16  *  7)
kusano 2b45e8
	KERNEL8(16  *  7)
kusano 2b45e8
kusano 2b45e8
	addl	$128 * 4  * SIZE, BB
kusano 2b45e8
	addl	$128 * 1  * SIZE, AA
kusano 2b45e8
	subl	$128 * 8, %eax
kusano 2b45e8
	jg	.L1X
kusano 2b45e8
	jmp	.L15
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	leal	(AA, %eax, 1), AA
kusano 2b45e8
	leal	(BB, %eax, 4), BB
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
#else
kusano 2b45e8
kusano 2b45e8
	sarl	$3, %eax
kusano 2b45e8
	je	.L15
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L12:
kusano 2b45e8
	KERNEL1(16  *  0)
kusano 2b45e8
	KERNEL2(16  *  0)
kusano 2b45e8
	KERNEL3(16  *  0)
kusano 2b45e8
	KERNEL4(16  *  0)
kusano 2b45e8
	KERNEL5(16  *  0)
kusano 2b45e8
	KERNEL6(16  *  0)
kusano 2b45e8
	KERNEL7(16  *  0)
kusano 2b45e8
	KERNEL8(16  *  0)
kusano 2b45e8
kusano 2b45e8
	addl   $64 * SIZE, BB
kusano 2b45e8
	addl   $16 * SIZE, AA
kusano 2b45e8
	decl   %eax
kusano 2b45e8
	jne    .L11
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
.L15:
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
#else
kusano 2b45e8
	movl	KKK, %eax
kusano 2b45e8
#endif
kusano 2b45e8
	andl	$7, %eax		# if (k & 1)
kusano 2b45e8
	BRANCH
kusano 2b45e8
	je .L14
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L13:
kusano 2b45e8
	mulpd	 %xmm0, %xmm2
kusano 2b45e8
	addpd	 %xmm2, %xmm4
kusano 2b45e8
	movapd	 2 * SIZE(BB), %xmm2
kusano 2b45e8
	mulpd	 %xmm0, %xmm2
kusano 2b45e8
	addpd	 %xmm2, %xmm5
kusano 2b45e8
	movapd	 4 * SIZE(BB), %xmm2
kusano 2b45e8
	mulpd	 %xmm0, %xmm2
kusano 2b45e8
	mulpd	 6 * SIZE(BB), %xmm0
kusano 2b45e8
	addpd	 %xmm2, %xmm6
kusano 2b45e8
	movapd	 8 * SIZE(BB), %xmm2
kusano 2b45e8
	addpd	 %xmm0, %xmm7
kusano 2b45e8
	movapd	 2 * SIZE(AA), %xmm0
kusano 2b45e8
kusano 2b45e8
	addl	$2 * SIZE, AA
kusano 2b45e8
	addl	$8 * SIZE, BB
kusano 2b45e8
	decl	%eax
kusano 2b45e8
	jg	.L13
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L14:
kusano 2b45e8
	movapd	POSINV,  %xmm1
kusano 2b45e8
	movapd	ALPHA_R, %xmm2
kusano 2b45e8
	movapd	ALPHA_I, %xmm3
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm5, %xmm5
kusano 2b45e8
	SHUFPD_1 %xmm7, %xmm7
kusano 2b45e8
kusano 2b45e8
kusano 2b45e8
#if defined(NN) || defined(NT) || defined(TN) || defined(TT) || \
kusano 2b45e8
    defined(NR) || defined(NC) || defined(TR) || defined(TC)
kusano 2b45e8
	xorpd	%xmm1, %xmm5
kusano 2b45e8
	xorpd	%xmm1, %xmm7
kusano 2b45e8
#else
kusano 2b45e8
	xorpd	%xmm1, %xmm4
kusano 2b45e8
	xorpd	%xmm1, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	movlpd	0 * SIZE(%esi), %xmm0
kusano 2b45e8
	movhpd	1 * SIZE(%esi), %xmm0
kusano 2b45e8
	movlpd	0 * SIZE(%esi, LDC), %xmm1
kusano 2b45e8
	movhpd	1 * SIZE(%esi, LDC), %xmm1
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#if defined(NN) || defined(NT) || defined(TN) || defined(TT) || \
kusano 2b45e8
    defined(RR) || defined(RC) || defined(CR) || defined(CC)
kusano 2b45e8
	subpd	%xmm5, %xmm4
kusano 2b45e8
	subpd	%xmm7, %xmm6
kusano 2b45e8
#else
kusano 2b45e8
	addpd	%xmm5, %xmm4
kusano 2b45e8
	addpd	%xmm7, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm4, %xmm5
kusano 2b45e8
	pshufd	$0x4e, %xmm6, %xmm7
kusano 2b45e8
	
kusano 2b45e8
	mulpd	%xmm2, %xmm4
kusano 2b45e8
	mulpd	%xmm3, %xmm5
kusano 2b45e8
	mulpd	%xmm2, %xmm6
kusano 2b45e8
	mulpd	%xmm3, %xmm7
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm5, %xmm4
kusano 2b45e8
	addpd	%xmm7, %xmm6
kusano 2b45e8
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	addpd	%xmm0, %xmm4
kusano 2b45e8
	addpd	%xmm1, %xmm6
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm4, 0 * SIZE(%esi)
kusano 2b45e8
	movhpd	%xmm4, 1 * SIZE(%esi)
kusano 2b45e8
	movlpd	%xmm6, 0 * SIZE(%esi, LDC)
kusano 2b45e8
	movhpd	%xmm6, 1 * SIZE(%esi, LDC)
kusano 2b45e8
kusano 2b45e8
#if (defined(TRMMKERNEL) &&  defined(LEFT) &&  defined(TRANSA)) || \
kusano 2b45e8
    (defined(TRMMKERNEL) && !defined(LEFT) && !defined(TRANSA))
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	subl	KKK, %eax
kusano 2b45e8
	leal	(,%eax, SIZE), %eax
kusano 2b45e8
	leal	(AA, %eax, 2), AA
kusano 2b45e8
	leal	(BB, %eax, 8), BB
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#if defined(TRMMKERNEL) && defined(LEFT)
kusano 2b45e8
	addl	$1, KK
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	addl	$2 * SIZE, %esi		# coffset += 4
kusano 2b45e8
	decl	%ebx			# i --
kusano 2b45e8
	jg	.L10
kusano 2b45e8
	ALIGN_4	
kusano 2b45e8
kusano 2b45e8
.L99:
kusano 2b45e8
#if defined(TRMMKERNEL) && !defined(LEFT)
kusano 2b45e8
	addl	$2, KK
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	leal	(, LDC, 2), %eax
kusano 2b45e8
	addl	%eax, C			# c += ldc
kusano 2b45e8
	decl	J			# j --
kusano 2b45e8
	jg	.L01
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L100:
kusano 2b45e8
	movl	N, %eax
kusano 2b45e8
	andl	$1, %eax
kusano 2b45e8
	jle	.L500
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L101:
kusano 2b45e8
#if defined(TRMMKERNEL) && defined(LEFT)
kusano 2b45e8
	movl	OFFSET, %eax
kusano 2b45e8
	movl	%eax, KK
kusano 2b45e8
#endif	
kusano 2b45e8
kusano 2b45e8
	leal	BUFFER, %ecx
kusano 2b45e8
	movapd	POSINV, %xmm7
kusano 2b45e8
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	sarl	$2, %eax
kusano 2b45e8
	jle	.L103
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L102:
kusano 2b45e8
	prefetchnta	 56 * SIZE(B)
kusano 2b45e8
kusano 2b45e8
	movlpd	 0 * SIZE(B), %xmm0
kusano 2b45e8
	movlpd	 1 * SIZE(B), %xmm1
kusano 2b45e8
	movlpd	 2 * SIZE(B), %xmm2
kusano 2b45e8
	movlpd	 3 * SIZE(B), %xmm3
kusano 2b45e8
	movlpd	 4 * SIZE(B), %xmm4
kusano 2b45e8
	movlpd	 5 * SIZE(B), %xmm5
kusano 2b45e8
	movlpd	 6 * SIZE(B), %xmm6
kusano 2b45e8
	movlpd	 7 * SIZE(B), %xmm7
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm0,  0 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm0,  1 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  2 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  3 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm2,  4 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm2,  5 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm3,  6 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm3,  7 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm4,  8 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm4,  9 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm5, 10 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm5, 11 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm6, 12 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm6, 13 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm7, 14 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm7, 15 * SIZE(BB)
kusano 2b45e8
kusano 2b45e8
	addl	$  8 * SIZE, B
kusano 2b45e8
	subl	$-16 * SIZE, %ecx
kusano 2b45e8
	decl	%eax
kusano 2b45e8
	jne	.L102
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L103:
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	andl	$3, %eax
kusano 2b45e8
	BRANCH
kusano 2b45e8
	jle	.L105
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L104:
kusano 2b45e8
	movlpd	 0 * SIZE(B), %xmm0
kusano 2b45e8
	movlpd	 1 * SIZE(B), %xmm1
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm0,  0 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm0,  1 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  2 * SIZE(BB)
kusano 2b45e8
	movlpd	%xmm1,  3 * SIZE(BB)
kusano 2b45e8
kusano 2b45e8
	addl	$2 * SIZE, B
kusano 2b45e8
	addl	$4 * SIZE, %ecx
kusano 2b45e8
	decl	%eax
kusano 2b45e8
	jne	.L104
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L105:
kusano 2b45e8
	movl	C, %esi		# coffset = c
kusano 2b45e8
	movl	A, AA		# aoffset = a
kusano 2b45e8
	movl	M,  %ebx
kusano 2b45e8
	testl	%ebx, %ebx	
kusano 2b45e8
	jle	.L500
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L110:
kusano 2b45e8
#if !defined(TRMMKERNEL) || \
kusano 2b45e8
	(defined(TRMMKERNEL) &&  defined(LEFT) &&  defined(TRANSA)) || \
kusano 2b45e8
	(defined(TRMMKERNEL) && !defined(LEFT) && !defined(TRANSA))
kusano 2b45e8
kusano 2b45e8
	leal	BUFFER, BB
kusano 2b45e8
#else
kusano 2b45e8
	leal	BUFFER, BB
kusano 2b45e8
	movl	KK, %eax
kusano 2b45e8
	leal	(, %eax, SIZE), %eax
kusano 2b45e8
	leal	(AA, %eax, 2), AA
kusano 2b45e8
	leal	(BB, %eax, 4), BB
kusano 2b45e8
#endif	
kusano 2b45e8
kusano 2b45e8
	pxor	%xmm4, %xmm4
kusano 2b45e8
	pxor	%xmm5, %xmm5
kusano 2b45e8
	pxor	%xmm6, %xmm6
kusano 2b45e8
	pxor	%xmm7, %xmm7
kusano 2b45e8
kusano 2b45e8
	movapd	 0 * SIZE(AA), %xmm0
kusano 2b45e8
	movapd	 8 * SIZE(AA), %xmm1
kusano 2b45e8
	movapd	 0 * SIZE(BB), %xmm2
kusano 2b45e8
	movapd	 8 * SIZE(BB), %xmm3
kusano 2b45e8
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
#elif (defined(LEFT) && !defined(TRANSA)) || (!defined(LEFT) && defined(TRANSA))
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	subl	KK, %eax
kusano 2b45e8
	movl	%eax, KKK	
kusano 2b45e8
#else
kusano 2b45e8
	movl	KK, %eax
kusano 2b45e8
#ifdef LEFT
kusano 2b45e8
	addl	$1, %eax
kusano 2b45e8
#else
kusano 2b45e8
	addl	$1, %eax
kusano 2b45e8
#endif
kusano 2b45e8
	movl	%eax, KKK
kusano 2b45e8
#endif
kusano 2b45e8
	sarl	$3, %eax
kusano 2b45e8
	je	.L112
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L111:
kusano 2b45e8
	PREFETCH  (PREFETCHSIZE + 0) * SIZE(AA)
kusano 2b45e8
	mulpd	%xmm0, %xmm2
kusano 2b45e8
	mulpd	 2 * SIZE(BB), %xmm0
kusano 2b45e8
	addpd	%xmm2, %xmm4
kusano 2b45e8
	movapd	 4 * SIZE(BB), %xmm2
kusano 2b45e8
	addpd	%xmm0, %xmm5
kusano 2b45e8
	movapd	 2 * SIZE(AA), %xmm0
kusano 2b45e8
	mulpd	%xmm0, %xmm2
kusano 2b45e8
	mulpd	 6 * SIZE(BB), %xmm0
kusano 2b45e8
	addpd	%xmm2, %xmm6
kusano 2b45e8
	movapd	16 * SIZE(BB), %xmm2
kusano 2b45e8
	addpd	%xmm0, %xmm7
kusano 2b45e8
	movapd	 4 * SIZE(AA), %xmm0
kusano 2b45e8
	mulpd	%xmm0, %xmm3
kusano 2b45e8
	mulpd	10 * SIZE(BB), %xmm0
kusano 2b45e8
	addpd	%xmm3, %xmm4
kusano 2b45e8
	movapd	12 * SIZE(BB), %xmm3
kusano 2b45e8
	addpd	%xmm0, %xmm5
kusano 2b45e8
	movapd	 6 * SIZE(AA), %xmm0
kusano 2b45e8
	mulpd	%xmm0, %xmm3
kusano 2b45e8
	mulpd	14 * SIZE(BB), %xmm0
kusano 2b45e8
	addpd	%xmm3, %xmm6
kusano 2b45e8
	movapd	24 * SIZE(BB), %xmm3
kusano 2b45e8
	addpd	%xmm0, %xmm7
kusano 2b45e8
	movapd	16 * SIZE(AA), %xmm0
kusano 2b45e8
	mulpd	%xmm1, %xmm2
kusano 2b45e8
	mulpd	18 * SIZE(BB), %xmm1
kusano 2b45e8
	addpd	%xmm2, %xmm4
kusano 2b45e8
	movapd	20 * SIZE(BB), %xmm2
kusano 2b45e8
	addpd	%xmm1, %xmm5
kusano 2b45e8
	movapd	10 * SIZE(AA), %xmm1
kusano 2b45e8
	mulpd	%xmm1, %xmm2
kusano 2b45e8
	mulpd	22 * SIZE(BB), %xmm1
kusano 2b45e8
	addpd	%xmm2, %xmm6
kusano 2b45e8
	movapd	32 * SIZE(BB), %xmm2
kusano 2b45e8
	addpd	%xmm1, %xmm7
kusano 2b45e8
	movapd	12 * SIZE(AA), %xmm1
kusano 2b45e8
	mulpd	%xmm1, %xmm3
kusano 2b45e8
	mulpd	26 * SIZE(BB), %xmm1
kusano 2b45e8
	addpd	%xmm3, %xmm4
kusano 2b45e8
	movapd	28 * SIZE(BB), %xmm3
kusano 2b45e8
	addpd	%xmm1, %xmm5
kusano 2b45e8
	movapd	14 * SIZE(AA), %xmm1
kusano 2b45e8
	mulpd	%xmm1, %xmm3
kusano 2b45e8
	mulpd	30 * SIZE(BB), %xmm1
kusano 2b45e8
	addpd	%xmm3, %xmm6
kusano 2b45e8
	movapd	40 * SIZE(BB), %xmm3
kusano 2b45e8
	addpd	%xmm1, %xmm7
kusano 2b45e8
	movapd	24 * SIZE(AA), %xmm1
kusano 2b45e8
kusano 2b45e8
	addl   $16 * SIZE, AA
kusano 2b45e8
	addl   $32 * SIZE, BB
kusano 2b45e8
	decl   %eax
kusano 2b45e8
	jne    .L111
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L112:
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
#else
kusano 2b45e8
	movl	KKK, %eax
kusano 2b45e8
#endif
kusano 2b45e8
	andl	$7, %eax		# if (k & 1)
kusano 2b45e8
	BRANCH
kusano 2b45e8
	je .L114
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L113:
kusano 2b45e8
	mulpd	%xmm0, %xmm2
kusano 2b45e8
	mulpd	 2 * SIZE(BB), %xmm0
kusano 2b45e8
	addpd	%xmm2, %xmm4
kusano 2b45e8
	movapd	 4 * SIZE(BB), %xmm2
kusano 2b45e8
	addpd	%xmm0, %xmm5
kusano 2b45e8
	movapd	 2 * SIZE(AA), %xmm0
kusano 2b45e8
kusano 2b45e8
	addl	$2 * SIZE, AA
kusano 2b45e8
	addl	$4 * SIZE, BB
kusano 2b45e8
	decl	%eax
kusano 2b45e8
	jg	.L113
kusano 2b45e8
	ALIGN_4
kusano 2b45e8
kusano 2b45e8
.L114:
kusano 2b45e8
	movapd	POSINV,  %xmm1
kusano 2b45e8
	movapd	ALPHA_R, %xmm2
kusano 2b45e8
	movapd	ALPHA_I, %xmm3
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm6, %xmm4
kusano 2b45e8
	addpd	%xmm7, %xmm5
kusano 2b45e8
kusano 2b45e8
	SHUFPD_1 %xmm5, %xmm5
kusano 2b45e8
kusano 2b45e8
#if defined(NN) || defined(NT) || defined(TN) || defined(TT) || \
kusano 2b45e8
    defined(NR) || defined(NC) || defined(TR) || defined(TC)
kusano 2b45e8
	xorpd	%xmm1, %xmm5
kusano 2b45e8
#else
kusano 2b45e8
	xorpd	%xmm1, %xmm4
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	movlpd	0 * SIZE(%esi), %xmm0
kusano 2b45e8
	movhpd	1 * SIZE(%esi), %xmm0
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#if defined(NN) || defined(NT) || defined(TN) || defined(TT) || \
kusano 2b45e8
    defined(RR) || defined(RC) || defined(CR) || defined(CC)
kusano 2b45e8
	subpd	%xmm5, %xmm4
kusano 2b45e8
#else
kusano 2b45e8
	addpd	%xmm5, %xmm4
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	pshufd	$0x4e, %xmm4, %xmm5
kusano 2b45e8
	
kusano 2b45e8
	mulpd	%xmm2, %xmm4
kusano 2b45e8
	mulpd	%xmm3, %xmm5
kusano 2b45e8
kusano 2b45e8
	addpd	%xmm5, %xmm4
kusano 2b45e8
kusano 2b45e8
#ifndef TRMMKERNEL
kusano 2b45e8
	addpd	%xmm0, %xmm4
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	movlpd	%xmm4, 0 * SIZE(%esi)
kusano 2b45e8
	movhpd	%xmm4, 1 * SIZE(%esi)
kusano 2b45e8
kusano 2b45e8
#if (defined(TRMMKERNEL) &&  defined(LEFT) &&  defined(TRANSA)) || \
kusano 2b45e8
    (defined(TRMMKERNEL) && !defined(LEFT) && !defined(TRANSA))
kusano 2b45e8
	movl	K, %eax
kusano 2b45e8
	subl	KKK, %eax
kusano 2b45e8
	leal	(,%eax, SIZE), %eax
kusano 2b45e8
	leal	(AA, %eax, 2), AA
kusano 2b45e8
	leal	(BB, %eax, 4), BB
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
#if defined(TRMMKERNEL) && defined(LEFT)
kusano 2b45e8
	addl	$1, KK
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
	addl	$2 * SIZE, %esi		# coffset += 4
kusano 2b45e8
	decl	%ebx			# i --
kusano 2b45e8
	jg	.L110
kusano 2b45e8
	ALIGN_4	
kusano 2b45e8
kusano 2b45e8
.L500:
kusano 2b45e8
	movl	OLD_STACK, %esp
kusano 2b45e8
kusano 2b45e8
	EMMS
kusano 2b45e8
	
kusano 2b45e8
	popl	%ebx
kusano 2b45e8
	popl	%esi
kusano 2b45e8
	popl	%edi
kusano 2b45e8
	popl	%ebp
kusano 2b45e8
	ret
kusano 2b45e8
kusano 2b45e8
	EPILOGUE