Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-11-22 | general: fix compile for Apple Clang | Liam | |
2022-10-06 | Shader Decompiler: Fix dangerous behavior of invalid iterator insertion. | Fernando Sahmkow | |
2022-06-13 | structured_control_flow: Remove constexpr Flow::Block | lat9nq | |
This seems to be unsupported in newer libstdc++ versions due to Flow::Block's base class being a non-literal type. It's not clear to me why this was permitted in earlier versions. | |||
2022-04-23 | general: Convert source file copyright comments over to SPDX | Morph | |
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. | |||
2022-03-20 | shader_recompiler: Reduce unused includes | ameerj | |
2021-08-30 | structured_control_flow: Skip reordering nested demote branches. | ameerj | |
Nested demote branches add complexity with combining the condition if it has not been initialized yet. Skip them for the time being. | |||
2021-08-30 | structured_control_flow: Conditionally invoke demote reorder pass | ameerj | |
This is only needed on select drivers when a fragment shader discards/demotes. | |||
2021-08-28 | structured_control_flow: Add DemoteCombinationPass | ameerj | |
Some drivers misread data when demotes are interleaved in the program. This moves demote branches to be checked at the end of the program. Fixes "wireframe" issue in Pokemon SwSh on some drivers | |||
2021-07-22 | shader: Avoid usage of C++20 ranges to build in clang | ReinUsesLisp | |
2021-07-22 | shader_recompiler, video_core: Resolve clang errors | lat9nq | |
Silences the following warnings-turned-errors: -Wsign-conversion -Wunused-private-field -Wbraced-scalar-init -Wunused-variable And some other errors | |||
2021-07-22 | shader: GCC fmt 8.0.0 fixes | lat9nq | |
2021-07-22 | shader: Move loop safety tests to code emission | ReinUsesLisp | |
2021-07-22 | shader: Calibrate loop safety threshold | ReinUsesLisp | |
2021-07-22 | shader: Fix loop safety to SSA pass | ReinUsesLisp | |
2021-07-22 | shader: Add shader loop safety check settings | lat9nq | |
Also add a setting for enable Nsight Aftermath. | |||
2021-07-22 | shader: Always initialize up reference in structure control flow | ReinUsesLisp | |
Fixes ubsan issue. | |||
2021-07-22 | shader: Read branch conditions from an instruction | ReinUsesLisp | |
Fixes the identity removal pass. | |||
2021-07-22 | shader_recompiler: GCC fixes | lat9nq | |
Fixes members of unnamed union not being accessible, and one function without a declaration. | |||
2021-07-22 | glasm: Initial implementation of phi nodes on GLASM | ReinUsesLisp | |
2021-07-22 | glasm: Rework control flow introducing a syntax list | ReinUsesLisp | |
This commit regresses VertexA shaders, their transformation pass has to be adapted to the new control flow. | |||
2021-07-22 | shader: Fix gcc warnings | ReinUsesLisp | |
2021-07-22 | shader: Improve goto removal algorithm complexity | ReinUsesLisp | |
Find sibling node containing a nephew searching from the nephew itself instead of the uncle. | |||
2021-07-22 | shader: Move siblings check to a separate function and comment them out | ReinUsesLisp | |
2021-07-22 | shader: Mark blocks with no end branch as unreachable | ReinUsesLisp | |
2021-07-22 | shader_recompiler,video_core: Cleanup some GCC and Clang errors | lat9nq | |
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> | |||
2021-07-22 | shader: Fix indirect branches to scheduler instructions | ReinUsesLisp | |
2021-07-22 | shader: Implement BRX | FernandoS27 | |
2021-07-22 | shader: Fix structured control flow on KIL instructions | ReinUsesLisp | |
This could potentially leave unvisited blocks, leading to illegal phi nodes. | |||
2021-07-22 | shader: Properly insert Prologue instruction | ReinUsesLisp | |
2021-07-22 | shader: Implement NDC [-1, 1], attribute types and default varying ↵ | ReinUsesLisp | |
initialization | |||
2021-07-22 | shader: Add partial rasterizer integration | ReinUsesLisp | |
2021-07-22 | shader: Implement CAL inlining function calls | ReinUsesLisp | |