summaryrefslogtreecommitdiff
path: root/eo2test/prof
blob: 3663134e61d8b05b2037e636d4d32b58a3e51750 (plain)
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
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
Flat profile:

Each sample counts as 0.01 seconds.
  %   cumulative   self              self     total           
 time   seconds   seconds    calls  ms/call  ms/call  name    
 44.45      0.04     0.04  1600004     0.00     0.00  eo2_call_resolve_internal
 22.22      0.06     0.02  3200010     0.00     0.00  _dich_func_get
 11.11      0.07     0.01  2000014     0.00     0.00  _eo_data_scope_get
 11.11      0.08     0.01  1600004     0.00     0.00  _eo_kls_itr_func_get
 11.11      0.09     0.01   400008     0.00     0.00  _eo_dov_internal
  0.00      0.09     0.00  1600004     0.00     0.00  _eo_op_internal
  0.00      0.09     0.00  1599987     0.00     0.00  _inc
  0.00      0.09     0.00  1599987     0.00     0.00  _inc
  0.00      0.09     0.00  1599987     0.00     0.00  eo2_inc
  0.00      0.09     0.00   800027     0.00     0.00  _eo_obj_pointer_get
  0.00      0.09     0.00   800021     0.00     0.00  _eo_unref
  0.00      0.09     0.00   800019     0.00     0.00  _eo_ref
  0.00      0.09     0.00   400010     0.00     0.00  _eo2_do_end
  0.00      0.09     0.00   400010     0.00     0.00  eo2_do_end
  0.00      0.09     0.00   400010     0.00     0.00  eo2_do_start
  0.00      0.09     0.00   400007     0.00     0.00  eo_do_internal
  0.00      0.09     0.00       63     0.00     0.00  _dich_chain_alloc
  0.00      0.09     0.00       60     0.00     0.00  _dich_func_set
  0.00      0.09     0.00       38     0.00     0.00  eina_list_data_get
  0.00      0.09     0.00       26     0.00     0.00  _eo_op_class_get
  0.00      0.09     0.00       26     0.00     0.00  _eo_op_id_desc_get
  0.00      0.09     0.00       14     0.00     0.00  _eo_class_pointer_get
  0.00      0.09     0.00       14     0.00     0.00  check
  0.00      0.09     0.00       12     0.00     0.00  eina_list_count
  0.00      0.09     0.00        8     0.00     0.00  _eo2_api_desc_get
  0.00      0.09     0.00        8     0.00     0.00  _eo_class_list_remove_duplicates
  0.00      0.09     0.00        8     0.00     0.00  eina_list_last
  0.00      0.09     0.00        8     0.00     0.00  eina_list_next
  0.00      0.09     0.00        8     0.00     0.00  eina_mempool_alignof
  0.00      0.09     0.00        7     0.00     0.00  _eo_class_id_get
  0.00      0.09     0.00        7     0.00     0.00  _get
  0.00      0.09     0.00        7     0.00     0.00  _get
  0.00      0.09     0.00        7     0.00     0.00  eo2_api_op_id_get
  0.00      0.09     0.00        7     0.00     0.00  eo2_get
  0.00      0.09     0.00        5     0.00     0.00  _set
  0.00      0.09     0.00        5     0.00     0.00  _set
  0.00      0.09     0.00        5     0.00     0.00  eo2_set
  0.00      0.09     0.00        5     0.00     0.00  eo_base_class_get
  0.00      0.09     0.00        4     0.00     0.00  _dich_func_clean_all
  0.00      0.09     0.00        4     0.00     0.00  _eo_class_base_op_init
  0.00      0.09     0.00        4     0.00     0.00  _eo_class_constructor
  0.00      0.09     0.00        4     0.00     0.00  _eo_class_mro_add
  0.00      0.09     0.00        4     0.00     0.00  _eo_class_mro_init
  0.00      0.09     0.00        4     0.00     0.00  _eo_condtor_done
  0.00      0.09     0.00        4     0.00     0.00  _eo_condtor_reset
  0.00      0.09     0.00        4     0.00     0.00  eina_list_prev
  0.00      0.09     0.00        4     0.00     0.00  eina_lock_release
  0.00      0.09     0.00        4     0.00     0.00  eina_lock_take
  0.00      0.09     0.00        4     0.00     0.00  eo_class_free
  0.00      0.09     0.00        4     0.00     0.00  eo_class_name_get
  0.00      0.09     0.00        4     0.00     0.00  eo_class_new
  0.00      0.09     0.00        4     0.00     0.00  eo_parent_set
  0.00      0.09     0.00        4     0.00     0.00  report
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_release
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_release
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_release
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_release
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_take
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_take
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_take
  0.00      0.09     0.00        3     0.00     0.00  eina_lock_take
  0.00      0.09     0.00        3     0.00     0.00  simple_class_get
  0.00      0.09     0.00        2     0.00     0.00  _dich_copy_all
  0.00      0.09     0.00        2     0.00     0.00  _eo2_class_funcs_set
  0.00      0.09     0.00        2     0.00     0.00  _eo2_kls_itr_next
  0.00      0.09     0.00        2     0.00     0.00  _eo_class_check_op_descs
  0.00      0.09     0.00        2     0.00     0.00  _eo_del_internal
  0.00      0.09     0.00        2     0.00     0.00  _eo_free
  0.00      0.09     0.00        2     0.00     0.00  _eo_id_allocate
  0.00      0.09     0.00        2     0.00     0.00  _eo_id_mem_alloc
  0.00      0.09     0.00        2     0.00     0.00  _eo_id_mem_calloc
  0.00      0.09     0.00        2     0.00     0.00  _eo_id_mem_free
  0.00      0.09     0.00        2     0.00     0.00  _eo_id_release
  0.00      0.09     0.00        2     0.00     0.00  _eo_kls_itr_next
  0.00      0.09     0.00        2     0.00     0.00  eo2_destructor
  0.00      0.09     0.00        2     0.00     0.00  eo_class_funcs_set
  0.00      0.09     0.00        2     0.00     0.00  eo_del
  0.00      0.09     0.00        2     0.00     0.00  eo_do_super_internal
  0.00      0.09     0.00        2     0.00     0.00  eo_unref
  0.00      0.09     0.00        1     0.00     0.00  _class_constructor
  0.00      0.09     0.00        1     0.00     0.00  _class_constructor
  0.00      0.09     0.00        1     0.00     0.00  _class_constructor
  0.00      0.09     0.00        1     0.00     0.00  _constructor
  0.00      0.09     0.00        1     0.00     0.00  _constructor
  0.00      0.09     0.00        1     0.00     0.00  _constructor
  0.00      0.09     0.00        1     0.00     0.00  _constructor
  0.00      0.09     0.00        1     0.00     0.00  _destructor
  0.00      0.09     0.00        1     0.00     0.00  _destructor
  0.00      0.09     0.00        1     0.00     0.00  _destructor
  0.00      0.09     0.00        1     0.00     0.00  _destructor
  0.00      0.09     0.00        1     0.00     0.00  _eo_callback_remove_all
  0.00      0.09     0.00        1     0.00     0.00  _eo_callback_remove_all
  0.00      0.09     0.00        1     0.00     0.00  _eo_callbacks_clear
  0.00      0.09     0.00        1     0.00     0.00  _eo_callbacks_clear
  0.00      0.09     0.00        1     0.00     0.00  _eo_free_ids_tables
  0.00      0.09     0.00        1     0.00     0.00  _eo_generic_data_del_all
  0.00      0.09     0.00        1     0.00     0.00  _eo_generic_data_del_all
  0.00      0.09     0.00        1     0.00     0.00  _eo_obj_pointer_get
  0.00      0.09     0.00        1     0.00     0.00  _eo_obj_pointer_get
  0.00      0.09     0.00        1     0.00     0.00  _eo_ref
  0.00      0.09     0.00        1     0.00     0.00  _eo_ref
  0.00      0.09     0.00        1     0.00     0.00  _eo_unref
  0.00      0.09     0.00        1     0.00     0.00  _eo_unref
  0.00      0.09     0.00        1     0.00     0.00  _ev_cb_call
  0.00      0.09     0.00        1     0.00     0.00  _ev_cb_call
  0.00      0.09     0.00        1     0.00     0.00  _get_available_entry
  0.00      0.09     0.00        1     0.00     0.00  _search_tables
  0.00      0.09     0.00        1     0.00     0.00  _wref_destruct
  0.00      0.09     0.00        1     0.00     0.00  _wref_destruct
  0.00      0.09     0.00        1     0.00    90.01  do_batch_test
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_free
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_free
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_free
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_free
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_free
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_new
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_new
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_new
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_new
  0.00      0.09     0.00        1     0.00     0.00  eina_lock_new
  0.00      0.09     0.00        1     0.00     0.00  eo2_add_internal_end
  0.00      0.09     0.00        1     0.00     0.00  eo2_add_internal_start
  0.00      0.09     0.00        1     0.00     0.00  eo2_base_class_get
  0.00      0.09     0.00        1     0.00     0.00  eo2_constructor
  0.00      0.09     0.00        1     0.00     0.00  eo2_event_callback_call
  0.00      0.09     0.00        1     0.00     0.00  eo2_simple_class_get
  0.00      0.09     0.00        1     0.00     0.00  eo2_simple_constructor
  0.00      0.09     0.00        1     0.00     0.00  eo_add_internal
  0.00      0.09     0.00        1     0.00     0.00  eo_init
  0.00      0.09     0.00        1     0.00     0.00  eo_shutdown
  0.00      0.09     0.00        1     0.00    90.01  run_batch

 %         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 11.11% of 0.09 seconds

