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

Make metadata a workproduct and reuse it #114669

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

Conversation

cjgillot
Copy link
Contributor

@cjgillot cjgillot commented Aug 9, 2023

This PR aims to skip the generation of metadata by reusing the infrastructure that already exists for compiled codegen-units, namely "workproducts".

This can yield substantial gains (~10%) when we can demonstrate that metadata does not change between an incremental session and the next. This is the case if the crate is unchanged, or if all the changes are in upstream crates and have no effect on it. This latter case is most interesting, as it arises regularly for users with several crates in their workspace.

TODO:

  • Materialize the fact that metadata encoding relies on the relative order of definitions;
  • Refactor the handling of doc links.

@rustbot rustbot added A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Aug 9, 2023
@cjgillot
Copy link
Contributor Author

cjgillot commented Aug 9, 2023

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Aug 9, 2023
@bors
Copy link
Collaborator

bors commented Aug 9, 2023

⌛ Trying commit 3895d701e4a4c854cc003e599ac6efd49435aaef with merge 6a3ac25372eb1f930be018a4061b9b281bb3f42f...

@rust-log-analyzer

This comment has been minimized.

@bors
Copy link
Collaborator

bors commented Aug 9, 2023

☀️ Try build successful - checks-actions
Build commit: 6a3ac25372eb1f930be018a4061b9b281bb3f42f (6a3ac25372eb1f930be018a4061b9b281bb3f42f)

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (6a3ac25372eb1f930be018a4061b9b281bb3f42f): comparison URL.

Overall result: ❌✅ regressions and improvements - ACTION NEEDED

Benchmarking 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.

Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @rustbot label: +perf-regression-triaged along with sufficient written justification. If you cannot justify the regressions please fix the regressions and do another perf run. If the next run shows neutral or positive results, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Warning ⚠: The following benchmark(s) failed to build:

  • hyper-0.14.18
  • exa-0.10.1
  • cranelift-codegen-0.82.1
  • bitmaps-3.1.0
  • stm32f4-0.14.0
  • ctfe-stress-5
  • helloworld
  • unused-warnings
  • cargo-0.60.0
  • image-0.24.1
  • libc-0.2.124
  • tt-muncher
  • issue-88862
  • issue-46449
  • ucd
  • regression-31157
  • unify-linearly
  • webrender-2022
  • deep-vector
  • unicode-normalization-0.1.19
  • await-call-tree
  • clap-3.1.6
  • many-assoc-items
  • serde-1.0.136
  • wg-grammar
  • html5ever-0.26.0
  • externs
  • issue-58319
  • diesel-1.4.8
  • regex-1.5.5
  • ripgrep-13.0.0
  • wf-projection-stress-65510
  • match-stress
  • token-stream-stress
  • serde_derive-1.0.136
  • coercions
  • projection-caching
  • deeply-nested-multi
  • syn-1.0.89
  • tuple-stress
  • derive

Instruction count

This is a highly reliable metric that was used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
2.1% [1.3%, 3.2%] 7
Regressions ❌
(secondary)
1.1% [0.9%, 1.7%] 3
Improvements ✅
(primary)
-4.6% [-17.9%, -2.4%] 30
Improvements ✅
(secondary)
-5.5% [-10.8%, -1.9%] 19
All ❌✅ (primary) -3.4% [-17.9%, 3.2%] 37

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.

mean range count
Regressions ❌
(primary)
1.4% [0.8%, 2.3%] 11
Regressions ❌
(secondary)
2.1% [1.3%, 2.9%] 2
Improvements ✅
(primary)
-1.6% [-2.1%, -1.0%] 8
Improvements ✅
(secondary)
-2.8% [-4.1%, -1.4%] 5
All ❌✅ (primary) 0.1% [-2.1%, 2.3%] 19

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.

mean range count
Regressions ❌
(primary)
2.6% [1.6%, 3.3%] 10
Regressions ❌
(secondary)
2.3% [2.3%, 2.3%] 1
Improvements ✅
(primary)
-7.2% [-18.2%, -2.1%] 32
Improvements ✅
(secondary)
-8.1% [-14.7%, -2.1%] 21
All ❌✅ (primary) -4.9% [-18.2%, 3.3%] 42

Binary size

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.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-0.3% [-2.3%, -0.0%] 60
Improvements ✅
(secondary)
-0.8% [-2.2%, -0.1%] 6
All ❌✅ (primary) -0.3% [-2.3%, -0.0%] 60

Bootstrap: 632.289s -> 632.478s (0.03%)

