[ create a new paste ] login | about

Link: http://codepad.org/60HJUu7A    [ raw code | fork ]

Plain Text, pasted on Mar 11:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
Flat profile:

Each sample counts as 0.01 seconds.
  %   cumulative   self              self     total           
 time   seconds   seconds    calls  ms/call  ms/call  name    
 16.36      2.45     2.45 359416416     0.00     0.00  camlSet__mem_1158
 13.75      4.51     2.06                             camlBatSet__iter_1124
 13.68      6.56     2.05                             camlBatSet__bal_1054
 11.28      8.25     1.69 359416416     0.00     0.00  camlIbm_march__fun_8624
 10.68      9.85     1.60 1181485439     0.00     0.00  caml_apply2
  7.18     10.93     1.08 88570102     0.00     0.00  camlIbm_march__try_next_8428
  7.08     11.99     1.06                             camlBatSet__remove_1110
  4.61     12.68     0.69                             camlBatInt__compare_1213
  2.40     13.04     0.36 88570103     0.00     0.00  camlIbm_march__loop_8420
  1.87     13.32     0.28                             camlBatSet__merge_1092
  1.74     13.58     0.26                             camlSet__is_empty_1157
  0.97     13.72     0.15  9524744     0.00     0.00  caml_apply3
  0.93     13.86     0.14                             camlBatSet__mem_1117
  0.73     13.97     0.11                             camlBatSet__min_elt_1074
  0.73     14.08     0.11                             camlBatSet__remove_min_elt_1086
  0.60     14.17     0.09                             camlBatInnerIO__scan_conv_1713
  0.53     14.25     0.08                             camlBatSet__add_1102
  0.47     14.32     0.07                             camlBatSet__create_1046
  0.27     14.36     0.04                             camlBatInnerIO__pr_1756
  0.23     14.40     0.04                             camlBatInnerIO__scan_format_1700
  0.20     14.43     0.03  3664115     0.00     0.00  caml_alloc_string
  0.20     14.46     0.03                             camlBatInnerIO__extract_format_1547
  0.20     14.49     0.03                             camlBatInnerIO__iter_on_format_args_1588
  0.13     14.51     0.02  1221230     0.00     0.00  caml_format_int
  0.13     14.53     0.02    81408     0.00     0.00  camlPervasives__output_string_1191
  0.13     14.55     0.02     5241     0.00     0.00  mark_slice
  0.13     14.57     0.02                             camlBatInnerIO__cont_s_1763
  0.13     14.59     0.02                             camlBatInnerIO__extract_format_int_1561
  0.13     14.61     0.02                             camlBatInnerIO__fun_2634
  0.13     14.63     0.02                             camlBatInnerIO__kapr_1660
  0.13     14.65     0.02                             camlBatInnerIO__nwrite_1307
  0.13     14.67     0.02                             camlBatSet__height_1044
  0.13     14.69     0.02                             camlBatSet__max_elt_1080
  0.10     14.70     0.02  2360834     0.00     0.00  caml_curry4_2
  0.10     14.72     0.02                             camlIbm_march__parent_dist_8426
  0.07     14.73     0.01  8488104     0.00     0.00  caml_page_table_lookup
  0.07     14.74     0.01  4644987     0.00     0.00  caml_modify
  0.07     14.75     0.01  2605056     0.00     0.00  caml_ml_output
  0.07     14.76     0.01  2442644     0.00     0.00  camlBuffer__add_char_1072
  0.07     14.77     0.01  2361041     0.00     0.00  caml_make_vect
  0.07     14.78     0.01  2360832     0.00     0.00  caml_curry4_3
  0.07     14.79     0.01  1062965     0.00     0.00  caml_oldify_one
  0.07     14.80     0.01   595953     0.00     0.00  caml_fl_merge_block
  0.07     14.81     0.01    81408     0.00     0.00  camlPervasives__print_endline_1274
  0.07     14.82     0.01     7998     0.00     0.00  sweep_slice
  0.07     14.83     0.01       31     0.32     0.32  caml_alloc
  0.07     14.84     0.01        1    10.00    10.00  caml_init_frame_descriptors
  0.07     14.85     0.01                             camlBatArray__print_1193
  0.07     14.86     0.01                             camlBatInnerIO__ac_of_format_1635
  0.07     14.87     0.01                             camlBatInnerIO__add_conv_1642
  0.07     14.88     0.01                             camlBatInnerIO__doprn_1762
  0.07     14.89     0.01                             camlBatInnerIO__fill_format_1554
  0.07     14.90     0.01                             camlBatInnerIO__fun_2153
  0.07     14.91     0.01                             camlBatInnerIO__get_arg_1710
  0.07     14.92     0.01                             camlBatInnerIO__incr_ac_1638
  0.07     14.93     0.01                             camlBatInnerIO__scan_conv_1594
  0.07     14.94     0.01                             camlBatInnerIO__scan_fmt_1595
  0.07     14.95     0.01                             camlIbm_march__f_8416
  0.07     14.96     0.01                             camlPervasives__print_float_1272
  0.03     14.96     0.01  2360834     0.00     0.00  caml_curry4_1
  0.03     14.97     0.01  1139713     0.00     0.00  caml_apply4
  0.03     14.97     0.01                             camlBatInnerIO__fprintf_1789
  0.03     14.98     0.01                             camlBatInnerIO__mkprintf_1752
  0.03     14.98     0.01                             camlBatInnerIO__next_index_1698
  0.00     14.98     0.00  4640416     0.00     0.00  caml_curry2_1
  0.00     14.98     0.00  2523648     0.00     0.00  camlPervasives__output_1194
  0.00     14.98     0.00  2523648     0.00     0.00  caml_putblock
  0.00     14.98     0.00  2442768     0.00     0.00  caml_create_string
  0.00     14.98     0.00  2361068     0.00     0.00  caml_alloc_small
  0.00     14.98     0.00  2360852     0.00     0.00  caml_curry4
  0.00     14.98     0.00  1225076     0.00     0.00  caml_string_length
  0.00     14.98     0.00  1221882     0.00     0.00  caml_blit_string
  0.00     14.98     0.00  1221233     0.00     0.00  caml_copy_string
  0.00     14.98     0.00  1221230     0.00     0.00  parse_format
  0.00     14.98     0.00  1221163     0.00     0.00  camlBuffer__create_1039
  0.00     14.98     0.00  1221160     0.00     0.00  camlString__sub_1046
  0.00     14.98     0.00  1221140     0.00     0.00  camlList__rev_append_1051
  0.00     14.98     0.00  1221120     0.00     0.00  camlIbm_march__fun_8524
  0.00     14.98     0.00   614680     0.00     0.00  caml_fl_allocate
  0.00     14.98     0.00   614678     0.00     0.00  allocate_block
  0.00     14.98     0.00   614678     0.00     0.00  caml_alloc_shr
  0.00     14.98     0.00   201889     0.00     0.00  caml_darken
  0.00     14.98     0.00   176491     0.00     0.00  caml_process_pending_signals
  0.00     14.98     0.00   124506     0.00     0.00  caml_gc_message
  0.00     14.98     0.00    81655     0.00     0.00  caml_enter_blocking_section
  0.00     14.98     0.00    81655     0.00     0.00  caml_enter_blocking_section_default
  0.00     14.98     0.00    81655     0.00     0.00  caml_leave_blocking_section
  0.00     14.98     0.00    81655     0.00     0.00  caml_leave_blocking_section_default
  0.00     14.98     0.00    81422     0.00     0.00  caml_flush
  0.00     14.98     0.00    81422     0.00     0.00  caml_flush_partial
  0.00     14.98     0.00    81422     0.00     0.00  caml_ml_flush
  0.00     14.98     0.00    81408     0.00     0.00  camlIbm_march__print_arr_8281
  0.00     14.98     0.00    81408     0.00     0.00  caml_ml_output_char
  0.00     14.98     0.00    81408     0.00     0.00  do_write
  0.00     14.98     0.00    26478     0.00     0.00  caml_empty_minor_heap
  0.00     14.98     0.00    26478     0.00     0.00  caml_final_empty_young
  0.00     14.98     0.00    13239     0.00     0.00  caml_final_do_calls
  0.00     14.98     0.00    13239     0.00     0.00  caml_final_do_young_roots
  0.00     14.98     0.00    13239     0.00     0.00  caml_major_collection_slice
  0.00     14.98     0.00    13239     0.00     0.00  caml_minor_collection
  0.00     14.98     0.00    13239     0.00     0.00  caml_oldify_local_roots
  0.00     14.98     0.00    13239     0.00     0.00  caml_oldify_mopup
  0.00     14.98     0.00    13239     0.00     0.00  caml_scan_global_young_roots
  0.00     14.98     0.00    13181     0.00     0.00  caml_garbage_collection
  0.00     14.98     0.00    11518     0.00     0.00  caml_initialize
  0.00     14.98     0.00     3464     0.00     0.00  caml_hash_univ_param
  0.00     14.98     0.00     3464     0.00     0.00  hash_aux
  0.00     14.98     0.00     2142     0.00     0.00  camlHashtbl__hash_1031
  0.00     14.98     0.00     1517     0.00     0.00  caml_page_table_modify
  0.00     14.98     0.00     1224     0.00     0.00  camlHashtbl__add_1074
  0.00     14.98     0.00     1058     0.00     0.00  camlHashtbl__insert_bucket_1068
  0.00     14.98     0.00      474     0.00     0.00  compare_val
  0.00     14.98     0.00      366     0.00     0.00  caml_stat_alloc
  0.00     14.98     0.00      347     0.00     0.00  caml_compare
  0.00     14.98     0.00      303     0.00     0.00  camlChar__chr_1032
  0.00     14.98     0.00      290     0.00     0.00  camlPervasives__$5e_1112
  0.00     14.98     0.00      256     0.00     0.00  camlChar__lowercase_1043
  0.00     14.98     0.00      200     0.00     0.00  caml_getword
  0.00     14.98     0.00      194     0.00     0.00  caml_page_table_add
  0.00     14.98     0.00      190     0.00     0.00  caml_register_frametable
  0.00     14.98     0.00      160     0.00     0.00  caml_stat_free
  0.00     14.98     0.00      152     0.00     0.00  caml_curry2
  0.00     14.98     0.00      142     0.00     0.00  camlBuffer__resize_1066
  0.00     14.98     0.00      142     0.00     0.00  camlString__blit_1056
  0.00     14.98     0.00      133     0.00     0.00  camlMap__find_1117
  0.00     14.98     0.00      124     0.00     0.00  caml_do_read
  0.00     14.98     0.00      124     0.00     0.00  caml_getblock
  0.00     14.98     0.00      117     0.00     0.00  camlCamlinternalOO__compare_1143
  0.00     14.98     0.00      110     0.00     0.00  camlDigest__string_1033
  0.00     14.98     0.00      110     0.00     0.00  camlPervasives__string_of_int_1130
  0.00     14.98     0.00      110     0.00     0.00  camlRandom__extract_1046
  0.00     14.98     0.00      110     0.00     0.00  caml_MD5Final
  0.00     14.98     0.00      110     0.00     0.00  caml_MD5Transform
  0.00     14.98     0.00      110     0.00     0.00  caml_MD5Update
  0.00     14.98     0.00      110     0.00     0.00  caml_md5_string
  0.00     14.98     0.00      108     0.00     0.00  camlCamlinternalOO__compare_1139
  0.00     14.98     0.00      104     0.00     0.00  caml_weak_create
  0.00     14.98     0.00      100     0.00     0.00  camlMap__add_1108
  0.00     14.98     0.00       88     0.00     0.00  caml_check_urgent_gc
  0.00     14.98     0.00       74     0.00     0.00  camlMap__bal_1081
  0.00     14.98     0.00       71     0.00     0.00  camlPervasives__min_1022
  0.00     14.98     0.00       71     0.00     0.00  caml_lessequal
  0.00     14.98     0.00       70     0.00     0.00  camlCamlinternalOO__resize_1173
  0.00     14.98     0.00       58     0.00     0.00  caml_curry3_1
  0.00     14.98     0.00       57     0.00     0.00  caml_weak_set
  0.00     14.98     0.00       56     0.00     0.00  caml_alloc_custom
  0.00     14.98     0.00       56     0.00     0.00  caml_curry3
  0.00     14.98     0.00       54     0.00     0.00  camlCamlinternalOO__next_1533
  0.00     14.98     0.00       54     0.00     0.00  do_set
  0.00     14.98     0.00       53     0.00     0.00  camlWeak__iter_bucket_1117
  0.00     14.98     0.00       52     0.00     0.00  camlHashtbl__mem_1122
  0.00     14.98     0.00       52     0.00     0.00  camlHashtbl__mem_in_bucket_1125
  0.00     14.98     0.00       49     0.00     0.00  camlPervasives__max_1025
  0.00     14.98     0.00       49     0.00     0.00  caml_greaterequal
  0.00     14.98     0.00       48     0.00     0.00  camlFilename__concat_1142
  0.00     14.98     0.00       48     0.00     0.00  camlFilename__is_dir_sep_1051
  0.00     14.98     0.00       47     0.00     0.00  caml_string_equal
  0.00     14.98     0.00       47     0.00     0.00  caml_string_notequal
  0.00     14.98     0.00       46     0.00     0.00  camlHashtbl__find_1093
  0.00     14.98     0.00       45     0.00     0.00  camlCamlinternalOO__get_method_label_1188
  0.00     14.98     0.00       45     0.00     0.00  camlCamlinternalOO__method_impl_1529
  0.00     14.98     0.00       45     0.00     0.00  camlCamlinternalOO__put_1178
  0.00     14.98     0.00       45     0.00     0.00  camlCamlinternalOO__set_method_1195
  0.00     14.98     0.00       45     0.00     0.00  caml_adjust_gc_speed
  0.00     14.98     0.00       45     0.00     0.00  caml_alloc_channel
  0.00     14.98     0.00       44     0.00     0.00  camlCamlinternalOO__fun_1733
  0.00     14.98     0.00       44     0.00     0.00  camlCamlinternalOO__public_method_label_1074
  0.00     14.98     0.00       43     0.00     0.00  camlCamlinternalOO__new_slot_1239
  0.00     14.98     0.00       43     0.00     0.00  camlCamlinternalOO__new_variable_1242
  0.00     14.98     0.00       43     0.00     0.00  caml_open_descriptor_in
  0.00     14.98     0.00       41     0.00     0.00  caml_ml_open_descriptor_in
  0.00     14.98     0.00       40     0.00     0.00  camlPervasives__fun_1402
  0.00     14.98     0.00       40     0.00     0.00  camlPervasives__open_in_bin_1220
  0.00     14.98     0.00       40     0.00     0.00  camlPervasives__open_in_gen_1214
  0.00     14.98     0.00       40     0.00     0.00  caml_channel_binary_mode
  0.00     14.98     0.00       40     0.00     0.00  caml_convert_flag_list
  0.00     14.98     0.00       40     0.00     0.00  caml_finalize_channel
  0.00     14.98     0.00       40     0.00     0.00  caml_input_val
  0.00     14.98     0.00       40     0.00     0.00  caml_input_value
  0.00     14.98     0.00       40     0.00     0.00  caml_ml_close_channel
  0.00     14.98     0.00       40     0.00     0.00  caml_really_getblock
  0.00     14.98     0.00       40     0.00     0.00  caml_refill
  0.00     14.98     0.00       40     0.00     0.00  caml_sys_open
  0.00     14.98     0.00       40     0.00     0.00  caml_weak_get
  0.00     14.98     0.00       40     0.00     0.00  intern_add_to_heap
  0.00     14.98     0.00       40     0.00     0.00  intern_alloc
  0.00     14.98     0.00       40     0.00     0.00  intern_rec
  0.00     14.98     0.00       38     0.00     0.00  caml_fl_init_merge
  0.00     14.98     0.00       37     0.00     0.00  caml_darken_all_roots
  0.00     14.98     0.00       37     0.00     0.00  caml_do_local_roots
  0.00     14.98     0.00       37     0.00     0.01  caml_do_roots
  0.00     14.98     0.00       37     0.00     0.00  caml_final_do_strong_roots
  0.00     14.98     0.00       37     0.00     0.00  caml_final_update
  0.00     14.98     0.00       37     0.00     0.00  caml_scan_global_roots
  0.00     14.98     0.00       37     0.00     0.01  start_cycle
  0.00     14.98     0.00       36     0.00     0.00  caml_compact_heap_maybe
  0.00     14.98     0.00       36     0.00     0.00  caml_curry3_2
  0.00     14.98     0.00       33     0.00     0.00  camlHashtbl__create_1051
  0.00     14.98     0.00       32     0.00     0.00  camlWeak__fold_bucket_1109
  0.00     14.98     0.00       30     0.00     0.00  camlArray__map_1105
  0.00     14.98     0.00       28     0.00     0.00  camlWeak__create_1098
  0.00     14.98     0.00       27     0.00     0.00  caml_alloc_dummy
  0.00     14.98     0.00       27     0.00     0.00  caml_update_dummy
  0.00     14.98     0.00       26     0.00     0.00  camlHashtbl__resize_1061
  0.00     14.98     0.00       24     0.00     0.00  camlWeak__Make_1263
  0.00     14.98     0.00       23     0.00     0.00  caml_obj_dup
  0.00     14.98     0.00       19     0.00     0.00  camlArray__blit_1093
  0.00     14.98     0.00       18     0.00     0.00  camlArray__iteri_1111
  0.00     14.98     0.00       18     0.00     0.00  camlCamlinternalOO__create_table_1267
  0.00     14.98     0.00       18     0.00     0.00  camlCamlinternalOO__fit_size_1166
  0.00     14.98     0.00       18     0.00     0.00  camlCamlinternalOO__init_class_1274
  0.00     14.98     0.00       18     0.00     0.00  camlCamlinternalOO__new_table_1168
  0.00     14.98     0.00       18     0.00     0.00  camlCamlinternalOO__set_methods_1591
  0.00     14.98     0.00       13     0.00     0.00  camlCamlinternalOO__make_class_1286
  0.00     14.98     0.00       12     0.00     0.00  camlCamlinternalOO__get_method_labels_1192
  0.00     14.98     0.00       12     0.00     0.00  camlFormat__peek_queue_1186
  0.00     14.98     0.00       11     0.00     0.00  camlFormat__add_queue_1180
  0.00     14.98     0.00       11     0.00     0.00  caml_raise
  0.00     14.98     0.00       11     0.00     0.00  caml_raise_constant
  0.00     14.98     0.00       11     0.00     0.00  caml_raise_not_found
  0.00     14.98     0.00       11     0.00     0.00  caml_sys_getenv
  0.00     14.98     0.00       10     0.00     0.00  camlCamlinternalOO__compare_1080
  0.00     14.98     0.00        9     0.00     0.00  camlList__map_1062
  0.00     14.98     0.00        9     0.00     0.00  camlString__make_1038
  0.00     14.98     0.00        9     0.00     0.00  caml_fill_string
  0.00     14.98     0.00        8     0.00     0.00  camlMap__Make_1355
  0.00     14.98     0.00        8     0.00     0.00  camlMap__fun_1920
  0.00     14.98     0.00        8     0.00     0.00  camlSet__Make_1305
  0.00     14.98     0.00        8     0.00     0.00  camlSet__fun_1822
  0.00     14.98     0.00        7     0.00     0.00  camlCamlinternalOO__new_method_1185
  0.00     14.98     0.00        7     0.00     0.00  caml_equal
  0.00     14.98     0.00        7     0.00     0.00  caml_final_register
  0.00     14.98     0.00        6     0.00     0.00  camlCamlinternalOO__new_methods_variables_1248
  0.00     14.98     0.00        6     0.00     0.00  camlCamlinternalOO__to_array_1246
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__advance_left_1277
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__advance_loop_1271
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__format_pp_token_1227
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__pp_clear_queue_1196
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__pp_flush_queue_1351
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__pp_open_box_gen_1312
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__pp_print_flush_1393
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__pp_rinit_1349
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__scan_push_1308
  0.00     14.98     0.00        6     0.00     0.00  camlFormat__take_queue_1188
  0.00     14.98     0.00        6     0.00     0.00  camlWeak__add_1176
  0.00     14.98     0.00        6     0.00     0.00  camlWeak__add_aux_1149
  0.00     14.98     0.00        6     0.00     0.00  camlWeak__fun_1392
  0.00     14.98     0.00        6     0.00     0.00  camlWeak__loop_1170
  0.00     14.98     0.00        6     0.00     0.00  caml_copy_double
  0.00     14.98     0.00        6     0.00     0.00  caml_curry5
  0.00     14.98     0.00        6     0.00     0.00  caml_int64_float_of_bits
  0.00     14.98     0.00        6     0.00     0.00  caml_weak_blit
  0.00     14.98     0.00        5     0.00     0.00  camlCamlinternalOO__make_class_store_1296
  0.00     14.98     0.00        5     0.00     0.00  camlFormat__make_formatter_1493
  0.00     14.98     0.00        5     0.00     0.00  camlFormat__pp_make_formatter_1485
  0.00     14.98     0.00        5     0.00     0.00  camlFormat__pp_set_all_formatter_output_functions_1461
  0.00     14.98     0.00        5     0.00     0.00  camlList__iter_1074
  0.00     14.98     0.00        5     0.00     0.00  caml_register_custom_operations
  0.00     14.98     0.00        4     0.00     0.00  camlArray__iter_1101
  0.00     14.98     0.00        4     0.00     0.00  camlCamlinternalOO__new_cache_1474
  0.00     14.98     0.00        4     0.00     0.00  camlCamlinternalOO__send_var_1458
  0.00     14.98     0.00        4     0.00     0.00  camlList__find_1201
  0.00     14.98     0.00        4     0.00     0.00  camlWeak__iter_1114
  0.00     14.98     0.00        4     0.00     0.00  caml_aligned_malloc
  0.00     14.98     0.00        4     0.00     0.00  caml_sys_is_directory
  0.00     14.98     0.00        3     0.00     0.00  camlArray__init_1037
  0.00     14.98     0.00        3     0.00     0.00  camlPervasives__at_exit_1322
  0.00     14.98     0.00        3     0.00     0.00  camlPervasives__fun_1500
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__find_1198
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__find_or_1180
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__find_shadow_1203
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__fun_1422
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__fun_1436
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__loop_1189
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__loop_1213
  0.00     14.98     0.00        3     0.00     0.00  camlWeak__remove_1216
  0.00     14.98     0.00        3     0.00     0.00  caml_alloc_for_heap
  0.00     14.98     0.00        3     0.00     0.32  caml_weak_get_copy
  0.00     14.98     0.00        2     0.00     0.00  camlFormat__formatter_of_out_channel_1497
  0.00     14.98     0.00        2     0.00     0.00  camlIbm_march__fun_8552
  0.00     14.98     0.00        2     0.00     0.00  camlMap__create_1071
  0.00     14.98     0.00        2     0.00     0.00  caml_add_to_heap
  0.00     14.98     0.00        2     0.00     0.00  caml_alloc_table
  0.00     14.98     0.00        2     0.00     0.00  caml_fl_add_blocks
  0.00     14.98     0.00        2     0.00     0.00  caml_insert_global_root
  0.00     14.98     0.00        2     0.00     0.00  caml_ml_open_descriptor_out
  0.00     14.98     0.00        2     0.00     0.00  caml_open_descriptor_out
  0.00     14.98     0.00        2     0.00     0.00  caml_realloc_ref_table
  0.00     14.98     0.00        2     0.00     0.00  caml_register_global_root
  0.00     14.98     0.00        2     0.00     0.00  caml_register_named_value
  0.00     14.98     0.00        2     0.00     0.00  caml_round_heap_chunk_size
  0.00     14.98     0.00        1     0.00     0.00  camlArg__entry
  0.00     14.98     0.00        1     0.00     0.00  camlArrayLabels__entry
  0.00     14.98     0.00        1     0.00     0.00  camlArray__append_1054
  0.00     14.98     0.00        1     0.00     0.00  camlArray__entry
  0.00     14.98     0.00        1     0.00     0.00  camlArray__fold_right_1145
  0.00     14.98     0.00        1     0.00     0.00  camlBuffer__entry
  0.00     14.98     0.00        1     0.00     0.00  camlCallback__entry
  0.00     14.98     0.00        1     0.00     0.00  camlCallback__register_exception_1034
  0.00     14.98     0.00        1     0.00     0.00  camlCamlinternalLazy__entry
  0.00     14.98     0.00        1     0.00     0.00  camlCamlinternalOO__entry
  0.00     14.98     0.00        1     0.00     0.00  camlCamlinternalOO__get_var_1368
  0.00     14.98     0.00        1     0.00     0.00  camlChar__entry
  0.00     14.98     0.00        1     0.00     0.00  camlComplex__entry
  0.00     14.98     0.00        1     0.00     0.00  camlDigest__entry
  0.00     14.98     0.00        1     0.00     0.00  camlFilename__entry
  0.00     14.98     0.00        1     0.00     0.00  camlFormat__entry
  0.00     14.98     0.00        1     0.00     0.00  camlFormat__formatter_of_buffer_1499
  0.00     14.98     0.00        1     0.00     0.00  camlGc__entry
  0.00     14.98     0.00        1     0.00     0.00  camlGenlex__entry
  0.00     14.98     0.00        1     0.00     0.00  camlHashtbl__entry
  0.00     14.98     0.00        1     0.00     0.00  camlIbm_march__build_arr_8436
  0.00     14.98     0.00        1     0.00     0.00  camlIbm_march__entry
  0.00     14.98     0.00        1     0.00     0.00  camlIbm_march__loop_8441
  0.00     14.98     0.00        1     0.00     0.00  camlIbm_march__partial_solution_8431
  0.00     14.98     0.00        1     0.00     0.00  camlIbm_march__solution_8409
  0.00     14.98     0.00        1     0.00     0.00  camlInt32__entry
  0.00     14.98     0.00        1     0.00     0.00  camlInt64__entry
  0.00     14.98     0.00        1     0.00     0.00  camlLazy__entry
  0.00     14.98     0.00        1     0.00     0.00  camlLazy__lazy_from_val_1038
  0.00     14.98     0.00        1     0.00     0.00  camlLexing__entry
  0.00     14.98     0.00        1     0.00     0.00  camlListLabels__entry
  0.00     14.98     0.00        1     0.00     0.00  camlList__entry
  0.00     14.98     0.00        1     0.00     0.00  camlList__fold_right_1084
  0.00     14.98     0.00        1     0.00     0.00  camlMap__entry
  0.00     14.98     0.00        1     0.00     0.00  camlMarshal__entry
  0.00     14.98     0.00        1     0.00     0.00  camlMoreLabels__entry
  0.00     14.98     0.00        1     0.00     0.00  camlNativeint__entry
  0.00     14.98     0.00        1     0.00     0.00  camlObj__entry
  0.00     14.98     0.00        1     0.00     0.00  camlOo__entry
  0.00     14.98     0.00        1     0.00     0.00  camlParsing__entry
  0.00     14.98     0.00        1     0.00     0.00  camlPervasives__$40_1143
  0.00     14.98     0.00        1     0.00     0.00  camlPervasives__entry
  0.00     14.98     0.00        1     0.00     0.00  camlPervasives__flush_all_1185
  0.00     14.98     0.00        1     0.00     0.00  camlPervasives__iter_1186
  0.00     14.98     0.00        1     0.00     0.00  camlPrintexc__entry
  0.00     14.98     0.00        1     0.00     0.00  camlPrintf__entry
  0.00     14.98     0.00        1     0.00     0.00  camlQueue__entry
  0.00     14.98     0.00        1     0.00     0.00  camlRandom__entry
  0.00     14.98     0.00        1     0.00     0.00  camlRandom__full_init_1040
  0.00     14.98     0.00        1     0.00     0.00  camlRandom__make_self_init_1058
  0.00     14.98     0.00        1     0.00     0.00  camlRandom__new_state_1036
  0.00     14.98     0.00        1     0.00     0.00  camlScanf__create_1134
  0.00     14.98     0.00        1     0.00     0.00  camlScanf__entry
  0.00     14.98     0.00        1     0.00     0.00  camlScanf__from_ic_1149
  0.00     14.98     0.00        1     0.00     0.00  camlSet__entry
  0.00     14.98     0.00        1     0.00     0.00  camlSort__entry
  0.00     14.98     0.00        1     0.00     0.00  camlStack__entry
  0.00     14.98     0.00        1     0.00     0.00  camlStdLabels__entry
  0.00     14.98     0.00        1     0.00     0.00  camlStd_exit__entry
  0.00     14.98     0.00        1     0.00     0.00  camlStream__entry
  0.00     14.98     0.00        1     0.00     0.00  camlStringLabels__entry
  0.00     14.98     0.00        1     0.00     0.00  camlString__entry
  0.00     14.98     0.00        1     0.00     0.00  camlSys__entry
  0.00     14.98     0.00        1     0.00     0.00  camlWeak__entry
  0.00     14.98     0.00        1     0.00     0.00  camlWeak__fold_1105
  0.00     14.98     0.00        1     0.00     0.32  caml_alloc_array
  0.00     14.98     0.00        1     0.00     0.00  caml_classify_float
  0.00     14.98     0.00        1     0.00     0.00  caml_copy_string_array
  0.00     14.98     0.00        1     0.00     0.00  caml_curry5_1
  0.00     14.98     0.00        1     0.00     0.00  caml_curry5_2
  0.00     14.98     0.00        1     0.00     0.00  caml_curry5_3
  0.00     14.98     0.00        1     0.00     0.00  caml_curry5_4
  0.00     14.98     0.00        1     0.00     0.00  caml_debugger_init
  0.00     14.98     0.00        1     0.00     0.00  caml_executable_name
  0.00     14.98     0.00        1     0.00     0.00  caml_init_custom_operations
  0.00     14.98     0.00        1     0.00     0.00  caml_init_gc
  0.00     14.98     0.00        1     0.00     0.00  caml_init_ieee_floats
  0.00     14.98     0.00        1     0.00     0.00  caml_init_major_heap
  0.00     14.98     0.00        1     0.00     0.00  caml_init_signals
  0.00     14.98     0.00        1     0.00     0.00  caml_main
  0.00     14.98     0.00        1     0.00     0.00  caml_make_free_blocks
  0.00     14.98     0.00        1     0.00     0.00  caml_ml_out_channels_list
  0.00     14.98     0.00        1     0.00     0.00  caml_obj_block
  0.00     14.98     0.00        1     0.00     0.00  caml_obj_tag
  0.00     14.98     0.00        1     0.00     0.00  caml_page_table_initialize
  0.00     14.98     0.00        1     0.00     0.00  caml_program
  0.00     14.98     0.00        1     0.00     0.00  caml_set_minor_heap_size
  0.00     14.98     0.00        1     0.00     0.00  caml_sys_exit
  0.00     14.98     0.00        1     0.00     0.32  caml_sys_get_argv
  0.00     14.98     0.00        1     0.00     0.00  caml_sys_get_config
  0.00     14.98     0.00        1     0.00     0.00  caml_sys_init
  0.00     14.98     0.00        1     0.00     0.00  caml_sys_random_seed

 %         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 2 byte(s) for 0.07% of 14.98 seconds

