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

count     total (s)      self (s)
    1              0.002400000 call autoload#main()

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

count     total (s)      self (s)
    1              0.000017000 let s:save_cpo = &cpo
    1              0.000010000 set cpo&vim
                            
    1              0.000011000 function! autoload#today() abort
                              echo strftime('%Y-%m-%d')
                            endfunction
                            
    1              0.000002000 function! autoload#main() abort
                              echo 'Hello, world!'
                            endfunction
                            
    1              0.000016000 let &cpo = s:save_cpo
    1              0.000014000 unlet s:save_cpo

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

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

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

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

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

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

