Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- root@HPC:~/playground # gprof main
- None
- call graph profile:
- The sum of self and descendents is the major sort
- for this listing.
- function entries:
- index the index of the function in the call graph
- listing, as an aid to locating it (see below).
- %time the percentage of the total time of the program
- accounted for by this function and its
- descendents.
- self the number of seconds spent in this function
- itself.
- descendents
- the number of seconds spent in the descendents of
- this function on behalf of this function.
- called the number of times this function is called (other
- than recursive calls).
- self the number of times this function calls itself
- recursively.
- name the name of the function, with an indication of
- its membership in a cycle, if any.
- index the index of the function in the call graph
- listing, as an aid to locating it.
- parent listings:
- self* the number of seconds of this function's self time
- which is due to calls from this parent.
- descendents*
- the number of seconds of this function's
- descendent time which is due to calls from this
- parent.
- called** the number of times this function is called by
- this parent. This is the numerator of the
- fraction which divides up the function's time to
- its parents.
- total* the number of times this function was called by
- all of its parents. This is the denominator of
- the propagation fraction.
- parents the name of this parent, with an indication of the
- parent's membership in a cycle, if any.
- index the index of this parent in the call graph
- listing, as an aid in locating it.
- children listings:
- self* the number of seconds of this child's self time
- which is due to being called by this function.
- descendent*
- the number of seconds of this child's descendent's
- time which is due to being called by this
- function.
- called** the number of times this child is called by this
- function. This is the numerator of the
- propagation fraction for this child.
- total* the number of times this child is called by all
- functions. This is the denominator of the
- propagation fraction.
- children the name of this child, and an indication of its
- membership in a cycle, if any.
- index the index of this child in the call graph listing,
- as an aid to locating it.
- * these fields are omitted for parents (or
- children) in the same cycle as the function. If
- the function (or child) is a member of a cycle,
- the propagated times and propagation denominator
- represent the self time and descendent time of the
- cycle as a whole.
- ** static-only parents and children are indicated
- by a call count of 0.
- cycle listings:
- the cycle as a whole is listed with the same
- fields as a function entry. Below it are listed
- the members of the cycle, and their contributions
- to the time and call counts of the cycle.
- granularity: each sample hit covers 4 byte(s) for 0.00% of 36.42 seconds
- called/total parents
- index %time self descendents called+self name index
- called/total children
- <spontaneous>
- [1] 50.6 18.43 0.00 _mcount [1]
- -----------------------------------------------
- 2.45 15.54 1/1 _start [3]
- [2] 49.4 2.45 15.54 1 main [2]
- 11.98 3.55 612687365/612687365 arc4random [4]
- 0.00 0.00 52/52 printf [13]
- 0.00 0.00 2/2 _clock_gettime [734]
- 0.00 0.00 2/2 clock_gettime [25]
- 0.00 0.00 1/1 putchar [33]
- -----------------------------------------------
- <spontaneous>
- [3] 49.4 0.00 17.98 _start [3]
- 2.45 15.54 1/1 main [2]
- 0.00 0.00 1/1 exit [30]
- -----------------------------------------------
- 11.98 3.55 612687365/612687365 main [2]
- [4] 42.7 11.98 3.55 612687365 arc4random [4]
- 3.54 0.00 612687365/612687365 __sys_getpid [5]
- 0.02 0.00 1532/1532 arc4_stir [6]
- -----------------------------------------------
- 3.54 0.00 612687365/612687365 arc4random [4]
- [5] 9.7 3.54 0.00 612687365 __sys_getpid [5]
- -----------------------------------------------
- 0.02 0.00 1532/1532 arc4random [4]
- [6] 0.0 0.02 0.00 1532 arc4_stir [6]
- 0.00 0.00 1532/1533 ___sysctl [7]
- -----------------------------------------------
- 0.00 0.00 1/1533 sysctl [8]
- 0.00 0.00 1532/1533 arc4_stir [6]
- [7] 0.0 0.00 0.00 1533 ___sysctl [7]
- -----------------------------------------------
- 0.00 0.00 1/1 _mcleanup (772)
- [8] 0.0 0.00 0.00 1 sysctl [8]
- 0.00 0.00 1/1533 ___sysctl [7]
- -----------------------------------------------
- 0.00 0.00 1/108 _elf_aux_info [726]
- 0.00 0.00 107/108 __sfvwrite [720]
- [9] 0.0 0.00 0.00 108 memcpy [9]
- -----------------------------------------------
- 0.00 0.00 107/107 __sfvwrite [720]
- [10] 0.0 0.00 0.00 107 memchr [10]
- -----------------------------------------------
- 0.00 0.00 2/106 putchar [33]
- 0.00 0.00 104/106 vfprintf_l [15]
- [11] 0.0 0.00 0.00 106 stub_zero [11]
- -----------------------------------------------
- 0.00 0.00 52/52 __vfprintf [723]
- [12] 0.0 0.00 0.00 52 localeconv_l [12]
- 0.00 0.00 1/1 __get_current_monetary_locale [745]
- 0.00 0.00 1/1 __get_current_numeric_locale [746]
- -----------------------------------------------
- 0.00 0.00 52/52 main [2]
- [13] 0.0 0.00 0.00 52 printf [13]
- 0.00 0.00 52/52 vfprintf_l [15]
- 0.00 0.00 52/52 vfprintf [14]
- -----------------------------------------------
- 0.00 0.00 52/52 printf [13]
- [14] 0.0 0.00 0.00 52 vfprintf [14]
- -----------------------------------------------
- 0.00 0.00 52/52 printf [13]
- [15] 0.0 0.00 0.00 52 vfprintf_l [15]
- 0.00 0.00 104/106 stub_zero [11]
- 0.00 0.00 52/53 ___pthread_cleanup_push_imp [722]
- 0.00 0.00 52/52 __vfprintf [723]
- 0.00 0.00 52/53 ___pthread_cleanup_pop_imp [721]
- -----------------------------------------------
- 0.00 0.00 1/12 arena_run_split_large_helper [27]
- 0.00 0.00 11/12 arena_run_split_small [23]
- [16] 0.0 0.00 0.00 12 arena_avail_insert [16]
- -----------------------------------------------
- 0.00 0.00 1/12 __je_arena_malloc_large [749]
- 0.00 0.00 11/12 arena_bin_malloc_hard [21]
- [17] 0.0 0.00 0.00 12 arena_run_first_best_fit [17]
- -----------------------------------------------
- 0.00 0.00 12/12 arena_run_split_remove [19]
- [18] 0.0 0.00 0.00 12 arena_run_heap_remove [18]
- -----------------------------------------------
- 0.00 0.00 1/12 arena_run_split_large_helper [27]
- 0.00 0.00 11/12 arena_run_split_small [23]
- [19] 0.0 0.00 0.00 12 arena_run_split_remove [19]
- 0.00 0.00 12/12 arena_run_heap_remove [18]
- -----------------------------------------------
- 0.00 0.00 1/12 _elf_aux_info [726]
- 0.00 0.00 11/12 __je_bitmap_init [724]
- [20] 0.0 0.00 0.00 12 memset [20]
- -----------------------------------------------
- 0.00 0.00 1/11 __je_arena_malloc_hard [729]
- 0.00 0.00 10/11 __je_arena_tcache_fill_small [751]
- [21] 0.0 0.00 0.00 11 arena_bin_malloc_hard [21]
- 0.00 0.00 11/11 arena_bin_nonfull_run_tryget [22]
- 0.00 0.00 11/12 arena_run_first_best_fit [17]
- 0.00 0.00 11/11 arena_run_split_small [23]
- 0.00 0.00 11/11 __je_bitmap_init [724]
- -----------------------------------------------
- 0.00 0.00 11/11 arena_bin_malloc_hard [21]
- [22] 0.0 0.00 0.00 11 arena_bin_nonfull_run_tryget [22]
- -----------------------------------------------
- 0.00 0.00 11/11 arena_bin_malloc_hard [21]
- [23] 0.0 0.00 0.00 11 arena_run_split_small [23]
- 0.00 0.00 11/12 arena_avail_insert [16]
- 0.00 0.00 11/12 arena_run_split_remove [19]
- -----------------------------------------------
- 0.00 0.00 2/2 __vdso_clock_gettime [733]
- [24] 0.0 0.00 0.00 2 binuptime [24]
- -----------------------------------------------
- 0.00 0.00 2/2 main [2]
- [25] 0.0 0.00 0.00 2 clock_gettime [25]
- 0.00 0.00 2/2 __vdso_clock_gettime [733]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_arena_tdata_get_hard [752]
- [26] 0.0 0.00 0.00 1 a0ialloc [26]
- 0.00 0.00 1/2 __je_arena_malloc_hard [729]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_arena_malloc_large [749]
- [27] 0.0 0.00 0.00 1 arena_run_split_large_helper [27]
- 0.00 0.00 1/12 arena_avail_insert [16]
- 0.00 0.00 1/12 arena_run_split_remove [19]
- -----------------------------------------------
- 0.00 0.00 1/1 handle_static_init [215]
- [28] 0.0 0.00 0.00 1 atexit [28]
- 0.00 0.00 1/1 atexit_register [29]
- -----------------------------------------------
- 0.00 0.00 1/1 atexit [28]
- [29] 0.0 0.00 0.00 1 atexit_register [29]
- -----------------------------------------------
- 0.00 0.00 1/1 _start [3]
- [30] 0.0 0.00 0.00 1 exit [30]
- 0.00 0.00 1/1 __cxa_thread_call_dtors [740]
- 0.00 0.00 1/1 __cxa_finalize [739]
- -----------------------------------------------
- 0.00 0.00 1/1 __smakebuf [766]
- [31] 0.0 0.00 0.00 1 isatty [31]
- 0.00 0.00 1/1 __sys_ioctl [769]
- 0.00 0.00 1/1 tcgetattr [35]
- -----------------------------------------------
- 0.00 0.00 1/1 __do_global_ctors_aux [858]
- [32] 0.0 0.00 0.00 1 jemalloc_constructor [32]
- 0.00 0.00 1/1 __je_malloc_tsd_boot0 [758]
- 0.00 0.00 1/1 sysconf [34]
- 0.00 0.00 1/1 __je_malloc_mutex_boot [757]
- 0.00 0.00 1/1 __je_base_alloc [753]
- 0.00 0.00 1/1 __je_malloc_tsd_boot1 [759]
- -----------------------------------------------
- 0.00 0.00 1/1 main [2]
- [33] 0.0 0.00 0.00 1 putchar [33]
- 0.00 0.00 2/106 stub_zero [11]
- 0.00 0.00 1/53 ___pthread_cleanup_push_imp [722]
- 0.00 0.00 1/53 ___pthread_cleanup_pop_imp [721]
- 0.00 0.00 1/1 __swbuf [767]
- -----------------------------------------------
- 0.00 0.00 1/1 jemalloc_constructor [32]
- [34] 0.0 0.00 0.00 1 sysconf [34]
- 0.00 0.00 1/3 _elf_aux_info [726]
- -----------------------------------------------
- 0.00 0.00 1/1 isatty [31]
- [35] 0.0 0.00 0.00 1 tcgetattr [35]
- -----------------------------------------------
- 0.00 0.00 104/104 __vfprintf [723]
- [720] 0.0 0.00 0.00 104 __sfvwrite [720]
- 0.00 0.00 107/107 memchr [10]
- 0.00 0.00 107/108 memcpy [9]
- 0.00 0.00 1/2 __fflush [728]
- -----------------------------------------------
- 0.00 0.00 1/53 putchar [33]
- 0.00 0.00 52/53 vfprintf_l [15]
- [721] 0.0 0.00 0.00 53 ___pthread_cleanup_pop_imp [721]
- -----------------------------------------------
- 0.00 0.00 1/53 putchar [33]
- 0.00 0.00 52/53 vfprintf_l [15]
- [722] 0.0 0.00 0.00 53 ___pthread_cleanup_push_imp [722]
- -----------------------------------------------
- 0.00 0.00 52/52 vfprintf_l [15]
- [723] 0.0 0.00 0.00 52 __vfprintf [723]
- 0.00 0.00 104/104 __sfvwrite [720]
- 0.00 0.00 52/52 localeconv_l [12]
- 0.00 0.00 1/1 __swsetup [768]
- 0.00 0.00 1/1 __dtoa [742]
- 0.00 0.00 1/2 __Bfree_D2A [727]
- 0.00 0.00 1/1 __freedtoa [744]
- -----------------------------------------------
- 0.00 0.00 11/11 arena_bin_malloc_hard [21]
- [724] 0.0 0.00 0.00 11 __je_bitmap_init [724]
- 0.00 0.00 11/12 memset [20]
- -----------------------------------------------
- 0.00 0.00 6/6 _elf_aux_info [726]
- [725] 0.0 0.00 0.00 6 _once [725]
- -----------------------------------------------
- 0.00 0.00 1/3 sysconf [34]
- 0.00 0.00 1/3 __guard_setup [747]
- 0.00 0.00 1/3 __vdso_clock_gettime [733]
- [726] 0.0 0.00 0.00 3 _elf_aux_info [726]
- 0.00 0.00 6/6 _once [725]
- 0.00 0.00 1/108 memcpy [9]
- 0.00 0.00 1/12 memset [20]
- -----------------------------------------------
- 0.00 0.00 1/2 __vfprintf [723]
- 0.00 0.00 1/2 __dtoa [742]
- [727] 0.0 0.00 0.00 2 __Bfree_D2A [727]
- -----------------------------------------------
- 0.00 0.00 1/2 __swbuf [767]
- 0.00 0.00 1/2 __sfvwrite [720]
- [728] 0.0 0.00 0.00 2 __fflush [728]
- 0.00 0.00 2/2 _swrite [735]
- -----------------------------------------------
- 0.00 0.00 1/2 a0ialloc [26]
- 0.00 0.00 1/2 __je_arena_palloc [750]
- [729] 0.0 0.00 0.00 2 __je_arena_malloc_hard [729]
- 0.00 0.00 1/11 arena_bin_malloc_hard [21]
- -----------------------------------------------
- 0.00 0.00 2/2 __je_arena_choose_hard [748]
- [730] 0.0 0.00 0.00 2 __je_arena_nthreads_get [730]
- -----------------------------------------------
- 0.00 0.00 2/2 __je_arena_choose_hard [748]
- [731] 0.0 0.00 0.00 2 __je_arena_nthreads_inc [731]
- -----------------------------------------------
- 0.00 0.00 2/2 _swrite [735]
- [732] 0.0 0.00 0.00 2 __swrite [732]
- -----------------------------------------------
- 0.00 0.00 2/2 clock_gettime [25]
- [733] 0.0 0.00 0.00 2 __vdso_clock_gettime [733]
- 0.00 0.00 2/2 binuptime [24]
- 0.00 0.00 1/3 _elf_aux_info [726]
- -----------------------------------------------
- 0.00 0.00 2/2 main [2]
- [734] 0.0 0.00 0.00 2 _clock_gettime [734]
- -----------------------------------------------
- 0.00 0.00 2/2 __fflush [728]
- [735] 0.0 0.00 0.00 2 _swrite [735]
- 0.00 0.00 2/2 _write [736]
- 0.00 0.00 2/2 __swrite [732]
- -----------------------------------------------
- 0.00 0.00 2/2 _swrite [735]
- [736] 0.0 0.00 0.00 2 _write [736]
- -----------------------------------------------
- 0.00 0.00 1/1 __rv_alloc_D2A [764]
- [737] 0.0 0.00 0.00 1 __Balloc_D2A [737]
- -----------------------------------------------
- 0.00 0.00 1/1 __do_global_dtors_aux [859]
- [738] 0.0 0.00 0.00 1 __clean_env_destructor [738]
- -----------------------------------------------
- 0.00 0.00 1/1 exit [30]
- [739] 0.0 0.00 0.00 1 __cxa_finalize [739]
- 0.00 0.00 1/1 _mcleanup (772)
- -----------------------------------------------
- 0.00 0.00 1/1 exit [30]
- [740] 0.0 0.00 0.00 1 __cxa_thread_call_dtors [740]
- -----------------------------------------------
- 0.00 0.00 1/1 __dtoa [742]
- [741] 0.0 0.00 0.00 1 __d2b_D2A [741]
- -----------------------------------------------
- 0.00 0.00 1/1 __vfprintf [723]
- [742] 0.0 0.00 0.00 1 __dtoa [742]
- 0.00 0.00 1/1 __flt_rounds [743]
- 0.00 0.00 1/1 __d2b_D2A [741]
- 0.00 0.00 1/1 __rv_alloc_D2A [764]
- 0.00 0.00 1/2 __Bfree_D2A [727]
- -----------------------------------------------
- 0.00 0.00 1/1 __dtoa [742]
- [743] 0.0 0.00 0.00 1 __flt_rounds [743]
- -----------------------------------------------
- 0.00 0.00 1/1 __vfprintf [723]
- [744] 0.0 0.00 0.00 1 __freedtoa [744]
- -----------------------------------------------
- 0.00 0.00 1/1 localeconv_l [12]
- [745] 0.0 0.00 0.00 1 __get_current_monetary_locale [745]
- -----------------------------------------------
- 0.00 0.00 1/1 localeconv_l [12]
- [746] 0.0 0.00 0.00 1 __get_current_numeric_locale [746]
- -----------------------------------------------
- 0.00 0.00 1/1 __do_global_ctors_aux [858]
- [747] 0.0 0.00 0.00 1 __guard_setup [747]
- 0.00 0.00 1/3 _elf_aux_info [726]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_tcache_get_hard [762]
- [748] 0.0 0.00 0.00 1 __je_arena_choose_hard [748]
- 0.00 0.00 2/2 __je_arena_nthreads_get [730]
- 0.00 0.00 2/2 __je_arena_nthreads_inc [731]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_arena_palloc [750]
- [749] 0.0 0.00 0.00 1 __je_arena_malloc_large [749]
- 0.00 0.00 1/12 arena_run_first_best_fit [17]
- 0.00 0.00 1/1 arena_run_split_large_helper [27]
- 0.00 0.00 1/1 __je_arena_tdata_get_hard [752]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_tcache_create [761]
- [750] 0.0 0.00 0.00 1 __je_arena_palloc [750]
- 0.00 0.00 1/1 __je_arena_malloc_large [749]
- 0.00 0.00 1/2 __je_arena_malloc_hard [729]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_tcache_alloc_small_hard [760]
- [751] 0.0 0.00 0.00 1 __je_arena_tcache_fill_small [751]
- 0.00 0.00 10/11 arena_bin_malloc_hard [21]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_arena_malloc_large [749]
- [752] 0.0 0.00 0.00 1 __je_arena_tdata_get_hard [752]
- 0.00 0.00 1/1 a0ialloc [26]
- -----------------------------------------------
- 0.00 0.00 1/1 jemalloc_constructor [32]
- [753] 0.0 0.00 0.00 1 __je_base_alloc [753]
- 0.00 0.00 1/1 __je_extent_tree_szad_nsearch [755]
- 0.00 0.00 1/1 __je_extent_tree_szad_remove [756]
- 0.00 0.00 1/1 __je_extent_tree_szad_insert [754]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_base_alloc [753]
- [754] 0.0 0.00 0.00 1 __je_extent_tree_szad_insert [754]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_base_alloc [753]
- [755] 0.0 0.00 0.00 1 __je_extent_tree_szad_nsearch [755]
- -----------------------------------------------
- 0.00 0.00 1/1 __je_base_alloc [753]
- [756] 0.0 0.00 0.00 1 __je_extent_tree_szad_remove [756]
- -----------------------------------------------
- 0.00 0.00 1/1 jemalloc_constructor [32]
- [757] 0.0 0.00 0.00 1 __je_malloc_mutex_boot [757]
- -----------------------------------------------
- 0.00 0.00 1/1 jemalloc_constructor [32]
- [758] 0.0 0.00 0.00 1 __je_malloc_tsd_boot0 [758]
- -----------------------------------------------
- 0.00 0.00 1/1 jemalloc_constructor [32]
- [759] 0.0 0.00 0.00 1 __je_malloc_tsd_boot1 [759]
- -----------------------------------------------
- 0.00 0.00 1/1 __malloc [763]
- [760] 0.0 0.00 0.00 1 __je_tcache_alloc_small_hard [760]
- 0.00 0.00 1/1 __je_arena_tcache_fill_small [751]
- -----------------------------------------------
- 0.00 0.00 1/1 __malloc [763]
- [761] 0.0 0.00 0.00 1 __je_tcache_create [761]
- 0.00 0.00 1/1 __je_arena_palloc [750]
- -----------------------------------------------
- 0.00 0.00 1/1 __malloc [763]
- [762] 0.0 0.00 0.00 1 __je_tcache_get_hard [762]
- 0.00 0.00 1/1 __je_arena_choose_hard [748]
- -----------------------------------------------
- 0.00 0.00 1/1 __smakebuf [766]
- [763] 0.0 0.00 0.00 1 __malloc [763]
- 0.00 0.00 1/1 __je_tcache_alloc_small_hard [760]
- 0.00 0.00 1/1 __je_tcache_create [761]
- 0.00 0.00 1/1 __je_tcache_get_hard [762]
- -----------------------------------------------
- 0.00 0.00 1/1 __dtoa [742]
- [764] 0.0 0.00 0.00 1 __rv_alloc_D2A [764]
- 0.00 0.00 1/1 __Balloc_D2A [737]
- -----------------------------------------------
- 0.00 0.00 1/1 __swsetup [768]
- [765] 0.0 0.00 0.00 1 __sinit [765]
- -----------------------------------------------
- 0.00 0.00 1/1 __swsetup [768]
- [766] 0.0 0.00 0.00 1 __smakebuf [766]
- 0.00 0.00 1/1 _fstat [771]
- 0.00 0.00 1/1 __malloc [763]
- 0.00 0.00 1/1 isatty [31]
- -----------------------------------------------
- 0.00 0.00 1/1 putchar [33]
- [767] 0.0 0.00 0.00 1 __swbuf [767]
- 0.00 0.00 1/2 __fflush [728]
- -----------------------------------------------
- 0.00 0.00 1/1 __vfprintf [723]
- [768] 0.0 0.00 0.00 1 __swsetup [768]
- 0.00 0.00 1/1 __sinit [765]
- 0.00 0.00 1/1 __smakebuf [766]
- -----------------------------------------------
- 0.00 0.00 1/1 isatty [31]
- [769] 0.0 0.00 0.00 1 __sys_ioctl [769]
- -----------------------------------------------
- 0.00 0.00 1/1 _mcleanup (772)
- [770] 0.0 0.00 0.00 1 __sys_profil [770]
- -----------------------------------------------
- 0.00 0.00 1/1 __smakebuf [766]
- [771] 0.0 0.00 0.00 1 _fstat [771]
- -----------------------------------------------
- flat profile:
- % the percentage of the total running time of the
- time program used by this function.
- cumulative a running sum of the number of seconds accounted
- seconds for by this function and those listed above it.
- self the number of seconds accounted for by this
- seconds function alone. This is the major sort for this
- listing.
- calls the number of times this function was invoked, if
- this function is profiled, else blank.
- self the average number of milliseconds spent in this
- ms/call function per call, if this function is profiled,
- else blank.
- total the average number of milliseconds spent in this
- ms/call function and its descendents per call, if this
- function is profiled, else blank.
- name the name of the function. This is the minor sort
- for this listing. The index shows the location of
- the function in the gprof listing. If the index is
- in parenthesis it shows where it would appear in
- the gprof listing if it were to be printed.
- granularity: each sample hit covers 4 byte(s) for 0.00% of 38.90 seconds
- % cumulative self self total
- time seconds seconds calls ms/call ms/call name
- 47.4 18.43 18.43 0 100.00% _mcount [1]
- 30.8 30.42 11.98 612687365 0.00 0.00 arc4random [4]
- 9.1 33.95 3.54 612687365 0.00 0.00 __sys_getpid [5]
- 6.4 36.43 2.48 0 100.00% .mcount (36)
- 6.3 38.88 2.45 1 2449.06 17984.50 main [2]
- 0.0 38.90 0.02 1532 0.01 0.01 arc4_stir [6]
- 0.0 38.90 0.00 1533 0.00 0.00 ___sysctl [7]
- 0.0 38.90 0.00 108 0.00 0.00 memcpy [9]
- 0.0 38.90 0.00 107 0.00 0.00 memchr [10]
- 0.0 38.90 0.00 106 0.00 0.00 stub_zero [11]
- 0.0 38.90 0.00 104 0.00 0.00 __sfvwrite [720]
- 0.0 38.90 0.00 53 0.00 0.00 ___pthread_cleanup_pop_imp [721]
- 0.0 38.90 0.00 53 0.00 0.00 ___pthread_cleanup_push_imp [722]
- 0.0 38.90 0.00 52 0.00 0.00 __vfprintf [723]
- 0.0 38.90 0.00 52 0.00 0.00 localeconv_l [12]
- 0.0 38.90 0.00 52 0.00 0.00 printf [13]
- 0.0 38.90 0.00 52 0.00 0.00 vfprintf [14]
- 0.0 38.90 0.00 52 0.00 0.00 vfprintf_l [15]
- 0.0 38.90 0.00 12 0.00 0.00 arena_avail_insert [16]
- 0.0 38.90 0.00 12 0.00 0.00 arena_run_first_best_fit [17]
- 0.0 38.90 0.00 12 0.00 0.00 arena_run_heap_remove [18]
- 0.0 38.90 0.00 12 0.00 0.00 arena_run_split_remove [19]
- 0.0 38.90 0.00 12 0.00 0.00 memset [20]
- 0.0 38.90 0.00 11 0.00 0.00 __je_bitmap_init [724]
- 0.0 38.90 0.00 11 0.00 0.00 arena_bin_malloc_hard [21]
- 0.0 38.90 0.00 11 0.00 0.00 arena_bin_nonfull_run_tryget [22]
- 0.0 38.90 0.00 11 0.00 0.00 arena_run_split_small [23]
- 0.0 38.90 0.00 6 0.00 0.00 _once [725]
- 0.0 38.90 0.00 3 0.00 0.00 _elf_aux_info [726]
- 0.0 38.90 0.00 2 0.00 0.00 __Bfree_D2A [727]
- 0.0 38.90 0.00 2 0.00 0.00 __fflush [728]
- 0.0 38.90 0.00 2 0.00 0.00 __je_arena_malloc_hard [729]
- 0.0 38.90 0.00 2 0.00 0.00 __je_arena_nthreads_get [730]
- 0.0 38.90 0.00 2 0.00 0.00 __je_arena_nthreads_inc [731]
- 0.0 38.90 0.00 2 0.00 0.00 __swrite [732]
- 0.0 38.90 0.00 2 0.00 0.00 __vdso_clock_gettime [733]
- 0.0 38.90 0.00 2 0.00 0.00 _clock_gettime [734]
- 0.0 38.90 0.00 2 0.00 0.00 _swrite [735]
- 0.0 38.90 0.00 2 0.00 0.00 _write [736]
- 0.0 38.90 0.00 2 0.00 0.00 binuptime [24]
- 0.0 38.90 0.00 2 0.00 0.00 clock_gettime [25]
- 0.0 38.90 0.00 1 0.00 0.00 __Balloc_D2A [737]
- 0.0 38.90 0.00 1 0.00 0.00 __clean_env_destructor [738]
- 0.0 38.90 0.00 1 0.00 0.00 __cxa_finalize [739]
- 0.0 38.90 0.00 1 0.00 0.00 __cxa_thread_call_dtors [740]
- 0.0 38.90 0.00 1 0.00 0.00 __d2b_D2A [741]
- 0.0 38.90 0.00 1 0.00 0.00 __dtoa [742]
- 0.0 38.90 0.00 1 0.00 0.00 __flt_rounds [743]
- 0.0 38.90 0.00 1 0.00 0.00 __freedtoa [744]
- 0.0 38.90 0.00 1 0.00 0.00 __get_current_monetary_locale [745]
- 0.0 38.90 0.00 1 0.00 0.00 __get_current_numeric_locale [746]
- 0.0 38.90 0.00 1 0.00 0.00 __guard_setup [747]
- 0.0 38.90 0.00 1 0.00 0.00 __je_arena_choose_hard [748]
- 0.0 38.90 0.00 1 0.00 0.00 __je_arena_malloc_large [749]
- 0.0 38.90 0.00 1 0.00 0.00 __je_arena_palloc [750]
- 0.0 38.90 0.00 1 0.00 0.00 __je_arena_tcache_fill_small [751]
- 0.0 38.90 0.00 1 0.00 0.00 __je_arena_tdata_get_hard [752]
- 0.0 38.90 0.00 1 0.00 0.00 __je_base_alloc [753]
- 0.0 38.90 0.00 1 0.00 0.00 __je_extent_tree_szad_insert [754]
- 0.0 38.90 0.00 1 0.00 0.00 __je_extent_tree_szad_nsearch [755]
- 0.0 38.90 0.00 1 0.00 0.00 __je_extent_tree_szad_remove [756]
- 0.0 38.90 0.00 1 0.00 0.00 __je_malloc_mutex_boot [757]
- 0.0 38.90 0.00 1 0.00 0.00 __je_malloc_tsd_boot0 [758]
- 0.0 38.90 0.00 1 0.00 0.00 __je_malloc_tsd_boot1 [759]
- 0.0 38.90 0.00 1 0.00 0.00 __je_tcache_alloc_small_hard [760]
- 0.0 38.90 0.00 1 0.00 0.00 __je_tcache_create [761]
- 0.0 38.90 0.00 1 0.00 0.00 __je_tcache_get_hard [762]
- 0.0 38.90 0.00 1 0.00 0.00 __malloc [763]
- 0.0 38.90 0.00 1 0.00 0.00 __rv_alloc_D2A [764]
- 0.0 38.90 0.00 1 0.00 0.00 __sinit [765]
- 0.0 38.90 0.00 1 0.00 0.00 __smakebuf [766]
- 0.0 38.90 0.00 1 0.00 0.00 __swbuf [767]
- 0.0 38.90 0.00 1 0.00 0.00 __swsetup [768]
- 0.0 38.90 0.00 1 0.00 0.00 __sys_ioctl [769]
- 0.0 38.90 0.00 1 0.00 0.00 __sys_profil [770]
- 0.0 38.90 0.00 1 0.00 0.00 _fstat [771]
- 0.0 38.90 0.00 1 0.00 0.00 _mcleanup (772)
- 0.0 38.90 0.00 1 0.00 0.00 a0ialloc [26]
- 0.0 38.90 0.00 1 0.00 0.00 arena_run_split_large_helper [27]
- 0.0 38.90 0.00 1 0.00 0.00 atexit [28]
- 0.0 38.90 0.00 1 0.00 0.00 atexit_register [29]
- 0.0 38.90 0.00 1 0.00 0.00 exit [30]
- 0.0 38.90 0.00 1 0.00 0.00 isatty [31]
- 0.0 38.90 0.00 1 0.00 0.00 jemalloc_constructor [32]
- 0.0 38.90 0.00 1 0.00 0.00 putchar [33]
- 0.0 38.90 0.00 1 0.00 0.00 sysconf [34]
- 0.0 38.90 0.00 1 0.00 0.00 sysctl [8]
- 0.0 38.90 0.00 1 0.00 0.00 tcgetattr [35]
- 0.0 38.90 0.00 0 0.00% _start [3]
- Index by function name
- (36) .mcount [757] __je_malloc_mutex_b [16] arena_avail_insert
- [737] __Balloc_D2A [758] __je_malloc_tsd_boo [21] arena_bin_malloc_ha
- [727] __Bfree_D2A [759] __je_malloc_tsd_boo [22] arena_bin_nonfull_r
- [721] ___pthread_cleanup_ [760] __je_tcache_alloc_s [17] arena_run_first_bes
- [722] ___pthread_cleanup_ [761] __je_tcache_create [18] arena_run_heap_remo
- [7] ___sysctl [762] __je_tcache_get_har [27] arena_run_split_lar
- [738] __clean_env_destruc [763] __malloc [19] arena_run_split_rem
- [739] __cxa_finalize [764] __rv_alloc_D2A [23] arena_run_split_sma
- [740] __cxa_thread_call_d [720] __sfvwrite [28] atexit
- [741] __d2b_D2A [765] __sinit [29] atexit_register
- [742] __dtoa [766] __smakebuf [24] binuptime
- [728] __fflush [767] __swbuf [25] clock_gettime
- [743] __flt_rounds [732] __swrite [30] exit
- [744] __freedtoa [768] __swsetup [31] isatty
- [745] __get_current_monet [5] __sys_getpid [32] jemalloc_constructo
- [746] __get_current_numer [769] __sys_ioctl [12] localeconv_l
- [747] __guard_setup [770] __sys_profil [2] main
- [748] __je_arena_choose_h [733] __vdso_clock_gettim [10] memchr
- [729] __je_arena_malloc_h [723] __vfprintf [9] memcpy
- [749] __je_arena_malloc_l [734] _clock_gettime [20] memset
- [730] __je_arena_nthreads [726] _elf_aux_info [13] printf
- [731] __je_arena_nthreads [771] _fstat [33] putchar
- [750] __je_arena_palloc (772) _mcleanup [11] stub_zero
- [751] __je_arena_tcache_f [1] _mcount [34] sysconf
- [752] __je_arena_tdata_ge [725] _once [8] sysctl
- [753] __je_base_alloc [735] _swrite [35] tcgetattr
- [724] __je_bitmap_init [736] _write [14] vfprintf
- [754] __je_extent_tree_sz [26] a0ialloc [15] vfprintf_l
- [755] __je_extent_tree_sz [6] arc4_stir
- [756] __je_extent_tree_sz [4] arc4random
Advertisement
Add Comment
Please, Sign In to add comment