index % time    self  children    called     name
                                                 <spontaneous>
[1]     58.3    2.06    6.67                 camlBatSet__iter_1124 [1]
                1.69    3.51 359416416/359416416     camlIbm_march__fun_8624 [2]
                1.08    0.00 88570102/88570102     camlIbm_march__try_next_8428 [7]
                0.36    0.00 88570102/88570103     camlIbm_march__loop_8420 [9]
                0.01    0.02   81408/81408       camlPervasives__print_endline_1274 [32]
-----------------------------------------------
                1.69    3.51 359416416/359416416     camlBatSet__iter_1124 [1]
[2]     34.7    1.69    3.51 359416416         camlIbm_march__fun_8624 [2]
                2.45    1.06 359416416/359416416     camlSet__mem_1158 [3]
-----------------------------------------------
                2.45    1.06 359416416/359416416     camlIbm_march__fun_8624 [2]
[3]     23.4    2.45    1.06 359416416         camlSet__mem_1158 [3]
                1.05    0.01 776113429/1181485439     caml_apply2 [5]
-----------------------------------------------
                                                 <spontaneous>
[4]     13.7    2.05    0.00                 camlBatSet__bal_1054 [4]
-----------------------------------------------
                0.00    0.00       1/1181485439     camlBatInnerIO__wrap_in_1208 [236]
                0.00    0.00       1/1181485439     camlBatUnix__input_add_1425 [237]
                0.00    0.00       1/1181485439     camlBatCharParser__string_1066 [234]
                0.00    0.00       1/1181485439     camlBatFormat__set_formatter_output_1080 [235]
                0.00    0.00       1/1181485439     camlUReStrParser__entry [215]
                0.00    0.00       1/1181485439     camlPervasives__fun_1500 [165]
                0.00    0.00       2/1181485439     camlBatInnerIO__close_all_1326 [132]
                0.00    0.00       2/1181485439     camlBatUnix__output_add_1430 [233]
                0.00    0.00       2/1181485439     camlBatBool__entry [231]
                0.00    0.00       2/1181485439     camlBatFormat__formatter_of_output_1075 [155]
                0.00    0.00       2/1181485439     camlBatFormat__pp_set_formatter_output_1082 [232]
                0.00    0.00       2/1181485439     camlFilename__entry [107]
                0.00    0.00       3/1181485439     camlBatInnerWeaktbl__add_1203 [136]
                0.00    0.00       3/1181485439     camlBatUnix__entry [224]
                0.00    0.00       3/1181485439     camlWeak__fold_bucket_1109 [222]
                0.00    0.00       3/1181485439     camlWeak__loop_1213 [223]
                0.00    0.00       4/1181485439     camlBatUCharParser__entry [221]
                0.00    0.00       5/1181485439     camlBatGenlex__entry [217]
                0.00    0.00       5/1181485439     camlBatSet__split_1173 [218]
                0.00    0.00       5/1181485439     camlList__fold_right_1084 [216]
                0.00    0.00       6/1181485439     camlBatInnerIO__fun_2019 [208]
                0.00    0.00       6/1181485439     camlBatInnerIO__wrap_out_1238 [131]
                0.00    0.00       8/1181485439     camlBatCharParser__entry [209]
                0.00    0.00      32/1181485439     camlArray__fold_right_1145 [133]
                0.00    0.00      44/1181485439     camlArray__iteri_1111 [105]
                0.00    0.00      48/1181485439     camlFilename__concat_1142 [146]
                0.00    0.00      58/1181485439     camlBatEnum__loop_1194 [119]
                0.00    0.00      74/1181485439     camlMap__add_1108 [139]
                0.00    0.00     161/1181485439     camlMap__find_1117 [126]
                0.00    0.00     205/1181485439     camlBatSet__add_1102 [18]
                0.00    0.00 1302528/1181485439     camlBatArray__print_1193 [24]
                0.00    0.00 2279424/1181485439     camlBatInnerIO__cont_a_1764 [34]
                0.00    0.00 2360832/1181485439     camlBatInnerIO__mkprintf_1752 [49]
                0.54    0.01 399428535/1181485439     camlBatSet__remove_1110 [6]
                1.05    0.01 776113429/1181485439     camlSet__mem_1158 [3]
