vkd3d-shader/spirv: Always terminate main block.
I encountered a case where a game provides an empty fragment shader, one that disassembles to just:
ps_5_0
dcl_globalFlags refactoringAllowed
which gets translated to:
OpCapability Shader
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %main "main"
OpExecutionMode %main OriginUpperLeft
OpName %main "main"
%void = OpTypeVoid
%3 = OpTypeFunction %void
%main = OpFunction %void None %3
%4 = OpLabel
OpFunctionEnd
This patch is to detect that the OpLabel has not been terminated by a corresponding top-level return, and add it.
Merge request reports
Activity
We'll probably need something like this for d3dbc sources as well, since those generally aren't terminated by a "ret" instruction either, so in that sense this seems fine. I'm tempted to suggest handling this by appending a "ret" instruction to the vkd3d_shader_instruction_array if it doesn't already end with one, but I'd like to hear what Zeb and Conor think in any case.
That shader does seem slightly suspicious though; do we know more about where it came from or how it was produced? Was this shipped with the application, or e.g. produced at run-time from HLSL source? Does it perhaps contain a RDEF section with a creator string?
We'll probably need something like this for d3dbc sources as well, since those generally aren't terminated by a "ret" instruction either, so in that sense this seems fine. I'm tempted to suggest handling this by appending a "ret" instruction to the vkd3d_shader_instruction_array if it doesn't already end with one, but I'd like to hear what Zeb and Conor think in any case.
I suppose the usual argument for preprocessing is that it'll help GLSL, but in this case GLSL doesn't actually need the ret, so it doesn't matter. I guess ultimately it doesn't seem to me like it matters enough to bikeshed anyway.
FWIW, sm1 will need something like this, but that doesn't really affect anything.
Looks like something which should be fixed in the normaliser. But if the current design will be used, I suggest flipping the bool's meaning, i.e. initialise it to
true
if appending a RET may be necessary, and clear it when a RET is found. That would remove any need to change the DXIL patches to disable this fix.added 1 commit
- e3b9d62b - vkd3d-shader: Ensure that the OpLabel emitted...
added 1 commit
- c596a86e - vkd3d-shader/spirv: Ensure that the OpLabel emitted...
added 20 commits
-
c596a86e...b453a0ac - 19 commits from branch
wine:master
- bb680e73 - vkd3d-shader/spirv: Ensure that the OpLabel emitted...
-
c596a86e...b453a0ac - 19 commits from branch