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

Fix leaks from panics in destructors #125923

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    a4e6b77 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1bcdc2e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f547dc8 View commit details
    Browse the repository at this point in the history
  4. Fix performance issue with record_operands_moved

    Large arrays/tuples can have enough operands that removing items one at
    a time is significantly slower than creating a hash set first.
    matthewjasper committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    8b4edef View commit details
    Browse the repository at this point in the history
  5. Work around opaque types hiding needs_drop

    When building the MIR we sometimes try to unschedule drops. In this we
    assert that the drop has already been scheduled. Opaque types however
    may be initialized with an expression kind that we know doesn't have a
    type that needs to be dropped. To fix this we don't panic if we can't
    find the drop of a variable with an opaque type.
    matthewjasper committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    3e0db6a View commit details
    Browse the repository at this point in the history