[5]     10.8    1.60    0.02 1181485439         caml_apply2 [5]
                0.02    0.00 2360832/2360834     caml_curry4_2 [46]
                0.00    0.00 2360832/2360852     caml_curry4 [251]
                0.00    0.00      32/58          caml_curry3_1 [302]
                0.00    0.00      26/56          caml_curry3 [304]
-----------------------------------------------
                                                 <spontaneous>
[6]     10.7    1.06    0.55                 camlBatSet__remove_1110 [6]
                0.54    0.01 399428535/1181485439     caml_apply2 [5]
-----------------------------------------------
                1.08    0.00 88570102/88570102     camlBatSet__iter_1124 [1]
[7]      7.2    1.08    0.00 88570102         camlIbm_march__try_next_8428 [7]
-----------------------------------------------
                                                 <spontaneous>
[8]      4.6    0.69    0.00                 camlBatInt__compare_1213 [8]
-----------------------------------------------
                0.00    0.00       1/88570103     camlIbm_march__entry [157]
                0.36    0.00 88570102/88570103     camlBatSet__iter_1124 [1]
[9]      2.4    0.36    0.00 88570103         camlIbm_march__loop_8420 [9]
                0.00    0.00   81408/81408       camlIbm_march__print_arr_8281 [271]
-----------------------------------------------
                                                 <spontaneous>
