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
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
|
// Copyright (C) 2016 basysKom GmbH.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <qtest.h>
#include <QQmlEngine>
#include <QLoggingCategory>
#include <QQmlComponent>
#include <QRandomGenerator>
#include <private/qv4mm_p.h>
#include <private/qv4qobjectwrapper_p.h>
#include <private/qjsvalue_p.h>
#include <private/qqmlengine_p.h>
#include <private/qv4identifiertable_p.h>
#include <private/qv4arraydata_p.h>
#include <private/qqmlcomponentattached_p.h>
#include <private/qv4mapobject_p.h>
#include <private/qv4setobject_p.h>
#include <private/qv4variantassociationobject_p.h>
#if QT_CONFIG(qml_jit)
#include <private/qv4baselinejit_p.h>
#endif
#include <QtQuickTestUtils/private/qmlutils_p.h>
#include <memory>
#include <private/qqmlobjectcreator_p.h>
#include <private/qqmldata_p.h>
class tst_qv4mm : public QQmlDataTest
{
Q_OBJECT
public:
tst_qv4mm();
private slots:
void gcStats();
void arrayDataWriteBarrierInteraction();
void persistentValueMarking_data();
void persistentValueMarking();
void multiWrappedQObjects();
void accessParentOnDestruction();
void cleanInternalClasses();
void createObjectsOnDestruction();
void sharedInternalClassDataMarking();
void gcTriggeredInOnDestroyed();
void weakValuesAssignedAfterThePhaseThatShouldHandleWeakValues();
void mapAndSetKeepValuesAlive();
void jittedStoreLocalMarksValue();
void forInOnProxyMarksTarget();
void allocWithMemberDataMidwayDrain();
void constObjectWrapperOnlyConstInSingleEngine();
void markObjectWrappersAfterMarkWeakValues();
void variantAssociationObjectMarksMember();
#ifdef QT_BUILD_INTERNAL
void validateIncrementalMarkPhase_data();
void validateIncrementalMarkPhase();
#endif
void trackObjectDoesNotAccessGarbageOnTheStackOnAllocation();
void spreadArgumentDoesNotAccessGarbageOnTheStackOnAllocation();
void scopedConvertToStringFromReturnedValueDoesNotAccessGarbageOnTheStackOnAllocation();
void scopedConvertToObjectFromReturnedValueDoesNotAccessGarbageOnTheStackOnAllocation();
void scopedConvertToStringFromValueDoesNotAccessGarbageOnTheStackOnAllocation();
void scopedConvertToObjectFromValueDoesNotAccessGarbageOnTheStackOnAllocation();
void dontCrashOnScopedStackFrame();
void sweepTriggeringChunkAllocation_data();
void sweepTriggeringChunkAllocation();
void partitionGrowingContainer();
void findObjectsForCompilationUnit_data();
void findObjectsForCompilationUnit();
void transitionWithExpiredDeadline();
void redrainDuringSweepWhenRunningToCompletion();
};
tst_qv4mm::tst_qv4mm()
: QQmlDataTest(QT_QMLTEST_DATADIR)
{
QV4::ExecutionEngine engine;
QV4::Scope scope(engine.rootContext());
}
void tst_qv4mm::gcStats()
{
QLoggingCategory::setFilterRules("qt.qml.gc.*=true");
QQmlEngine engine;
gc(engine);
QLoggingCategory::setFilterRules("qt.qml.gc.*=false");
}
void tst_qv4mm::arrayDataWriteBarrierInteraction()
{
QV4::ExecutionEngine engine;
QCOMPARE(engine.memoryManager->gcBlocked, QV4::MemoryManager::Unblocked);
engine.memoryManager->gcBlocked = QV4::MemoryManager::InCriticalSection;
QV4::Heap::Object *unprotectedObject = engine.newObject();
QV4::Scope scope(&engine);
QV4::ScopedArrayObject array(scope, engine.newArrayObject());
constexpr int initialCapacity = 8; // compare qv4arraydata.cpp
for (int i = 0; i < initialCapacity; ++i) {
// fromReturnedValue would generally be unsafe, but the gc is blocked here anyway
array->push_back(QV4::Value::fromReturnedValue(unprotectedObject->asReturnedValue()));
}
QVERIFY(!unprotectedObject->isMarked());
engine.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
// initialize gc
auto sm = engine.memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::MarkGlobalObject) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
array->push_back(QV4::Value::fromUInt32(42));
QVERIFY(!unprotectedObject->isMarked());
// we should have pushed the new arraydata on the mark stack
// so if we call drain...
engine.memoryManager->markStack()->drain();
// the unprotectedObject should have been marked
QVERIFY(unprotectedObject->isMarked());
}
enum PVSetOption {
CopyCtor,
ValueCtor,
ObjectCtor,
ReturnedValueCtor,
WeakValueAssign,
ObjectAssign,
};
void tst_qv4mm::persistentValueMarking_data()
{
QTest::addColumn<PVSetOption>("setOption");
QTest::addRow("copy") << CopyCtor;
QTest::addRow("valueCtor") << ValueCtor;
QTest::addRow("ObjectCtor") << ObjectCtor;
QTest::addRow("ReturnedValueCtor") << ReturnedValueCtor;
QTest::addRow("WeakValueAssign") << WeakValueAssign;
QTest::addRow("ObjectAssign") << ObjectAssign;
}
void tst_qv4mm::persistentValueMarking()
{
QFETCH(PVSetOption, setOption);
QV4::ExecutionEngine engine;
QV4::PersistentValue persistentOrigin; // used for copy ctor
QV4::Heap::Object *unprotectedObject = engine.newObject();
{
QV4::Scope scope(engine.rootContext());
QV4::ScopedObject object {scope, unprotectedObject};
persistentOrigin.set(&engine, object);
QVERIFY(!unprotectedObject->isMarked());
}
auto sm = engine.memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::MarkGlobalObject) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QVERIFY(engine.isGCOngoing);
QVERIFY(!unprotectedObject->isMarked());
switch (setOption) {
case CopyCtor: {
QV4::PersistentValue persistentCopy(persistentOrigin);
QVERIFY(unprotectedObject->isMarked());
break;
}
case ValueCtor: {
QV4::Value val = QV4::Value::fromHeapObject(unprotectedObject);
QV4::PersistentValue persistent(&engine, val);
QVERIFY(unprotectedObject->isMarked());
break;
}
case ObjectCtor: {
QV4::Scope scope(&engine);
QV4::ScopedObject o(scope, unprotectedObject);
// scoped object without scan shouldn't result in marking
QVERIFY(!unprotectedObject->isMarked());
QV4::PersistentValue persistent(&engine, o.getPointer());
QVERIFY(unprotectedObject->isMarked());
break;
}
case ReturnedValueCtor: {
QV4::PersistentValue persistent(&engine, unprotectedObject->asReturnedValue());
QVERIFY(unprotectedObject->isMarked());
break;
}
case WeakValueAssign: {
QV4::WeakValue wv;
wv.set(&engine, unprotectedObject);
QVERIFY(!unprotectedObject->isMarked());
QV4::PersistentValue persistent;
persistent = wv;
break;
}
case ObjectAssign: {
QV4::Scope scope(&engine);
QV4::ScopedObject o(scope, unprotectedObject);
// scoped object without scan shouldn't result in marking
QVERIFY(!unprotectedObject->isMarked());
QV4::PersistentValue persistent;
persistent = o;
QVERIFY(unprotectedObject->isMarked());
break;
}
}
}
void tst_qv4mm::multiWrappedQObjects()
{
QV4::ExecutionEngine engine1;
QV4::ExecutionEngine engine2;
{
QObject object;
for (int i = 0; i < 10; ++i)
QV4::QObjectWrapper::ensureWrapper(i % 2 ? &engine1 : &engine2, &object);
QCOMPARE(engine1.memoryManager->m_pendingFreedObjectWrapperValue.size(), 0);
QCOMPARE(engine2.memoryManager->m_pendingFreedObjectWrapperValue.size(), 0);
{
QV4::WeakValue value;
value.set(&engine1, QV4::QObjectWrapper::wrap(&engine1, &object));
}
QCOMPARE(engine1.memoryManager->m_pendingFreedObjectWrapperValue.size(), 1);
QCOMPARE(engine2.memoryManager->m_pendingFreedObjectWrapperValue.size(), 0);
// The additional WeakValue from m_multiplyWrappedQObjects hasn't been moved
// to m_pendingFreedObjectWrapperValue yet. It's still alive after all.
gc(engine1);
QCOMPARE(engine1.memoryManager->m_pendingFreedObjectWrapperValue.size(), 1);
// engine2 doesn't own the object as engine1 was the first to wrap it above.
// Therefore, no effect here.
gc(engine2);
QCOMPARE(engine2.memoryManager->m_pendingFreedObjectWrapperValue.size(), 0);
}
// Clears m_pendingFreedObjectWrapperValue. Now it's really dead.
gc(engine1);
QCOMPARE(engine1.memoryManager->m_pendingFreedObjectWrapperValue.size(), 0);
gc(engine2);
QCOMPARE(engine2.memoryManager->m_pendingFreedObjectWrapperValue.size(), 0);
}
void tst_qv4mm::accessParentOnDestruction()
{
QQmlEngine engine;
QQmlComponent component(&engine, testFileUrl("createdestroy.qml"));
std::unique_ptr<QObject> obj(component.create());
QVERIFY(obj);
QPointer<QObject> timer = qvariant_cast<QObject *>(obj->property("timer"));
QVERIFY(timer);
QTRY_VERIFY_WITH_TIMEOUT(!timer->property("running").toBool(), 2s);
QCOMPARE(obj->property("iterations").toInt(), 100);
QCOMPARE(obj->property("creations").toInt(), 100);
gc(engine); // ensure incremental gc has finished, and collected all objects
// TODO: investigaet whether we really need two gc rounds for incremental gc
gc(engine); // ensure incremental gc has finished, and collected all objects
QCOMPARE(obj->property("destructions").toInt(), 100);
}
void tst_qv4mm::cleanInternalClasses()
{
QV4::ExecutionEngine engine;
QV4::Scope scope(engine.rootContext());
QV4::ScopedObject object(scope, engine.newObject());
QV4::ScopedObject prototype(scope, engine.newObject());
// Set a prototype so that we get a unique IC.
object->setPrototypeOf(prototype);
QV4::Scoped<QV4::InternalClass> prevIC(scope, object->internalClass());
QVERIFY(prevIC->d()->transitions.empty());
uint prevIcChainLength = 0;
for (QV4::Heap::InternalClass *ic = object->internalClass(); ic; ic = ic->parent)
++prevIcChainLength;
const auto checkICCHainLength = [&]() {
uint icChainLength = 0;
for (QV4::Heap::InternalClass *ic = object->internalClass(); ic; ic = ic->parent)
++icChainLength;
const uint redundant = object->internalClass()->numRedundantTransitions;
QVERIFY(redundant <= QV4::Heap::InternalClass::MaxRedundantTransitions);
// A removal makes two transitions redundant.
QVERIFY(icChainLength <= prevIcChainLength + 2 * redundant);
};
const uint numTransitions = 16 * 1024;
// Keep identifiers in a separate array so that we don't have to allocate them in the loop that
// should test the GC on InternalClass allocations.
QV4::ScopedArrayObject identifiers(scope, engine.newArrayObject());
for (uint i = 0; i < numTransitions; ++i) {
QV4::Scope scope(&engine);
QV4::ScopedString s(scope);
s = engine.newIdentifier(QString::fromLatin1("key%1").arg(i));
identifiers->push_back(s);
QV4::ScopedValue v(scope);
v->setDouble(i);
object->insertMember(s, v);
}
// There is a chain of ICs originating from the original class.
QCOMPARE(prevIC->d()->transitions.size(), 1u);
QVERIFY(prevIC->d()->transitions.front().lookup != nullptr);
// When allocating the InternalClass objects required for deleting properties, eventually
// the IC chain gets truncated, dropping all the removed properties.
for (uint i = 0; i < numTransitions; ++i) {
QV4::Scope scope(&engine);
QV4::ScopedString s(scope, identifiers->get(i));
QV4::Scoped<QV4::InternalClass> ic(scope, object->internalClass());
QVERIFY(ic->d()->parent != nullptr);
QV4::ScopedValue val(scope, object->get(s->toPropertyKey()));
QCOMPARE(val->toNumber(), double(i));
QVERIFY(object->deleteProperty(s->toPropertyKey()));
QVERIFY(!object->hasProperty(s->toPropertyKey()));
QVERIFY(object->internalClass() != ic->d());
}
// None of the properties we've added are left
for (uint i = 0; i < numTransitions; ++i) {
QV4::ScopedString s(scope, identifiers->get(i));
QVERIFY(!object->hasProperty(s->toPropertyKey()));
}
// Also no other properties have appeared
QScopedPointer<QV4::OwnPropertyKeyIterator> iterator(object->ownPropertyKeys(object));
QVERIFY(!iterator->next(object).isValid());
checkICCHainLength();
// Add and remove properties until it clears all remaining redundant ones
uint i = 0;
while (object->internalClass()->numRedundantTransitions > 0) {
i = (i + 1) % numTransitions;
QV4::ScopedString s(scope, identifiers->get(i));
QV4::ScopedValue v(scope);
v->setDouble(i);
object->insertMember(s, v);
QVERIFY(object->deleteProperty(s->toPropertyKey()));
}
// Make sure that all dangling ICs are actually gone.
gc(engine);
// NOTE: If we allocate new ICs during gc (potentially triggered on alloc),
// then they will survive the previous gc call
// run gc again to ensure that a full gc cycle happens
gc(engine);
// Now the GC has removed the ICs we originally added by adding properties.
QVERIFY(prevIC->d()->transitions.empty() || prevIC->d()->transitions.front().lookup == nullptr);
// Same thing with redundant prototypes
for (uint i = 0; i < numTransitions; ++i) {
QV4::ScopedObject prototype(scope, engine.newObject());
object->setPrototypeOf(prototype); // Makes previous prototype redundant
}
checkICCHainLength();
}
void tst_qv4mm::createObjectsOnDestruction()
{
QQmlEngine engine;
QQmlComponent component(&engine, testFileUrl("createobjects.qml"));
std::unique_ptr<QObject> obj(component.create());
QVERIFY(obj);
QCOMPARE(obj->property("numChecked").toInt(), 1000);
QCOMPARE(obj->property("ok").toBool(), true);
}
void tst_qv4mm::sharedInternalClassDataMarking()
{
QV4::ExecutionEngine engine;
QV4::Scope scope(engine.rootContext());
QV4::ScopedObject object(scope, engine.newObject());
QVERIFY(!engine.memoryManager->gcBlocked);
// no scoped classes, as that would defeat the point of the test
// we block the gc instead so that the allocation can't trigger the gc
engine.memoryManager->gcBlocked = QV4::MemoryManager::InCriticalSection;
QV4::Heap::String *s = engine.newString(QString::fromLatin1("test"));
QV4::PropertyKey id = engine.identifierTable->asPropertyKeyImpl(s);
engine.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
QVERIFY(!id.asStringOrSymbol()->isMarked());
auto sm = engine.memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::MarkGlobalObject) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
// simulate partial marking caused by drain due mark stack running out of space
// and running out of time during drain phase for complete marking
// the last part is necessary for us to find not-already marked name/value pair to put into
// the object
QVERIFY(engine.memoryManager->markStack()->isEmpty());
QVERIFY(!id.asStringOrSymbol()->isMarked());
{
// for simplcity's sake we create a new PropertyKey - if gc were actually ongoing that would
// already mark it. In practice we would need to retrieve an existing one from an unmarked
// object, and then make that object unreachable afterwards.
object->put(id, QV4::Value::fromUInt32(42));
engine.memoryManager->markStack()->drain();
QVERIFY(id.asStringOrSymbol()->isMarked());
}
gc(engine);
// sanity check that we still can lookup the value
QV4::ScopedString s2(scope, engine.newString(QString::fromLatin1("test")));
auto val = QV4::Value::fromReturnedValue(object->get(s2->toPropertyKey()));
QCOMPARE(val.toUInt32(), 42u);
}
void tst_qv4mm::gcTriggeredInOnDestroyed()
{
QQmlEngine engine;
QV4::ExecutionEngine &v4 = *engine.handle();
QPointer<QObject> testObject = new QObject; // unparented, will be deleted
auto cleanup = qScopeGuard([&]() {
if (testObject)
testObject->deleteLater();
});
QQmlComponent component(&engine, testFileUrl("simpleObject.qml"));
auto toBeCollected = component.create();
QVERIFY(toBeCollected);
QJSEngine::setObjectOwnership(toBeCollected, QJSEngine::JavaScriptOwnership);
QV4::QObjectWrapper::ensureWrapper(&v4, toBeCollected);
QVERIFY(qmlEngine(toBeCollected));
QQmlComponentAttached *attached = QQmlComponent::qmlAttachedProperties(toBeCollected);
QVERIFY(attached);
QV4::Scope scope(v4.rootContext());
QCOMPARE(v4.memoryManager->gcBlocked, QV4::MemoryManager::Unblocked);
// let the gc run up to CallDestroyObjects
auto sm = v4.memoryManager->gcStateMachine.get();
sm->reset();
v4.memoryManager->gcBlocked = QV4::MemoryManager::NormalBlocked;
while (sm->state != QV4::GCState::CallDestroyObjects && sm->state != QV4::GCState::Invalid) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QCOMPARE(sm->state, QV4::GCState::CallDestroyObjects);
QV4::ScopedValue val(scope);
bool calledOnDestroyed = false;
auto con = connect(attached, &QQmlComponentAttached::destruction, this, [&]() {
calledOnDestroyed = true;
// we trigger uncommon code paths:
// create ObjectWrapper in destroyed hadnler
auto ddata = QQmlData::get(testObject.get(), false);
QVERIFY(!ddata); // we don't have ddata yet (otherwise we'd already have an object wrapper)
val = QV4::QObjectWrapper::wrap(&v4, testObject.get());
QJSEngine::setObjectOwnership(testObject, QJSEngine::JavaScriptOwnership);
// and also try to trigger a force gc completion
bool gcComplete = v4.memoryManager->tryForceGCCompletion();
QVERIFY(!gcComplete);
});
while (!calledOnDestroyed && sm->state != QV4::GCState::Invalid) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QVERIFY(!QTest::currentTestFailed());
QObject::disconnect(con);
QVERIFY(calledOnDestroyed);
bool gcComplete = v4.memoryManager->tryForceGCCompletion();
QVERIFY(gcComplete);
val = QV4::Value::undefinedValue(); // no longer keep a reference on the stack
QCOMPARE(sm->state, QV4::GCState::Invalid);
QVERIFY(testObject); // must not have be deleted, referenced by val
gc(v4); // run another gc cycle
QVERIFY(!testObject); // now collcted by gc
}
void tst_qv4mm::weakValuesAssignedAfterThePhaseThatShouldHandleWeakValues()
{
QObject testObject;
QV4::ExecutionEngine v4;
QCOMPARE(v4.memoryManager->gcBlocked, QV4::MemoryManager::Unblocked);
// let the gc run up to CallDestroyObjects
auto sm = v4.memoryManager->gcStateMachine.get();
sm->reset();
v4.memoryManager->gcBlocked = QV4::MemoryManager::NormalBlocked;
// run just before the sweeping face
while (sm->state != QV4::GCState::DoSweep && sm->state != QV4::GCState::Invalid) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QCOMPARE(sm->state, QV4::GCState::DoSweep);
{
// simulate code accessing the object wrapper for an object
QV4::Scope scope(v4.rootContext());
QV4::ScopedValue value(scope);
value = QV4::QObjectWrapper::wrap(&v4, &testObject);
// let it go out of scope before any stack re-scanning could happen
}
bool gcComplete = v4.memoryManager->tryForceGCCompletion();
QVERIFY(gcComplete);
auto ddata = QQmlData::get(&testObject);
QVERIFY(ddata);
if (ddata->jsWrapper.isUndefined()) {
// it's in principle valid for the wrapper to be reset, though the current
// implementation doesn't do it, and it requires some care
qWarning("Double-check the handling of weak values and object wrappers in the gc");
return;
}
QVERIFY(ddata->jsWrapper.valueRef()->heapObject()->inUse());
}
void tst_qv4mm::mapAndSetKeepValuesAlive()
{
{
QJSEngine jsEngine;
QV4::ExecutionEngine &engine = *jsEngine.handle();
QV4::Scope scope(&engine);
auto map = jsEngine.evaluate("new Map()");
QV4::ScopedFunctionObject afunction(scope, engine.memoryManager->alloc<QV4::FunctionObject>()); // hack, we just need about any function object
QV4::Value thisObject = QV4::Value::fromReturnedValue(QJSValuePrivate::asReturnedValue(&map));
QVERIFY(!engine.memoryManager->gcBlocked);
// no scoped classes, as that would defeat the point of the test
// we block the gc instead so that the allocation can't trigger the gc
engine.memoryManager->gcBlocked = QV4::MemoryManager::InCriticalSection;
QV4::Heap::String *key = engine.newString(QString::fromLatin1("key"));
QV4::Heap::String *value = engine.newString(QString::fromLatin1("value"));
QV4::Value values[2] = { QV4::Value::fromHeapObject(key), QV4::Value::fromHeapObject(value) };
engine.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
QVERIFY(!key->isMarked());
QVERIFY(!value->isMarked());
auto sm = engine.memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::HandleQObjectWrappers) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QV4::MapPrototype::method_set(afunction.getPointer(), &thisObject, values, 2);
// check that we can still insert primitve values - they don't get marked
// but they also should not casue any corrpution - note that a weak map
// only accepts object keys
values[0] = QV4::Value::fromInt32(12);
values[1] = QV4::Value::fromInt32(13);
QV4::MapPrototype::method_set(afunction.getPointer(), &thisObject, values, 2);
QVERIFY(key->isMarked());
QVERIFY(value->isMarked());
bool gcComplete = engine.memoryManager->tryForceGCCompletion();
QVERIFY(gcComplete);
QVERIFY(key->inUse());
QVERIFY(value->inUse());
gc(engine);
QCOMPARE(map.property("size").toInt(), 2);
}
{
QJSEngine jsEngine;
QV4::ExecutionEngine &engine = *jsEngine.handle();
QV4::Scope scope(&engine);
auto map = jsEngine.evaluate("new WeakMap()");
QV4::ScopedFunctionObject afunction(scope, engine.memoryManager->alloc<QV4::FunctionObject>()); // hack, we just need about any function object
QV4::Value thisObject = QV4::Value::fromReturnedValue(QJSValuePrivate::asReturnedValue(&map));
QVERIFY(!engine.memoryManager->gcBlocked);
// no scoped classes, as that would defeat the point of the test
// we block the gc instead so that the allocation can't trigger the gc
engine.memoryManager->gcBlocked = QV4::MemoryManager::InCriticalSection;
QV4::Heap::Object *key = engine.newObject();
QV4::Heap::String *value = engine.newString(QString::fromLatin1("value"));
QV4::Value values[2] = { QV4::Value::fromHeapObject(key), QV4::Value::fromHeapObject(value) };
engine.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
QVERIFY(!key->isMarked());
QVERIFY(!value->isMarked());
auto sm = engine.memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::HandleQObjectWrappers) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QV4::WeakMapPrototype::method_set(afunction.getPointer(), &thisObject, values, 2);
QVERIFY(!engine.hasException);
QVERIFY(key->isMarked());
QVERIFY(value->isMarked());
bool gcComplete = engine.memoryManager->tryForceGCCompletion();
QVERIFY(gcComplete);
QVERIFY(key->inUse());
QVERIFY(value->inUse());
gc(engine);
QCOMPARE(map.property("size").toInt(), 0);
}
{
QJSEngine jsEngine;
QV4::ExecutionEngine &engine = *jsEngine.handle();
QV4::Scope scope(&engine);
auto map = jsEngine.evaluate("new Set()");
QV4::ScopedFunctionObject afunction(scope, engine.memoryManager->alloc<QV4::FunctionObject>()); // hack, we just need about any function object
QV4::Value thisObject = QV4::Value::fromReturnedValue(QJSValuePrivate::asReturnedValue(&map));
QVERIFY(!engine.memoryManager->gcBlocked);
// no scoped classes, as that would defeat the point of the test
// we block the gc instead so that the allocation can't trigger the gc
engine.memoryManager->gcBlocked = QV4::MemoryManager::InCriticalSection;
QV4::Heap::Object *key = engine.newObject();
QV4::Value values[1] = { QV4::Value::fromHeapObject(key) };
engine.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
QVERIFY(!key->isMarked());
auto sm = engine.memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::HandleQObjectWrappers) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QV4::SetPrototype::method_add(afunction.getPointer(), &thisObject, values, 1);
values[0] = QV4::Value::fromInt32(13);
QV4::SetPrototype::method_add(afunction.getPointer(), &thisObject, values, 1);
QVERIFY(!engine.hasException);
QVERIFY(key->isMarked());
bool gcComplete = engine.memoryManager->tryForceGCCompletion();
QVERIFY(gcComplete);
QVERIFY(key->inUse());
gc(engine);
QCOMPARE(map.property("size").toInt(), 2);
}
{
QJSEngine jsEngine;
QV4::ExecutionEngine &engine = *jsEngine.handle();
QV4::Scope scope(&engine);
auto map = jsEngine.evaluate("new WeakSet()");
QV4::ScopedFunctionObject afunction(scope, engine.memoryManager->alloc<QV4::FunctionObject>()); // hack, we just need about any function object
QV4::Value thisObject = QV4::Value::fromReturnedValue(QJSValuePrivate::asReturnedValue(&map));
QVERIFY(!engine.memoryManager->gcBlocked);
// no scoped classes, as that would defeat the point of the test
// we block the gc instead so that the allocation can't trigger the gc
engine.memoryManager->gcBlocked = QV4::MemoryManager::InCriticalSection;
QV4::Heap::Object *key = engine.newObject();
QV4::Value values[1] = { QV4::Value::fromHeapObject(key) };
engine.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
QVERIFY(!key->isMarked());
auto sm = engine.memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::HandleQObjectWrappers) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QV4::WeakSetPrototype::method_add(afunction.getPointer(), &thisObject, values, 1);
QVERIFY(!engine.hasException);
QVERIFY(key->isMarked());
bool gcComplete = engine.memoryManager->tryForceGCCompletion();
QVERIFY(gcComplete);
QVERIFY(key->inUse());
gc(engine);
QCOMPARE(map.property("size").toInt(), 0);
}
}
QV4::ReturnedValue method_force_jit(const QV4::FunctionObject *b, const QV4::Value *, const QV4::Value *argv, int argc)
{
#if QT_CONFIG(qml_jit)
auto *v4 =b->engine();
Q_ASSERT(argc == 1);
QV4::Scope scope(v4);
QV4::Scoped<QV4::JavaScriptFunctionObject> functionObject(scope, argv[0]);
auto *func = static_cast<QV4::Heap::JavaScriptFunctionObject *>(functionObject->heapObject())->function;
Q_ASSERT(func);
func->interpreterCallCount = std::numeric_limits<int>::max();
if (!v4->canJIT(func))
return QV4::StaticValue::fromBoolean(false).asReturnedValue();
QV4::JIT::BaselineJIT(func).generate();
return QV4::StaticValue::fromBoolean(true).asReturnedValue();
#else
Q_UNUSED(b);
Q_UNUSED(argv);
Q_UNUSED(argc);
return QV4::StaticValue::fromBoolean(false).asReturnedValue();
#endif
}
QV4::ReturnedValue method_setup_gc_for_test(const QV4::FunctionObject *b, const QV4::Value *, const QV4::Value *, int)
{
auto *v4 =b->engine();
auto *mm = v4->memoryManager;
mm->runFullGC();
auto sm = v4->memoryManager->gcStateMachine.get();
sm->reset();
while (sm->state != QV4::GCState::MarkGlobalObject) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
return QV4::Encode::undefined();
}
QV4::ReturnedValue method_is_marked(const QV4::FunctionObject *, const QV4::Value *, const QV4::Value *argv, int argc)
{
Q_ASSERT(argc == 1);
auto h = argv[0].heapObject();
Q_ASSERT(h);
return QV4::Encode(h->isMarked());
}
void tst_qv4mm::jittedStoreLocalMarksValue()
{
QQmlEngine engine;
auto *v4 = engine.handle();
auto globalObject = v4->globalObject;
globalObject->defineDefaultProperty(QStringLiteral("__setupGC"), method_setup_gc_for_test);
globalObject->defineDefaultProperty(QStringLiteral("__forceJit"), method_force_jit);
globalObject->defineDefaultProperty(QStringLiteral("__isMarked"), method_is_marked);
QQmlComponent comp(&engine, testFileUrl("storeLocal.qml"));
QVERIFY(comp.isReady());
std::unique_ptr<QObject> root {comp.create()};
QVERIFY(root);
bool ok = false;
int result = root->property("result").toInt(&ok);
QVERIFY(ok);
if (result == -1)
QSKIP("Could not run JIT");
QCOMPARE(result, 0);
}
QV4::ReturnedValue method_in_use(const QV4::FunctionObject *, const QV4::Value *, const QV4::Value *argv, int argc) {
static QV4::Value::HeapBasePtr target = nullptr;
if (argc == 1) {
target = argv[0].heapObject();
}
Q_ASSERT(target);
return QV4::Encode(target->inUse());
}
void tst_qv4mm::forInOnProxyMarksTarget() {
QQmlEngine engine;
auto *v4 = engine.handle();
auto globalObject = v4->globalObject;
globalObject->defineDefaultProperty(QStringLiteral("__inUse"), method_in_use);
QQmlComponent comp(&engine, testFileUrl("forInOnProxyMarksTarget.qml"));
QVERIFY(comp.isReady());
std::unique_ptr<QObject> root {comp.create()};
QVERIFY(root);
QVERIFY(root->property("wasInUseBeforeRevoke").toBool());
QVERIFY(root->property("wasInUseAfterRevoke").toBool());
}
struct DebugMemoryManager : QV4::MemoryManager
{
public:
QV4::Heap::Object *allocObjectWithMemberData(const QV4::VTable *vtable, uint nMembers)
{
return QV4::MemoryManager::allocObjectWithMemberData(vtable, nMembers);
}
};
void tst_qv4mm::allocWithMemberDataMidwayDrain()
{
QV4::ExecutionEngine v4 {};
QCOMPARE(v4.memoryManager->gcBlocked, QV4::MemoryManager::Unblocked);
auto sm = v4.memoryManager->gcStateMachine.get();
sm->reset();
v4.memoryManager->gcBlocked = QV4::MemoryManager::NormalBlocked;
while (sm->state != QV4::GCState::InitCallDestroyObjects) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QCOMPARE(sm->state, QV4::GCState::InitCallDestroyObjects);
v4.memoryManager->markStack()->setSoftLimit(0);
// UB cast, but works in practice
auto *debugMM = static_cast<DebugMemoryManager *>(v4.memoryManager);
// should not trigger an assertion!
auto *o = debugMM->allocObjectWithMemberData(QV4::Object::staticVTable(), 1024);
// need to set the IC of the object itself, otherwise it will cause issues during
// engine shutdown
o->internalClass.set(&v4, QV4::Object::defaultInternalClass(&v4));
QVERIFY(o); // dummy check
}
void tst_qv4mm::constObjectWrapperOnlyConstInSingleEngine()
{
auto myObject = new QObject(this);
QV4::ExecutionEngine e1 {};
// prevent the gc from running too early
e1.memoryManager->gcBlocked = QV4::MemoryManager::NormalBlocked;
// create a non-const wrapper in the first engine
QV4::QObjectWrapper::ensureWrapper(&e1, myObject);
{
QV4::ExecutionEngine e2 {};
QV4::Scope scope(&e2);
// create a const wrapper in the second engine
QV4::ScopedValue val(scope, QV4::QObjectWrapper::wrapConst(&e2, myObject));
}
QVERIFY(!e1.m_multiplyWrappedQObjects);
auto ddata = QQmlData::get(myObject, false);
QVERIFY(ddata);
QVERIFY(ddata->hasConstWrapper);
e1.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
gc(e1); // should not trigger an assert
// hasConstWrapper only tells us that at some point, some engine created one;
// the const wrappers are not actually shared, but we can't know when the last
// one is gone
QVERIFY(ddata->hasConstWrapper);
}
void tst_qv4mm::markObjectWrappersAfterMarkWeakValues()
{
// Advance gc to just after MarkWeakValues
const auto setupGC = [](QV4::ExecutionEngine *v4) {
QCOMPARE(v4->memoryManager->gcBlocked, QV4::MemoryManager::Unblocked);
auto sm = v4->memoryManager->gcStateMachine.get();
sm->reset();
v4->memoryManager->gcBlocked = QV4::MemoryManager::NormalBlocked;
const QV4::GCState targetState = QV4::GCState(QV4::GCState::MarkWeakValues + 1);
while (sm->state != targetState) {
QV4::GCStateInfo& stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QCOMPARE(sm->state, targetState);
};
QQmlEngine engine;
QV4::ExecutionEngine *v4 = engine.handle();
setupGC(v4);
QObject *object = new QObject;
object->setObjectName("yep");
QJSEngine::setObjectOwnership(object, QJSEngine::JavaScriptOwnership);
engine.rootContext()->setContextProperty("prop", object);
(void) QV4::QObjectWrapper::wrap(v4, object);
QVERIFY(v4->memoryManager->tryForceGCCompletion());
QCoreApplication::sendPostedEvents(nullptr, QEvent::DeferredDelete);
QCoreApplication::processEvents();
const QVariant retrieved = engine.rootContext()->contextProperty("prop");
QVERIFY(qvariant_cast<QObject *>(retrieved));
QCOMPARE(qvariant_cast<QObject *>(retrieved)->objectName(), "yep");
}
void tst_qv4mm::variantAssociationObjectMarksMember()
{
QJSEngine jsEngine;
QV4::ExecutionEngine &engine = *jsEngine.handle();
QV4::Scope scope(&engine);
QVariantHash assoc;
assoc[QLatin1String("test")] = 2;
QV4::ScopedObject o(scope, engine.newObject());
QV4::Scoped<QV4::VariantAssociationObject> varAssocObject(
scope,
QV4::VariantAssociationPrototype::fromQVariantHash(&engine, assoc, o->d(), -1, QV4::Heap::ReferenceObject::NoFlag)
);
bool hasProperty = false;
// ensure that the propertyIndexMapping gets initialized
QV4::ScopedString test(scope, jsEngine.handle()->newString(QLatin1String("test")));
varAssocObject->virtualGet(varAssocObject, test->toPropertyKey(), nullptr, &hasProperty);
QVERIFY(hasProperty);
gc(engine);
auto mapping = varAssocObject->d()->propertyIndexMapping;
QVERIFY(mapping);
QVERIFY(mapping->inUse());
}
#ifdef QT_BUILD_INTERNAL
void tst_qv4mm::validateIncrementalMarkPhase_data() {
QTest::addColumn<void>("");
for (quint8 i = 1; i <= 100; ++i)
QTest::addRow("Randomized Sample %d", i);
}
void tst_qv4mm::validateIncrementalMarkPhase() {
QRandomGenerator& generator = *QRandomGenerator::global();
auto undefined = [](QQmlEngine&) {
return QJSValue();
};
auto null = [](QQmlEngine&) {
return QJSValue(QJSValue::NullValue);
};
auto boolean = [&generator](QQmlEngine& engine) {
return engine.toScriptValue(generator.bounded(2) == 0);
};
auto number = [&generator](QQmlEngine& engine) {
return engine.toScriptValue(generator.bounded(std::numeric_limits<double>::max()));
};
auto qstring = [&generator]() {
// We don't really care much about the actual content, just
// that we have randomized objects on the heap that might or
// might not be hit by the random mutations, thus the naive
// and limited randomization.
int length = generator.bounded(1, 10);
QString new_string(length, 'a');
std::generate_n(new_string.begin(), length, [&generator](){
return QChar(generator.bounded('a', 'z'));
});
return new_string;
};
auto string = [&qstring](QQmlEngine& engine) {
return engine.toScriptValue(qstring());
};
auto symbol = [&qstring](QQmlEngine& engine) {
return engine.newSymbol(qstring());
};
auto regex = [&qstring](QQmlEngine& engine) {
return engine.toScriptValue(qstring());
};
auto date = [&generator](QQmlEngine& engine) {
return engine.toScriptValue(QTime(
generator.bounded(24),
generator.bounded(60),
generator.bounded(60),
generator.bounded(1000)
));
};
auto array = [&generator](QQmlEngine& engine, quint8 max_depth, auto value) {
int length = generator.bounded(10);
auto new_array = engine.newArray(length);
for (int i = 0; i < length; ++i)
new_array.setProperty(i, value(engine, max_depth - 1, value));
return new_array;
};
auto object = [&qstring, &generator](QQmlEngine& engine, quint8 max_depth, auto value) {
auto new_object = engine.newObject();
int max_count = generator.bounded(10);
for (int i = 0; i < max_count; ++i) {
auto prop = qstring();
if (new_object.hasProperty(prop)) continue;
new_object.setProperty(prop, value(engine, max_depth - 1, value));
}
return new_object;
};
auto value = [&](QQmlEngine& engine, quint8 max_depth, auto value) {
bool generate_leaf = max_depth == 0;
switch (generator.bounded(generate_leaf ? 8 : 10)) {
case 0: return undefined(engine);
case 1: return null(engine);
case 2: return boolean(engine);
case 3: return number(engine);
case 4: return string(engine);
case 5: return symbol(engine);
case 6: return regex(engine);
case 7: return date(engine);
case 8: return array(engine, max_depth, value);
case 9: return object(engine, max_depth, value);
default: Q_UNREACHABLE();
};
};
QQmlEngine engine;
auto handle = engine.handle();
handle->memoryManager->crossValidateIncrementalGC = true;
std::vector<QJSValue> values;
{
int object_count = generator.bounded(30,100);
values.reserve(object_count);
while (object_count > 0) {
values.emplace_back(value(engine, 5, value));
--object_count;
}
}
engine.collectGarbage();
auto state_machine = handle->memoryManager->gcStateMachine.get();
std::vector<QV4::GCStateMachine::BitmapError> bitmapErrors;
state_machine->bitmapErrors = &bitmapErrors;
QCOMPARE(handle->memoryManager->gcBlocked, QV4::MemoryManager::Unblocked);
state_machine->reset();
handle->memoryManager->gcBlocked = QV4::MemoryManager::NormalBlocked;
while (state_machine->state != QV4::GCState::CrossValidateIncrementalMarkPhase) {
QV4::GCStateInfo& stateInfo = state_machine->stateInfoMap[int(state_machine->state)];
state_machine->state = stateInfo.execute(state_machine, state_machine->stateData);
}
std::vector<QV4::GCStateMachine::BitmapError> block_mutations;
{
std::size_t mutations_count = generator.bounded(30);
block_mutations.reserve(mutations_count);
std::size_t fuel = 100;
auto& chunks = handle->memoryManager->blockAllocator.chunks;
while (mutations_count > 0 && fuel > 0) {
std::size_t chunk_index = generator.bounded(quint64(chunks.size()));
QV4::Chunk* chunk = chunks[chunk_index];
std::size_t bitmap_index = generator.bounded(quint64(QV4::Chunk::EntriesInBitmap));
auto& bitmap = chunk->blackBitmap[bitmap_index];
if (bitmap) {
std::vector<quintptr> object_aligned_masks{};
quintptr copy = bitmap;
for (quintptr mask{1}; copy; mask <<= 1) {
if (copy & mask) {
object_aligned_masks.push_back(mask);
copy ^= mask;
}
}
quintptr choice = object_aligned_masks[generator.bounded(quint64(object_aligned_masks.size()))];
bitmap ^= choice;
block_mutations.emplace_back(chunk_index, bitmap_index, std::log2(choice));
--mutations_count;
} else {
--fuel;
}
}
}
std::sort(block_mutations.begin(), block_mutations.end());
QCOMPARE(state_machine->state, QV4::GCState::CrossValidateIncrementalMarkPhase);
QV4::GCStateInfo& stateInfo = state_machine->stateInfoMap[int(state_machine->state)];
state_machine->state = stateInfo.execute(state_machine, state_machine->stateData);
QCOMPARE(bitmapErrors.size(), block_mutations.size());
for (std::size_t i = 0; i < block_mutations.size(); ++i)
QCOMPARE(bitmapErrors[i], block_mutations[i]);
}
#endif
void tst_qv4mm::trackObjectDoesNotAccessGarbageOnTheStackOnAllocation()
{
#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
QSKIP("Our main visibility tool for this test is an assertion. Thus the test needs assertions to be enabled.");
#endif
QJSEngine jsengine;
QV4::ExecutionEngine* engine = jsengine.handle();
engine->memoryManager->aggressiveGC = true;
engine->memoryManager->setGCTimeLimit(0);
*engine->jsStackTop = QV4::Value::fromHeapObject(engine->memoryManager->allocManaged<QV4::String>());
jsengine.collectGarbage();
QV4::Scope scope(engine);
ObjectInCreationGCAnchorList tracker(scope);
QObject object{};
tracker.trackObject(engine, &object);
}
void tst_qv4mm::spreadArgumentDoesNotAccessGarbageOnTheStackOnAllocation()
{
#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
QSKIP("Our main visibility tool for this test is an assertion. Thus the test needs assertions to be enabled.");
#endif
QJSEngine jsengine;
QV4::ExecutionEngine* engine = jsengine.handle();
engine->memoryManager->aggressiveGC = true;
engine->memoryManager->setGCTimeLimit(0);
QJSValue function = jsengine.evaluate("function foo(){}; foo");
QV4::Value* function_value = QJSValuePrivate::takeManagedValue(&function);
QV4::Scope scope(engine);
QV4::ScopedObject thisobject(scope);
QV4::ScopedString spread(scope, engine->newString(QString(u"abc")));
QV4::Value argv[2] = { QV4::Value::emptyValue(), spread };
{
QV4::Value value = QV4::Value::fromHeapObject(engine->memoryManager->allocManaged<QV4::String>());
for (QV4::Value* top = engine->jsStackTop; top < engine->jsStackLimit; ++top)
*top = value;
}
jsengine.collectGarbage();
QV4::Runtime::CallWithSpread::call(engine, *function_value, thisobject, argv, 1);
}
void tst_qv4mm::scopedConvertToStringFromReturnedValueDoesNotAccessGarbageOnTheStackOnAllocation()
{
#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
QSKIP("Our main visibility tool for this test is an assertion. Thus the test needs assertions to be enabled.");
#endif
QJSEngine jsengine;
QV4::ExecutionEngine* engine = jsengine.handle();
engine->memoryManager->aggressiveGC = true;
engine->memoryManager->setGCTimeLimit(0);
*engine->jsStackTop = QV4::Value::fromHeapObject(engine->memoryManager->allocManaged<QV4::String>());
jsengine.collectGarbage();
QV4::Scope scope(engine);
QV4::ScopedString string(scope, QV4::StaticValue::fromDouble(1.24).asReturnedValue(), QV4::ScopedString::Convert);
}
void tst_qv4mm::scopedConvertToObjectFromReturnedValueDoesNotAccessGarbageOnTheStackOnAllocation()
{
#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
QSKIP("Our main visibility tool for this test is an assertion. Thus the test needs assertions to be enabled.");
#endif
QJSEngine jsengine;
QV4::ExecutionEngine* engine = jsengine.handle();
engine->memoryManager->aggressiveGC = true;
engine->memoryManager->setGCTimeLimit(0);
*engine->jsStackTop = QV4::Value::fromHeapObject(engine->memoryManager->allocManaged<QV4::String>());
jsengine.collectGarbage();
QV4::Scope scope(engine);
QV4::ScopedObject object(scope, QV4::StaticValue::fromBoolean(true).asReturnedValue(), QV4::ScopedObject::Convert);
}
void tst_qv4mm::scopedConvertToStringFromValueDoesNotAccessGarbageOnTheStackOnAllocation()
{
#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
QSKIP("Our main visibility tool for this test is an assertion. Thus the test needs assertions to be enabled.");
#endif
QJSEngine jsengine;
QV4::ExecutionEngine* engine = jsengine.handle();
engine->memoryManager->aggressiveGC = true;
engine->memoryManager->setGCTimeLimit(0);
*engine->jsStackTop = QV4::Value::fromHeapObject(engine->memoryManager->allocManaged<QV4::String>());
jsengine.collectGarbage();
QV4::Scope scope(engine);
QV4::ScopedString string(scope, QV4::StaticValue::fromDouble(1.24).asValue<QV4::Value>(), QV4::ScopedString::Convert);
}
void tst_qv4mm::scopedConvertToObjectFromValueDoesNotAccessGarbageOnTheStackOnAllocation()
{
#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
QSKIP("Our main visibility tool for this test is an assertion. Thus the test needs assertions to be enabled.");
#endif
QJSEngine jsengine;
QV4::ExecutionEngine* engine = jsengine.handle();
engine->memoryManager->aggressiveGC = true;
engine->memoryManager->setGCTimeLimit(0);
*engine->jsStackTop = QV4::Value::fromHeapObject(engine->memoryManager->allocManaged<QV4::String>());
jsengine.collectGarbage();
QV4::Scope scope(engine);
QV4::ScopedObject object(scope, QV4::StaticValue::fromBoolean(true).asValue<QV4::Value>(), QV4::ScopedObject::Convert);
}
void tst_qv4mm::dontCrashOnScopedStackFrame()
{
QJSEngine jsengine;
QV4::ExecutionEngine *engine = jsengine.handle();
QV4::Scope scope(engine);
QV4::ScopedStackFrame frame(scope, engine->rootContext());
jsengine.collectGarbage();
}
void tst_qv4mm::sweepTriggeringChunkAllocation_data()
{
QTest::addColumn<bool>("doInitalAlloc");
QTest::addRow("without_inital") << true;
QTest::addRow("with_inital") << false;
}
QT_BEGIN_NAMESPACE
namespace QV4 {
namespace Heap {
struct AllocatingDestroy : Object {
void init(bool *wasDestroyed, QV4::PersistentValue *pval) {
Object::init();
m_wasDestroyed = wasDestroyed;
m_pval = pval;
}
void destroy() {
auto v4 = internalClass->engine;
for (int i = 0; i != 4096; ++i) {
v4->newArrayObject(100);
}
m_pval->set(v4, v4->newString(QLatin1String("foobar"))->asReturnedValue());
*m_wasDestroyed = true;
Object::destroy();
}
QV4::PersistentValue *m_pval;
bool *m_wasDestroyed;
};
} // Heap
struct AllocatingDestroy : Object {
V4_OBJECT2(AllocatingDestroy, Object)
V4_NEEDS_DESTROY
};
DEFINE_OBJECT_VTABLE(AllocatingDestroy);
}
QT_END_NAMESPACE
void tst_qv4mm::sweepTriggeringChunkAllocation()
{
QFETCH(bool, doInitalAlloc);
QJSEngine jsEngine;
QV4::ExecutionEngine &engine = *jsEngine.handle();
QV4::PersistentValue pval;
bool wasDestroyed = false;
engine.memoryManager->gcBlocked = QV4::MemoryManager::InCriticalSection;
if (doInitalAlloc) {
// ensure that we end up with an empty Chunk,
// so that with a "dead" first chunk which doesn't allocate
for (int i = 0; i != 1024; ++i) {
engine.newArrayObject(100);
}
}
engine.memoryManager->allocate<QV4::AllocatingDestroy>(&wasDestroyed, &pval);
engine.memoryManager->gcBlocked = QV4::MemoryManager::Unblocked;
gc(engine);
QVERIFY(wasDestroyed);
QVERIFY(!pval.isEmpty());
QVERIFY(pval.asManaged()->inUse());
QCOMPARE(pval.asManaged()->toQStringNoThrow(), QLatin1String("foobar"));
for (const QV4::BlockAllocator *allocator : {
&engine.memoryManager->blockAllocator,
&engine.memoryManager->icAllocator }) {
std::vector<QV4::HeapItem *> freeItems;
if (QV4::HeapItem *nextFree = allocator->nextFree) {
// nextFree has to point into some live chunk.
const auto it = std::find(
allocator->chunks.begin(), allocator->chunks.end(), nextFree->chunk());
QVERIFY(it != allocator->chunks.end());
freeItems.push_back(nextFree);
}
for (int i = 0; i < QV4::BlockAllocator::NumBins; ++i) {
for (QV4::HeapItem *heapItem = allocator->freeBins[i];
heapItem; heapItem = heapItem->freeData.next) {
// Every free list item has to be part of some live chunk.
auto it = std::find(
allocator->chunks.cbegin(), allocator->chunks.cend(), heapItem->chunk());
QVERIFY(it != allocator->chunks.cend());
freeItems.push_back(heapItem);
}
}
// There must not be any duplicate free list items.
std::sort(freeItems.begin(), freeItems.end());
const auto it = std::unique(freeItems.begin(), freeItems.end());
QCOMPARE(it, freeItems.end());
}
}
void tst_qv4mm::partitionGrowingContainer()
{
std::vector<int> prePopulated;
std::vector<int> growing;
std::vector<int> extraEntries;
for (int i = 0; i < 256; ++i) {
growing.push_back((i * 37) % 512);
extraEntries.push_back((i * 41) % 512);
}
prePopulated = growing;
prePopulated.insert(prePopulated.end(), extraEntries.begin(), extraEntries.end());
std::size_t predicateCallsPrePopulated = 0;
const auto it = std::partition(prePopulated.begin(), prePopulated.end(), [&](int entry) {
++predicateCallsPrePopulated;
return entry < 256;
});
std::size_t predicateCallsGrowing = 0;
const std::size_t j = QV4::partition(growing, [&](const std::size_t index) {
++predicateCallsGrowing;
if (index < extraEntries.size())
growing.push_back(extraEntries[index]);
return growing[index] < 256;
});
// We've iterated every entry exactly once, thereby adding each extraEntry exactly once.
// Now the sizes of the two vectors are the same.
QCOMPARE(predicateCallsGrowing, growing.size());
QCOMPARE(predicateCallsPrePopulated, prePopulated.size());
QCOMPARE(growing.size(), prePopulated.size());
// Since both vectors have the same entries, the partitioning point is at the same place.
QCOMPARE(j, it - prePopulated.begin());
// The entries before the partition point fulfill the predicate
for (std::size_t index = 0; index < j; ++index) {
QVERIFY(growing[index] < 256);
QVERIFY(prePopulated[index] < 256);
}
// The entries after the partition point don't fulfill the predicate
for (std::size_t index = j; index < growing.size(); ++index) {
QVERIFY(growing[index] >= 256);
QVERIFY(prePopulated[index] >= 256);
}
}
void tst_qv4mm::findObjectsForCompilationUnit_data()
{
QTest::addColumn<QString>("component1File");
QTest::addColumn<QString>("component2File");
QTest::addColumn<int>("component1InstanceCount");
QTest::addColumn<int>("component2InstanceCount");
QTest::addColumn<int>("expectedUnit1ObjectCount");
QTest::addColumn<int>("expectedUnit2ObjectCount");
QTest::addColumn<bool>("component2HasChildObject");
QTest::addColumn<bool>("component2InheritsComponent1");
QTest::newRow("single_instance_each")
<< "recordTest1.qml"
<< "recordTest2.qml"
<< 1 // component1InstanceCount
<< 1 // component2InstanceCount
<< 1 // expectedUnit1ObjectCount
<< 2 // expectedUnit2ObjectCount (includes child)
<< true // component2HasChildObject
<< false; // component2InheritsComponent1
QTest::newRow("multiple_instances")
<< "recordTest1.qml"
<< "recordTest2.qml"
<< 3 // component1InstanceCount
<< 2 // component2InstanceCount
<< 3 // expectedUnit1ObjectCount
<< 4 // expectedUnit2ObjectCount (includes children)
<< true // component2HasChildObject
<< false; // component2InheritsComponent1
QTest::newRow("derived_type_found_via_base_compilation_unit")
<< "RecordTestBase.qml" // base type
<< "recordTest3.qml" // derived type
<< 1 // component1InstanceCount (base type)
<< 2 // component2InstanceCount (derived type)
<< 3 // expectedUnit1ObjectCount (1 base + 2 derived, all have base's compilation unit)
<< 2 // expectedUnit2ObjectCount (only the 2 derived instances)
<< false // component2HasChildObject
<< true; // component2InheritsComponent1
QTest::newRow("base_type_found_via_derived_compilation_unit")
<< "RecordTestBase.qml" // base type
<< "recordTest4.qml" // derived type
<< 1 // component1InstanceCount (base type)
<< 2 // component2InstanceCount (QtObject with base type as child)
<< 3 // expectedUnit1ObjectCount (1 base + 2 children, all have base's compilation unit)
<< 4 // expectedUnit2ObjectCount (2 QtObject and 2 children)
<< true // component2HasChildObject
<< false; // component2InheritsComponent1
QTest::newRow("non_vme_child_found_via_compilation_unit")
<< "recordTest1.qml"
<< "recordTestNonVme.qml"
<< 1 // component1InstanceCount
<< 1 // component2InstanceCount
<< 1 // expectedUnit1ObjectCount
<< 2 // expectedUnit2ObjectCount (root + non-VME child)
<< true // component2HasChildObject
<< false; // component2InheritsComponent1
}
void tst_qv4mm::findObjectsForCompilationUnit()
{
QFETCH(QString, component1File);
QFETCH(QString, component2File);
QFETCH(int, component1InstanceCount);
QFETCH(int, component2InstanceCount);
QFETCH(int, expectedUnit1ObjectCount);
QFETCH(int, expectedUnit2ObjectCount);
QFETCH(bool, component2HasChildObject);
QFETCH(bool, component2InheritsComponent1);
QQmlEngine engine;
QQmlComponent component1(&engine, testFileUrl(component1File));
QQmlComponent component2(&engine, testFileUrl(component2File));
std::vector<std::unique_ptr<QObject>> component1Objects;
for (int i = 0; i < component1InstanceCount; ++i) {
std::unique_ptr<QObject> obj(component1.create());
QVERIFY(obj);
component1Objects.push_back(std::move(obj));
}
std::vector<std::unique_ptr<QObject>> component2Objects;
for (int i = 0; i < component2InstanceCount; ++i) {
std::unique_ptr<QObject> obj(component2.create());
QVERIFY(obj);
component2Objects.push_back(std::move(obj));
}
QQmlData *ddata1 = QQmlData::get(component1Objects.front().get());
QVERIFY(ddata1);
QVERIFY(ddata1->compilationUnit);
const QQmlRefPointer<QV4::CompiledData::CompilationUnit> unit1
= ddata1->compilationUnit->baseCompilationUnit();
QQmlData *ddata2 = QQmlData::get(component2Objects.front().get());
QVERIFY(ddata2);
QVERIFY(ddata2->compilationUnit);
const QQmlRefPointer<QV4::CompiledData::CompilationUnit> unit2
= ddata2->compilationUnit->baseCompilationUnit();
QCOMPARE_NE(unit1, unit2);
const auto contains = [](const std::vector<QObject *> &container, QObject *o) {
return std::find(container.begin(), container.end(), o) != container.end();
};
QV4::ExecutionEngine *v4 = engine.handle();
const std::vector<QObject *> recorded1
= v4->memoryManager->findObjectsForCompilationUnits({unit1});
QCOMPARE(recorded1.size(), expectedUnit1ObjectCount);
for (const auto &obj : component1Objects)
QVERIFY(contains(recorded1, obj.get()));
for (const auto &obj : component2Objects)
QCOMPARE(contains(recorded1, obj.get()), component2InheritsComponent1);
const std::vector<QObject *> recorded2
= v4->memoryManager->findObjectsForCompilationUnits({unit2});
QCOMPARE(recorded2.size(), expectedUnit2ObjectCount);
for (const auto &obj : component2Objects)
QVERIFY(contains(recorded2, obj.get()));
for (const auto &obj : component1Objects)
QVERIFY(!contains(recorded2, obj.get()));
if (component2HasChildObject) {
QObject *child = component2Objects.front()->property("child").value<QObject *>();
QVERIFY(child);
QVERIFY(contains(recorded2, child));
}
}
void tst_qv4mm::transitionWithExpiredDeadline()
{
QV4::ExecutionEngine engine;
auto *mm = engine.memoryManager;
auto *sm = mm->gcStateMachine.get();
for (int i = 0; i < 1000; ++i) {
if (sm->state != QV4::GCState::Invalid) {
sm->timeLimit = std::chrono::microseconds(0);
while (sm->state != QV4::GCState::Invalid)
sm->transition();
}
mm->m_markStack.reset();
mm->gcBlocked = QV4::MemoryManager::NormalBlocked;
sm->reset();
QCOMPARE(sm->state, QV4::GCState::MarkStart);
QVERIFY(!mm->m_markStack);
// Minimal timeLimit to maximize chance of deadline expiring before first check.
sm->timeLimit = std::chrono::microseconds(1);
sm->transition();
// At least one step must have executed. That creates the mark stack.
QVERIFY(mm->m_markStack);
}
}
void tst_qv4mm::redrainDuringSweepWhenRunningToCompletion()
{
// When running GC to completion (timeLimit == 0), the markStack should be
// drained before each state (via redrainDuringSweep).
QV4::ExecutionEngine engine;
auto *mm = engine.memoryManager;
auto *sm = mm->gcStateMachine.get();
QV4::Scope scope(&engine);
// Run GC up to HandleQObjectWrappers (after InitCallDestroyObjects)
mm->gcBlocked = QV4::MemoryManager::NormalBlocked;
sm->reset();
while (sm->state != QV4::GCState::Invalid
&& sm->state < QV4::GCState::HandleQObjectWrappers) {
QV4::GCStateInfo &stateInfo = sm->stateInfoMap[int(sm->state)];
sm->state = stateInfo.execute(sm, sm->stateData);
}
QCOMPARE(sm->state, QV4::GCState::HandleQObjectWrappers);
QVERIFY(mm->m_markStack);
QV4::ScopedObject referenced(scope, engine.newObject());
QVERIFY(!referenced->heapObject()->isMarked());
sm->timeLimit = std::chrono::microseconds(0);
sm->transition();
QCOMPARE(sm->state, QV4::GCState::Invalid);
mm->gcBlocked = QV4::MemoryManager::Unblocked;
// The referenced object has to survive the GC completion because it's on the stack.
QVERIFY(referenced->heapObject()->inUse());
}
QTEST_MAIN(tst_qv4mm)
#include "tst_qv4mm.moc"
|