@rustbot rustbot added perf-regression Performance regression. and removed S-waiting-on-perf Status: Waiting on a perf run to be completed. labels Aug 9, 2023
}
//for (def_id, traits) in &tcx.resolutions(()).doc_link_traits_in_scope {
// record_array!(self.tables.doc_link_traits_in_scope[def_id.to_def_id()] <- traits);
//}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@petrochenkov I've been trying to avoid the dependency on resolutions by using doc_link_resolutions and doc_link_traits_in_scope queries. But I could not understand in which case a definition would have an entry in those, and in which case they would ICE.

Is there a general rule?
Query description says "for a module". In which sense? resolve or mod items?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Query description says "for a module". In which sense? resolve or mod items?

mod items (or crate root).
There will be an entry if a module has doc links on items inside it (only exported items or all items, depending on options, resolve/late.rs determines the precise logic).
This is the data that rustdoc currently wants from us.

The query ICEs instead of producing None because rustdoc is unreliable, and will have future bugs and unpredictable changes with high probability, this ICE prevents it from going out of sync with the logic in rustc.
Maybe you could use a "private" None-returning query used for metadata, and a public ICEing wrapper around it used by rustdoc.

@cjgillot
Copy link
Contributor Author

@bors try @rust-timer queue

@rust-timer

This comment has been minimized.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Aug 12, 2023
@bors
Copy link
Collaborator

bors commented Aug 12, 2023

⌛ Trying commit 5f13bb1 with merge 2fce67ca52380d54b739a68cac1efc7c468cbaa6...

@bors
Copy link
Collaborator

bors commented Aug 12, 2023

☀️ Try build successful - checks-actions
Build commit: 2fce67ca52380d54b739a68cac1efc7c468cbaa6 (2fce67ca52380d54b739a68cac1efc7c468cbaa6)

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (2fce67ca52380d54b739a68cac1efc7c468cbaa6): comparison URL.

Overall result: ❌✅ regressions and improvements - ACTION NEEDED

Benchmarking 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.

Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @rustbot label: +perf-regression-triaged along with sufficient written justification. If you cannot justify the regressions please fix the regressions and do another perf run. If the next run shows neutral or positive results, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

This is a highly reliable metric that was used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
1.4% [0.6%, 3.2%] 52
Regressions ❌
(secondary)
1.0% [0.5%, 1.8%] 12
Improvements ✅
(primary)
-4.6% [-17.9%, -1.0%] 48
Improvements ✅
(secondary)
-5.0% [-10.8%, -0.5%] 33
All ❌✅ (primary) -1.5% [-17.9%, 3.2%] 100

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.

mean range count
Regressions ❌
(primary)
1.4% [0.6%, 2.1%] 14
Regressions ❌
(secondary)
1.7% [1.2%, 2.8%] 3
Improvements ✅
(primary)
-1.8% [-3.9%, -0.7%] 20
Improvements ✅
(secondary)
-2.1% [-4.1%, -1.0%] 8
All ❌✅ (primary) -0.5% [-3.9%, 2.1%] 34

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.

mean range count
Regressions ❌
(primary)
2.4% [0.7%, 3.9%] 20
Regressions ❌
(secondary)
3.2% [3.2%, 3.2%] 1
Improvements ✅
(primary)
-7.0% [-18.3%, -2.1%] 48
Improvements ✅
(secondary)
-8.3% [-13.8%, -2.5%] 29
All ❌✅ (primary) -4.2% [-18.3%, 3.9%] 68

Binary size

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.

mean range count
Regressions ❌
(primary)
0.5% [0.0%, 2.6%] 72
Regressions ❌
(secondary)
1.7% [0.0%, 3.8%] 13
Improvements ✅
(primary)
-0.3% [-0.9%, -0.0%] 21
Improvements ✅
(secondary)
-0.9% [-2.2%, -0.1%] 10
All ❌✅ (primary) 0.3% [-0.9%, 2.6%] 93

Bootstrap: 632.009s -> 632.421s (0.07%)

@rustbot rustbot removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Aug 12, 2023
@petrochenkov petrochenkov self-assigned this Aug 13, 2023
@petrochenkov petrochenkov added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 13, 2023
@bors
Copy link
Collaborator

bors commented Oct 1, 2023

⌛ Trying commit 9742c49 with merge 9310a5e...

bors added a commit to rust-lang-ci/rust that referenced this pull request Oct 1, 2023
Make metadata a workproduct and reuse it

This PR aims to skip the generation of metadata by reusing the infrastructure that already exists for compiled codegen-units, namely "workproducts".

This can yield substantial gains (~10%) when we can demonstrate that metadata does not change between an incremental session and the next. This is the case if the crate is unchanged, or if all the changes are in upstream crates and have no effect on it. This latter case is most interesting, as it arises regularly for users with several crates in their workspace.

TODO:
- [ ] Materialize the fact that metadata encoding relies on the relative order of definitions;
- [ ] Refactor the handling of doc links.
@bors
Copy link
Collaborator

bors commented Oct 1, 2023

