[PR #207] [CLOSED] Lrcoutinho lxvrbx #242

Open
opened 2026-01-31 21:30:25 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/207
Author: @lrcoutinho
Created: 2/11/2022
Status: Closed

Base: masterHead: lrcoutinho-lxvrbx


📝 Commits (10+)

  • 97cd131 target/ppc: Introduce TRANS*FLAGS macros
  • b3edb8c target/ppc: moved vector even and odd multiplication to decodetree
  • 9936d0d target/ppc: Moved vector multiply high and low to decodetree
  • 76650a5 target/ppc: vmulh* instructions use gvec
  • 2c5e447 target/ppc: Implement vmsumcud instruction
  • 8550e22 target/ppc: Implement vmsumudm instruction
  • daacc43 target/ppc: Move vexts[bhw]2[wd] to decodetree
  • 14572b1 target/ppc: Implement vextsd2q
  • d6c5f6f target/ppc: Move Vector Compare Equal/Not Equal/Greater Than to decodetree
  • 4281c49 target/ppc: Move Vector Compare Not Equal or Zero to decodetree

📊 Changes

13 files changed (+2076 additions, -573 deletions)

View changed files

📝 include/tcg/tcg-op-gvec.h (+22 -0)
📝 target/ppc/fpu_helper.c (+105 -66)
📝 target/ppc/helper.h (+65 -78)
📝 target/ppc/insn32.decode (+193 -3)
📝 target/ppc/insn64.decode (+28 -12)
📝 target/ppc/int_helper.c (+221 -133)
📝 target/ppc/translate.c (+19 -0)
📝 target/ppc/translate/vmx-impl.c.inc (+819 -75)
📝 target/ppc/translate/vmx-ops.c.inc (+4 -37)
📝 target/ppc/translate/vsx-impl.c.inc (+448 -102)
📝 target/ppc/translate/vsx-ops.c.inc (+0 -67)
📝 tcg/ppc/tcg-target.c.inc (+6 -0)
📝 tcg/tcg-op-gvec.c (+146 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/207 **Author:** [@lrcoutinho](https://github.com/lrcoutinho) **Created:** 2/11/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `lrcoutinho-lxvrbx` --- ### 📝 Commits (10+) - [`97cd131`](https://github.com/qemu/qemu/commit/97cd13163c490e0d6aae912c7b933bccdbe8524e) target/ppc: Introduce TRANS*FLAGS macros - [`b3edb8c`](https://github.com/qemu/qemu/commit/b3edb8c726613c9915483218ab8e172bb00c4408) target/ppc: moved vector even and odd multiplication to decodetree - [`9936d0d`](https://github.com/qemu/qemu/commit/9936d0dffee0e6d2dfb8d280cdc0026e8d51464e) target/ppc: Moved vector multiply high and low to decodetree - [`76650a5`](https://github.com/qemu/qemu/commit/76650a52750ea865cbbab68df97d7306b782380d) target/ppc: vmulh* instructions use gvec - [`2c5e447`](https://github.com/qemu/qemu/commit/2c5e447dbb501ee26a7691c9f841a99fe1ce3e24) target/ppc: Implement vmsumcud instruction - [`8550e22`](https://github.com/qemu/qemu/commit/8550e2234d9b3952908499c519895b09d6916a4c) target/ppc: Implement vmsumudm instruction - [`daacc43`](https://github.com/qemu/qemu/commit/daacc438382dfcbc7ff3e759cf8a1b75ef31416f) target/ppc: Move vexts[bhw]2[wd] to decodetree - [`14572b1`](https://github.com/qemu/qemu/commit/14572b159809bf76614a3fbc6475960afc38c163) target/ppc: Implement vextsd2q - [`d6c5f6f`](https://github.com/qemu/qemu/commit/d6c5f6fd92e956fc43f73aa7f0f939a916a9e9a4) target/ppc: Move Vector Compare Equal/Not Equal/Greater Than to decodetree - [`4281c49`](https://github.com/qemu/qemu/commit/4281c4915961199ced28f572416b51e1387e5140) target/ppc: Move Vector Compare Not Equal or Zero to decodetree ### 📊 Changes **13 files changed** (+2076 additions, -573 deletions) <details> <summary>View changed files</summary> 📝 `include/tcg/tcg-op-gvec.h` (+22 -0) 📝 `target/ppc/fpu_helper.c` (+105 -66) 📝 `target/ppc/helper.h` (+65 -78) 📝 `target/ppc/insn32.decode` (+193 -3) 📝 `target/ppc/insn64.decode` (+28 -12) 📝 `target/ppc/int_helper.c` (+221 -133) 📝 `target/ppc/translate.c` (+19 -0) 📝 `target/ppc/translate/vmx-impl.c.inc` (+819 -75) 📝 `target/ppc/translate/vmx-ops.c.inc` (+4 -37) 📝 `target/ppc/translate/vsx-impl.c.inc` (+448 -102) 📝 `target/ppc/translate/vsx-ops.c.inc` (+0 -67) 📝 `tcg/ppc/tcg-target.c.inc` (+6 -0) 📝 `tcg/tcg-op-gvec.c` (+146 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:30:25 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#242