Commit graph

45 commits

Author SHA1 Message Date
Exzap
405cc0f071 PPCRec: Small cleanup 2025-04-26 17:20:45 +02:00
Exzap
ec107973f0 PPCRec: Fix compile error after rebase 2025-04-26 00:56:45 +02:00
Exzap
dad18c4a37 PPCRec: Optimizations 2025-04-26 00:27:15 +02:00
Exzap
f11cfa0dc5 PPCRec: Rework RLWIMI 2025-04-26 00:27:15 +02:00
Exzap
05e3cfe5c9 PPCRec: Code cleanup 2025-04-26 00:27:14 +02:00
Exzap
711b56c9f6 PPCRec: Reintroduce optimization for BDNZ loops 2025-04-26 00:24:43 +02:00
Exzap
f94f99546d PPCRec: Fixes and optimizations + rework FRES/FRSQRTE 2025-04-26 00:24:43 +02:00
Exzap
89f8f9bd2a PPCRec: Implement MCRF, rework DCBZ 2025-04-26 00:24:43 +02:00
Exzap
972d0ed05d PPCRec: Clean up code and optimize 2025-04-26 00:24:43 +02:00
Exzap
b55785a0a0 PPCRec: Support for arbitrary function calls in the IR
Used for MFTBU/MFTBL instruction
2025-04-26 00:22:37 +02:00
Exzap
aa946ae42d PPCRec: Add RA support for instructions with register constraints
Also make interval tracking more fine grained and differentiate between input and output edges of each instruction
2025-04-26 00:22:37 +02:00
Exzap
f55b842773 PPCRec: Dead code elimination + reintroduce pre-rework optimizations 2025-04-26 00:22:37 +02:00
Exzap
1cc458c543 PPCRec: Implement MFCR and MTCRF 2025-04-26 00:22:37 +02:00
Exzap
9dd4f9b9a3 PPCRec: FPRs now use the shared register allocator 2025-04-26 00:22:37 +02:00
Exzap
e9c161c508 PPCRec: Initial support for typed registers 2025-04-26 00:22:37 +02:00
Exzap
86b82be8ef PPCRec: Use agnostic breakpoints 2025-04-26 00:22:36 +02:00
Exzap
948e33f9bf PPCRec: Unify code + misc RA preparation
Whoopsie
2025-04-26 00:22:36 +02:00
Exzap
1f6f74d6ac PPCRec: Simplify PPC and IML logic instructions
Also implement PPC NAND instruction
2025-04-26 00:22:36 +02:00
Exzap
429413d88e PPCRec: Use IMLReg in more places, unify and simplify var names 2025-04-26 00:22:36 +02:00
Exzap
dd805cb483 PPCRec: Refactor load/store instructions 2025-04-26 00:22:36 +02:00
Exzap
81fd7c8d1f PPCRec: Refactoring and clean up 2025-04-26 00:22:36 +02:00
Exzap
ce9a48b987 PPCRec: Rework CR bit handling
CR bits are now resident in registers instead of being baked into the instruction definitions. Same for XER SO, and LWARX reservation EA and value.

Reworked LWARX/STWCX, CRxx ops, compare and branch instructions. As well as RC bit handling. Not all CR-related instructions are reimplemented yet.

Introduced atomic_cmp_store operation to allow implementing STWCX in architecture agnostic IML

Removed legacy CR-based compare and jump operations
2025-04-26 00:22:36 +02:00
Exzap
db1f9c162f PPCRec: Avoid complex optimizations in backend
It's better to do it in a lowering pass so that the backend code can be kept as simple as possible
2025-04-26 00:22:36 +02:00
Exzap
f305a2ba17 PPCRec: Rework carry bit and generalize carry IML instructions
Carry bit is now resident in a register-allocated GPR instead of being backed directly into IML instructions

All the PowerPC carry ADD* and SUB* instructions as well as SRAW/SRAWI have been reworked to use more generalized IML instructions for handling carry

