Struct ra_ap_profile::CpuSpan[][src]

pub struct CpuSpan { /* fields omitted */ }

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

impl Debug for CpuSpan[src]

impl Drop for CpuSpan[src]

Auto Trait Implementations

impl RefUnwindSafe for CpuSpan

impl Send for CpuSpan

impl Sync for CpuSpan

impl Unpin for CpuSpan

impl UnwindSafe for CpuSpan

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.