#899 Add ASM implementation for cn/half.

This commit is contained in:
XMRig 2019-01-14 18:09:16 +07:00
parent b43336582d
commit 492449e9fb
14 changed files with 2075 additions and 13 deletions

View file

@ -3,6 +3,10 @@ PUBLIC cnv2_mainloop_ivybridge_asm
PUBLIC cnv2_mainloop_ryzen_asm
PUBLIC cnv2_mainloop_bulldozer_asm
PUBLIC cnv2_double_mainloop_sandybridge_asm
PUBLIC cn_half_mainloop_ivybridge_asm
PUBLIC cn_half_mainloop_ryzen_asm
PUBLIC cn_half_mainloop_bulldozer_asm
PUBLIC cn_half_double_mainloop_sandybridge_asm
ALIGN 64
cnv2_mainloop_ivybridge_asm PROC
@ -28,5 +32,29 @@ cnv2_double_mainloop_sandybridge_asm PROC
ret 0
cnv2_double_mainloop_sandybridge_asm ENDP
ALIGN 64
cn_half_mainloop_ivybridge_asm PROC
INCLUDE cn_half/cn_half_main_loop_ivybridge.inc
ret 0
cn_half_mainloop_ivybridge_asm ENDP
ALIGN 64
cn_half_mainloop_ryzen_asm PROC
INCLUDE cn_half/cn_half_main_loop_ryzen.inc
ret 0
cn_half_mainloop_ryzen_asm ENDP
ALIGN 64
cn_half_mainloop_bulldozer_asm PROC
INCLUDE cn_half/cn_half_main_loop_bulldozer.inc
ret 0
cn_half_mainloop_bulldozer_asm ENDP
ALIGN 64
cn_half_double_mainloop_sandybridge_asm PROC
INCLUDE cn_half/cn_half_double_main_loop_sandybridge.inc
ret 0
cn_half_double_mainloop_sandybridge_asm ENDP
_TEXT_CNV2_MAINLOOP ENDS
END