nb_kernel010_x86_64_sse.intel_syntax.s

来自「最著名最快的分子模拟软件」· S 代码 · 共 1,299 行 · 第 1/3 页

S
1,299
字号
;#;# $Id: nb_kernel010_x86_64_sse.intel_syntax.s,v 1.1.2.2 2006/09/22 08:32:48 lindahl Exp $;#;# Gromacs 4.0                         Copyright (c) 1991-2003 ;# David van der Spoel, Erik Lindahl;#;# This program is free software; you can redistribute it and/or;# modify it under the terms of the GNU General Public License;# as published by the Free Software Foundation; either version 2;# of the License, or (at your option) any later version.;#;# To help us fund GROMACS development, we humbly ask that you cite;# the research papers on the package. Check out http://www.gromacs.org;# ;# And Hey:;# Gnomes, ROck Monsters And Chili Sauce;#;# These files require GNU binutils 2.10 or later, since we;# use intel syntax for portability, or a recent version ;# of NASM that understands Extended 3DNow and SSE2 instructions.;# (NASM is normally only used with MS Visual C++).;# Since NASM and gnu as disagree on some definitions and use ;# completely different preprocessing options I have to introduce a;# trick: NASM uses ';' for comments, while gnu as uses '#' on x86.;# Gnu as treats ';' as a line break, i.e. ignores it. This is the;# reason why all comments need both symbols...;# The source is written for GNU as, with intel syntax. When you use;# NASM we redefine a couple of things. The false if-statement around ;# the following code is seen by GNU as, but NASM doesn't see it, so ;# the code inside is read by NASM but not gcc.; .if 0    # block below only read by NASM%define .section	section%define .long		dd%define .align		align%define .globl		global;# NASM only wants 'dword', not 'dword ptr'.%define ptr.equiv          .equiv                  2   %1 equ %2%endmacro; .endif                   # End of NASM-specific block; .intel_syntax noprefix   # Line only read by gnu as;# nb010 - forces are calculated.globl nb_kernel010_x86_64_sse.globl _nb_kernel010_x86_64_ssenb_kernel010_x86_64_sse:	_nb_kernel010_x86_64_sse:	;#	Room for return address and rbp (16 bytes).equiv          nb010_fshift,           16.equiv          nb010_gid,              24.equiv          nb010_pos,              32.equiv          nb010_faction,          40.equiv          nb010_charge,           48.equiv          nb010_p_facel,          56.equiv          nb010_argkrf,           64.equiv          nb010_argcrf,           72.equiv          nb010_Vc,               80.equiv          nb010_type,             88.equiv          nb010_p_ntype,          96.equiv          nb010_vdwparam,         104.equiv          nb010_Vvdw,             112.equiv          nb010_p_tabscale,       120.equiv          nb010_VFtab,            128.equiv          nb010_invsqrta,         136.equiv          nb010_dvda,             144.equiv          nb010_p_gbtabscale,     152.equiv          nb010_GBtab,            160.equiv          nb010_p_nthreads,       168.equiv          nb010_count,            176.equiv          nb010_mtx,              184.equiv          nb010_outeriter,        192.equiv          nb010_inneriter,        200.equiv          nb010_work,             208        ;# The mutex (last arg) is not used in assembly.	;# stack offsets for local variables  	;# bottom of stack is cache-aligned for sse use .equiv          nb010_ix,               0.equiv          nb010_iy,               16.equiv          nb010_iz,               32.equiv          nb010_dx,               48.equiv          nb010_dy,               64.equiv          nb010_dz,               80.equiv          nb010_two,              96.equiv          nb010_c6,               112.equiv          nb010_c12,              128.equiv          nb010_six,              144.equiv          nb010_twelve,           160.equiv          nb010_Vvdwtot,          176.equiv          nb010_fix,              192.equiv          nb010_fiy,              208.equiv          nb010_fiz,              224.equiv          nb010_half,             240.equiv          nb010_three,            256.equiv          nb010_nri,              272.equiv          nb010_iinr,             280.equiv          nb010_jindex,           288.equiv          nb010_jjnr,             296.equiv          nb010_shift,            304.equiv          nb010_shiftvec,         312.equiv          nb010_facel,            320.equiv          nb010_innerjjnr,        328.equiv          nb010_is3,              336.equiv          nb010_ii3,              340.equiv          nb010_ntia,             344.equiv          nb010_innerk,           348.equiv          nb010_n,                352.equiv          nb010_nn1,              356.equiv          nb010_ntype,            360.equiv          nb010_nouter,           364.equiv          nb010_ninner,           368	push rbp	mov  rbp, rsp	push rbx		push r12	push r13	push r14	push r15		emms        sub rsp, 392            ; # local variable stack space (n*16+8)                                                         	;# zero 32-bit iteration counters	mov eax, 0	mov [rsp + nb010_nouter], eax	mov [rsp + nb010_ninner], eax		mov edi, [rdi]	mov [rsp + nb010_nri], edi	mov [rsp + nb010_iinr], rsi	mov [rsp + nb010_jindex], rdx	mov [rsp + nb010_jjnr], rcx	mov [rsp + nb010_shift], r8	mov [rsp + nb010_shiftvec], r9	mov rdi, [rbp + nb010_p_ntype]	mov edi, [rdi]	mov [rsp + nb010_ntype], edi    ;# create constant floating-point factors on stack    mov eax, 0x40000000     ;# 2.0 in IEEE (hex)    mov [rsp + nb010_two], eax    movss xmm1, [rsp + nb010_two]	shufps xmm1, xmm1, 0    ;# splat to all elements	movaps xmm2, xmm1	addps  xmm2, xmm1       ;# 4.0	addps  xmm2, xmm1       ;# 6.0	movaps xmm3, xmm2	addps  xmm3, xmm3       ;# 12.0	movaps [rsp + nb010_two], xmm1    movaps [rsp + nb010_six],  xmm2    movaps [rsp + nb010_twelve], xmm3	.nb010_threadloop:    mov   rsi, [rbp + nb010_count]          ;# pointer to sync counter    mov   eax, [rsi].nb010_spinlock:    mov   ebx, eax                          ;# ebx=*count=nn0    add   ebx, 1                            ;# ebx=nn1=nn0+10        lock        cmpxchg [esi], ebx                      ;# write nn1 to *counter,                                            ;# if it hasnt changed.                                            ;# or reread *counter to eax.    pause                                   ;# -> better p4 performance    jnz .nb010_spinlock    ;# if(nn1>nri) nn1=nri    mov ecx, [rsp + nb010_nri]    mov edx, ecx    sub ecx, ebx    cmovle ebx, edx                         ;# if(nn1>nri) nn1=nri    ;# Cleared the spinlock if we got here.    ;# eax contains nn0, ebx contains nn1.    mov [rsp + nb010_n], eax    mov [rsp + nb010_nn1], ebx    sub ebx, eax                            ;# calc number of outer lists    mov esi, eax				;# copy n to esi    jg  .nb010_outerstart    jmp .nb010_end.nb010_outerstart:	;# ebx contains number of outer iterations	add ebx, [rsp + nb010_nouter]	mov [rsp + nb010_nouter], ebx.nb010_outer:    mov   rax, [rsp + nb010_shift]      	;# rax = base of shift[]     mov   ebx, [rax + rsi*4]            	;# ebx=shift[n]     lea   rbx, [rbx + rbx*2]    		;# rbx=3*is     mov   [rsp + nb010_is3],ebx     	;# store is3     mov   rax, [rsp + nb010_shiftvec]   	;# rax = base of shiftvec[] 	movss xmm10, [rax + rbx*4]	movss xmm11, [rax + rbx*4 + 4]	movss xmm12, [rax + rbx*4 + 8]     mov   rcx, [rsp + nb010_iinr]       	;# rcx = base of iinr[]     mov   ebx, [rcx + rsi*4]            	;# ebx =ii     mov  rdx, [rbp + nb010_type]     mov  edx, [rdx + rbx*4]    imul edx, [rsp + nb010_ntype]    shl  edx, 1    mov  [rsp + nb010_ntia], edx    lea   rbx, [rbx + rbx*2]        	;# rbx = 3*ii=ii3     mov   rax, [rbp + nb010_pos]    	;# rax = base of pos[]  	addss xmm10, [rax + rbx*4]	addss xmm11, [rax + rbx*4 + 4]	addss xmm12, [rax + rbx*4 + 8]    shufps xmm10, xmm10, 0    shufps xmm11, xmm11, 0    shufps xmm12, xmm12, 0    movaps [rsp + nb010_ix], xmm10    movaps [rsp + nb010_iy], xmm11    movaps [rsp + nb010_iz], xmm12            mov   [rsp + nb010_ii3], ebx	;# clear vvdwtot (xmm12) and i forces (xmm13-xmm15)	xorps xmm12, xmm12	movaps xmm13, xmm12	movaps xmm14, xmm12	movaps xmm15, xmm12            mov   rax, [rsp + nb010_jindex]    mov   ecx, [rax  + rsi*4]    		;# jindex[n]     mov   edx, [rax + rsi*4 + 4]         	;# jindex[n+1]     sub   edx, ecx               		;# number of innerloop atoms             mov   rax, [rsp + nb010_jjnr]    shl   ecx, 2    add   rax, rcx    mov   [rsp + nb010_innerjjnr], rax      ;# pointer to jjnr[nj0] 	mov   ecx, edx    sub   edx,  4	add   ecx, [rsp + nb010_ninner]	mov   [rsp + nb010_ninner], ecx	add   edx, 0    mov   [rsp + nb010_innerk], edx         ;# number of innerloop atoms     jge   .nb010_unroll_loop    jmp   .nb010_finish_inner.nb010_unroll_loop:	;# quad-unrolled innerloop here 	mov   rdx, [rsp + nb010_innerjjnr]     ;# pointer to jjnr[k] 	mov   eax, [rdx]		mov   ebx, [rdx + 4]              	mov   ecx, [rdx + 8]            	mov   edx, [rdx + 12]         ;# eax-edx=jnr1-4     	add qword ptr [rsp + nb010_innerjjnr],  16 ;# advance pointer (unrolled 4) 	lea   r8, [rax + rax*2]     ;# replace jnr with j3 	lea   r9, [rbx + rbx*2]		lea   r10, [rcx + rcx*2]    	lea   r11, [rdx + rdx*2]		mov rdi, [rbp + nb010_pos]	;# load coordinates	movlps xmm1, [rdi + r8*4]	;# x1 y1 - - 	movlps xmm2, [rdi + r10*4]	;# x3 y3 - - 	movhps xmm1, [rdi + r9*4]	;# x2 y2 - -	movhps xmm2, [rdi + r11*4]	;# x4 y4 - -	movss xmm5, [rdi + r8*4 + 8]	;# z1 - - - 	movss xmm6, [rdi + r10*4 + 8]	;# z2 - - - 	movss xmm7, [rdi + r9*4 + 8]	;# z3 - - - 	movss xmm8, [rdi + r11*4 + 8]	;# z4 - - -     movlhps xmm5, xmm7 ;# jzOa  -  jzOb  -    movlhps xmm6, xmm8 ;# jzOc  -  jzOd -	mov rsi, [rbp + nb010_type]    movaps xmm4, xmm1    unpcklps xmm1, xmm2  ;# jxa jxc jya jyc            unpckhps xmm4, xmm2  ;# jxb jxd jyb jyd    movaps xmm2, xmm1    unpcklps xmm1, xmm4 ;# x    unpckhps xmm2, xmm4 ;# y    shufps   xmm5, xmm6,  136  ;# 10001000 => jzH2a jzH2b jzH2c jzH2d    ;# load vdw types	mov r12d, [rsi + rax*4]	mov r13d, [rsi + rbx*4]	mov r14d, [rsi + rcx*4]	mov r15d, [rsi + rdx*4]	;# calc dr  	subps xmm1, [rsp + nb010_ix]	subps xmm2, [rsp + nb010_iy]	subps xmm5, [rsp + nb010_iz]	;# store dr in xmm9-xmm11    movaps xmm9, xmm1    movaps xmm10, xmm2    movaps xmm11, xmm5    ;# type *=2	shl r12d, 1		shl r13d, 1		shl r14d, 1		shl r15d, 1	    	;# square it 	mulps xmm1,xmm1	mulps xmm2,xmm2	mulps xmm5,xmm5	addps xmm1, xmm2	addps xmm1, xmm5	;# rsq in xmm1        ;# 2*type*ntia    mov edi, [rsp + nb010_ntia]	add r12d, edi	add r13d, edi	add r14d, edi	add r15d, edi	mov rsi, [rbp + nb010_vdwparam]    ;# xmm0=c6    ;# xmm3=c12	rcpps xmm5, xmm1	;# 1/x lookup seed in xmm5 	movaps xmm6, [rsp + nb010_two]	mulps xmm1, xmm5    ;# load c6/c12	movlps xmm7, [rsi + r12*4]	movlps xmm8, [rsi + r14*4]	subps xmm6, xmm1	mulps xmm6, xmm5	;# xmm6=rinvsq    	movaps xmm4, xmm6   ;# rinvsq	movhps xmm7, [rsi + r13*4]	movhps xmm8, [rsi + r15*4]	movaps xmm1, xmm6	mulps  xmm1, xmm6   ;# rinv4	mulps  xmm1, xmm6	;# rinv6	movaps xmm2, xmm1	mulps  xmm2, xmm2	;# xmm2=rinv12    ;# shuffle c6/c12	movaps xmm5, xmm7	shufps xmm5, xmm8, 136  ;# 10001000	shufps xmm7, xmm8, 221  ;# 11011101		mov rsi, [rbp + nb010_faction]	mulps  xmm1, xmm5  ;# c6*rinv6	mulps  xmm2, xmm7  ;# c12*rinv12	movaps xmm5, xmm2	subps  xmm5, xmm1	;# Vvdw=Vvdw12-Vvdw6 	mulps  xmm1, [rsp + nb010_six]	mulps  xmm2, [rsp + nb010_twelve]	subps  xmm2, xmm1	mulps  xmm4, xmm2	;# xmm4=total fscal         	;# the fj's - start by accumulating x & y forces from memory 	movlps xmm0, [rsi + r8*4] ;# x1 y1 - -	movlps xmm1, [rsi + r10*4] ;# x3 y3 - -	movhps xmm0, [rsi + r9*4] ;# x1 y1 x2 y2	movhps xmm1, [rsi + r11*4] ;# x3 y3 x4 y4    ;# add potential to Vvdwtot (sum in xmm12)	addps  xmm12, xmm5    ;# calculate scalar force by multiplying dx/dy/dz with fscal	mulps  xmm9, xmm4	mulps  xmm10, xmm4	mulps  xmm11, xmm4	;# xmm0-xmm2 contains tx-tz (partial force) 	;# accumulate i forces    addps xmm13, xmm9    addps xmm14, xmm10    addps xmm15, xmm11    ;# permute local forces    movaps xmm8, xmm9    unpcklps xmm9, xmm10 ;# x1 y1 x2 y2    unpckhps xmm8, xmm10 ;# x3 y3 x4 y4        ;# xmm11: fjz1 fjz2 fjz3 fjz4    pshufd  xmm5, xmm11, 1  ;# fjz2 - - -    movhlps xmm4,  xmm11     ;# fjz3 - - -    pshufd  xmm3,  xmm11, 3  ;# fjz4 - - -    ;# update fjx and fjy	addps  xmm0, xmm9	addps  xmm1, xmm8		movlps [rsi + r8*4], xmm0	movlps [rsi + r10*4], xmm1	movhps [rsi + r9*4], xmm0	movhps [rsi + r11*4], xmm1    	addss  xmm11, [rsi + r8*4 + 8]	addss  xmm5, [rsi + r9*4 + 8]	addss  xmm4,  [rsi + r10*4 + 8]	addss  xmm3,  [rsi + r11*4 + 8]    	movss  [rsi + r8*4 + 8], xmm11	movss  [rsi + r9*4 + 8], xmm5	movss  [rsi + r10*4 + 8], xmm4	movss  [rsi + r11*4 + 8], xmm3		;# should we do one more iteration? 	sub dword ptr [rsp + nb010_innerk],  4	jl    .nb010_finish_inner	jmp   .nb010_unroll_loop.nb010_finish_inner:    ;# check if at least two particles remain     add dword ptr [rsp + nb010_innerk],  4    mov   edx, [rsp + nb010_innerk]    and   edx, 2    jnz   .nb010_dopair    jmp   .nb010_checksingle.nb010_dopair:  	;# twice-unrolled innerloop here 	mov   rdx, [rsp + nb010_innerjjnr]     ;# pointer to jjnr[k] 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?