Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | general: Convert source file copyright comments over to SPDX | Morph | 2022-04-23 | 1 | -3/+2 |
| | | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. | ||||
* | shader_recompiler: Reduce unused includes | ameerj | 2022-03-20 | 1 | -3/+0 |
| | |||||
* | shader_recompiler: Adjust emit_context includes | ameerj | 2021-12-06 | 1 | -1/+1 |
| | |||||
* | glasm: Remove unnecessary value types | ReinUsesLisp | 2021-07-23 | 1 | -4/+4 |
| | |||||
* | glasm: Catch more register leaks | ReinUsesLisp | 2021-07-23 | 1 | -4/+24 |
| | | | | | | | | | | | | | Add support for null registers. These are used when an instruction has no usages. This comes handy when an instruction is only used for its CC value, with the caveat of having to invalidate all pseudo-instructions before defining the instruction itself in the register allocator. This commits changes this. Workaround a bug on Nvidia's condition codes conditional execution using branches. | ||||
* | glasm: Do not alias ConditionRef for now | ReinUsesLisp | 2021-07-23 | 1 | -1/+0 |
| | | | | | Immediate condition refs where not handled correctly. Just move the value for now. | ||||
* | shader: Read branch conditions from an instruction | ReinUsesLisp | 2021-07-23 | 1 | -0/+1 |
| | | | | Fixes the identity removal pass. | ||||
* | glasm: Fix aliased bitcasts ref counting | ReinUsesLisp | 2021-07-23 | 1 | -7/+32 |
| | |||||
* | glasm: Add Void type to GLASM values | ReinUsesLisp | 2021-07-23 | 1 | -0/+3 |
| | |||||
* | glasm: Fix register allocation when moving immediate on GLASM | ReinUsesLisp | 2021-07-23 | 1 | -30/+41 |
| | |||||
* | glasm: Add conversion instructions to GLASM | ReinUsesLisp | 2021-07-23 | 1 | -0/+4 |
| | |||||
* | glasm: Initial GLASM fp64 support | ReinUsesLisp | 2021-07-23 | 1 | -19/+47 |
| | |||||
* | glasm: Make GLASM aware of types | ReinUsesLisp | 2021-07-23 | 1 | -27/+35 |
| | |||||
* | glasm: Implement more logical ops | ameerj | 2021-07-23 | 1 | -1/+1 |
| | |||||
* | glasm: Use BitField instead of C bitfields | ReinUsesLisp | 2021-07-23 | 1 | -5/+5 |
| | |||||
* | glasm: Changes to GLASM register allocator and emit context | ReinUsesLisp | 2021-07-23 | 1 | -16/+21 |
| | |||||
* | glasm: Add GLASM backend infrastructure | ReinUsesLisp | 2021-07-23 | 1 | -0/+82 |