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 <unknown> queries and add more timing info to render_html #81275

Merged
merged 4 commits into from
Jan 24, 2021

Commits on Jan 22, 2021

  1. Remove special casing of rustdoc in rustc_lint

    This is no longer necessary now that rustdoc doesn't run
    everybody_loops.
    jyn514 committed Jan 22, 2021
    Configuration menu
    Copy the full SHA
    0679a4c View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2021

  1. Fix <unknown> queries

    This happened because `alloc_query_strings` was never called.
    jyn514 committed Jan 23, 2021
    Configuration menu
    Copy the full SHA
    bf86fd5 View commit details
    Browse the repository at this point in the history
  2. Add more timing info to render_html

    - Show `create_renderer` and `renderer_after_crate` by default
    - Don't rewrite `extra_verbose_generic_activity`
    jyn514 committed Jan 23, 2021
    Configuration menu
    Copy the full SHA
    1d1010f View commit details
    Browse the repository at this point in the history
  3. Calculate self-profile strings in Compiler::enter instead in codegen

    This avoids each tool having to separately find and call
    `self_profile_alloc_strings`.
    
    - Don't compute the global context if it hasn't yet been computed
    
      This avoids giving extraneous errors about unresolved names if an error
      occurs during parsing.
    jyn514 committed Jan 23, 2021
    Configuration menu
    Copy the full SHA
    ca72f9e View commit details
    Browse the repository at this point in the history