[10]     1.9    0.28    0.00                 camlBatSet__merge_1092 [10]
-----------------------------------------------
                                                 <spontaneous>
[11]     1.7    0.26    0.00                 camlSet__is_empty_1157 [11]
-----------------------------------------------
                0.00    0.00       2/9524744     camlFilename__entry [107]
                0.00    0.00       6/9524744     camlWeak__loop_1170 [122]
                0.02    0.00 1139712/9524744     camlBatInnerIO__cont_a_1764 [34]
                0.04    0.00 2360832/9524744     camlBatArray__print_1193 [24]
                0.04    0.00 2523648/9524744     camlBatInnerIO__nwrite_1307 [23]
                0.05    0.00 3500544/9524744     camlBatInnerIO__scan_fmt_1595 [22]
[12]     1.0    0.15    0.00 9524744         caml_apply3 [12]
                0.00    0.00       2/2360834     caml_curry4_1 [72]
                0.00    0.00       2/2360852     caml_curry4 [251]
-----------------------------------------------
                                                 <spontaneous>
[13]     0.9    0.14    0.00                 camlBatSet__mem_1117 [13]
-----------------------------------------------
                                                 <spontaneous>
[14]     0.7    0.11    0.00                 camlBatSet__min_elt_1074 [14]
-----------------------------------------------
                                                 <spontaneous>
