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

Add conditional profile scopes: profile_function_if etc #224

Merged
merged 1 commit into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 85 additions & 8 deletions puffin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ pub fn set_scopes_on(on: bool) {

/// Are the profiler scope macros turned on?
/// This is [`false`] by default.
///
/// Turn on with [`set_scopes_on`].
pub fn are_scopes_on() -> bool {
MACROS_ON.load(Ordering::Relaxed)
}
Expand Down Expand Up @@ -176,7 +178,6 @@ macro_rules! current_function_name {
}};
}

#[allow(clippy::doc_markdown)] // clippy wants to put "MacBook" in ticks 🙄
/// Automatically name the profiling scope based on function name.
///
/// Names should be descriptive, ASCII and without spaces.
Expand Down Expand Up @@ -205,13 +206,55 @@ macro_rules! current_function_name {
/// ```
///
/// Overhead: around 54 ns on Macbook Pro with Apple M1 Max.
///
/// If the puffin profiler is turned off ([`crate::are_scopes_on`] is `false`),
/// the cost is only checking an `AtomicBool`, which is less than 1ns.
///
/// You can conditionally profile a function with [`profile_function_if`].
#[macro_export]
macro_rules! profile_function {
() => {
$crate::profile_function!("");
$crate::profile_function_if!(true, "");
};
($data:expr) => {
let _profiler_scope = if $crate::are_scopes_on() {
$crate::profile_function_if!(true, $data);
};
}

/// Conditionally profile the current function.
///
/// This can be useful to avoid profiler overhead for functions that are sometimes fast and called often.
///
/// For instance:
///
/// ```rs
/// /// Very fast if given a small number,
/// /// and very slow if given a large number.
/// ///
/// /// This is sometimes called many, many times with small numbers,
/// /// and sometimes only a few times, but with a large number.
/// fn do_work(num_jobs: usize) {
/// puffin::profile_function_if!(num_jobs > 1000);
/// // …
/// }
///
/// fn caller() {
/// do_work(10_000_000); // will get profiled
///
/// for i in 0..10_000_000 {
/// do_work(1); // no proile scopes, meaning no profiler overhead.
/// }
/// }
/// ```
///
/// If [`crate::are_scopes_on`] is `false`, the condition is not evaluated.
#[macro_export]
macro_rules! profile_function_if {
($condition:expr) => {
$crate::profile_function_if!($condition, "");
};
($condition:expr, $data:expr) => {
let _profiler_scope = if $crate::are_scopes_on() && ($condition) {
static SCOPE_ID: std::sync::OnceLock<$crate::ScopeId> = std::sync::OnceLock::new();
let scope_id = SCOPE_ID.get_or_init(|| {
$crate::ThreadProfiler::call(|tp| {
Expand Down Expand Up @@ -267,10 +310,25 @@ macro_rules! profile_function {
#[macro_export]
macro_rules! profile_scope_custom {
($name:expr) => {
$crate::profile_scope_custom!($name, "")
$crate::profile_scope_custom_if!(true, $name, "")
};
($name:expr, $data:expr) => {{
if $crate::are_scopes_on() {
$crate::profile_scope_custom_if!(true, $name, $data)
}};
}

/// Like [`profile_scope_custom`], but only conditionally profiles the scope.
///
/// This can be used to avoid profiling overhead for scopes that are sometimes fast and called often.
///
/// See [`profile_function_if`] for a motivating example.
#[macro_export]
macro_rules! profile_scope_custom_if {
($condition:expr, $name:expr) => {
$crate::profile_scope_custom_if!($condition, $name, "")
};
($condition:expr, $name:expr, $data:expr) => {{
if $crate::are_scopes_on() && ($condition) {
static SCOPE_ID: std::sync::OnceLock<$crate::ScopeId> = std::sync::OnceLock::new();
let scope_id = SCOPE_ID.get_or_init(|| {
$crate::ThreadProfiler::call(|tp| {
Expand All @@ -290,7 +348,6 @@ macro_rules! profile_scope_custom {
}};
}

#[allow(clippy::doc_markdown)] // clippy wants to put "MacBook" in ticks 🙄
/// Profile the current scope with the given name (unique in the parent scope).
///
/// Names should be descriptive, ASCII and without spaces.
Expand All @@ -301,13 +358,33 @@ macro_rules! profile_scope_custom {
/// Example: `profile_scope!("load_mesh", mesh_name);`
///
/// Overhead: around 54 ns on Macbook Pro with Apple M1 Max.
///
/// If the puffin profiler is turned off ([`crate::are_scopes_on`] is `false`),
/// the cost is only checking an `AtomicBool`, which is less than 1ns.
///
/// You can conditionally profile a scope with [`profile_scope_if`].
#[macro_export]
macro_rules! profile_scope {
($name:expr) => {
$crate::profile_scope!($name, "");
$crate::profile_scope_if!(true, $name, "");
};
($name:expr, $data:expr) => {
let _profiler_scope = $crate::profile_scope_custom!($name, $data);
$crate::profile_scope_if!(true, $name, $data);
};
}

/// Like [`profile_scope`], but only conditionally profiles the scope.
///
/// This can be used to avoid profiling overhead for scopes that are sometimes fast and called often.
///
/// See [`profile_function_if`] for a motivating example.
#[macro_export]
macro_rules! profile_scope_if {
($condition:expr, $name:expr) => {
$crate::profile_scope_if!($condition, $name, "");
};
($condition:expr, $name:expr, $data:expr) => {
let _profiler_scope = $crate::profile_scope_custom_if!($condition, $name, $data);
};
}

Expand Down
2 changes: 1 addition & 1 deletion puffin_egui/examples/eframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl eframe::App for ExampleApp {
}

fn sleep_ms(ms: usize) {
puffin::profile_function!();
puffin::profile_function_if!(ms > 1);
match ms {
0 => {}
1 => std::thread::sleep(std::time::Duration::from_millis(1)),
Expand Down