Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-12-01 | shader_recompiler: add gl_Layer translation GS for older hardware | Liam | 2 | -0/+69 | |
2022-11-11 | ir/texture_pass: Use host_info instead of querying Settings::values (#9176) | Morph | 2 | -7/+11 | |
2022-11-07 | video_core: Fix few issues in Tess stage | FengChen | 1 | -0/+3 | |
2022-11-04 | video_core: Fix SNORM texture buffer emulating error (#9001) | Feng Chen | 1 | -0/+49 | |
2022-10-25 | Revert "shader_recompiler/dead_code_elimination: Add DeadBranchElimination pass" | Feng Chen | 1 | -89/+9 | |
2022-10-06 | General: Fix compilation for GCC | Liam White | 1 | -1/+1 | |
2022-10-06 | Shader Decompiler: implement better tracking for Vulkan samplers. | Fernando Sahmkow | 1 | -9/+59 | |
2022-10-06 | Shader Decompiler: Check for shift when deriving composite samplers. | Fernando Sahmkow | 1 | -3/+31 | |
2022-09-20 | video_core: Generate mipmap texture by drawing | FengChen | 2 | -0/+78 | |
2022-08-31 | style: General style changes to match with the rest of the codebase | Morph | 1 | -5/+5 | |
2022-08-25 | video_code: support rectangle texture | FengChen | 2 | -1/+29 | |
2022-04-28 | GCC 12 fixes | Liam | 1 | -1/+1 | |
2022-04-23 | general: Convert source file copyright comments over to SPDX | Morph | 13 | -39/+26 | |
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-04-01 | shader_recompiler: support const buffer indirect addressing on OpenGL SPIR-V | Liam | 1 | -7/+2 | |
2022-03-23 | dead_code_elimination_pass: Remove unreachable Phi arguments | ameerj | 1 | -0/+27 | |
2022-03-22 | shader_recompiler/dead_code_elimination: Add DeadBranchElimination pass | ameerj | 1 | -9/+62 | |
This adds a pass to eliminate if(false) branches within the shader code | |||||
2022-03-20 | shader_recompiler: Reduce unused includes | ameerj | 6 | -12/+0 | |
2022-03-17 | Address review comments | Liam | 1 | -33/+28 | |
2022-03-17 | shader_recompiler: Use functions for indirect const buffer accesses | Liam | 1 | -0/+2 | |
2022-03-15 | shader: add support for const buffer indirect addressing | Liam | 1 | -8/+27 | |
2022-03-13 | Shader decompiler: Fix storage tracking in deko3d. | Fernando Sahmkow | 1 | -1/+2 | |
2022-03-12 | rescaling_pass: Fix rescaling Color2DArray ImageFetch offsets | ameerj | 1 | -2/+27 | |
ImageFetch offsets for 2D array coordinates have a different composite size than the coordinates. The rescaling pass was not taking this into account. Fixes broken shaders when scaling is enabled in Astral Chain, and likely other titles. | |||||
2022-01-30 | lower_int64_to_int32: Add 64-bit atomic fallbacks | ameerj | 2 | -2/+67 | |
2022-01-30 | shaders: Add U64->U32x2 Atomic fallback functions | ameerj | 1 | -0/+18 | |
2022-01-29 | spirv_atomic: Define U32x2 storage buffers for 64-bit storage atomics | ameerj | 1 | -1/+1 | |
Some drivers do not support 64-bit atomics, and fallback to atomically modifying U32x2 vectors. This change ensures that U32x2 storage vectors are defined in the spir-v shader when 64-bit atomics are used. Fixes a hang on some devices, notably Intel GPUs, when booting Pokemon Legends Arceus | |||||
2021-12-30 | shader: Add integer attribute get optimization pass | ameerj | 2 | -0/+24 | |
Works around an nvidia driver bug, where casting the integer attributes to float and back to an integer always returned 0. | |||||
2021-11-16 | ShaderCache: Better fix for Shuffling gl_FragCoord | Fernando Sahmkow | 1 | -2/+13 | |
2021-11-16 | Texture Cahe/Shader decompiler: Resize PointSize on rescaling, refactor and make reaper more agressive on 4Gb GPUs. | FernandoS27 | 1 | -0/+21 | |
2021-11-16 | rescaling_pass: Fix IR errors when unscalable texture types are encountered | ameerj | 1 | -0/+28 | |
2021-11-16 | rescaling_pass: Logic simplification and minor style cleanup | ameerj | 1 | -32/+17 | |
2021-11-16 | rescaling_pass: Scale ImageFetch offset if it exists | ameerj | 1 | -59/+37 | |
Plus some code deduplication | |||||
2021-11-16 | rescaling_pass: Enable PatchImageQueryDimensions on fragment stages | ameerj | 1 | -5/+4 | |
2021-11-16 | gl_texture_cache/rescaling_pass: minor cleanup | ameerj | 1 | -12/+8 | |
2021-11-16 | rescaling_pass: Fix and simplify shuffle/fragcoord pass | ameerj | 1 | -26/+20 | |
2021-11-16 | Shader: Don't rescale FragCoord if used by Shuffle | Fernando Sahmkow | 1 | -1/+52 | |
2021-11-16 | RescalingPass: Agregate pixels on texelFetch while on Fragment Shader | Fernando Sahmkow | 1 | -3/+97 | |
2021-11-16 | shader: Fix TextureSize check on rescaling. | Fernando Sahmkow | 1 | -27/+21 | |
2021-11-16 | shader: Properly scale image reads and add GL SPIR-V support | ReinUsesLisp | 2 | -2/+2 | |
Thanks for everything! | |||||
2021-11-16 | shader: Properly blacklist and scale image loads | ReinUsesLisp | 1 | -3/+19 | |
2021-11-16 | shader/rescaling_pass: Patch more instructions | ReinUsesLisp | 1 | -4/+101 | |
2021-11-16 | shader: Add IsTextureScaled opcode | ReinUsesLisp | 1 | -0/+1 | |
2021-11-16 | shader: Fix rescaling pass | ReinUsesLisp | 1 | -1/+1 | |
2021-11-16 | shader: Fix resolution scaling pass | ReinUsesLisp | 3 | -34/+30 | |
2021-11-16 | ShaderDecompiler: Add initial support for rescaling. | Fernando Sahmkow | 1 | -0/+72 | |
2021-11-01 | ShaderCache: Fix Phi Nodes Type on OGL. | Fernando Sahmkow | 1 | -0/+24 | |
2021-10-31 | ShaderCache: Order Phi Arguments from farthest away to nearest. | Fernando Sahmkow | 1 | -0/+7 | |
2021-10-24 | TexturePass: Fix clamping of images as this allowed negative indices. | Fernando Sahmkow | 1 | -1/+1 | |
2021-10-17 | Shader Compiler: avoid overflowed indices on indixed samplers. | Fernando Sahmkow | 1 | -1/+2 | |
2021-07-30 | shader: Fold UnpackFloat2x16 and PackFloat2x16 | ReinUsesLisp | 1 | -0/+4 | |
Simplifies the code a bit when possible. These instructions should be no-ops codegen wise. | |||||
2021-07-28 | shader: Mark ConvertF16F32 and ConvertF32F16 as fp16 instructions | ReinUsesLisp | 1 | -0/+2 | |
Fixes instances where fp16 types are not declared on SPIR-V but they are used. This shouldn't happen on master, as it's been uncovered by an additional optimization pass. | |||||
2021-07-26 | shader: Fold integer FMA from Nvidia's pattern | ReinUsesLisp | 1 | -0/+175 | |
Fold shaders doing "a * b + c" on integers from the pattern generated by Nvidia's GL compiler. On a somewhat complex compute shader it reduces the code size by 16 instructions from 2 matches on Turing GPUs. On Intel as extracted from KHR_pipeline_executable_properties: Before the optimization: ``` Instruction Count: 2057 Basic Block Count: 45 Scratch Memory Size: 14752 Spill Count: 232 Fill Count: 261 SEND Count: 610 Cycle Count: 11325 ``` After the optimization: ``` Instruction Count: 2046 Basic Block Count: 44 Scratch Memory Size: 13728 Spill Count: 219 Fill Count: 268 SEND Count: 604 Cycle Count: 11367 ``` | |||||
2021-07-26 | shader: Use TryInstRecursive on XMAD multiply folding | ReinUsesLisp | 1 | -14/+12 | |
Simplify a bit the logic. | |||||
2021-07-23 | shader: Avoid usage of C++20 ranges to build in clang | ReinUsesLisp | 6 | -17/+12 | |
2021-07-23 | shader_recompiler, video_core: Resolve clang errors | lat9nq | 1 | -3/+3 | |
Silences the following warnings-turned-errors: -Wsign-conversion -Wunused-private-field -Wbraced-scalar-init -Wunused-variable And some other errors | |||||
2021-07-23 | glsl: Fix tracking of info.uses_shadow_lod | ameerj | 1 | -4/+4 | |
2021-07-23 | dual_vertex_pass: Clang format | ameerj | 1 | -14/+14 | |
2021-07-23 | shader: Rework varyings and implement passthrough geometry shaders | ReinUsesLisp | 1 | -137/+65 | |
Put all varyings into a single std::bitset with helpers to access it. Implement passthrough geometry shaders using host's. | |||||
2021-07-23 | lower_int64_to_int32: Add missing include | lat9nq | 1 | -0/+1 | |
2021-07-23 | shader: Add int64 to int32 lowering pass | ReinUsesLisp | 2 | -0/+217 | |
2021-07-23 | shader: Teach global memory base tracker to follow vectors | ReinUsesLisp | 1 | -15/+14 | |
2021-07-23 | shader: Add constant propagation to integer vectors | ReinUsesLisp | 1 | -0/+9 | |
2021-07-23 | shader: Move loop safety tests to code emission | ReinUsesLisp | 1 | -30/+2 | |
2021-07-23 | texture_pass: Fix is_read image qualification | ameerj | 1 | -1/+1 | |
Atomic operations are considered to have both read and write access. This was not being accounted for. | |||||
2021-07-23 | shader: Align constant buffer sizes to 16 bytes | ReinUsesLisp | 1 | -1/+2 | |
WAR for AMD reading zeroes on uniform buffers of size 2. | |||||
2021-07-23 | shader: Properly manage attributes not written from previous stages | ReinUsesLisp | 1 | -2/+4 | |
2021-07-23 | glsl: Address rest of feedback | ameerj | 1 | -2/+9 | |
2021-07-23 | glsl: Conditionally add EXT_texture_shadow_lod | ameerj | 1 | -1/+9 | |
2021-07-23 | glsl: Implement legacy varyings | ameerj | 1 | -1/+8 | |
2021-07-23 | glsl: Fix ATOM and implement ATOMS | ameerj | 1 | -0/+6 | |
2021-07-23 | glsl: Track S32 atomics | ameerj | 1 | -2/+8 | |
2021-07-23 | glsl: Revert ssbo aliasing. Storage Atomics impl | ameerj | 1 | -7/+2 | |
2021-07-23 | glsl: Wip storage atomic ops | ameerj | 1 | -2/+7 | |
2021-07-23 | shader: Fix loop safety to SSA pass | ReinUsesLisp | 1 | -1/+1 | |
2021-07-23 | shader: Add shader loop safety check settings | lat9nq | 1 | -19/+47 | |
Also add a setting for enable Nsight Aftermath. | |||||
2021-07-23 | shader: Fix VertexA Shaders. | FernandoS27 | 2 | -9/+16 | |
2021-07-23 | buffer_cache: Reduce uniform buffer size from shader usage | ReinUsesLisp | 1 | -3/+16 | |
Increases performance significantly on certain titles. | |||||
2021-07-23 | shader,glasm: Implement legacy texcoord loads | ReinUsesLisp | 1 | -52/+18 | |
2021-07-23 | shader: Track legacy varyings | ReinUsesLisp | 1 | -13/+88 | |
2021-07-23 | shader: Clang-format secondary textures | ReinUsesLisp | 1 | -2/+2 | |
2021-07-23 | shader: Fix secondary textures | ReinUsesLisp | 1 | -2/+2 | |
2021-07-23 | shader: Fix FSwizzleAdd folding when going through phi nodes | ReinUsesLisp | 1 | -2/+2 | |
2021-07-23 | glasm: Remove unintentionally committed fmt::prints | ReinUsesLisp | 1 | -2/+0 | |
2021-07-23 | glasm: Initial implementation of phi nodes on GLASM | ReinUsesLisp | 1 | -5/+1 | |
2021-07-23 | glasm: Rework control flow introducing a syntax list | ReinUsesLisp | 4 | -73/+8 | |
This commit regresses VertexA shaders, their transformation pass has to be adapted to the new control flow. | |||||
2021-07-23 | glasm: Implement shuffle and vote instructions on GLASM | ReinUsesLisp | 1 | -1/+3 | |
2021-07-23 | shader: Optimize NVN Fallthrough | FernandoS27 | 1 | -7/+71 | |
2021-07-23 | shader: Implement Int32 SUATOM/SURED | ameerj | 2 | -1/+103 | |
2021-07-23 | shader: Address feedback | FernandoS27 | 1 | -11/+9 | |
2021-07-23 | shader: Implement VertexA stage | FernandoS27 | 4 | -0/+128 | |
2021-07-23 | shader: Fix BFE s32 undefined check | ameerj | 1 | -1/+1 | |
Our unit tests were hitting this exception. | |||||
2021-07-23 | shader: Fix error checking in bitfieldExtract and implement bitfieldInsert folding | ReinUsesLisp | 1 | -5/+14 | |
2021-07-23 | shader: Add more strict validation the pass | ReinUsesLisp | 1 | -0/+42 | |
2021-07-23 | shader: Fix forward referencing identity instructions when inserting phi | ReinUsesLisp | 1 | -11/+13 | |
2021-07-23 | shader: Remove invalidated blocks in dead code elimination pass | ReinUsesLisp | 1 | -3/+6 | |
2021-07-23 | shader: Implement indexed textures | ReinUsesLisp | 1 | -17/+72 | |
2021-07-23 | shader: Intrusively store in a block if it's sealed or not | ReinUsesLisp | 1 | -3/+2 | |
2021-07-23 | shader: Move microinstruction header to the value header | ReinUsesLisp | 8 | -8/+8 | |
2021-07-23 | shader: Intrusively store register values in block for SSA pass | ReinUsesLisp | 1 | -21/+43 | |
2021-07-23 | shader: Implement D3D samplers | ReinUsesLisp | 1 | -11/+69 | |
2021-07-23 | shader: Add constant propagation for arithmetic right shifts | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | shader: Add NVN storage buffer fallbacks | ReinUsesLisp | 2 | -38/+61 | |
When we can't track the SSBO origin of a global memory instruction, leave it as a global memory operation and assume these pointers are in the NVN storage buffer slots, then apply a linear search in the shader's runtime. | |||||
2021-07-23 | shader: Address feedback | FernandoS27 | 1 | -1/+1 | |
2021-07-23 | shader: Add coarse derivatives | FernandoS27 | 2 | -8/+2 | |
2021-07-23 | shader: Implement fine derivates constant propagation | FernandoS27 | 2 | -0/+71 | |
2021-07-23 | shader: Fix Phi node types | ReinUsesLisp | 1 | -0/+4 | |
2021-07-23 | shader: Implement SampleMask | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | shader: Implement PIXLD.MY_INDEX | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | spirv: Implement ViewportMask with NV_viewport_array2 | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | shader: Implement PrimitiveId | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | shader: Implement tessellation shaders, polygon mode and invocation id | ReinUsesLisp | 1 | -0/+41 | |
2021-07-23 | shader: Mark atomic instructions as writes | ReinUsesLisp | 1 | -0/+27 | |
2021-07-23 | spirv: Implement image buffers | ReinUsesLisp | 1 | -1/+18 | |
2021-07-23 | spirv: Implement Layer stores | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | spirv: Rework storage buffers and shader memory | ReinUsesLisp | 1 | -5/+64 | |
2021-07-23 | shader: Add constant propagation for *&^| binary operations | ReinUsesLisp | 1 | -0/+12 | |
2021-07-23 | spirv: Define StorageImageWriteWithoutFormat capability when used | ReinUsesLisp | 1 | -0/+5 | |
2021-07-23 | shader: Implement SR_THREAD_KILL | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | shader: Implement ATOM/S and RED | ameerj | 3 | -2/+201 | |
2021-07-23 | spirv: Guard against typeless image reads on unsupported devices | ReinUsesLisp | 1 | -0/+7 | |
2021-07-23 | shader: Move LaneId to the warp emission file and fix AMD | ReinUsesLisp | 1 | -1/+1 | |
2021-07-23 | shader: Implement SULD and SUST | ReinUsesLisp | 2 | -25/+69 | |
2021-07-23 | shader: Address feedback + clang format | lat9nq | 1 | -1/+2 | |
2021-07-23 | shader_recompiler,video_core: Cleanup some GCC and Clang errors | lat9nq | 8 | -76/+80 | |
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-23 | shader: Implement texture buffers | ReinUsesLisp | 1 | -18/+62 | |
2021-07-23 | shader: Address feedback | FernandoS27 | 1 | -13/+9 | |
2021-07-23 | shader: Implement indexed Position and ClipDistances | FernandoS27 | 1 | -8/+18 | |
2021-07-23 | shader: Implement indexed attributes | FernandoS27 | 2 | -2/+36 | |
2021-07-23 | shader: Move recursive SSA rewrite to the heap | ReinUsesLisp | 1 | -29/+89 | |
2021-07-23 | shader: Add subgroup masks | ReinUsesLisp | 1 | -0/+7 | |
2021-07-23 | shader: Abstract breadth searches and use the abstraction | ReinUsesLisp | 2 | -104/+48 | |
2021-07-23 | shader: Reimplement GetCbufU64 as GetCbufU32x2 | ReinUsesLisp | 1 | -4/+3 | |
It may generate better code on some compilers and it's easier to handle. | |||||
2021-07-23 | shader: Rework global memory tracking to use breadth-first search | ReinUsesLisp | 1 | -69/+80 | |
2021-07-23 | shader: Address feedback | FernandoS27 | 2 | -12/+9 | |
2021-07-23 | shader: Address Feedback | FernandoS27 | 3 | -60/+9 | |
2021-07-23 | shader: Implement SR_LaneId | FernandoS27 | 1 | -0/+1 | |
2021-07-23 | shader: Improve VOTE.VTG stub | FernandoS27 | 1 | -1/+50 | |
2021-07-23 | shader: Mark SSBOs as written when they are | FernandoS27 | 1 | -2/+29 | |
2021-07-23 | shader: Implement ViewportIndex | FernandoS27 | 1 | -0/+3 | |
2021-07-23 | shader: Fold composite extract | FernandoS27 | 1 | -0/+62 | |
2021-07-23 | shader: Fold comparisons and Pack/Unpack16 | FernandoS27 | 1 | -1/+41 | |
2021-07-23 | shader: Fix constant propagation to use reverse post order | ReinUsesLisp | 1 | -1/+2 | |
2021-07-23 | shader: Implement ClipDistance | FernandoS27 | 1 | -0/+10 | |
2021-07-23 | shader: Implement ImageGradient | FernandoS27 | 2 | -1/+15 | |
2021-07-23 | shader,spirv: Implement ImageQueryLod. | FernandoS27 | 2 | -1/+7 | |
2021-07-23 | shader: Implement TLD | FernandoS27 | 1 | -0/+1 | |
2021-07-23 | shader: Add PointCoord attribute | FernandoS27 | 1 | -0/+4 | |
2021-07-23 | shader: Add PointSize attribute | ameerj | 1 | -0/+3 | |
2021-07-23 | shader: Implement FSWZADD | ameerj | 1 | -0/+3 | |
2021-07-23 | shader: Implement BRX | FernandoS27 | 1 | -1/+20 | |
2021-07-23 | shader: Implement LDS, STS, LDL, and STS and use SPIR-V 1.4 when available | ReinUsesLisp | 1 | -0/+6 | |
2021-07-23 | shader: Better interpolation and disabled attributes support | ReinUsesLisp | 1 | -1/+1 | |
2021-07-23 | shader: Implement front face | ReinUsesLisp | 1 | -0/+3 | |
2021-07-23 | shader: Implement TXQ and fix FragDepth | ReinUsesLisp | 2 | -5/+18 | |
2021-07-23 | shader: Refactor PTP and other minor changes | ReinUsesLisp | 1 | -20/+2 | |
2021-07-23 | shader: Add IR opcode for ImageFetch | FernandoS27 | 1 | -0/+5 | |
2021-07-23 | shader: Implement TLD4.PTP | FernandoS27 | 1 | -0/+18 | |
2021-07-23 | shader: Implement TLD4 and TLD4_B | FernandoS27 | 3 | -1/+29 | |
2021-07-23 | shader: Implement SHFL | ameerj | 1 | -0/+6 | |
2021-07-23 | shader: Track first bindless argument instead of the instruction itself | ReinUsesLisp | 1 | -1/+1 | |
2021-07-23 | shader: Fix F2I | FernandoS27 | 2 | -0/+4 | |
2021-07-23 | shader: Implement VOTE | ameerj | 1 | -0/+6 | |
2021-07-23 | shader: Fold interpolation multiplications | ReinUsesLisp | 1 | -0/+34 | |
2021-07-23 | shader: Implement DMNMX, DSET, DSETP | ameerj | 2 | -2/+9 | |
2021-07-23 | shader: Implement F2F | FernandoS27 | 1 | -1/+3 | |
2021-07-23 | shader: Add missing fp64 usage flags | ReinUsesLisp | 1 | -0/+34 | |
2021-07-23 | shader: Add support for fp16 comparisons and misc fixes | ReinUsesLisp | 2 | -0/+18 | |
2021-07-23 | shader: Fix floating point comparison for FP16 | FernandoS27 | 1 | -0/+24 | |
2021-07-23 | spirv: Implement VertexId and InstanceId, refactor code | ReinUsesLisp | 1 | -0/+6 | |
2021-07-23 | shader: Implement I2F | ReinUsesLisp | 2 | -0/+44 | |
2021-07-23 | shader: Add partial rasterizer integration | ReinUsesLisp | 2 | -5/+57 | |
2021-07-23 | shader: Reorder phi nodes when redefined as undefined opcodes | ReinUsesLisp | 1 | -1/+9 | |
2021-07-23 | shader: Implement CAL inlining function calls | ReinUsesLisp | 10 | -57/+44 | |
2021-07-23 | shader: Implement FCMP | ameerj | 1 | -1/+13 | |
still need to configure some settings for NV denorm flush and intel NaN | |||||
2021-07-23 | shader: Partial implementation of LDC | ReinUsesLisp | 4 | -15/+146 | |
2021-07-23 | shader: Initial support for textures and TEX | ReinUsesLisp | 4 | -9/+226 | |
2021-07-23 | shader: Implement HADD2 | ReinUsesLisp | 2 | -1/+11 | |
2021-07-23 | shader: Implement SEL | ameerj | 1 | -4/+8 | |
2021-07-23 | shader: Avoid infinite recursion when tracking global memory | ReinUsesLisp | 1 | -5/+26 | |
2021-07-23 | shader: FMUL, select, RRO, and MUFU fixes | ReinUsesLisp | 1 | -1/+1 | |
2021-07-23 | shader: Add denorm flush support | ReinUsesLisp | 2 | -7/+65 | |
2021-07-23 | spirv: Add lower fp16 to fp32 pass | ReinUsesLisp | 4 | -7/+103 | |
2021-07-23 | shader: Add XMAD multiplication folding optimization | ReinUsesLisp | 1 | -5/+77 | |
2021-07-23 | spirv: Initial bindings support | ReinUsesLisp | 4 | -61/+210 | |
2021-07-23 | shader: Fix tracking | ReinUsesLisp | 1 | -50/+72 | |
2021-07-23 | shader: Add support for forward declarations | ReinUsesLisp | 1 | -2/+2 | |
2021-07-23 | shader: Support SSA loops on IR | ReinUsesLisp | 3 | -17/+55 | |
2021-07-23 | shader: Misc fixes | ReinUsesLisp | 2 | -70/+70 | |
2021-07-23 | shader: Initial implementation of an AST | ReinUsesLisp | 3 | -3/+75 | |
2021-07-23 | spirv: Initial SPIR-V support | ReinUsesLisp | 1 | -1/+1 | |
2021-07-23 | shader: Better constant folding | ReinUsesLisp | 1 | -12/+47 | |
2021-07-23 | shader: Properly store phi on Inst | ReinUsesLisp | 1 | -10/+12 | |
2021-07-23 | shader: Add pools and rename files | ReinUsesLisp | 1 | -14/+14 | |
2021-07-23 | shader: Make typed IR | ReinUsesLisp | 2 | -10/+31 | |
2021-07-23 | shader: Remove illegal character in SSA pass | ReinUsesLisp | 1 | -1/+1 | |
2021-07-23 | shader: Constant propagation and global memory to storage buffer | ReinUsesLisp | 6 | -36/+573 | |
2021-07-23 | shader: Initial instruction support | ReinUsesLisp | 2 | -88/+0 | |
2021-07-23 | shader: SSA and dominance | ReinUsesLisp | 3 | -1/+164 | |
2021-07-23 | shader: Initial recompiler work | ReinUsesLisp | 5 | -0/+213 | |