☀️ Try build successful - checks-actions
Build commit: 9310a5e (9310a5eb5f8c957370c182edcd92216721062711)

@rust-timer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (9310a5e): comparison URL.

Overall result: ❌✅ regressions and improvements - ACTION NEEDED

Benchmarking 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.

Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @rustbot label: +perf-regression-triaged along with sufficient written justification. If you cannot justify the regressions please fix the regressions and do another perf run. If the next run shows neutral or positive results, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

This is a highly reliable metric that was used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
1.1% [0.2%, 2.9%] 68
Regressions ❌
(secondary)
0.9% [0.4%, 1.7%] 16
Improvements ✅
(primary)
-3.9% [-9.0%, -1.2%] 48
Improvements ✅
(secondary)
-4.7% [-10.9%, -0.5%] 33
All ❌✅ (primary) -1.0% [-9.0%, 2.9%] 116

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.

mean range count
Regressions ❌
(primary)
2.0% [0.7%, 3.6%] 19
Regressions ❌
(secondary)
1.7% [1.5%, 2.2%] 3
Improvements ✅
(primary)
-1.8% [-2.9%, -1.0%] 12
Improvements ✅
(secondary)
-2.2% [-2.4%, -1.9%] 3
All ❌✅ (primary) 0.5% [-2.9%, 3.6%] 31

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.

mean range count
Regressions ❌
(primary)
2.1% [1.0%, 3.7%] 40
Regressions ❌
(secondary)
2.8% [2.4%, 3.2%] 3
Improvements ✅
(primary)
-6.2% [-12.5%, -1.8%] 48
Improvements ✅
(secondary)
-8.5% [-13.8%, -3.1%] 28
All ❌✅ (primary) -2.4% [-12.5%, 3.7%] 88

Binary size

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.

mean range count
Regressions ❌
(primary)
0.3% [0.0%, 2.0%] 67
Regressions ❌
(secondary)
1.3% [0.0%, 3.0%] 13
Improvements ✅
(primary)
-0.2% [-0.6%, -0.0%] 21
Improvements ✅
(secondary)
-0.8% [-2.2%, -0.1%] 10
All ❌✅ (primary) 0.2% [-0.6%, 2.0%] 88

Bootstrap: 630.664s -> 631.304s (0.10%)
Artifact size: 317.36 MiB -> 317.40 MiB (0.01%)

@rustbot rustbot removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Oct 1, 2023
@@ -56,6 +56,21 @@ impl OngoingCodegen {
backend_config: &BackendConfig,
) -> (CodegenResults, FxIndexMap<WorkProductId, WorkProduct>) {
let mut work_products = FxIndexMap::default();

if !backend_config.disable_incr_cache {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reusing the crate metadata when disable_incr_cache is set is fine. This option exists to allow using incr comp while still recreating all object files. This allows for faster iteration of cg_clif changes by allowing the frontend results to be cached while still respecting changes to cg_clif.

{
work_products.insert(id, product);
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be done for all codegen backends. Maybe move it to rustc_incremental or rustc_interface? rustc_interface is responsible for ensuring that the .rmeta file is written in the first place.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rustc_interface has the .rmeta file written by calling encode_and_write_metadata(tcx). This specific code path fetches the metadata to put into the rlib file.

@cjgillot cjgillot marked this pull request as ready for review August 24, 2024 16:07
@rustbot
Copy link
Collaborator

rustbot commented Aug 24, 2024

These commits modify the Cargo.lock file. Unintentional changes to Cargo.lock can be introduced when switching branches and rebasing PRs.

If this was unintentional then you should revert the changes before this PR is merged.
Otherwise, you can ignore this comment.

Some changes occurred in compiler/rustc_codegen_cranelift

cc @bjorn3

@alex-semenyuk alex-semenyuk added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Sep 21, 2024
@alex-semenyuk
Copy link
Member

alex-semenyuk commented Sep 21, 2024

From triage. @cjgillot Am I right that comments were addressed and it's ready for review?

@petrochenkov
Copy link
Contributor

From triage. @cjgillot Am I right that comments were addressed and it's ready for review?

Waiting on cjgillot to answer.
@rustbot author

@rustbot rustbot added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Sep 22, 2024
@bors
Copy link
Collaborator

bors commented Sep 23, 2024

☔ The latest upstream changes (presumably #130724) made this pull request unmergeable. Please resolve the merge conflicts.

@bors
Copy link
Collaborator

bors commented Jan 17, 2025

☔ The latest upstream changes (presumably #135592) made this pull request unmergeable. Please resolve the merge conflicts.

@petrochenkov
Copy link
Contributor

Status is not very clear, still waiting on author.
@cjgillot Do you plan to work on completing it this year?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-query-system Area: The rustc query system (https://rustc-dev-guide.rust-lang.org/query.html) perf-regression Performance regression. S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants