Newer
Older
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: 22134
cmd: ./QGroundControl
part: 1
desc: I1 cache:
desc: D1 cache:
desc: LL cache:
desc: Timerange: Basic block 0 - 1790296661
desc: Trigger: Program termination
positions: line
events: Ir
summary: 1713950759
ob=(49) /home/valentin/Qt/5.11.3/gcc_64/lib/libQt5Quick.so.5.11.3
fl=(216) ???
fn=(51162) QQuickValueTypeProvider::getMetaObjectForMetaType(int)
0 39343
fn=(51502) void QQmlPrivate::createInto<QQuickItem>(void*)
0 3228
cfn=(46092) QQuickItem::QQuickItem(QQuickItem*)
calls=1354 0
0 229890
0 3228
fn=(51514) QQuickItem::classBegin()
0 69444
fn=(51662) QQuickItem::isComponentComplete() const
0 30244
fn=(51790) QQuickItemPrivate::recursiveRefFromEffectItem(int)
0 14535
fn=(51816) QQuickItem::flags() const
0 52568
fn=(51912) QQuickAnchors::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)
0 176624
cfn=(51914) QQuickAnchors::setFill(QQuickItem*)
calls=4307 0
0 289982
0 1084
cfn=(97992) QQuickAnchors::setVerticalCenterOffset(double)
calls=558 0
0 67938
0 538
cfn=(91556) QQuickAnchors::setLeft(QQuickAnchorLine const&)
calls=865 0
0 91460
0 538
cfn=(91566) QQuickAnchors::setBottom(QQuickAnchorLine const&)
calls=716 0
0 101682
0 538
cfn=(93392) QQuickAnchors::setTop(QQuickAnchorLine const&)
calls=719 0
0 101682
0 538
cfn=(93386) QQuickAnchors::setHorizontalCenter(QQuickAnchorLine const&)
calls=712 0
0 89846
0 2152
cfn=(56142) QQuickAnchors::setBottomMargin(double)
calls=1462 0
0 67788
0 2152
cfn=(93398) QQuickAnchors::setTopMargin(double)
calls=1411 0
0 67788
0 1084
cfn=(97990) QQuickAnchors::setHorizontalCenterOffset(double)
calls=918 0
0 67152
0 2156
cfn=(94316) QQuickAnchors::setRightMargin(double)
calls=1550 0
0 67266
0 3228
cfn=(94314) QQuickAnchors::setLeftMargin(double)
calls=1962 0
0 130196
0 538
cfn=(93840) QQuickAnchors::setVerticalCenter(QQuickAnchorLine const&)
calls=755 0
0 100068
fn=(51958) void std::__insertion_sort<QQuickItem**, __gnu_cxx::__ops::_Iter_less_iter>(QQuickItem**, QQuickItem**, __gnu_cxx::__ops::_Iter_less_iter) [clone .isra.17]
0 476668
cob=(3) /lib/x86_64-linux-gnu/libc-2.27.so
cfi=(128) /build/glibc-OTsEL5/glibc-2.27/string/../sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
cfn=(520) memcpy@GLIBC_2.2.5
calls=4186 129
0 21520
0 2152
0 13988
fn=(54650) QQuickItemPrivate::setHasCursorInChild(bool)
0 13988
cfn=(51732) QQuickItem::parentItem() const
calls=5336 0
0 3228
0 4304
fn=(54714) QQuickItem::geometryChanged(QRectF const&, QRectF const&)
0 109732
cfn=(93396) QQuickAnchorsPrivate::updateMe()
calls=8933 0
0 39905
0 270608
cfn=(101256) non-virtual thunk to QQuickBasePositionerPrivate::itemGeometryChanged(QQuickItem*, QQuickGeometryChange, QRectF const&)
calls=237 0
0 67
cfn=(99118) non-virtual thunk to QQuickAnchorsPrivate::itemGeometryChanged(QQuickItem*, QQuickGeometryChange, QRectF const&)
calls=2887 0
0 242970
0 16141
cfn=(94360) QQuickItem::xChanged()
calls=3448 0
0 184655
0 6462
cfn=(94364) QQuickItem::yChanged()
calls=3605 0
0 173110
0 8604
cfn=(55098) QQuickItem::widthChanged()
calls=5637 0
0 361610
0 34360
cfn=(54716) QQuickItem::heightChanged()
calls=6281 0
0 503593
0 8604
fn=(54715) QQuickItem::geometryChanged(QRectF const&, QRectF const&)'2
0 9360
cfn=(93397) QQuickAnchorsPrivate::updateMe()'2
calls=894 0
0 24
cfn=(93396)
calls=8738 0
0 3444
0 18306
cfn=(99118)
calls=391 0
0 14668
cfn=(99119) non-virtual thunk to QQuickAnchorsPrivate::itemGeometryChanged(QQuickItem*, QQuickGeometryChange, QRectF const&)'2
calls=4671 0
0 5820
0 360
cfn=(94360)
calls=2517 0
0 1236
0 56
cfn=(94364)
calls=915 0
0 1648
0 1124
cfn=(55099) QQuickItem::widthChanged()'2
calls=1097 0
0 51271
cfn=(55098)
calls=4211 0
0 55002
0 6006
cfn=(54717) QQuickItem::heightChanged()'2
calls=594 0
0 47339
cfn=(54716)
calls=2707 0
0 55002
0 1124
fn=(54794) QQuickItem::setClip(bool)
0 12
cfn=(54796) QQuickItem::clip() const
calls=899 0
0 18
0 12
fn=(55098)
0 12896
cob=(45) /home/valentin/Qt/5.11.3/gcc_64/lib/libQt5Core.so.5.11.3
cfi=(197) ???
cfn=(5609) QMetaObject::activate(QObject*, QMetaObject const*, int, void**)'2
calls=8528 0
0 400492
0 3224
fn=(55099)
0 48
cob=(45)
cfi=(197)
cfn=(5609)
calls=1097 0
0 51211
0 12
fn=(55872) QQuickText::QQuickText(QQuickItem*)
0 7532
cob=(38) /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
cfi=(189) ???
cfn=(1842) operator new(unsigned long)
calls=1752 0
0 261395
0 1076
0 3228
cfn=(55874) QQuickTextPrivate::QQuickTextPrivate()
calls=1752 0
0 1060291
0 4304
cfn=(51594) QQuickImplicitSizeItem::QQuickImplicitSizeItem(QQuickImplicitSizeItemPrivate&, QQuickItem*)
calls=1752 0
0 120512
0 10760
cfn=(55896) QQuickTextPrivate::init()
calls=1752 0
0 71016
fn=(56152) QQuickText::setText(QString const&)
0 14014
cob=(45)
cfi=(197)
cfn=(4590) operator==(QString const&, QString const&)
calls=2129 0
0 21964
0 1078
0 13580
cob=(45)
cfi=(197)
cfn=(3906) QString::operator=(QString const&)
calls=1552 0
0 13056
0 544
0 1088
cfn=(51662)
calls=1552 0
0 2176
0 1096
cfn=(112872) QQuickTextPrivate::clearFormats()
calls=434 0
0 126
0 4
cob=(45)
cfi=(197)
cfn=(16912) QString::isRightToLeft() const
calls=434 0
0 602
0 2
0 16
cfn=(91846) QQuickTextPrivate::determineHorizontalAlignment()
calls=434 0
0 68
0 4896
cfn=(56166) QQuickTextPrivate::updateLayout()
calls=1552 0
0 111420
0 4896
cfn=(54662) QQuickItem::setAcceptHoverEvents(bool)
calls=1552 0
0 78694
0 1632
cfn=(56168) QQuickText::textChanged(QString const&)
calls=1552 0
0 64156
0 14542
cfn=(98002) QList<QQuickStyledTextImgTag*>::clear()
calls=560 0
0 13988
0 1626
cob=(46) /home/valentin/Qt/5.11.3/gcc_64/lib/libQt5Gui.so.5.11.3
cfi=(199) ???
cfn=(56158) Qt::mightBeRichText(QString const&)
calls=1551 0
0 210512
0 544
0 544
fn=(91392) QQuickCanvasItemPrivate::QQuickCanvasItemPrivate()
0 1614
cfn=(46094) QQuickItemPrivate::QQuickItemPrivate()
calls=549 0
0 37122
0 13988
cob=(45)
cfi=(197)
cfn=(40568) QUrl::QUrl()
calls=549 0
0 1076
0 538
0 4304
fn=(91394) QQuickCanvasItem::metaObject() const
0 96186
cob=(45)
cfi=(197)
cfn=(54214) QObjectData::dynamicMetaObject() const
calls=58451 0
0 686434
0 23643
0 1076
fn=(91400) QQuickText::setColor(QColor const&)
0 7532
cob=(46)
cfi=(199)
cfn=(16664) QColor::rgba() const
calls=1855 0
0 15064
0 1076
0 5380
cfn=(51662)
calls=1742 0
0 4304
0 7532
cfn=(91402) QQuickText::colorChanged()
calls=1659 0
0 111904
fn=(91504) QtMetaTypePrivate::QMetaTypeFunctionHelper<QQuickAnchorLine, true>::Construct(void*, void const*)
0 21520
fn=(91558) QQuickAnchorsPrivate::checkHAnchorValid(QQuickAnchorLine) const
0 25286
fn=(91922) QQuickItem::widthValid() const
0 21695
fn=(91950) QQuickTextPrivate::availableWidth() const
0 5440
cfn=(91952) QQuickItem::width() const
calls=5753 0
0 3264
0 3264
cfn=(91874) QQuickText::leftPadding() const
calls=5753 0
0 9756
0 5440
cfn=(91876) QQuickText::rightPadding() const
calls=5753 0
0 9756
0 6528
fn=(92338) QQuickTextInputPrivate::textDirection() const
0 84
cob=(45)
cfi=(197)
cfn=(16916) QChar::direction(unsigned int)
calls=1289 0
0 152
0 8
0 148
fn=(93390) QQuickItemPrivate::top() const
0 3228
fn=(94314)
0 18292
cfn=(92208) QQuickAnchors::leftMarginChanged()
calls=1261 0
0 101144
0 2152
cfn=(91562) QQuickAnchorsPrivate::updateHorizontalAnchors()
calls=1141 0
0 7532
0 1076
fn=(95640) QtMetaTypePrivate::QMetaTypeFunctionHelper<QQuickAnchorLine, true>::Destruct(void*)
0 2679
fn=(95706) QQuickTextInput::setText(QString const&)
0 18
cfn=(95708) QQuickTextInput::text() const
calls=76 0
0 100
0 6
cob=(45)
cfi=(197)
cfn=(4590)
calls=76 0
0 14
0 2
0 26
cfn=(95710) QQuickTextInputPrivate::cancelPreedit()
calls=66 0
0 6
0 10
cfn=(95712) QQuickTextInputPrivate::internalSetText(QString const&, int, bool)
calls=66 0
0 636568
0 10
fn=(95718) QVector<QQuickTextInputPrivate::Command>::resize(int)
0 16
cfn=(95720) QVector<QQuickTextInputPrivate::Command>::reallocData(int, int, QFlags<QArrayData::AllocationOption>)
calls=66 0
0 40
0 4
fn=(95866) QQuickItemPrivate::itemToWindowTransform() const
0 5480
cfn=(95867) QQuickItemPrivate::itemToWindowTransform() const'2
calls=31472 0
0 51665
0 1644
cfn=(95872) QQuickItemPrivate::itemToParentTransform(QTransform&) const
calls=31485 0
0 23228
0 2740
fn=(95867)
0 5634
cfn=(95867)
calls=291538 0
0 59520
0 2019
cfn=(95872)
calls=323010 0
0 30783
0 3913
cob=(46)
cfi=(199)
cfn=(10002) QTransform::QTransform()
calls=31471 0
0 8220
0 548
0 548
fn=(95920) QQuickTextInput::isCursorVisible() const
0 20
fn=(99118)
0 1116
cfn=(99120) QQuickAnchorsPrivate::itemGeometryChanged(QQuickItem*, QQuickGeometryChange, QRectF const&)
calls=3278 0
0 256522
fn=(99119)
0 32
cfn=(99121) QQuickAnchorsPrivate::itemGeometryChanged(QQuickItem*, QQuickGeometryChange, QRectF const&)'2
calls=4671 0
0 5788
fn=(99120)
0 3332
cfn=(51919) QQuickAnchorsPrivate::fillChanged()'2
calls=1674 0
0 245426
0 216
cfn=(91563) QQuickAnchorsPrivate::updateHorizontalAnchors()'2
calls=98 0
0 3140
cfn=(91562)
calls=140 0
0 432
0 120
cfn=(56145) QQuickAnchorsPrivate::updateVerticalAnchors()'2
calls=45 0
0 3496
cfn=(56144) QQuickAnchorsPrivate::updateVerticalAnchors()
calls=130 0
0 328
0 32
fn=(99121)
0 96
cfn=(51919)
calls=3073 0
0 5692
fn=(101192) QQuickLoader::geometryChanged(QRectF const&, QRectF const&)
0 200
cfn=(101194) QQuickLoaderPrivate::_q_updateSize(bool)
calls=1552 0
0 84
0 49
cfn=(54714)
calls=1028 0
0 26075
0 11
fn=(101440) QQuickImplicitSizeItem::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)
0 24
cfn=(55036) QQuickImplicitSizeItem::qt_static_metacall(QObject*, QMetaObject::Call, int, void**) [clone .part.0]
calls=1619 0
0 164
fn=(101448) QQuickLoaderPrivate::getImplicitHeight() const
0 14
cfn=(91924) QQuickItem::heightValid() const
calls=4021 0
0 10
0 10
cfn=(101447) QQuickItem::implicitHeight() const'2
calls=588 0
0 16
fn=(101844) QQuickItem::baselineOffset() const
0 6
fn=(102746) QQuickRepeater::initItem(int, QObject*)
0 6994
cfn=(51716) QQuickItem* qmlobject_cast<QQuickItem*>(QObject*)
calls=609 0
0 45178
0 15064
cob=(45)
cfi=(197)
cfn=(5964) QtSharedPointer::ExternalRefCountData::getAndRef(QObject const*)
calls=609 0
0 8070
0 538
0 3766
cfn=(51732)
calls=609 0
0 1614
0 1614
cfn=(51778) QQuickItem::setParentItem(QQuickItem*)
calls=609 0
0 701262
0 5912
cfn=(102748) QQuickItem::stackBefore(QQuickItem const*)
calls=13 0
0 530
0 4826
cfn=(103194) QQuickItem::stackAfter(QQuickItem const*)
calls=596 0
0 145792
0 536
fn=(105178) QQuickTextInput::bottomPadding() const
0 36
fn=(105206) QQuickTextInput::contentSizeChanged()
0 8
cob=(45)
cfi=(197)
cfn=(5609)
calls=85 0
0 145871
0 2
fn=(112872)
0 8
cob=(46)
cfi=(199)
cfn=(112878) QTextLayout::clearFormats()
calls=433 0
0 106
0 2
0 10
fn=(114554) QQuickRenderControl::sceneChanged()
0 15228
cob=(45)
cfi=(197)
cfn=(5609)
calls=18927 0
0 1374327
0 3807
fn=(118426) QList<QQuickPointerDevice*>::~QList()
0 11319
fn=(94194) QQuickItem::setImplicitWidth(double)
0 38
fn=(46118) QQuickItem::setSize(QSizeF const&)
0 38202
cfn=(51782) QQuickItemPrivate::dirty(QQuickItemPrivate::DirtyType)
calls=3828 0
0 49136
0 32240
cfn=(92046) QQuickText::geometryChanged(QRectF const&, QRectF const&)
calls=863 0
0 10753520
cfn=(54714)
calls=807 0
0 407624
cfn=(97806) QQuickMouseArea::geometryChanged(QRectF const&, QRectF const&)
calls=1062 0
0 511572
0 10242
fn=(46119) QQuickItem::setSize(QSizeF const&)'2
0 11088
cfn=(51782)
calls=5429 0
0 14858
0 11000
cfn=(97806)
calls=569 0
0 5300
cfn=(54715)
calls=2853 0
0 146576
0 2280
fn=(51416) QQuickColorProvider::rgbaFromString(QString const&, bool*)
0 16158
cob=(46)
cfi=(199)
cfn=(41164) QColor::setNamedColor(QString const&)
calls=3577 0
0 1897755
0 2693
0 24237
cob=(46)
cfi=(199)
cfn=(16664)
calls=3577 0
0 37702
0 2693
0 10772
fn=(51522) QQuickItem::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)
0 966513
cfn=(51524) QQuickItemPrivate::_q_createJSWrapper(QV4::ExecutionEngine*)
calls=9652 0
0 1591025
0 29085
cfn=(95860) QQuickItem::mapToItem(QQmlV4Function*) const
calls=1181 0
0 22206
0 1081
cfn=(91564) QQuickItemPrivate::bottom() const
calls=736 0
0 1614
0 5380
cfn=(93390)
calls=1244 0
0 3228
0 7532
cfn=(93460) QQuickItemPrivate::right() const
calls=988 0
0 1614
0 4304
cfn=(91510) QQuickItemPrivate::left() const
calls=845 0
0 1614
0 9684
cfn=(51770) QQuickItemPrivate::anchors() const
calls=6373 0
0 2130776
0 9149
cfn=(51826) QQuickItem::isVisible() const
calls=2969 0
0 13465
0 6462
cfn=(93790) QQuickItem::isEnabled() const
calls=2095 0
0 5380
0 3232
cfn=(91956) QQuickItem::height() const
calls=2670 0
0 3240
0 4322
cfn=(91952)
calls=4546 0
0 6486
0 17236
cfn=(51580) QQuickItemPrivate::data()
calls=6193 0
0 48420
0 57573
cfn=(51732)
calls=8425 0
0 8091
0 77386
cfn=(93894) QQuickItem::setImplicitHeight(double)
calls=848 0
0 90
0 6
cfn=(94194)
calls=867 0
0 38
0 2154
cfn=(54892) QQuickItem::setAntialiasing(bool)
calls=1960 0
0 25824
0 1080
cfn=(54794)
calls=803 0
0 42
0 4322
cfn=(54884) QQuickItem::setVisible(bool)
calls=3350 0
0 498504
0 3246
cfn=(56336) QQuickItem::setOpacity(double)
calls=3931 0
0 273190
0 2703
cfn=(54710) QQuickItem::setHeight(double)
calls=1785 0
0 566881
0 3244
cfn=(55096) QQuickItem::setWidth(double)
calls=2071 0
0 557145
0 2164
cfn=(56340) QQuickItem::setZ(double)
calls=721 0
0 106581
0 551
cfn=(94362) QQuickItem::setY(double)
calls=1124 0
0 7690
0 15
cfn=(94358) QQuickItem::setX(double)
calls=1101 0
0 20806
0 2169
fn=(51523) QQuickItem::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)'2
0 379
cfn=(91956)
calls=524 0
0 12
0 12
cfn=(91952)
calls=653 0
0 12
0 10
cfn=(94176) QQuickItem::y() const
calls=531 0
0 6
0 9
cfn=(94838) QQuickItem::x() const
calls=367 0
0 15
0 10
fn=(51774) QQuickAnchors::classBegin()
0 9684
fn=(51780) QQuickItemPrivate::removeFromDirtyList()
0 19380
fn=(51820) QQuickItemPrivate::setImplicitLayoutMirror(bool, bool)
0 145341
fn=(51954) QQuickAnchorsPrivate::updateOnComplete()
0 100068
cfn=(51956) void std::__introsort_loop<QQuickItem**, long, __gnu_cxx::__ops::_Iter_less_iter>(QQuickItem**, QQuickItem**, long, __gnu_cxx::__ops::_Iter_less_iter) [clone .isra.26]
calls=6294 0
0 16140
0 9684
cfn=(51958)
calls=6294 0
0 514328
0 196908
cfn=(51964) QQuickAnchorsPrivate::addDepend(QQuickItem*) [clone .part.5] [clone .constprop.35]
calls=6227 0
0 1034698
0 12912
cfn=(51976) QQuickAnchorsPrivate::update()
calls=6294 0
0 13220565
0 19368
fn=(51974) QVector<QQuickItemPrivate::ChangeListener>::reallocData(int, int, QFlags<QArrayData::AllocationOption>)
0 73168
cob=(45)
cfi=(197)
cfn=(1994) QArrayData::allocate(unsigned long, unsigned long, unsigned long, QFlags<QArrayData::AllocationOption>)
calls=8714 0
0 519832
0 2152
0 30128
cob=(3)
cfi=(128)
cfn=(520)
calls=8714 129
0 23672
0 2152
0 32280
fn=(51980) QQuickItem::setPosition(QPointF const&)
0 79734
cfn=(51782)
calls=3358 0
0 16364
0 10920
cfn=(54715)
calls=210 0
0 1328
cfn=(54714)
calls=953 0
0 146336
0 11246
fn=(54622) QQuickRectangle::QQuickRectangle(QQuickItem*)
0 11298
cob=(38)
cfi=(189)
cfn=(1842)
calls=2218 0
0 400064
0 1614
0 4842
cfn=(46094)
calls=2218 0
0 111366
0 8070
cob=(46)
cfi=(199)
cfn=(10006) QColor::QColor(Qt::GlobalColor)
calls=2218 0
0 69402
0 1614
0 11298
cfn=(51596) QQuickItem::QQuickItem(QQuickItemPrivate&, QQuickItem*)
calls=2218 0
0 164628
0 14526
cfn=(51598) QQuickItem::setFlag(QQuickItem::Flag, bool)
calls=2218 0
0 61332
0 9684
cfn=(54624) QQuickItem::setAcceptTouchEvents(bool)
calls=2218 0
0 12912
fn=(54628) QQuickRectangle::qt_metacall(QMetaObject::Call, int, void**)
0 21520
cfn=(51574) QQuickItem::qt_metacall(QMetaObject::Call, int, void**)
calls=4091 0
0 1339149
0 25824
cfn=(54694) QQuickRectangle::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)
calls=1230 0
0 510635
0 1614
fn=(54688) QQuickValueTypeProvider::store(int, void const*, void*, unsigned long)
0 21544
cob=(46)
cfi=(199)
cfn=(53948) QColor::fromRgba(unsigned int)
calls=3458 0
0 201975
0 2693
0 32316
fn=(54712) QQuickItemPrivate::transformChanged()
0 51427
fn=(55708) QQuickAccessibleAttached::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)
0 100
cob=(45)
cfi=(197)
cfn=(41250) QObject::property(char const*) const
calls=64 0
0 3666
0 2
0 6
cob=(45)
cfi=(197)
cfn=(10766) QVariant::toInt(bool*) const
calls=63 0
0 16
0 2
0 24
cob=(45)
cfi=(197)
cfn=(4298) QVariant::~QVariant()
calls=64 0
0 14
0 2
0 4
cob=(46)
cfi=(199)
cfn=(55452) QAccessible::updateAccessibility(QAccessibleEvent*)
calls=64 0
0 364
0 2
0 4
cob=(46)
cfi=(199)
cfn=(95756) QAccessibleTextCursorEvent::~QAccessibleTextCursorEvent()
calls=63 0
0 10
0 2
0 10
cob=(45)
cfi=(197)
cfn=(4590)
calls=173 0
0 14
0 2
0 10
cob=(45)
cfi=(197)
cfn=(3906)
calls=144 0
0 52
0 2
0 4
cfn=(94746) QQuickAccessibleAttached::nameChanged()
calls=144 0
0 188
0 22
cob=(46)
cfi=(199)
cfn=(55452)
calls=144 0
0 364
0 2
0 4
cob=(46)
cfi=(199)
cfn=(55714) QAccessibleEvent::~QAccessibleEvent()
calls=144 0
0 2
0 2
0 2
fn=(55716) QQuickAccessibleAttached::metaObject() const
0 10
fn=(55870) void QQmlPrivate::createInto<QQuickText>(void*)
0 6456
cfn=(55872)
calls=1752 0
0 1540114
0 6456
fn=(55896)
0 5380
cfn=(54638) QQuickItem::setAcceptedMouseButtons(QFlags<Qt::MouseButton>)
calls=1752 0
0 19368
0 5380
cfn=(51598)
calls=1752 0
0 40888
fn=(55974) QQuickRepeater::qt_metacall(QMetaObject::Call, int, void**)
0 4328
cfn=(51574)
calls=826 0
0 17312
0 6492
cfn=(55976) QQuickRepeater::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)
calls=755 0
0 471624214
0 3787
fn=(55975) QQuickRepeater::qt_metacall(QMetaObject::Call, int, void**)'2
0 8608
cfn=(51574)
calls=1080 0
0 34432
0 12912
cfn=(55977) QQuickRepeater::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)'2
calls=1080 0
0 1271048
0 7532
fn=(56336)
0 7598
cfn=(51782)
calls=3850 0
0 9738
0 3246
cfn=(51794) QQuickItemPrivate::itemChange(QQuickItem::ItemChange, QQuickItem::ItemChangeData const&)
calls=3850 0
0 17853
0 1082
cfn=(56338) QQuickItem::opacityChanged()
calls=3850 0
0 51841
0 6516
cob=(38)
cfi=(189)
cfn=(1842)
calls=621 0
0 134200
0 541
0 1623
cfn=(51736) QQuickItemPrivate::ExtraData::ExtraData()
calls=621 0
0 31919
0 7033
fn=(169182) QQuickWindow::mouseMoveEvent(QMouseEvent*)
cfn=(169184) QQuickWindowPrivate::handleMouseEvent(QMouseEvent*)
calls=683 0
0 1713950759
fn=(90764) QQuickItemPrivate::addToDirtyList()
0 29329