9fb82036ca
2794cde7 add xword, yword, etc. in Xbyak::util fb9c04e4 fix document for vfpclassps a51be78b fix test dependency 04fdfb1e update version e6354f8b add vgf2p8mulb 09a12642 add gf2p8affineqb d171ba0e add gf2p8affineinvqb 457f4fd0 add vpshufbitqmb 5af0ba39 add vpexpand{b,w} e450f965 vpopcnt{d,q} supports ptr_b 48499eb1 add vpdpbusd(s), vpdpwssd(s) 9c745109 add vpdpbusd, vpdpbusds 0e1a11b4 add vpopcnt{b,w,d,q} 9acfc132 add vpshrd(v){w,d,q} ac8de850 add vpshld(v){w,d,q} f181c259 add vcompressb, vcompressw 5a402477 vpclmulqdq supports AVX-512 9e16b40b vaes* supports AVX-512 7fde08e0 add flags for intel's manual 319433-030.pdf c5da3778 add test of v4fmaddps, vp4dpwssd, etc. e4fc9d8a fix mpx encoding d0b2fb62 add bnd(0xf2) prefix for MPX f12b5678 use db for array cd74ab44 remove bat file git-subtree-dir: externals/xbyak git-subtree-split: 2794cde79eb71e86490061cac9622ad0067b8d15
37 lines
767 B
Batchfile
37 lines
767 B
Batchfile
@echo off
|
|
set FILTER=grep -v warning
|
|
if /i "%1"=="64" (
|
|
set OPT2=-DXBYAK64
|
|
set OPT3=win64
|
|
) else (
|
|
set OPT2=-DXBYAK32
|
|
set OPT3=win32
|
|
)
|
|
|
|
call set_opt
|
|
bmake -f Makefile.win all
|
|
|
|
if /i "%1"=="64" (
|
|
call :sub 1
|
|
call :sub 2
|
|
) else (
|
|
call :sub 1
|
|
)
|
|
goto end
|
|
|
|
:sub
|
|
echo cl address.cpp %OPT% %OPT2%
|
|
cl address.cpp %OPT% %OPT2%
|
|
address %1% > a.asm
|
|
echo nasm -f %OPT3% -l a.lst a.asm
|
|
nasm -f %OPT3% -l a.lst a.asm
|
|
awk "{if (index($3, ""-"")) { conti=substr($3, 0, length($3) - 1) } else { conti = conti $3; print conti; conti = """" }} " < a.lst |%FILTER% > ok.lst
|
|
echo address %1% jit > nm.cpp
|
|
address %1% jit > nm.cpp
|
|
echo cl -I../ -DXBYAK_TEST nm_frame.cpp %OPT% %OPT2%
|
|
cl -I../ -DXBYAK_TEST nm_frame.cpp %OPT% %OPT2%
|
|
nm_frame > x.lst
|
|
diff x.lst ok.lst
|
|
wc x.lst
|
|
|
|
:end
|