index % time    self  children    called     name
                0.00    0.09       1/1           main [2]
[1]    100.0    0.00    0.09       1         do_batch_test [1]
                0.00    0.09       1/1           run_batch [3]
                0.00    0.00       1/1           eo2_simple_constructor [15]
                0.00    0.00       3/7           eo2_get [13]
                0.00    0.00       3/1599987     eo2_inc [5]
                0.00    0.00       2/800016      eo2_do_end <cycle 1> [26]
                0.00    0.00       2/2           eo_del [16]
                0.00    0.00       1/1           eo_add_internal [18]
                0.00    0.00       1/800016      eo_do_internal <cycle 1> [28]
                0.00    0.00       1/5           eo2_set [14]
                0.00    0.00       6/14          check [30]
                0.00    0.00       2/400010      eo2_do_start [27]
                0.00    0.00       1/3           simple_class_get [53]
                0.00    0.00       1/1           eo2_simple_class_get [68]
                0.00    0.00       1/1           eo2_add_internal_start [66]
                0.00    0.00       1/1           eo2_add_internal_end [65]
-----------------------------------------------
                                                 <spontaneous>
[2]    100.0    0.00    0.09                 main [2]
                0.00    0.09       1/1           do_batch_test [1]
                0.00    0.00       1/1           eo_init [69]
                0.00    0.00       1/1           eo_shutdown [70]
-----------------------------------------------
                0.00    0.09       1/1           do_batch_test [1]
[3]    100.0    0.00    0.09       1         run_batch [3]
                0.00    0.05 1599984/1599987     eo2_inc [5]
                0.01    0.01  400004/800016      eo_do_internal <cycle 1> [28]
                0.01    0.01  400004/800016      eo2_do_end <cycle 1> [26]
                0.00    0.00       4/5           eo2_set [14]
                0.00    0.00       4/7           eo2_get [13]
                0.00    0.00  400004/400010      eo2_do_start [27]
                0.00    0.00       8/14          check [30]
                0.00    0.00       4/4           report [44]
-----------------------------------------------
                0.00    0.00       1/1600004     eo2_event_callback_call [22]
                0.00    0.00       1/1600004     eo2_constructor [21]
                0.00    0.00       1/1600004     eo2_simple_constructor [15]
                0.00    0.00       2/1600004     eo2_destructor <cycle 1> [20]
                0.00    0.00       5/1600004     eo2_set [14]
                0.00    0.00       7/1600004     eo2_get [13]
                0.04    0.01 1599987/1600004     eo2_inc [5]
[4]     57.8    0.04    0.01 1600004         eo2_call_resolve_internal [4]
                0.01    0.00 1600004/3200010     _dich_func_get [10]
                0.00    0.00  400010/2000014     _eo_data_scope_get [12]
-----------------------------------------------
                0.00    0.00       3/1599987     do_batch_test [1]
                0.00    0.05 1599984/1599987     run_batch [3]
[5]     57.8    0.00    0.05 1599987         eo2_inc [5]
                0.04    0.01 1599987/1600004     eo2_call_resolve_internal [4]
                0.00    0.00 1599987/1599987     _inc [156]
                0.00    0.00       1/7           eo2_api_op_id_get [35]
-----------------------------------------------
[6]     42.2    0.01    0.03  800016+1600045 <cycle 1 as a whole> [6]
                0.01    0.03  400008             _eo_dov_internal <cycle 1> [7]
                0.00    0.00       2             eo2_destructor <cycle 1> [20]
                0.00    0.00       2             _eo_del_internal <cycle 1> [23]
                0.00    0.00  800021             _eo_unref <cycle 1> [159]
                0.00    0.00  400010             eo2_do_end <cycle 1> [26]
                0.00    0.00  400010             _eo2_do_end <cycle 1> [161]
                0.00    0.00  400007             eo_do_internal <cycle 1> [28]
                0.00    0.00       1             _destructor <cycle 1> [199]
-----------------------------------------------
                              400007             eo_do_internal <cycle 1> [28]
                0.00    0.00       1/800016      eo_add_internal [18]
[7]     42.2    0.01    0.03  400008         _eo_dov_internal <cycle 1> [7]
                0.00    0.03 1600002/1600002     _eo_op_internal <cycle 2> [9]
                0.00    0.00  400008/800019      _eo_ref [160]
                              400008             _eo_unref <cycle 1> [159]
