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
rustdoc: Eliminate uses of EarlyDocLinkResolver::all_traits
#103192
Conversation
|
r? @notriddle (rust-highfive has picked a reviewer for you, use r? to override) |
|
@bors try @rust-timer queue |
|
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
rustdoc: Eliminate uses of `all_traits` Another step to rust-lang#94857.
|
|
|
Queued 1193205 with parent 21b2465, future comparison URL. |
|
Finished benchmarking commit (1193205): comparison URL. Overall result:
|
| mean1 | range | count2 | |
|---|---|---|---|
| Regressions (primary) |
19.1% | [0.7%, 50.8%] | 17 |
| Regressions (secondary) |
18.5% | [0.6%, 59.0%] | 6 |
| Improvements (primary) |
- | - | 0 |
| Improvements (secondary) |
- | - | 0 |
| All |
19.1% | [0.7%, 50.8%] | 17 |
Max RSS (memory usage)
Results
This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
| mean1 | range | count2 | |
|---|---|---|---|
| Regressions (primary) |
- | - | 0 |
| Regressions (secondary) |
3.2% | [2.2%, 4.0%] | 3 |
| Improvements (primary) |
- | - | 0 |
| Improvements (secondary) |
- | - | 0 |
| All |
- | - | 0 |
Cycles
Results
This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
| mean1 | range | count2 | |
|---|---|---|---|
| Regressions (primary) |
18.8% | [2.8%, 44.2%] | 16 |
| Regressions (secondary) |
17.9% | [2.7%, 50.8%] | 6 |
| Improvements (primary) |
- | - | 0 |
| Improvements (secondary) |
- | - | 0 |
| All |
18.8% | [2.8%, 44.2%] | 16 |
Footnotes
|
@bors try @rust-timer queue |
|
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
all_traitsEarlyDocLinkResolver::all_traits
rustdoc: Eliminate uses of `EarlyDocLinkResolver::all_traits` Another step to rust-lang#94857.
|
|
|
Queued 6d36958 with parent 84365ff, future comparison URL. |
|
Finished benchmarking commit (6d36958): comparison URL. Overall result: no relevant changes - no action neededBenchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. @bors rollup=never Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Footnotes |
|
@bors r+ |
Rollup of 6 pull requests Successful merges: - rust-lang#101293 (Recover when unclosed char literal is parsed as a lifetime in some positions) - rust-lang#101908 (Suggest let for assignment, and some code refactor) - rust-lang#103192 (rustdoc: Eliminate uses of `EarlyDocLinkResolver::all_traits`) - rust-lang#103226 (Check `needs_infer` before `needs_drop` during HIR generator analysis) - rust-lang#103249 (resolve: Revert "Set effective visibilities for imports more precisely") - rust-lang#103305 (Move some tests to more reasonable places) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
…omez rustdoc: Resolve doc links in external traits having local impls For external impls it was done in rust-lang#103192 right away, but the local impl case was forgotten. Fixes rust-lang#104145.
…omez rustdoc: Resolve doc links in external traits having local impls For external impls it was done in rust-lang#103192 right away, but the local impl case was forgotten. Fixes rust-lang#104145.
…omez rustdoc: Resolve doc links in external traits having local impls For external impls it was done in rust-lang#103192 right away, but the local impl case was forgotten. Fixes rust-lang#104145.
Another step to #94857.