This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

More regexp timings - prof results - any ideas?



I tried profiling to track down why regexp is slow, but it seems to
just point to eval.  I can't glean much from this gprof output.  Maybe
someone can help?

File guile-test3.scm:
(debug-disable 'debug)
(define r (make-regexp "^r"))
(define (t n) (do ((i 0 (1+ i))) ((>= i n))))
(t 100000)

File guile-test4.scm:
(debug-disable 'debug)
(define r (make-regexp "^r"))
(define (t n) (do ((i 0 (1+ i))) ((>= i n)) (regexp-exec r "asdr")))
(t 100000)

Step 1:
Built guile as follows:

   CFLAGS='-O2 -g -pg' ./configure --disable-shared
   make

Step 2:
Ran the above with said guile:

   hjstein@bacall:~/remote-cvs-pkgs/guile-core$ time libguile/guile -s /home/hjstein/scwm/guile-test3.scm
   libguile/guile: warning: different versions of libguile and ice-9:
   libguile/guile: libguile: configured on Mon Oct  5 13:57:54 IST 1998
   libguile/guile: ice-9:    configured on Sat Jul 18 10:22:11 IDT 1998
   4.00user 0.04system 0:04.06elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k
   0inputs+0outputs (155major+189minor)pagefaults 0swaps
   hjstein@bacall:~/remote-cvs-pkgs/guile-core$ mv gmon.out guile-test3.gmon.out
   hjstein@bacall:~/remote-cvs-pkgs/guile-core$ time libguile/guile -s /home/hjstein/scwm/guile-test4.scm
   libguile/guile: warning: different versions of libguile and ice-9:
   libguile/guile: libguile: configured on Mon Oct  5 13:57:54 IST 1998
   libguile/guile: ice-9:    configured on Sat Jul 18 10:22:11 IDT 1998
   14.60user 0.09system 0:14.73elapsed 99%CPU (0avgtext+0avgdata 0maxresident)k
   0inputs+0outputs (159major+194minor)pagefaults 0swaps
   hjstein@bacall:~/remote-cvs-pkgs/guile-core$ mv gmon.out guile-test4.gmon.out

The regexp-exec loop takes 10 seconds more than the empty loop.

Step 3:
To verify that the above is really because of work being done by regexp-exec, I timed the following:

File guile-test7.scm:
(debug-disable 'debug)
(define r (make-regexp "^r"))
(define (f i j) j)
(define (t n) (do ((i 0 (1+ i))) ((>= i n)) (f r "asdr")))
(t 100000)

Run with the above as input:

   hjstein@bacall:~/remote-cvs-pkgs/guile-core$ time libguile/guile -s /home/hjstein/scwm/guile-test7.scm
   libguile/guile: warning: different versions of libguile and ice-9:
   libguile/guile: libguile: configured on Mon Oct  5 13:57:54 IST 1998
   libguile/guile: ice-9:    configured on Sat Jul 18 10:22:11 IDT 1998
   5.54user 0.07system 0:05.82elapsed 96%CPU (0avgtext+0avgdata 0maxresident)k
   0inputs+0outputs (156major+191minor)pagefaults 0swaps

So, it does seem like the time is in regexp-exec.

Step 4:

Investigated the profiling data generated by the the above test4
(10000 calls of regexp-exec).  The above timings say to me that I
should see at least ~8 seconds in regexp-exec, but I can't find it in
the profiling output!  I've appended it to the end of this message.
Maybe someone can tell me how to read it.

Step 5:

Rebuilt guile using gawk's regexp package:
   hjstein@bacall:~/remote-cvs-pkgs/guile-core/libguile$ make gawk_regex.o
   gcc -DHAVE_CONFIG_H -I. -I. -I. -I.. -I./..   -O2 -g -pg -Wall -Wpointer-arith -Wmissing-prototypes -c gawk_regex.c
   gawk_regex.c:3648: warning: `re_match_2_internal' was used with no prototype before its definition
   gawk_regex.c: In function `re_match_2_internal':
   gawk_regex.c:4316: warning: unused variable `destination'
   gawk_regex.c:4466: warning: unused variable `destination'
   gawk_regex.c:4519: warning: unused variable `destination'
   gawk_regex.c:4722: warning: unused variable `destination'
   gawk_regex.c:4735: warning: unused variable `destination'
   hjstein@bacall:~/remote-cvs-pkgs/guile-core/libguile$ gcc -O2 -g -pg -Wall -Wpointer-arith -Wmissing-prototypes -o guile guile.o gawk_regex.o .libs/libguile.a -ldl -lreadline -ltermcap -lm -ldl -lreadline -ltermcap -lm
   hjstein@bacall:~/remote-cvs-pkgs/guile-core/libguile$ cd ..
   hjstein@bacall:~/remote-cvs-pkgs/guile-core$ time libguile/guile -s /home/hjstein/scwm/guile-test4.scm
   libguile/guile: warning: different versions of libguile and ice-9:
   libguile/guile: libguile: configured on Mon Oct  5 13:57:54 IST 1998
   libguile/guile: ice-9:    configured on Sat Jul 18 10:22:11 IDT 1998
   9.42user 0.06system 0:10.50elapsed 90%CPU (0avgtext+0avgdata 0maxresident)k
   0inputs+0outputs (203major+190minor)pagefaults 0swaps

BTW, I renamed the gawk regexp stuff with gawk_ as a prefix so that
regexp.h & config.h, etc wouldn't conflict with guile:
   hjstein@bacall:~/remote-cvs-pkgs/guile-core/libguile$ ls -l gawk*
   -rw-r--r--   1 hjstein  users        5649 Oct  5 12:21 gawk_config.h
   -rw-r--r--   1 hjstein  users        1465 Oct  5 12:20 gawk_custom.h
   -rw-r--r--   1 hjstein  users      179530 Oct  5 12:21 gawk_regex.c
   -rw-r--r--   1 hjstein  users       19680 Oct  5 12:20 gawk_regex.h
   -rw-r--r--   1 hjstein  users       57928 Oct  7 20:55 gawk_regex.o

The run time is down from 14.73 seconds to 10.5, so regexp itself was
a significant part of the run time, but it since awk can do such
things almost instantaneously, I attribute the difference in run time
btw test4 & test7 to overhead in scm_regexp_exec.

But, as I said, I can't make enough sense from the profiling output to
find out exactly where or why this would be the case.

Here's the profiling output:
Flat profile:

Each sample counts as 0.01 seconds.
  %   cumulative   self              self     total           
 time   seconds   seconds    calls  ms/call  ms/call  name    
 28.31      2.20     2.20                             mcount
 16.60      3.49     1.29     2701     0.48     0.62  scm_ceval
 16.34      4.76     1.27    23540     0.05     0.05  scm_gc_mark
 11.20      5.63     0.87      104     8.37     8.37  scm_gc_sweep
  3.09      5.87     0.24   473782     0.00     0.00  scm_cons
  3.09      6.11     0.24   100000     0.00     0.00  scm_regexp_exec
  2.70      6.32     0.21   227167     0.00     0.00  scm_acons
  2.57      6.52     0.20   100063     0.00     0.00  scm_sum
  2.06      6.68     0.16   102098     0.00     0.00  scm_gsubr_apply
  1.54      6.80     0.12   104993     0.00     0.00  scm_nconc2last
  1.42      6.91     0.11   119074     0.00     0.00  scm_cons2
  1.16      7.00     0.09   103749     0.00     0.00  scm_apply
  1.16      7.09     0.09     1847     0.05     0.06  scm_deval
  1.03      7.17     0.08   101785     0.00     0.00  scm_must_malloc
  1.03      7.25     0.08   100056     0.00     0.00  scm_less_p
  0.90      7.32     0.07   458427     0.00     0.00  scm_ilookup
  0.77      7.38     0.06   102619     0.00     0.00  scm_eval_args
  0.51      7.42     0.04   214306     0.00     0.00  scm_ilength
  0.39      7.45     0.03   123735     0.00     0.00  scm_getc
  0.39      7.48     0.03   100651     0.00     0.00  scm_must_free
  0.39      7.51     0.03    11760     0.00     0.00  scm_strhash
  0.39      7.54     0.03     8160     0.00     0.01  scm_intern_obarray_soft
  0.26      7.56     0.02   101044     0.00     0.00  scm_async_click
  0.26      7.58     0.02    29265     0.00     0.00  scm_flush_ws
  0.26      7.60     0.02     7374     0.00     0.00  scm_read_token
  0.26      7.62     0.02     7249     0.00     0.00  scm_procedure_p
  0.26      7.64     0.02     3010     0.01     0.01  scm_sym2vcell
  0.26      7.66     0.02      104     0.19     0.19  scm_mark_weak_vector_spines
  0.13      7.67     0.01   104128     0.00     0.00  scm_fgetc
  0.13      7.68     0.01   100001     0.00     0.00  scm_geq_p
  0.13      7.69     0.01    12222     0.00     0.00  scm_lreadr
  0.13      7.70     0.01     7736     0.00     0.00  scm_sloppy_assq
  0.13      7.71     0.01     7208     0.00     0.00  scm_intern_obarray
  0.13      7.72     0.01     4362     0.00     0.00  scm_struct_ref
  0.13      7.73     0.01     2439     0.00     0.00  scm_symbol_p
  0.13      7.74     0.01     1600     0.01     0.01  scm_makstr
  0.13      7.75     0.01      374     0.03     0.03  scm_istring2number
  0.13      7.76     0.01       43     0.23     0.23  scm_make_vector
  0.13      7.77     0.01       34     0.29     0.29  sloppy_mem_check
  0.00      7.77     0.00    51189     0.00     0.00  scm_downcase
  0.00      7.77     0.00    30829     0.00     0.00  scm_markvar
  0.00      7.77     0.00    19606     0.00     0.00  scm_ungetc
  0.00      7.77     0.00     7194     0.00     0.00  scm_intern
  0.00      7.77     0.00     4559     0.00     0.00  scm_eq_p
  0.00      7.77     0.00     4450     0.00     0.00  scm_struct_p
  0.00      7.77     0.00     4449     0.00     0.00  scm_struct_vtable
  0.00      7.77     0.00     4147     0.00     0.01  scm_lreadparen
  0.00      7.77     0.00     4037     0.00     0.00  scm_markcdr
  0.00      7.77     0.00     2933     0.00     0.00  scm_ihashq
  0.00      7.77     0.00     2817     0.00     0.00  scm_lookupcar1
  0.00      7.77     0.00     2779     0.00     0.00  scm_eval_car
  0.00      7.77     0.00     2652     0.00     0.00  scm_closure
  0.00      7.77     0.00     2420     0.00     0.00  scm_set_procedure_property_x
  0.00      7.77     0.00     2389     0.00     0.00  scm_variable_p
  0.00      7.77     0.00     2383     0.00     0.00  scm_procedure_property
  0.00      7.77     0.00     2115     0.00     0.00  scm_hash_fn_get_handle
  0.00      7.77     0.00     2115     0.00     0.00  scm_hash_fn_ref
  0.00      7.77     0.00     2115     0.00     0.00  scm_hashq_ref
  0.00      7.77     0.00     1912     0.00     0.00  scm_dapply
  0.00      7.77     0.00     1516     0.00     0.00  scm_unmemocar
  0.00      7.77     0.00     1496     0.00     0.00  scm_deval_args
  0.00      7.77     0.00     1487     0.00     0.00  scm_badargsp
  0.00      7.77     0.00     1246     0.00     0.00  marksrcprops
  0.00      7.77     0.00     1069     0.00     0.00  scm_makfromstr
  0.00      7.77     0.00      967     0.00     0.00  scm_equal_p
  0.00      7.77     0.00      953     0.00     5.03  scm_sysintern0
  0.00      7.77     0.00      952     0.00     5.03  scm_sysintern0_no_module_lookup
  0.00      7.77     0.00      930     0.00     5.03  scm_sysintern
  0.00      7.77     0.00      841     0.00     0.00  scm_pair_p
  0.00      7.77     0.00      818     0.00     0.00  scm_hash_fn_create_handle_x
  0.00      7.77     0.00      665     0.00     0.00  scm_sym2ovcell_soft
  0.00      7.77     0.00      578     0.00     5.03  scm_make_subr_opt
  0.00      7.77     0.00      577     0.00     5.03  scm_make_subr
  0.00      7.77     0.00      567     0.00     0.00  scm_not
  0.00      7.77     0.00      540     0.00     0.00  bodycheck
  0.00      7.77     0.00      528     0.00     5.24  scm_make_gsubr
  0.00      7.77     0.00      504     0.00     0.00  scm_eval_3
  0.00      7.77     0.00      499     0.00     0.00  scm_top_level_env
  0.00      7.77     0.00      471     0.00     0.00  scm_read
  0.00      7.77     0.00      465     0.00     0.00  scm_eval_x
  0.00      7.77     0.00      462     0.00     0.01  scm_m_define
  0.00      7.77     0.00      457     0.00     0.00  env_top_level
  0.00      7.77     0.00      457     0.00     0.00  scm_m_lambda
  0.00      7.77     0.00      457     0.00     0.00  scm_make_srcprops
  0.00      7.77     0.00      451     0.00     0.00  freesrcprops
  0.00      7.77     0.00      444     0.00     0.01  scm_lreadrecparen
  0.00      7.77     0.00      339     0.00     0.00  scm_hash_fn_set_x
  0.00      7.77     0.00      339     0.00     0.00  scm_hashq_set_x
  0.00      7.77     0.00      324     0.00     0.00  scm_istr2int
  0.00      7.77     0.00      317     0.00     0.00  scm_small_istr2int
  0.00      7.77     0.00      312     0.00     0.00  scm_mark_locations
  0.00      7.77     0.00      308     0.00     0.00  make_vcell_variable
  0.00      7.77     0.00      283     0.00     0.00  scm_null_p
  0.00      7.77     0.00      275     0.00     0.00  scm_casei_streq
  0.00      7.77     0.00      271     0.00     0.00  scm_long2num
  0.00      7.77     0.00      268     0.00     0.00  scm_builtin_variable
  0.00      7.77     0.00      268     0.00     0.00  scm_intern_symbol
  0.00      7.77     0.00      268     0.00     0.00  scm_sym2ovcell
  0.00      7.77     0.00      267     0.00     0.00  scm_symbol_interned_p
  0.00      7.77     0.00      249     0.00     0.00  scm_variable_bound_p
  0.00      7.77     0.00      209     0.00     0.00  mytime
  0.00      7.77     0.00      208     0.00     0.00  mark_async
  0.00      7.77     0.00      208     0.00     0.00  scm_get_internal_run_time
  0.00      7.77     0.00      208     0.00     0.00  scm_markstream
  0.00      7.77     0.00      185     0.00     0.00  scm_m_quote
  0.00      7.77     0.00      115     0.00     0.00  iqq
  0.00      7.77     0.00      115     0.00     0.00  scm_m_quasiquote
  0.00      7.77     0.00      106     0.00     2.53  scm_permanent_object
  0.00      7.77     0.00      104     0.00     0.00  mark_root
  0.00      7.77     0.00      104     0.00     0.00  scm_gc_end
  0.00      7.77     0.00      104     0.00     0.00  scm_gc_start
  0.00      7.77     0.00      104     0.00    20.77  scm_igc
  0.00      7.77     0.00      104     0.00     0.00  scm_stack_size
  0.00      7.77     0.00      104     0.00     0.00  scm_system_async_mark
  0.00      7.77     0.00       98     0.00    20.77  scm_gc_for_alloc
  0.00      7.77     0.00       98     0.00     0.00  scm_gc_for_newcell
  0.00      7.77     0.00       96     0.00     0.00  scm_variable_ref
  0.00      7.77     0.00       93     0.00     0.00  scm_asyncs_pending
  0.00      7.77     0.00       93     0.00     0.00  scm_run_asyncs
  0.00      7.77     0.00       93     0.00     0.00  scm_sys_gc_async_thunk
  0.00      7.77     0.00       92     0.00     1.27  scm_intern0
  0.00      7.77     0.00       92     0.00     0.00  scm_istr2flo
  0.00      7.77     0.00       82     0.00     0.00  scm_ulong2num
  0.00      7.77     0.00       78     0.00     0.00  scm_copy_tree
  0.00      7.77     0.00       72     0.00     0.00  scm_m_letstar
  0.00      7.77     0.00       67     0.00     0.00  scm_append
  0.00      7.77     0.00       66     0.00     0.00  scm_m_let
  0.00      7.77     0.00       63     0.00     0.00  scm_string_append
  0.00      7.77     0.00       56     0.00     0.00  scm_listify
  0.00      7.77     0.00       55     0.00     0.00  scm_gr_p
  0.00      7.77     0.00       52     0.00     0.00  scm_length
  0.00      7.77     0.00       49     0.00     0.00  scm_m_if
  0.00      7.77     0.00       44     0.00     0.00  scm_assoc
  0.00      7.77     0.00       44     0.00     1.27  scm_makcclo
  0.00      7.77     0.00       44     0.00     0.00  scm_stand_in_scm_proc
  0.00      7.77     0.00       42     0.00     0.00  scm_string_ref
  0.00      7.77     0.00       41     0.00     0.00  scm_m_and
  0.00      7.77     0.00       40     0.00     0.00  scm_makfrom0str
  0.00      7.77     0.00       40     0.00     0.00  scm_struct_set_x
  0.00      7.77     0.00       39     0.00     0.00  scm_string_length
  0.00      7.77     0.00       36     0.00     0.00  scm_difference
  0.00      7.77     0.00       36     0.00     0.00  scm_zero_p
  0.00      7.77     0.00       34     0.00     0.00  scm_eval
  0.00      7.77     0.00       33     0.00     0.00  scm_makmmacro
  0.00      7.77     0.00       31     0.00     0.00  scm_m_begin
  0.00      7.77     0.00       31     0.00     0.00  scm_make_variable
  0.00      7.77     0.00       29     0.00     0.00  scm_grow_tok_buf
  0.00      7.77     0.00       29     0.00     0.00  scm_must_realloc
  0.00      7.77     0.00       29     0.00     0.00  scm_vector_set_length_x
  0.00      7.77     0.00       28     0.00     0.00  scm_mkbig
  0.00      7.77     0.00       25     0.00     0.29  scm_memq
  0.00      7.77     0.00       25     0.00     0.00  scm_sloppy_memq
  0.00      7.77     0.00       24     0.00     0.00  scm_access
  0.00      7.77     0.00       23     0.00     0.00  alloc_struct
  0.00      7.77     0.00       23     0.00     0.00  init_struct
  0.00      7.77     0.00       23     0.00     1.05  scm_newsmob
  0.00      7.77     0.00       23     0.00     1.27  scm_take0str
  0.00      7.77     0.00       22     0.00     0.00  scm_hashq_create_handle_x
  0.00      7.77     0.00       22     0.00     0.00  scm_set_source_properties_x
  0.00      7.77     0.00       22     0.00     0.00  scm_source_properties
  0.00      7.77     0.00       22     0.00     0.00  scm_srcprops_to_plist
  0.00      7.77     0.00       21     0.00     0.00  scm_ulong2big
  0.00      7.77     0.00       20     0.00     0.00  scm_list
  0.00      7.77     0.00       20     0.00     5.03  scm_make_synt
  0.00      7.77     0.00       20     0.00     0.00  scm_read_hash_extend
  0.00      7.77     0.00       19     0.00     0.00  scm_m_set
  0.00      7.77     0.00       18     0.00     0.00  scm_make_struct
  0.00      7.77     0.00       18     0.00     0.00  scm_struct_vtable_p
  0.00      7.77     0.00       17     0.00     0.00  scm_list_ref
  0.00      7.77     0.00       17     0.00     0.00  scm_map
  0.00      7.77     0.00       15     0.00     0.00  scm_m_or
  0.00      7.77     0.00       14     0.00     2.53  scm_add_feature
  0.00      7.77     0.00       14     0.00     0.00  scm_for_each
  0.00      7.77     0.00       14     0.00     0.00  scm_options
  0.00      7.77     0.00       14     0.00     0.00  swap_port
  0.00      7.77     0.00       13     0.00     0.00  scm_add_to_port_table
  0.00      7.77     0.00       13     0.00     0.00  scm_dynamic_wind
  0.00      7.77     0.00       13     0.00     0.00  scm_integer_p
  0.00      7.77     0.00       13     0.00     0.00  scm_list_p
  0.00      7.77     0.00       13     0.00     0.00  scm_makdbl
  0.00      7.77     0.00       13     0.00     0.00  scm_make_struct_layout
  0.00      7.77     0.00       13     0.00     0.00  scm_return_first
  0.00      7.77     0.00       11     0.00     0.00  local_ffwrite
  0.00      7.77     0.00       11     0.00     0.00  scm_display
  0.00      7.77     0.00       11     0.00     0.00  scm_iprin1
  0.00      7.77     0.00       11     0.00     0.00  scm_lfwrite
  0.00      7.77     0.00       11     0.00     0.00  scm_prin1
  0.00      7.77     0.00       11     0.00     0.00  scm_vector
  0.00      7.77     0.00       10     0.00     0.00  scm_m_letrec
  0.00      7.77     0.00       10     0.00     0.00  scm_mode_bits
  0.00      7.77     0.00       10     0.00     0.00  scm_string_to_symbol
  0.00      7.77     0.00        9     0.00     0.00  scm_eqv_p
  0.00      7.77     0.00        9     0.00     0.00  scm_make_undefined_variable
  0.00      7.77     0.00        9     0.00     0.29  scm_member
  0.00      7.77     0.00        9     0.00     0.00  scm_sloppy_member
  0.00      7.77     0.00        8     0.00     0.00  scm_remove_from_port_table
  0.00      7.77     0.00        7     0.00     0.00  load
  0.00      7.77     0.00        7     0.00     0.00  local_fclose
  0.00      7.77     0.00        7     0.00     0.00  scm_close_port
  0.00      7.77     0.00        7     0.00     0.00  scm_current_load_port
  0.00      7.77     0.00        7     0.00     0.00  scm_debug_options
  0.00      7.77     0.00        7     0.00     0.00  scm_internal_dynamic_wind
  0.00      7.77     0.00        7     0.00     0.00  scm_open_file
  0.00      7.77     0.00        7     0.00     0.00  scm_primitive_load
  0.00      7.77     0.00        6     0.00     0.00  freeguards
  0.00      7.77     0.00        6     0.00     0.00  scm_delete_x
  0.00      7.77     0.00        6     0.00     0.00  scm_reverse
  0.00      7.77     0.00        6     0.00     0.00  scm_set_current_output_port
  0.00      7.77     0.00        6     0.00     0.00  scm_stat
  0.00      7.77     0.00        6     0.00     0.00  scm_stat2scm
  0.00      7.77     0.00        6     0.00     0.00  scm_vector_ref
  0.00      7.77     0.00        5     0.00    42.40  scm_init_opts
  0.00      7.77     0.00        5     0.00     0.00  scm_m_cond
  0.00      7.77     0.00        5     0.00     0.00  scm_m_start_stack
  0.00      7.77     0.00        5     0.00     0.00  scm_make_vtable_vtable
  0.00      7.77     0.00        5     0.00     0.00  scm_make_weak_key_hash_table
  0.00      7.77     0.00        5     0.00     0.00  scm_make_weak_vector
  0.00      7.77     0.00        5     0.00     0.25  scm_newptob
  0.00      7.77     0.00        5     0.00     0.00  scm_search_path
  0.00      7.77     0.00        5     0.00     0.00  scm_start_stack
  0.00      7.77     0.00        5     0.00     0.00  scm_sys_search_load_path
  0.00      7.77     0.00        4     0.00     0.00  scm_delq_x
  0.00      7.77     0.00        4     0.00     0.00  scm_m_case
  0.00      7.77     0.00        4     0.00     0.00  scm_makacro
  0.00      7.77     0.00        4     0.00     0.00  scm_read_options
  0.00      7.77     0.00        3     0.00     0.00  local_fflush
  0.00      7.77     0.00        3     0.00     0.00  local_fputc
  0.00      7.77     0.00        3     0.00     0.00  scm_char_eq_p
  0.00      7.77     0.00        3     0.00     0.00  scm_current_error_port
  0.00      7.77     0.00        3     0.00     0.00  scm_fflush
  0.00      7.77     0.00        3     0.00     0.00  scm_keyword_p
  0.00      7.77     0.00        3     0.00     0.00  scm_makmacro
  0.00      7.77     0.00        3     0.00     0.00  scm_mkstrport
  0.00      7.77     0.00        3     0.00     0.00  scm_newline
  0.00      7.77     0.00        3     0.00     0.00  scm_port_filename
  0.00      7.77     0.00        3     0.00     0.00  scm_primitive_load_path
  0.00      7.77     0.00        3     0.00     0.00  scm_program_arguments
  0.00      7.77     0.00        3     0.00     0.00  scm_putc
  0.00      7.77     0.00        3     0.00     1.27  scm_set_port_revealed_x
  0.00      7.77     0.00        3     0.00     0.00  scm_software_type
  0.00      7.77     0.00        3     0.00     3.80  scm_stdio_to_port
  0.00      7.77     0.00        3     0.00     0.00  scm_substring
  0.00      7.77     0.00        2     0.00     5.70  init_raprocs
  0.00      7.77     0.00        2     0.00     1.27  scm_async
  0.00      7.77     0.00        2     0.00     0.00  scm_libguile_config_stamp
  0.00      7.77     0.00        2     0.00     1.27  scm_make_string
  0.00      7.77     0.00        2     0.00     3.80  scm_makfromstrs
  0.00      7.77     0.00        2     0.00     5.07  scm_set_program_arguments
  0.00      7.77     0.00        2     0.00     2.54  scm_system_async
  0.00      7.77     0.00        1     0.00     0.00  free_var
  0.00      7.77     0.00        1     0.00    77.25  init_build_info
  0.00      7.77     0.00        1     0.00     0.00  init_heap_seg
  0.00      7.77     0.00        1     0.00    18.97  inner_main
  0.00      7.77     0.00        1     0.00    24.04  invoke_main_func
  0.00      7.77     0.00        1     0.00  5570.00  main
  0.00      7.77     0.00        1     0.00     1.27  make_jmpbuf
  0.00      7.77     0.00        1     0.00     0.00  make_print_state
  0.00      7.77     0.00        1     0.00     0.00  next_fluid_num
  0.00      7.77     0.00        1     0.00     0.00  noop0
  0.00      7.77     0.00        1     0.00     0.00  restart_stack
  0.00      7.77     0.00        1     0.00     0.00  scm_append_x
  0.00      7.77     0.00        1     0.00     0.00  scm_big2inum
  0.00      7.77     0.00        1     0.00  5570.00  scm_boot_guile
  0.00      7.77     0.00        1     0.00  5570.00  scm_boot_guile_1
  0.00      7.77     0.00        1     0.00     0.00  scm_call_with_input_string
  0.00      7.77     0.00        1     0.00     0.00  scm_clear_registered_modules
  0.00      7.77     0.00        1     0.00    17.70  scm_compile_shell_switches
  0.00      7.77     0.00        1     0.00     0.00  scm_definedp
  0.00      7.77     0.00        1     0.00     0.00  scm_dowinds
  0.00      7.77     0.00        1     0.00     2.53  scm_eval_options_interface
  0.00      7.77     0.00        1     0.00     2.53  scm_evaluator_traps
  0.00      7.77     0.00        1     0.00     0.00  scm_exit_status
  0.00      7.77     0.00        1     0.00     0.00  scm_free0
  0.00      7.77     0.00        1     0.00     0.00  scm_get_meta_args
  0.00      7.77     0.00        1     0.00     1.27  scm_handle_by_message
  0.00      7.77     0.00        1     0.00     0.00  scm_init_addr_buffer
  0.00      7.77     0.00        1     0.00    83.85  scm_init_alist
  0.00      7.77     0.00        1     0.00    16.77  scm_init_arbiters
  0.00      7.77     0.00        1     0.00    66.26  scm_init_async
  0.00      7.77     0.00        1     0.00    31.06  scm_init_backtrace
  0.00      7.77     0.00        1     0.00    10.48  scm_init_boolean
  0.00      7.77     0.00        1     0.00   107.95  scm_init_chars
  0.00      7.77     0.00        1     0.00     0.00  scm_init_continuations
  0.00      7.77     0.00        1     0.00   134.64  scm_init_debug
  0.00      7.77     0.00        1     0.00    42.97  scm_init_dynamic_linking
  0.00      7.77     0.00        1     0.00     6.29  scm_init_dynwind
  0.00      7.77     0.00        1     0.00    15.09  scm_init_eq
  0.00      7.77     0.00        1     0.00   650.70  scm_init_error
  0.00      7.77     0.00        1     0.00   356.32  scm_init_eval
  0.00      7.77     0.00        1     0.00    22.90  scm_init_feature
  0.00      7.77     0.00        1     0.00   280.10  scm_init_filesys
  0.00      7.77     0.00        1     0.00    27.25  scm_init_fluids
  0.00      7.77     0.00        1     0.00    25.57  scm_init_fports
  0.00      7.77     0.00        1     0.00    43.77  scm_init_gc
  0.00      7.77     0.00        1     0.00    13.94  scm_init_gdbint
  0.00      7.77     0.00        1     0.00    20.16  scm_init_gsubr
  0.00      7.77     0.00        1     0.00    15.72  scm_init_hash
  0.00      7.77     0.00        1     0.00    99.58  scm_init_hashtab
  0.00      7.77     0.00        1     0.00    83.22  scm_init_ioext
  0.00      7.77     0.00        1     0.00   150.89  scm_init_iprocs
  0.00      7.77     0.00        1     0.00    18.04  scm_init_kw
  0.00      7.77     0.00        1     0.00   146.75  scm_init_list
  0.00      7.77     0.00        1     0.00   140.43  scm_init_load
  0.00      7.77     0.00        1     0.00     5.07  scm_init_load_path
  0.00      7.77     0.00        1     0.00     1.05  scm_init_mallocs
  0.00      7.77     0.00        1     0.00    85.37  scm_init_net_db
  0.00      7.77     0.00        1     0.00   369.53  scm_init_numbers
  0.00      7.77     0.00        1     0.00    49.82  scm_init_objects
  0.00      7.77     0.00        1     0.00    22.23  scm_init_objprop
  0.00      7.77     0.00        1     0.00     7.60  scm_init_options
  0.00      7.77     0.00        1     0.00   171.85  scm_init_pairs
  0.00      7.77     0.00        1     0.00   147.00  scm_init_ports
  0.00      7.77     0.00        1     0.00   482.12  scm_init_posix
  0.00      7.77     0.00        1     0.00    85.03  scm_init_print
  0.00      7.77     0.00        1     0.00    24.76  scm_init_procprop
  0.00      7.77     0.00        1     0.00    15.72  scm_init_procs
  0.00      7.77     0.00        1     0.00    55.65  scm_init_ramap
  0.00      7.77     0.00        1     0.00    66.95  scm_init_read
  0.00      7.77     0.00        1     0.00    53.28  scm_init_regex_posix
  0.00      7.77     0.00        1     0.00    11.53  scm_init_root
  0.00      7.77     0.00        1     0.00    75.91  scm_init_scmsigs
  0.00      7.77     0.00        1     0.00    26.61  scm_init_script
  0.00      7.77     0.00        1     0.00    20.96  scm_init_simpos
  0.00      7.77     0.00        1     0.00   227.01  scm_init_socket
  0.00      7.77     0.00        1     0.00    53.45  scm_init_srcprop
  0.00      7.77     0.00        1     0.00     3.80  scm_init_stackchk
  0.00      7.77     0.00        1     0.00    99.23  scm_init_stacks
  0.00      7.77     0.00        1     0.00    11.41  scm_init_standard_ports
  0.00      7.77     0.00        1     0.00    65.21  scm_init_stime
  0.00      7.77     0.00        1     0.00    23.96  scm_init_storage
  0.00      7.77     0.00        1     0.00    57.65  scm_init_strings
  0.00      7.77     0.00        1     0.00    57.65  scm_init_strop
  0.00      7.77     0.00        1     0.00    50.30  scm_init_strorder
  0.00      7.77     0.00        1     0.00    15.72  scm_init_strports
  0.00      7.77     0.00        1     0.00    71.09  scm_init_struct
  0.00      7.77     0.00        1     0.00    98.14  scm_init_symbols
  0.00      7.77     0.00        1     0.00   126.88  scm_init_tag
  0.00      7.77     0.00        1     0.00    17.82  scm_init_throw
  0.00      7.77     0.00        1     0.00   129.36  scm_init_unif
  0.00      7.77     0.00        1     0.00    42.76  scm_init_variable
  0.00      7.77     0.00        1     0.00    57.65  scm_init_vectors
  0.00      7.77     0.00        1     0.00    20.96  scm_init_version
  0.00      7.77     0.00        1     0.00     5.24  scm_init_vports
  0.00      7.77     0.00        1     0.00    52.41  scm_init_weaks
  0.00      7.77     0.00        1     0.00    27.84  scm_internal_catch
  0.00      7.77     0.00        1     0.00     0.00  scm_internal_parse_path
  0.00      7.77     0.00        1     0.00     0.00  scm_ithrow
  0.00      7.77     0.00        1     0.00     0.00  scm_last_pair
  0.00      7.77     0.00        1     0.00     5.07  scm_load_startup_files
  0.00      7.77     0.00        1     0.00     0.00  scm_m_apply
  0.00      7.77     0.00        1     0.00     0.00  scm_m_do
  0.00      7.77     0.00        1     0.00     1.27  scm_make_fluid
  0.00      7.77     0.00        1     0.00     1.27  scm_make_initial_fluids
  0.00      7.77     0.00        1     0.00     0.00  scm_make_regexp
  0.00      7.77     0.00        1     0.00     1.27  scm_make_root
  0.00      7.77     0.00        1     0.00     1.01  scm_ports_prehistory
  0.00      7.77     0.00        1     0.00     1.27  scm_print_options
  0.00      7.77     0.00        1     0.00     0.00  scm_read_char
  0.00      7.77     0.00        1     0.00     0.00  scm_registered_modules
  0.00      7.77     0.00        1     0.00     0.00  scm_revealed_count
  0.00      7.77     0.00        1     0.00     0.00  scm_reverse_x
  0.00      7.77     0.00        1     0.00     0.00  scm_setbuf0
  0.00      7.77     0.00        1     0.00    18.97  scm_shell
  0.00      7.77     0.00        1     0.00     4.19  scm_smob_prehistory
  0.00      7.77     0.00        1     0.00     0.00  scm_string_equal_p
  0.00      7.77     0.00        1     0.00     0.00  scm_tables_prehistory
  0.00      7.77     0.00        1     0.00     0.00  scm_throw
  0.00      7.77     0.00        1     0.00     0.00  scm_variable_set_x
  0.00      7.77     0.00        1     0.00     0.00  script_meta_arg_P
  0.00      7.77     0.00        1     0.00     6.34  start_stack
  0.00      7.77     0.00        1     0.00     0.00  stgetc
  0.00      7.77     0.00        1     0.00     0.00  sysdep_dynl_init

 %         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.

		     Call graph (explanation follows)


granularity: each sample hit covers 4 byte(s) for 0.18% of 5.57 seconds

index % time    self  children    called     name
                0.00    5.57       1/1           _start [4]
[1]    100.0    0.00    5.57       1         main [1]
                0.00    5.57       1/1           scm_boot_guile [2]
-----------------------------------------------
                0.00    5.57       1/1           main [1]
[2]    100.0    0.00    5.57       1         scm_boot_guile [2]
                0.00    5.57       1/1           scm_boot_guile_1 [3]
-----------------------------------------------
                0.00    5.57       1/1           scm_boot_guile [2]
[3]    100.0    0.00    5.57       1         scm_boot_guile_1 [3]
                0.00    0.65       1/1           scm_init_error [18]
                0.00    0.48       1/1           scm_init_posix [19]
                0.00    0.37       1/1           scm_init_numbers [21]
                0.00    0.36       1/1           scm_init_eval [22]
                0.00    0.28       1/1           scm_init_filesys [23]
                0.00    0.23       1/1           scm_init_socket [27]
                0.00    0.17       1/1           scm_init_pairs [32]
                0.00    0.15       1/1           scm_init_ports [36]
                0.00    0.15       1/1           scm_init_list [37]
                0.00    0.14       1/1           scm_init_load [38]
                0.00    0.13       1/1           scm_init_debug [39]
                0.00    0.13       1/1           scm_init_unif [40]
                0.00    0.13       1/1           scm_init_tag [41]
                0.00    0.11       1/1           scm_init_chars [45]
                0.00    0.10       1/1           scm_init_hashtab [47]
                0.00    0.10       1/1           scm_init_stacks [48]
                0.00    0.10       1/1           scm_init_symbols [49]
                0.00    0.09       1/1           scm_init_net_db [51]
                0.00    0.09       1/1           scm_init_print [52]
                0.00    0.08       1/1           scm_init_alist [53]
                0.00    0.08       1/1           scm_init_ioext [54]
                0.00    0.08       1/1           scm_init_scmsigs [57]
                0.00    0.07       1/1           scm_init_struct [58]
                0.00    0.07       1/1           scm_init_read [60]
                0.00    0.07       1/1           scm_init_async [61]
                0.00    0.07       1/1           scm_init_stime [62]
                0.00    0.06       1/1           scm_init_strings [64]
                0.00    0.06       1/1           scm_init_strop [65]
                0.00    0.06       1/1           scm_init_vectors [66]
                0.00    0.06       1/1           scm_init_ramap [68]
                0.00    0.05       1/1           scm_init_srcprop [69]
                0.00    0.05       1/1           scm_init_regex_posix [70]
                0.00    0.05       1/1           scm_init_weaks [71]
                0.00    0.05       1/1           scm_init_strorder [73]
                0.00    0.05       1/1           scm_init_objects [74]
                0.00    0.04       1/1           scm_init_gc [76]
                0.00    0.04       1/1           scm_init_dynamic_linking [77]
                0.00    0.04       1/1           scm_init_variable [78]
                0.00    0.03       1/1           scm_init_backtrace [83]
                0.00    0.03       1/1           scm_internal_catch [88]
                0.00    0.03       1/1           scm_init_fluids [89]
                0.00    0.03       1/1           scm_init_script [90]
                0.00    0.03       1/1           scm_init_fports [91]
                0.00    0.02       1/1           scm_init_procprop [92]
                0.00    0.02       1/1           scm_init_storage [96]
                0.00    0.02       1/1           scm_init_feature [97]
                0.00    0.02       1/1           scm_init_objprop [99]
                0.00    0.02       1/1           scm_init_version [101]
                0.00    0.02       1/1           scm_init_simpos [100]
                0.00    0.02       1/1           scm_init_gsubr [102]
                0.00    0.02       1/1           scm_init_kw [108]
                0.00    0.02       1/1           scm_init_throw [109]
                0.00    0.02       1/1           scm_init_arbiters [111]
                0.00    0.02       1/1           scm_init_hash [112]
                0.00    0.02       1/1           scm_init_procs [113]
                0.00    0.02       1/1           scm_init_strports [114]
                0.00    0.02       1/1           scm_init_eq [115]
                0.00    0.01       1/1           scm_init_gdbint [116]
                0.00    0.01       1/1           scm_init_root [119]
                0.00    0.01       1/1           scm_init_standard_ports [121]
                0.00    0.01       1/1           scm_init_boolean [123]
                0.00    0.01       1/1           scm_init_options [135]
                0.00    0.01       1/1           start_stack [137]
                0.00    0.01       1/1           scm_init_dynwind [138]
                0.00    0.01       1/1           scm_init_vports [139]
                0.00    0.01       1/1           scm_init_load_path [141]
                0.00    0.01       1/2           scm_set_program_arguments [124]
                0.00    0.00       1/1           scm_smob_prehistory [143]
                0.00    0.00       1/1           scm_init_stackchk [145]
                0.00    0.00       1/1           scm_init_mallocs [167]
                0.00    0.00       1/1           scm_ports_prehistory [168]
                0.00    0.00       1/1           scm_tables_prehistory [370]
                0.00    0.00       1/1           scm_init_continuations [362]
-----------------------------------------------
                                                 <spontaneous>
[4]    100.0    0.00    5.57                 _start [4]
                0.00    5.57       1/1           main [1]
-----------------------------------------------
[5]    100.0    2.63    2.94    4394+1406913 <cycle 1 as a whole> [5]
                0.00    2.04      98             scm_gc_for_alloc <cycle 1> [13]
                1.29    0.37    2701+421036      scm_ceval <cycle 1> [14]
                0.24    0.23  100000             scm_regexp_exec <cycle 1> [20]
                0.09    0.16  103749             scm_apply <cycle 1> [25]
                0.24    0.00  473782             scm_cons <cycle 1> [26]
                0.21    0.00  227167             scm_acons <cycle 1> [29]
                0.16    0.00  102098             scm_gsubr_apply <cycle 1> [33]
                0.09    0.02    1847+23991       scm_deval <cycle 1> [43]
                0.11    0.00  119074             scm_cons2 <cycle 1> [44]
                0.06    0.00  102619             scm_eval_args <cycle 1> [63]
                0.03    0.02    8160             scm_intern_obarray_soft <cycle 1> [72]
                0.02    0.02    7374             scm_read_token <cycle 1> [82]
                0.01    0.02   12222+280         scm_lreadr <cycle 1> [86]
                0.02    0.00    3010             scm_sym2vcell <cycle 1> [93]
                0.00    0.02    4147             scm_lreadparen <cycle 1> [98]
                0.02    0.00  101044             scm_async_click <cycle 1> [103]
                0.01    0.00    1600             scm_makstr <cycle 1> [117]
                0.00    0.01    2817             scm_lookupcar1 <cycle 1> [118]
                0.01    0.00      43             scm_make_vector <cycle 1> [125]
                0.01    0.00    7208             scm_intern_obarray <cycle 1> [129]
                0.01    0.00     374             scm_istring2number <cycle 1> [132]
                0.00    0.00    2420             scm_set_procedure_property_x <cycle 1> [146]
                0.00    0.00    1912             scm_dapply <cycle 1> [147]
                0.00    0.00       9             scm_member <cycle 1> [151]
                0.00    0.00     462             scm_m_define <cycle 1> [152]
                0.00    0.00     444             scm_lreadrecparen <cycle 1> [157]
                0.00    0.00     665             scm_sym2ovcell_soft <cycle 1> [158]
                0.00    0.00     818             scm_hash_fn_create_handle_x <cycle 1> [166]
                0.00    0.00     471             scm_read <cycle 1> [169]
                0.00    0.00     268             scm_intern_symbol <cycle 1> [170]
                0.00    0.00    1496             scm_deval_args <cycle 1> [172]
                0.00    0.00     457             scm_m_lambda <cycle 1> [173]
                0.00    0.00      72             scm_m_letstar <cycle 1> [175]
                0.00    0.00      28             scm_mkbig <cycle 1> [176]
                0.00    0.00    2779             scm_eval_car <cycle 1> [179]
                0.00    0.00      18             scm_make_struct <cycle 1> [180]
                0.00    0.00     185             scm_m_quote <cycle 1> [181]
                0.00    0.00      22             scm_source_properties <cycle 1> [182]
                0.00    0.00      13             scm_makdbl <cycle 1> [184]
                0.00    0.00     115             scm_m_quasiquote <cycle 1> [185]
                0.00    0.00      66             scm_m_let <cycle 1> [186]
                0.00    0.00       7             scm_internal_dynamic_wind <cycle 1> [187]
                0.00    0.00       7             scm_open_file <cycle 1> [188]
                0.00    0.00       7             scm_primitive_load <cycle 1> [189]
                0.00    0.00       5             scm_search_path <cycle 1> [190]
                0.00    0.00       5             scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00       5             scm_make_weak_vector <cycle 1> [192]
                0.00    0.00      49             scm_m_if <cycle 1> [194]
                0.00    0.00      10             scm_m_letrec <cycle 1> [195]
                0.00    0.00      41             scm_m_and <cycle 1> [196]
                0.00    0.00      14             scm_options <cycle 1> [197]
                0.00    0.00       3             scm_mkstrport <cycle 1> [198]
                0.00    0.00      31             scm_m_begin <cycle 1> [199]
                0.00    0.00       4             scm_m_case <cycle 1> [200]
                0.00    0.00      19             scm_m_set <cycle 1> [201]
                0.00    0.00       5             scm_m_cond <cycle 1> [202]
                0.00    0.00      15             scm_m_or <cycle 1> [203]
                0.00    0.00       7             scm_close_port <cycle 1> [206]
                0.00    0.00      11             scm_vector <cycle 1> [207]
                0.00    0.00       5             scm_sys_search_load_path <cycle 1> [210]
                0.00    0.00       1             scm_m_do <cycle 1> [212]
                0.00    0.00       1             scm_m_apply <cycle 1> [216]
                0.00    0.00    7194             scm_intern <cycle 1> [220]
                0.00    0.00      78+4230        scm_copy_tree <cycle 1> [270]
                0.00    0.00     115+3861        iqq <cycle 1> [257]
                0.00    0.00    2652             scm_closure <cycle 1> [226]
                0.00    0.00    1069             scm_makfromstr <cycle 1> [231]
                0.00    0.00     967+21          scm_equal_p <cycle 1> [232]
                0.00    0.00     504             scm_eval_3 <cycle 1> [235]
                0.00    0.00     499             scm_top_level_env <cycle 1> [236]
                0.00    0.00     465             scm_eval_x <cycle 1> [237]
                0.00    0.00     457             scm_make_srcprops <cycle 1> [238]
                0.00    0.00     339             scm_hashq_set_x <cycle 1> [241]
                0.00    0.00     339             scm_hash_fn_set_x <cycle 1> [240]
                0.00    0.00     324             scm_istr2int <cycle 1> [242]
                0.00    0.00     308             make_vcell_variable <cycle 1> [245]
                0.00    0.00     268             scm_builtin_variable <cycle 1> [249]
                0.00    0.00     268             scm_sym2ovcell <cycle 1> [250]
                0.00    0.00     267             scm_symbol_interned_p <cycle 1> [251]
                0.00    0.00      98             scm_gc_for_newcell <cycle 1> [263]
                0.00    0.00      93             scm_run_asyncs <cycle 1> [266]
                0.00    0.00      92             scm_istr2flo <cycle 1> [268]
                0.00    0.00      82             scm_ulong2num <cycle 1> [269]
                0.00    0.00      67             scm_append <cycle 1> [271]
                0.00    0.00      63             scm_string_append <cycle 1> [272]
                0.00    0.00      56             scm_listify <cycle 1> [273]
                0.00    0.00      44             scm_stand_in_scm_proc <cycle 1> [275]
                0.00    0.00      44             scm_assoc <cycle 1> [274]
                0.00    0.00      40             scm_makfrom0str <cycle 1> [277]
                0.00    0.00      34             scm_eval <cycle 1> [282]
                0.00    0.00      31             scm_make_variable <cycle 1> [284]
                0.00    0.00      29             scm_grow_tok_buf <cycle 1> [285]
                0.00    0.00      29             scm_vector_set_length_x <cycle 1> [287]
                0.00    0.00      22             scm_set_source_properties_x <cycle 1> [292]
                0.00    0.00      22             scm_hashq_create_handle_x <cycle 1> [291]
                0.00    0.00      21             scm_ulong2big <cycle 1> [294]
                0.00    0.00      20             scm_read_hash_extend <cycle 1> [296]
                0.00    0.00      17             scm_map <cycle 1> [299]
                0.00    0.00      14             scm_for_each <cycle 1> [300]
                0.00    0.00      13             scm_make_struct_layout <cycle 1> [304]
                0.00    0.00      13             scm_dynamic_wind <cycle 1> [302]
                0.00    0.00      11             scm_display <cycle 1> [307]
                0.00    0.00      11             scm_prin1 <cycle 1> [310]
                0.00    0.00      10             scm_string_to_symbol <cycle 1> [312]
                0.00    0.00       9             scm_sloppy_member <cycle 1> [315]
                0.00    0.00       9             scm_make_undefined_variable <cycle 1> [314]
                0.00    0.00       7             load <cycle 1> [316]
                0.00    0.00       7             scm_debug_options <cycle 1> [319]
                0.00    0.00       6             scm_delete_x <cycle 1> [320]
                0.00    0.00       6             scm_reverse <cycle 1> [321]
                0.00    0.00       6             scm_stat <cycle 1> [323]
                0.00    0.00       6             scm_stat2scm <cycle 1> [324]
                0.00    0.00       5             scm_make_weak_key_hash_table <cycle 1> [327]
                0.00    0.00       5             scm_m_start_stack <cycle 1> [326]
                0.00    0.00       5             scm_start_stack <cycle 1> [328]
                0.00    0.00       4             scm_read_options <cycle 1> [331]
                0.00    0.00       3             scm_substring <cycle 1> [345]
                0.00    0.00       3             scm_primitive_load_path <cycle 1> [341]
                0.00    0.00       3             scm_software_type <cycle 1> [344]
                0.00    0.00       2             scm_libguile_config_stamp <cycle 1> [346]
                0.00    0.00       1             scm_call_with_input_string <cycle 1> [355]
                0.00    0.00       1             scm_definedp <cycle 1> [357]
                0.00    0.00       1             scm_clear_registered_modules <cycle 1> [356]
                0.00    0.00       1             make_print_state <cycle 1> [349]
-----------------------------------------------
                0.00    0.12      23/953         scm_init_opts [28]
                0.00    4.68     930/953         scm_sysintern [8]
[6]     86.1    0.00    4.79     953         scm_sysintern0 [6]
                0.00    4.79     952/952         scm_sysintern0_no_module_lookup [7]
                0.00    0.00       1/4394        scm_sym2vcell <cycle 1> [93]
                0.00    0.00       1/92          scm_intern0 [42]
-----------------------------------------------
                0.00    4.79     952/952         scm_sysintern0 [6]
[7]     86.0    0.00    4.79     952         scm_sysintern0_no_module_lookup [7]
                1.12    1.26    1878/4394        scm_cons <cycle 1> [26]
                0.57    0.64     952/4394        scm_intern_obarray_soft <cycle 1> [72]
                0.57    0.63     949/4394        scm_async_click <cycle 1> [103]
                0.00    0.00     939/11760       scm_strhash [85]
-----------------------------------------------
                0.00    0.01       1/930         init_build_info [56]
                0.00    0.01       1/930         scm_init_read [60]
                0.00    0.01       1/930         scm_compile_shell_switches [110]
                0.00    0.01       1/930         scm_init_stime [62]
                0.00    0.01       1/930         scm_init_variable [78]
                0.00    0.01       1/930         scm_init_backtrace [83]
                0.00    0.01       1/930         scm_init_async [61]
                0.00    0.01       2/930         scm_init_feature [97]
                0.00    0.01       2/930         scm_init_gsubr [102]
                0.00    0.02       3/930         scm_init_ioext [54]
                0.00    0.02       3/930         scm_init_load [38]
                0.00    0.02       3/930         scm_init_objects [74]
                0.00    0.02       3/930         scm_init_fports [91]
                0.00    0.02       3/930         scm_init_storage [96]
                0.00    0.02       4/930         scm_init_net_db [51]
                0.00    0.02       4/930         scm_init_struct [58]
                0.00    0.03       6/930         scm_init_scmsigs [57]
                0.00    0.03       6/930         scm_init_debug [39]
                0.00    0.03       6/930         scm_init_srcprop [69]
                0.00    0.03       6/930         scm_init_regex_posix [70]
                0.00    0.06      11/930         scm_init_eval [22]
                0.00    0.10      19/930         scm_init_filesys [23]
                0.00    0.10      20/930         scm_make_synt [46]
                0.00    0.15      29/930         scm_init_socket [27]
                0.00    0.22      44/930         scm_make_gsubr [11]
                0.00    0.25      49/930         scm_init_posix [19]
                0.00    0.61     122/930         scm_init_error [18]
                0.00    2.91     578/930         scm_make_subr_opt [9]
[8]     84.0    0.00    4.68     930         scm_sysintern [8]
                0.00    4.68     930/953         scm_sysintern0 [6]
-----------------------------------------------
                0.00    0.01       1/578         scm_init_print [52]
                0.00    2.90     577/578         scm_make_subr [10]
[9]     52.2    0.00    2.91     578         scm_make_subr_opt [9]
                0.00    2.91     578/930         scm_sysintern [8]
-----------------------------------------------
                0.00    0.01       1/577         scm_init_ramap [68]
                0.00    0.01       1/577         scm_init_eval [22]
                0.00    0.01       1/577         scm_init_gsubr [102]
                0.00    0.02       3/577         scm_init_eq [115]
                0.00    0.05      10/577         scm_init_strorder [73]
                0.00    0.05      10/577         scm_init_chars [45]
                0.00    0.15      30/577         scm_init_iprocs [35]
                0.00    0.19      37/577         scm_init_numbers [21]
                0.00    2.43     484/577         scm_make_gsubr [11]
[10]    52.1    0.00    2.90     577         scm_make_subr [10]
                0.00    2.90     577/578         scm_make_subr_opt [9]
-----------------------------------------------
                0.00    0.01       1/528         scm_init_tag [41]
                0.00    0.01       1/528         scm_init_vports [139]
                0.00    0.01       1/528         scm_init_dynwind [138]
                0.00    0.01       1/528         scm_init_feature [97]
                0.00    0.01       2/528         scm_init_root [119]
                0.00    0.01       2/528         scm_init_boolean [123]
                0.00    0.01       2/528         scm_init_error [18]
                0.00    0.01       2/528         scm_init_fports [91]
                0.00    0.02       3/528         scm_init_kw [108]
                0.00    0.02       3/528         scm_init_objects [74]
                0.00    0.02       3/528         scm_init_procs [113]
                0.00    0.02       3/528         scm_init_read [60]
                0.00    0.02       3/528         scm_init_strports [114]
                0.00    0.02       3/528         scm_init_throw [109]
                0.00    0.02       3/528         scm_init_regex_posix [70]
                0.00    0.02       3/528         scm_init_arbiters [111]
                0.00    0.02       3/528         scm_init_hash [112]
                0.00    0.02       4/528         scm_init_objprop [99]
                0.00    0.02       4/528         scm_init_pairs [32]
                0.00    0.02       4/528         scm_init_procprop [92]
                0.00    0.02       4/528         scm_init_simpos [100]
                0.00    0.02       4/528         scm_init_version [101]
                0.00    0.02       4/528         scm_init_backtrace [83]
                0.00    0.02       4/528         scm_init_srcprop [69]
                0.00    0.02       4/528         scm_init_gc [76]
                0.00    0.03       5/528         scm_init_print [52]
                0.00    0.03       5/528         scm_init_fluids [89]
                0.00    0.04       7/528         scm_init_load [38]
                0.00    0.04       7/528         scm_init_ramap [68]
                0.00    0.04       7/528         scm_init_variable [78]
                0.00    0.04       8/528         scm_init_scmsigs [57]
                0.00    0.04       8/528         scm_init_dynamic_linking [77]
                0.00    0.05       9/528         scm_init_struct [58]
                0.00    0.05      10/528         scm_init_weaks [71]
                0.00    0.05      10/528         scm_init_debug [39]
                0.00    0.06      11/528         scm_init_net_db [51]
                0.00    0.06      11/528         scm_init_stime [62]
                0.00    0.06      11/528         scm_init_strings [64]
                0.00    0.06      11/528         scm_init_strop [65]
                0.00    0.06      11/528         scm_init_vectors [66]
                0.00    0.06      11/528         scm_init_async [61]
                0.00    0.06      11/528         scm_init_chars [45]
                0.00    0.07      13/528         scm_init_ioext [54]
                0.00    0.08      15/528         scm_init_socket [27]
                0.00    0.08      16/528         scm_init_alist [53]
                0.00    0.09      17/528         scm_init_stacks [48]
                0.00    0.09      18/528         scm_init_symbols [49]
                0.00    0.10      19/528         scm_init_eval [22]
                0.00    0.10      19/528         scm_init_hashtab [47]
                0.00    0.13      24/528         scm_init_unif [40]
                0.00    0.15      28/528         scm_init_list [37]
                0.00    0.15      28/528         scm_init_ports [36]
                0.00    0.15      28/528         scm_init_filesys [23]
                0.00    0.18      35/528         scm_init_numbers [21]
                0.00    0.23      44/528         scm_init_posix [19]
[11]    49.7    0.00    2.77     528         scm_make_gsubr [11]
                0.00    2.43     484/577         scm_make_subr [10]
                0.00    0.22      44/930         scm_sysintern [8]
                0.00    0.06      44/44          scm_makcclo [67]
                0.03    0.03      44/4394        scm_set_procedure_property_x <cycle 1> [146]
-----------------------------------------------
                0.00    0.12       6/104         scm_must_malloc [30]
                0.00    2.04      98/104         scm_gc_for_alloc <cycle 1> [13]
[12]    38.8    0.00    2.16     104         scm_igc [12]
                1.14    0.00    1872/2080        scm_gc_mark <cycle 2> [16]
                0.87    0.00     104/104         scm_gc_sweep [17]
                0.13    0.00     208/2080        scm_mark_locations <cycle 2> [244]
                0.02    0.00     104/104         scm_mark_weak_vector_spines [105]
                0.00    0.00     104/104         scm_gc_start [260]
                0.00    0.00     104/104         scm_stack_size [261]
                0.00    0.00     104/104         scm_gc_end [259]
-----------------------------------------------
                                  98             scm_gc_for_newcell <cycle 1> [263]
[13]    36.5    0.00    2.04      98         scm_gc_for_alloc <cycle 1> [13]
                0.00    2.04      98/104         scm_igc [12]
                                  98             scm_async_click <cycle 1> [103]
-----------------------------------------------
                              421036             scm_ceval <cycle 1> [14]
                                  37             scm_eval_args <cycle 1> [63]
                                 453             scm_eval_3 <cycle 1> [235]
                                 892             scm_apply <cycle 1> [25]
                                1319             scm_eval_car <cycle 1> [179]
[14]    29.9    1.29    0.37    2701+421036  scm_ceval <cycle 1> [14]
                0.20    0.00  100058/100063      scm_sum [31]
                0.01    0.08  100001/100001      scm_geq_p [50]
                0.07    0.00  426846/458427      scm_ilookup [59]
                0.01    0.00    1223/2439        scm_symbol_p [131]
                0.00    0.01      17/25          scm_memq [136]
                0.00    0.00    1984/4362        scm_struct_ref [130]
                0.00    0.00     858/2383        scm_procedure_property [133]
                0.00    0.00    1179/214306      scm_ilength [79]
                0.00    0.00      27/104993      scm_nconc2last [34]
                0.00    0.00      37/55          scm_gr_p [178]
                0.00    0.00      36/52          scm_length [193]
                0.00    0.00       2/7249        scm_procedure_p [104]
                0.00    0.00       9/13          scm_list_p [204]
                0.00    0.00       1/1           scm_read_char [215]
                0.00    0.00    2094/4559        scm_eq_p [221]
                0.00    0.00    2021/4450        scm_struct_p [222]
                0.00    0.00    2020/4449        scm_struct_vtable [223]
                0.00    0.00    1274/1516        scm_unmemocar [228]
                0.00    0.00    1209/2389        scm_variable_p [227]
                0.00    0.00     380/567         scm_not [234]
                0.00    0.00     173/841         scm_pair_p [233]
                0.00    0.00     139/283         scm_null_p [246]
                0.00    0.00     138/249         scm_variable_bound_p [252]
                0.00    0.00      28/96          scm_variable_ref [264]
                0.00    0.00      23/1487        scm_badargsp [229]
                0.00    0.00      23/40          scm_struct_set_x [278]
                0.00    0.00      17/33          scm_makmmacro [283]
                0.00    0.00      14/42          scm_string_ref [276]
                0.00    0.00      14/20          scm_list [295]
                0.00    0.00      13/39          scm_string_length [279]
                0.00    0.00      13/17          scm_list_ref [298]
                0.00    0.00      12/36          scm_zero_p [281]
                0.00    0.00      12/36          scm_difference [280]
                0.00    0.00       9/9           scm_eqv_p [313]
                0.00    0.00       9/13          scm_integer_p [303]
                0.00    0.00       8/24          scm_access [289]
                0.00    0.00       3/3           scm_makmacro [338]
                0.00    0.00       2/7           scm_current_load_port [318]
                0.00    0.00       2/6           scm_vector_ref [325]
                0.00    0.00       1/1           scm_registered_modules [365]
                0.00    0.00       1/3           scm_port_filename [340]
                0.00    0.00       1/3           scm_keyword_p [337]
                0.00    0.00       1/1           scm_variable_set_x [371]
                0.00    0.00       1/3           scm_char_eq_p [334]
                              308470             scm_cons <cycle 1> [26]
                              210423             scm_acons <cycle 1> [29]
                              106005             scm_cons2 <cycle 1> [44]
                              102619             scm_eval_args <cycle 1> [63]
                              102256             scm_apply <cycle 1> [25]
                               41161             scm_async_click <cycle 1> [103]
                                2167             scm_lookupcar1 <cycle 1> [118]
                                1376             scm_closure <cycle 1> [226]
                                 859             scm_set_procedure_property_x <cycle 1> [146]
                                 858             scm_eval_car <cycle 1> [179]
                                 274             scm_hashq_set_x <cycle 1> [241]
                                 224             scm_builtin_variable <cycle 1> [249]
                                 223             scm_symbol_interned_p <cycle 1> [251]
                                  22             scm_copy_tree <cycle 1> [270]
                                  20             scm_read_hash_extend <cycle 1> [296]
                                  18             scm_eval <cycle 1> [282]
                                  17             scm_string_append <cycle 1> [272]
                                  15             scm_map <cycle 1> [299]
                                  12             scm_append <cycle 1> [271]
                                  11             scm_make_variable <cycle 1> [284]
                                  10             scm_make_struct <cycle 1> [180]
                                   9             scm_make_vector <cycle 1> [125]
                                   7             scm_make_undefined_variable <cycle 1> [314]
                                   4             scm_string_to_symbol <cycle 1> [312]
                                   4             scm_for_each <cycle 1> [300]
                                   3             scm_software_type <cycle 1> [344]
                                   3             scm_debug_options <cycle 1> [319]
                                   3             scm_dynamic_wind <cycle 1> [302]
                                   2             scm_stat <cycle 1> [323]
                                   2             scm_reverse <cycle 1> [321]
                                   2             scm_make_weak_key_hash_table <cycle 1> [327]
                                   2             scm_member <cycle 1> [151]
                                   1             scm_clear_registered_modules <cycle 1> [356]
                                   1             scm_primitive_load <cycle 1> [189]
                                   1             scm_make_struct_layout <cycle 1> [304]
                                   1             scm_definedp <cycle 1> [357]
                                   1             scm_primitive_load_path <cycle 1> [341]
                                   1             scm_delete_x <cycle 1> [320]
                                   1             scm_call_with_input_string <cycle 1> [355]
                                   1             scm_gsubr_apply <cycle 1> [33]
                                   1             scm_make_vtable_vtable <cycle 1> [191]
                              421036             scm_ceval <cycle 1> [14]
-----------------------------------------------
[15]    22.8    1.27    0.00    2080+23122   <cycle 2 as a whole> [15]
                1.27    0.00   23540+1292831     scm_gc_mark <cycle 2> [16]
                0.00    0.00    1246             marksrcprops <cycle 2> [230]
                0.00    0.00     104             mark_root <cycle 2> [258]
-----------------------------------------------
                             1292831             scm_gc_mark <cycle 2> [16]
                                1560             mark_root <cycle 2> [258]
                                2492             marksrcprops <cycle 2> [230]
                               17616             scm_mark_locations <cycle 2> [244]
                1.14    0.00    1872/2080        scm_igc [12]
[16]    22.8    1.27    0.00   23540+1292831 scm_gc_mark <cycle 2> [16]
                0.00    0.00   30829/30829       scm_markvar [218]
                0.00    0.00    4037/4037        scm_markcdr [224]
                0.00    0.00     208/208         scm_markstream [256]
                0.00    0.00     208/208         mark_async [254]
                                1246             marksrcprops <cycle 2> [230]
                                 104             scm_mark_locations <cycle 2> [244]
                                 104             mark_root <cycle 2> [258]
                             1292831             scm_gc_mark <cycle 2> [16]
-----------------------------------------------
                0.87    0.00     104/104         scm_igc [12]
[17]    15.6    0.87    0.00     104         scm_gc_sweep [17]
                0.00    0.00     629/100651      scm_must_free [84]
                0.00    0.00       6/6           freeguards [211]
                0.00    0.00       1/8           scm_remove_from_port_table [205]
                0.00    0.00     451/451         freesrcprops [239]
                0.00    0.00       1/1           scm_revealed_count [366]
                0.00    0.00       1/1           noop0 [351]
                0.00    0.00       1/1           free_var [347]
                0.00    0.00       1/1           scm_free0 [360]
-----------------------------------------------
                0.00    0.65       1/1           scm_boot_guile_1 [3]
[18]    11.7    0.00    0.65       1         scm_init_error [18]
                0.00    0.61     122/930         scm_sysintern [8]
                0.00    0.02       7/106         scm_permanent_object [24]
                0.00    0.01       2/528         scm_make_gsubr [11]
                0.00    0.01       7/92          scm_intern0 [42]
-----------------------------------------------
                0.00    0.48       1/1           scm_boot_guile_1 [3]
[19]     8.7    0.00    0.48       1         scm_init_posix [19]
                0.00    0.25      49/930         scm_sysintern [8]
                0.00    0.23      44/528         scm_make_gsubr [11]
                0.00    0.01       2/14          scm_add_feature [81]
-----------------------------------------------
                              100000             scm_gsubr_apply <cycle 1> [33]
[20]     8.5    0.24    0.23  100000         scm_regexp_exec <cycle 1> [20]
                0.08    0.12  100000/101785      scm_must_malloc [30]
                0.03    0.00  100000/100651      scm_must_free [84]
                                   6             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.37       1/1           scm_boot_guile_1 [3]
[21]     6.6    0.00    0.37       1         scm_init_numbers [21]
                0.00    0.19      37/577         scm_make_subr [10]
                0.00    0.18      35/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.36       1/1           scm_boot_guile_1 [3]
[22]     6.4    0.00    0.36       1         scm_init_eval [22]
                0.00    0.10      19/528         scm_make_gsubr [11]
                0.00    0.10      19/20          scm_make_synt [46]
                0.00    0.08       2/5           scm_init_opts [28]
                0.00    0.06      11/930         scm_sysintern [8]
                0.00    0.01       3/106         scm_permanent_object [24]
                0.00    0.01       1/577         scm_make_subr [10]
                0.00    0.00       3/92          scm_intern0 [42]
                0.00    0.00       1/14          scm_add_feature [81]
                0.00    0.00       2/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.28       1/1           scm_boot_guile_1 [3]
[23]     5.0    0.00    0.28       1         scm_init_filesys [23]
                0.00    0.15      28/528         scm_make_gsubr [11]
                0.00    0.10      19/930         scm_sysintern [8]
                0.00    0.02       9/106         scm_permanent_object [24]
                0.00    0.01       8/92          scm_intern0 [42]
                0.00    0.00       1/14          scm_add_feature [81]
                0.00    0.00       1/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/23          scm_newsmob [94]
                0.00    0.00      19/271         scm_long2num [248]
-----------------------------------------------
                0.00    0.00       1/106         start_stack [137]
                0.00    0.00       1/106         scm_init_print [52]
                0.00    0.00       1/106         scm_init_procprop [92]
                0.00    0.00       1/106         scm_init_read [60]
                0.00    0.00       1/106         scm_init_stackchk [145]
                0.00    0.00       1/106         scm_init_struct [58]
                0.00    0.00       1/106         scm_init_symbols [49]
                0.00    0.00       1/106         scm_init_backtrace [83]
                0.00    0.00       1/106         scm_init_stacks [48]
                0.00    0.00       1/106         scm_init_regex_posix [70]
                0.00    0.01       2/106         scm_init_load [38]
                0.00    0.01       2/106         scm_init_options [135]
                0.00    0.01       2/106         scm_init_gsubr [102]
                0.00    0.01       3/106         scm_init_gdbint [116]
                0.00    0.01       3/106         scm_init_eval [22]
                0.00    0.02       6/106         scm_init_gc [76]
                0.00    0.02       7/106         scm_init_script [90]
                0.00    0.02       7/106         scm_init_error [18]
                0.00    0.02       9/106         scm_init_filesys [23]
                0.00    0.06      23/106         scm_init_opts [28]
                0.00    0.08      32/106         scm_init_tag [41]
[24]     4.8    0.00    0.27     106         scm_permanent_object [24]
                0.06    0.07     106/4394        scm_cons <cycle 1> [26]
                0.06    0.07     106/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   1             scm_call_with_input_string <cycle 1> [355]
                                   5             scm_primitive_load <cycle 1> [189]
                                   5             scm_deval <cycle 1> [43]
                                  26             scm_for_each <cycle 1> [300]
                                  39             scm_dynamic_wind <cycle 1> [302]
                                  42             scm_map <cycle 1> [299]
                                  93             scm_run_asyncs <cycle 1> [266]
                                1282             scm_sym2vcell <cycle 1> [93]
                              102256             scm_ceval <cycle 1> [14]
[25]     4.4    0.09    0.16  103749         scm_apply <cycle 1> [25]
                0.12    0.04  103066/104993      scm_nconc2last [34]
                0.00    0.00     886/1487        scm_badargsp [229]
                0.00    0.00      92/93          scm_sys_gc_async_thunk [267]
                              103582             scm_cons <cycle 1> [26]
                              100972             scm_gsubr_apply <cycle 1> [33]
                                 892             scm_ceval <cycle 1> [14]
                                 886             scm_acons <cycle 1> [29]
                                 551             scm_dapply <cycle 1> [147]
                                 444             scm_m_define <cycle 1> [152]
                                 434             scm_m_lambda <cycle 1> [173]
                                  93             scm_m_quasiquote <cycle 1> [185]
                                  90             scm_m_quote <cycle 1> [181]
                                  45             scm_m_let <cycle 1> [186]
                                  40             scm_m_if <cycle 1> [194]
                                  39             scm_m_and <cycle 1> [196]
                                  14             scm_m_or <cycle 1> [203]
                                  12             scm_m_set <cycle 1> [201]
                                  12             scm_m_begin <cycle 1> [199]
                                   9             scm_m_letstar <cycle 1> [175]
                                   5             scm_m_cond <cycle 1> [202]
                                   4             scm_m_case <cycle 1> [200]
                                   3             scm_string_append <cycle 1> [272]
                                   1             scm_append <cycle 1> [271]
                                   1             scm_m_do <cycle 1> [212]
                                   1             scm_m_start_stack <cycle 1> [326]
                                   1             scm_m_apply <cycle 1> [216]
-----------------------------------------------
                                   1             scm_prin1 <cycle 1> [310]
                                   1             scm_m_apply <cycle 1> [216]
                                   3             scm_mkstrport <cycle 1> [198]
                                   4             scm_m_case <cycle 1> [200]
                                   4             scm_m_do <cycle 1> [212]
                                   5             scm_make_vtable_vtable <cycle 1> [191]
                                   5             scm_m_cond <cycle 1> [202]
                                   9             scm_reverse <cycle 1> [321]
                                  15             scm_m_or <cycle 1> [203]
                                  15             scm_for_each <cycle 1> [300]
                                  19             scm_m_set <cycle 1> [201]
                                  31             scm_m_begin <cycle 1> [199]
                                  36             scm_m_let <cycle 1> [186]
                                  38             scm_m_letrec <cycle 1> [195]
                                  40             scm_read_hash_extend <cycle 1> [296]
                                  41             scm_m_and <cycle 1> [196]
                                  49             scm_m_if <cycle 1> [194]
                                  88             scm_stand_in_scm_proc <cycle 1> [275]
                                  92             scm_map <cycle 1> [299]
                                 100             scm_options <cycle 1> [197]
                                 108             scm_listify <cycle 1> [273]
                                 138             scm_append <cycle 1> [271]
                                 144             scm_m_letstar <cycle 1> [175]
                                 164             scm_top_level_env <cycle 1> [236]
                                 185             scm_m_quote <cycle 1> [181]
                                 348             scm_m_define <cycle 1> [152]
                                 457             scm_m_lambda <cycle 1> [173]
                                1107             scm_lreadrecparen <cycle 1> [157]
                                1282             scm_sym2vcell <cycle 1> [93]
                                1540             scm_deval_args <cycle 1> [172]
                                1737             scm_eval_args <cycle 1> [63]
                                1910             iqq <cycle 1> [257]
                                2652             scm_closure <cycle 1> [226]
                                2900             scm_dapply <cycle 1> [147]
                                4230             scm_copy_tree <cycle 1> [270]
                               10537             scm_lreadparen <cycle 1> [98]
                               29682             scm_deval <cycle 1> [43]
                              103582             scm_apply <cycle 1> [25]
                              308470             scm_ceval <cycle 1> [14]
                0.00    0.00       1/4394        scm_init_load [38]
                0.00    0.00       1/4394        scm_init_print [52]
                0.00    0.00       1/4394        scm_init_stacks [48]
                0.00    0.00       1/4394        scm_set_program_arguments [124]
                0.00    0.00       2/4394        scm_init_objects [74]
                0.00    0.00       2/4394        scm_init_storage [96]
                0.00    0.00       3/4394        scm_makfromstrs [134]
                0.00    0.00       4/4394        scm_compile_shell_switches [110]
                0.01    0.01      14/4394        scm_add_feature [81]
                0.06    0.07     106/4394        scm_permanent_object [24]
                1.12    1.26    1878/4394        scm_sysintern0_no_module_lookup [7]
[26]     4.3    0.24    0.00  473782         scm_cons <cycle 1> [26]
                                  93             scm_gc_for_newcell <cycle 1> [263]
-----------------------------------------------
                0.00    0.23       1/1           scm_boot_guile_1 [3]
[27]     4.1    0.00    0.23       1         scm_init_socket [27]
                0.00    0.15      29/930         scm_sysintern [8]
                0.00    0.08      15/528         scm_make_gsubr [11]
                0.00    0.00       1/14          scm_add_feature [81]
                0.00    0.00       1/1           scm_init_addr_buffer [209]
-----------------------------------------------
                0.00    0.04       1/5           scm_init_print [52]
                0.00    0.04       1/5           scm_init_read [60]
                0.00    0.04       1/5           scm_init_debug [39]
                0.00    0.08       2/5           scm_init_eval [22]
[28]     3.8    0.00    0.21       5         scm_init_opts [28]
                0.00    0.12      23/953         scm_sysintern0 [6]
                0.00    0.06      23/106         scm_permanent_object [24]
                0.00    0.03      23/23          scm_take0str [87]
                0.00    0.00       1/1           scm_eval_options_interface [155]
                0.00    0.00       1/1           scm_evaluator_traps [156]
                0.00    0.00       1/4394        scm_debug_options <cycle 1> [319]
                0.00    0.00       1/4394        scm_read_options <cycle 1> [331]
                0.00    0.00       1/1           scm_print_options [165]
-----------------------------------------------
                                   7             scm_internal_dynamic_wind <cycle 1> [187]
                                   7             scm_m_let <cycle 1> [186]
                                  13             scm_dynamic_wind <cycle 1> [302]
                                  88             scm_srcprops_to_plist <cycle 1> [293]
                                 236             scm_intern_symbol <cycle 1> [170]
                                 554             scm_dapply <cycle 1> [147]
                                 818             scm_hash_fn_create_handle_x <cycle 1> [166]
                                 886             scm_apply <cycle 1> [25]
                                2420             scm_set_procedure_property_x <cycle 1> [146]
                               11695             scm_deval <cycle 1> [43]
                              210423             scm_ceval <cycle 1> [14]
                0.00    0.00       1/4394        scm_internal_catch [88]
                0.01    0.01      19/4394        init_build_info [56]
[29]     3.8    0.21    0.00  227167         scm_acons <cycle 1> [29]
                                   1             scm_gc_for_newcell <cycle 1> [263]
-----------------------------------------------
                0.00    0.00       1/101785      start_stack [137]
                0.00    0.00       1/101785      scm_make_root [160]
                0.00    0.00       1/101785      scm_init_addr_buffer [209]
                0.00    0.00       1/101785      make_jmpbuf [159]
                0.00    0.00       1/101785      scm_init_storage [96]
                0.00    0.00       1/101785      scm_make_regexp [208]
                0.00    0.00       2/101785      scm_async [153]
                0.00    0.00       3/101785      scm_options <cycle 1> [197]
                0.00    0.00       5/101785      scm_search_path <cycle 1> [190]
                0.00    0.00       7/101785      scm_internal_dynamic_wind <cycle 1> [187]
                0.00    0.00      11/101785      scm_makdbl <cycle 1> [184]
                0.00    0.00      13/101785      scm_add_to_port_table [183]
                0.00    0.00      23/101785      alloc_struct [177]
                0.00    0.00      28/101785      scm_mkbig <cycle 1> [176]
                0.00    0.00      43/101785      scm_make_vector <cycle 1> [125]
                0.00    0.00      44/101785      scm_makcclo [67]
                0.00    0.00    1600/101785      scm_makstr <cycle 1> [117]
                0.08    0.12  100000/101785      scm_regexp_exec <cycle 1> [20]
[30]     3.7    0.08    0.12  101785         scm_must_malloc [30]
                0.00    0.12       6/104         scm_igc [12]
-----------------------------------------------
                0.00    0.00       5/100063      scm_make_weak_vector <cycle 1> [192]
                0.20    0.00  100058/100063      scm_ceval <cycle 1> [14]
[31]     3.6    0.20    0.00  100063         scm_sum [31]
-----------------------------------------------
                0.00    0.17       1/1           scm_boot_guile_1 [3]
[32]     3.1    0.00    0.17       1         scm_init_pairs [32]
                0.00    0.15       1/1           scm_init_iprocs [35]
                0.00    0.02       4/528         scm_make_gsubr [11]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
                                1125             scm_dapply <cycle 1> [147]
                              100972             scm_apply <cycle 1> [25]
[33]     2.9    0.16    0.00  102098         scm_gsubr_apply <cycle 1> [33]
                0.00    0.00    2093/2115        scm_hashq_ref [150]
                0.00    0.00       1/1           scm_make_regexp [208]
                0.00    0.00       1/1           scm_throw [214]
                              100000             scm_regexp_exec <cycle 1> [20]
                                   3             scm_substring <cycle 1> [345]
-----------------------------------------------
                0.00    0.00      27/104993      scm_ceval <cycle 1> [14]
                0.00    0.00      29/104993      scm_deval <cycle 1> [43]
                0.00    0.00    1871/104993      scm_dapply <cycle 1> [147]
                0.12    0.04  103066/104993      scm_apply <cycle 1> [25]
[34]     2.9    0.12    0.04  104993         scm_nconc2last [34]
                0.04    0.00  209986/214306      scm_ilength [79]
-----------------------------------------------
                0.00    0.15       1/1           scm_init_pairs [32]
[35]     2.7    0.00    0.15       1         scm_init_iprocs [35]
                0.00    0.15      30/577         scm_make_subr [10]
-----------------------------------------------
                0.00    0.15       1/1           scm_boot_guile_1 [3]
[36]     2.6    0.00    0.15       1         scm_init_ports [36]
                0.00    0.15      28/528         scm_make_gsubr [11]
                0.00    0.00       1/5           scm_newptob [161]
-----------------------------------------------
                0.00    0.15       1/1           scm_boot_guile_1 [3]
[37]     2.6    0.00    0.15       1         scm_init_list [37]
                0.00    0.15      28/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.14       1/1           scm_boot_guile_1 [3]
[38]     2.5    0.00    0.14       1         scm_init_load [38]
                0.00    0.08       1/1           init_build_info [56]
                0.00    0.04       7/528         scm_make_gsubr [11]
                0.00    0.02       3/930         scm_sysintern [8]
                0.00    0.01       2/106         scm_permanent_object [24]
                0.00    0.00       2/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/4394        scm_cons <cycle 1> [26]
                0.00    0.00       1/4394        scm_listify <cycle 1> [273]
                0.00    0.00       1/92          scm_intern0 [42]
-----------------------------------------------
                0.00    0.13       1/1           scm_boot_guile_1 [3]
[39]     2.4    0.00    0.13       1         scm_init_debug [39]
                0.00    0.05      10/528         scm_make_gsubr [11]
                0.00    0.04       1/5           scm_init_opts [28]
                0.00    0.03       6/930         scm_sysintern [8]
                0.00    0.01       1/20          scm_make_synt [46]
                0.00    0.00       1/14          scm_add_feature [81]
                0.00    0.00       2/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.13       1/1           scm_boot_guile_1 [3]
[40]     2.3    0.00    0.13       1         scm_init_unif [40]
                0.00    0.13      24/528         scm_make_gsubr [11]
                0.00    0.00       1/14          scm_add_feature [81]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.13       1/1           scm_boot_guile_1 [3]
[41]     2.3    0.00    0.13       1         scm_init_tag [41]
                0.00    0.08      32/106         scm_permanent_object [24]
                0.00    0.04      32/92          scm_intern0 [42]
                0.00    0.01       1/528         scm_make_gsubr [11]
                0.00    0.00      32/271         scm_long2num [248]
-----------------------------------------------
                0.00    0.00       1/92          scm_init_load [38]
                0.00    0.00       1/92          scm_init_procprop [92]
                0.00    0.00       1/92          scm_init_read [60]
                0.00    0.00       1/92          scm_init_stackchk [145]
                0.00    0.00       1/92          scm_sysintern0 [6]
                0.00    0.00       1/92          scm_handle_by_message [162]
                0.00    0.00       1/92          scm_init_backtrace [83]
                0.00    0.00       1/92          scm_init_regex_posix [70]
                0.00    0.00       2/92          scm_init_options [135]
                0.00    0.00       3/92          scm_init_eval [22]
                0.00    0.01       6/92          scm_init_gc [76]
                0.00    0.01       7/92          scm_init_script [90]
                0.00    0.01       7/92          scm_init_error [18]
                0.00    0.01       8/92          scm_init_filesys [23]
                0.00    0.02      19/92          init_build_info [56]
                0.00    0.04      32/92          scm_init_tag [41]
[42]     2.1    0.00    0.12      92         scm_intern0 [42]
                0.06    0.06      92/4394        scm_intern <cycle 1> [220]
-----------------------------------------------
                               23991             scm_deval <cycle 1> [43]
                                  51             scm_eval_3 <cycle 1> [235]
                                  67             scm_deval_args <cycle 1> [172]
                                 585             scm_dapply <cycle 1> [147]
                                1144             scm_eval_car <cycle 1> [179]
[43]     2.0    0.09    0.02    1847+23991   scm_deval <cycle 1> [43]
                0.01    0.00    2378/4362        scm_struct_ref [130]
                0.00    0.00    1216/2439        scm_symbol_p [131]
                0.00    0.00    1116/2383        scm_procedure_property [133]
                0.00    0.00   28628/458427      scm_ilookup [59]
                0.00    0.00       8/25          scm_memq [136]
                0.00    0.00      29/104993      scm_nconc2last [34]
                0.00    0.00     216/214306      scm_ilength [79]
                0.00    0.00      18/55          scm_gr_p [178]
                0.00    0.00      16/52          scm_length [193]
                0.00    0.00       4/13          scm_list_p [204]
                0.00    0.00    2464/4559        scm_eq_p [221]
                0.00    0.00    2429/4449        scm_struct_vtable [223]
                0.00    0.00    2429/4450        scm_struct_p [222]
                0.00    0.00    1180/2389        scm_variable_p [227]
                0.00    0.00     668/841         scm_pair_p [233]
                0.00    0.00     242/1516        scm_unmemocar [228]
                0.00    0.00     187/567         scm_not [234]
                0.00    0.00     144/283         scm_null_p [246]
                0.00    0.00     111/249         scm_variable_bound_p [252]
                0.00    0.00      68/96          scm_variable_ref [264]
                0.00    0.00      28/42          scm_string_ref [276]
                0.00    0.00      26/39          scm_string_length [279]
                0.00    0.00      24/1487        scm_badargsp [229]
                0.00    0.00      24/36          scm_difference [280]
                0.00    0.00      24/36          scm_zero_p [281]
                0.00    0.00      17/40          scm_struct_set_x [278]
                0.00    0.00      16/24          scm_access [289]
                0.00    0.00       6/6           scm_set_current_output_port [322]
                0.00    0.00       6/20          scm_list [295]
                0.00    0.00       5/7           scm_current_load_port [318]
                0.00    0.00       4/4           scm_delq_x [329]
                0.00    0.00       4/17          scm_list_ref [298]
                0.00    0.00       4/6           scm_vector_ref [325]
                0.00    0.00       4/13          scm_integer_p [303]
                0.00    0.00       3/3           scm_program_arguments [342]
                0.00    0.00       3/3           scm_current_error_port [335]
                0.00    0.00       3/3           scm_newline [339]
                0.00    0.00       2/3           scm_char_eq_p [334]
                0.00    0.00       2/3           scm_port_filename [340]
                0.00    0.00       2/3           scm_keyword_p [337]
                0.00    0.00       1/1           scm_string_equal_p [369]
                0.00    0.00       1/1           scm_append_x [353]
                               45341             scm_async_click <cycle 1> [103]
                               29682             scm_cons <cycle 1> [26]
                               12253             scm_cons2 <cycle 1> [44]
                               11695             scm_acons <cycle 1> [29]
                                1496             scm_deval_args <cycle 1> [172]
                                1361             scm_dapply <cycle 1> [147]
                                1232             scm_closure <cycle 1> [226]
                                1116             scm_eval_car <cycle 1> [179]
                                1116             scm_set_procedure_property_x <cycle 1> [146]
                                 572             scm_lookupcar1 <cycle 1> [118]
                                  65             scm_hashq_set_x <cycle 1> [241]
                                  44             scm_symbol_interned_p <cycle 1> [251]
                                  44             scm_builtin_variable <cycle 1> [249]
                                  34             scm_string_append <cycle 1> [272]
                                  22             scm_source_properties <cycle 1> [182]
                                  22             scm_set_source_properties_x <cycle 1> [292]
                                  22             scm_copy_tree <cycle 1> [270]
                                  20             scm_make_variable <cycle 1> [284]
                                  16             scm_eval <cycle 1> [282]
                                  13             scm_append <cycle 1> [271]
                                  11             scm_display <cycle 1> [307]
                                  10             scm_for_each <cycle 1> [300]
                                  10             scm_dynamic_wind <cycle 1> [302]
                                   7             scm_member <cycle 1> [151]
                                   6             scm_string_to_symbol <cycle 1> [312]
                                   5             scm_delete_x <cycle 1> [320]
                                   5             scm_apply <cycle 1> [25]
                                   4             scm_make_vector <cycle 1> [125]
                                   4             scm_make_struct <cycle 1> [180]
                                   4             scm_stat <cycle 1> [323]
                                   4             scm_reverse <cycle 1> [321]
                                   3             scm_debug_options <cycle 1> [319]
                                   3             scm_primitive_load <cycle 1> [189]
                                   3             scm_read_options <cycle 1> [331]
                                   2             scm_libguile_config_stamp <cycle 1> [346]
                                   2             scm_map <cycle 1> [299]
                                   2             scm_make_undefined_variable <cycle 1> [314]
                                   1             scm_primitive_load_path <cycle 1> [341]
                                   1             scm_sys_search_load_path <cycle 1> [210]
                               23991             scm_deval <cycle 1> [43]
-----------------------------------------------
                                   2             scm_m_do <cycle 1> [212]
                                  10             scm_m_letrec <cycle 1> [195]
                                  21             scm_m_let <cycle 1> [186]
                                  41             iqq <cycle 1> [257]
                                 103             scm_m_letstar <cycle 1> [175]
                                 280             scm_lreadr <cycle 1> [86]
                                 353             scm_m_define <cycle 1> [152]
                               12253             scm_deval <cycle 1> [43]
                              106005             scm_ceval <cycle 1> [14]
                0.00    0.00       1/4394        scm_init_print [52]
                0.00    0.00       1/4394        scm_compile_shell_switches [110]
                0.00    0.00       4/4394        scm_init_objects [74]
[44]     2.0    0.11    0.00  119074         scm_cons2 <cycle 1> [44]
                                   4             scm_gc_for_newcell <cycle 1> [263]
-----------------------------------------------
                0.00    0.11       1/1           scm_boot_guile_1 [3]
[45]     1.9    0.00    0.11       1         scm_init_chars [45]
                0.00    0.06      11/528         scm_make_gsubr [11]
                0.00    0.05      10/577         scm_make_subr [10]
-----------------------------------------------
                0.00    0.01       1/20          scm_init_debug [39]
                0.00    0.10      19/20          scm_init_eval [22]
[46]     1.8    0.00    0.10      20         scm_make_synt [46]
                0.00    0.10      20/930         scm_sysintern [8]
                0.00    0.00      16/33          scm_makmmacro [283]
                0.00    0.00       4/4           scm_makacro [330]
-----------------------------------------------
                0.00    0.10       1/1           scm_boot_guile_1 [3]
[47]     1.8    0.00    0.10       1         scm_init_hashtab [47]
                0.00    0.10      19/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.10       1/1           scm_boot_guile_1 [3]
[48]     1.8    0.00    0.10       1         scm_init_stacks [48]
                0.00    0.09      17/528         scm_make_gsubr [11]
                0.00    0.00       2/4394        scm_make_struct_layout <cycle 1> [304]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/4394        scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00       1/4394        scm_cons <cycle 1> [26]
                0.00    0.00       1/4394        scm_make_struct <cycle 1> [180]
-----------------------------------------------
                0.00    0.10       1/1           scm_boot_guile_1 [3]
[49]     1.8    0.00    0.10       1         scm_init_symbols [49]
                0.00    0.09      18/528         scm_make_gsubr [11]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/4394        scm_makfrom0str <cycle 1> [277]
-----------------------------------------------
                0.01    0.08  100001/100001      scm_ceval <cycle 1> [14]
[50]     1.6    0.01    0.08  100001         scm_geq_p [50]
                0.08    0.00  100001/100056      scm_less_p [55]
-----------------------------------------------
                0.00    0.09       1/1           scm_boot_guile_1 [3]
[51]     1.5    0.00    0.09       1         scm_init_net_db [51]
                0.00    0.06      11/528         scm_make_gsubr [11]
                0.00    0.02       4/930         scm_sysintern [8]
                0.00    0.00       4/4394        scm_ulong2num <cycle 1> [269]
                0.00    0.00       1/14          scm_add_feature [81]
-----------------------------------------------
                0.00    0.09       1/1           scm_boot_guile_1 [3]
[52]     1.5    0.00    0.09       1         scm_init_print [52]
                0.00    0.04       1/5           scm_init_opts [28]
                0.00    0.03       5/528         scm_make_gsubr [11]
                0.00    0.01       1/578         scm_make_subr_opt [9]
                0.00    0.00       2/4394        scm_make_struct_layout <cycle 1> [304]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/4394        scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00       1/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/4394        scm_cons2 <cycle 1> [44]
                0.00    0.00       1/4394        scm_make_struct <cycle 1> [180]
                0.00    0.00       1/4394        scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.08       1/1           scm_boot_guile_1 [3]
[53]     1.5    0.00    0.08       1         scm_init_alist [53]
                0.00    0.08      16/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.08       1/1           scm_boot_guile_1 [3]
[54]     1.5    0.00    0.08       1         scm_init_ioext [54]
                0.00    0.07      13/528         scm_make_gsubr [11]
                0.00    0.02       3/930         scm_sysintern [8]
-----------------------------------------------
                0.00    0.00      55/100056      scm_gr_p [178]
                0.08    0.00  100001/100056      scm_geq_p [50]
[55]     1.4    0.08    0.00  100056         scm_less_p [55]
-----------------------------------------------
                0.00    0.08       1/1           scm_init_load [38]
[56]     1.4    0.00    0.08       1         init_build_info [56]
                0.00    0.02      19/92          scm_intern0 [42]
                0.01    0.01      19/4394        scm_makfrom0str <cycle 1> [277]
                0.01    0.01      19/4394        scm_acons <cycle 1> [29]
                0.00    0.01       1/930         scm_sysintern [8]
-----------------------------------------------
                0.00    0.08       1/1           scm_boot_guile_1 [3]
[57]     1.4    0.00    0.08       1         scm_init_scmsigs [57]
                0.00    0.04       8/528         scm_make_gsubr [11]
                0.00    0.03       6/930         scm_sysintern [8]
                0.00    0.00       1/2           scm_system_async [140]
                0.00    0.00       1/4394        scm_make_vector <cycle 1> [125]
                0.00    0.00       5/271         scm_long2num [248]
-----------------------------------------------
                0.00    0.07       1/1           scm_boot_guile_1 [3]
[58]     1.3    0.00    0.07       1         scm_init_struct [58]
                0.00    0.05       9/528         scm_make_gsubr [11]
                0.00    0.02       4/930         scm_sysintern [8]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/4394        scm_intern_obarray <cycle 1> [129]
-----------------------------------------------
                0.00    0.00     255/458427      scm_eval_car <cycle 1> [179]
                0.00    0.00    1318/458427      scm_deval_args <cycle 1> [172]
                0.00    0.00    1380/458427      scm_eval_args <cycle 1> [63]
                0.00    0.00   28628/458427      scm_deval <cycle 1> [43]
                0.07    0.00  426846/458427      scm_ceval <cycle 1> [14]
[59]     1.3    0.07    0.00  458427         scm_ilookup [59]
-----------------------------------------------
                0.00    0.07       1/1           scm_boot_guile_1 [3]
[60]     1.2    0.00    0.07       1         scm_init_read [60]
                0.00    0.04       1/5           scm_init_opts [28]
                0.00    0.02       3/528         scm_make_gsubr [11]
                0.00    0.01       1/930         scm_sysintern [8]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/92          scm_intern0 [42]
-----------------------------------------------
                0.00    0.07       1/1           scm_boot_guile_1 [3]
[61]     1.2    0.00    0.07       1         scm_init_async [61]
                0.00    0.06      11/528         scm_make_gsubr [11]
                0.00    0.01       1/930         scm_sysintern [8]
                0.00    0.00       1/2           scm_system_async [140]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.07       1/1           scm_boot_guile_1 [3]
[62]     1.2    0.00    0.07       1         scm_init_stime [62]
                0.00    0.06      11/528         scm_make_gsubr [11]
                0.00    0.01       1/930         scm_sysintern [8]
                0.00    0.00       1/14          scm_add_feature [81]
                0.00    0.00       1/271         scm_long2num [248]
                0.00    0.00       1/209         mytime [253]
-----------------------------------------------
                              102619             scm_ceval <cycle 1> [14]
[63]     1.1    0.06    0.00  102619         scm_eval_args <cycle 1> [63]
                0.00    0.00    1380/458427      scm_ilookup [59]
                                1737             scm_cons <cycle 1> [26]
                                  37             scm_ceval <cycle 1> [14]
                                  24             scm_lookupcar1 <cycle 1> [118]
-----------------------------------------------
                0.00    0.06       1/1           scm_boot_guile_1 [3]
[64]     1.0    0.00    0.06       1         scm_init_strings [64]
                0.00    0.06      11/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.06       1/1           scm_boot_guile_1 [3]
[65]     1.0    0.00    0.06       1         scm_init_strop [65]
                0.00    0.06      11/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.06       1/1           scm_boot_guile_1 [3]
[66]     1.0    0.00    0.06       1         scm_init_vectors [66]
                0.00    0.06      11/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.06      44/44          scm_make_gsubr [11]
[67]     1.0    0.00    0.06      44         scm_makcclo [67]
                0.03    0.03      44/4394        scm_async_click <cycle 1> [103]
                0.00    0.00      44/101785      scm_must_malloc [30]
-----------------------------------------------
                0.00    0.06       1/1           scm_boot_guile_1 [3]
[68]     1.0    0.00    0.06       1         scm_init_ramap [68]
                0.00    0.04       7/528         scm_make_gsubr [11]
                0.00    0.01       2/2           init_raprocs [122]
                0.00    0.01       1/577         scm_make_subr [10]
                0.00    0.00       1/14          scm_add_feature [81]
-----------------------------------------------
                0.00    0.05       1/1           scm_boot_guile_1 [3]
[69]     1.0    0.00    0.05       1         scm_init_srcprop [69]
                0.00    0.03       6/930         scm_sysintern [8]
                0.00    0.02       4/528         scm_make_gsubr [11]
                0.00    0.00       1/4394        scm_make_weak_key_hash_table <cycle 1> [327]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.05       1/1           scm_boot_guile_1 [3]
[70]     1.0    0.00    0.05       1         scm_init_regex_posix [70]
                0.00    0.03       6/930         scm_sysintern [8]
                0.00    0.02       3/528         scm_make_gsubr [11]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/14          scm_add_feature [81]
                0.00    0.00       1/92          scm_intern0 [42]
                0.00    0.00       1/23          scm_newsmob [94]
                0.00    0.00       6/271         scm_long2num [248]
-----------------------------------------------
                0.00    0.05       1/1           scm_boot_guile_1 [3]
[71]     0.9    0.00    0.05       1         scm_init_weaks [71]
                0.00    0.05      10/528         scm_make_gsubr [11]
-----------------------------------------------
                                7208             scm_intern_obarray <cycle 1> [129]
                0.57    0.64     952/4394        scm_sysintern0_no_module_lookup [7]
[72]     0.9    0.03    0.02    8160         scm_intern_obarray_soft <cycle 1> [72]
                0.02    0.00    8160/11760       scm_strhash [85]
                                7203             scm_async_click <cycle 1> [103]
                                 897             scm_makfromstr <cycle 1> [231]
-----------------------------------------------
                0.00    0.05       1/1           scm_boot_guile_1 [3]
[73]     0.9    0.00    0.05       1         scm_init_strorder [73]
                0.00    0.05      10/577         scm_make_subr [10]
-----------------------------------------------
                0.00    0.05       1/1           scm_boot_guile_1 [3]
[74]     0.9    0.00    0.05       1         scm_init_objects [74]
                0.00    0.02       3/528         scm_make_gsubr [11]
                0.00    0.02       3/930         scm_sysintern [8]
                0.00    0.00       4/4394        scm_cons2 <cycle 1> [44]
                0.00    0.00       3/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       3/4394        scm_make_struct_layout <cycle 1> [304]
                0.00    0.00       2/4394        scm_cons <cycle 1> [26]
                0.00    0.00       2/4394        scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00       1/4394        scm_make_struct <cycle 1> [180]
-----------------------------------------------
                0.00    0.00     471/29265       scm_read <cycle 1> [169]
                0.00    0.00    1558/29265       scm_lreadrecparen <cycle 1> [157]
                0.01    0.01   12502/29265       scm_lreadr <cycle 1> [86]
                0.01    0.01   14734/29265       scm_lreadparen <cycle 1> [98]
[75]     0.8    0.02    0.02   29265         scm_flush_ws [75]
                0.02    0.01   75226/123735      scm_getc [80]
-----------------------------------------------
                0.00    0.04       1/1           scm_boot_guile_1 [3]
[76]     0.8    0.00    0.04       1         scm_init_gc [76]
                0.00    0.02       4/528         scm_make_gsubr [11]
                0.00    0.02       6/106         scm_permanent_object [24]
                0.00    0.01       6/92          scm_intern0 [42]
-----------------------------------------------
                0.00    0.04       1/1           scm_boot_guile_1 [3]
[77]     0.8    0.00    0.04       1         scm_init_dynamic_linking [77]
                0.00    0.04       8/528         scm_make_gsubr [11]
                0.00    0.00       1/23          scm_newsmob [94]
                0.00    0.00       1/1           sysdep_dynl_init [374]
-----------------------------------------------
                0.00    0.04       1/1           scm_boot_guile_1 [3]
[78]     0.8    0.00    0.04       1         scm_init_variable [78]
                0.00    0.04       7/528         scm_make_gsubr [11]
                0.00    0.01       1/930         scm_sysintern [8]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.00       1/214306      scm_m_apply <cycle 1> [216]
                0.00    0.00       2/214306      scm_ithrow [213]
                0.00    0.00       4/214306      scm_m_do <cycle 1> [212]
                0.00    0.00      10/214306      scm_search_path <cycle 1> [190]
                0.00    0.00      10/214306      scm_sys_search_load_path <cycle 1> [210]
                0.00    0.00      11/214306      scm_vector <cycle 1> [207]
                0.00    0.00      13/214306      scm_list_p [204]
                0.00    0.00      15/214306      scm_m_or <cycle 1> [203]
                0.00    0.00      18/214306      scm_m_cond <cycle 1> [202]
                0.00    0.00      19/214306      scm_m_set <cycle 1> [201]
                0.00    0.00      20/214306      scm_m_case <cycle 1> [200]
                0.00    0.00      31/214306      scm_m_begin <cycle 1> [199]
                0.00    0.00      34/214306      sloppy_mem_check [126]
                0.00    0.00      34/214306      scm_m_letrec <cycle 1> [195]
                0.00    0.00      41/214306      scm_m_and <cycle 1> [196]
                0.00    0.00      49/214306      scm_m_if <cycle 1> [194]
                0.00    0.00      52/214306      scm_length [193]
                0.00    0.00      93/214306      scm_m_let <cycle 1> [186]
                0.00    0.00     115/214306      scm_m_quasiquote <cycle 1> [185]
                0.00    0.00     185/214306      scm_m_quote <cycle 1> [181]
                0.00    0.00     216/214306      scm_deval <cycle 1> [43]
                0.00    0.00     247/214306      scm_m_letstar <cycle 1> [175]
                0.00    0.00     457/214306      scm_m_lambda <cycle 1> [173]
                0.00    0.00     540/214306      bodycheck [174]
                0.00    0.00     924/214306      scm_m_define <cycle 1> [152]
                0.00    0.00    1179/214306      scm_ceval <cycle 1> [14]
                0.04    0.00  209986/214306      scm_nconc2last [34]
[79]     0.7    0.04    0.00  214306         scm_ilength [79]
-----------------------------------------------
                0.00    0.00       1/123735      scm_read_char [215]
                0.00    0.00    1867/123735      scm_lreadr <cycle 1> [86]
                0.01    0.00   46641/123735      scm_read_token <cycle 1> [82]
                0.02    0.01   75226/123735      scm_flush_ws [75]
[80]     0.7    0.03    0.01  123735         scm_getc [80]
                0.01    0.00  104128/104128      scm_fgetc [127]
                0.00    0.00       1/1           stgetc [373]
-----------------------------------------------
                0.00    0.00       1/14          scm_init_net_db [51]
                0.00    0.00       1/14          scm_init_ramap [68]
                0.00    0.00       1/14          scm_init_socket [27]
                0.00    0.00       1/14          scm_init_stime [62]
                0.00    0.00       1/14          scm_init_unif [40]
                0.00    0.00       1/14          scm_init_debug [39]
                0.00    0.00       1/14          scm_init_regex_posix [70]
                0.00    0.00       1/14          scm_init_eval [22]
                0.00    0.00       1/14          scm_init_filesys [23]
                0.00    0.01       2/14          scm_init_posix [19]
                0.00    0.01       3/14          scm_init_feature [97]
[81]     0.6    0.00    0.04      14         scm_add_feature [81]
                0.01    0.01      14/4394        scm_intern <cycle 1> [220]
                0.01    0.01      14/4394        scm_cons <cycle 1> [26]
-----------------------------------------------
                                7374             scm_lreadr <cycle 1> [86]
[82]     0.6    0.02    0.02    7374         scm_read_token <cycle 1> [82]
                0.01    0.00   46641/123735      scm_getc [80]
                0.00    0.00    7374/19606       scm_ungetc [219]
                                  17             scm_grow_tok_buf <cycle 1> [285]
-----------------------------------------------
                0.00    0.03       1/1           scm_boot_guile_1 [3]
[83]     0.6    0.00    0.03       1         scm_init_backtrace [83]
                0.00    0.02       4/528         scm_make_gsubr [11]
                0.00    0.01       1/930         scm_sysintern [8]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/1           scm_make_fluid [163]
                0.00    0.00       1/92          scm_intern0 [42]
-----------------------------------------------
                0.00    0.00       3/100651      scm_options <cycle 1> [197]
                0.00    0.00       5/100651      scm_search_path <cycle 1> [190]
                0.00    0.00       6/100651      freeguards [211]
                0.00    0.00       8/100651      scm_remove_from_port_table [205]
                0.00    0.00     629/100651      scm_gc_sweep [17]
                0.03    0.00  100000/100651      scm_regexp_exec <cycle 1> [20]
[84]     0.5    0.03    0.00  100651         scm_must_free [84]
-----------------------------------------------
                0.00    0.00     268/11760       scm_intern_symbol <cycle 1> [170]
                0.00    0.00     665/11760       scm_sym2ovcell_soft <cycle 1> [158]
                0.00    0.00     939/11760       scm_sysintern0_no_module_lookup [7]
                0.00    0.00    1728/11760       scm_sym2vcell <cycle 1> [93]
                0.02    0.00    8160/11760       scm_intern_obarray_soft <cycle 1> [72]
[85]     0.5    0.03    0.00   11760         scm_strhash [85]
                0.00    0.00   50559/51189       scm_downcase [217]
-----------------------------------------------
                                 280             scm_lreadr <cycle 1> [86]
                                 464             scm_read <cycle 1> [169]
                                1121             scm_lreadrecparen <cycle 1> [157]
                               10637             scm_lreadparen <cycle 1> [98]
[86]     0.5    0.01    0.02   12222+280     scm_lreadr <cycle 1> [86]
                0.01    0.01   12502/29265       scm_flush_ws [75]
                0.00    0.00    1867/123735      scm_getc [80]
                0.00    0.00     275/275         scm_casei_streq [247]
                0.00    0.00      67/19606       scm_ungetc [219]
                                7374             scm_read_token <cycle 1> [82]
                                7066             scm_intern <cycle 1> [220]
                                4147             scm_lreadparen <cycle 1> [98]
                                 444             scm_lreadrecparen <cycle 1> [157]
                                 374             scm_istring2number <cycle 1> [132]
                                 280             scm_cons2 <cycle 1> [44]
                                 115             scm_makfromstr <cycle 1> [231]
                                  19             scm_hash_fn_create_handle_x <cycle 1> [166]
                                  19             scm_make_srcprops <cycle 1> [238]
                                  12             scm_grow_tok_buf <cycle 1> [285]
                                 280             scm_lreadr <cycle 1> [86]
-----------------------------------------------
                0.00    0.03      23/23          scm_init_opts [28]
[87]     0.5    0.00    0.03      23         scm_take0str [87]
                0.01    0.02      23/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.03       1/1           scm_boot_guile_1 [3]
[88]     0.5    0.00    0.03       1         scm_internal_catch [88]
                0.00    0.02       1/1           invoke_main_func [95]
                0.00    0.00       1/1           make_jmpbuf [159]
                0.00    0.00       1/4394        scm_acons <cycle 1> [29]
                0.00    0.00       1/1           scm_handle_by_message [162]
-----------------------------------------------
                0.00    0.03       1/1           scm_boot_guile_1 [3]
[89]     0.5    0.00    0.03       1         scm_init_fluids [89]
                0.00    0.03       5/528         scm_make_gsubr [11]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.03       1/1           scm_boot_guile_1 [3]
[90]     0.5    0.00    0.03       1         scm_init_script [90]
                0.00    0.02       7/106         scm_permanent_object [24]
                0.00    0.01       7/92          scm_intern0 [42]
-----------------------------------------------
                0.00    0.03       1/1           scm_boot_guile_1 [3]
[91]     0.5    0.00    0.03       1         scm_init_fports [91]
                0.00    0.02       3/930         scm_sysintern [8]
                0.00    0.01       2/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[92]     0.4    0.00    0.02       1         scm_init_procprop [92]
                0.00    0.02       4/528         scm_make_gsubr [11]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/92          scm_intern0 [42]
-----------------------------------------------
                                   1             scm_definedp <cycle 1> [357]
                                 268             scm_builtin_variable <cycle 1> [249]
                                 457             scm_m_define <cycle 1> [152]
                                2283             scm_lookupcar1 <cycle 1> [118]
                0.00    0.00       1/4394        scm_sysintern0 [6]
[93]     0.4    0.02    0.00    3010         scm_sym2vcell <cycle 1> [93]
                0.00    0.00    1728/11760       scm_strhash [85]
                                1716             scm_async_click <cycle 1> [103]
                                1282             scm_cons <cycle 1> [26]
                                1282             scm_apply <cycle 1> [25]
-----------------------------------------------
                0.00    0.00       1/23          scm_init_kw [108]
                0.00    0.00       1/23          scm_init_mallocs [167]
                0.00    0.00       1/23          scm_init_root [119]
                0.00    0.00       1/23          scm_init_unif [40]
                0.00    0.00       1/23          scm_init_variable [78]
                0.00    0.00       1/23          scm_init_fluids [89]
                0.00    0.00       1/23          scm_init_srcprop [69]
                0.00    0.00       1/23          scm_init_regex_posix [70]
                0.00    0.00       1/23          scm_init_arbiters [111]
                0.00    0.00       1/23          scm_init_async [61]
                0.00    0.00       1/23          scm_init_dynamic_linking [77]
                0.00    0.00       1/23          scm_init_dynwind [138]
                0.00    0.00       1/23          scm_init_filesys [23]
                0.00    0.00       2/23          scm_init_throw [109]
                0.00    0.00       2/23          scm_init_debug [39]
                0.00    0.00       2/23          scm_init_eval [22]
                0.00    0.00       4/23          scm_smob_prehistory [143]
[94]     0.4    0.00    0.02      23         scm_newsmob [94]
                0.01    0.01      19/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.02       1/1           scm_internal_catch [88]
[95]     0.4    0.00    0.02       1         invoke_main_func [95]
                0.00    0.02       1/1           inner_main [106]
                0.00    0.01       1/1           scm_load_startup_files [142]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[96]     0.4    0.00    0.02       1         scm_init_storage [96]
                0.00    0.02       3/930         scm_sysintern [8]
                0.00    0.00       3/4394        scm_make_vector <cycle 1> [125]
                0.00    0.00       2/4394        scm_cons <cycle 1> [26]
                0.00    0.00       1/4394        scm_makstr <cycle 1> [117]
                0.00    0.00       1/4394        scm_make_weak_key_hash_table <cycle 1> [327]
                0.00    0.00       1/101785      scm_must_malloc [30]
                0.00    0.00       1/1           init_heap_seg [348]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[97]     0.4    0.00    0.02       1         scm_init_feature [97]
                0.00    0.01       2/930         scm_sysintern [8]
                0.00    0.01       3/14          scm_add_feature [81]
                0.00    0.01       1/528         scm_make_gsubr [11]
-----------------------------------------------
                                4147             scm_lreadr <cycle 1> [86]
[98]     0.4    0.00    0.02    4147         scm_lreadparen <cycle 1> [98]
                0.01    0.01   14734/29265       scm_flush_ws [75]
                0.00    0.00   10587/19606       scm_ungetc [219]
                               10637             scm_lreadr <cycle 1> [86]
                               10537             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[99]     0.4    0.00    0.02       1         scm_init_objprop [99]
                0.00    0.02       4/528         scm_make_gsubr [11]
                0.00    0.00       1/4394        scm_make_weak_key_hash_table <cycle 1> [327]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[100]    0.4    0.00    0.02       1         scm_init_simpos [100]
                0.00    0.02       4/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[101]    0.4    0.00    0.02       1         scm_init_version [101]
                0.00    0.02       4/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[102]    0.4    0.00    0.02       1         scm_init_gsubr [102]
                0.00    0.01       2/930         scm_sysintern [8]
                0.00    0.01       2/106         scm_permanent_object [24]
                0.00    0.01       1/577         scm_make_subr [10]
-----------------------------------------------
                                   1             scm_clear_registered_modules <cycle 1> [356]
                                   3             scm_mkstrport <cycle 1> [198]
                                   4             scm_make_weak_vector <cycle 1> [192]
                                   4             scm_debug_options <cycle 1> [319]
                                   5             scm_search_path <cycle 1> [190]
                                   5             scm_make_vtable_vtable <cycle 1> [191]
                                   6             scm_close_port <cycle 1> [206]
                                   6             scm_regexp_exec <cycle 1> [20]
                                   6             scm_internal_dynamic_wind <cycle 1> [187]
                                   6             scm_stat <cycle 1> [323]
                                   6             scm_open_file <cycle 1> [188]
                                   7             scm_make_undefined_variable <cycle 1> [314]
                                   8             scm_make_weak_key_hash_table <cycle 1> [327]
                                  13             scm_makdbl <cycle 1> [184]
                                  18             scm_make_struct <cycle 1> [180]
                                  22             scm_prin1 <cycle 1> [310]
                                  27             scm_mkbig <cycle 1> [176]
                                  29             scm_vector_set_length_x <cycle 1> [287]
                                  31             scm_make_variable <cycle 1> [284]
                                  38             make_vcell_variable <cycle 1> [245]
                                  39             scm_make_vector <cycle 1> [125]
                                  98             scm_gc_for_alloc <cycle 1> [13]
                                 258             scm_intern_symbol <cycle 1> [170]
                                 258             scm_builtin_variable <cycle 1> [249]
                                 443             scm_make_srcprops <cycle 1> [238]
                                 645             scm_sym2ovcell_soft <cycle 1> [158]
                                 688             scm_makstr <cycle 1> [117]
                                 792             scm_hash_fn_create_handle_x <cycle 1> [166]
                                1000             scm_equal_p <cycle 1> [232]
                                1716             scm_sym2vcell <cycle 1> [93]
                                7203             scm_intern_obarray_soft <cycle 1> [72]
                               41161             scm_ceval <cycle 1> [14]
                               45341             scm_deval <cycle 1> [43]
                0.00    0.00       1/4394        scm_eval_options_interface [155]
                0.00    0.00       1/4394        scm_evaluator_traps [156]
                0.00    0.00       1/4394        scm_newptob [161]
                0.00    0.00       1/4394        scm_make_root [160]
                0.00    0.00       1/4394        make_jmpbuf [159]
                0.00    0.00       1/4394        scm_make_fluid [163]
                0.00    0.00       2/4394        scm_async [153]
                0.00    0.00       2/4394        scm_system_async [140]
                0.00    0.00       3/4394        scm_set_port_revealed_x [144]
                0.00    0.00       3/4394        scm_stdio_to_port [120]
                0.01    0.01      19/4394        scm_newsmob [94]
                0.01    0.02      23/4394        scm_take0str [87]
                0.03    0.03      44/4394        scm_makcclo [67]
                0.06    0.07     106/4394        scm_permanent_object [24]
                0.57    0.63     949/4394        scm_sysintern0_no_module_lookup [7]
[103]    0.4    0.02    0.00  101044         scm_async_click <cycle 1> [103]
                0.00    0.00      93/93          scm_asyncs_pending [265]
                                  93             scm_run_asyncs <cycle 1> [266]
-----------------------------------------------
                0.00    0.00       2/7249        scm_ceval <cycle 1> [14]
                0.00    0.00       5/7249        scm_primitive_load <cycle 1> [189]
                0.00    0.00     141/7249        env_top_level [171]
                0.00    0.00     146/7249        scm_m_define <cycle 1> [152]
                0.01    0.00    2383/7249        scm_procedure_property [133]
                0.01    0.00    4572/7249        scm_lookupcar1 <cycle 1> [118]
[104]    0.4    0.02    0.00    7249         scm_procedure_p [104]
-----------------------------------------------
                0.02    0.00     104/104         scm_igc [12]
[105]    0.4    0.02    0.00     104         scm_mark_weak_vector_spines [105]
-----------------------------------------------
                0.00    0.02       1/1           invoke_main_func [95]
[106]    0.3    0.00    0.02       1         inner_main [106]
                0.00    0.02       1/1           scm_shell [107]
-----------------------------------------------
                0.00    0.02       1/1           inner_main [106]
[107]    0.3    0.00    0.02       1         scm_shell [107]
                0.00    0.02       1/1           scm_compile_shell_switches [110]
                0.00    0.00       1/4394        scm_eval_x <cycle 1> [237]
                0.00    0.00       1/1           scm_get_meta_args [361]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[108]    0.3    0.00    0.02       1         scm_init_kw [108]
                0.00    0.02       3/528         scm_make_gsubr [11]
                0.00    0.00       1/4394        scm_make_vector <cycle 1> [125]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[109]    0.3    0.00    0.02       1         scm_init_throw [109]
                0.00    0.02       3/528         scm_make_gsubr [11]
                0.00    0.00       2/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.02       1/1           scm_shell [107]
[110]    0.3    0.00    0.02       1         scm_compile_shell_switches [110]
                0.00    0.00       4/4394        scm_cons <cycle 1> [26]
                0.00    0.01       1/2           scm_set_program_arguments [124]
                0.00    0.01       1/930         scm_sysintern [8]
                0.00    0.00       1/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/4394        scm_cons2 <cycle 1> [44]
                0.00    0.00       1/1           scm_reverse_x [367]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[111]    0.3    0.00    0.02       1         scm_init_arbiters [111]
                0.00    0.02       3/528         scm_make_gsubr [11]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[112]    0.3    0.00    0.02       1         scm_init_hash [112]
                0.00    0.02       3/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[113]    0.3    0.00    0.02       1         scm_init_procs [113]
                0.00    0.02       3/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[114]    0.3    0.00    0.02       1         scm_init_strports [114]
                0.00    0.02       3/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.02       1/1           scm_boot_guile_1 [3]
[115]    0.3    0.00    0.02       1         scm_init_eq [115]
                0.00    0.02       3/577         scm_make_subr [10]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[116]    0.3    0.00    0.01       1         scm_init_gdbint [116]
                0.00    0.01       3/106         scm_permanent_object [24]
                0.00    0.00       2/4394        scm_mkstrport <cycle 1> [198]
                0.00    0.00       2/2           scm_make_string [154]
                0.00    0.00       1/4394        scm_makstr <cycle 1> [117]
-----------------------------------------------
                                  63             scm_string_append <cycle 1> [272]
                                 464             scm_read <cycle 1> [169]
                                1069             scm_makfromstr <cycle 1> [231]
                0.00    0.00       1/4394        scm_init_gdbint [116]
                0.00    0.00       1/4394        scm_init_storage [96]
                0.00    0.00       2/4394        scm_make_string [154]
[117]    0.2    0.01    0.00    1600         scm_makstr <cycle 1> [117]
                0.00    0.00    1600/101785      scm_must_malloc [30]
                                 688             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   3             scm_deval_args <cycle 1> [172]
                                  24             scm_eval_args <cycle 1> [63]
                                  51             scm_eval_car <cycle 1> [179]
                                 572             scm_deval <cycle 1> [43]
                                2167             scm_ceval <cycle 1> [14]
[118]    0.2    0.00    0.01    2817         scm_lookupcar1 <cycle 1> [118]
                0.01    0.00    4572/7249        scm_procedure_p [104]
                                2283             scm_sym2vcell <cycle 1> [93]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[119]    0.2    0.00    0.01       1         scm_init_root [119]
                0.00    0.01       2/528         scm_make_gsubr [11]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.01       3/3           scm_init_standard_ports [121]
[120]    0.2    0.00    0.01       3         scm_stdio_to_port [120]
                0.00    0.00       3/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       3/4394        scm_async_click <cycle 1> [103]
                0.00    0.00       3/3           scm_set_port_revealed_x [144]
                0.00    0.00       3/13          scm_add_to_port_table [183]
                0.00    0.00       3/10          scm_mode_bits [311]
                0.00    0.00       1/1           scm_setbuf0 [368]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[121]    0.2    0.00    0.01       1         scm_init_standard_ports [121]
                0.00    0.01       3/3           scm_stdio_to_port [120]
-----------------------------------------------
                0.00    0.01       2/2           scm_init_ramap [68]
[122]    0.2    0.00    0.01       2         init_raprocs [122]
                0.01    0.01       9/4394        scm_intern <cycle 1> [220]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[123]    0.2    0.00    0.01       1         scm_init_boolean [123]
                0.00    0.01       2/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.01       1/2           scm_boot_guile_1 [3]
                0.00    0.01       1/2           scm_compile_shell_switches [110]
[124]    0.2    0.00    0.01       2         scm_set_program_arguments [124]
                0.00    0.01       2/2           scm_makfromstrs [134]
                0.00    0.00       1/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/4394        scm_cons <cycle 1> [26]
-----------------------------------------------
                                   1             make_print_state <cycle 1> [349]
                                   4             scm_deval <cycle 1> [43]
                                   5             scm_make_weak_vector <cycle 1> [192]
                                   6             scm_stat2scm <cycle 1> [324]
                                   9             scm_ceval <cycle 1> [14]
                                  11             scm_vector <cycle 1> [207]
                0.00    0.00       1/4394        start_stack [137]
                0.00    0.00       1/4394        scm_init_kw [108]
                0.00    0.00       1/4394        scm_init_scmsigs [57]
                0.00    0.00       1/4394        scm_make_initial_fluids [164]
                0.00    0.00       3/4394        scm_init_storage [96]
[125]    0.2    0.01    0.00      43         scm_make_vector <cycle 1> [125]
                0.00    0.00      43/101785      scm_must_malloc [30]
                                  39             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00       9/34          scm_member <cycle 1> [151]
                0.01    0.00      25/34          scm_memq [136]
[126]    0.2    0.01    0.00      34         sloppy_mem_check [126]
                0.00    0.00      34/214306      scm_ilength [79]
-----------------------------------------------
                0.01    0.00  104128/104128      scm_getc [80]
[127]    0.2    0.01    0.00  104128         scm_fgetc [127]
-----------------------------------------------
                0.00    0.00     818/7736        scm_hash_fn_create_handle_x <cycle 1> [166]
                0.00    0.00    2115/7736        scm_hash_fn_get_handle [148]
                0.00    0.00    2383/7736        scm_procedure_property [133]
                0.00    0.00    2420/7736        scm_set_procedure_property_x <cycle 1> [146]
[128]    0.2    0.01    0.00    7736         scm_sloppy_assq [128]
-----------------------------------------------
                                  13             scm_make_struct_layout <cycle 1> [304]
                                7194             scm_intern <cycle 1> [220]
                0.00    0.00       1/4394        scm_init_struct [58]
[129]    0.2    0.01    0.00    7208         scm_intern_obarray <cycle 1> [129]
                                7208             scm_intern_obarray_soft <cycle 1> [72]
-----------------------------------------------
                0.00    0.00    1984/4362        scm_ceval <cycle 1> [14]
                0.01    0.00    2378/4362        scm_deval <cycle 1> [43]
[130]    0.2    0.01    0.00    4362         scm_struct_ref [130]
-----------------------------------------------
                0.00    0.00    1216/2439        scm_deval <cycle 1> [43]
                0.01    0.00    1223/2439        scm_ceval <cycle 1> [14]
[131]    0.2    0.01    0.00    2439         scm_symbol_p [131]
-----------------------------------------------
                                 374             scm_lreadr <cycle 1> [86]
[132]    0.2    0.01    0.00     374         scm_istring2number <cycle 1> [132]
                                 324             scm_istr2int <cycle 1> [242]
                                  92             scm_istr2flo <cycle 1> [268]
-----------------------------------------------
                0.00    0.00     409/2383        scm_m_define <cycle 1> [152]
                0.00    0.00     858/2383        scm_ceval <cycle 1> [14]
                0.00    0.00    1116/2383        scm_deval <cycle 1> [43]
[133]    0.2    0.00    0.01    2383         scm_procedure_property [133]
                0.01    0.00    2383/7249        scm_procedure_p [104]
                0.00    0.00    2383/7736        scm_sloppy_assq [128]
-----------------------------------------------
                0.00    0.01       2/2           scm_set_program_arguments [124]
[134]    0.1    0.00    0.01       2         scm_makfromstrs [134]
                0.00    0.00       3/4394        scm_makfromstr <cycle 1> [231]
                0.00    0.00       3/4394        scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[135]    0.1    0.00    0.01       1         scm_init_options [135]
                0.00    0.01       2/106         scm_permanent_object [24]
                0.00    0.00       2/92          scm_intern0 [42]
-----------------------------------------------
                0.00    0.00       8/25          scm_deval <cycle 1> [43]
                0.00    0.01      17/25          scm_ceval <cycle 1> [14]
[136]    0.1    0.00    0.01      25         scm_memq [136]
                0.01    0.00      25/34          sloppy_mem_check [126]
                0.00    0.00      25/25          scm_sloppy_memq [288]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[137]    0.1    0.00    0.01       1         start_stack [137]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/1           scm_make_root [160]
                0.00    0.00       1/4394        scm_make_vector <cycle 1> [125]
                0.00    0.00       1/1           scm_make_initial_fluids [164]
                0.00    0.00       1/101785      scm_must_malloc [30]
                0.00    0.00       1/1           restart_stack [352]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[138]    0.1    0.00    0.01       1         scm_init_dynwind [138]
                0.00    0.01       1/528         scm_make_gsubr [11]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[139]    0.1    0.00    0.01       1         scm_init_vports [139]
                0.00    0.01       1/528         scm_make_gsubr [11]
-----------------------------------------------
                0.00    0.00       1/2           scm_init_scmsigs [57]
                0.00    0.00       1/2           scm_init_async [61]
[140]    0.1    0.00    0.01       2         scm_system_async [140]
                0.00    0.00       2/2           scm_async [153]
                0.00    0.00       2/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.01       1/1           scm_boot_guile_1 [3]
[141]    0.1    0.00    0.01       1         scm_init_load_path [141]
                0.00    0.00       3/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/4394        scm_listify <cycle 1> [273]
                0.00    0.00       1/1           scm_internal_parse_path [363]
-----------------------------------------------
                0.00    0.01       1/1           invoke_main_func [95]
[142]    0.1    0.00    0.01       1         scm_load_startup_files [142]
                0.00    0.00       2/4394        scm_makfrom0str <cycle 1> [277]
                0.00    0.00       1/4394        scm_sys_search_load_path <cycle 1> [210]
                0.00    0.00       1/4394        scm_primitive_load_path <cycle 1> [341]
-----------------------------------------------
                0.00    0.00       1/1           scm_boot_guile_1 [3]
[143]    0.1    0.00    0.00       1         scm_smob_prehistory [143]
                0.00    0.00       4/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.00       3/3           scm_stdio_to_port [120]
[144]    0.1    0.00    0.00       3         scm_set_port_revealed_x [144]
                0.00    0.00       3/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00       1/1           scm_boot_guile_1 [3]
[145]    0.1    0.00    0.00       1         scm_init_stackchk [145]
                0.00    0.00       1/106         scm_permanent_object [24]
                0.00    0.00       1/92          scm_intern0 [42]
-----------------------------------------------
                                 401             scm_m_define <cycle 1> [152]
                                 859             scm_ceval <cycle 1> [14]
                                1116             scm_deval <cycle 1> [43]
                0.03    0.03      44/4394        scm_make_gsubr [11]
[146]    0.1    0.00    0.00    2420         scm_set_procedure_property_x <cycle 1> [146]
                0.00    0.00    2420/7736        scm_sloppy_assq [128]
                                2420             scm_acons <cycle 1> [29]
                                  44             scm_stand_in_scm_proc <cycle 1> [275]
-----------------------------------------------
                                 551             scm_apply <cycle 1> [25]
                                1361             scm_deval <cycle 1> [43]
[147]    0.1    0.00    0.00    1912         scm_dapply <cycle 1> [147]
                0.00    0.00    1871/104993      scm_nconc2last [34]
                0.00    0.00     554/1487        scm_badargsp [229]
                0.00    0.00       1/93          scm_sys_gc_async_thunk [267]
                                2900             scm_cons <cycle 1> [26]
                                1125             scm_gsubr_apply <cycle 1> [33]
                                 585             scm_deval <cycle 1> [43]
                                 554             scm_acons <cycle 1> [29]
                                  95             scm_m_quote <cycle 1> [181]
                                  23             scm_m_lambda <cycle 1> [173]
                                  22             scm_m_quasiquote <cycle 1> [185]
                                  21             scm_m_let <cycle 1> [186]
                                  19             scm_m_begin <cycle 1> [199]
                                  18             scm_m_define <cycle 1> [152]
                                   9             scm_m_if <cycle 1> [194]
                                   7             scm_m_set <cycle 1> [201]
                                   7             scm_m_letstar <cycle 1> [175]
                                   4             scm_string_append <cycle 1> [272]
                                   4             scm_m_start_stack <cycle 1> [326]
                                   2             scm_m_and <cycle 1> [196]
                                   1             scm_m_or <cycle 1> [203]
-----------------------------------------------
                0.00    0.00    2115/2115        scm_hash_fn_ref [149]
[148]    0.0    0.00    0.00    2115         scm_hash_fn_get_handle [148]
                0.00    0.00    2115/7736        scm_sloppy_assq [128]
                0.00    0.00    2115/2933        scm_ihashq [225]
-----------------------------------------------
                0.00    0.00    2115/2115        scm_hashq_ref [150]
[149]    0.0    0.00    0.00    2115         scm_hash_fn_ref [149]
                0.00    0.00    2115/2115        scm_hash_fn_get_handle [148]
-----------------------------------------------
                0.00    0.00      22/2115        scm_source_properties <cycle 1> [182]
                0.00    0.00    2093/2115        scm_gsubr_apply <cycle 1> [33]
[150]    0.0    0.00    0.00    2115         scm_hashq_ref [150]
                0.00    0.00    2115/2115        scm_hash_fn_ref [149]
-----------------------------------------------
                                   2             scm_ceval <cycle 1> [14]
                                   7             scm_deval <cycle 1> [43]
[151]    0.0    0.00    0.00       9         scm_member <cycle 1> [151]
                0.00    0.00       9/34          sloppy_mem_check [126]
                                   9             scm_sloppy_member <cycle 1> [315]
-----------------------------------------------
                                  18             scm_dapply <cycle 1> [147]
                                 444             scm_apply <cycle 1> [25]
[152]    0.0    0.00    0.00     462         scm_m_define <cycle 1> [152]
                0.00    0.00     409/2383        scm_procedure_property [133]
                0.00    0.00     146/7249        scm_procedure_p [104]
                0.00    0.00     457/457         env_top_level [171]
                0.00    0.00     924/214306      scm_ilength [79]
                                 457             scm_eval_car <cycle 1> [179]
                                 457             scm_sym2vcell <cycle 1> [93]
                                 401             scm_set_procedure_property_x <cycle 1> [146]
                                 353             scm_cons2 <cycle 1> [44]
                                 348             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00       2/2           scm_system_async [140]
[153]    0.0    0.00    0.00       2         scm_async [153]
                0.00    0.00       2/4394        scm_async_click <cycle 1> [103]
                0.00    0.00       2/101785      scm_must_malloc [30]
-----------------------------------------------
                0.00    0.00       2/2           scm_init_gdbint [116]
[154]    0.0    0.00    0.00       2         scm_make_string [154]
                0.00    0.00       2/4394        scm_makstr <cycle 1> [117]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_opts [28]
[155]    0.0    0.00    0.00       1         scm_eval_options_interface [155]
                0.00    0.00       1/4394        scm_options <cycle 1> [197]
                0.00    0.00       1/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_opts [28]
[156]    0.0    0.00    0.00       1         scm_evaluator_traps [156]
                0.00    0.00       1/4394        scm_options <cycle 1> [197]
                0.00    0.00       1/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                                 444             scm_lreadr <cycle 1> [86]
[157]    0.0    0.00    0.00     444         scm_lreadrecparen <cycle 1> [157]
                0.00    0.00    1558/29265       scm_flush_ws [75]
                0.00    0.00    1114/19606       scm_ungetc [219]
                                1121             scm_lreadr <cycle 1> [86]
                                1107             scm_cons <cycle 1> [26]
                                 438             scm_hash_fn_create_handle_x <cycle 1> [166]
                                 438             scm_make_srcprops <cycle 1> [238]
-----------------------------------------------
                                 268             scm_sym2ovcell <cycle 1> [250]
                                 397             scm_symbol_interned_p <cycle 1> [251]
[158]    0.0    0.00    0.00     665         scm_sym2ovcell_soft <cycle 1> [158]
                0.00    0.00     665/11760       scm_strhash [85]
                                 645             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00       1/1           scm_internal_catch [88]
[159]    0.0    0.00    0.00       1         make_jmpbuf [159]
                0.00    0.00       1/4394        scm_async_click <cycle 1> [103]
                0.00    0.00       1/101785      scm_must_malloc [30]
-----------------------------------------------
                0.00    0.00       1/1           start_stack [137]
[160]    0.0    0.00    0.00       1         scm_make_root [160]
                0.00    0.00       1/4394        scm_async_click <cycle 1> [103]
                0.00    0.00       1/101785      scm_must_malloc [30]
-----------------------------------------------
                0.00    0.00       1/5           scm_init_ports [36]
                0.00    0.00       4/5           scm_ports_prehistory [168]
[161]    0.0    0.00    0.00       5         scm_newptob [161]
                0.00    0.00       1/4394        scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00       1/1           scm_internal_catch [88]
[162]    0.0    0.00    0.00       1         scm_handle_by_message [162]
                0.00    0.00       1/92          scm_intern0 [42]
                0.00    0.00       1/4559        scm_eq_p [221]
                0.00    0.00       1/1           scm_exit_status [359]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_backtrace [83]
[163]    0.0    0.00    0.00       1         scm_make_fluid [163]
                0.00    0.00       1/4394        scm_async_click <cycle 1> [103]
                0.00    0.00       1/1           next_fluid_num [350]
-----------------------------------------------
                0.00    0.00       1/1           start_stack [137]
[164]    0.0    0.00    0.00       1         scm_make_initial_fluids [164]
                0.00    0.00       1/4394        scm_make_vector <cycle 1> [125]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_opts [28]
[165]    0.0    0.00    0.00       1         scm_print_options [165]
                0.00    0.00       1/4394        scm_options <cycle 1> [197]
-----------------------------------------------
                                  19             scm_lreadr <cycle 1> [86]
                                  22             scm_hashq_create_handle_x <cycle 1> [291]
                                 339             scm_hash_fn_set_x <cycle 1> [240]
                                 438             scm_lreadrecparen <cycle 1> [157]
[166]    0.0    0.00    0.00     818         scm_hash_fn_create_handle_x <cycle 1> [166]
                0.00    0.00     818/7736        scm_sloppy_assq [128]
                0.00    0.00     818/2933        scm_ihashq [225]
                                 818             scm_acons <cycle 1> [29]
                                 792             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00       1/1           scm_boot_guile_1 [3]
[167]    0.0    0.00    0.00       1         scm_init_mallocs [167]
                0.00    0.00       1/23          scm_newsmob [94]
-----------------------------------------------
                0.00    0.00       1/1           scm_boot_guile_1 [3]
[168]    0.0    0.00    0.00       1         scm_ports_prehistory [168]
                0.00    0.00       4/5           scm_newptob [161]
-----------------------------------------------
                                 471             load <cycle 1> [316]
[169]    0.0    0.00    0.00     471         scm_read <cycle 1> [169]
                0.00    0.00     471/29265       scm_flush_ws [75]
                0.00    0.00     464/19606       scm_ungetc [219]
                                 464             scm_makstr <cycle 1> [117]
                                 464             scm_lreadr <cycle 1> [86]
-----------------------------------------------
                                 268             scm_builtin_variable <cycle 1> [249]
[170]    0.0    0.00    0.00     268         scm_intern_symbol <cycle 1> [170]
                0.00    0.00     268/11760       scm_strhash [85]
                                 258             scm_async_click <cycle 1> [103]
                                 236             scm_acons <cycle 1> [29]
-----------------------------------------------
                0.00    0.00     457/457         scm_m_define <cycle 1> [152]
[171]    0.0    0.00    0.00     457         env_top_level [171]
                0.00    0.00     141/7249        scm_procedure_p [104]
-----------------------------------------------
                                1496             scm_deval <cycle 1> [43]
[172]    0.0    0.00    0.00    1496         scm_deval_args <cycle 1> [172]
                0.00    0.00    1318/458427      scm_ilookup [59]
                                1540             scm_cons <cycle 1> [26]
                                  67             scm_deval <cycle 1> [43]
                                   3             scm_lookupcar1 <cycle 1> [118]
-----------------------------------------------
                                  23             scm_dapply <cycle 1> [147]
                                 434             scm_apply <cycle 1> [25]
[173]    0.0    0.00    0.00     457         scm_m_lambda <cycle 1> [173]
                0.00    0.00     457/214306      scm_ilength [79]
                0.00    0.00     457/540         bodycheck [174]
                                 457             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00       1/540         scm_m_do <cycle 1> [212]
                0.00    0.00      10/540         scm_m_letrec <cycle 1> [195]
                0.00    0.00      72/540         scm_m_letstar <cycle 1> [175]
                0.00    0.00     457/540         scm_m_lambda <cycle 1> [173]
[174]    0.0    0.00    0.00     540         bodycheck [174]
                0.00    0.00     540/214306      scm_ilength [79]
-----------------------------------------------
                                   7             scm_dapply <cycle 1> [147]
                                   9             scm_apply <cycle 1> [25]
                                  56             scm_m_let <cycle 1> [186]
[175]    0.0    0.00    0.00      72         scm_m_letstar <cycle 1> [175]
                0.00    0.00     247/214306      scm_ilength [79]
                0.00    0.00      72/540         bodycheck [174]
                                 144             scm_cons <cycle 1> [26]
                                 103             scm_cons2 <cycle 1> [44]
-----------------------------------------------
                                   7             scm_istr2int <cycle 1> [242]
                                  21             scm_ulong2big <cycle 1> [294]
[176]    0.0    0.00    0.00      28         scm_mkbig <cycle 1> [176]
                0.00    0.00      28/101785      scm_must_malloc [30]
                                  27             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00       5/23          scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00      18/23          scm_make_struct <cycle 1> [180]
[177]    0.0    0.00    0.00      23         alloc_struct [177]
                0.00    0.00      23/101785      scm_must_malloc [30]
-----------------------------------------------
                0.00    0.00      18/55          scm_deval <cycle 1> [43]
                0.00    0.00      37/55          scm_ceval <cycle 1> [14]
[178]    0.0    0.00    0.00      55         scm_gr_p [178]
                0.00    0.00      55/100056      scm_less_p [55]
-----------------------------------------------
                                   5             scm_m_start_stack <cycle 1> [326]
                                 343             iqq <cycle 1> [257]
                                 457             scm_m_define <cycle 1> [152]
                                 858             scm_ceval <cycle 1> [14]
                                1116             scm_deval <cycle 1> [43]
[179]    0.0    0.00    0.00    2779         scm_eval_car <cycle 1> [179]
                0.00    0.00     255/458427      scm_ilookup [59]
                                1319             scm_ceval <cycle 1> [14]
                                1144             scm_deval <cycle 1> [43]
                                  51             scm_lookupcar1 <cycle 1> [118]
-----------------------------------------------
                                   1             make_print_state <cycle 1> [349]
                                   4             scm_deval <cycle 1> [43]
                                  10             scm_ceval <cycle 1> [14]
                0.00    0.00       1/4394        scm_init_objects [74]
                0.00    0.00       1/4394        scm_init_print [52]
                0.00    0.00       1/4394        scm_init_stacks [48]
[180]    0.0    0.00    0.00      18         scm_make_struct <cycle 1> [180]
                0.00    0.00      18/23          alloc_struct [177]
                0.00    0.00      18/18          scm_struct_vtable_p [297]
                0.00    0.00      18/23          init_struct [290]
                                  18             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                  90             scm_apply <cycle 1> [25]
                                  95             scm_dapply <cycle 1> [147]
[181]    0.0    0.00    0.00     185         scm_m_quote <cycle 1> [181]
                0.00    0.00     185/214306      scm_ilength [79]
                                 185             scm_cons <cycle 1> [26]
-----------------------------------------------
                                  22             scm_deval <cycle 1> [43]
[182]    0.0    0.00    0.00      22         scm_source_properties <cycle 1> [182]
                0.00    0.00      22/2115        scm_hashq_ref [150]
                                  22             scm_srcprops_to_plist <cycle 1> [293]
-----------------------------------------------
                0.00    0.00       3/13          scm_stdio_to_port [120]
                0.00    0.00       3/13          scm_mkstrport <cycle 1> [198]
                0.00    0.00       7/13          scm_open_file <cycle 1> [188]
[183]    0.0    0.00    0.00      13         scm_add_to_port_table [183]
                0.00    0.00      13/101785      scm_must_malloc [30]
-----------------------------------------------
                                  13             scm_istr2flo <cycle 1> [268]
[184]    0.0    0.00    0.00      13         scm_makdbl <cycle 1> [184]
                0.00    0.00      11/101785      scm_must_malloc [30]
                                  13             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                  22             scm_dapply <cycle 1> [147]
                                  93             scm_apply <cycle 1> [25]
[185]    0.0    0.00    0.00     115         scm_m_quasiquote <cycle 1> [185]
                0.00    0.00     115/214306      scm_ilength [79]
                                 115             iqq <cycle 1> [257]
-----------------------------------------------
                                  21             scm_dapply <cycle 1> [147]
                                  45             scm_apply <cycle 1> [25]
[186]    0.0    0.00    0.00      66         scm_m_let <cycle 1> [186]
                0.00    0.00      93/214306      scm_ilength [79]
                                  56             scm_m_letstar <cycle 1> [175]
                                  36             scm_cons <cycle 1> [26]
                                  21             scm_cons2 <cycle 1> [44]
                                  10             scm_m_letrec <cycle 1> [195]
                                   7             scm_acons <cycle 1> [29]
-----------------------------------------------
                                   7             scm_primitive_load <cycle 1> [189]
[187]    0.0    0.00    0.00       7         scm_internal_dynamic_wind <cycle 1> [187]
                0.00    0.00       7/101785      scm_must_malloc [30]
                0.00    0.00      14/14          swap_port [301]
                                   7             scm_acons <cycle 1> [29]
                                   7             load <cycle 1> [316]
                                   6             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   7             scm_primitive_load <cycle 1> [189]
[188]    0.0    0.00    0.00       7         scm_open_file <cycle 1> [188]
                0.00    0.00       7/13          scm_add_to_port_table [183]
                0.00    0.00       7/10          scm_mode_bits [311]
                                   6             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
                                   3             scm_primitive_load_path <cycle 1> [341]
                                   3             scm_deval <cycle 1> [43]
[189]    0.0    0.00    0.00       7         scm_primitive_load <cycle 1> [189]
                0.00    0.00       5/7249        scm_procedure_p [104]
                                   7             scm_makfromstr <cycle 1> [231]
                                   7             scm_open_file <cycle 1> [188]
                                   7             scm_internal_dynamic_wind <cycle 1> [187]
                                   7             scm_close_port <cycle 1> [206]
                                   5             scm_listify <cycle 1> [273]
                                   5             scm_apply <cycle 1> [25]
-----------------------------------------------
                                   5             scm_sys_search_load_path <cycle 1> [210]
[190]    0.0    0.00    0.00       5         scm_search_path <cycle 1> [190]
                0.00    0.00       5/101785      scm_must_malloc [30]
                0.00    0.00      10/214306      scm_ilength [79]
                0.00    0.00       5/100651      scm_must_free [84]
                                   5             scm_async_click <cycle 1> [103]
                                   4             scm_makfromstr <cycle 1> [231]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
                0.00    0.00       1/4394        scm_init_print [52]
                0.00    0.00       1/4394        scm_init_stacks [48]
                0.00    0.00       2/4394        scm_init_objects [74]
[191]    0.0    0.00    0.00       5         scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00       5/23          alloc_struct [177]
                0.00    0.00       5/23          init_struct [290]
                                   5             scm_listify <cycle 1> [273]
                                   5             scm_string_append <cycle 1> [272]
                                   5             scm_make_struct_layout <cycle 1> [304]
                                   5             scm_cons <cycle 1> [26]
                                   5             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   5             scm_make_weak_key_hash_table <cycle 1> [327]
[192]    0.0    0.00    0.00       5         scm_make_weak_vector <cycle 1> [192]
                0.00    0.00       5/100063      scm_sum [31]
                                   5             scm_make_vector <cycle 1> [125]
                                   4             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00      16/52          scm_deval <cycle 1> [43]
                0.00    0.00      36/52          scm_ceval <cycle 1> [14]
[193]    0.0    0.00    0.00      52         scm_length [193]
                0.00    0.00      52/214306      scm_ilength [79]
-----------------------------------------------
                                   9             scm_dapply <cycle 1> [147]
                                  40             scm_apply <cycle 1> [25]
[194]    0.0    0.00    0.00      49         scm_m_if <cycle 1> [194]
                0.00    0.00      49/214306      scm_ilength [79]
                                  49             scm_cons <cycle 1> [26]
-----------------------------------------------
                                  10             scm_m_let <cycle 1> [186]
[195]    0.0    0.00    0.00      10         scm_m_letrec <cycle 1> [195]
                0.00    0.00      34/214306      scm_ilength [79]
                0.00    0.00      10/540         bodycheck [174]
                                  38             scm_cons <cycle 1> [26]
                                  10             scm_cons2 <cycle 1> [44]
-----------------------------------------------
                                   2             scm_dapply <cycle 1> [147]
                                  39             scm_apply <cycle 1> [25]
[196]    0.0    0.00    0.00      41         scm_m_and <cycle 1> [196]
                0.00    0.00      41/214306      scm_ilength [79]
                                  41             scm_cons <cycle 1> [26]
-----------------------------------------------
                                   4             scm_read_options <cycle 1> [331]
                                   7             scm_debug_options <cycle 1> [319]
                0.00    0.00       1/4394        scm_print_options [165]
                0.00    0.00       1/4394        scm_eval_options_interface [155]
                0.00    0.00       1/4394        scm_evaluator_traps [156]
[197]    0.0    0.00    0.00      14         scm_options <cycle 1> [197]
                0.00    0.00       3/101785      scm_must_malloc [30]
                0.00    0.00       3/100651      scm_must_free [84]
                                 100             scm_cons <cycle 1> [26]
-----------------------------------------------
                                   1             scm_call_with_input_string <cycle 1> [355]
                0.00    0.00       2/4394        scm_init_gdbint [116]
[198]    0.0    0.00    0.00       3         scm_mkstrport <cycle 1> [198]
                0.00    0.00       3/13          scm_add_to_port_table [183]
                                   3             scm_cons <cycle 1> [26]
                                   3             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                  12             scm_apply <cycle 1> [25]
                                  19             scm_dapply <cycle 1> [147]
[199]    0.0    0.00    0.00      31         scm_m_begin <cycle 1> [199]
                0.00    0.00      31/214306      scm_ilength [79]
                                  31             scm_cons <cycle 1> [26]
-----------------------------------------------
                                   4             scm_apply <cycle 1> [25]
[200]    0.0    0.00    0.00       4         scm_m_case <cycle 1> [200]
                0.00    0.00      20/214306      scm_ilength [79]
                                   4             scm_cons <cycle 1> [26]
-----------------------------------------------
                                   7             scm_dapply <cycle 1> [147]
                                  12             scm_apply <cycle 1> [25]
[201]    0.0    0.00    0.00      19         scm_m_set <cycle 1> [201]
                0.00    0.00      19/214306      scm_ilength [79]
                                  19             scm_cons <cycle 1> [26]
-----------------------------------------------
                                   5             scm_apply <cycle 1> [25]
[202]    0.0    0.00    0.00       5         scm_m_cond <cycle 1> [202]
                0.00    0.00      18/214306      scm_ilength [79]
                                   5             scm_cons <cycle 1> [26]
-----------------------------------------------
                                   1             scm_dapply <cycle 1> [147]
                                  14             scm_apply <cycle 1> [25]
[203]    0.0    0.00    0.00      15         scm_m_or <cycle 1> [203]
                0.00    0.00      15/214306      scm_ilength [79]
                                  15             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00       4/13          scm_deval <cycle 1> [43]
                0.00    0.00       9/13          scm_ceval <cycle 1> [14]
[204]    0.0    0.00    0.00      13         scm_list_p [204]
                0.00    0.00      13/214306      scm_ilength [79]
-----------------------------------------------
                0.00    0.00       1/8           scm_gc_sweep [17]
                0.00    0.00       7/8           scm_close_port <cycle 1> [206]
[205]    0.0    0.00    0.00       8         scm_remove_from_port_table [205]
                0.00    0.00       8/100651      scm_must_free [84]
-----------------------------------------------
                                   7             scm_primitive_load <cycle 1> [189]
[206]    0.0    0.00    0.00       7         scm_close_port <cycle 1> [206]
                0.00    0.00       7/8           scm_remove_from_port_table [205]
                0.00    0.00       7/7           local_fclose [317]
                                   6             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   1             scm_for_each <cycle 1> [300]
                                  10             scm_map <cycle 1> [299]
[207]    0.0    0.00    0.00      11         scm_vector <cycle 1> [207]
                0.00    0.00      11/214306      scm_ilength [79]
                                  11             scm_make_vector <cycle 1> [125]
-----------------------------------------------
                0.00    0.00       1/1           scm_gsubr_apply <cycle 1> [33]
[208]    0.0    0.00    0.00       1         scm_make_regexp [208]
                0.00    0.00       1/101785      scm_must_malloc [30]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_socket [27]
[209]    0.0    0.00    0.00       1         scm_init_addr_buffer [209]
                0.00    0.00       1/101785      scm_must_malloc [30]
-----------------------------------------------
                                   1             scm_deval <cycle 1> [43]
                                   3             scm_primitive_load_path <cycle 1> [341]
                0.00    0.00       1/4394        scm_load_startup_files [142]
[210]    0.0    0.00    0.00       5         scm_sys_search_load_path <cycle 1> [210]
                0.00    0.00      10/214306      scm_ilength [79]
                                   5             scm_search_path <cycle 1> [190]
-----------------------------------------------
                0.00    0.00       6/6           scm_gc_sweep [17]
[211]    0.0    0.00    0.00       6         freeguards [211]
                0.00    0.00       6/100651      scm_must_free [84]
-----------------------------------------------
                                   1             scm_apply <cycle 1> [25]
[212]    0.0    0.00    0.00       1         scm_m_do <cycle 1> [212]
                0.00    0.00       4/214306      scm_ilength [79]
                0.00    0.00       1/540         bodycheck [174]
                                   4             scm_cons <cycle 1> [26]
                                   2             scm_cons2 <cycle 1> [44]
-----------------------------------------------
                0.00    0.00       1/1           scm_throw [214]
[213]    0.0    0.00    0.00       1         scm_ithrow [213]
                0.00    0.00       2/214306      scm_ilength [79]
                0.00    0.00       1/1           scm_dowinds [358]
-----------------------------------------------
                0.00    0.00       1/1           scm_gsubr_apply <cycle 1> [33]
[214]    0.0    0.00    0.00       1         scm_throw [214]
                0.00    0.00       1/1           scm_ithrow [213]
-----------------------------------------------
                0.00    0.00       1/1           scm_ceval <cycle 1> [14]
[215]    0.0    0.00    0.00       1         scm_read_char [215]
                0.00    0.00       1/123735      scm_getc [80]
-----------------------------------------------
                                   1             scm_apply <cycle 1> [25]
[216]    0.0    0.00    0.00       1         scm_m_apply <cycle 1> [216]
                0.00    0.00       1/214306      scm_ilength [79]
                                   1             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00     630/51189       scm_casei_streq [247]
                0.00    0.00   50559/51189       scm_strhash [85]
[217]    0.0    0.00    0.00   51189         scm_downcase [217]
-----------------------------------------------
                0.00    0.00   30829/30829       scm_gc_mark <cycle 2> [16]
[218]    0.0    0.00    0.00   30829         scm_markvar [218]
-----------------------------------------------
                0.00    0.00      67/19606       scm_lreadr <cycle 1> [86]
                0.00    0.00     464/19606       scm_read <cycle 1> [169]
                0.00    0.00    1114/19606       scm_lreadrecparen <cycle 1> [157]
                0.00    0.00    7374/19606       scm_read_token <cycle 1> [82]
                0.00    0.00   10587/19606       scm_lreadparen <cycle 1> [98]
[219]    0.0    0.00    0.00   19606         scm_ungetc [219]
-----------------------------------------------
                                   3             scm_software_type <cycle 1> [344]
                                  10             scm_string_to_symbol <cycle 1> [312]
                                7066             scm_lreadr <cycle 1> [86]
                0.01    0.01       9/4394        init_raprocs [122]
                0.01    0.01      14/4394        scm_add_feature [81]
                0.06    0.06      92/4394        scm_intern0 [42]
[220]    0.0    0.00    0.00    7194         scm_intern <cycle 1> [220]
                                7194             scm_intern_obarray <cycle 1> [129]
-----------------------------------------------
                0.00    0.00       1/4559        scm_handle_by_message [162]
                0.00    0.00    2094/4559        scm_ceval <cycle 1> [14]
                0.00    0.00    2464/4559        scm_deval <cycle 1> [43]
[221]    0.0    0.00    0.00    4559         scm_eq_p [221]
-----------------------------------------------
                0.00    0.00    2021/4450        scm_ceval <cycle 1> [14]
                0.00    0.00    2429/4450        scm_deval <cycle 1> [43]
[222]    0.0    0.00    0.00    4450         scm_struct_p [222]
-----------------------------------------------
                0.00    0.00    2020/4449        scm_ceval <cycle 1> [14]
                0.00    0.00    2429/4449        scm_deval <cycle 1> [43]
[223]    0.0    0.00    0.00    4449         scm_struct_vtable [223]
-----------------------------------------------
                0.00    0.00    4037/4037        scm_gc_mark <cycle 2> [16]
[224]    0.0    0.00    0.00    4037         scm_markcdr [224]
-----------------------------------------------
                0.00    0.00     818/2933        scm_hash_fn_create_handle_x <cycle 1> [166]
                0.00    0.00    2115/2933        scm_hash_fn_get_handle [148]
[225]    0.0    0.00    0.00    2933         scm_ihashq [225]
-----------------------------------------------
                                  44             scm_stand_in_scm_proc <cycle 1> [275]
                                1232             scm_deval <cycle 1> [43]
                                1376             scm_ceval <cycle 1> [14]
[226]    0.0    0.00    0.00    2652         scm_closure <cycle 1> [226]
                                2652             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00    1180/2389        scm_deval <cycle 1> [43]
                0.00    0.00    1209/2389        scm_ceval <cycle 1> [14]
[227]    0.0    0.00    0.00    2389         scm_variable_p [227]
-----------------------------------------------
                0.00    0.00     242/1516        scm_deval <cycle 1> [43]
                0.00    0.00    1274/1516        scm_ceval <cycle 1> [14]
[228]    0.0    0.00    0.00    1516         scm_unmemocar [228]
-----------------------------------------------
                0.00    0.00      23/1487        scm_ceval <cycle 1> [14]
                0.00    0.00      24/1487        scm_deval <cycle 1> [43]
                0.00    0.00     554/1487        scm_dapply <cycle 1> [147]
                0.00    0.00     886/1487        scm_apply <cycle 1> [25]
[229]    0.0    0.00    0.00    1487         scm_badargsp [229]
-----------------------------------------------
                                1246             scm_gc_mark <cycle 2> [16]
[230]    0.0    0.00    0.00    1246         marksrcprops <cycle 2> [230]
                                2492             scm_gc_mark <cycle 2> [16]
-----------------------------------------------
                                   3             scm_substring <cycle 1> [345]
                                   4             scm_search_path <cycle 1> [190]
                                   7             scm_primitive_load <cycle 1> [189]
                                  40             scm_makfrom0str <cycle 1> [277]
                                 115             scm_lreadr <cycle 1> [86]
                                 897             scm_intern_obarray_soft <cycle 1> [72]
                0.00    0.00       3/4394        scm_makfromstrs [134]
[231]    0.0    0.00    0.00    1069         scm_makfromstr <cycle 1> [231]
                                1069             scm_makstr <cycle 1> [117]
-----------------------------------------------
                                  21             scm_equal_p <cycle 1> [232]
                                   9             scm_delete_x <cycle 1> [320]
                                  12             scm_sloppy_member <cycle 1> [315]
                                 946             scm_assoc <cycle 1> [274]
[232]    0.0    0.00    0.00     967+21      scm_equal_p <cycle 1> [232]
                                1000             scm_async_click <cycle 1> [103]
                                  21             scm_equal_p <cycle 1> [232]
-----------------------------------------------
                0.00    0.00     173/841         scm_ceval <cycle 1> [14]
                0.00    0.00     668/841         scm_deval <cycle 1> [43]
[233]    0.0    0.00    0.00     841         scm_pair_p [233]
-----------------------------------------------
                0.00    0.00     187/567         scm_deval <cycle 1> [43]
                0.00    0.00     380/567         scm_ceval <cycle 1> [14]
[234]    0.0    0.00    0.00     567         scm_not [234]
-----------------------------------------------
                                   5             scm_start_stack <cycle 1> [328]
                                  34             scm_eval <cycle 1> [282]
                                 465             scm_eval_x <cycle 1> [237]
[235]    0.0    0.00    0.00     504         scm_eval_3 <cycle 1> [235]
                                 453             scm_ceval <cycle 1> [14]
                                  51             scm_deval <cycle 1> [43]
                                  34             scm_copy_tree <cycle 1> [270]
-----------------------------------------------
                                  34             scm_eval <cycle 1> [282]
                                 465             scm_eval_x <cycle 1> [237]
[236]    0.0    0.00    0.00     499         scm_top_level_env <cycle 1> [236]
                                 164             scm_cons <cycle 1> [26]
-----------------------------------------------
                                 464             load <cycle 1> [316]
                0.00    0.00       1/4394        scm_shell [107]
[237]    0.0    0.00    0.00     465         scm_eval_x <cycle 1> [237]
                                 465             scm_top_level_env <cycle 1> [236]
                                 465             scm_eval_3 <cycle 1> [235]
-----------------------------------------------
                                  19             scm_lreadr <cycle 1> [86]
                                 438             scm_lreadrecparen <cycle 1> [157]
[238]    0.0    0.00    0.00     457         scm_make_srcprops <cycle 1> [238]
                                 443             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00     451/451         scm_gc_sweep [17]
[239]    0.0    0.00    0.00     451         freesrcprops [239]
-----------------------------------------------
                                 339             scm_hashq_set_x <cycle 1> [241]
[240]    0.0    0.00    0.00     339         scm_hash_fn_set_x <cycle 1> [240]
                                 339             scm_hash_fn_create_handle_x <cycle 1> [166]
-----------------------------------------------
                                  65             scm_deval <cycle 1> [43]
                                 274             scm_ceval <cycle 1> [14]
[241]    0.0    0.00    0.00     339         scm_hashq_set_x <cycle 1> [241]
                                 339             scm_hash_fn_set_x <cycle 1> [240]
-----------------------------------------------
                                 324             scm_istring2number <cycle 1> [132]
[242]    0.0    0.00    0.00     324         scm_istr2int <cycle 1> [242]
                0.00    0.00     317/317         scm_small_istr2int [243]
                0.00    0.00       1/1           scm_big2inum [354]
                                   7             scm_mkbig <cycle 1> [176]
-----------------------------------------------
                0.00    0.00     317/317         scm_istr2int <cycle 1> [242]
[243]    0.0    0.00    0.00     317         scm_small_istr2int [243]
-----------------------------------------------
                                 104             scm_gc_mark <cycle 2> [16]
                0.13    0.00     208/2080        scm_igc [12]
[244]    0.0    0.00    0.00     312         scm_mark_locations <cycle 2> [244]
                               17616             scm_gc_mark <cycle 2> [16]
-----------------------------------------------
                                   9             scm_make_undefined_variable <cycle 1> [314]
                                  31             scm_make_variable <cycle 1> [284]
                                 268             scm_builtin_variable <cycle 1> [249]
[245]    0.0    0.00    0.00     308         make_vcell_variable <cycle 1> [245]
                                  38             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00     139/283         scm_ceval <cycle 1> [14]
                0.00    0.00     144/283         scm_deval <cycle 1> [43]
[246]    0.0    0.00    0.00     283         scm_null_p [246]
-----------------------------------------------
                0.00    0.00     275/275         scm_lreadr <cycle 1> [86]
[247]    0.0    0.00    0.00     275         scm_casei_streq [247]
                0.00    0.00     630/51189       scm_downcase [217]
-----------------------------------------------
                0.00    0.00       1/271         scm_init_stime [62]
                0.00    0.00       5/271         scm_init_scmsigs [57]
                0.00    0.00       6/271         scm_init_regex_posix [70]
                0.00    0.00      19/271         scm_init_filesys [23]
                0.00    0.00      32/271         scm_init_tag [41]
                0.00    0.00     208/271         scm_get_internal_run_time [255]
[248]    0.0    0.00    0.00     271         scm_long2num [248]
-----------------------------------------------
                                  44             scm_deval <cycle 1> [43]
                                 224             scm_ceval <cycle 1> [14]
[249]    0.0    0.00    0.00     268         scm_builtin_variable <cycle 1> [249]
                                 268             scm_sym2vcell <cycle 1> [93]
                                 268             scm_intern_symbol <cycle 1> [170]
                                 268             scm_sym2ovcell <cycle 1> [250]
                                 268             make_vcell_variable <cycle 1> [245]
                                 258             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                 268             scm_builtin_variable <cycle 1> [249]
[250]    0.0    0.00    0.00     268         scm_sym2ovcell <cycle 1> [250]
                                 268             scm_sym2ovcell_soft <cycle 1> [158]
-----------------------------------------------
                                  44             scm_deval <cycle 1> [43]
                                 223             scm_ceval <cycle 1> [14]
[251]    0.0    0.00    0.00     267         scm_symbol_interned_p <cycle 1> [251]
                                 397             scm_sym2ovcell_soft <cycle 1> [158]
-----------------------------------------------
                0.00    0.00     111/249         scm_deval <cycle 1> [43]
                0.00    0.00     138/249         scm_ceval <cycle 1> [14]
[252]    0.0    0.00    0.00     249         scm_variable_bound_p [252]
-----------------------------------------------
                0.00    0.00       1/209         scm_init_stime [62]
                0.00    0.00     208/209         scm_get_internal_run_time [255]
[253]    0.0    0.00    0.00     209         mytime [253]
-----------------------------------------------
                0.00    0.00     208/208         scm_gc_mark <cycle 2> [16]
[254]    0.0    0.00    0.00     208         mark_async [254]
-----------------------------------------------
                0.00    0.00     104/208         scm_gc_start [260]
                0.00    0.00     104/208         scm_gc_end [259]
[255]    0.0    0.00    0.00     208         scm_get_internal_run_time [255]
                0.00    0.00     208/209         mytime [253]
                0.00    0.00     208/271         scm_long2num [248]
-----------------------------------------------
                0.00    0.00     208/208         scm_gc_mark <cycle 2> [16]
[256]    0.0    0.00    0.00     208         scm_markstream [256]
-----------------------------------------------
                                3861             iqq <cycle 1> [257]
                                 115             scm_m_quasiquote <cycle 1> [185]
[257]    0.0    0.00    0.00     115+3861    iqq <cycle 1> [257]
                                1910             scm_cons <cycle 1> [26]
                                 343             scm_eval_car <cycle 1> [179]
                                  41             scm_cons2 <cycle 1> [44]
                                  41             scm_append <cycle 1> [271]
                                3861             iqq <cycle 1> [257]
-----------------------------------------------
                                 104             scm_gc_mark <cycle 2> [16]
[258]    0.0    0.00    0.00     104         mark_root <cycle 2> [258]
                                1560             scm_gc_mark <cycle 2> [16]
-----------------------------------------------
                0.00    0.00     104/104         scm_igc [12]
[259]    0.0    0.00    0.00     104         scm_gc_end [259]
                0.00    0.00     104/208         scm_get_internal_run_time [255]
                0.00    0.00     104/104         scm_system_async_mark [262]
-----------------------------------------------
                0.00    0.00     104/104         scm_igc [12]
[260]    0.0    0.00    0.00     104         scm_gc_start [260]
                0.00    0.00     104/208         scm_get_internal_run_time [255]
-----------------------------------------------
                0.00    0.00     104/104         scm_igc [12]
[261]    0.0    0.00    0.00     104         scm_stack_size [261]
-----------------------------------------------
                0.00    0.00     104/104         scm_gc_end [259]
[262]    0.0    0.00    0.00     104         scm_system_async_mark [262]
-----------------------------------------------
                                   1             scm_acons <cycle 1> [29]
                                   4             scm_cons2 <cycle 1> [44]
                                  93             scm_cons <cycle 1> [26]
[263]    0.0    0.00    0.00      98         scm_gc_for_newcell <cycle 1> [263]
                                  98             scm_gc_for_alloc <cycle 1> [13]
-----------------------------------------------
                0.00    0.00      28/96          scm_ceval <cycle 1> [14]
                0.00    0.00      68/96          scm_deval <cycle 1> [43]
[264]    0.0    0.00    0.00      96         scm_variable_ref [264]
-----------------------------------------------
                0.00    0.00      93/93          scm_async_click <cycle 1> [103]
[265]    0.0    0.00    0.00      93         scm_asyncs_pending [265]
-----------------------------------------------
                                  93             scm_async_click <cycle 1> [103]
[266]    0.0    0.00    0.00      93         scm_run_asyncs <cycle 1> [266]
                                  93             scm_apply <cycle 1> [25]
-----------------------------------------------
                0.00    0.00       1/93          scm_dapply <cycle 1> [147]
                0.00    0.00      92/93          scm_apply <cycle 1> [25]
[267]    0.0    0.00    0.00      93         scm_sys_gc_async_thunk [267]
-----------------------------------------------
                                  92             scm_istring2number <cycle 1> [132]
[268]    0.0    0.00    0.00      92         scm_istr2flo <cycle 1> [268]
                                  13             scm_makdbl <cycle 1> [184]
-----------------------------------------------
                                  78             scm_stat2scm <cycle 1> [324]
                0.00    0.00       4/4394        scm_init_net_db [51]
[269]    0.0    0.00    0.00      82         scm_ulong2num <cycle 1> [269]
                                  21             scm_ulong2big <cycle 1> [294]
-----------------------------------------------
                                4230             scm_copy_tree <cycle 1> [270]
                                  22             scm_ceval <cycle 1> [14]
                                  22             scm_deval <cycle 1> [43]
                                  34             scm_eval_3 <cycle 1> [235]
[270]    0.0    0.00    0.00      78+4230    scm_copy_tree <cycle 1> [270]
                                4230             scm_cons <cycle 1> [26]
                                4230             scm_copy_tree <cycle 1> [270]
-----------------------------------------------
                                   1             scm_apply <cycle 1> [25]
                                  12             scm_ceval <cycle 1> [14]
                                  13             scm_deval <cycle 1> [43]
                                  41             iqq <cycle 1> [257]
[271]    0.0    0.00    0.00      67         scm_append <cycle 1> [271]
                                 138             scm_cons <cycle 1> [26]
-----------------------------------------------
                                   3             scm_apply <cycle 1> [25]
                                   4             scm_dapply <cycle 1> [147]
                                   5             scm_make_vtable_vtable <cycle 1> [191]
                                  17             scm_ceval <cycle 1> [14]
                                  34             scm_deval <cycle 1> [43]
[272]    0.0    0.00    0.00      63         scm_string_append <cycle 1> [272]
                                  63             scm_makstr <cycle 1> [117]
-----------------------------------------------
                                   5             scm_primitive_load <cycle 1> [189]
                                   5             scm_make_vtable_vtable <cycle 1> [191]
                                  44             scm_stand_in_scm_proc <cycle 1> [275]
                0.00    0.00       1/4394        scm_init_load_path [141]
                0.00    0.00       1/4394        scm_init_load [38]
[273]    0.0    0.00    0.00      56         scm_listify <cycle 1> [273]
                                 108             scm_cons <cycle 1> [26]
-----------------------------------------------
                                  44             scm_stand_in_scm_proc <cycle 1> [275]
[274]    0.0    0.00    0.00      44         scm_assoc <cycle 1> [274]
                                 946             scm_equal_p <cycle 1> [232]
-----------------------------------------------
                                  44             scm_set_procedure_property_x <cycle 1> [146]
[275]    0.0    0.00    0.00      44         scm_stand_in_scm_proc <cycle 1> [275]
                                  88             scm_cons <cycle 1> [26]
                                  44             scm_assoc <cycle 1> [274]
                                  44             scm_listify <cycle 1> [273]
                                  44             scm_closure <cycle 1> [226]
-----------------------------------------------
                0.00    0.00      14/42          scm_ceval <cycle 1> [14]
                0.00    0.00      28/42          scm_deval <cycle 1> [43]
[276]    0.0    0.00    0.00      42         scm_string_ref [276]
-----------------------------------------------
                                   2             scm_libguile_config_stamp <cycle 1> [346]
                0.00    0.00       1/4394        scm_init_print [52]
                0.00    0.00       1/4394        scm_compile_shell_switches [110]
                0.00    0.00       1/4394        scm_init_symbols [49]
                0.00    0.00       1/4394        scm_init_stacks [48]
                0.00    0.00       1/4394        scm_set_program_arguments [124]
                0.00    0.00       1/4394        scm_init_filesys [23]
                0.00    0.00       2/4394        scm_load_startup_files [142]
                0.00    0.00       2/4394        scm_init_load [38]
                0.00    0.00       3/4394        scm_init_load_path [141]
                0.00    0.00       3/4394        scm_init_objects [74]
                0.00    0.00       3/4394        scm_stdio_to_port [120]
                0.01    0.01      19/4394        init_build_info [56]
[277]    0.0    0.00    0.00      40         scm_makfrom0str <cycle 1> [277]
                                  40             scm_makfromstr <cycle 1> [231]
-----------------------------------------------
                0.00    0.00      17/40          scm_deval <cycle 1> [43]
                0.00    0.00      23/40          scm_ceval <cycle 1> [14]
[278]    0.0    0.00    0.00      40         scm_struct_set_x [278]
-----------------------------------------------
                0.00    0.00      13/39          scm_ceval <cycle 1> [14]
                0.00    0.00      26/39          scm_deval <cycle 1> [43]
[279]    0.0    0.00    0.00      39         scm_string_length [279]
-----------------------------------------------
                0.00    0.00      12/36          scm_ceval <cycle 1> [14]
                0.00    0.00      24/36          scm_deval <cycle 1> [43]
[280]    0.0    0.00    0.00      36         scm_difference [280]
-----------------------------------------------
                0.00    0.00      12/36          scm_ceval <cycle 1> [14]
                0.00    0.00      24/36          scm_deval <cycle 1> [43]
[281]    0.0    0.00    0.00      36         scm_zero_p [281]
-----------------------------------------------
                                  16             scm_deval <cycle 1> [43]
                                  18             scm_ceval <cycle 1> [14]
[282]    0.0    0.00    0.00      34         scm_eval <cycle 1> [282]
                                  34             scm_top_level_env <cycle 1> [236]
                                  34             scm_eval_3 <cycle 1> [235]
-----------------------------------------------
                0.00    0.00      16/33          scm_make_synt [46]
                0.00    0.00      17/33          scm_ceval <cycle 1> [14]
[283]    0.0    0.00    0.00      33         scm_makmmacro [283]
-----------------------------------------------
                                  11             scm_ceval <cycle 1> [14]
                                  20             scm_deval <cycle 1> [43]
[284]    0.0    0.00    0.00      31         scm_make_variable <cycle 1> [284]
                                  31             scm_async_click <cycle 1> [103]
                                  31             make_vcell_variable <cycle 1> [245]
-----------------------------------------------
                                  12             scm_lreadr <cycle 1> [86]
                                  17             scm_read_token <cycle 1> [82]
[285]    0.0    0.00    0.00      29         scm_grow_tok_buf <cycle 1> [285]
                                  29             scm_vector_set_length_x <cycle 1> [287]
-----------------------------------------------
                0.00    0.00      29/29          scm_vector_set_length_x <cycle 1> [287]
[286]    0.0    0.00    0.00      29         scm_must_realloc [286]
-----------------------------------------------
                                  29             scm_grow_tok_buf <cycle 1> [285]
[287]    0.0    0.00    0.00      29         scm_vector_set_length_x <cycle 1> [287]
                0.00    0.00      29/29          scm_must_realloc [286]
                                  29             scm_async_click <cycle 1> [103]
-----------------------------------------------
                0.00    0.00      25/25          scm_memq [136]
[288]    0.0    0.00    0.00      25         scm_sloppy_memq [288]
-----------------------------------------------
                0.00    0.00       8/24          scm_ceval <cycle 1> [14]
                0.00    0.00      16/24          scm_deval <cycle 1> [43]
[289]    0.0    0.00    0.00      24         scm_access [289]
-----------------------------------------------
                0.00    0.00       5/23          scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00      18/23          scm_make_struct <cycle 1> [180]
[290]    0.0    0.00    0.00      23         init_struct [290]
-----------------------------------------------
                                  22             scm_set_source_properties_x <cycle 1> [292]
[291]    0.0    0.00    0.00      22         scm_hashq_create_handle_x <cycle 1> [291]
                                  22             scm_hash_fn_create_handle_x <cycle 1> [166]
-----------------------------------------------
                                  22             scm_deval <cycle 1> [43]
[292]    0.0    0.00    0.00      22         scm_set_source_properties_x <cycle 1> [292]
                                  22             scm_hashq_create_handle_x <cycle 1> [291]
-----------------------------------------------
                                  22             scm_source_properties <cycle 1> [182]
[293]    0.0    0.00    0.00      22         scm_srcprops_to_plist <cycle 1> [293]
                                  88             scm_acons <cycle 1> [29]
-----------------------------------------------
                                  21             scm_ulong2num <cycle 1> [269]
[294]    0.0    0.00    0.00      21         scm_ulong2big <cycle 1> [294]
                                  21             scm_mkbig <cycle 1> [176]
-----------------------------------------------
                0.00    0.00       6/20          scm_deval <cycle 1> [43]
                0.00    0.00      14/20          scm_ceval <cycle 1> [14]
[295]    0.0    0.00    0.00      20         scm_list [295]
-----------------------------------------------
                                  20             scm_ceval <cycle 1> [14]
[296]    0.0    0.00    0.00      20         scm_read_hash_extend <cycle 1> [296]
                                  40             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00      18/18          scm_make_struct <cycle 1> [180]
[297]    0.0    0.00    0.00      18         scm_struct_vtable_p [297]
-----------------------------------------------
                0.00    0.00       4/17          scm_deval <cycle 1> [43]
                0.00    0.00      13/17          scm_ceval <cycle 1> [14]
[298]    0.0    0.00    0.00      17         scm_list_ref [298]
-----------------------------------------------
                                   2             scm_deval <cycle 1> [43]
                                  15             scm_ceval <cycle 1> [14]
[299]    0.0    0.00    0.00      17         scm_map <cycle 1> [299]
                                  92             scm_cons <cycle 1> [26]
                                  42             scm_apply <cycle 1> [25]
                                  10             scm_vector <cycle 1> [207]
-----------------------------------------------
                                   4             scm_ceval <cycle 1> [14]
                                  10             scm_deval <cycle 1> [43]
[300]    0.0    0.00    0.00      14         scm_for_each <cycle 1> [300]
                                  26             scm_apply <cycle 1> [25]
                                  15             scm_cons <cycle 1> [26]
                                   1             scm_vector <cycle 1> [207]
-----------------------------------------------
                0.00    0.00      14/14          scm_internal_dynamic_wind <cycle 1> [187]
[301]    0.0    0.00    0.00      14         swap_port [301]
-----------------------------------------------
                                   3             scm_ceval <cycle 1> [14]
                                  10             scm_deval <cycle 1> [43]
[302]    0.0    0.00    0.00      13         scm_dynamic_wind <cycle 1> [302]
                                  39             scm_apply <cycle 1> [25]
                                  13             scm_acons <cycle 1> [29]
-----------------------------------------------
                0.00    0.00       4/13          scm_deval <cycle 1> [43]
                0.00    0.00       9/13          scm_ceval <cycle 1> [14]
[303]    0.0    0.00    0.00      13         scm_integer_p [303]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
                                   5             scm_make_vtable_vtable <cycle 1> [191]
                0.00    0.00       2/4394        scm_init_print [52]
                0.00    0.00       2/4394        scm_init_stacks [48]
                0.00    0.00       3/4394        scm_init_objects [74]
[304]    0.0    0.00    0.00      13         scm_make_struct_layout <cycle 1> [304]
                0.00    0.00      13/13          scm_return_first [305]
                                  13             scm_intern_obarray <cycle 1> [129]
-----------------------------------------------
                0.00    0.00      13/13          scm_make_struct_layout <cycle 1> [304]
[305]    0.0    0.00    0.00      13         scm_return_first [305]
-----------------------------------------------
                0.00    0.00      11/11          scm_lfwrite [309]
[306]    0.0    0.00    0.00      11         local_ffwrite [306]
-----------------------------------------------
                                  11             scm_deval <cycle 1> [43]
[307]    0.0    0.00    0.00      11         scm_display <cycle 1> [307]
                                  11             scm_prin1 <cycle 1> [310]
-----------------------------------------------
                0.00    0.00      11/11          scm_prin1 <cycle 1> [310]
[308]    0.0    0.00    0.00      11         scm_iprin1 [308]
                0.00    0.00      11/11          scm_lfwrite [309]
-----------------------------------------------
                0.00    0.00      11/11          scm_iprin1 [308]
[309]    0.0    0.00    0.00      11         scm_lfwrite [309]
                0.00    0.00      11/11          local_ffwrite [306]
-----------------------------------------------
                                  11             scm_display <cycle 1> [307]
[310]    0.0    0.00    0.00      11         scm_prin1 <cycle 1> [310]
                0.00    0.00      11/11          scm_iprin1 [308]
                                  22             scm_async_click <cycle 1> [103]
                                   1             make_print_state <cycle 1> [349]
                                   1             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00       3/10          scm_stdio_to_port [120]
                0.00    0.00       7/10          scm_open_file <cycle 1> [188]
[311]    0.0    0.00    0.00      10         scm_mode_bits [311]
-----------------------------------------------
                                   4             scm_ceval <cycle 1> [14]
                                   6             scm_deval <cycle 1> [43]
[312]    0.0    0.00    0.00      10         scm_string_to_symbol <cycle 1> [312]
                                  10             scm_intern <cycle 1> [220]
-----------------------------------------------
                0.00    0.00       9/9           scm_ceval <cycle 1> [14]
[313]    0.0    0.00    0.00       9         scm_eqv_p [313]
-----------------------------------------------
                                   2             scm_deval <cycle 1> [43]
                                   7             scm_ceval <cycle 1> [14]
[314]    0.0    0.00    0.00       9         scm_make_undefined_variable <cycle 1> [314]
                                   9             make_vcell_variable <cycle 1> [245]
                                   7             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   9             scm_member <cycle 1> [151]
[315]    0.0    0.00    0.00       9         scm_sloppy_member <cycle 1> [315]
                                  12             scm_equal_p <cycle 1> [232]
-----------------------------------------------
                                   7             scm_internal_dynamic_wind <cycle 1> [187]
[316]    0.0    0.00    0.00       7         load <cycle 1> [316]
                                 471             scm_read <cycle 1> [169]
                                 464             scm_eval_x <cycle 1> [237]
-----------------------------------------------
                0.00    0.00       7/7           scm_close_port <cycle 1> [206]
[317]    0.0    0.00    0.00       7         local_fclose [317]
-----------------------------------------------
                0.00    0.00       2/7           scm_ceval <cycle 1> [14]
                0.00    0.00       5/7           scm_deval <cycle 1> [43]
[318]    0.0    0.00    0.00       7         scm_current_load_port [318]
-----------------------------------------------
                                   3             scm_ceval <cycle 1> [14]
                                   3             scm_deval <cycle 1> [43]
                0.00    0.00       1/4394        scm_init_opts [28]
[319]    0.0    0.00    0.00       7         scm_debug_options <cycle 1> [319]
                                   7             scm_options <cycle 1> [197]
                                   4             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
                                   5             scm_deval <cycle 1> [43]
[320]    0.0    0.00    0.00       6         scm_delete_x <cycle 1> [320]
                                   9             scm_equal_p <cycle 1> [232]
-----------------------------------------------
                                   2             scm_ceval <cycle 1> [14]
                                   4             scm_deval <cycle 1> [43]
[321]    0.0    0.00    0.00       6         scm_reverse <cycle 1> [321]
                                   9             scm_cons <cycle 1> [26]
-----------------------------------------------
                0.00    0.00       6/6           scm_deval <cycle 1> [43]
[322]    0.0    0.00    0.00       6         scm_set_current_output_port [322]
-----------------------------------------------
                                   2             scm_ceval <cycle 1> [14]
                                   4             scm_deval <cycle 1> [43]
[323]    0.0    0.00    0.00       6         scm_stat <cycle 1> [323]
                                   6             scm_async_click <cycle 1> [103]
                                   6             scm_stat2scm <cycle 1> [324]
-----------------------------------------------
                                   6             scm_stat <cycle 1> [323]
[324]    0.0    0.00    0.00       6         scm_stat2scm <cycle 1> [324]
                                  78             scm_ulong2num <cycle 1> [269]
                                   6             scm_make_vector <cycle 1> [125]
-----------------------------------------------
                0.00    0.00       2/6           scm_ceval <cycle 1> [14]
                0.00    0.00       4/6           scm_deval <cycle 1> [43]
[325]    0.0    0.00    0.00       6         scm_vector_ref [325]
-----------------------------------------------
                                   1             scm_apply <cycle 1> [25]
                                   4             scm_dapply <cycle 1> [147]
[326]    0.0    0.00    0.00       5         scm_m_start_stack <cycle 1> [326]
                                   5             scm_eval_car <cycle 1> [179]
                                   5             scm_start_stack <cycle 1> [328]
-----------------------------------------------
                                   2             scm_ceval <cycle 1> [14]
                0.00    0.00       1/4394        scm_init_objprop [99]
                0.00    0.00       1/4394        scm_init_srcprop [69]
                0.00    0.00       1/4394        scm_init_storage [96]
[327]    0.0    0.00    0.00       5         scm_make_weak_key_hash_table <cycle 1> [327]
                                   8             scm_async_click <cycle 1> [103]
                                   5             scm_make_weak_vector <cycle 1> [192]
-----------------------------------------------
                                   5             scm_m_start_stack <cycle 1> [326]
[328]    0.0    0.00    0.00       5         scm_start_stack <cycle 1> [328]
                                   5             scm_eval_3 <cycle 1> [235]
-----------------------------------------------
                0.00    0.00       4/4           scm_deval <cycle 1> [43]
[329]    0.0    0.00    0.00       4         scm_delq_x [329]
-----------------------------------------------
                0.00    0.00       4/4           scm_make_synt [46]
[330]    0.0    0.00    0.00       4         scm_makacro [330]
-----------------------------------------------
                                   3             scm_deval <cycle 1> [43]
                0.00    0.00       1/4394        scm_init_opts [28]
[331]    0.0    0.00    0.00       4         scm_read_options <cycle 1> [331]
                                   4             scm_options <cycle 1> [197]
-----------------------------------------------
                0.00    0.00       3/3           scm_fflush [336]
[332]    0.0    0.00    0.00       3         local_fflush [332]
-----------------------------------------------
                0.00    0.00       3/3           scm_putc [343]
[333]    0.0    0.00    0.00       3         local_fputc [333]
-----------------------------------------------
                0.00    0.00       1/3           scm_ceval <cycle 1> [14]
                0.00    0.00       2/3           scm_deval <cycle 1> [43]
[334]    0.0    0.00    0.00       3         scm_char_eq_p [334]
-----------------------------------------------
                0.00    0.00       3/3           scm_deval <cycle 1> [43]
[335]    0.0    0.00    0.00       3         scm_current_error_port [335]
-----------------------------------------------
                0.00    0.00       3/3           scm_newline [339]
[336]    0.0    0.00    0.00       3         scm_fflush [336]
                0.00    0.00       3/3           local_fflush [332]
-----------------------------------------------
                0.00    0.00       1/3           scm_ceval <cycle 1> [14]
                0.00    0.00       2/3           scm_deval <cycle 1> [43]
[337]    0.0    0.00    0.00       3         scm_keyword_p [337]
-----------------------------------------------
                0.00    0.00       3/3           scm_ceval <cycle 1> [14]
[338]    0.0    0.00    0.00       3         scm_makmacro [338]
-----------------------------------------------
                0.00    0.00       3/3           scm_deval <cycle 1> [43]
[339]    0.0    0.00    0.00       3         scm_newline [339]
                0.00    0.00       3/3           scm_putc [343]
                0.00    0.00       3/3           scm_fflush [336]
-----------------------------------------------
                0.00    0.00       1/3           scm_ceval <cycle 1> [14]
                0.00    0.00       2/3           scm_deval <cycle 1> [43]
[340]    0.0    0.00    0.00       3         scm_port_filename [340]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
                                   1             scm_deval <cycle 1> [43]
                0.00    0.00       1/4394        scm_load_startup_files [142]
[341]    0.0    0.00    0.00       3         scm_primitive_load_path <cycle 1> [341]
                                   3             scm_sys_search_load_path <cycle 1> [210]
                                   3             scm_primitive_load <cycle 1> [189]
-----------------------------------------------
                0.00    0.00       3/3           scm_deval <cycle 1> [43]
[342]    0.0    0.00    0.00       3         scm_program_arguments [342]
-----------------------------------------------
                0.00    0.00       3/3           scm_newline [339]
[343]    0.0    0.00    0.00       3         scm_putc [343]
                0.00    0.00       3/3           local_fputc [333]
-----------------------------------------------
                                   3             scm_ceval <cycle 1> [14]
[344]    0.0    0.00    0.00       3         scm_software_type <cycle 1> [344]
                                   3             scm_intern <cycle 1> [220]
-----------------------------------------------
                                   3             scm_gsubr_apply <cycle 1> [33]
[345]    0.0    0.00    0.00       3         scm_substring <cycle 1> [345]
                                   3             scm_makfromstr <cycle 1> [231]
-----------------------------------------------
                                   2             scm_deval <cycle 1> [43]
[346]    0.0    0.00    0.00       2         scm_libguile_config_stamp <cycle 1> [346]
                                   2             scm_makfrom0str <cycle 1> [277]
-----------------------------------------------
                0.00    0.00       1/1           scm_gc_sweep [17]
[347]    0.0    0.00    0.00       1         free_var [347]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_storage [96]
[348]    0.0    0.00    0.00       1         init_heap_seg [348]
-----------------------------------------------
                                   1             scm_prin1 <cycle 1> [310]
[349]    0.0    0.00    0.00       1         make_print_state <cycle 1> [349]
                                   1             scm_make_struct <cycle 1> [180]
                                   1             scm_make_vector <cycle 1> [125]
-----------------------------------------------
                0.00    0.00       1/1           scm_make_fluid [163]
[350]    0.0    0.00    0.00       1         next_fluid_num [350]
-----------------------------------------------
                0.00    0.00       1/1           scm_gc_sweep [17]
[351]    0.0    0.00    0.00       1         noop0 [351]
-----------------------------------------------
                0.00    0.00       1/1           start_stack [137]
[352]    0.0    0.00    0.00       1         restart_stack [352]
-----------------------------------------------
                                   1             scm_append_x [353]
                0.00    0.00       1/1           scm_deval <cycle 1> [43]
[353]    0.0    0.00    0.00       1+1       scm_append_x [353]
                0.00    0.00       1/1           scm_last_pair [364]
                                   1             scm_append_x [353]
-----------------------------------------------
                0.00    0.00       1/1           scm_istr2int <cycle 1> [242]
[354]    0.0    0.00    0.00       1         scm_big2inum [354]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
[355]    0.0    0.00    0.00       1         scm_call_with_input_string <cycle 1> [355]
                                   1             scm_mkstrport <cycle 1> [198]
                                   1             scm_apply <cycle 1> [25]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
[356]    0.0    0.00    0.00       1         scm_clear_registered_modules <cycle 1> [356]
                                   1             scm_async_click <cycle 1> [103]
-----------------------------------------------
                                   1             scm_ceval <cycle 1> [14]
[357]    0.0    0.00    0.00       1         scm_definedp <cycle 1> [357]
                                   1             scm_sym2vcell <cycle 1> [93]
-----------------------------------------------
                0.00    0.00       1/1           scm_ithrow [213]
[358]    0.0    0.00    0.00       1         scm_dowinds [358]
-----------------------------------------------
                0.00    0.00       1/1           scm_handle_by_message [162]
[359]    0.0    0.00    0.00       1         scm_exit_status [359]
-----------------------------------------------
                0.00    0.00       1/1           scm_gc_sweep [17]
[360]    0.0    0.00    0.00       1         scm_free0 [360]
-----------------------------------------------
                0.00    0.00       1/1           scm_shell [107]
[361]    0.0    0.00    0.00       1         scm_get_meta_args [361]
                0.00    0.00       1/1           script_meta_arg_P [372]
-----------------------------------------------
                0.00    0.00       1/1           scm_boot_guile_1 [3]
[362]    0.0    0.00    0.00       1         scm_init_continuations [362]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_load_path [141]
[363]    0.0    0.00    0.00       1         scm_internal_parse_path [363]
-----------------------------------------------
                0.00    0.00       1/1           scm_append_x [353]
[364]    0.0    0.00    0.00       1         scm_last_pair [364]
-----------------------------------------------
                0.00    0.00       1/1           scm_ceval <cycle 1> [14]
[365]    0.0    0.00    0.00       1         scm_registered_modules [365]
-----------------------------------------------
                0.00    0.00       1/1           scm_gc_sweep [17]
[366]    0.0    0.00    0.00       1         scm_revealed_count [366]
-----------------------------------------------
                0.00    0.00       1/1           scm_compile_shell_switches [110]
[367]    0.0    0.00    0.00       1         scm_reverse_x [367]
-----------------------------------------------
                0.00    0.00       1/1           scm_stdio_to_port [120]
[368]    0.0    0.00    0.00       1         scm_setbuf0 [368]
-----------------------------------------------
                0.00    0.00       1/1           scm_deval <cycle 1> [43]
[369]    0.0    0.00    0.00       1         scm_string_equal_p [369]
-----------------------------------------------
                0.00    0.00       1/1           scm_boot_guile_1 [3]
[370]    0.0    0.00    0.00       1         scm_tables_prehistory [370]
-----------------------------------------------
                0.00    0.00       1/1           scm_ceval <cycle 1> [14]
[371]    0.0    0.00    0.00       1         scm_variable_set_x [371]
-----------------------------------------------
                0.00    0.00       1/1           scm_get_meta_args [361]
[372]    0.0    0.00    0.00       1         script_meta_arg_P [372]
-----------------------------------------------
                0.00    0.00       1/1           scm_getc [80]
[373]    0.0    0.00    0.00       1         stgetc [373]
-----------------------------------------------
                0.00    0.00       1/1           scm_init_dynamic_linking [77]
[374]    0.0    0.00    0.00       1         sysdep_dynl_init [374]
-----------------------------------------------

 This table describes the call tree of the program, and was sorted by
 the total amount of time spent in each function and its children.

 Each entry in this table consists of several lines.  The line with the
 index number at the left hand margin lists the current function.
 The lines above it list the functions that called this function,
 and the lines below it list the functions this one called.
 This line lists:
     index	A unique number given to each element of the table.
		Index numbers are sorted numerically.
		The index number is printed next to every function name so
		it is easier to look up where the function in the table.

     % time	This is the percentage of the `total' time that was spent
		in this function and its children.  Note that due to
		different viewpoints, functions excluded by options, etc,
		these numbers will NOT add up to 100%.

     self	This is the total amount of time spent in this function.

     children	This is the total amount of time propagated into this
		function by its children.

     called	This is the number of times the function was called.
		If the function called itself recursively, the number
		only includes non-recursive calls, and is followed by
		a `+' and the number of recursive calls.

     name	The name of the current function.  The index number is
		printed after it.  If the function is a member of a
		cycle, the cycle number is printed between the
		function's name and the index number.


 For the function's parents, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the function into this parent.

     children	This is the amount of time that was propagated from
		the function's children into this parent.

     called	This is the number of times this parent called the
		function `/' the total number of times the function
		was called.  Recursive calls to the function are not
		included in the number after the `/'.

     name	This is the name of the parent.  The parent's index
		number is printed after it.  If the parent is a
		member of a cycle, the cycle number is printed between
		the name and the index number.

 If the parents of the function cannot be determined, the word
 `<spontaneous>' is printed in the `name' field, and all the other
 fields are blank.

 For the function's children, the fields have the following meanings:

     self	This is the amount of time that was propagated directly
		from the child into the function.

     children	This is the amount of time that was propagated from the
		child's children to the function.

     called	This is the number of times the function called
		this child `/' the total number of times the child
		was called.  Recursive calls by the child are not
		listed in the number after the `/'.

     name	This is the name of the child.  The child's index
		number is printed after it.  If the child is a
		member of a cycle, the cycle number is printed
		between the name and the index number.

 If there are any cycles (circles) in the call graph, there is an
 entry for the cycle-as-a-whole.  This entry shows who called the
 cycle (as parents) and the members of the cycle (as children.)
 The `+' recursive calls entry shows the number of function calls that
 were internal to the cycle, and the calls entry for each member shows,
 for that member, how many times it was called from other members of
 the cycle.


Index by function name

 [177] alloc_struct           [22] scm_init_eval         [277] scm_makfrom0str
 [174] bodycheck              [97] scm_init_feature      [231] scm_makfromstr
 [171] env_top_level          [23] scm_init_filesys      [134] scm_makfromstrs
 [347] free_var               [89] scm_init_fluids       [338] scm_makmacro
 [211] freeguards             [91] scm_init_fports       [283] scm_makmmacro
 [239] freesrcprops           [76] scm_init_gc           [117] scm_makstr
  [56] init_build_info       [116] scm_init_gdbint       [299] scm_map
 [348] init_heap_seg         [102] scm_init_gsubr        [244] scm_mark_locations
 [122] init_raprocs          [112] scm_init_hash         [105] scm_mark_weak_vector_spines
 [290] init_struct            [47] scm_init_hashtab      [224] scm_markcdr
 [106] inner_main             [54] scm_init_ioext        [256] scm_markstream
  [95] invoke_main_func       [35] scm_init_iprocs       [218] scm_markvar
 [257] iqq                   [108] scm_init_kw           [151] scm_member
 [316] load                   [37] scm_init_list         [136] scm_memq
 [317] local_fclose           [38] scm_init_load         [176] scm_mkbig
 [332] local_fflush          [141] scm_init_load_path    [198] scm_mkstrport
 [306] local_ffwrite         [167] scm_init_mallocs      [311] scm_mode_bits
 [333] local_fputc            [51] scm_init_net_db        [84] scm_must_free
   [1] main                   [21] scm_init_numbers       [30] scm_must_malloc
 [159] make_jmpbuf            [74] scm_init_objects      [286] scm_must_realloc
 [349] make_print_state       [99] scm_init_objprop       [34] scm_nconc2last
 [245] make_vcell_variable   [135] scm_init_options      [339] scm_newline
 [254] mark_async             [28] scm_init_opts         [161] scm_newptob
 [258] mark_root              [32] scm_init_pairs         [94] scm_newsmob
 [230] marksrcprops           [36] scm_init_ports        [234] scm_not
 (469) mcount                 [19] scm_init_posix        [246] scm_null_p
 [253] mytime                 [52] scm_init_print        [188] scm_open_file
 [350] next_fluid_num         [92] scm_init_procprop     [197] scm_options
 [351] noop0                 [113] scm_init_procs        [233] scm_pair_p
 [352] restart_stack          [68] scm_init_ramap         [24] scm_permanent_object
 [289] scm_access             [60] scm_init_read         [340] scm_port_filename
  [29] scm_acons              [70] scm_init_regex_posix  [168] scm_ports_prehistory
  [81] scm_add_feature       [119] scm_init_root         [189] scm_primitive_load
 [183] scm_add_to_port_table  [57] scm_init_scmsigs      [341] scm_primitive_load_path
 [271] scm_append             [90] scm_init_script       [310] scm_prin1
 [353] scm_append_x          [100] scm_init_simpos       [165] scm_print_options
  [25] scm_apply              [27] scm_init_socket       [104] scm_procedure_p
 [274] scm_assoc              [69] scm_init_srcprop      [133] scm_procedure_property
 [153] scm_async             [145] scm_init_stackchk     [342] scm_program_arguments
 [103] scm_async_click        [48] scm_init_stacks       [343] scm_putc
 [265] scm_asyncs_pending    [121] scm_init_standard_ports [169] scm_read
 [229] scm_badargsp           [62] scm_init_stime        [215] scm_read_char
 [354] scm_big2inum           [96] scm_init_storage      [296] scm_read_hash_extend
   [2] scm_boot_guile         [64] scm_init_strings      [331] scm_read_options
   [3] scm_boot_guile_1       [65] scm_init_strop         [82] scm_read_token
 [249] scm_builtin_variable   [73] scm_init_strorder      [20] scm_regexp_exec
 [355] scm_call_with_input_string [114] scm_init_strports [365] scm_registered_modules
 [247] scm_casei_streq        [58] scm_init_struct       [205] scm_remove_from_port_table
  [14] scm_ceval              [49] scm_init_symbols      [305] scm_return_first
 [334] scm_char_eq_p          [41] scm_init_tag          [366] scm_revealed_count
 [356] scm_clear_registered_modules [109] scm_init_throw [321] scm_reverse
 [206] scm_close_port         [40] scm_init_unif         [367] scm_reverse_x
 [226] scm_closure            [78] scm_init_variable     [266] scm_run_asyncs
 [110] scm_compile_shell_switches [66] scm_init_vectors  [190] scm_search_path
  [26] scm_cons              [101] scm_init_version      [322] scm_set_current_output_port
  [44] scm_cons2             [139] scm_init_vports       [144] scm_set_port_revealed_x
 [270] scm_copy_tree          [71] scm_init_weaks        [146] scm_set_procedure_property_x
 [335] scm_current_error_port [303] scm_integer_p        [124] scm_set_program_arguments
 [318] scm_current_load_port [220] scm_intern            [292] scm_set_source_properties_x
 [147] scm_dapply             [42] scm_intern0           [368] scm_setbuf0
 [319] scm_debug_options     [129] scm_intern_obarray    [107] scm_shell
 [357] scm_definedp           [72] scm_intern_obarray_soft [128] scm_sloppy_assq
 [320] scm_delete_x          [170] scm_intern_symbol     [315] scm_sloppy_member
 [329] scm_delq_x             [88] scm_internal_catch    [288] scm_sloppy_memq
  [43] scm_deval             [187] scm_internal_dynamic_wind [243] scm_small_istr2int
 [172] scm_deval_args        [363] scm_internal_parse_path [143] scm_smob_prehistory
 [280] scm_difference        [308] scm_iprin1            [344] scm_software_type
 [307] scm_display           [268] scm_istr2flo          [182] scm_source_properties
 [358] scm_dowinds           [242] scm_istr2int          [293] scm_srcprops_to_plist
 [217] scm_downcase          [132] scm_istring2number    [261] scm_stack_size
 [302] scm_dynamic_wind      [213] scm_ithrow            [275] scm_stand_in_scm_proc
 [221] scm_eq_p              [337] scm_keyword_p         [328] scm_start_stack
 [232] scm_equal_p           [364] scm_last_pair         [323] scm_stat
 [313] scm_eqv_p             [193] scm_length            [324] scm_stat2scm
 [282] scm_eval               [55] scm_less_p            [120] scm_stdio_to_port
 [235] scm_eval_3            [309] scm_lfwrite            [85] scm_strhash
  [63] scm_eval_args         [346] scm_libguile_config_stamp [272] scm_string_append
 [179] scm_eval_car          [295] scm_list              [369] scm_string_equal_p
 [155] scm_eval_options_interface [204] scm_list_p       [279] scm_string_length
 [237] scm_eval_x            [298] scm_list_ref          [276] scm_string_ref
 [156] scm_evaluator_traps   [273] scm_listify           [312] scm_string_to_symbol
 [359] scm_exit_status       [142] scm_load_startup_files [222] scm_struct_p
 [336] scm_fflush            [248] scm_long2num          [130] scm_struct_ref
 [127] scm_fgetc             [118] scm_lookupcar1        [278] scm_struct_set_x
  [75] scm_flush_ws           [98] scm_lreadparen        [223] scm_struct_vtable
 [300] scm_for_each           [86] scm_lreadr            [297] scm_struct_vtable_p
 [360] scm_free0             [157] scm_lreadrecparen     [345] scm_substring
 [259] scm_gc_end            [196] scm_m_and              [31] scm_sum
  [13] scm_gc_for_alloc      [216] scm_m_apply           [250] scm_sym2ovcell
 [263] scm_gc_for_newcell    [199] scm_m_begin           [158] scm_sym2ovcell_soft
  [16] scm_gc_mark           [200] scm_m_case             [93] scm_sym2vcell
 [260] scm_gc_start          [202] scm_m_cond            [251] scm_symbol_interned_p
  [17] scm_gc_sweep          [152] scm_m_define          [131] scm_symbol_p
  [50] scm_geq_p             [212] scm_m_do              [267] scm_sys_gc_async_thunk
 [255] scm_get_internal_run_time [194] scm_m_if          [210] scm_sys_search_load_path
 [361] scm_get_meta_args     [173] scm_m_lambda            [8] scm_sysintern
  [80] scm_getc              [186] scm_m_let               [6] scm_sysintern0
 [178] scm_gr_p              [195] scm_m_letrec            [7] scm_sysintern0_no_module_lookup
 [285] scm_grow_tok_buf      [175] scm_m_letstar         [140] scm_system_async
  [33] scm_gsubr_apply       [203] scm_m_or              [262] scm_system_async_mark
 [162] scm_handle_by_message [185] scm_m_quasiquote      [370] scm_tables_prehistory
 [166] scm_hash_fn_create_handle_x [181] scm_m_quote      [87] scm_take0str
 [148] scm_hash_fn_get_handle [201] scm_m_set            [214] scm_throw
 [149] scm_hash_fn_ref       [326] scm_m_start_stack     [236] scm_top_level_env
 [240] scm_hash_fn_set_x     [330] scm_makacro           [294] scm_ulong2big
 [291] scm_hashq_create_handle_x [67] scm_makcclo        [269] scm_ulong2num
 [150] scm_hashq_ref         [184] scm_makdbl            [219] scm_ungetc
 [241] scm_hashq_set_x       [163] scm_make_fluid        [228] scm_unmemocar
  [12] scm_igc                [11] scm_make_gsubr        [252] scm_variable_bound_p
 [225] scm_ihashq            [164] scm_make_initial_fluids [227] scm_variable_p
  [79] scm_ilength           [208] scm_make_regexp       [264] scm_variable_ref
  [59] scm_ilookup           [160] scm_make_root         [371] scm_variable_set_x
 [209] scm_init_addr_buffer  [238] scm_make_srcprops     [207] scm_vector
  [53] scm_init_alist        [154] scm_make_string       [325] scm_vector_ref
 [111] scm_init_arbiters     [180] scm_make_struct       [287] scm_vector_set_length_x
  [61] scm_init_async        [304] scm_make_struct_layout [281] scm_zero_p
  [83] scm_init_backtrace     [10] scm_make_subr         [372] script_meta_arg_P
 [123] scm_init_boolean        [9] scm_make_subr_opt     [126] sloppy_mem_check
  [45] scm_init_chars         [46] scm_make_synt         [137] start_stack
 [362] scm_init_continuations [314] scm_make_undefined_variable [373] stgetc
  [39] scm_init_debug        [284] scm_make_variable     [301] swap_port
  [77] scm_init_dynamic_linking [125] scm_make_vector    [374] sysdep_dynl_init
 [138] scm_init_dynwind      [191] scm_make_vtable_vtable  [5] <cycle 1>
 [115] scm_init_eq           [327] scm_make_weak_key_hash_table [15] <cycle 2>
  [18] scm_init_error        [192] scm_make_weak_vector




-- 
Harvey J. Stein
BFM Financial Research
hjstein@bfr.co.il