pub struct CpuSpan { /* private fields */ }
Expand description

A wrapper around google_cpu_profiler.

Usage:

  1. Install gpref_tools (https://github.com/gperftools/gperftools), probably packaged with your Linux distro.
  2. Build with cpu_profiler feature.
  3. Run the code, the raw output would be in the ./out.profile file.
  4. Install pprof for visualization (https://github.com/google/pprof).
  5. Bump sampling frequency to once per ms: export CPUPROFILE_FREQUENCY=1000
  6. Use something like pprof -svg target/release/rust-analyzer ./out.profile to see the results.

For example, here’s how I run profiling on NixOS:

$ bat -p shell.nix
with import <nixpkgs> {};
mkShell {
  buildInputs = [ gperftools ];
  shellHook = ''
    export LD_LIBRARY_PATH="${gperftools}/lib:"
  '';
}
$ set -x CPUPROFILE_FREQUENCY 1000
$ nix-shell --run 'cargo test --release --package rust-analyzer --lib -- benchmarks::benchmark_integrated_highlighting --exact --nocapture'
$ pprof -svg target/release/deps/rust_analyzer-8739592dc93d63cb crates/rust-analyzer/out.profile > profile.svg

See this diff for how to profile completions:

https://github.com/rust-analyzer/rust-analyzer/pull/5306

Trait Implementations

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.