[][src]Struct ra_ap_profile::CpuSpan

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. Tun 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:

$ nix-shell -p gperftools --run \
    'cargo run --release -p rust-analyzer -- parse < ~/projects/rustbench/parser.rs > /dev/null'

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.