-----------------------------------------------
[8]     31.1    0.00    0.03 1600002+6       <cycle 2 as a whole> [8]
                0.00    0.03 1600004             _eo_op_internal <cycle 2> [9]
                0.00    0.00       2             eo_do_super_internal <cycle 2> [24]
                0.00    0.00       1             _constructor <cycle 2> [196]
                0.00    0.00       1             _destructor <cycle 2> [200]
-----------------------------------------------
                                   2             eo_do_super_internal <cycle 2> [24]
                0.00    0.03 1600002/1600002     _eo_dov_internal <cycle 1> [7]
[9]     31.1    0.00    0.03 1600004         _eo_op_internal <cycle 2> [9]
                0.01    0.01 1600004/1600004     _eo_kls_itr_func_get [11]
                0.01    0.00 1600004/2000014     _eo_data_scope_get [12]
                0.00    0.00 1599987/1599987     _inc [157]
                0.00    0.00       7/7           _get [171]
                0.00    0.00       5/5           _set [173]
                0.00    0.00       1/1           _destructor [197]
                0.00    0.00       1/1           _ev_cb_call [214]
                0.00    0.00       1/1           _constructor [194]
                                   1             _destructor <cycle 2> [200]
                                   1             _constructor <cycle 2> [196]
-----------------------------------------------
                0.00    0.00       2/3200010     _eo_kls_itr_next [25]
                0.01    0.00 1600004/3200010     eo2_call_resolve_internal [4]
                0.01    0.00 1600004/3200010     _eo_kls_itr_func_get [11]
[10]    22.2    0.02    0.00 3200010         _dich_func_get [10]
-----------------------------------------------
                0.01    0.01 1600004/1600004     _eo_op_internal <cycle 2> [9]
[11]    22.2    0.01    0.01 1600004         _eo_kls_itr_func_get [11]
                0.01    0.00 1600004/3200010     _dich_func_get [10]
-----------------------------------------------
                0.00    0.00  400010/2000014     eo2_call_resolve_internal [4]
                0.01    0.00 1600004/2000014     _eo_op_internal <cycle 2> [9]
[12]    11.1    0.01    0.00 2000014         _eo_data_scope_get [12]
-----------------------------------------------
                0.00    0.00       3/7           do_batch_test [1]
                0.00    0.00       4/7           run_batch [3]
[13]     0.0    0.00    0.00       7         eo2_get [13]
                0.00    0.00       7/1600004     eo2_call_resolve_internal [4]
                0.00    0.00       7/7           _get [170]
                0.00    0.00       1/7           eo2_api_op_id_get [35]
-----------------------------------------------
                0.00    0.00       1/5           do_batch_test [1]
                0.00    0.00       4/5           run_batch [3]
[14]     0.0    0.00    0.00       5         eo2_set [14]
                0.00    0.00       5/1600004     eo2_call_resolve_internal [4]
                0.00    0.00       5/5           _set [172]
                0.00    0.00       1/7           eo2_api_op_id_get [35]
-----------------------------------------------
                0.00    0.00       1/1           do_batch_test [1]
[15]     0.0    0.00    0.00       1         eo2_simple_constructor [15]
                0.00    0.00       1/1           _constructor [19]
                0.00    0.00       1/1600004     eo2_call_resolve_internal [4]
                0.00    0.00       1/7           eo2_api_op_id_get [35]
-----------------------------------------------
                0.00    0.00       2/2           do_batch_test [1]
[16]     0.0    0.00    0.00       2         eo_del [16]
                0.00    0.00       2/2           eo_unref [17]
                0.00    0.00       2/4           eo_parent_set [43]
-----------------------------------------------
                0.00    0.00       2/2           eo_del [16]
[17]     0.0    0.00    0.00       2         eo_unref [17]
                0.00    0.00       2/800016      _eo_unref <cycle 1> [159]
                0.00    0.00       2/800027      _eo_obj_pointer_get [158]
-----------------------------------------------
                0.00    0.00       1/1           do_batch_test [1]
[18]     0.0    0.00    0.00       1         eo_add_internal [18]
                0.00    0.00       1/800016      _eo_dov_internal <cycle 1> [7]
                0.00    0.00       1/800016      _eo_unref <cycle 1> [159]
                0.00    0.00       1/14          _eo_class_pointer_get [166]
                0.00    0.00       1/2           _eo_id_allocate [186]
                0.00    0.00       1/4           eo_parent_set [43]
                0.00    0.00       1/4           _eo_condtor_reset [180]
                0.00    0.00       1/800019      _eo_ref [160]
-----------------------------------------------
                0.00    0.00       1/1           eo2_simple_constructor [15]
[19]     0.0    0.00    0.00       1         _constructor [19]
                0.00    0.00       1/800016      eo2_do_end <cycle 1> [26]
                0.00    0.00       1/1           eo2_constructor [21]
                0.00    0.00       1/400010      eo2_do_start [27]
-----------------------------------------------
                                   1             _eo_del_internal <cycle 1> [23]
                                   1             _destructor <cycle 1> [199]
[20]     0.0    0.00    0.00       2         eo2_destructor <cycle 1> [20]
                0.00    0.00       2/1600004     eo2_call_resolve_internal [4]
                0.00    0.00       1/7           eo2_api_op_id_get [35]
                0.00    0.00       1/1           _destructor [198]
                                   1             _destructor <cycle 1> [199]
-----------------------------------------------
                0.00    0.00       1/1           _constructor [19]
[21]     0.0    0.00    0.00       1         eo2_constructor [21]
                0.00    0.00       1/1600004     eo2_call_resolve_internal [4]
                0.00    0.00       1/7           eo2_api_op_id_get [35]
                0.00    0.00       1/1           _constructor [195]
-----------------------------------------------
                0.00    0.00       1/1           _eo_del_internal <cycle 1> [23]
[22]     0.0    0.00    0.00       1         eo2_event_callback_call [22]
                0.00    0.00       1/1600004     eo2_call_resolve_internal [4]
                0.00    0.00       1/7           eo2_api_op_id_get [35]
                0.00    0.00       1/1           _ev_cb_call [215]
-----------------------------------------------
                                   2             _eo_unref <cycle 1> [159]
[23]     0.0    0.00    0.00       2         _eo_del_internal <cycle 1> [23]
                0.00    0.00       1/1           eo2_event_callback_call [22]
                0.00    0.00       2/400010      eo2_do_start [27]
                0.00    0.00       2/4           _eo_condtor_reset [180]
                0.00    0.00       2/8           eina_list_next [33]
                0.00    0.00       2/38          eina_list_data_get [29]
                                   2             eo2_do_end <cycle 1> [26]
                                   2             eo_do_internal <cycle 1> [28]
                                   1             eo2_destructor <cycle 1> [20]
-----------------------------------------------
                                   1             _constructor <cycle 2> [196]
                                   1             _destructor <cycle 2> [200]
[24]     0.0    0.00    0.00       2         eo_do_super_internal <cycle 2> [24]
                0.00    0.00       2/2           _eo_kls_itr_next [25]
                0.00    0.00       2/800027      _eo_obj_pointer_get [158]
                0.00    0.00       2/14          _eo_class_pointer_get [166]
                                   2             _eo_op_internal <cycle 2> [9]
