📄 swap.s
字号:
/*********************************************************************//* *//* Optimized BLAS libraries *//* By Kazushige Goto <kgoto@tacc.utexas.edu> *//* *//* Copyright (c) The University of Texas, 2005. All rights reserved. *//* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING *//* THIS SOFTWARE AND DOCUMENTATION, INCLUDING ANY WARRANTIES OF *//* MERCHANTABILITY, FITNESS FOR ANY PARTICULAR PURPOSE, *//* NON-INFRINGEMENT AND WARRANTIES OF PERFORMANCE, AND ANY WARRANTY *//* THAT MIGHT OTHERWISE ARISE FROM COURSE OF DEALING OR USAGE OF *//* TRADE. NO WARRANTY IS EITHER EXPRESS OR IMPLIED WITH RESPECT TO *//* THE USE OF THE SOFTWARE OR DOCUMENTATION. *//* Under no circumstances shall University be liable for incidental, *//* special, indirect, direct or consequential damages or loss of *//* profits, interruption of business, or related expenses which may *//* arise from use of Software or Documentation, including but not *//* limited to those resulting from defects in Software and/or *//* Documentation, or loss or inaccuracy of data of any kind. *//*********************************************************************/#define ASSEMBLER#include "common.h"#define STACK 16#define ARGS 0 #define N 4 + STACK + ARGS(%esp)#ifdef XDOUBLE#define X 32 + STACK + ARGS(%esp)#define INCX 36 + STACK + ARGS(%esp)#define Y 40 + STACK + ARGS(%esp)#define INCY 44 + STACK + ARGS(%esp)#elif defined(DOUBLE)#define X 24 + STACK + ARGS(%esp)#define INCX 28 + STACK + ARGS(%esp)#define Y 32 + STACK + ARGS(%esp)#define INCY 36 + STACK + ARGS(%esp)#else#define X 20 + STACK + ARGS(%esp)#define INCX 24 + STACK + ARGS(%esp)#define Y 28 + STACK + ARGS(%esp)#define INCY 32 + STACK + ARGS(%esp)#endif PROLOGUE pushl %ebp pushl %edi pushl %esi pushl %ebx PROFCODE#ifdef F_INTERFACE_GFORT EMMS#endif movl N, %edx movl X, %esi movl Y, %edi movl INCX, %ebx movl INCY, %ecx sall $BASE_SHIFT, %ebx sall $BASE_SHIFT, %ecx cmpl $SIZE, %ebx jne .L14 cmpl $SIZE, %ecx jne .L14 movl %edx, %eax sarl $2, %eax jle .L15 ALIGN_3.L16: FLD 3 * SIZE(%esi) FLD 2 * SIZE(%esi) FLD 1 * SIZE(%esi) FLD 0 * SIZE(%esi) FLD 3 * SIZE(%edi) FLD 2 * SIZE(%edi) FLD 1 * SIZE(%edi) FLD 0 * SIZE(%edi) FST 0 * SIZE(%esi) FST 1 * SIZE(%esi) FST 2 * SIZE(%esi) FST 3 * SIZE(%esi) FST 0 * SIZE(%edi) FST 1 * SIZE(%edi) FST 2 * SIZE(%edi) FST 3 * SIZE(%edi) addl $4 * SIZE, %esi addl $4 * SIZE, %edi decl %eax jg .L16 ALIGN_3.L15: movl %edx, %eax andl $3, %eax jle .L27 ALIGN_3.L22: FLD (%esi) FLD (%edi) FST (%esi) FST (%edi) addl $SIZE, %esi addl $SIZE, %edi decl %eax jg .L22 jmp .L27 ALIGN_3/* INCX != 1 or INCY != 1 */.L14: movl %edx, %eax sarl $2, %eax jle .L28 ALIGN_2.L29: FLD (%esi) addl %ebx, %esi FLD (%esi) addl %ebx, %esi FLD (%esi) addl %ebx, %esi FLD (%esi) FLD (%edi) addl %ecx, %edi FLD (%edi) addl %ecx, %edi FLD (%edi) addl %ecx, %edi FLD (%edi) FST (%esi) subl %ebx, %esi FST (%esi) subl %ebx, %esi FST (%esi) subl %ebx, %esi FST (%esi) leal (%esi, %ebx, 4), %esi FST (%edi) subl %ecx, %edi FST (%edi) subl %ecx, %edi FST (%edi) subl %ecx, %edi FST (%edi) leal (%edi, %ecx, 4), %edi decl %eax jg .L29 ALIGN_3.L28: movl %edx, %eax andl $3, %eax jle .L27 ALIGN_3.L35: FLD (%esi) FLD (%edi) FST (%esi) addl %ebx, %esi FST (%edi) addl %ecx, %edi decl %eax jg .L35 ALIGN_3.L27: xorl %eax,%eax popl %ebx popl %esi popl %edi popl %ebp ret EPILOGUE
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -