Skip to content
Snippets Groups Projects

hlsl: Error expressions, part 1.

Merged Elizabeth Figura requested to merge zfigura/vkd3d:mr2 into master
2 unresolved threads

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
597 597 hlsl_error(ctx, loc, VKD3D_SHADER_ERROR_HLSL_INVALID_SYNTAX, "Unroll attribute can't be used with 'fastopt' attribute.");
598 598 }
599 599
600
  • Giovanni Mascellani
  • 1658 1658 case HLSL_CLASS_CONSTANT_BUFFER:
    1659 1659 /* FIXME: Actually we shouldn't even get here, but we don't split
    1660 1660 * matrices yet. */
    1661 case HLSL_CLASS_ERROR:
  • If I understand right, the idea behind this is that the error expression doesn't signal an error in itself. Whoever adds an error to a program must also call hlsl_error(), because that remains the intended path to signal an error. The error expression is rather intended to prevent the parser from doing further validation on an expression that cannot be meaningfully validated any more, so it can carry on validating past that expression. Is that correct?

  • If I understand right, the idea behind this is that the error expression doesn't signal an error in itself. Whoever adds an error to a program must also call hlsl_error(), because that remains the intended path to signal an error. The error expression is rather intended to prevent the parser from doing further validation on an expression that cannot be meaningfully validated any more, so it can carry on validating past that expression. Is that correct?

    Yes, exactly.

  • I left a couple of small comments yesterday, but otherwise this looks fine to me.

  • Giovanni Mascellani approved this merge request

    approved this merge request

  • added 8 commits

    • a83d09b7 - vkd3d-shader/hlsl: Store a pointer to the block's "value" instruction in the block.
    • feee561e - vkd3d-shader/hlsl: Return bool from add_assignment().
    • 7b3b7f80 - vkd3d-shader/hlsl: Do not create a copy in add_assignment().
    • dd71d3db - vkd3d-shader/hlsl: Do not handle HLSL_CLASS_CONSTANT_BUFFER in copy_propagation_transform_load().
    • fee58ce6 - vkd3d-shader/hlsl: Clarify a comment.
    • 5e7428b2 - vkd3d-shader/hlsl: Introduce the "error" type.
    • 52c2b8e1 - vkd3d-shader/hlsl: Return an "error" expression when constructing an...
    • 38a43ed8 - vkd3d-shader/hlsl: Handle error expressions in unary expressions.

    Compare with previous version

  • Henri Verbeet approved this merge request

    approved this merge request

  • Henri Verbeet added 97 commits

    added 97 commits

    • 38a43ed8...799e6105 - 89 commits from branch wine:master
    • 8975933a - vkd3d-shader/hlsl: Store a pointer to the block's "value" instruction in the block.
    • eb7f5f7f - vkd3d-shader/hlsl: Return bool from add_assignment().
    • f73a23f7 - vkd3d-shader/hlsl: Do not create a copy in add_assignment().
    • 010aa53b - vkd3d-shader/hlsl: Do not handle HLSL_CLASS_CONSTANT_BUFFER in copy_propagation_transform_load().
    • 7daaaf63 - vkd3d-shader/hlsl: Clarify a comment.
    • c43e5c8e - vkd3d-shader/hlsl: Introduce the "error" type.
    • 7e3231c7 - vkd3d-shader/hlsl: Return an "error" expression when constructing an...
    • 43b714d8 - vkd3d-shader/hlsl: Handle error expressions in unary expressions.

    Compare with previous version

  • Please register or sign in to reply
    Loading