-----------------------------------------------
                0.00    0.00       2/2           eo_do_super_internal <cycle 2> [24]
[25]     0.0    0.00    0.00       2         _eo_kls_itr_next [25]
                0.00    0.00       2/3200010     _dich_func_get [10]
-----------------------------------------------
                                   1             _destructor <cycle 1> [199]
                                   2             _eo_del_internal <cycle 1> [23]
                0.00    0.00       1/800016      _constructor [19]
                0.00    0.00       2/800016      do_batch_test [1]
                0.01    0.01  400004/800016      run_batch [3]
[26]     0.0    0.00    0.00  400010         eo2_do_end <cycle 1> [26]
                              400010             _eo2_do_end <cycle 1> [161]
-----------------------------------------------
                0.00    0.00       1/400010      _constructor [19]
                0.00    0.00       1/400010      _destructor <cycle 1> [199]
                0.00    0.00       2/400010      _eo_del_internal <cycle 1> [23]
                0.00    0.00       2/400010      do_batch_test [1]
                0.00    0.00  400004/400010      run_batch [3]
[27]     0.0    0.00    0.00  400010         eo2_do_start [27]
                0.00    0.00  400010/800019      _eo_ref [160]
                0.00    0.00  400008/800027      _eo_obj_pointer_get [158]
                0.00    0.00       2/2           _eo2_kls_itr_next [183]
-----------------------------------------------
                                   2             _eo_del_internal <cycle 1> [23]
                0.00    0.00       1/800016      do_batch_test [1]
                0.01    0.01  400004/800016      run_batch [3]
[28]     0.0    0.00    0.00  400007         eo_do_internal <cycle 1> [28]
                0.00    0.00  400007/800027      _eo_obj_pointer_get [158]
                              400007             _eo_dov_internal <cycle 1> [7]
-----------------------------------------------
                0.00    0.00       2/38          _eo_del_internal <cycle 1> [23]
                0.00    0.00       8/38          _eo_class_mro_init [178]
                0.00    0.00      28/38          eo_class_new [42]
[29]     0.0    0.00    0.00      38         eina_list_data_get [29]
-----------------------------------------------
                0.00    0.00       6/14          do_batch_test [1]
                0.00    0.00       8/14          run_batch [3]
[30]     0.0    0.00    0.00      14         check [30]
-----------------------------------------------
                0.00    0.00      12/12          eo_class_new [42]
[31]     0.0    0.00    0.00      12         eina_list_count [31]
-----------------------------------------------
                0.00    0.00       8/8           _eo_class_list_remove_duplicates [168]
[32]     0.0    0.00    0.00       8         eina_list_last [32]
-----------------------------------------------
                0.00    0.00       2/8           _eo_del_internal <cycle 1> [23]
                0.00    0.00       6/8           eo_class_new [42]
[33]     0.0    0.00    0.00       8         eina_list_next [33]
-----------------------------------------------
                0.00    0.00       2/8           eo_init [69]
                0.00    0.00       6/8           eo_class_new [42]
[34]     0.0    0.00    0.00       8         eina_mempool_alignof [34]
-----------------------------------------------
                0.00    0.00       1/7           eo2_event_callback_call [22]
                0.00    0.00       1/7           eo2_constructor [21]
                0.00    0.00       1/7           eo2_destructor <cycle 1> [20]
                0.00    0.00       1/7           eo2_inc [5]
                0.00    0.00       1/7           eo2_get [13]
                0.00    0.00       1/7           eo2_set [14]
                0.00    0.00       1/7           eo2_simple_constructor [15]
[35]     0.0    0.00    0.00       7         eo2_api_op_id_get [35]
                0.00    0.00       7/8           _eo2_api_desc_get [167]
-----------------------------------------------
                0.00    0.00       1/5           _constructor [194]
                0.00    0.00       1/5           _destructor [197]
                0.00    0.00       1/5           _constructor [195]
                0.00    0.00       1/5           _destructor [198]
                0.00    0.00       1/5           simple_class_get [53]
[36]     0.0    0.00    0.00       5         eo_base_class_get [36]
                0.00    0.00       3/3           eina_lock_take [49]
                0.00    0.00       3/3           eina_lock_release [45]
                0.00    0.00       1/1           eina_lock_new [61]
                0.00    0.00       1/4           eo_class_new [42]
                0.00    0.00       1/1           eina_lock_free [56]
-----------------------------------------------
                0.00    0.00       4/4           _eo_class_list_remove_duplicates [168]
[37]     0.0    0.00    0.00       4         eina_list_prev [37]
-----------------------------------------------
                0.00    0.00       4/4           eo_class_new [42]
[38]     0.0    0.00    0.00       4         eina_lock_release [38]
-----------------------------------------------
                0.00    0.00       4/4           eo_class_new [42]
[39]     0.0    0.00    0.00       4         eina_lock_take [39]
-----------------------------------------------
                0.00    0.00       4/4           eo_shutdown [70]
[40]     0.0    0.00    0.00       4         eo_class_free [40]
                0.00    0.00       4/4           _dich_func_clean_all [174]
-----------------------------------------------
                0.00    0.00       1/4           _constructor [194]
                0.00    0.00       1/4           _destructor [197]
                0.00    0.00       1/4           _constructor [195]
                0.00    0.00       1/4           _destructor [198]
[41]     0.0    0.00    0.00       4         eo_class_name_get [41]
                0.00    0.00       4/14          _eo_class_pointer_get [166]
-----------------------------------------------
                0.00    0.00       1/4           eo_base_class_get [36]
                0.00    0.00       1/4           eo2_base_class_get [67]
                0.00    0.00       1/4           eo2_simple_class_get [68]
                0.00    0.00       1/4           simple_class_get [53]
[42]     0.0    0.00    0.00       4         eo_class_new [42]
                0.00    0.00      28/38          eina_list_data_get [29]
                0.00    0.00      12/12          eina_list_count [31]
                0.00    0.00       6/8           eina_list_next [33]
                0.00    0.00       6/8           eina_mempool_alignof [34]
                0.00    0.00       6/60          _dich_func_set [163]
                0.00    0.00       4/14          _eo_class_pointer_get [166]
                0.00    0.00       4/8           _eo_class_list_remove_duplicates [168]
                0.00    0.00       4/4           _eo_class_mro_init [178]
                0.00    0.00       4/4           _eo_class_base_op_init [175]
                0.00    0.00       4/4           eina_lock_take [39]
                0.00    0.00       4/4           eina_lock_release [38]
                0.00    0.00       4/7           _eo_class_id_get [169]
                0.00    0.00       4/4           _eo_class_constructor [176]
                0.00    0.00       2/2           _eo_class_check_op_descs [184]
                0.00    0.00       2/2           _dich_copy_all [181]
-----------------------------------------------
                0.00    0.00       1/4           eo2_add_internal_start [66]
                0.00    0.00       1/4           eo_add_internal [18]
                0.00    0.00       2/4           eo_del [16]
[43]     0.0    0.00    0.00       4         eo_parent_set [43]
                0.00    0.00       4/800027      _eo_obj_pointer_get [158]
