SCRIPT  tests/vimfiles/autoload.vim
Sourced 1 time
Total time:   0.002141
 Self time:   0.001430

count  total (s)   self (s)
    1   0.002103   0.001393 call autoload#main()

SCRIPT  tests/vimfiles/autoload/autoload.vim
Sourced 1 time
Total time:   0.000090
 Self time:   0.000090

count  total (s)   self (s)
    1              0.000015 let s:save_cpo = &cpo
    1              0.000009 set cpo&vim
                            
    1              0.000003 function! autoload#today() abort
                              echo strftime('%Y-%m-%d')
                            endfunction
                            
    1              0.000002 function! autoload#main() abort
                              echo 'Hello, world!'
                            endfunction
                            
    1              0.000005 let &cpo = s:save_cpo
    1              0.000014 unlet s:save_cpo

FUNCTION  autoload#today()
    Defined: tests/vimfiles/autoload/autoload.vim line 4
Called 0 times
Total time:   0.000000
 Self time:   0.000000

count  total (s)   self (s)
                              echo strftime('%Y-%m-%d')

FUNCTION  autoload#main()
    Defined: tests/vimfiles/autoload/autoload.vim line 8
Called 1 time
Total time:   0.000595
 Self time:   0.000595

count  total (s)   self (s)
    1              0.000594   echo 'Hello, world!'

FUNCTIONS SORTED ON TOTAL TIME
count  total (s)   self (s)  function
    1   0.000595             autoload#main()
                             autoload#today()

FUNCTIONS SORTED ON SELF TIME
count  total (s)   self (s)  function
    1              0.000595  autoload#main()
                             autoload#today()

