Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #4090 from MerryMage/macrojit-bugs | bunnei | 2020-06-19 | 1 | -2/+5 |
|\ | | | | | macro_jit_x64: Optimization correctness | ||||
| * | macro_jit_x64: Optimization implicitly assumes same destination | MerryMage | 2020-06-17 | 1 | -1/+2 |
| | | |||||
| * | macro_jit_x64: Should not skip zero registers for certain ALU ops | MerryMage | 2020-06-17 | 1 | -1/+3 |
| | | | | | | | | The code generated for these ALU ops assume src_a and src_b are always valid. | ||||
* | | Merge pull request #4086 from MerryMage/abi | bunnei | 2020-06-17 | 1 | -6/+6 |
|\ \ | |/ |/| | xbyak_abi: Cleanup | ||||
| * | xbyak_abi: Remove *GPS variants of stack manipulation functions | MerryMage | 2020-06-15 | 1 | -6/+6 |
| | | |||||
* | | Merge pull request #4089 from MerryMage/macrojit-cleanup-1 | bunnei | 2020-06-17 | 2 | -51/+18 |
|\ \ | | | | | | | macro_jit_x64: Cleanup | ||||
| * | | macro_jit_x64: Remove NEXT_PARAMETER | MerryMage | 2020-06-15 | 1 | -5/+2 |
| | | | | | | | | | | | | Not required, as PARAMETERS can just be incremented directly. | ||||
| * | | macro_jit_x64: Remove unused function Compile_WriteCarry | MerryMage | 2020-06-15 | 2 | -9/+0 |
| | | | |||||
| * | | macro_jit_x64: Select better registers | MerryMage | 2020-06-15 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | | macro_jit_x64: Remove REGISTERS | MerryMage | 2020-06-15 | 1 | -7/+3 |
| | | | | | | | | | | | | Unnecessary since this is just an offset from STATE. | ||||
| * | | macro_jit_x64: Remove JITState::parameters | MerryMage | 2020-06-15 | 2 | -6/+3 |
| | | | | | | | | | | | | This can be passed in as an argument instead. | ||||
| * | | macro_jit_x64: Remove METHOD_ADDRESS_64 | MerryMage | 2020-06-15 | 1 | -2/+1 |
| | | | | | | | | | | | | Unnecessary variable. | ||||
| * | | macro_jit_x64: Remove RESULT_64 | MerryMage | 2020-06-15 | 2 | -16/+3 |
| |/ | | | | | | | This Reg64 codepath has the exact same behaviour as the Reg32 one. | ||||
* / | video_core/macro_jit_x64: Remove initializer in member variable | ReinUsesLisp | 2020-06-15 | 1 | -2/+2 |
|/ | | | | | Fix build time issues on gcc. Confirmed through asan that avoiding this initialization is safe. | ||||
* | Default init labels and use initializer list for macro engine | David Marcec | 2020-06-04 | 1 | -1/+1 |
| | |||||
* | Mark parameters as const | David Marcec | 2020-06-03 | 6 | -8/+9 |
| | |||||
* | Pass by reference instead of copying parameters | David Marcec | 2020-06-02 | 2 | -2/+2 |
| | |||||
* | Favor switch case over jump table | David Marcec | 2020-05-30 | 2 | -18/+26 |
| | | | | Easier to read and will emit a jump table automatically. | ||||
* | Implement macro JIT | David Marcec | 2020-05-30 | 6 | -0/+1294 |