summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/reg_alloc.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXGravatar Morph2022-04-231-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, video_core: Resolve clang errorsGravatar lat9nq2021-07-221-2/+1
| | | | | | | | | | Silences the following warnings-turned-errors: -Wsign-conversion -Wunused-private-field -Wbraced-scalar-init -Wunused-variable And some other errors
* glasm: Remove unnecessary value typesGravatar ReinUsesLisp2021-07-221-32/+1
|
* glasm: Throw when there are register leaksGravatar ReinUsesLisp2021-07-221-0/+4
|
* glasm: Catch more register leaksGravatar ReinUsesLisp2021-07-221-4/+12
| | | | | | | | | | | | | 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: Fix aliased bitcasts ref countingGravatar ReinUsesLisp2021-07-221-0/+6
|
* glasm: Add Void type to GLASM valuesGravatar ReinUsesLisp2021-07-221-0/+11
|
* glasm: Fix register allocation when moving immediate on GLASMGravatar ReinUsesLisp2021-07-221-1/+9
|
* glasm: Fix moving U64 immediates to registers in GLASMGravatar ReinUsesLisp2021-07-221-2/+2
|
* glasm: Add conversion instructions to GLASMGravatar ReinUsesLisp2021-07-221-0/+13
|
* glasm: Initial GLASM fp64 supportGravatar ReinUsesLisp2021-07-221-5/+58
|
* glasm: Specify namespace when using FormatToGravatar ReinUsesLisp2021-07-221-6/+6
|
* glasm: Make GLASM aware of typesGravatar ReinUsesLisp2021-07-221-5/+179
|
* glasm: Use BitField instead of C bitfieldsGravatar ReinUsesLisp2021-07-221-3/+7
|
* glasm: Changes to GLASM register allocator and emit contextGravatar ReinUsesLisp2021-07-221-5/+13
|
* glasm: Add GLASM backend infrastructureGravatar ReinUsesLisp2021-07-221-0/+46