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

Compress Liveness data some more. #54420

Merged
merged 1 commit into from
Sep 22, 2018
Merged

Commits on Sep 21, 2018

  1. Compress Liveness data some more.

    Profiling shows that the `(reader, writer, used)` triples used by
    liveness analysis almost always have invalid `reader` and `writer`
    fields. We can take advantage of this knowledge to use a compressed
    representation for them, falling back to a secondary table for the
    uncommon cases.
    
    This change reduces instruction counts on numerous benchmarks, the best
    by 16%. It also reduces max-rss on numerous benchmarks, the best by 38%.
    
    The patch also renames these triples from `Users` to `RWU`, because it's
    confusing having a type whose name is plural and then used within
    vectors whose names are also plural.
    nnethercote committed Sep 21, 2018
    Configuration menu
    Copy the full SHA
    b2f25e3 View commit details
    Browse the repository at this point in the history