https://bugs.kde.org/show_bug.cgi?id=518221

Mark Wielaard <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED

--- Comment #22 from Mark Wielaard <[email protected]> ---
It took a lot of patches, but all have commited now:

commit 96c0817e741907d198afbea30444fd12f4e7ff3d
Author: Alexandra Hájková <[email protected]>
Date:   Wed Jul 1 13:55:11 2026 -0400

    Implement PMOVSXBW SSE4.1 for x86

    Move test_PMOVSXBW from none/tests/amd64/sse4-64.c to
    none/tests/sse4-common.h so both amd64 and x86
    implementations can share it.

    BZ: https://bugs.kde.org/show_bug.cgi?id=518221

commit a012988aa54d20780d136b0702956c24d97d1fd6
Author: Alexandra Hájková <[email protected]>
Date:   Thu Aug 20 16:02:56 2026 +0200

    Implement PMOVSXBD SSE4.1 for x86

    Move test_PMOVSXB from none/tests/amd64/sse4-64.c to
    none/tests/sse4-common.h so both amd64 and x86
    implementations can share it.

    https://bugs.kde.org/show_bug.cgi?id=518221

commit c5639a6bc21928e90cbc5821b7c00cd09666ffaa
Author: Alexandra Hájková <[email protected]>
Date:   Wed Sep 9 12:41:31 2026 +0200

    Implement PMOVZXBD SSE4.1 for x86

    Add dis_PMOVxXBD helper to share the instruction decoding
    between PMOVSXBD and PMOVZXBD.

    Move test_PMOVZXBD from none/tests/amd64/sse4-64.c to
    none/tests/sse4-common.h so both amd64 and x86
    implementations can share it.

    https://bugs.kde.org/show_bug.cgi?id=518221

commit 13ffaf524c4367b132ae8e6fc206b7839e07d20d
Author: Mark Wielaard <[email protected]>
Date:   Tue Sep 15 14:44:38 2026 +0200

    Implement PMOVSXDQ and PMOVZXDQ SSE4.1 for x86

    Add dis_PMOVxXDQ based on amd dis_PMOVxXDQ_128 to guest_x86_toIR.c.
    Decode PMOVSXDQ and PMOVZXDQ using dis_PMOVxXDQ.

    Move test_PMOVSXDQ and test_PMOVZXDQ from amd64/sse4-64.c to
    sse4-common.h. Use test_PMOVSXDQ and test_PMOVZXDQ in
    x86/sse4-x86.c. Update sse4-x86.stdout.exp.

    https://bugs.kde.org/show_bug.cgi?id=518221

commit e3e0596446e025c770b6a0b7b4bf558d84e9bad1
Author: Mark Wielaard <[email protected]>
Date:   Tue Sep 15 17:29:52 2026 +0200

    Implement PMOVZXWQ SSE4.1 for x86

    Decode PMOVZXWQ in guest_x86_toIR.c based on amd64 dis_PMOVZXWQ_128.

    Move test_PMOVZXWQ from amd64/sse4-64.c to sse4-common.h. Add
    test_PMOVZXWQ to x86/sse4-x86.c. Update x86/sse4-x86.stdout.exp.

    https://bugs.kde.org/show_bug.cgi?id=518221

commit 88b0ff866dfb76b9e1cf65a92954b6f7d9765c49
Author: Mark Wielaard <[email protected]>
Date:   Wed Sep 16 15:04:14 2026 +0200

    Implement PMOVSXWQ SSE4.1 for x86

    Decode PMOVSXWQ in guest_x86_toIR.c based on amd64 dis_PMOVSXWQ_128.
    Implement Iop_16Sto64 in host_x86_isel.c.

    Move test_PMOVSXWQ from amd64/sse4-64.c to sse4-common.h. Add
    test_PMOVSXWQ to x86/sse4-x86.c. Update x86/sse4-x86.stdout.exp.

    https://bugs.kde.org/show_bug.cgi?id=518221

commit b50be9cd3ce86c544f173a529ab6821bfa4d0f9a
Author: Mark Wielaard <[email protected]>
Date:   Wed Sep 16 19:06:58 2026 +0200

    Implement PMOVSXWD and PMOVZXWD SSE4.1 for x86

    Add dis_PMOVxXWD based on amd64 dis_PMOVxXWD_128 to guest_x86_toIR.c.
    Decode PMOVSXWD and PMOVZXWD using dis_PMOVxXWD.

    Move test_PMOVSXWD and test_PMOVZXWD from amd64/sse4-64.c to
    sse4-common.h. Use test_PMOVSXWD and test_PMOVZXWD in
    x86/sse4-x86.c. Update sse4-x86.stdout.exp.

    https://bugs.kde.org/show_bug.cgi?id=518221

commit 1a91762dc734fb49b02d34b470edfd8daaea7024
Author: Mark Wielaard <[email protected]>
Date:   Wed Sep 16 19:36:51 2026 +0200

    Implement PMOVZXBW SSE4.1 for x86

    Disassamble PMOVZXBW in guest_x86_toIR.c based on PMOVSXBW from commit
    commit 96c0817e7419. Move test_PMOVZXBW from amd64/sse4-64.c to
    sse4-common.h. Use test_PMOVZXBW in x86/sse4-x86.c. Update
    sse4-x86.stdout.exp

    https://bugs.kde.org/show_bug.cgi?id=518221

commit 76799d6dc1bf3c13158590901aab6e018c3ee20b
Author: Mark Wielaard <[email protected]>
Date:   Thu Sep 17 17:11:18 2026 +0200

    Implement PMOVSXBQ SSE4.1 for x86

    Decode PMOVSXBQ in guest_x86_toIR.c based on amd64 dis_PMOVSXBQ_128.
    Add getXMMRegLane16. Implement Iop_8Sto64 in host_x86_isel.c.

    Move test_PMOVSXBQ from amd64/sse4-64.c to sse4-common.h. Add
    test_PMOVSXBQ to x86/sse4-x86.c. Update x86/sse4-x86.stdout.exp.

    https://bugs.kde.org/show_bug.cgi?id=518221

commit a39373828342af1487809e23ac1b4d70428b4c62
Author: Mark Wielaard <[email protected]>
Date:   Thu Sep 17 17:30:27 2026 +0200

    Implement PMOVZXBQ SSE4.1 for x86

    Decode PMOVZXBQ in guest_x86_toIR.c based on amd64 dis_PMOVZXBQ_128.

    Move test_PMOVZXBQ from amd64/sse4-64.c to sse4-common.h. Add
    test_PMOVZXBQ to x86/sse4-x86.c. Update x86/sse4-x86.stdout.exp.

    https://bugs.kde.org/show_bug.cgi?id=518221

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to