-----------------------------------------------
                0.00    0.00       4/4           run_batch [3]
[44]     0.0    0.00    0.00       4         report [44]
-----------------------------------------------
                0.00    0.00       3/3           eo_base_class_get [36]
[45]     0.0    0.00    0.00       3         eina_lock_release [45]
-----------------------------------------------
                0.00    0.00       3/3           eo2_base_class_get [67]
[46]     0.0    0.00    0.00       3         eina_lock_release [46]
-----------------------------------------------
                0.00    0.00       3/3           eo2_simple_class_get [68]
[47]     0.0    0.00    0.00       3         eina_lock_release [47]
-----------------------------------------------
                0.00    0.00       3/3           simple_class_get [53]
[48]     0.0    0.00    0.00       3         eina_lock_release [48]
-----------------------------------------------
                0.00    0.00       3/3           eo_base_class_get [36]
[49]     0.0    0.00    0.00       3         eina_lock_take [49]
-----------------------------------------------
                0.00    0.00       3/3           eo2_base_class_get [67]
[50]     0.0    0.00    0.00       3         eina_lock_take [50]
-----------------------------------------------
                0.00    0.00       3/3           eo2_simple_class_get [68]
[51]     0.0    0.00    0.00       3         eina_lock_take [51]
-----------------------------------------------
                0.00    0.00       3/3           simple_class_get [53]
[52]     0.0    0.00    0.00       3         eina_lock_take [52]
-----------------------------------------------
                0.00    0.00       1/3           _constructor <cycle 2> [196]
                0.00    0.00       1/3           _destructor <cycle 2> [200]
                0.00    0.00       1/3           do_batch_test [1]
[53]     0.0    0.00    0.00       3         simple_class_get [53]
                0.00    0.00       3/3           eina_lock_take [52]
                0.00    0.00       3/3           eina_lock_release [48]
                0.00    0.00       1/1           eina_lock_new [64]
                0.00    0.00       1/5           eo_base_class_get [36]
                0.00    0.00       1/4           eo_class_new [42]
                0.00    0.00       1/1           eina_lock_free [59]
-----------------------------------------------
                0.00    0.00       1/2           _class_constructor [191]
                0.00    0.00       1/2           _class_constructor [193]
[54]     0.0    0.00    0.00       2         eo_class_funcs_set [54]
                0.00    0.00      26/26          _eo_op_id_desc_get [165]
                0.00    0.00      26/60          _dich_func_set [163]
                0.00    0.00       2/14          _eo_class_pointer_get [166]
-----------------------------------------------
                0.00    0.00       1/1           eo_shutdown [70]
[55]     0.0    0.00    0.00       1         eina_lock_free [55]
-----------------------------------------------
                0.00    0.00       1/1           eo_base_class_get [36]
[56]     0.0    0.00    0.00       1         eina_lock_free [56]
-----------------------------------------------
                0.00    0.00       1/1           eo2_base_class_get [67]
[57]     0.0    0.00    0.00       1         eina_lock_free [57]
-----------------------------------------------
                0.00    0.00       1/1           eo2_simple_class_get [68]
[58]     0.0    0.00    0.00       1         eina_lock_free [58]
-----------------------------------------------
                0.00    0.00       1/1           simple_class_get [53]
[59]     0.0    0.00    0.00       1         eina_lock_free [59]
-----------------------------------------------
                0.00    0.00       1/1           eo_init [69]
[60]     0.0    0.00    0.00       1         eina_lock_new [60]
-----------------------------------------------
                0.00    0.00       1/1           eo_base_class_get [36]
[61]     0.0    0.00    0.00       1         eina_lock_new [61]
-----------------------------------------------
                0.00    0.00       1/1           eo2_base_class_get [67]
[62]     0.0    0.00    0.00       1         eina_lock_new [62]
-----------------------------------------------
                0.00    0.00       1/1           eo2_simple_class_get [68]
[63]     0.0    0.00    0.00       1         eina_lock_new [63]
-----------------------------------------------
                0.00    0.00       1/1           simple_class_get [53]
[64]     0.0    0.00    0.00       1         eina_lock_new [64]
-----------------------------------------------
                0.00    0.00       1/1           do_batch_test [1]
[65]     0.0    0.00    0.00       1         eo2_add_internal_end [65]
-----------------------------------------------
                0.00    0.00       1/1           do_batch_test [1]
[66]     0.0    0.00    0.00       1         eo2_add_internal_start [66]
                0.00    0.00       1/14          _eo_class_pointer_get [166]
                0.00    0.00       1/2           _eo_id_allocate [186]
                0.00    0.00       1/4           eo_parent_set [43]
                0.00    0.00       1/4           _eo_condtor_reset [180]
-----------------------------------------------
                0.00    0.00       1/1           eo2_simple_class_get [68]
[67]     0.0    0.00    0.00       1         eo2_base_class_get [67]
                0.00    0.00       3/3           eina_lock_take [50]
                0.00    0.00       3/3           eina_lock_release [46]
                0.00    0.00       1/1           eina_lock_new [62]
                0.00    0.00       1/4           eo_class_new [42]
                0.00    0.00       1/1           eina_lock_free [57]
-----------------------------------------------
                0.00    0.00       1/1           do_batch_test [1]
[68]     0.0    0.00    0.00       1         eo2_simple_class_get [68]
                0.00    0.00       3/3           eina_lock_take [51]
                0.00    0.00       3/3           eina_lock_release [47]
                0.00    0.00       1/1           eina_lock_new [63]
                0.00    0.00       1/1           eo2_base_class_get [67]
                0.00    0.00       1/4           eo_class_new [42]
                0.00    0.00       1/1           eina_lock_free [58]
-----------------------------------------------
                0.00    0.00       1/1           main [2]
[69]     0.0    0.00    0.00       1         eo_init [69]
                0.00    0.00       2/8           eina_mempool_alignof [34]
                0.00    0.00       1/1           eina_lock_new [60]
-----------------------------------------------
                0.00    0.00       1/1           main [2]
[70]     0.0    0.00    0.00       1         eo_shutdown [70]
                0.00    0.00       4/4           eo_class_free [40]
                0.00    0.00       1/1           _eo_free_ids_tables [205]
                0.00    0.00       1/1           eina_lock_free [55]
-----------------------------------------------
                0.00    0.00 1599987/1599987     eo2_inc [5]
[156]    0.0    0.00    0.00 1599987         _inc [156]
-----------------------------------------------
                0.00    0.00 1599987/1599987     _eo_op_internal <cycle 2> [9]
[157]    0.0    0.00    0.00 1599987         _inc [157]
-----------------------------------------------
                0.00    0.00       2/800027      eo_do_super_internal <cycle 2> [24]
                0.00    0.00       2/800027      eo_unref [17]
                0.00    0.00       4/800027      eo_parent_set [43]
                0.00    0.00       4/800027      _eo_condtor_done [179]
                0.00    0.00  400007/800027      eo_do_internal <cycle 1> [28]
                0.00    0.00  400008/800027      eo2_do_start [27]
