Added ASM code patching when loading

For CNv2 variants with different iterations and memory size.
This commit is contained in:
SChernykh 2019-01-14 15:34:55 +01:00
parent 492449e9fb
commit 8b9d5cff91
19 changed files with 118 additions and 2034 deletions

View file

@ -3,58 +3,34 @@ 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
INCLUDE cn2/cnv2_main_loop_ivybridge.inc
ret 0
nop;nop;nop;nop;
cnv2_mainloop_ivybridge_asm ENDP
ALIGN 64
cnv2_mainloop_ryzen_asm PROC
INCLUDE cn2/cnv2_main_loop_ryzen.inc
ret 0
nop;nop;nop;nop;
cnv2_mainloop_ryzen_asm ENDP
ALIGN 64
cnv2_mainloop_bulldozer_asm PROC
INCLUDE cn2/cnv2_main_loop_bulldozer.inc
ret 0
nop;nop;nop;nop;
cnv2_mainloop_bulldozer_asm ENDP
ALIGN 64
cnv2_double_mainloop_sandybridge_asm PROC
INCLUDE cn2/cnv2_double_main_loop_sandybridge.inc
ret 0
nop;nop;nop;nop;
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