IML instructions now support two named output registers instead of only one (easily extendable to arbitrary count)
2025-04-26 00:22:36 +02:00
Exzap
84909d109f PPCRec: Further unify CR code 2025-04-26 00:22:36 +02:00
Exzap
c5ef9a5a98 PPCRec: Streamline instructions + unify code for CR updates 2025-04-26 00:22:36 +02:00
Exzap
a51a8bb7d5 PPCRec: New compare and cond jump instrs, update RA
Storing the condition result in a register instead of imitating PPC CR lets us simplify the backend a lot. Only implemented as PoC for BDZ/BDNZ so far.
2025-04-26 00:22:36 +02:00
Exzap
c4fb7b74f8 PPCRec: Make LSWI/STWSI more generic + GPR temporaries storage 2025-04-26 00:22:35 +02:00
Exzap
d724dded8e PPCRec: Clean up unused flags 2025-04-26 00:22:35 +02:00
Exzap
0f1d7532a1 PPCRec: Remove now unused PPC_ENTER and jumpMarkAddress 2025-04-26 00:22:35 +02:00
Exzap
6cdcef880b PPCRec: Fix single segment loop not being detected
Also removed associatedPPCAddress field from IMLInstruction as it's no longer used
2025-04-26 00:22:35 +02:00
Exzap
bb6b18d78f PPCRec: Unify BCCTR and BCLR code
Instead of having fixed macros for BCCTR/BCCTRL/BCLR/BCLRL we now have only one single macro instruction that takes the jump destination as a register parameter.
This also allows us to reuse an already loaded LR register (by something like MTLR) instead of loading it again from memory.

As a necessary requirement for this: The register allocator now has support for read operations in suffix instructions
2025-04-26 00:22:35 +02:00
Exzap
e1e710e3f5 PPCRec: Reworked IML builder to work with basic-blocks
Intermediate commit while I'm still fixing things but I didn't want to pile on too many changes in a single commit.
New:
Reworked PPC->IML converter to first create a graph of basic blocks and then turn those into IML segment(s). This was mainly done to decouple IML design from having PPC specific knowledge like branch target addresses. The previous design also didn't allow to preserve cycle counting properly in all cases since it was based on IML instruction counting.
The new solution supports functions with non-continuous body. A pretty common example for this is when functions end with a trailing B instruction to some other place.

Current limitations:
- BL inlining not implemented
- MFTB not implemented
- BCCTR and BCLR are only partially implemented

Undo vcpkg change
2025-04-26 00:22:35 +02:00
Exzap
da08eda506 PPCRec: Emit x86 movd for non-AVX + more restructuring 2025-04-26 00:22:35 +02:00
Exzap
411a83799c PPCRec: Move IML register allocator 2025-04-26 00:22:35 +02:00
Exzap
231b5c5dc3 PPCRec: Move IML optimizer file 2025-04-26 00:22:35 +02:00
Exzap
14d82ae4a5 PPCRec: Move analyzer file + move some funcs to IMLInstruction 2025-04-26 00:22:35 +02:00
Exzap
f95180d0fc PPCRec: Move debug printing + smaller clean up 2025-04-26 00:22:35 +02:00
Exzap
faf6c17438 PPCRec: Rename IML structs for better clarity 2025-04-26 00:22:34 +02:00
Exzap
4abd5127c0 PPCRec: Move Segment and Instruction struct into separate files 2025-04-26 00:22:34 +02:00
Exzap
ce5d010611 PPCRec: Use vector for instruction list 2025-04-26 00:22:34 +02:00
Exzap
d42ea6e5a8 PPCRec: Use vector for segment list + deduplicate RA file 2025-04-26 00:22:34 +02:00
why-keith
4be57f4896
Migrate force_log_printf to new logging (#714) 2023-04-12 16:31:34 +02:00
Exzap
3bceb39966
Remove PUBLIC_RELEASE flag and tie asserts to debug config (#287)
Removes the -DPUBLIC_RELEASE flag. Cemu's debug asserts are now only enabled if the build configuration is Debug. Similarly, on Windows the console is only shown for Debug builds.
2022-09-24 08:43:27 +02:00
Exzap
d60742f52b Add all the files 2022-08-22 22:21:23 +02:00