Skip to content
Snippets Groups Projects

vkd3d-shader/hlsl: Improvements to static expression evaluation.

Merged Nikolay Sivov requested to merge nsivov/vkd3d:validate_static_expressions into master
1 unresolved thread

vkd3d-shader/hlsl: Support evaluated expressions for sample count in multisampled textures declarations.

Signed-off-by: Nikolay Sivov nsivov@codeweavers.com

Merge request reports

Merge request pipeline #12087 skipped

Merge request pipeline skipped for 06040d2a

Merged by Alexandre JulliardAlexandre Julliard 1 year ago (Jul 4, 2023 9:25pm 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
  • Nikolay Sivov changed title from vkd3d-shader/hlsl: Support evaluated expressions for sample count in... to vkd3d-shader/hlsl: Support evaluated expressions for sample count in multisampled textures declarations.

    changed title from vkd3d-shader/hlsl: Support evaluated expressions for sample count in... to vkd3d-shader/hlsl: Support evaluated expressions for sample count in multisampled textures declarations.

  • Nikolay Sivov changed title from vkd3d-shader/hlsl: Support evaluated expressions for sample count in multisampled textures declarations. to vkd3d-shader/hlsl: Improvements to static expression evaluation.

    changed title from vkd3d-shader/hlsl: Support evaluated expressions for sample count in multisampled textures declarations. to vkd3d-shader/hlsl: Improvements to static expression evaluation.

  • Nikolay Sivov mentioned in merge request wine!3172 (merged)

    mentioned in merge request wine!3172 (merged)

  • Elizabeth Figura
    Elizabeth Figura @zfigura started a thread on commit 24fadbe0
1108 1108 unsigned int ret = 0;
1109 1109 bool progress;
1110 1110
1111 LIST_FOR_EACH_ENTRY(node, &block->instrs, struct hlsl_ir_node, entry)
1112 {
1113 switch (node->type)
1114 {
1115 case HLSL_IR_CONSTANT:
1116 case HLSL_IR_EXPR:
1117 case HLSL_IR_SWIZZLE:
1118 case HLSL_IR_LOAD:
1119 continue;
1120 default:
1121 hlsl_error(ctx, &node->loc, VKD3D_SHADER_ERROR_HLSL_INVALID_SYNTAX,
1122 "Expected literal expression.");
  • Comment on lines +1115 to +1122

    Can you please spell out the other cases instead of using DEFAULT?

    Not least because some brief tests suggest INDEX should also be allowed. (Interestingly, though, ternary expressions are not.)

  • Author Developer

    Done. Maybe they have evaluation logic separate from optimization/elimination passes like we do now. I also added a test for index access, and that does not work yet probably because of some limitation of copy propagation/folding logic. But it's not filtered out too early now at least.

  • Please register or sign in to reply
  • Nikolay Sivov added 16 commits

    added 16 commits

    • 24fadbe0...d5a0b3af - 14 commits from branch wine:master
    • bf1e6304 - vkd3d-shader/hlsl: Support evaluated expressions for sample count in...
    • 7f51265e - vkd3d-shader/hlsl: Disallow certain instruction types from constant expressions.

    Compare with previous version

  • Elizabeth Figura approved this merge request

    approved this merge request

  • Giovanni Mascellani approved this merge request

    approved this merge request

  • Francisco Casas approved this merge request

    approved this merge request

  • Henri Verbeet approved this merge request

    approved this merge request

  • Alexandre Julliard approved this merge request

    approved this merge request

  • Alexandre Julliard added 19 commits

    added 19 commits

    • 7f51265e...73d422a0 - 17 commits from branch wine:master
    • a65c0b0e - vkd3d-shader/hlsl: Support evaluated expressions for sample count in...
    • 06040d2a - vkd3d-shader/hlsl: Disallow certain instruction types from constant expressions.

    Compare with previous version

  • Please register or sign in to reply
    Loading