Stabilize -Zprofile-sample-use - #155942
Conversation
|
r? @JohnTitor rustbot has assigned @JohnTitor. Use Why was this reviewer chosen?The reviewer was selected based on:
|
That is fine, yes -- we are accustomed to flag name changes on stabilization etc. :)
Just a quick clarification: it is not a commit yet. While we plan to land it during this cycle, i.e. for v7.2, it has not seen use in mainline Linux yet. Thanks for this! @rustbot label +A-rust-for-linux |
|
@rustbot reroll |
There was a problem hiding this comment.
So, this flag has no testing whatsoever? Having a run-make test seems like a good idea?
Also could you update the stabilization report with some of the content of the documentation you updated, so that it actually describes what these flags do?
Also the reference https://doc.rust-lang.org/reference/ is not relevant here, it does not document rustc flags.
Yep, you are right - just didn't know which test suite is a good idea to run. I've just ran
Added to the stabilization report into the Summary section.
Got it - removed the Reference mention from the stabilization report. |
I think @folkertdev was trying to say that we should add tests for the flags in the PR, i.e. not that we should run the existing tests (which will be done anyway). Ideally, depending on what can be tested, there should be UI, LLVM and assembly tests, and I imagine @folkertdev was mentioning run-make ones to e.g. check the |
|
I kind of think the only relevant test here is that it works end-to-end, i.e. use |
|
The DWARF discriminators being added is something that would be good to test in an LLVM test. Similarly, the (For UI, perhaps the error emitted about mixing the flags, passing a wrong file and things like that. But I am not sure what is usually done or not done for those.) |
|
Fair enough, we can test that LLVM does what it promises too. If there are interaction with other flags then that should be tested as well. For future reference: the stabilization report should contain information like this. Like, what even is this feature, and how do we validate that it works. @rustbot author |
|
Reminder, once the PR becomes ready for a review, use |
|
Thanks for the clarification! I need some time to prepare all the requested changes about providing proper tests and moving flag rename to a dedicated PR. |
This comment has been minimized.
This comment has been minimized.
To be honest, I don't understand what does it mean. I generated the error message with |
9575b1a to
78d4e5b
Compare
|
🔔 This is now entering its final comment period, as per the review above. 🔔 |
|
The final comment period, with a disposition to merge, as per the review above, is now complete. As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed. |
| "compress debug info sections (none, zlib, zstd, default: none)"), | ||
| debuginfo_for_profiling: bool = (false, parse_bool, [TRACKED], | ||
| "emit discriminators and other data necessary for AutoFDO"), | ||
| "emit extra debug info to make sample profile more accurate"), |
There was a problem hiding this comment.
This isn't really part of the stabilization. Both the old and new descriptions are kind of vague to me. Do you still want to keep the updated text? (fine by me if so)
There was a problem hiding this comment.
Yeah, I would like to keep this small update in this PR even if it's not directly related for the stabilization. By this change, I wanted to keep the flag description in sync with the same flag for Clang - https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fdebug-info-for-profiling . Since PGO (and especially Sampling PGO) coverage across the ecosystem is really small, I wanted to reduce any kind of difference between two compilers in a place where they describe the same thing - so less potential questions would be raised by people in the future.
Please don't get me wrong - I am also not that happy with this explanation. But I think it's better than we had before. I hope in the future we will try to get rid of this flag completely (and integrate into some debuginfo level by default, as was previously lightly discussed somewhere in Zulip) but it's not yet done.
| 1. Profile data generated with one cannot be used by the other, and there is no | ||
| conversion tool that can convert one to the other. So, a profile generated via | ||
| `-Cprofile-generate` must be used with `-Cprofile-use`. Similarly, sampling | ||
| profiles generated by external profilers must be converted and used with | ||
| `-Cprofile-sample-use`. |
There was a problem hiding this comment.
these flag names come out of the blue. This paragraph above should introduce them
rustcsupports profile guided optimization with two different kinds of
profiling.
There was a problem hiding this comment.
Agree.
I think instead of repeating the flags for Instrumentation/Sampling PGO we can move this "Differences between Instrumentation and Sampling" after the "Profiling with Sampling" section and before "Further reading". In this case, the order will be kinda natural: at first we describe Instrumentation PGO (with corresponding compiler flags), then Sampling PGO (with its flags too - already included), and then highlight some differences between them.
What do you think about this approach? If yes, I'll do it and rebase the PR.
|
@rustbot author |
|
@bors r+ rollup |
|
📋 This PR cannot be approved because it currently has the following labels: |
|
Hmm shouldn't the bot remove that? anyhow @bors r+ rollup |
|
📋 This PR cannot be approved because it currently has the following label: |
|
... @bors r+ rollup |
…e-use-and-debug-info-for-profiling, r=folkertdev Stabilize `-Zprofile-sample-use` Tracking issue: rust-lang#155668 # Stabilization report ## Summary Sample Profile-Guided Optimization (Sample PGO or SPGO) is an alternative way to perform feedback-directed optimization (FDO). Rustc already supports Instrumented PGO (with the `-Cprofile-generate` / `-Cprofile-use` flags). Downside of the instrumented approach include that it requires a separate compilation and that the instrumentation has significant runtime overhead. SPGO instead uses the output of external profilers like `perf` during the compilation process to perform more aggressive compiler optimizations. This approach is described in [this paper](https://dl.acm.org/doi/abs/10.1145/2854038.2854044). I propose stabilizing `-Zprofile-sample-use` as `-Cprofile-sample-use` More information can be found in the updated by the PR "Profile-guided Optimization" guide or Clang PGO [guide](https://clang.llvm.org/docs/UsersManual.html#using-sampling-profilers). These flags are documented as: > - `profile-sample-use`: > > This flag specifies the profiling data file to be used for sample-based > profile-guided optimization (SPGO). The flag takes a mandatory argument which > is the path to a valid `.prof` file. See the chapter on > [profile-guided optimization] for more information. > The `-Zdebuginfo-for-profiling` flag can be used to > improve the quality of the profiling data. For more details about the flag and their usage - check the Profile-guided Optimization guide [change](https://github.com/rust-lang/rust/pull/155942/changes#diff-da79c0293559274602ced76b0d50ab4d56d4eec4dcbb8b59d515b9ae94f26c42). ### What is stabilized One compiler flag: `-Zprofile-sample-use`. ### What isn't stabilized I think this is the right section to compare Sample-based PGO (SPGO) implementation in Rustc vs its "big brother" - Sample-based PGO in Clang. Besides `-Zprofile-sample-use` in Rustc / `-fprofile_sample_use` in Clang and `-Zdebug-info-for-profiling` in Rustc (which we decided to **not** stabilize at the moment) / `-fdebug-info-for-profiling, -fno-debug-info-for-profiling` in Clang, Clang additionally supports the following SPGO-related switches: * `-fpseudo-probe-for-profiling, -fno-pseudo-probe-for-profiling` [flags](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fpseudo-probe-for-profiling). According to the Clang's PGO [guide](https://clang.llvm.org/docs/UsersManual.html#using-sampling-profilers), this switch is optional for SPGO. This switch has originals from an extension of SPGO that is called "Context-sensitive Sample PGO with Pseudo-Instrumentation" or simply "CSSPGO". Here is original [RFC](https://groups.google.com/g/llvm-dev/c/1p1rdYbL93s?pli=1) for the thing, also I can link some LLVM commits/discussions about the topic. This flag is not required for regular SPGO - it's just an improvement idea over regular SPGO, and could be added later to the Rustc in a different process (initially to unstable, than later promoted to stable). But that's another story and we can consider it later. * `-f[no-]unique-internal-linkage-names` [switch](https://clang.llvm.org/docs/UsersManual.html#cmdoption-f-no-unique-internal-linkage-names) is also mentioned in the Clang PGO guide. I don't think that the switch is applicable to Rustc. Correct me if I am wrong pls. * `-fsample-profile-use-profi, -fno-sample-profile-use-profi` [switch](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fsample-profile-use-profi). This switch is also marked as optional in the Clang PGO guide. This switch is an attempt to improve some inaccuracies in SPGO profile with some heuristics. SPGO in Rustc can be easily stabilized without this flag, since it's just a non-critical for regular SPGO usage heuristic. If we decide to add support for this switch to Rustc too - we can do in a separate activity without blocking with stabilization process. Check rust-lang#156898 for more details. * `-fprofile-sample-accurate, -fauto-profile-accurate, -fno-profile-sample-accurate` [switch](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fprofile-sample-accurate). This switch is not mentioned even by the Clang PGO guide :) This flag resolves [this](llvm/llvm-project#63024) issue/feature request from LLVM upstream in SPGO use case. According to the description from Clang: "Specifies that the sample profile is accurate. If the sample profile is accurate, callsites without profile samples are marked as cold. Otherwise, treat callsites without profile samples as if we have no profile". Since we don't specify the flag in Rustc, branches without profile samples are now considered as branches without a profile and optimized as regular release code. Having support for this in Rustc would be definitely a nice addition to be on par with Clang, since there are good use cases for that. But I do not think that this could be a blocker for stabilization of SPGO in Rustc without this functionality - we can add it later. As a proof that SPGO in Rustc works completely okay without it you can use Rust-for-Linux bench [results](https://lore.kernel.org/rust-for-linux/20260331-autofdo-v2-1-eb5c5964820d@google.com/) with SPGO via AutoFDO. I am not aware about any other SPGO-related flags in Clang. We definitely have a gap in SPGO-related flags in Rustc compared to Clang, but none of these gaps is a blocker for stabilization `-Zprofile-sample-use` right now. However, it would be nice to resolve these gaps later: add them in unstable form, test, and later stabilize them to be on par with Clang from SPGO optimization perspective. Right now all the flags above are missing in Rustc even in the unstable form. Stabilization of `-Zprofile-sample-use` **does not** prevent adding all missing SPGO related features later. ## Design ### RFC history No RFC was created for these options. All original discussions for Unstable were done in the original Unstable PR: rust-lang#87918 ### Post-RFC changes > What other user-visible changes have occurred since the RFC was accepted? Describe both changes that the lang team accepted (and link to those decisions) as well as changes that are being presented to the team for the first time in this stabilization report. Compared to the unstable (RFC-like) state, I've made the following changes: * I extended the Rustc's PGO [guide](https://doc.rust-lang.org/beta/rustc/profile-guided-optimization.html) with Sample-based PGO information and instructions, how to use it. This change will resolve rust-lang#117023 . My changes are highly-inspired / cautiously copy-pasted (only needed parts) from the Clang guide. From licensing perspective it should be fine. If it's a problem in any way - I can do some rewording (but I would like to avoid such things). I decided to do some documentation copy due to Sample-based PGO incompatibilities between Clang and Rustc (Clang supports more options at very least). I believe that current version is more user-friendly and easier to use, compared to just referring to the Clang PGO guide. * I changed help message and corresponding documentation for `-Zdebug_info_for_profiling` switch to be in the same way as Clang already [has](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fdebug-info-for-profiling). It's kinda difficult to describe clearly, what the option does without exposing too much LLVM details - that's why I linked the documentation to the corresponding LLVM pass in the Reference for this option. ### Key points No arguments were raised during stabilization discussion of the feature in any place yet, including Zulip discussion: [#t-compiler > Stabilizing Sample PGO (SPGO): &rust-lang#96;-Zprofile-sample-use&rust-lang#96;](https://rust-lang.zulipchat.com/#narrow/channel/131828-t-compiler/topic/Stabilizing.20Sample.20PGO.20.28SPGO.29.3A.20.60-Zprofile-sample-use.60/with/590356923) ### Nightly extensions I am not aware of any other unstable SPGO-related switches. ### Doors closed > What doors does this stabilization close for later changes to the language? E.g., does this stabilization make any other RFCs, lang experiments, or known in-flight proposals more difficult or impossible to do later? * Removing Sample-based PGO support from Rustc will be harder. But the technology itself is used on large scales in other ecosystems like Clang (heavily-used in big tech companies internally), and Rust-for-Linux already started to use it even with Rustc. I don't think will be a need to remove it in near future. * Renaming flags will be harder. But current naming is done to be consistent with Clang. Clang proved robustness of this naming, so it shouldn't be a concern either. No other proposals/experiments/etc. are affected. ## Feedback ### Call for testing Call for testing **wasn't** done - it was slightly discussed [#t-compiler > Stabilizing Sample PGO (SPGO): &rust-lang#96;-Zprofile-sample-use&rust-lang#96; @ 💬](https://rust-lang.zulipchat.com/#narrow/channel/131828-t-compiler/topic/Stabilizing.20Sample.20PGO.20.28SPGO.29.3A.20.60-Zprofile-sample-use.60/near/590581795). However, no negative feedback was received for stabilization of this feature. Right now this feature is already tested personally by me (local experiments with assembly changes verification before/after applying SPGO on an Intel-based (with LBR) Linux machine in some sample apps with `llvm-profgen` tool and by Rust-for-Linux project in this [patch](https://lore.kernel.org/rust-for-linux/20260331-autofdo-v2-1-eb5c5964820d@google.com/). Additionally, this feature was in unstable state for 5 years (since 2021) with no concerns (due to no bugs or no users - who knows. At least it was implemented for a reason 5 years ). I think that's enough verification for such kind of feature. ### Nightly use The only publicly-known user of this feature is Rust-for-Linux project (see [this](https://lore.kernel.org/rust-for-linux/20260331-autofdo-v2-1-eb5c5964820d@google.com/) commit). Besides that, no other users were found on GitHub via GitHub search for `"-Zprofile-sample-use"` query: almost all found entries are various copies of the Unstable book with the documentation for the option, and other places are related to the Linux kernel. Two found issues are related to the tracking [issue](rust-lang#155668) of these two flags, and corresponding tracking [issue](Rust-for-Linux/linux#2) in Rust-for-Linux. I am not personally aware of any closed-source users of this feature. Probably Google (Sampled-based PGO biggest user at least for C++) and other big techs use it somewhere internally too but it's just a guess. ## Implementation ### Major parts - rust-lang#87918 - unstable original implementation - rust-lang#155942 - this PR, stabilization with some minor changes No significant developments on the Rustc side - just propagating in a proper way SPGO profile to the LLVM part of the compiler. ### Coverage * For `-Cprofile-sample-use` we have only UI tests. We haven't implemented e2e tests since it's will be hard to add them to the current test suite (see the [comment](rust-lang#155942 (comment))) ### Breaking changes No breaking changes are expected from this stabilization. ## History - rust-lang#87918 - initial implementation - rust-lang#156887 - renaming `-Zdebug_info_for_profiling` into `-Zdebuginfo_for_profiling` + adding more tests for the feature (left for the history) - rust-lang#155668 - tracking issue ## Acknowledgments * [Michael Benfield](https://github.com/mikebenfield) - author of the original PR for Unstable * [Jakub Beránek](https://github.com/Kobzol/) - the "PGO guy" in Rustc and `cargo-pgo` author * [Miguel Ojeda](https://github.com/ojeda) - Rust-for-Linux maintainer (they already use Sample-based PGO in Rust-for-Linux) * [Alexander Zaitsev](https://github.com/zamazan4ik) - me I am not aware of any person, who is against stabilization of these two flags. ## Open items I am not aware of any open issue, that is a blocker for stabilization of this feature. List of SPGO-related things, which are **not** stabilization blockers in my opinion: * rust-lang#155525 - this could improve SPGO UX with Rustc, but it's not a strict requirement - an externally-installed `llvm-profgen` can be used instead (I've tested it locally by using `llvm-profgen-21` for SPGO with Rustc 1.95, which is LLVM 22-based
Rollup of 12 pull requests Successful merges: - #161127 (Make ShardedHashMap::with_capacity split capacity between shards) - #161183 (avoid pointless spans in target modifier errors) - #161203 (Analysis cleanups) - #155942 (Stabilize `-Zprofile-sample-use`) - #160939 (Fix std-features example in bootstrap.example.toml) - #161084 (Add regression test for test_case attribute on a use item) - #161139 (Add regression test for dyn impl missing type) - #161150 (add crashtests [4/N]) - #161170 (Add regression test for trait on next solver) - #161173 (tidy: Properly restrict undocumented-unsafe to `library/core`) - #161191 (Improve `powerpc-types.rs` test) - #161198 (ping me when target ABI checks are being changed)
Rollup merge of #155942 - zamazan4ik:stabilize-profile-sample-use-and-debug-info-for-profiling, r=folkertdev Stabilize `-Zprofile-sample-use` Tracking issue: #155668 # Stabilization report ## Summary Sample Profile-Guided Optimization (Sample PGO or SPGO) is an alternative way to perform feedback-directed optimization (FDO). Rustc already supports Instrumented PGO (with the `-Cprofile-generate` / `-Cprofile-use` flags). Downside of the instrumented approach include that it requires a separate compilation and that the instrumentation has significant runtime overhead. SPGO instead uses the output of external profilers like `perf` during the compilation process to perform more aggressive compiler optimizations. This approach is described in [this paper](https://dl.acm.org/doi/abs/10.1145/2854038.2854044). I propose stabilizing `-Zprofile-sample-use` as `-Cprofile-sample-use` More information can be found in the updated by the PR "Profile-guided Optimization" guide or Clang PGO [guide](https://clang.llvm.org/docs/UsersManual.html#using-sampling-profilers). These flags are documented as: > - `profile-sample-use`: > > This flag specifies the profiling data file to be used for sample-based > profile-guided optimization (SPGO). The flag takes a mandatory argument which > is the path to a valid `.prof` file. See the chapter on > [profile-guided optimization] for more information. > The `-Zdebuginfo-for-profiling` flag can be used to > improve the quality of the profiling data. For more details about the flag and their usage - check the Profile-guided Optimization guide [change](https://github.com/rust-lang/rust/pull/155942/changes#diff-da79c0293559274602ced76b0d50ab4d56d4eec4dcbb8b59d515b9ae94f26c42). ### What is stabilized One compiler flag: `-Zprofile-sample-use`. ### What isn't stabilized I think this is the right section to compare Sample-based PGO (SPGO) implementation in Rustc vs its "big brother" - Sample-based PGO in Clang. Besides `-Zprofile-sample-use` in Rustc / `-fprofile_sample_use` in Clang and `-Zdebug-info-for-profiling` in Rustc (which we decided to **not** stabilize at the moment) / `-fdebug-info-for-profiling, -fno-debug-info-for-profiling` in Clang, Clang additionally supports the following SPGO-related switches: * `-fpseudo-probe-for-profiling, -fno-pseudo-probe-for-profiling` [flags](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fpseudo-probe-for-profiling). According to the Clang's PGO [guide](https://clang.llvm.org/docs/UsersManual.html#using-sampling-profilers), this switch is optional for SPGO. This switch has originals from an extension of SPGO that is called "Context-sensitive Sample PGO with Pseudo-Instrumentation" or simply "CSSPGO". Here is original [RFC](https://groups.google.com/g/llvm-dev/c/1p1rdYbL93s?pli=1) for the thing, also I can link some LLVM commits/discussions about the topic. This flag is not required for regular SPGO - it's just an improvement idea over regular SPGO, and could be added later to the Rustc in a different process (initially to unstable, than later promoted to stable). But that's another story and we can consider it later. * `-f[no-]unique-internal-linkage-names` [switch](https://clang.llvm.org/docs/UsersManual.html#cmdoption-f-no-unique-internal-linkage-names) is also mentioned in the Clang PGO guide. I don't think that the switch is applicable to Rustc. Correct me if I am wrong pls. * `-fsample-profile-use-profi, -fno-sample-profile-use-profi` [switch](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fsample-profile-use-profi). This switch is also marked as optional in the Clang PGO guide. This switch is an attempt to improve some inaccuracies in SPGO profile with some heuristics. SPGO in Rustc can be easily stabilized without this flag, since it's just a non-critical for regular SPGO usage heuristic. If we decide to add support for this switch to Rustc too - we can do in a separate activity without blocking with stabilization process. Check #156898 for more details. * `-fprofile-sample-accurate, -fauto-profile-accurate, -fno-profile-sample-accurate` [switch](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fprofile-sample-accurate). This switch is not mentioned even by the Clang PGO guide :) This flag resolves [this](llvm/llvm-project#63024) issue/feature request from LLVM upstream in SPGO use case. According to the description from Clang: "Specifies that the sample profile is accurate. If the sample profile is accurate, callsites without profile samples are marked as cold. Otherwise, treat callsites without profile samples as if we have no profile". Since we don't specify the flag in Rustc, branches without profile samples are now considered as branches without a profile and optimized as regular release code. Having support for this in Rustc would be definitely a nice addition to be on par with Clang, since there are good use cases for that. But I do not think that this could be a blocker for stabilization of SPGO in Rustc without this functionality - we can add it later. As a proof that SPGO in Rustc works completely okay without it you can use Rust-for-Linux bench [results](https://lore.kernel.org/rust-for-linux/20260331-autofdo-v2-1-eb5c5964820d@google.com/) with SPGO via AutoFDO. I am not aware about any other SPGO-related flags in Clang. We definitely have a gap in SPGO-related flags in Rustc compared to Clang, but none of these gaps is a blocker for stabilization `-Zprofile-sample-use` right now. However, it would be nice to resolve these gaps later: add them in unstable form, test, and later stabilize them to be on par with Clang from SPGO optimization perspective. Right now all the flags above are missing in Rustc even in the unstable form. Stabilization of `-Zprofile-sample-use` **does not** prevent adding all missing SPGO related features later. ## Design ### RFC history No RFC was created for these options. All original discussions for Unstable were done in the original Unstable PR: #87918 ### Post-RFC changes > What other user-visible changes have occurred since the RFC was accepted? Describe both changes that the lang team accepted (and link to those decisions) as well as changes that are being presented to the team for the first time in this stabilization report. Compared to the unstable (RFC-like) state, I've made the following changes: * I extended the Rustc's PGO [guide](https://doc.rust-lang.org/beta/rustc/profile-guided-optimization.html) with Sample-based PGO information and instructions, how to use it. This change will resolve #117023 . My changes are highly-inspired / cautiously copy-pasted (only needed parts) from the Clang guide. From licensing perspective it should be fine. If it's a problem in any way - I can do some rewording (but I would like to avoid such things). I decided to do some documentation copy due to Sample-based PGO incompatibilities between Clang and Rustc (Clang supports more options at very least). I believe that current version is more user-friendly and easier to use, compared to just referring to the Clang PGO guide. * I changed help message and corresponding documentation for `-Zdebug_info_for_profiling` switch to be in the same way as Clang already [has](https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-fdebug-info-for-profiling). It's kinda difficult to describe clearly, what the option does without exposing too much LLVM details - that's why I linked the documentation to the corresponding LLVM pass in the Reference for this option. ### Key points No arguments were raised during stabilization discussion of the feature in any place yet, including Zulip discussion: [#t-compiler > Stabilizing Sample PGO (SPGO): `-Zprofile-sample-use`](https://rust-lang.zulipchat.com/#narrow/channel/131828-t-compiler/topic/Stabilizing.20Sample.20PGO.20.28SPGO.29.3A.20.60-Zprofile-sample-use.60/with/590356923) ### Nightly extensions I am not aware of any other unstable SPGO-related switches. ### Doors closed > What doors does this stabilization close for later changes to the language? E.g., does this stabilization make any other RFCs, lang experiments, or known in-flight proposals more difficult or impossible to do later? * Removing Sample-based PGO support from Rustc will be harder. But the technology itself is used on large scales in other ecosystems like Clang (heavily-used in big tech companies internally), and Rust-for-Linux already started to use it even with Rustc. I don't think will be a need to remove it in near future. * Renaming flags will be harder. But current naming is done to be consistent with Clang. Clang proved robustness of this naming, so it shouldn't be a concern either. No other proposals/experiments/etc. are affected. ## Feedback ### Call for testing Call for testing **wasn't** done - it was slightly discussed [#t-compiler > Stabilizing Sample PGO (SPGO): `-Zprofile-sample-use` @ 💬](https://rust-lang.zulipchat.com/#narrow/channel/131828-t-compiler/topic/Stabilizing.20Sample.20PGO.20.28SPGO.29.3A.20.60-Zprofile-sample-use.60/near/590581795). However, no negative feedback was received for stabilization of this feature. Right now this feature is already tested personally by me (local experiments with assembly changes verification before/after applying SPGO on an Intel-based (with LBR) Linux machine in some sample apps with `llvm-profgen` tool and by Rust-for-Linux project in this [patch](https://lore.kernel.org/rust-for-linux/20260331-autofdo-v2-1-eb5c5964820d@google.com/). Additionally, this feature was in unstable state for 5 years (since 2021) with no concerns (due to no bugs or no users - who knows. At least it was implemented for a reason 5 years ). I think that's enough verification for such kind of feature. ### Nightly use The only publicly-known user of this feature is Rust-for-Linux project (see [this](https://lore.kernel.org/rust-for-linux/20260331-autofdo-v2-1-eb5c5964820d@google.com/) commit). Besides that, no other users were found on GitHub via GitHub search for `"-Zprofile-sample-use"` query: almost all found entries are various copies of the Unstable book with the documentation for the option, and other places are related to the Linux kernel. Two found issues are related to the tracking [issue](#155668) of these two flags, and corresponding tracking [issue](Rust-for-Linux/linux#2) in Rust-for-Linux. I am not personally aware of any closed-source users of this feature. Probably Google (Sampled-based PGO biggest user at least for C++) and other big techs use it somewhere internally too but it's just a guess. ## Implementation ### Major parts - #87918 - unstable original implementation - #155942 - this PR, stabilization with some minor changes No significant developments on the Rustc side - just propagating in a proper way SPGO profile to the LLVM part of the compiler. ### Coverage * For `-Cprofile-sample-use` we have only UI tests. We haven't implemented e2e tests since it's will be hard to add them to the current test suite (see the [comment](#155942 (comment))) ### Breaking changes No breaking changes are expected from this stabilization. ## History - #87918 - initial implementation - #156887 - renaming `-Zdebug_info_for_profiling` into `-Zdebuginfo_for_profiling` + adding more tests for the feature (left for the history) - #155668 - tracking issue ## Acknowledgments * [Michael Benfield](https://github.com/mikebenfield) - author of the original PR for Unstable * [Jakub Beránek](https://github.com/Kobzol/) - the "PGO guy" in Rustc and `cargo-pgo` author * [Miguel Ojeda](https://github.com/ojeda) - Rust-for-Linux maintainer (they already use Sample-based PGO in Rust-for-Linux) * [Alexander Zaitsev](https://github.com/zamazan4ik) - me I am not aware of any person, who is against stabilization of these two flags. ## Open items I am not aware of any open issue, that is a blocker for stabilization of this feature. List of SPGO-related things, which are **not** stabilization blockers in my opinion: * #155525 - this could improve SPGO UX with Rustc, but it's not a strict requirement - an externally-installed `llvm-profgen` can be used instead (I've tested it locally by using `llvm-profgen-21` for SPGO with Rustc 1.95, which is LLVM 22-based
View all comments
Tracking issue: #155668
Stabilization report
Summary
Sample Profile-Guided Optimization (Sample PGO or SPGO) is an alternative way to perform feedback-directed optimization (FDO). Rustc already supports Instrumented PGO (with the
-Cprofile-generate/-Cprofile-useflags). Downside of the instrumented approach include that it requires a separate compilation and that the instrumentation has significant runtime overhead. SPGO instead uses the output of external profilers likeperfduring the compilation process to perform more aggressive compiler optimizations. This approach is described in this paper.I propose stabilizing
-Zprofile-sample-useas-Cprofile-sample-useMore information can be found in the updated by the PR "Profile-guided Optimization" guide or Clang PGO guide.
These flags are documented as:
For more details about the flag and their usage - check the Profile-guided Optimization guide change.
What is stabilized
One compiler flag:
-Zprofile-sample-use.What isn't stabilized
I think this is the right section to compare Sample-based PGO (SPGO) implementation in Rustc vs its "big brother" - Sample-based PGO in Clang.
Besides
-Zprofile-sample-usein Rustc /-fprofile_sample_usein Clang and-Zdebug-info-for-profilingin Rustc (which we decided to not stabilize at the moment) /-fdebug-info-for-profiling, -fno-debug-info-for-profilingin Clang, Clang additionally supports the following SPGO-related switches:-fpseudo-probe-for-profiling, -fno-pseudo-probe-for-profilingflags. According to the Clang's PGO guide, this switch is optional for SPGO. This switch has originals from an extension of SPGO that is called "Context-sensitive Sample PGO with Pseudo-Instrumentation" or simply "CSSPGO". Here is original RFC for the thing, also I can link some LLVM commits/discussions about the topic. This flag is not required for regular SPGO - it's just an improvement idea over regular SPGO, and could be added later to the Rustc in a different process (initially to unstable, than later promoted to stable). But that's another story and we can consider it later.-f[no-]unique-internal-linkage-namesswitch is also mentioned in the Clang PGO guide. I don't think that the switch is applicable to Rustc. Correct me if I am wrong pls.-fsample-profile-use-profi, -fno-sample-profile-use-profiswitch. This switch is also marked as optional in the Clang PGO guide. This switch is an attempt to improve some inaccuracies in SPGO profile with some heuristics. SPGO in Rustc can be easily stabilized without this flag, since it's just a non-critical for regular SPGO usage heuristic. If we decide to add support for this switch to Rustc too - we can do in a separate activity without blocking with stabilization process. Check Introducing Profi into Rustc for better Sample PGO quality #156898 for more details.-fprofile-sample-accurate, -fauto-profile-accurate, -fno-profile-sample-accurateswitch. This switch is not mentioned even by the Clang PGO guide :) This flag resolves this issue/feature request from LLVM upstream in SPGO use case. According to the description from Clang: "Specifies that the sample profile is accurate. If the sample profile is accurate, callsites without profile samples are marked as cold. Otherwise, treat callsites without profile samples as if we have no profile". Since we don't specify the flag in Rustc, branches without profile samples are now considered as branches without a profile and optimized as regular release code. Having support for this in Rustc would be definitely a nice addition to be on par with Clang, since there are good use cases for that. But I do not think that this could be a blocker for stabilization of SPGO in Rustc without this functionality - we can add it later. As a proof that SPGO in Rustc works completely okay without it you can use Rust-for-Linux bench results with SPGO via AutoFDO.I am not aware about any other SPGO-related flags in Clang.
We definitely have a gap in SPGO-related flags in Rustc compared to Clang, but none of these gaps is a blocker for stabilization
-Zprofile-sample-useright now. However, it would be nice to resolve these gaps later: add them in unstable form, test, and later stabilize them to be on par with Clang from SPGO optimization perspective. Right now all the flags above are missing in Rustc even in the unstable form. Stabilization of-Zprofile-sample-usedoes not prevent adding all missing SPGO related features later.Design
RFC history
No RFC was created for these options. All original discussions for Unstable were done in the original Unstable PR: #87918
Post-RFC changes
Compared to the unstable (RFC-like) state, I've made the following changes:
-Zdebug_info_for_profilingswitch to be in the same way as Clang already has. It's kinda difficult to describe clearly, what the option does without exposing too much LLVM details - that's why I linked the documentation to the corresponding LLVM pass in the Reference for this option.Key points
No arguments were raised during stabilization discussion of the feature in any place yet, including Zulip discussion: #t-compiler > Stabilizing Sample PGO (SPGO): `-Zprofile-sample-use`
Nightly extensions
I am not aware of any other unstable SPGO-related switches.
Doors closed
No other proposals/experiments/etc. are affected.
Feedback
Call for testing
Call for testing wasn't done - it was slightly discussed #t-compiler > Stabilizing Sample PGO (SPGO): `-Zprofile-sample-use` @ 💬. However, no negative feedback was received for stabilization of this feature.
Right now this feature is already tested personally by me (local experiments with assembly changes verification before/after applying SPGO on an Intel-based (with LBR) Linux machine in some sample apps with
llvm-profgentool and by Rust-for-Linux project in this patch. Additionally, this feature was in unstable state for 5 years (since 2021) with no concerns (due to no bugs or no users - who knows. At least it was implemented for a reason 5 years ).I think that's enough verification for such kind of feature.
Nightly use
The only publicly-known user of this feature is Rust-for-Linux project (see this commit). Besides that, no other users were found on GitHub via GitHub search for
"-Zprofile-sample-use"query: almost all found entries are various copies of the Unstable book with the documentation for the option, and other places are related to the Linux kernel. Two found issues are related to the tracking issue of these two flags, and corresponding tracking issue in Rust-for-Linux.I am not personally aware of any closed-source users of this feature. Probably Google (Sampled-based PGO biggest user at least for C++) and other big techs use it somewhere internally too but it's just a guess.
Implementation
Major parts
-Zprofile-sample-use#155942 - this PR, stabilization with some minor changesNo significant developments on the Rustc side - just propagating in a proper way SPGO profile to the LLVM part of the compiler.
Coverage
-Cprofile-sample-usewe have only UI tests. We haven't implemented e2e tests since it's will be hard to add them to the current test suite (see the comment)Breaking changes
No breaking changes are expected from this stabilization.
History
-Zdebuginfo-for-profilingswitch #156887 - renaming-Zdebug_info_for_profilinginto-Zdebuginfo_for_profiling+ adding more tests for the feature (left for the history)profile-sample-useanddebug-info-for-profiling#155668 - tracking issueAcknowledgments
cargo-pgoauthorI am not aware of any person, who is against stabilization of these two flags.
Open items
I am not aware of any open issue, that is a blocker for stabilization of this feature.
List of SPGO-related things, which are not stabilization blockers in my opinion:
llvm-profgencan be used instead (I've tested it locally by usingllvm-profgen-21for SPGO with Rustc 1.95, which is LLVM 22-based