Hans-Kristian Arntzen
376a308dc7
GLSL: Handle ptr-to-array casts with unexpected array strides.
2024-01-18 14:14:10 +01:00
Hans-Kristian Arntzen
071969811b
GLSL: Add basic test for chained access chains.
2024-01-18 13:35:43 +01:00
Hans-Kristian Arntzen
32ac768c15
GLSL: Handle synthesized pointer-to-pointer.
2024-01-18 13:11:04 +01:00
Hans-Kristian Arntzen
3da5bc7a57
GLSL: Forward declare non-block BDA types as well.
...
With non-block structs, we can have pointers in those types too.
2024-01-18 12:56:31 +01:00
Hans-Kristian Arntzen
871ac0e5b7
GLSL: Handle BDA to plain non-block struct.
...
The implementation assumed that BDA to struct would always result in a
Block-like type, but that is not necessarily the case. Treat non-Block
structs as POD types as well.
2024-01-18 12:40:47 +01:00
Hans-Kristian Arntzen
cffc08a542
Add missing reference file.
2024-01-05 14:54:21 +01:00
Hans-Kristian Arntzen
ec42cb1c41
Roll deps.
2024-01-05 13:36:34 +01:00
Hans-Kristian Arntzen
56bdcfaf0e
Add test for sample mask bulk load/store.
2023-10-23 12:45:08 +02:00
Hans-Kristian Arntzen
724433d729
Merge pull request #2216 from KhronosGroup/buffer-reference-2
...
GLSL: Use buffer_reference2 instead of 1.
2023-10-11 14:20:36 +02:00
Hans-Kristian Arntzen
255ff2b19c
GLSL: Use buffer_reference2 instead of 1.
...
Supports more syntax.
2023-10-11 14:18:36 +02:00
Hans-Kristian Arntzen
be944258be
GLSL: Ignore bogus constant/undefs which use block types.
...
This is banned in more recent SPIR-V.
We cannot implement this in any reasonable way since block types don't
participate as normal types in GLSL.
2023-10-11 13:48:25 +02:00
Hans-Kristian Arntzen
75620181bc
GLSL: Handle empty block declarations.
...
Similar fix as for structs.
2023-10-11 13:09:55 +02:00
Hans-Kristian Arntzen
b76394e66a
GLSL: Fix Clip/Cull in mesh shaders.
2023-08-25 11:59:21 +02:00
Hans-Kristian Arntzen
633dc30135
Merge pull request #2187 from KhronosGroup/mesh-invariant-position
...
GLSL: Emit inline invariant position for mesh shaders.
2023-08-17 13:51:54 +02:00
Hans-Kristian Arntzen
a3f026815a
Merge pull request #2186 from KhronosGroup/64bit-images
...
GLSL: Implement 64-bit image support.
2023-08-17 13:50:29 +02:00
Hans-Kristian Arntzen
79d63934a6
GLSL: Emit inline invariant position for mesh shaders.
...
Work around missing feature from GLSL. Normally we can emit a global
invariant gl_Position; and call it a day, but it does not work for mesh
shaders it seems. Declaring invariance inside an explicit IO block works
fine on the other hand ...
2023-08-17 12:45:54 +02:00
Hans-Kristian Arntzen
5e3ea64843
GLSL: Implement 64-bit image support.
2023-08-17 12:17:55 +02:00
Hans-Kristian Arntzen
5ffc813dc4
GLSL: Require mesh shader when using perprimitiveEXT in frag shader.
2023-08-17 12:07:11 +02:00
Chip Davis
68f0257f26
Use --preserve-numeric-ids when assembling test shaders.
...
This makes it easier to debug codegen for these shaders.
2023-06-23 14:54:16 -07:00
Hans-Kristian Arntzen
5b322555d6
GLSL: Fix bug with mixed precision on PHI variables.
2023-06-07 15:31:29 +02:00
Hans-Kristian Arntzen
cfd1618e31
MSL: Use templated array type when emitting BDA to arrays.
...
Handling native array types is not really feasible since we need to fuse
the variable declaration with the type declaration.
This is feasible in something like variable_decl, but for plain SSA
pointers, this breaks down.
2023-05-10 13:33:54 +02:00
Hans-Kristian Arntzen
54b48a2f3a
Merge pull request #2133 from georgeouzou/main
...
GLSL: Support GL_KHR_shader_subgroup_arithmetic (WIP)
2023-05-10 11:32:00 +02:00
George Ouzounoudis
ff962261d4
GLSL: Add tests for subgroup iadd, fadd, imul, fmul
2023-05-01 15:51:54 +03:00
Hans-Kristian Arntzen
50623e13c8
GLSL: Fix expression reorder bug with legacy FMA fallback.
2023-03-30 17:24:11 +02:00
Hans-Kristian Arntzen
1047c13d40
GLSL: Handle textureGatherOffsets properly.
...
We forgot to pass down the offset ID, clean up coffset vs offset jank
while we're at it.
2023-01-12 16:27:11 +01:00
Hans-Kristian Arntzen
bcbe33ad11
Also consider NonSemantic ExtInst in block_is_noop.
2023-01-12 12:41:53 +01:00
Hans-Kristian Arntzen
9d8ef6b36c
Update test for updated block_is_noop check.
2023-01-11 15:21:58 +01:00
Hans-Kristian Arntzen
457fd3db70
Add tests for loops compiled with debug semantics.
2023-01-11 15:18:19 +01:00
Hans-Kristian Arntzen
68a012a4f2
CFG: Handle implied access to opaque loaded values.
...
Similar concern as access chains. Objects that we cannot lower to
temporaries must implicitly access all expression dependencies when they
are themselves accessed.
2022-12-13 16:34:00 +01:00
Chip Davis
5547b25afe
Interleave undef values with constants and types.
...
Undef values may be of struct type and may be used in constants.
Therefore, they must be interleaved with constants and types.
Fixes the rest of the Vulkan CTS test
`dEQP-VK.spirv_assembly.instruction.compute.opundef.undefined_spec_constant_composite`.
(Please excuse the churn in the reference output; it's an inevitable
result of this change.)
2022-11-20 02:08:37 -08:00
Hans-Kristian Arntzen
94160e8890
GLSL: Add test for mesh with non-block builtin IO.
2022-11-02 13:08:56 +01:00
Hans-Kristian Arntzen
a5a7999666
Update mesh/task test references.
2022-09-12 12:46:14 +02:00
Hans-Kristian Arntzen
4c345166dc
GLSL: Implement task shaders.
...
Due to bugged glslang / spirv-tools w.r.t. terminator instructions,
add a hack to ignore invalid SPIR-V for the time being.
2022-09-05 12:31:22 +02:00
Hans-Kristian Arntzen
bc3987e59a
MSL: Fix various bugs with Ptr/U bitcasts.
2022-08-09 13:49:40 +02:00
Hans-Kristian Arntzen
05bbcc2d09
Do not optimize OpCompositeInsert for hoisted temporaries.
...
We cannot track uses that happens in subsequent loop iterations, so have
to be very careful.
Fixes regression introduced after this was added.
2022-08-09 12:44:57 +02:00
Hans-Kristian Arntzen
4dfac510ed
Handle multiple breaks out of switches.
...
Use a switch stack instead.
2022-07-22 15:31:40 +02:00
Hans-Kristian Arntzen
c24d5a7b90
Merge pull request #1985 from KhronosGroup/fix-1973
...
Handle collapsed loops similar to collapsed selections.
2022-07-22 15:28:54 +02:00
Hans-Kristian Arntzen
be904dcc1e
Handle collapsed loops similar to collapsed selections.
...
If we hit the deprecated scenario of selection with identical branches,
we need to collapse loops into direct branches if need be.
2022-07-22 14:37:46 +02:00
Hans-Kristian Arntzen
f7e98c39db
Avoid detection of false loop variables.
...
If the loop variable candidate has a dominating block that lives in an
unrelated loop, we have to reject the loop variable candidate.
2022-07-22 14:08:21 +02:00
Hans-Kristian Arntzen
963fdfdf68
Handle PHI in collapsed switch constructs.
...
Collapsed switch constructs only branch directly to the merge block.
2022-07-04 13:55:00 +02:00
Hans-Kristian Arntzen
e08e0cf28d
GLSL: Handle forced temporary OpConvertUToAccelerationStructureKHR.
...
Need to lower to temporary before casting to RTAS.
2022-06-17 13:38:45 +02:00
Hans-Kristian Arntzen
197a273fd4
Merge pull request #1959 from KhronosGroup/fix-1955-1956
...
GLSL: Add more extension ladder fallbacks for unusual integer sizes.
2022-06-10 10:42:51 +02:00
Hans-Kristian Arntzen
df21a99d1a
GLSL: Add more extension ladder fallbacks for unusual integer sizes.
2022-06-07 18:30:10 +02:00
Hans-Kristian Arntzen
46e4b5a3c8
Fix control flow bug where we missed continue;
...
Case which caused failure:
if (cond)
{
continue;
}
break;
Only allow tracing from inner selections if the outer header never
merges execution.
2022-06-07 15:04:01 +02:00
Hans-Kristian Arntzen
1c88730e12
GLSL: Implement 1D texture emulation for ES.
...
ES does not support 1D images at all. Fake it by promoting 1D images to
2D.
2022-05-27 11:51:34 +02:00
Hans-Kristian Arntzen
4b9e60273c
Add tests for OpCompositeInsert edge cases.
2022-05-18 16:43:32 +02:00
Hans-Kristian Arntzen
23662668dd
Attempt more optimal codegen for OpCompositeInsert.
...
Speculate that we can modify the SSA value in-place. As long as it is
not used after the modify, this is fine.
Also need to make sure we don't attempt to RMW something that is
impossible to modify.
2022-05-18 16:37:33 +02:00
Hans-Kristian Arntzen
7a6c2da9aa
GLSL: Handle more proper semantics for RelaxedPrecision.
...
GLSL and RelaxedPrecision are quite different in what they affect.
RelaxedPrecision affects operations, while this is merely implied in
GLSL based on inputs.
This leads to situations where we have to promote mediump inputs to
highp, and the simplest approach is to force highp temporaries for
inputs which are consumed in a highp context. For completeness, we also
demote RelaxedPrecision inputs to mediump variables.
PHI is handled by copying the PHI into a temporary.
We have to be very careful with hoisted temporaries, since the child
temporary will not be analyzed up-front. We inherit the hoisted-ness
state and emit the hoisted child temporary as necessary. When faking the
temporaries with OpCopyObject, we make sure to block any variable
hoisting.
Hoisting children of PHI variables is fine, since PHIs are not hoisted with
the same framework as other temporaries.
2022-05-02 15:11:24 +02:00
Hans-Kristian Arntzen
40b3053b4c
Handle early reads from loop variables with initializers.
...
Need to consider that static_expression can be 0. Fallback as necessary.
Also need to clear the static expression.
2022-04-28 14:36:53 +02:00
Hans-Kristian Arntzen
d2a4f9842b
GLSL: Support GL_EXT_debug_printf.
2022-04-19 12:07:54 +02:00