diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-10-14 19:40:52 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-10-14 19:40:52 +0900 |
commit | 220ca76f41f8c78bc32b9e00c50f42344fdc5792 (patch) | |
tree | 22e98ec5e732961ab8773fc292f7b46e6ae855c3 /test | |
parent | 8b0a1acf0e6a2d066086de001637ff4426b50e77 (diff) | |
download | xbyak-220ca76f41f8c78bc32b9e00c50f42344fdc5792.tar.gz xbyak-220ca76f41f8c78bc32b9e00c50f42344fdc5792.zip |
vmovd supports avx10.2
Diffstat (limited to 'test')
-rw-r--r-- | test/avx10/misc.txt | 5 | ||||
-rw-r--r-- | test/test_by_xed.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/test/avx10/misc.txt b/test/avx10/misc.txt index 9464d03..7c969bf 100644 --- a/test/avx10/misc.txt +++ b/test/avx10/misc.txt @@ -165,3 +165,8 @@ vpdpwuuds(ym1, ym2, ptr_b[rax+128]); vpdpwuuds(zm1, zm2, zm3); vpdpwuuds(zm1, zm2, ptr[rax+128]); vpdpwuuds(zm1, zm2, ptr_b[rax+128]); + +// +vmovd(xm10, xm20); +vmovd(xm10, ptr[rax+128]); +vmovd(ptr[rax+128], xm30); diff --git a/test/test_by_xed.cpp b/test/test_by_xed.cpp index ddac779..71b5137 100644 --- a/test/test_by_xed.cpp +++ b/test/test_by_xed.cpp @@ -7,7 +7,7 @@ struct Code : Xbyak::CodeGenerator { Code() : Xbyak::CodeGenerator(4096*8) { - setDefaultEncoding(VexEncoding, EvexEncoding); + setDefaultEncoding(EvexEncoding, AVX10p2Encoding); #include "tmp.cpp" } }; |