[15]     0.7    0.11    0.00                 camlBatSet__remove_min_elt_1086 [15]
-----------------------------------------------
                                                 <spontaneous>
[16]     0.6    0.09    0.00                 camlBatInnerIO__scan_conv_1713 [16]
                0.00    0.00 4640256/4640416     caml_curry2_1 [247]
-----------------------------------------------
                                                 <spontaneous>
[17]     0.5    0.00    0.08                 caml_c_call [17]
                0.02    0.01 1221230/1221230     caml_format_int [31]
                0.02    0.00 2442768/3664115     caml_alloc_string [30]
                0.01    0.00 2361041/2361041     caml_make_vect [52]
                0.01    0.00 2605056/2605056     caml_ml_output [56]
                0.01    0.00      27/31          caml_alloc [60]
                0.00    0.00       3/3           caml_weak_get_copy [77]
                0.00    0.00       1/1           caml_sys_get_argv [78]
                0.00    0.00     110/110         caml_md5_string [94]
                0.00    0.00     347/347         caml_compare [115]
                0.00    0.00      71/71          caml_lessequal [147]
                0.00    0.00      49/49          caml_greaterequal [164]
                0.00    0.00       1/1           caml_sys_get_config [213]
                0.00    0.00       7/7           caml_final_register [214]
                0.00    0.00       7/7           caml_equal [220]
                0.00    0.00      23/23          caml_obj_dup [238]
                0.00    0.00      40/40          caml_weak_get [239]
                0.00    0.00      11/11          caml_sys_getenv [243]
                0.00    0.00      43/45          caml_alloc_channel [244]
                0.00    0.00       1/1           caml_ml_out_channels_list [245]
                0.00    0.00 2442768/2442768     caml_create_string [250]
                0.00    0.00   81422/81422       caml_ml_flush [270]
                0.00    0.00   81408/81408       caml_ml_output_char [272]
                0.00    0.00     104/104         caml_weak_create [298]
                0.00    0.00      57/57          caml_weak_set [303]
                0.00    0.00      41/41          caml_ml_open_descriptor_in [317]
                0.00    0.00      40/40          caml_ml_close_channel [326]
                0.00    0.00      40/40          caml_input_value [325]
                0.00    0.00      40/40          caml_sys_open [329]
                0.00    0.00      27/27          caml_alloc_dummy [340]
                0.00    0.00       6/6           caml_weak_blit [362]
                0.00    0.00       6/6           caml_copy_double [359]
                0.00    0.00       6/6           caml_int64_float_of_bits [361]
                0.00    0.00       4/4           caml_sys_is_directory [370]
                0.00    0.00       2/2           caml_register_named_value [390]
                0.00    0.00       2/2           caml_ml_open_descriptor_out [386]
                0.00    0.00       1/1           caml_classify_float [447]
                0.00    0.00       1/1           caml_obj_tag [459]
                0.00    0.00       1/1           caml_sys_random_seed [464]
                0.00    0.00       1/1           caml_obj_block [458]