[158]    0.0    0.00    0.00  800027         _eo_obj_pointer_get [158]
-----------------------------------------------
                              400008             _eo_dov_internal <cycle 1> [7]
                              400010             _eo2_do_end <cycle 1> [161]
                0.00    0.00       1/800016      eo_add_internal [18]
                0.00    0.00       2/800016      eo_unref [17]
[159]    0.0    0.00    0.00  800021         _eo_unref <cycle 1> [159]
                0.00    0.00       2/2           _eo_free [185]
                                   2             _eo_del_internal <cycle 1> [23]
-----------------------------------------------
                0.00    0.00       1/800019      eo_add_internal [18]
                0.00    0.00  400008/800019      _eo_dov_internal <cycle 1> [7]
                0.00    0.00  400010/800019      eo2_do_start [27]
[160]    0.0    0.00    0.00  800019         _eo_ref [160]
-----------------------------------------------
                              400010             eo2_do_end <cycle 1> [26]
[161]    0.0    0.00    0.00  400010         _eo2_do_end <cycle 1> [161]
                              400010             _eo_unref <cycle 1> [159]
-----------------------------------------------
                0.00    0.00       3/63          _dich_copy_all [181]
                0.00    0.00      60/63          _dich_func_set [163]
[162]    0.0    0.00    0.00      63         _dich_chain_alloc [162]
-----------------------------------------------
                0.00    0.00       6/60          eo_class_new [42]
                0.00    0.00      26/60          eo_class_funcs_set [54]
                0.00    0.00      28/60          _eo2_class_funcs_set [182]
[163]    0.0    0.00    0.00      60         _dich_func_set [163]
                0.00    0.00      60/63          _dich_chain_alloc [162]
-----------------------------------------------
                0.00    0.00      26/26          _eo_op_id_desc_get [165]
[164]    0.0    0.00    0.00      26         _eo_op_class_get [164]
-----------------------------------------------
                0.00    0.00      26/26          eo_class_funcs_set [54]
[165]    0.0    0.00    0.00      26         _eo_op_id_desc_get [165]
                0.00    0.00      26/26          _eo_op_class_get [164]
-----------------------------------------------
                0.00    0.00       1/14          eo2_add_internal_start [66]
                0.00    0.00       1/14          eo_add_internal [18]
                0.00    0.00       2/14          eo_do_super_internal <cycle 2> [24]
                0.00    0.00       2/14          eo_class_funcs_set [54]
                0.00    0.00       4/14          eo_class_name_get [41]
                0.00    0.00       4/14          eo_class_new [42]
[166]    0.0    0.00    0.00      14         _eo_class_pointer_get [166]
-----------------------------------------------
                0.00    0.00       1/8           _eo2_class_funcs_set [182]
                0.00    0.00       7/8           eo2_api_op_id_get [35]
[167]    0.0    0.00    0.00       8         _eo2_api_desc_get [167]
-----------------------------------------------
                0.00    0.00       4/8           _eo_class_mro_init [178]
                0.00    0.00       4/8           eo_class_new [42]
[168]    0.0    0.00    0.00       8         _eo_class_list_remove_duplicates [168]
                0.00    0.00       8/8           eina_list_last [32]
                0.00    0.00       4/4           eina_list_prev [37]
-----------------------------------------------
                0.00    0.00       3/7           _eo_class_constructor [176]
                0.00    0.00       4/7           eo_class_new [42]
[169]    0.0    0.00    0.00       7         _eo_class_id_get [169]
-----------------------------------------------
                0.00    0.00       7/7           eo2_get [13]
[170]    0.0    0.00    0.00       7         _get [170]
-----------------------------------------------
                0.00    0.00       7/7           _eo_op_internal <cycle 2> [9]
[171]    0.0    0.00    0.00       7         _get [171]
-----------------------------------------------
                0.00    0.00       5/5           eo2_set [14]
[172]    0.0    0.00    0.00       5         _set [172]
-----------------------------------------------
                0.00    0.00       5/5           _eo_op_internal <cycle 2> [9]
[173]    0.0    0.00    0.00       5         _set [173]
-----------------------------------------------
                0.00    0.00       4/4           eo_class_free [40]
[174]    0.0    0.00    0.00       4         _dich_func_clean_all [174]
-----------------------------------------------
                0.00    0.00       4/4           eo_class_new [42]
[175]    0.0    0.00    0.00       4         _eo_class_base_op_init [175]
-----------------------------------------------
                0.00    0.00       4/4           eo_class_new [42]
[176]    0.0    0.00    0.00       4         _eo_class_constructor [176]
                0.00    0.00       3/7           _eo_class_id_get [169]
                0.00    0.00       2/2           _eo2_class_funcs_set [182]
                0.00    0.00       1/1           _class_constructor [192]
                0.00    0.00       1/1           _class_constructor [193]
                0.00    0.00       1/1           _class_constructor [191]
-----------------------------------------------
                                   2             _eo_class_mro_add [177]
                0.00    0.00       4/4           _eo_class_mro_init [178]
[177]    0.0    0.00    0.00       4+2       _eo_class_mro_add [177]
                                   2             _eo_class_mro_add [177]
-----------------------------------------------
                0.00    0.00       4/4           eo_class_new [42]
[178]    0.0    0.00    0.00       4         _eo_class_mro_init [178]
                0.00    0.00       8/38          eina_list_data_get [29]
                0.00    0.00       4/4           _eo_class_mro_add [177]
                0.00    0.00       4/8           _eo_class_list_remove_duplicates [168]
-----------------------------------------------
                0.00    0.00       1/4           _constructor [194]
                0.00    0.00       1/4           _destructor [197]
                0.00    0.00       1/4           _constructor [195]
                0.00    0.00       1/4           _destructor [198]
[179]    0.0    0.00    0.00       4         _eo_condtor_done [179]
                0.00    0.00       4/800027      _eo_obj_pointer_get [158]
-----------------------------------------------
                0.00    0.00       1/4           eo2_add_internal_start [66]
                0.00    0.00       1/4           eo_add_internal [18]
                0.00    0.00       2/4           _eo_del_internal <cycle 1> [23]
[180]    0.0    0.00    0.00       4         _eo_condtor_reset [180]
-----------------------------------------------
                0.00    0.00       2/2           eo_class_new [42]
[181]    0.0    0.00    0.00       2         _dich_copy_all [181]
                0.00    0.00       3/63          _dich_chain_alloc [162]
-----------------------------------------------
                0.00    0.00       2/2           _eo_class_constructor [176]
[182]    0.0    0.00    0.00       2         _eo2_class_funcs_set [182]
                0.00    0.00      28/60          _dich_func_set [163]
                0.00    0.00       1/8           _eo2_api_desc_get [167]
-----------------------------------------------
                0.00    0.00       2/2           eo2_do_start [27]
[183]    0.0    0.00    0.00       2         _eo2_kls_itr_next [183]
-----------------------------------------------
                0.00    0.00       2/2           eo_class_new [42]
[184]    0.0    0.00    0.00       2         _eo_class_check_op_descs [184]
-----------------------------------------------
                0.00    0.00       2/2           _eo_unref <cycle 1> [159]
