summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* shader: Fix gcc warningsReinUsesLisp2021-07-231-1/+1
|
* shader: Improve goto removal algorithm complexityReinUsesLisp2021-07-231-49/+28
| | | | | Find sibling node containing a nephew searching from the nephew itself instead of the uncle.
* shader: Move siblings check to a separate function and comment them outReinUsesLisp2021-07-231-16/+21
|
* shader: Mark blocks with no end branch as unreachableReinUsesLisp2021-07-231-2/+7
|
* shader_recompiler,video_core: Cleanup some GCC and Clang errorslat9nq2021-07-231-2/+1
| | | | | | | | | | | | | | | | | Mostly fixing unused *, implicit conversion, braced scalar init, fpermissive, and some others. Some Clang errors likely remain in video_core, and std::ranges is still a pertinent issue in shader_recompiler shader_recompiler: cmake: Force bracket depth to 1024 on Clang Increases the maximum fold expression depth thread_worker: Include condition_variable Don't use list initializers in control flow Co-authored-by: ReinUsesLisp <reinuseslisp@airmail.cc>
* shader: Fix indirect branches to scheduler instructionsReinUsesLisp2021-07-231-3/+3
|
* shader: Implement BRXFernandoS272021-07-231-0/+57
|
* shader: Fix structured control flow on KIL instructionsReinUsesLisp2021-07-231-3/+6
| | | | | This could potentially leave unvisited blocks, leading to illegal phi nodes.
* shader: Properly insert Prologue instructionReinUsesLisp2021-07-231-1/+2
|
* shader: Implement NDC [-1, 1], attribute types and default varying initializationReinUsesLisp2021-07-231-1/+6
|
* shader: Add partial rasterizer integrationReinUsesLisp2021-07-231-0/+18
|
* shader: Implement CAL inlining function callsReinUsesLisp2021-07-231-0/+770