diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-06-11 16:45:26 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-06-11 16:45:26 +0900 |
commit | 6f1ee1f12a197fc9f46e9b7a4ef4182715ed890b (patch) | |
tree | a73cf1da186f092ff04f626e51ce52b74e214fc6 | |
parent | 8e0ccba17a22e3ffd6e2df5b591191fe535ee613 (diff) | |
download | xbyak-6f1ee1f12a197fc9f46e9b7a4ef4182715ed890b.tar.gz xbyak-6f1ee1f12a197fc9f46e9b7a4ef4182715ed890b.zip |
add test of xresldtrk/xsusldtrk
-rw-r--r-- | test/misc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/misc.cpp b/test/misc.cpp index 64bbffa..1457691 100644 --- a/test/misc.cpp +++ b/test/misc.cpp @@ -1944,6 +1944,8 @@ CYBOZU_TEST_AUTO(misc) cldemote(ptr[eax+esi*4+0x12]); movdiri(ptr[edx+esi*2+4], eax); movdir64b(eax, ptr[edx]); + xresldtrk(); + xsusldtrk(); #ifdef XBYAK64 cldemote(ptr[rax+rdi*8+0x123]); movdiri(ptr[rax+r12], r9); @@ -1973,6 +1975,8 @@ CYBOZU_TEST_AUTO(misc) 0x67, #endif 0x0f, 0x38, 0xf8, 0x02, // movdir64b + 0xf2, 0x0f, 0x01, 0xe9, // xresldtrk + 0xf2, 0x0f, 0x01, 0xe8, // xsusldtrk #ifdef XBYAK64 0x0f, 0x1c, 0x84, 0xf8, 0x23, 0x01, 0x00, 0x00, // cldemote 0x4e, 0x0f, 0x38, 0xf9, 0x0c, 0x20, // movdiri |