[185]    0.0    0.00    0.00       2         _eo_free [185]
                0.00    0.00       2/2           _eo_id_release [190]
-----------------------------------------------
                0.00    0.00       1/2           eo2_add_internal_start [66]
                0.00    0.00       1/2           eo_add_internal [18]
[186]    0.0    0.00    0.00       2         _eo_id_allocate [186]
                0.00    0.00       1/1           _get_available_entry [216]
                0.00    0.00       1/1           _search_tables [217]
-----------------------------------------------
                0.00    0.00       2/2           _eo_id_mem_calloc [188]
[187]    0.0    0.00    0.00       2         _eo_id_mem_alloc [187]
-----------------------------------------------
                0.00    0.00       2/2           _search_tables [217]
[188]    0.0    0.00    0.00       2         _eo_id_mem_calloc [188]
                0.00    0.00       2/2           _eo_id_mem_alloc [187]
-----------------------------------------------
                0.00    0.00       2/2           _eo_free_ids_tables [205]
[189]    0.0    0.00    0.00       2         _eo_id_mem_free [189]
-----------------------------------------------
                0.00    0.00       2/2           _eo_free [185]
[190]    0.0    0.00    0.00       2         _eo_id_release [190]
-----------------------------------------------
                0.00    0.00       1/1           _eo_class_constructor [176]
[191]    0.0    0.00    0.00       1         _class_constructor [191]
                0.00    0.00       1/2           eo_class_funcs_set [54]
-----------------------------------------------
                0.00    0.00       1/1           _eo_class_constructor [176]
[192]    0.0    0.00    0.00       1         _class_constructor [192]
-----------------------------------------------
                0.00    0.00       1/1           _eo_class_constructor [176]
[193]    0.0    0.00    0.00       1         _class_constructor [193]
                0.00    0.00       1/2           eo_class_funcs_set [54]
-----------------------------------------------
                0.00    0.00       1/1           _eo_op_internal <cycle 2> [9]
[194]    0.0    0.00    0.00       1         _constructor [194]
                0.00    0.00       1/4           eo_class_name_get [41]
                0.00    0.00       1/5           eo_base_class_get [36]
                0.00    0.00       1/4           _eo_condtor_done [179]
-----------------------------------------------
                0.00    0.00       1/1           eo2_constructor [21]
[195]    0.0    0.00    0.00       1         _constructor [195]
                0.00    0.00       1/5           eo_base_class_get [36]
                0.00    0.00       1/4           eo_class_name_get [41]
                0.00    0.00       1/4           _eo_condtor_done [179]
-----------------------------------------------
                                   1             _eo_op_internal <cycle 2> [9]
[196]    0.0    0.00    0.00       1         _constructor <cycle 2> [196]
                0.00    0.00       1/3           simple_class_get [53]
                                   1             eo_do_super_internal <cycle 2> [24]
-----------------------------------------------
                0.00    0.00       1/1           _eo_op_internal <cycle 2> [9]
[197]    0.0    0.00    0.00       1         _destructor [197]
                0.00    0.00       1/4           eo_class_name_get [41]
                0.00    0.00       1/5           eo_base_class_get [36]
                0.00    0.00       1/1           _eo_generic_data_del_all [206]
                0.00    0.00       1/1           _wref_destruct [218]
                0.00    0.00       1/1           _eo_callback_remove_all [201]
                0.00    0.00       1/4           _eo_condtor_done [179]
-----------------------------------------------
                0.00    0.00       1/1           eo2_destructor <cycle 1> [20]
[198]    0.0    0.00    0.00       1         _destructor [198]
                0.00    0.00       1/5           eo_base_class_get [36]
                0.00    0.00       1/4           eo_class_name_get [41]
                0.00    0.00       1/1           _eo_generic_data_del_all [207]
                0.00    0.00       1/1           _eo_callback_remove_all [202]
                0.00    0.00       1/1           _wref_destruct [219]
                0.00    0.00       1/4           _eo_condtor_done [179]
-----------------------------------------------
                                   1             eo2_destructor <cycle 1> [20]
[199]    0.0    0.00    0.00       1         _destructor <cycle 1> [199]
                0.00    0.00       1/400010      eo2_do_start [27]
                                   1             eo2_destructor <cycle 1> [20]
                                   1             eo2_do_end <cycle 1> [26]
-----------------------------------------------
                                   1             _eo_op_internal <cycle 2> [9]
[200]    0.0    0.00    0.00       1         _destructor <cycle 2> [200]
                0.00    0.00       1/3           simple_class_get [53]
                                   1             eo_do_super_internal <cycle 2> [24]
-----------------------------------------------
                0.00    0.00       1/1           _destructor [197]
[201]    0.0    0.00    0.00       1         _eo_callback_remove_all [201]
-----------------------------------------------
                0.00    0.00       1/1           _destructor [198]
[202]    0.0    0.00    0.00       1         _eo_callback_remove_all [202]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [214]
[203]    0.0    0.00    0.00       1         _eo_callbacks_clear [203]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [215]
[204]    0.0    0.00    0.00       1         _eo_callbacks_clear [204]
-----------------------------------------------
                0.00    0.00       1/1           eo_shutdown [70]
[205]    0.0    0.00    0.00       1         _eo_free_ids_tables [205]
                0.00    0.00       2/2           _eo_id_mem_free [189]
-----------------------------------------------
                0.00    0.00       1/1           _destructor [197]
[206]    0.0    0.00    0.00       1         _eo_generic_data_del_all [206]
-----------------------------------------------
                0.00    0.00       1/1           _destructor [198]
[207]    0.0    0.00    0.00       1         _eo_generic_data_del_all [207]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [214]
[208]    0.0    0.00    0.00       1         _eo_obj_pointer_get [208]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [215]
[209]    0.0    0.00    0.00       1         _eo_obj_pointer_get [209]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [214]
[210]    0.0    0.00    0.00       1         _eo_ref [210]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [215]
[211]    0.0    0.00    0.00       1         _eo_ref [211]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [214]
[212]    0.0    0.00    0.00       1         _eo_unref [212]
-----------------------------------------------
                0.00    0.00       1/1           _ev_cb_call [215]
[213]    0.0    0.00    0.00       1         _eo_unref [213]
-----------------------------------------------
                0.00    0.00       1/1           _eo_op_internal <cycle 2> [9]
[214]    0.0    0.00    0.00       1         _ev_cb_call [214]
                0.00    0.00       1/1           _eo_obj_pointer_get [208]
                0.00    0.00       1/1           _eo_ref [210]
                0.00    0.00       1/1           _eo_unref [212]
                0.00    0.00       1/1           _eo_callbacks_clear [203]
-----------------------------------------------
                0.00    0.00       1/1           eo2_event_callback_call [22]
[215]    0.0    0.00    0.00       1         _ev_cb_call [215]
                0.00    0.00       1/1           _eo_obj_pointer_get [209]
                0.00    0.00       1/1           _eo_ref [211]
                0.00    0.00       1/1           _eo_callbacks_clear [204]
                0.00    0.00       1/1           _eo_unref [213]
