-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcallgrind.out.19548
22195 lines (21439 loc) · 240 KB
/
callgrind.out.19548
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
# callgrind format
version: 1
creator: callgrind-3.13.0
pid: 19548
cmd: ./build/ANUBiS/bin/Release-x64/ANUBiS_exe ./c66
part: 1
desc: I1 cache:
desc: D1 cache:
desc: LL cache:
desc: Timerange: Basic block 0 - 1004861934
desc: Trigger: Program termination
positions: line
events: Ir
summary: 7398621893
ob=(4) /lib/x86_64-linux-gnu/libm-2.27.so
fl=(82) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/ifunc-sse4_1.h
fn=(334) truncf
29 5
fi=(201) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_truncf.c
+1 1
fe=(82)
fn=(344) trunc
29 5
fi=(202) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_trunc.c
+1 1
fe=(82)
fn=(316) rintf
29 5
fi=(203) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_rintf.c
+1 1
fe=(82)
fn=(304) ceil
29 5
fi=(204) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_ceil.c
+1 1
fe=(82)
fn=(326) floor
29 5
fi=(205) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_floor.c
+1 1
fe=(82)
fn=(296) rint
29 5
fi=(206) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_rint.c
+1 1
fe=(82)
fn=(302) ceilf
29 5
fi=(207) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_ceilf.c
+1 1
fe=(82)
fn=(324) floorf
29 5
fi=(208) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_floorf.c
+1 1
fe=(82)
fl=(78) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/ifunc-fma.h
fn=(322) sinf
30 1
-1 1
+1 2
-1 3
fi=(209) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_sinf.c
-3 1
fe=(78)
fn=(310) log2f@@GLIBC_2.27
30 1
-1 1
+1 2
-1 3
fi=(210) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_log2f.c
-3 1
fe=(78)
fn=(288) expf@@GLIBC_2.27
30 1
-1 1
+1 2
-1 3
fi=(211) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_expf.c
-3 1
fe=(78)
fn=(282) cosf
30 1
-1 1
+1 2
-1 3
fi=(212) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_cosf.c
-3 1
fe=(78)
fn=(294) logf@@GLIBC_2.27
30 1
-1 1
+1 2
-1 3
fi=(213) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_logf.c
-3 1
fe=(78)
fn=(298) sincosf
30 1
-1 1
+1 2
-1 3
fi=(214) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_sincosf.c
-3 1
fe=(78)
fn=(300) powf@@GLIBC_2.27
30 1
-1 1
+1 2
-1 4
fn=(332) exp2f@@GLIBC_2.27
30 1
-1 1
+1 2
-1 3
fi=(215) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_exp2f.c
-3 1
fe=(78)
fl=(79) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/ifunc-avx-fma4.h
fn=(284) __exp_finite
33 2
-1 1
+1 2
-1 2
fi=(80) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_exp.c
-8 1
fe=(79)
fn=(312) __log_finite
33 2
-1 1
+1 2
-1 2
fi=(85) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_log.c
-8 1
fe=(79)
fn=(290) cos
33 2
-1 1
+1 2
-1 2
fi=(81) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/s_sin.c
+2 1
fe=(79)
fn=(340) sin
33 2
-1 1
+1 2
-1 2
fi=(81)
-5 1
fe=(79)
fn=(336) __atan2_finite
33 2
-1 1
+1 2
-1 2
fi=(87) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_atan2.c
-8 1
fe=(79)
fl=(108) ???
fn=(490) 0x000000000000bd10
0 17
fn=(3138) 0x000000000000bcd0
0 8
cob=(2) ???
cfi=(18) ???
cfn=(3144) 0x0000000005e5ba70
calls=1 0
0 290
0 1
cfn=(3148) 0x000000000000bc40
calls=1 0
0 8
0 3
fn=(3148)
0 8
fl=(83) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/ifunc-fma4.h
fn=(318) __acos_finite
32 2
-1 1
+1 2
-1 2
fi=(86) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_asin.c
+2 1
fe=(83)
fn=(306) __pow_finite
32 2
-1 1
+1 2
-1 2
fi=(84) /build/glibc-2ORdQG/glibc-2.27/math/../sysdeps/x86_64/fpu/multiarch/e_pow.c
-7 1
fe=(83)
fn=(328) __asin_finite
32 2
-1 1
+1 2
-1 2
fi=(86)
-6 1
fe=(83)
ob=(10) /media/jmaerte/DATA2/CLionProjects/ANUBiS/build/ANUBiS/shlib/Release-x64/libALGEBRA.so.0.1
fl=(156) ???
fn=(2420) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_replace(unsigned long, unsigned long, char const*, unsigned long) [clone .constprop.17]
0 4260
cob=(3) /lib/x86_64-linux-gnu/libc-2.27.so
cfi=(137) /build/glibc-2ORdQG/glibc-2.27/string/../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
cfn=(1276) __memcpy_avx_unaligned_erms
calls=8 217
0 120
0 8
0 2110
cfn=(2422) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_mutate(unsigned long, unsigned long, char const*, unsigned long)
calls=47 0
0 8706
0 119
fn=(2492) jmaerte::arith::vec::vector_factory::get_factory(unsigned int)
0 336820
fn=(2712) jmaerte::arith::vec::AT(jmaerte::arith::svec const&, int)
0 265818
fn=(2718) void std::__insertion_sort<__gnu_cxx::__normal_iterator<jmaerte::arith::svec*, std::vector<jmaerte::arith::svec, std::allocator<jmaerte::arith::svec> > >, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}> >(__gnu_cxx::__normal_iterator<jmaerte::arith::svec*, std::vector<jmaerte::arith::svec, std::allocator<jmaerte::arith::svec> > >, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}>, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}>) [clone .isra.380]
0 949
cob=(3)
cfi=(137)
cfn=(1276)
calls=6 217
0 117
0 6
0 1245
cfn=(2716) jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}::operator()(jmaerte::arith::svec const&, jmaerte::arith::svec const&) const [clone .isra.23]
calls=405 0
0 44756
0 2658
cfn=(2716)
calls=36 0
0 4110
0 1596
cfn=(2716)
calls=399 0
0 43946
0 3338
fn=(2730) jmaerte::algebra::reduction::get_block_size(std::vector<jmaerte::arith::svec, std::allocator<jmaerte::arith::svec> >&, int)
0 560
cfn=(2466) jmaerte::arith::vec::AT(jmaerte::arith::svec const&, int) [clone .constprop.28]
calls=35 0
0 350
0 1056
cfn=(2466)
calls=6 0
0 60
0 66
cfn=(2466)
calls=33 0
0 330
0 553
fn=(2398) void std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct<char*>(char*, char*, std::forward_iterator_tag) [clone .isra.243]
0 2880
cob=(7) /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
cfi=(109) ???
cfn=(1284) operator new(unsigned long)
calls=5 0
0 265
cob=(1) /lib/x86_64-linux-gnu/ld-2.27.so
cfi=(92) /build/glibc-2ORdQG/glibc-2.27/elf/../sysdeps/x86_64/dl-trampoline.h
cfn=(375) _dl_runtime_resolve_xsave'2
calls=1 71
0 975
0 10
0 36
cob=(3)
cfi=(137)
cfn=(1276)
calls=6 217
0 66
0 6
0 162
cob=(3)
cfi=(137)
cfn=(1276)
calls=53 217
0 814
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1521
0 58
0 420
fn=(2502) std::_Rb_tree<jmaerte::arith::num_node, std::pair<jmaerte::arith::num_node const, unsigned int>, std::_Select1st<std::pair<jmaerte::arith::num_node const, unsigned int> >, jmaerte::arith::num::comp::UNSIGNED_COMPARATOR, std::allocator<std::pair<jmaerte::arith::num_node const, unsigned int> > >::_M_get_insert_unique_pos(jmaerte::arith::num_node const&)
0 81
cob=(9) /media/jmaerte/DATA2/CLionProjects/ANUBiS/build/ANUBiS/shlib/Release-x64/libARITHMETIC.so.0.1
cfi=(139) ???
cfn=(2512) jmaerte::arith::num::comp::UNSIGNED_COMPARATOR::operator()(jmaerte::arith::num_node const&, jmaerte::arith::num_node const&)
calls=1 0
0 26
0 1
0 35
cob=(9)
cfi=(139)
cfn=(2512)
calls=1 0
0 26
0 1
0 61
fn=(2506) void std::__sort<__gnu_cxx::__normal_iterator<jmaerte::arith::svec*, std::vector<jmaerte::arith::svec, std::allocator<jmaerte::arith::svec> > >, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}> >(__gnu_cxx::__normal_iterator<jmaerte::arith::svec*, std::vector<jmaerte::arith::svec, std::allocator<jmaerte::arith::svec> > >, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}>, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}>)
0 492
cfn=(2714) void std::__introsort_loop<__gnu_cxx::__normal_iterator<jmaerte::arith::svec*, std::vector<jmaerte::arith::svec, std::allocator<jmaerte::arith::svec> > >, long, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}> >(__gnu_cxx::__normal_iterator<jmaerte::arith::svec*, std::vector<jmaerte::arith::svec, std::allocator<jmaerte::arith::svec> > >, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}>, long, __gnu_cxx::__ops::_Iter_comp_iter<jmaerte::algebra::reduction::{lambda(jmaerte::arith::svec const&, jmaerte::arith::svec const&)#1}>)
calls=19 0
0 3811
0 84
cfn=(2718)
calls=2 0
0 8330
0 30
cfn=(2716)
calls=2 0
0 220
0 305
cfn=(2718)
calls=17 0
0 32940
0 17
fn=(1606) _GLOBAL__I_65535_0_eigen.cpp.o.14344
0 2
cfn=(1608) _GLOBAL__sub_I_matrix.cpp
calls=1 0
0 2812
0 2
cfn=(1620) _GLOBAL__sub_I_reduction.cpp
calls=1 0
0 118
fn=(1608)
0 7
cob=(1)
cfi=(92)
cfn=(374) _dl_runtime_resolve_xsave
calls=1 71
0 1153
0 5
0 4
cob=(1)
cfi=(92)
cfn=(374)
calls=1 71
0 1626
0 5
0 12
fn=(2392) std::char_traits<char>::length(char const*)
0 409
cob=(3)
cfi=(133) /build/glibc-2ORdQG/glibc-2.27/string/../sysdeps/x86_64/multiarch/strlen-avx2.S
cfn=(912) __strlen_avx2
calls=408 52
0 7768
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1473
0 413
fn=(2466)
0 16558480
fn=(3010) 0x0000000000008640
0 8
cob=(2)
cfi=(18)
cfn=(3016) 0x00000000061f5d10
calls=1 0
0 352
0 1
cfn=(3020) 0x00000000000085b0
calls=1 0
0 8
0 3
fn=(3020)
0 8
fn=(2390) jmaerte::algebra::reduction::smith(jmaerte::algebra::s_int_matrix)
0 126
cfn=(2392)
calls=6 0
0 1564
0 24
cfn=(2398)
calls=6 0
0 1751
0 24
cob=(8) /media/jmaerte/DATA2/CLionProjects/ANUBiS/build/ANUBiS/shlib/Release-x64/libOUTPUT.so.0.1
cfi=(121) ???
cfn=(1562) jmaerte::output::logger::register_channel(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::ostream&)
calls=5 0
0 16615
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 4930
0 10
0 36
cob=(7)
cfi=(109)
cfn=(2412) std::chrono::_V2::steady_clock::now()
calls=5 0
0 175
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1295
0 10
0 36
cfn=(2392)
calls=6 0
0 150
0 30
cfn=(2398)
calls=6 0
0 1490
0 42
cfn=(2418) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&)
calls=6 0
0 2961
0 30
cfn=(2428) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > std::operator+<char, std::char_traits<char>, std::allocator<char> >(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >&&, char const*)
calls=6 0
0 486
0 30
cob=(8)
cfi=(121)
cfn=(1414) jmaerte::output::logger::log(unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)
calls=5 0
0 8475
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 3238
0 10
0 30
cob=(7)
cfi=(109)
cfn=(1398) operator delete(void*)
calls=6 0
0 432
0 6
0 72
cob=(7)
cfi=(109)
cfn=(1284)
calls=6 0
0 480
0 6
0 18
cob=(9)
cfi=(139)
cfn=(1524) jmaerte::arith::vec::std_factory::std_factory()
calls=5 0
0 43245
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 10213
0 10
0 360
cob=(11) /media/jmaerte/DATA2/CLionProjects/ANUBiS/build/ANUBiS/shlib/Release-x64/libANUBiS.so.0.1
cfi=(158) ???
cfn=(2638) std::_Function_handler<jmaerte::arith::svec (int, unsigned int), jmaerte::anubis::s_list<false>::boundary(unsigned int)::{lambda(int, unsigned int)#2}>::_M_invoke(std::_Any_data const&, int&&, unsigned int&&)
calls=5 0
0 11787
cob=(11)
cfi=(158)
cfn=(2440) std::_Function_handler<jmaerte::arith::svec (int, unsigned int), jmaerte::anubis::s_list<false>::boundary(unsigned int)::{lambda(int, unsigned int)#1}>::_M_invoke(std::_Any_data const&, int&&, unsigned int&&)
calls=1 0
0 1442
0 66600
cob=(11)
cfi=(158)
cfn=(2638)
calls=13285 0
0 42265990
cob=(11)
cfi=(158)
cfn=(2440)
calls=35 0
0 12482
0 119985
cob=(7)
cfi=(109)
cfn=(2264) std::ostream::operator<<(int)
calls=16 0
0 6790
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1318
0 21
0 51
cfn=(2392)
calls=17 0
0 357
0 68
cob=(7)
cfi=(109)
cfn=(1420) std::basic_ostream<char, std::char_traits<char> >& std::__ostream_insert<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*, long)
calls=16 0
0 3904
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1807
0 21
0 68
cob=(7)
cfi=(109)
cfn=(2238) std::ostream& std::ostream::_M_insert<unsigned long>(unsigned long)
calls=16 0
0 6704
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1505
0 21
0 51
cfn=(2392)
calls=17 0
0 425
0 68
cob=(7)
cfi=(109)
cfn=(1420)
calls=17 0
0 6171
0 17
0 51
cob=(7)
cfi=(109)
cfn=(2238)
calls=17 0
0 6775
0 17
0 51
cfn=(2392)
calls=17 0
0 289
0 68
cob=(7)
cfi=(109)
cfn=(1420)
calls=17 0
0 6256
0 17
0 85
cob=(7)
cfi=(109)
cfn=(2238)
calls=17 0
0 6386
0 17
0 34
cob=(7)
cfi=(109)
cfn=(1788) std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&)
calls=16 0
0 5648
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1763
0 21
0 39978
cfn=(2466)
calls=13326 0
0 133260
0 1182736
cfn=(2466)
calls=6934 0
0 69340
0 20802
cob=(9)
cfi=(139)
cfn=(2468) jmaerte::arith::arith_context::is_single(jmaerte::arith::num_node const&)
calls=6934 0
0 34670
0 27736
cfn=(2466)
calls=6934 0
0 69340
0 15536
cfn=(2492)
calls=417 0
0 18348
0 1668
cob=(9)
cfi=(139)
cfn=(2676) jmaerte::arith::vec::std_factory::copy(jmaerte::arith::svec&)
calls=417 0
0 3420835
0 4527
cfn=(2490) jmaerte::arith::vec::DELETE(jmaerte::arith::svec&)
calls=407 0
0 1128377
0 12804
cfn=(2490)
calls=6402 0
0 1147768
0 4031413
cob=(9)
cfi=(139)
cfn=(2480) jmaerte::arith::arith_context::vec_reduce(jmaerte::arith::svec&, jmaerte::arith::svec&, int)
calls=354939 0
0 639050850
0 4246484
cfn=(2466)
calls=348547 0
0 3485470
0 27533565
cfn=(2392)
calls=6 0
0 150
0 24
cob=(7)
cfi=(109)
cfn=(1420)
calls=6 0
0 2148
0 6
0 18
cob=(7)
cfi=(109)
cfn=(2238)
calls=6 0
0 2407
0 6
0 12
cob=(7)
cfi=(109)
cfn=(1788)
calls=6 0
0 2118
0 6
0 39
cfn=(2466)
calls=1 0
0 10
0 2496
cfn=(2466)
calls=416 0
0 4160
0 42244
cfn=(2466)
calls=401 0
0 4010
0 2829169
cfn=(2466)
calls=404167 0
0 4041670
0 1213704
cob=(9)
cfi=(139)
cfn=(2468)
calls=404568 0
0 2022840
0 1618272
cfn=(2466)
calls=404568 0
0 4045680
0 813824
cfn=(2466)
calls=2344 0
0 23440
0 7032
cfn=(2466)
calls=2344 0
0 23440
0 7032
cob=(9)
cfi=(139)
cfn=(2518) jmaerte::arith::num::COMPARE_ABS(jmaerte::arith::num_node const&, jmaerte::arith::num_node const&)
calls=2343 0
0 40714
cob=(1)
cfi=(92)
cfn=(374)
calls=1 71
0 1237
0 2348
0 5786
cfn=(2466)
calls=366 0
0 3660
0 1098
cfn=(2466)
calls=366 0
0 3660
0 10980
cob=(9)
cfi=(139)
cfn=(2692) jmaerte::arith::arith_context::vec_add(jmaerte::arith::svec&, int, jmaerte::arith::num_node const&, jmaerte::arith::svec&, int, int)
calls=366 0
0 6464994
0 4854747
cfn=(2466)
calls=404180 0
0 4041800
0 37125648
cfn=(2466)
calls=29 0
0 290
0 87
cob=(9)
cfi=(139)
cfn=(2468)
calls=29 0
0 145
0 145
cfn=(2472) std::map<int, jmaerte::arith::svec, std::less<int>, std::allocator<std::pair<int const, jmaerte::arith::svec> > >::operator[](int const&)
calls=29 0
0 20695
0 14896
cfn=(2466)
calls=6546 0
0 65460
0 78416
cob=(7)
cfi=(109)
cfn=(2500) std::_Rb_tree_increment(std::_Rb_tree_node_base*)
calls=6545 0
0 78329
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 1298
0 6550
0 78552
cfn=(2466)
calls=6546 0
0 65460
0 19638
cob=(9)
cfi=(139)
cfn=(2468)
calls=6546 0
0 32730
0 13160
cfn=(2466)
calls=17 0
0 170
0 51
cob=(9)
cfi=(139)
cfn=(2710) jmaerte::arith::num::MUL(jmaerte::arith::num_node&, jmaerte::arith::num_node const&)
calls=16 0
0 688
cob=(1)
cfi=(92)
cfn=(374)
calls=1 71
0 1186
0 21
0 124249
cfn=(2712)
calls=13779 0
0 192906
0 1408693
cfn=(2466)
calls=10516 0
0 105160
0 31548
cob=(9)
cfi=(139)
cfn=(2468)
calls=10516 0
0 52580
0 48804
cfn=(2466)
calls=10516 0
0 105160
0 83486
cob=(9)
cfi=(139)
cfn=(2480)
calls=10409 0
0 154325211
0 14365
cfn=(2466)
calls=1978 0
0 19780
0 5934
cfn=(2466)
calls=1978 0
0 19780
0 39560
cob=(9)
cfi=(139)
cfn=(2694) jmaerte::arith::arith_context::gcd(jmaerte::arith::num_node&, jmaerte::arith::num_node&, jmaerte::arith::num_node&, jmaerte::arith::num_node&, jmaerte::arith::num_node&, jmaerte::arith::num_node&)
calls=1978 0
0 292829
0 65274
cfn=(2466)
calls=1978 0
0 19780
0 5934
cob=(9)
cfi=(139)
cfn=(2468)
calls=1978 0
0 9890
0 7912
cfn=(2466)
calls=1978 0
0 19780
0 3966
cfn=(2466)
calls=5 0
0 50
0 44793
cfn=(2466)
calls=1973 0
0 19730
0 29595
cob=(9)
cfi=(139)
cfn=(2692)
calls=1973 0
0 38461516
0 17807
cfn=(2466)
calls=5 0
0 50
0 95
cob=(9)
cfi=(139)
cfn=(2698) jmaerte::arith::arith_context::vec_combine(jmaerte::arith::svec&, jmaerte::arith::svec&, jmaerte::arith::num_node&, jmaerte::arith::num_node&, jmaerte::arith::num_node&, jmaerte::arith::num_node&, int, int, int, int)
calls=5 0
0 171382
0 2413354
cob=(9)
cfi=(139)
cfn=(2480)
calls=402224 0
0 6289008736
0 403232
cfn=(2490)
calls=388 0
0 83290
0 406
cfn=(2466)
calls=6 0
0 60
0 15224
cfn=(2466)
calls=29 0
0 290
0 72
cfn=(2466)
calls=7 0
0 70
0 1388
cob=(7)
cfi=(109)
cfn=(1284)
calls=1 0
0 656
0 1
0 40
cob=(7)
cfi=(109)
cfn=(1284)
calls=5 0
0 589
0 5
0 48
cfn=(2502)
calls=6 0
0 138
0 72
cob=(7)
cfi=(109)
cfn=(1290) std::_Rb_tree_insert_and_rebalance(bool, std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node_base&)
calls=6 0
0 84
0 6
0 30
cfn=(2504) std::_Rb_tree<int, std::pair<int const, jmaerte::arith::svec>, std::_Select1st<std::pair<int const, jmaerte::arith::svec> >, std::less<int>, std::allocator<std::pair<int const, jmaerte::arith::svec> > >::_M_erase(std::_Rb_tree_node<std::pair<int const, jmaerte::arith::svec> >*)
calls=6 0
0 661739
0 30
cfn=(2506)
calls=6 0
0 6170
0 138
cob=(9)
cfi=(139)
cfn=(2512)
calls=5 0
0 110
cob=(1)
cfi=(92)
cfn=(375)
calls=1 71
0 2476
0 10
0 48
cob=(9)
cfi=(139)
cfn=(2512)
calls=6 0
0 132
0 6
0 54
cfn=(2520) std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > __gnu_cxx::__to_xstring<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, char>(int (*)(char*, unsigned long, char const*, __va_list_tag*), unsigned long, char const*, ...) [clone .constprop.22]
calls=6 0
0 5663
0 30
cfn=(2418)
calls=6 0
0 1559
0 24
cob=(8)
cfi=(121)
cfn=(1414)
calls=6 0
0 9187
0 6
0 36
cob=(7)
cfi=(109)
cfn=(1398)
calls=6 0
0 432
0 6
0 78
cfn=(2520)
calls=6 0
0 3883
0 30
cfn=(2418)
calls=6 0
0 1443
0 24
cob=(8)
cfi=(121)
cfn=(1414)
calls=6 0
0 9503
0 6
0 30
cob=(7)