-----------------------------------------------
                                                 <spontaneous>
[18]     0.5    0.08    0.00                 camlBatSet__add_1102 [18]
                0.00    0.00     205/1181485439     caml_apply2 [5]
-----------------------------------------------
                                                 <spontaneous>
[19]     0.5    0.07    0.00                 camlBatSet__create_1046 [19]
-----------------------------------------------
                0.00    0.06   13181/13181       caml_call_gc [21]
[20]     0.4    0.00    0.06   13181         caml_garbage_collection [20]
                0.00    0.05   13181/13239       caml_minor_collection [25]
                0.00    0.01   13181/26478       caml_empty_minor_heap [37]
                0.00    0.00   13181/26478       caml_final_empty_young [274]
-----------------------------------------------
                                                 <spontaneous>
[21]     0.4    0.00    0.06                 caml_call_gc [21]
                0.00    0.06   13181/13181       caml_garbage_collection [20]
                0.00    0.00   13181/176491      caml_process_pending_signals [262]
-----------------------------------------------
                                                 <spontaneous>
[22]     0.4    0.01    0.05                 camlBatInnerIO__scan_fmt_1595 [22]
                0.05    0.00 3500544/9524744     caml_apply3 [12]
-----------------------------------------------
                                                 <spontaneous>
[23]     0.4    0.02    0.04                 camlBatInnerIO__nwrite_1307 [23]
                0.04    0.00 2523648/9524744     caml_apply3 [12]
-----------------------------------------------
                                                 <spontaneous>
[24]     0.4    0.01    0.05                 camlBatArray__print_1193 [24]
                0.04    0.00 2360832/9524744     caml_apply3 [12]
                0.01    0.00 1221120/2360832     caml_curry4_3 [57]
                0.01    0.00 1139712/1139713     caml_apply4 [73]
                0.00    0.00 1302528/1181485439     caml_apply2 [5]
                0.00    0.00   81408/1221120     camlIbm_march__fun_8524 [258]
-----------------------------------------------
                0.00    0.00      27/13239       caml_alloc_small [84]
                0.00    0.00      31/13239       caml_alloc_string [30]
                0.00    0.05   13181/13239       caml_garbage_collection [20]
[25]     0.4    0.00    0.05   13239         caml_minor_collection [25]
                0.00    0.04   13239/13239       caml_major_collection_slice [26]
                0.00    0.01   13239/26478       caml_empty_minor_heap [37]
                0.00    0.00   13239/26478       caml_final_empty_young [274]
                0.00    0.00   13239/13239       caml_final_do_calls [275]
-----------------------------------------------
                0.00    0.04   13239/13239       caml_minor_collection [25]
[26]     0.3    0.00    0.04   13239         caml_major_collection_slice [26]
                0.02    0.00    5241/5241        mark_slice [35]
                0.01    0.01    7998/7998        sweep_slice [44]
                0.00    0.00      37/37          start_cycle [83]
                0.00    0.00   79434/124506      caml_gc_message [263]
                0.00    0.00      36/36          caml_compact_heap_maybe [336]
-----------------------------------------------
                                                 <spontaneous>
[27]     0.3    0.04    0.00                 camlBatInnerIO__pr_1756 [27]
-----------------------------------------------
                                                 <spontaneous>
[28]     0.2    0.04    0.00                 camlBatInnerIO__scan_format_1700 [28]
-----------------------------------------------
                                                 <spontaneous>
[29]     0.2    0.03    0.00                 camlBatInnerIO__extract_format_1547 [29]
                0.00    0.00 1221120/2442644     camlBuffer__add_char_1072 [54]
                0.00    0.00 1221120/1221163     camlBuffer__create_1039 [255]
                0.00    0.00 1221120/1221140     camlList__rev_append_1051 [257]
-----------------------------------------------
                0.00    0.00       2/3664115     alloc_inet_addr [205]
                0.00    0.00       2/3664115     alloc_inet6_addr [204]
                0.00    0.00     110/3664115     caml_md5_string [94]
                0.01    0.00 1221233/3664115     caml_copy_string [53]
                0.02    0.00 2442768/3664115     caml_c_call [17]
[30]     0.2    0.03    0.00 3664115         caml_alloc_string [30]
                0.00    0.00      31/13239       caml_minor_collection [25]
                0.00    0.00      31/26478       caml_empty_minor_heap [37]
                0.00    0.00      31/26478       caml_final_empty_young [274]
-----------------------------------------------
                0.02    0.01 1221230/1221230     caml_c_call [17]
[31]     0.2    0.02    0.01 1221230         caml_format_int [31]
                0.00    0.01 1221230/1221233     caml_copy_string [53]
                0.00    0.00 1221230/1221230     parse_format [254]
-----------------------------------------------
                0.01    0.02   81408/81408       camlBatSet__iter_1124 [1]
[32]     0.2    0.01    0.02   81408         camlPervasives__print_endline_1274 [32]
                0.02    0.00   81408/81408       camlPervasives__output_string_1191 [36]
-----------------------------------------------
                                                 <spontaneous>
[33]     0.2    0.03    0.00                 camlBatInnerIO__iter_on_format_args_1588 [33]
-----------------------------------------------
                                                 <spontaneous>
[34]     0.2    0.00    0.03                 camlBatInnerIO__cont_a_1764 [34]
                0.02    0.00 1139712/9524744     caml_apply3 [12]
                0.00    0.00 1139712/2360832     caml_curry4_3 [57]
                0.00    0.00 2279424/1181485439     caml_apply2 [5]
                0.00    0.00 1139712/1221120     camlIbm_march__fun_8524 [258]
-----------------------------------------------
                0.02    0.00    5241/5241        caml_major_collection_slice [26]
[35]     0.2    0.02    0.00    5241         mark_slice [35]
                0.00    0.00 3645302/8488104     caml_page_table_lookup [55]
                0.00    0.00   10482/124506      caml_gc_message [263]
                0.00    0.00      37/38          caml_fl_init_merge [333]
                0.00    0.00      37/37          caml_final_update [335]
-----------------------------------------------
                0.02    0.00   81408/81408       camlPervasives__print_endline_1274 [32]
[36]     0.1    0.02    0.00   81408         camlPervasives__output_string_1191 [36]
-----------------------------------------------
                0.00    0.00      27/26478       caml_alloc_small [84]
                0.00    0.00      31/26478       caml_alloc_string [30]
                0.00    0.01   13181/26478       caml_garbage_collection [20]
                0.00    0.01   13239/26478       caml_minor_collection [25]
[37]     0.1    0.00    0.02   26478         caml_empty_minor_heap [37]
                0.00    0.01   13239/13239       caml_oldify_local_roots [50]
                0.00    0.01   13239/13239       caml_oldify_mopup [71]
                0.00    0.00     684/1062965     caml_oldify_one [58]
                0.00    0.00   26478/124506      caml_gc_message [263]
-----------------------------------------------
                                                 <spontaneous>
[38]     0.1    0.02    0.00                 camlBatInnerIO__cont_s_1763 [38]
-----------------------------------------------
                                                 <spontaneous>
[39]     0.1    0.02    0.00                 camlBatInnerIO__extract_format_int_1561 [39]
                0.00    0.00 1221120/1221160     camlString__sub_1046 [256]
-----------------------------------------------
                                                 <spontaneous>
[40]     0.1    0.02    0.00                 camlBatInnerIO__fun_2634 [40]
-----------------------------------------------
                                                 <spontaneous>
[41]     0.1    0.02    0.00                 camlBatInnerIO__kapr_1660 [41]
-----------------------------------------------
                                                 <spontaneous>
[42]     0.1    0.02    0.00                 camlBatSet__height_1044 [42]
-----------------------------------------------
                                                 <spontaneous>
[43]     0.1    0.02    0.00                 camlBatSet__max_elt_1080 [43]
-----------------------------------------------
                0.01    0.01    7998/7998        caml_major_collection_slice [26]
[44]     0.1    0.01    0.01    7998         sweep_slice [44]
                0.01    0.00  595952/595953      caml_fl_merge_block [59]
                0.00    0.00    7998/124506      caml_gc_message [263]
                0.00    0.00      40/160         caml_stat_free [285]
                0.00    0.00      40/40          caml_finalize_channel [323]
-----------------------------------------------
                0.00    0.00       1/4644987     camlBatInnerIO__input_channel_1362 [229]
                0.00    0.00       1/4644987     camlBatRef__post_incr_1046 [230]
                0.00    0.00       1/4644987     camlBatEnum__fun_2122 [227]
                0.00    0.00       1/4644987     camlBatEnum__from2_1114 [226]
                0.00    0.00       1/4644987     camlBatEnum__take_1148 [228]
                0.00    0.00       1/4644987     camlBatEnum__concat_1288 [225]
                0.00    0.00       1/4644987     caml_alloc_array [79]
                0.00    0.00       2/4644987     camlCamlinternalOO__get_method_label_1188 [140]
                0.00    0.00       3/4644987     camlPervasives__at_exit_1322 [211]
                0.00    0.00       4/4644987     camlCamlinternalOO__new_cache_1474 [177]
                0.00    0.00       5/4644987     camlBatInnerIO__fun_1964 [203]
                0.00    0.00       6/4644987     camlFormat__format_pp_token_1227 [195]
                0.00    0.00       6/4644987     camlFormat__scan_push_1308 [154]
                0.00    0.00       8/4644987     camlBatEnum__from_1110 [193]
                0.00    0.00      10/4644987     camlFormat__make_formatter_1493 [145]
                0.00    0.00      10/4644987     camlCamlinternalOO__make_class_store_1296 [116]
                0.00    0.00      10/4644987     camlCamlinternalOO__new_variable_1242 [137]
                0.00    0.00      12/4644987     camlBatInnerIO__close_unit_1230 [174]
                0.00    0.00      12/4644987     camlFormat__take_queue_1188 [173]
                0.00    0.00      12/4644987     camlFormat__pp_clear_queue_1196 [172]
                0.00    0.00      12/4644987     camlWeak__loop_1170 [122]
                0.00    0.00      13/4644987     camlCamlinternalOO__resize_1173 [117]
                0.00    0.00      15/4644987     camlArray__append_1054 [160]
                0.00    0.00      18/4644987     camlCamlinternalOO__init_class_1274 [150]
                0.00    0.00      20/4644987     camlFormat__pp_set_all_formatter_output_functions_1461 [144]
                0.00    0.00      22/4644987     camlFormat__add_queue_1180 [143]
                0.00    0.00      26/4644987     camlHashtbl__resize_1061 [86]
                0.00    0.00      30/4644987     camlFormat__pp_rinit_1349 [134]
                0.00    0.00      32/4644987     camlArray__fold_right_1145 [133]
                0.00    0.00      45/4644987     camlArray__map_1105 [129]
                0.00    0.00      45/4644987     camlCamlinternalOO__put_1178 [114]
                0.00    0.00      57/4644987     camlBatEnum__aux_1318 [130]
                0.00    0.00      58/4644987     camlBatEnum__loop_1194 [119]
                0.00    0.00      80/4644987     camlCamlinternalOO__new_table_1168 [120]
                0.00    0.00      88/4644987     camlCamlinternalOO__fun_1733 [108]
                0.00    0.00     110/4644987     camlRandom__full_init_1040 [112]
                0.00    0.00     111/4644987     camlArray__blit_1093 [111]
                0.00    0.00     113/4644987     caml_update_dummy [110]
                0.00    0.00     142/4644987     camlBuffer__resize_1066 [103]
                0.00    0.00     221/4644987     camlArray__init_1037 [99]
                0.00    0.00    1224/4644987     camlHashtbl__add_1074 [88]
                0.00    0.00    2142/4644987     camlHashtbl__insert_bucket_1068 [87]
                0.00    0.00 1221120/4644987     camlBatInnerIO__fun_2412 [76]
                0.01    0.00 3419136/4644987     camlBatInnerIO__fun_2418 [51]
[45]     0.1    0.01    0.01 4644987         caml_modify [45]
                0.01    0.00 4644987/8488104     caml_page_table_lookup [55]
                0.00    0.00       1/2           caml_alloc_table [383]
                0.00    0.00       1/2           caml_realloc_ref_table [388]
-----------------------------------------------
                0.00    0.00       2/2360834     camlFilename__entry [107]
                0.02    0.00 2360832/2360834     caml_apply2 [5]
[46]     0.1    0.02    0.00 2360834         caml_curry4_2 [46]
-----------------------------------------------
                                                 <spontaneous>
[47]     0.1    0.02    0.00                 camlIbm_march__parent_dist_8426 [47]
-----------------------------------------------
                                                 <spontaneous>
[48]     0.1    0.01    0.00                 camlBatInnerIO__fill_format_1554 [48]
                0.00    0.00 1221120/2442644     camlBuffer__add_char_1072 [54]
-----------------------------------------------
                                                 <spontaneous>
[49]     0.1    0.01    0.01                 camlBatInnerIO__mkprintf_1752 [49]
                0.01    0.00 2360832/2360834     caml_curry4_1 [72]
                0.00    0.00 2360832/1181485439     caml_apply2 [5]
-----------------------------------------------
                0.00    0.01   13239/13239       caml_empty_minor_heap [37]
[50]     0.1    0.00    0.01   13239         caml_oldify_local_roots [50]
                0.01    0.00       1/1           caml_init_frame_descriptors [61]
                0.00    0.00  228483/1062965     caml_oldify_one [58]
                0.00    0.00   13239/13239       caml_scan_global_young_roots [80]
                0.00    0.00   13239/13239       caml_final_do_young_roots [135]
-----------------------------------------------
                                                 <spontaneous>
[51]     0.1    0.00    0.01                 camlBatInnerIO__fun_2418 [51]
                0.01    0.00 3419136/4644987     caml_modify [45]
-----------------------------------------------
                0.01    0.00 2361041/2361041     caml_c_call [17]
[52]     0.1    0.01    0.00 2361041         caml_make_vect [52]
                0.00    0.00 2360998/2361068     caml_alloc_small [84]
                0.00    0.00      89/8488104     caml_page_table_lookup [55]
                0.00    0.00   11518/11518       caml_initialize [276]
                0.00    0.00      43/88          caml_check_urgent_gc [299]
                0.00    0.00      43/614678      caml_alloc_shr [261]
-----------------------------------------------
                0.00    0.00       1/1221233     caml_alloc_array [79]
                0.00    0.00       1/1221233     caml_sys_get_argv [78]
                0.00    0.00       1/1221233     caml_sys_get_config [213]
                0.00    0.01 1221230/1221233     caml_format_int [31]
[53]     0.1    0.00    0.01 1221233         caml_copy_string [53]
                0.01    0.00 1221233/3664115     caml_alloc_string [30]
-----------------------------------------------
                0.00    0.00     404/2442644     camlDatabase__escape_1030 [93]
                0.00    0.00 1221120/2442644     camlBatInnerIO__fill_format_1554 [48]
                0.00    0.00 1221120/2442644     camlBatInnerIO__extract_format_1547 [29]
[54]     0.1    0.01    0.00 2442644         camlBuffer__add_char_1072 [54]
                0.00    0.00     142/142         camlBuffer__resize_1066 [103]
-----------------------------------------------
                0.00    0.00       7/8488104     caml_final_register [214]
                0.00    0.00      21/8488104     caml_weak_get_copy [77]
                0.00    0.00      89/8488104     caml_make_vect [52]
                0.00    0.00     368/8488104     compare_val [106]
                0.00    0.00    3446/8488104     hash_aux [90]
                0.00    0.00  193884/8488104     caml_darken [81]
                0.00    0.00 3645302/8488104     mark_slice [35]
                0.01    0.00 4644987/8488104     caml_modify [45]
[55]     0.1    0.01    0.00 8488104         caml_page_table_lookup [55]
-----------------------------------------------
                0.01    0.00 2605056/2605056     caml_c_call [17]
[56]     0.1    0.01    0.00 2605056         caml_ml_output [56]
                0.00    0.00 2523648/2523648     caml_putblock [249]
-----------------------------------------------
                0.00    0.00 1139712/2360832     camlBatInnerIO__cont_a_1764 [34]
                0.01    0.00 1221120/2360832     camlBatArray__print_1193 [24]
[57]     0.1    0.01    0.00 2360832         caml_curry4_3 [57]
-----------------------------------------------
                                2971             caml_oldify_one [58]
                0.00    0.00      14/1062965     caml_final_do_young_roots [135]
                0.00    0.00     684/1062965     caml_empty_minor_heap [37]
                0.00    0.00   26478/1062965     caml_scan_global_young_roots [80]
                0.00    0.00  228483/1062965     caml_oldify_local_roots [50]
                0.01    0.00  807306/1062965     caml_oldify_mopup [71]
[58]     0.1    0.01    0.00 1062965+2971    caml_oldify_one [58]
                0.00    0.00  614446/614678      caml_alloc_shr [261]
                                2971             caml_oldify_one [58]
-----------------------------------------------
                0.00    0.00       1/595953      caml_make_free_blocks [201]
                0.01    0.00  595952/595953      sweep_slice [44]
[59]     0.1    0.01    0.00  595953         caml_fl_merge_block [59]
-----------------------------------------------
                0.00    0.00       1/31          caml_alloc_array [79]
                0.00    0.00       3/31          caml_weak_get_copy [77]
                0.01    0.00      27/31          caml_c_call [17]
[60]     0.1    0.01    0.00      31         caml_alloc [60]
-----------------------------------------------
                0.01    0.00       1/1           caml_oldify_local_roots [50]
[61]     0.1    0.01    0.00       1         caml_init_frame_descriptors [61]
                0.00    0.00     190/190         caml_register_frametable [284]
                0.00    0.00       1/366         caml_stat_alloc [278]
-----------------------------------------------
                                                 <spontaneous>
[62]     0.1    0.01    0.00                 camlBatInnerIO__ac_of_format_1635 [62]
-----------------------------------------------
                                                 <spontaneous>
[63]     0.1    0.01    0.00                 camlBatInnerIO__add_conv_1642 [63]
-----------------------------------------------
                                                 <spontaneous>
[64]     0.1    0.01    0.00                 camlBatInnerIO__doprn_1762 [64]
-----------------------------------------------
                                                 <spontaneous>
[65]     0.1    0.01    0.00                 camlBatInnerIO__fun_2153 [65]
                0.00    0.00 2523648/2523648     camlPervasives__output_1194 [248]
-----------------------------------------------
                                                 <spontaneous>
[66]     0.1    0.01    0.00                 camlBatInnerIO__get_arg_1710 [66]
-----------------------------------------------
                                                 <spontaneous>
[67]     0.1    0.01    0.00                 camlBatInnerIO__incr_ac_1638 [67]
-----------------------------------------------
                                                 <spontaneous>
[68]     0.1    0.01    0.00                 camlBatInnerIO__scan_conv_1594 [68]
-----------------------------------------------
                                                 <spontaneous>
[69]     0.1    0.01    0.00                 camlIbm_march__f_8416 [69]
-----------------------------------------------
                                                 <spontaneous>
[70]     0.1    0.01    0.00                 camlPervasives__print_float_1272 [70]
-----------------------------------------------
                0.00    0.01   13239/13239       caml_empty_minor_heap [37]
[71]     0.1    0.00    0.01   13239         caml_oldify_mopup [71]
                0.01    0.00  807306/1062965     caml_oldify_one [58]
-----------------------------------------------
                0.00    0.00       2/2360834     caml_apply3 [12]
                0.01    0.00 2360832/2360834     camlBatInnerIO__mkprintf_1752 [49]
[72]     0.0    0.01    0.00 2360834         caml_curry4_1 [72]
-----------------------------------------------
                0.00    0.00       1/1139713     camlBatFormat__entry [167]
                0.01    0.00 1139712/1139713     camlBatArray__print_1193 [24]
[73]     0.0    0.01    0.00 1139713         caml_apply4 [73]
                0.00    0.00       1/1           caml_curry5_1 [449]
                0.00    0.00       1/1           caml_curry5_2 [450]
                0.00    0.00       1/1           caml_curry5_3 [451]
-----------------------------------------------
                                                 <spontaneous>
[74]     0.0    0.01    0.00                 camlBatInnerIO__fprintf_1789 [74]
-----------------------------------------------
                                                 <spontaneous>
[75]     0.0    0.01    0.00                 camlBatInnerIO__next_index_1698 [75]
-----------------------------------------------
                                                 <spontaneous>
[76]     0.0    0.00    0.00                 camlBatInnerIO__fun_2412 [76]
                0.00    0.00 1221120/4644987     caml_modify [45]
-----------------------------------------------
                0.00    0.00       3/3           caml_c_call [17]
[77]     0.0    0.00    0.00       3         caml_weak_get_copy [77]
                0.00    0.00       3/31          caml_alloc [60]
                0.00    0.00      21/8488104     caml_page_table_lookup [55]
                0.00    0.00       3/2361068     caml_alloc_small [84]
-----------------------------------------------
                0.00    0.00       1/1           caml_c_call [17]
[78]     0.0    0.00    0.00       1    


Create a new paste based on this one


Comments: