Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DEBUGGER] Assemble dialog box instruction proper disassembly and absolute addresses support #13468

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

Nitch2024
Copy link
Contributor

@Nitch2024 Nitch2024 commented Mar 29, 2025

[DEBUGGER] Assemble dialog box instruction automatically filled with the right disassembly instead of .li and the hex since the hex edition is available in "replace instruction"
[DEBUGGER] Assemble dialog can now deal with absolute addresses computing automatically the offset. For example assembling b ->0x80359370 at the address 0x8035936c will result in the right relative jump. Add -> before any address you want to use as absolute to respect the disassembly syntax

…he right disassembly instead of .li and the hex since the hex edition is available in "replace instruction"

[DEBUGGER] Assemble dialog can now deal with absolute addresses computing automatically the offset. For example assembling b ->0x80359370 at the address 0x8035936c will result in the right relative jump. Add -> before any address you want to use as absolute to respect the disassembly syntax
@TryTwo
Copy link
Contributor

TryTwo commented Mar 30, 2025

@vyuuui Do you want to look at this?

@vyuuui
Copy link
Contributor

vyuuui commented Mar 31, 2025

The reason I never did this was because disassembler output is often not valid assembly, both for this assembler and just in general. As an example, the disassembly dolphin gives for 0x554a8006 is rlwinm r10, r10, 16, 0, 3 (0000f000), which has junk at the end of the line which is supposed to represent the mask. There's several other common examples, as well as the entirety of the PS instruction set. The "best" course of action would be a rewrite of the disassembler to be less bespoke, and if the meta information included in many instructions is still desired it could be moved to a separate query.

@Nitch2024
Copy link
Contributor Author

The reason I never did this was because disassembler output is often not valid assembly, both for this assembler and just in general. As an example, the disassembly dolphin gives for 0x554a8006 is rlwinm r10, r10, 16, 0, 3 (0000f000), which has junk at the end of the line which is supposed to represent the mask. There's several other common examples, as well as the entirety of the PS instruction set. The "best" course of action would be a rewrite of the disassembler to be less bespoke, and if the meta information included in many instructions is still desired it could be moved to a separate query.

I did not think it was a big issue since you can delete the added part, and it is more useful than a .li but sure you have a good idea I can look into the disassembler code, add a boolean for verbosity.

…recommendation.

1. Adjusted disassembly decorations when using assemble dialog.
      - Right clicking and assembling "rlwinm r0, r0, 2, 0, 29 (3fffffff)" gets "rlwinm r0, r0, 2, 0, 29" in the dialog box.
      - Right clicking and assembling "ps_add p6, p2+p4" gets "ps_add p6, p2, p4" in the dialog box.
2. Added support for pair single p1,...,p31 register for assembly of all ps instructions. "ps_add p6, p2, p4" works instead of "ps_add f6, f2, f4" required before
3. Added support for assembly of Graphics Quantization Registers for assembly. "psq_l p2, 0(r3), 0, qr0" can now be assembled for example
@Nitch2024
Copy link
Contributor Author

Nitch2024 commented Apr 3, 2025

@vyuuui I made a pass to extend support as you suggested.

  1. Adjusted disassembly decorations when using assemble dialog.
    • Right clicking and assembling "rlwinm r0, r0, 2, 0, 29 (3fffffff)" gets "rlwinm r0, r0, 2, 0, 29" in the dialog box.
    • Right clicking and assembling "ps_add p6, p2+p4" gets "ps_add p6, p2, p4" in the dialog box.
  2. Added support for pair single p0, p1, ... registers for assembly of all ps instructions. "ps_add p6, p2, p4" works instead of "ps_add f6, f2, f4" required before
  3. Added support for assembly of Graphics Quantization Registers for assembly. "psq_l p2, 0(r3), 0, qr0" can now be assembled for example

@TryTwo
Copy link
Contributor

TryTwo commented Apr 3, 2025

Wow thanks for doing this. Can we be sure the ps register order is always the same between the readable code and what the assembler expects?

@Nitch2024
Copy link
Contributor Author

Nitch2024 commented Apr 3, 2025

You mean for the ps_ instruction right? If yes, then yes. I tested as much as I could, the way I did it was by right clicking the ps instructions I would see, assemble them back and make sure the output had not changed. When I did not find them in the code, I assembled them, and made sure when disassembling the values were in the same order. Now I might have missed something, so open to any testing you recommend.

@@ -220,6 +222,8 @@ std::string_view TokenTypeToStr(TokenType tp)
return "GPR";
case TokenType::FPR:
return "FPR";
case TokenType::GQR:
return "QGR";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: typo

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for finding it. Just fixed it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants