Skip to content
Snippets Groups Projects

vkd3d-shader/spirv: Always terminate main block.

Merged Jan Sikorski requested to merge jsikorski/vkd3d:master into master

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

Merge request pipeline #10834 skipped

Merge request pipeline skipped for bb680e73

Merged by Alexandre JulliardAlexandre Julliard 1 year ago (May 26, 2023 8:19pm UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • 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?

  • Henri Verbeet changed title from Always terminate main block. to vkd3d-shader/spirv: Always terminate main block.

    changed title from Always terminate main block. to vkd3d-shader/spirv: Always terminate main block.

  • 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.

  • Author Contributor

    Looks like the shader is shipped with the game. Windows accepts it and it renders nothing.

  • Jan Sikorski added 1 commit

    added 1 commit

    • e3b9d62b - vkd3d-shader: Ensure that the OpLabel emitted...

    Compare with previous version

  • Jan Sikorski added 1 commit

    added 1 commit

    • c596a86e - vkd3d-shader/spirv: Ensure that the OpLabel emitted...

    Compare with previous version

  • Henri Verbeet approved this merge request

    approved this merge request

  • Alexandre Julliard added 20 commits

    added 20 commits

    Compare with previous version

  • Alexandre Julliard approved this merge request

    approved this merge request

Please register or sign in to reply
Loading