Skip to content

ichizok/vim-perf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vim performance profiler, powered by gperftools

You can use gperftools via Vim script in order to profile Vim.

Requirements

  • gperftools
  • Vim; built with WE_ARE_PROFILING macro

Build Vim

Set -DWE_ARE_PROFILING to CPPFLAGS.

$ cd /path/to/vim $ export CPPFLAGS=-DWE_ARE_PROFILING $ ./configure --with-features=huge ... $ make 

Build vim-perf library

$ cd /path/to/vim-perf $ make 

Usage

set rtp+=/path/to/vim-perf " load vim-perf library  call vimperf#setup() " start cpu profiling call vimperf#start("/path/to/result.out") " or heap profiling call vimperf#start("/path/to/result", "heap") " ... profiling area ... " stop profiling call vimperf#stop() " unload vim-perf library call vimperf#finish()

NOTE If you'd like to use heap profiler, you have to link libtcmalloc to Vim before starting.

Linux: LD_PRELOAD

$ LD_PRELOAD=/path/to/libtcmalloc.so vim ... 

macOS: DYLD_INSERT_LIBRARIES

$ DYLD_INSERT_LIBRARIES=/path/to/libtcmalloc.dylib vim ... 

About

Vim performance profiler, powered by gperftools.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published