| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-06-19 | Merge pull request #4087 from MerryMage/macrojit-inline-Read | bunnei | |
| macro_jit_x64: Inline Engines::Maxwell3D::GetRegisterValue | |||
| 2020-06-19 | macro_jit_x64: Remove unused function Read | MerryMage | |
| 2020-06-18 | Merge pull request #4090 from MerryMage/macrojit-bugs | bunnei | |
| macro_jit_x64: Optimization correctness | |||
| 2020-06-17 | macro_jit_x64: Inline Engines::Maxwell3D::GetRegisterValue | MerryMage | |
| 2020-06-17 | Merge pull request #4086 from MerryMage/abi | bunnei | |
| xbyak_abi: Cleanup | |||
| 2020-06-17 | macro_jit_x64: Optimization implicitly assumes same destination | MerryMage | |
| 2020-06-17 | macro_jit_x64: Should not skip zero registers for certain ALU ops | MerryMage | |
| The code generated for these ALU ops assume src_a and src_b are always valid. | |||
| 2020-06-16 | Merge pull request #4089 from MerryMage/macrojit-cleanup-1 | bunnei | |
| macro_jit_x64: Cleanup | |||
| 2020-06-15 | macro_jit_x64: Remove NEXT_PARAMETER | MerryMage | |
| Not required, as PARAMETERS can just be incremented directly. | |||
| 2020-06-15 | macro_jit_x64: Remove unused function Compile_WriteCarry | MerryMage | |
| 2020-06-15 | macro_jit_x64: Select better registers | MerryMage | |
| All registers are now callee-save registers. RBX and RBP selected for STATE and RESULT because these are most commonly accessed; this is to avoid the REX prefix. RBP not used for STATE because there are some SIB restrictions, RBX emits smaller code. | |||
| 2020-06-15 | macro_jit_x64: Remove REGISTERS | MerryMage | |
| Unnecessary since this is just an offset from STATE. | |||
| 2020-06-15 | macro_jit_x64: Remove JITState::parameters | MerryMage | |
| This can be passed in as an argument instead. | |||
| 2020-06-15 | macro_jit_x64: Remove METHOD_ADDRESS_64 | MerryMage | |
| Unnecessary variable. | |||
| 2020-06-15 | macro_jit_x64: Remove RESULT_64 | MerryMage | |
| This Reg64 codepath has the exact same behaviour as the Reg32 one. | |||
| 2020-06-15 | xbyak_abi: Remove *GPS variants of stack manipulation functions | MerryMage | |
| 2020-06-15 | video_core/macro_jit_x64: Remove initializer in member variable | ReinUsesLisp | |
| Fix build time issues on gcc. Confirmed through asan that avoiding this initialization is safe. | |||
| 2020-06-04 | Default init labels and use initializer list for macro engine | David Marcec | |
| 2020-06-03 | Mark parameters as const | David Marcec | |
| 2020-06-02 | Pass by reference instead of copying parameters | David Marcec | |
| 2020-05-30 | Favor switch case over jump table | David Marcec | |
| Easier to read and will emit a jump table automatically. | |||
| 2020-05-30 | Implement macro JIT | David Marcec | |