-----------------------------------------------
                0.00    0.00       1/1           _eo_id_allocate [186]
[216]    0.0    0.00    0.00       1         _get_available_entry [216]
-----------------------------------------------
                0.00    0.00       1/1           _eo_id_allocate [186]
[217]    0.0    0.00    0.00       1         _search_tables [217]
                0.00    0.00       2/2           _eo_id_mem_calloc [188]
-----------------------------------------------
                0.00    0.00       1/1           _destructor [197]
[218]    0.0    0.00    0.00       1         _wref_destruct [218]
-----------------------------------------------
                0.00    0.00       1/1           _destructor [198]
[219]    0.0    0.00    0.00       1         _wref_destruct [219]
-----------------------------------------------

 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 is 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

 [191] _class_constructor (eo_base_class.c) [190] _eo_id_release (eo_ptr_indirection.x) [45] eina_lock_release (eina_inline_lock_posix.x)
 [192] _class_constructor (eo2_base_class.c) [11] _eo_kls_itr_func_get (eo.c) [46] eina_lock_release (eina_inline_lock_posix.x)
 [193] _class_constructor (eo_simple.c) [25] _eo_kls_itr_next (eo.c) [47] eina_lock_release (eina_inline_lock_posix.x)
 [194] _constructor (eo_base_class.c) [158] _eo_obj_pointer_get (eo_ptr_indirection.x) [48] eina_lock_release (eina_inline_lock_posix.x)
 [195] _constructor (eo2_base_class.c) [208] _eo_obj_pointer_get (eo_ptr_indirection.x) [39] eina_lock_take (eina_inline_lock_posix.x)
  [19] _constructor (eo2_simple.c) [209] _eo_obj_pointer_get (eo_ptr_indirection.x) [49] eina_lock_take (eina_inline_lock_posix.x)
 [196] _constructor (eo_simple.c) [164] _eo_op_class_get (eo.c) [50] eina_lock_take (eina_inline_lock_posix.x)
 [197] _destructor (eo_base_class.c) [165] _eo_op_id_desc_get (eo.c) [51] eina_lock_take (eina_inline_lock_posix.x)
 [198] _destructor (eo2_base_class.c) [9] _eo_op_internal (eo.c) [52] eina_lock_take (eina_inline_lock_posix.x)
 [199] _destructor (eo2_simple.c) [160] _eo_ref (eo_private.h) [34] eina_mempool_alignof (eina_inline_mempool.x)
 [200] _destructor (eo_simple.c) [210] _eo_ref (eo_private.h) [65] eo2_add_internal_end
 [162] _dich_chain_alloc (eo.c) [211] _eo_ref (eo_private.h) [66] eo2_add_internal_start
 [181] _dich_copy_all (eo.c) [159] _eo_unref (eo_private.h) [35] eo2_api_op_id_get
 [174] _dich_func_clean_all (eo.c) [212] _eo_unref (eo_private.h) [67] eo2_base_class_get
  [10] _dich_func_get (eo.c) [213] _eo_unref (eo_private.h) [4] eo2_call_resolve_internal
 [163] _dich_func_set (eo.c) [214] _ev_cb_call (eo_base_class.c) [21] eo2_constructor
 [167] _eo2_api_desc_get (eo.c) [215] _ev_cb_call (eo2_base_class.c) [20] eo2_destructor
 [182] _eo2_class_funcs_set  [170] _get (eo2_simple.c)    [26] eo2_do_end
 [161] _eo2_do_end (eo.c)    [171] _get (eo_simple.c)     [27] eo2_do_start
 [183] _eo2_kls_itr_next (eo.c) [216] _get_available_entry (eo_ptr_indirection.x) [22] eo2_event_callback_call
 [201] _eo_callback_remove_all (eo_base_class.c) [156] _inc (eo2_simple.c) [13] eo2_get
 [202] _eo_callback_remove_all (eo2_base_class.c) [157] _inc (eo_simple.c) [5] eo2_inc
 [203] _eo_callbacks_clear (eo_base_class.c) [217] _search_tables (eo_ptr_indirection.x) [14] eo2_set
 [204] _eo_callbacks_clear (eo2_base_class.c) [172] _set (eo2_simple.c) [68] eo2_simple_class_get
 [175] _eo_class_base_op_init (eo.c) [173] _set (eo_simple.c) [15] eo2_simple_constructor
 [184] _eo_class_check_op_descs (eo.c) [218] _wref_destruct (eo_base_class.c) [18] eo_add_internal
 [176] _eo_class_constructor (eo.c) [219] _wref_destruct (eo2_base_class.c) [36] eo_base_class_get
 [169] _eo_class_id_get (eo.c) [30] check (eo2-bench.c)   [40] eo_class_free (eo.c)
 [168] _eo_class_list_remove_duplicates (eo.c) [1] do_batch_test (eo2-bench.c) [54] eo_class_funcs_set
 [177] _eo_class_mro_add (eo.c) [31] eina_list_count (eina_inline_list.x) [41] eo_class_name_get
 [178] _eo_class_mro_init (eo.c) [29] eina_list_data_get (eina_inline_list.x) [42] eo_class_new
 [166] _eo_class_pointer_get (eo.c) [32] eina_list_last (eina_inline_list.x) [16] eo_del
 [179] _eo_condtor_done       [33] eina_list_next (eina_inline_list.x) [28] eo_do_internal
 [180] _eo_condtor_reset (eo_private.h) [37] eina_list_prev (eina_inline_list.x) [24] eo_do_super_internal
  [12] _eo_data_scope_get (eo.c) [55] eina_lock_free (eina_inline_lock_posix.x) [69] eo_init
  [23] _eo_del_internal (eo_private.h) [56] eina_lock_free (eina_inline_lock_posix.x) [43] eo_parent_set
   [7] _eo_dov_internal (eo.c) [57] eina_lock_free (eina_inline_lock_posix.x) [70] eo_shutdown
 [185] _eo_free (eo_private.h) [58] eina_lock_free (eina_inline_lock_posix.x) [17] eo_unref
 [205] _eo_free_ids_tables (eo_ptr_indirection.x) [59] eina_lock_free (eina_inline_lock_posix.x) [44] report (eo2-bench.c)
 [206] _eo_generic_data_del_all (eo_base_class.c) [60] eina_lock_new (eina_inline_lock_posix.x) [3] run_batch (eo2-bench.c)
 [207] _eo_generic_data_del_all (eo2_base_class.c) [61] eina_lock_new (eina_inline_lock_posix.x) [53] simple_class_get
 [186] _eo_id_allocate (eo_ptr_indirection.x) [62] eina_lock_new (eina_inline_lock_posix.x) [6] <cycle 1>
 [187] _eo_id_mem_alloc (eo_ptr_indirection.x) [63] eina_lock_new (eina_inline_lock_posix.x) [8] <cycle 2>
 [188] _eo_id_mem_calloc (eo_ptr_indirection.x) [64] eina_lock_new (eina_inline_lock_posix.x)
 [189] _eo_id_mem_free (eo_ptr_indirection.x) [38] eina_lock_release (eina_inline_lock_posix.x)