Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/8.0] JIT: Fix invalid zero-init suppression for untracked variables #91840

Merged
merged 3 commits into from
Sep 11, 2023

Commits on Sep 9, 2023

  1. JIT: Fix invalid zero-init supression for untracked variables

    optRemoveRedundantZeroInits has logic to remove unnecessary zero inits
    if we can determine that the local will be zeroed in the prolog. In
    addition, it also has logic to suppress the prolog zero init if there is
    a dominating initialization already. The latter logic was trying to
    reason about liveness for untracked locals, which does not make sense.
    
    Fix #91576
    jakobbotsch authored and github-actions committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    f3f3a1a View commit details
    Browse the repository at this point in the history
  2. Make EH succ logic less conservative

    jakobbotsch authored and github-actions committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    ad36eee View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Configuration menu
    Copy the full SHA
    b8b99f2 View commit details
    Browse the repository at this point in the history