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

Change debug info default variable tracking system #2107

Merged
merged 5 commits into from
Feb 26, 2020
Merged

Change debug info default variable tracking system #2107

merged 5 commits into from
Feb 26, 2020

Commits on Feb 21, 2020

  1. Change debug info default variable tracking system.

    Varible Scope info is being disabled. Variable
    Live Range is being enabled. Debug info generated
    for debug code is the same, changes only impact on
    optimized code.
    
    Variable Live Range updates variable's location
    each time something happens to variable's
    liveness. For more information see
    https://github.com/dotnet/runtime/blob/master/docs/design/features/variabletracking.md
    BrianBohe committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    3024a1d View commit details
    Browse the repository at this point in the history
  2. Updating VariableLiveRange

    When a variable is being born at the same location it
    died at the previous assembly instruction (in the same
    group of instructions), we reported as it was alive
    the whole time.
    BrianBohe committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    93c209c View commit details
    Browse the repository at this point in the history
  3. Fixing format problems

    BrianBohe committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    9f55da8 View commit details
    Browse the repository at this point in the history
  4. Adding comments

    BrianBohe committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    15ecc0b View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2020

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