diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-07-26 15:28:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-26 15:28:03 +0200 |
| commit | 576af9b779b7c49e7edc288e480234364b6284cc (patch) | |
| tree | a55015a2786de54505160aeea796b124d104efd2 /compiler/rustc_data_structures/src | |
| parent | d88aa06cd96aa52a602fec76c24e932cf27f97a3 (diff) | |
| parent | 4ef18ab06206f447d887824eeb47f70cddffc6cc (diff) | |
| download | rust-576af9b779b7c49e7edc288e480234364b6284cc.tar.gz rust-576af9b779b7c49e7edc288e480234364b6284cc.zip | |
Rollup merge of #144462 - Kobzol:pretty-print-self-profile-args, r=RalfJung
Allow pretty printing paths with `-Zself-profile-events=args` `-Zself-profile-events=args` is pretty heavy and can pretty print a lot of stuff. Rather than hunting down specific cases where this happens, I'd just allow calling `trimmed_def_paths` in this mode. Fixes: https://github.com/rust-lang/rust/issues/144457 r? `@RalfJung`
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/profiling.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/profiling.rs b/compiler/rustc_data_structures/src/profiling.rs index 881aa679156..4a9551a60cf 100644 --- a/compiler/rustc_data_structures/src/profiling.rs +++ b/compiler/rustc_data_structures/src/profiling.rs @@ -551,6 +551,11 @@ impl SelfProfilerRef { pub fn get_self_profiler(&self) -> Option<Arc<SelfProfiler>> { self.profiler.clone() } + + /// Is expensive recording of query keys and/or function arguments enabled? + pub fn is_args_recording_enabled(&self) -> bool { + self.enabled() && self.event_filter_mask.intersects(EventFilter::ARGS) + } } /// A helper for recording costly arguments to self-profiling events. Used with |
