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
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
|
/* seg.c: SEGMENTS
*
* $Id$
* Copyright (c) 2001 Ravenbrook Limited. See end of file for license.
*
* .design: The design for this module is <design/seg/>.
*
* PURPOSE
*
* .purpose: This is the implementation of the generic segment interface.
* It defines the interface functions and two useful segment classes:
* .purpose.class.seg: Class Seg is a class which is as simple
* as efficiency demands permit. (It includes fields for storing colour
* for efficiency). It may be subclassed by clients of the module.
* .purpose.class.seg-gc: Class GCSeg is a concrete class support all
* all current GC features, and providing full backwards compatibility
* with "old-style" segments. It may be subclassed by clients of the
* module.
*
* TRANSGRESSIONS
*
* .check.shield: The "pm", "sm", and "depth" fields are not checked by
* SegCheck, because I haven't spent time working out the invariants.
* We should certainly work them out, by studying <code/shield.c>, and
* assert things about shielding, protection, shield cache consistency,
* etc. richard 1997-04-03
*/
#include "tract.h"
#include "mpm.h"
SRCID(seg, "$Id$");
/* SegGCSeg -- convert generic Seg to GCSeg */
#define SegGCSeg(seg) ((GCSeg)(seg))
/* SegPoolRing -- Pool ring accessor */
#define SegPoolRing(seg) (&(seg)->poolRing)
/* forward declarations */
static void SegFinish(Seg seg);
static Res SegInit(Seg seg, Pool pool, Addr base, Size size,
Bool withReservoirPermit, va_list args);
/* Generic interface support */
/* SegAlloc -- allocate a segment from the arena */
Res SegAlloc(Seg *segReturn, SegClass class, SegPref pref,
Size size, Pool pool, Bool withReservoirPermit, ...)
{
Res res;
Arena arena;
Seg seg;
Addr base;
va_list args;
AVER(segReturn != NULL);
AVERT(SegClass, class);
AVERT(SegPref, pref);
AVER(size > (Size)0);
AVERT(Pool, pool);
AVER(BoolCheck(withReservoirPermit));
arena = PoolArena(pool);
AVERT(Arena, arena);
AVER(SizeIsAligned(size, arena->alignment));
/* allocate the memory from the arena */
res = ArenaAlloc(&base, pref, size, pool, withReservoirPermit);
if (res != ResOK)
goto failArena;
/* allocate the segment object from the control pool */
res = ControlAlloc((void **)&seg, arena, class->size, withReservoirPermit);
if (res != ResOK)
goto failControl;
va_start(args, withReservoirPermit);
seg->class = class;
res = SegInit(seg, pool, base, size, withReservoirPermit, args);
va_end(args);
if (res != ResOK)
goto failInit;
EVENT_PPAWP(SegAlloc, arena, seg, SegBase(seg), size, pool);
*segReturn = seg;
return ResOK;
failInit:
ControlFree(arena, seg, class->size);
failControl:
ArenaFree(base, size, pool);
failArena:
EVENT_PWP(SegAllocFail, arena, size, pool);
return res;
}
/* SegFree -- free a segment to the arena */
void SegFree(Seg seg)
{
Arena arena;
Pool pool;
Addr base;
Size size;
SegClass class;
AVERT(Seg, seg);
pool = SegPool(seg);
AVERT(Pool, pool);
arena = PoolArena(pool);
AVERT(Arena, arena);
base = SegBase(seg);
size = SegSize(seg);
class = seg->class;
SegFinish(seg);
ControlFree(arena, seg, class->size);
ArenaFree(base, size, pool);
EVENT_PP(SegFree, arena, seg);
return;
}
/* SegInit -- initialize a segment */
static Res SegInit(Seg seg, Pool pool, Addr base, Size size,
Bool withReservoirPermit, va_list args)
{
Tract tract;
Addr addr, limit;
Size align;
Arena arena;
SegClass class;
Res res;
AVER(seg != NULL);
AVERT(Pool, pool);
arena = PoolArena(pool);
align = ArenaAlign(arena);
AVER(AddrIsAligned(base, align));
AVER(SizeIsAligned(size, align));
class = seg->class;
AVERT(SegClass, class);
AVER(BoolCheck(withReservoirPermit));
limit = AddrAdd(base, size);
seg->limit = limit;
seg->rankSet = RankSetEMPTY;
seg->white = TraceSetEMPTY;
seg->nailed = TraceSetEMPTY;
seg->grey = TraceSetEMPTY;
seg->pm = AccessSetEMPTY;
seg->sm = AccessSetEMPTY;
seg->depth = 0;
seg->firstTract = NULL;
seg->sig = SegSig; /* set sig now so tract checks will see it */
TRACT_FOR(tract, addr, arena, base, limit) {
AVER(TractCheck(tract)); /* <design/check/#type.no-sig> */
AVER(TractP(tract) == NULL);
AVER(!TractHasSeg(tract));
AVER(TractPool(tract) == pool);
AVER(TractWhite(tract) == TraceSetEMPTY);
TRACT_SET_SEG(tract, seg);
if (addr == base) {
AVER(seg->firstTract == NULL);
seg->firstTract = tract;
}
AVER(seg->firstTract != NULL);
}
AVER(addr == seg->limit);
RingInit(SegPoolRing(seg));
/* Class specific initialization comes last */
res = class->init(seg, pool, base, size, withReservoirPermit, args);
if (res != ResOK)
goto failInit;
AVERT(Seg, seg);
RingAppend(&pool->segRing, SegPoolRing(seg));
return ResOK;
failInit:
RingFinish(SegPoolRing(seg));
TRACT_FOR(tract, addr, arena, base, limit) {
AVER(TractCheck(tract)); /* <design/check/#type.no-sig> */
TRACT_UNSET_SEG(tract);
}
seg->sig = SigInvalid;
return res;
}
/* SegFinish -- finish a segment */
static void SegFinish(Seg seg)
{
Arena arena;
Addr addr, base, limit;
Tract tract;
SegClass class;
AVERT(Seg, seg);
class = seg->class;
AVERT(SegClass, class);
arena = PoolArena(SegPool(seg));
if (seg->sm != AccessSetEMPTY) {
ShieldLower(arena, seg, seg->sm);
}
/* Class specific finishing cames first */
class->finish(seg);
seg->rankSet = RankSetEMPTY;
/* See <code/shield.c#shield.flush> */
ShieldFlush(PoolArena(SegPool(seg)));
base = SegBase(seg);
limit = SegLimit(seg);
TRACT_TRACT_FOR(tract, addr, arena, seg->firstTract, limit) {
AVER(TractCheck(tract)); /* <design/check/#type.no-sig> */
TractSetWhite(tract, TraceSetEMPTY);
TRACT_UNSET_SEG(tract);
}
AVER(addr == seg->limit);
RingRemove(SegPoolRing(seg));
RingFinish(SegPoolRing(seg));
seg->sig = SigInvalid;
/* Check that the segment is not exposed, or in the shield */
/* cache (see <code/shield.c#def.depth>). */
AVER(seg->depth == 0);
/* Check not shielded or protected (so that pages in hysteresis */
/* fund are not protected) */
AVER(seg->sm == AccessSetEMPTY);
AVER(seg->pm == AccessSetEMPTY);
}
/* SegSetGrey -- change the greyness of a segment
*
* Sets the segment greyness to the trace set grey.
*/
void SegSetGrey(Seg seg, TraceSet grey)
{
AVERT(Seg, seg);
AVER(TraceSetCheck(grey));
seg->class->setGrey(seg, grey);
}
/* SegSetWhite -- change the whiteness of a segment
*
* Sets the segment whiteness to the trace set ts.
*/
void SegSetWhite(Seg seg, TraceSet white)
{
AVERT(Seg, seg);
AVER(TraceSetCheck(white));
seg->class->setWhite(seg, white);
}
/* SegSetRankSet -- set the rank set of a segment
*
* The caller must set the summary to empty before setting the rank
* set to empty. The caller must set the rank set to non-empty before
* setting the summary to non-empty.
*/
void SegSetRankSet(Seg seg, RankSet rankSet)
{
AVERT(Seg, seg);
AVER(RankSetCheck(rankSet));
seg->class->setRankSet(seg, rankSet);
}
/* SegSetSummary -- change the summary on a segment */
void SegSetSummary(Seg seg, RefSet summary)
{
AVERT(Seg, seg);
#ifdef PROTECTION_NONE
summary = RefSetUNIV;
#endif
seg->class->setSummary(seg, summary);
}
/* SegSetRankAndSummary -- set both the rank set and the summary */
void SegSetRankAndSummary(Seg seg, RankSet rankSet, RefSet summary)
{
AVERT(Seg, seg);
AVER(RankSetCheck(rankSet));
#ifdef PROTECTION_NONE
if (rankSet != RankSetEMPTY) {
summary = RefSetUNIV;
}
#endif
seg->class->setRankSummary(seg, rankSet, summary);
}
/* SegBuffer -- return the buffer of a segment */
Buffer SegBuffer(Seg seg)
{
AVERT_CRITICAL(Seg, seg); /* .seg.critical */
return seg->class->buffer(seg);
}
/* SegSetBuffer -- change the buffer on a segment */
void SegSetBuffer(Seg seg, Buffer buffer)
{
AVERT(Seg, seg);
if (buffer != NULL)
AVERT(Buffer, buffer);
seg->class->setBuffer(seg, buffer);
}
/* SegDescribe -- describe a segment */
Res SegDescribe(Seg seg, mps_lib_FILE *stream)
{
Res res;
Pool pool;
if (!CHECKT(Seg, seg)) return ResFAIL;
if (stream == NULL) return ResFAIL;
pool = SegPool(seg);
res = WriteF(stream,
"Segment $P [$A,$A) {\n", (WriteFP)seg,
(WriteFA)SegBase(seg), (WriteFA)SegLimit(seg),
" class $P (\"$S\")\n",
(WriteFP)seg->class, seg->class->name,
" pool $P ($U)\n",
(WriteFP)pool, (WriteFU)pool->serial,
NULL);
if (res != ResOK) return res;
res = seg->class->describe(seg, stream);
if (res != ResOK) return res;
res = WriteF(stream, "\n",
"} Segment $P\n", (WriteFP)seg, NULL);
return res;
}
/* .seg.critical: These seg functions are low-level and used
* through-out. They are therefore on the critical path and their
* AVERs are so-marked.
*/
/* SegBase -- return the base address of a seg */
Addr (SegBase)(Seg seg)
{
AVERT_CRITICAL(Seg, seg);
return SegBase(seg);
}
/* SegLimit -- return the limit address of a segment */
Addr (SegLimit)(Seg seg)
{
AVERT_CRITICAL(Seg, seg);
return SegLimit(seg);
}
/* SegSize -- return the size of a seg */
Size SegSize(Seg seg)
{
AVERT_CRITICAL(Seg, seg);
return AddrOffset(SegBase(seg), SegLimit(seg));
}
/* SegOfAddr -- return the seg the given address is in, if any */
Bool SegOfAddr(Seg *segReturn, Arena arena, Addr addr)
{
Tract tract;
AVER_CRITICAL(segReturn != NULL); /* .seg.critical */
AVERT_CRITICAL(Arena, arena); /* .seg.critical */
if (TractOfAddr(&tract, arena, addr)) {
return TRACT_SEG(segReturn, tract);
} else {
return FALSE;
}
}
/* SegFirst -- return the first seg in the arena
*
* This is used to start an iteration over all segs in the arena.
*/
Bool SegFirst(Seg *segReturn, Arena arena)
{
Tract tract;
AVER(segReturn != NULL);
AVERT(Arena, arena);
if (TractFirst(&tract, arena)) {
do {
Seg seg;
if (TRACT_SEG(&seg, tract)) {
*segReturn = seg;
return TRUE;
}
} while (TractNext(&tract, arena, TractBase(tract)));
}
return FALSE;
}
/* SegNext -- return the "next" seg in the arena
*
* This is used as the iteration step when iterating over all
* segs in the arena.
*
* SegNext finds the seg with the lowest base address which is
* greater than a specified address. The address must be (or once
* have been) the base address of a seg.
*/
Bool SegNext(Seg *segReturn, Arena arena, Addr addr)
{
Tract tract;
Addr base = addr;
AVER_CRITICAL(segReturn != NULL); /* .seg.critical */
AVERT_CRITICAL(Arena, arena);
while (TractNext(&tract, arena, base)) {
Seg seg;
if (TRACT_SEG(&seg, tract)) {
if (tract == seg->firstTract) {
*segReturn = seg;
return TRUE;
} else {
/* found the next tract in a large segment */
/* base & addr must be the base of this segment */
AVER_CRITICAL(TractBase(seg->firstTract) == addr);
AVER_CRITICAL(addr == base);
/* set base to the last tract in the segment */
base = AddrSub(seg->limit, ArenaAlign(arena));
AVER_CRITICAL(base > addr);
}
} else {
base = TractBase(tract);
}
}
return FALSE;
}
/* SegMerge -- Merge two adjacent segments
*
* See <design/seg/#merge>
*/
Res SegMerge(Seg *mergedSegReturn, Seg segLo, Seg segHi,
Bool withReservoirPermit, ...)
{
SegClass class;
Addr base, mid, limit;
Arena arena;
Res res;
va_list args;
AVER(NULL != mergedSegReturn);
AVERT(Seg, segLo);
AVERT(Seg, segHi);
class = segLo->class;
AVER(segHi->class == class);
AVER(SegPool(segLo) == SegPool(segHi));
base = SegBase(segLo);
mid = SegLimit(segLo);
limit = SegLimit(segHi);
AVER(SegBase(segHi) == SegLimit(segLo));
AVER(BoolCheck(withReservoirPermit));
arena = PoolArena(SegPool(segLo));
ShieldFlush(arena); /* see <design/seg/#split-merge.shield> */
/* Invoke class-specific methods to do the merge */
va_start(args, withReservoirPermit);
res = class->merge(segLo, segHi, base, mid, limit,
withReservoirPermit, args);
va_end(args);
if (ResOK != res)
goto failMerge;
EVENT_PPP(SegMerge, segLo, segLo, segHi);
/* Deallocate segHi object */
ControlFree(arena, segHi, class->size);
AVERT(Seg, segLo);
*mergedSegReturn = segLo;
return ResOK;
failMerge:
AVERT(Seg, segLo); /* check original segs are still valid */
AVERT(Seg, segHi);
return res;
}
/* SegSplit -- Split a segment
*
* The segment is split at the indicated position.
* See <design/seg/#split>
*/
Res SegSplit(Seg *segLoReturn, Seg *segHiReturn, Seg seg, Addr at,
Bool withReservoirPermit, ...)
{
Addr base, limit;
SegClass class;
Seg segNew;
Arena arena;
Res res;
va_list args;
AVER(NULL != segLoReturn);
AVER(NULL != segHiReturn);
AVERT(Seg, seg);
class = seg->class;
arena = PoolArena(SegPool(seg));
base = SegBase(seg);
limit = SegLimit(seg);
AVERT(Arena, arena);
AVER(AddrIsAligned(at, arena->alignment));
AVER(at > base);
AVER(at < limit);
AVER(BoolCheck(withReservoirPermit));
ShieldFlush(arena); /* see <design/seg/#split-merge.shield> */
/* Allocate the new segment object from the control pool */
res = ControlAlloc((void **)&segNew, arena, class->size,
withReservoirPermit);
if (ResOK != res)
goto failControl;
/* Invoke class-specific methods to do the split */
va_start(args, withReservoirPermit);
res = class->split(seg, segNew, base, at, limit,
withReservoirPermit, args);
va_end(args);
if (ResOK != res)
goto failSplit;
EVENT_PPPA(SegSplit, seg, segNew, seg, at);
AVERT(Seg, seg);
AVERT(Seg, segNew);
*segLoReturn = seg;
*segHiReturn = segNew;
return ResOK;
failSplit:
ControlFree(arena, segNew, class->size);
failControl:
AVERT(Seg, seg); /* check the original seg is still valid */
return res;
}
/* Class Seg -- The most basic segment class
*
* .seg.method.check: Many seg methods are lightweight and used
* frequently. Their parameters are checked by the corresponding
* dispatching function, and so the their parameter AVERs are
* marked as critical.
*/
/* SegCheck -- check the integrity of a segment */
Bool SegCheck(Seg seg)
{
Tract tract;
Arena arena;
Pool pool;
Addr addr;
Size align;
CHECKS(Seg, seg);
CHECKL(TraceSetCheck(seg->white));
/* can't assume nailed is subset of white - mightn't be during whiten */
/* CHECKL(TraceSetSub(seg->nailed, seg->white)); */
CHECKL(TraceSetCheck(seg->grey));
CHECKL(TractCheck(seg->firstTract)); /* <design/check/#type.no-sig> */
pool = SegPool(seg);
CHECKU(Pool, pool);
arena = PoolArena(pool);
CHECKU(Arena, arena);
align = ArenaAlign(arena);
CHECKL(AddrIsAligned(TractBase(seg->firstTract), align));
CHECKL(AddrIsAligned(seg->limit, align));
CHECKL(seg->limit > TractBase(seg->firstTract));
/* Each tract of the segment must agree about white traces */
TRACT_TRACT_FOR(tract, addr, arena, seg->firstTract, seg->limit) {
Seg trseg = NULL; /* suppress compiler warning */
UNUSED(trseg); /* @@@@ unused in hot varieties */
CHECKL(TractCheck(tract)); /* <design/check/#type.no-sig> */
CHECKL(TRACT_SEG(&trseg, tract) && (trseg == seg));
CHECKL(TractWhite(tract) == seg->white);
CHECKL(TractPool(tract) == pool);
}
CHECKL(addr == seg->limit);
/* The segment must belong to some pool, so it should be on a */
/* pool's segment ring. (Actually, this isn't true just after */
/* the segment is initialized.) */
/* CHECKL(RingNext(&seg->poolRing) != &seg->poolRing); */
CHECKL(RingCheck(&seg->poolRing));
/* "pm", "sm", and "depth" not checked. See .check.shield. */
CHECKL(RankSetCheck(seg->rankSet));
if (seg->rankSet == RankSetEMPTY) {
/* <design/seg/#field.rankSet.empty>: If there are no refs */
/* in the segment then it cannot contain black or grey refs. */
CHECKL(seg->grey == TraceSetEMPTY);
CHECKL(seg->sm == AccessSetEMPTY);
CHECKL(seg->pm == AccessSetEMPTY);
} else {
/* <design/seg/#field.rankSet.single>: The Tracer only permits */
/* one rank per segment [ref?] so this field is either empty or a */
/* singleton. */
CHECKL(RankSetIsSingle(seg->rankSet));
/* Can't check barrier invariants because SegCheck is called */
/* when raising or lowering the barrier. */
/* .check.wb: If summary isn't universal then it must be */
/* write shielded. */
/* CHECKL(seg->_summary == RefSetUNIV || (seg->_sm & AccessWRITE)); */
/* @@@@ What can be checked about the read barrier? */
}
return TRUE;
}
/* segTrivInit -- method to initialize the base fields of a segment */
static Res segTrivInit(Seg seg, Pool pool, Addr base, Size size,
Bool reservoirPermit, va_list args)
{
/* all the initialization happens in SegInit so checks are safe */
Size align;
Arena arena;
AVERT(Seg, seg);
AVERT(Pool, pool);
arena = PoolArena(pool);
align = ArenaAlign(arena);
AVER(AddrIsAligned(base, align));
AVER(SizeIsAligned(size, align));
AVER(SegBase(seg) == base);
AVER(SegSize(seg) == size);
AVER(SegPool(seg) == pool);
AVER(BoolCheck(reservoirPermit));
UNUSED(args);
return ResOK;
}
/* segTrivFinish -- finish the base fields of a segment */
static void segTrivFinish(Seg seg)
{
/* all the generic finishing happens in SegFinish */
AVERT(Seg, seg);
}
/* segNoSetGrey -- non-method to change the greyness of a segment */
static void segNoSetGrey(Seg seg, TraceSet grey)
{
AVERT(Seg, seg);
AVER(TraceSetCheck(grey));
AVER(seg->rankSet != RankSetEMPTY);
NOTREACHED;
}
/* segNoSetWhite -- non-method to change the whiteness of a segment */
static void segNoSetWhite(Seg seg, TraceSet white)
{
AVERT(Seg, seg);
AVER(TraceSetCheck(white));
NOTREACHED;
}
/* segNoSetRankSet -- non-method to set the rank set of a segment */
static void segNoSetRankSet(Seg seg, RankSet rankSet)
{
AVERT(Seg, seg);
AVER(RankSetCheck(rankSet));
NOTREACHED;
}
/* segNoSetSummary -- non-method to set the summary of a segment */
static void segNoSetSummary(Seg seg, RefSet summary)
{
AVERT(Seg, seg);
UNUSED(summary);
NOTREACHED;
}
/* segNoSetRankSummary -- non-method to set the rank set & summary */
static void segNoSetRankSummary(Seg seg, RankSet rankSet, RefSet summary)
{
AVERT(Seg, seg);
AVER(RankSetCheck(rankSet));
UNUSED(summary);
NOTREACHED;
}
/* segNoBuffer -- non-method to return the buffer of a segment */
static Buffer segNoBuffer(Seg seg)
{
AVERT(Seg, seg);
NOTREACHED;
return NULL;
}
/* segNoSetBuffer -- non-method to set the buffer of a segment */
static void segNoSetBuffer(Seg seg, Buffer buffer)
{
AVERT(Seg, seg);
if (buffer != NULL)
AVERT(Buffer, buffer);
NOTREACHED;
}
/* segNoMerge -- merge method for segs which don't support merge */
static Res segNoMerge(Seg seg, Seg segHi,
Addr base, Addr mid, Addr limit,
Bool withReservoirPermit, va_list args)
{
AVERT(Seg, seg);
AVERT(Seg, segHi);
AVER(SegBase(seg) == base);
AVER(SegLimit(seg) == mid);
AVER(SegBase(segHi) == mid);
AVER(SegLimit(segHi) == limit);
AVER(BoolCheck(withReservoirPermit));
UNUSED(args);
NOTREACHED;
return ResFAIL;
}
/* segTrivMerge -- Basic Seg merge method
*
* .similar: Segments must be "sufficiently similar".
* See <design/seg/#merge.inv.similar>
*/
static Res segTrivMerge(Seg seg, Seg segHi,
Addr base, Addr mid, Addr limit,
Bool withReservoirPermit, va_list args)
{
Pool pool;
Size align;
Arena arena;
Tract tract;
Addr addr;
AVERT(Seg, seg);
AVERT(Seg, segHi);
pool = SegPool(seg);
arena = PoolArena(pool);
align = ArenaAlign(arena);
AVER(AddrIsAligned(base, align));
AVER(AddrIsAligned(mid, align));
AVER(AddrIsAligned(limit, align));
AVER(base < mid);
AVER(mid < limit);
AVER(SegBase(seg) == base);
AVER(SegLimit(seg) == mid);
AVER(SegBase(segHi) == mid);
AVER(SegLimit(segHi) == limit);
AVER(BoolCheck(withReservoirPermit));
UNUSED(args);
/* .similar. */
AVER(seg->rankSet == segHi->rankSet);
AVER(seg->white == segHi->white);
AVER(seg->nailed == segHi->nailed);
AVER(seg->grey == segHi->grey);
AVER(seg->pm == segHi->pm);
AVER(seg->sm == segHi->sm);
AVER(seg->depth == segHi->depth);
/* Neither segment may be exposed, or in the shield cache */
/* See <design/seg/#split-merge.shield> & <code/shield.c#def.depth> */
AVER(seg->depth == 0);
/* no need to update fields which match. See .similar */
seg->limit = limit;
TRACT_FOR(tract, addr, arena, mid, limit) {
AVER(TractCheck(tract)); /* <design/check/#type.no-sig> */
AVER(TractHasSeg(tract));
AVER(segHi == TractP(tract));
AVER(TractPool(tract) == pool);
TRACT_SET_SEG(tract, seg);
}
AVER(addr == seg->limit);
/* Finish segHi. */
RingRemove(SegPoolRing(segHi));
RingFinish(SegPoolRing(segHi));
segHi->sig = SigInvalid;
AVERT(Seg, seg);
return ResOK;
}
/* segNoSplit -- split method for segs which don't support splitting */
static Res segNoSplit(Seg seg, Seg segHi,
Addr base, Addr mid, Addr limit,
Bool withReservoirPermit, va_list args)
{
AVERT(Seg, seg);
AVER(segHi != NULL); /* can't check fully, it's not initialized */
AVER(base < mid);
AVER(mid < limit);
AVER(SegBase(seg) == base);
AVER(SegLimit(seg) == limit);
AVER(BoolCheck(withReservoirPermit));
UNUSED(args);
NOTREACHED;
return ResFAIL;
}
/* segTrivSplit -- Basic Seg split method */
static Res segTrivSplit(Seg seg, Seg segHi,
Addr base, Addr mid, Addr limit,
Bool withReservoirPermit, va_list args)
{
Tract tract;
Pool pool;
Addr addr;
Size align;
Arena arena;
AVERT(Seg, seg);
AVER(segHi != NULL); /* can't check fully, it's not initialized */
pool = SegPool(seg);
arena = PoolArena(pool);
align = ArenaAlign(arena);
AVER(AddrIsAligned(base, align));
AVER(AddrIsAligned(mid, align));
AVER(AddrIsAligned(limit, align));
AVER(base < mid);
AVER(mid < limit);
AVER(SegBase(seg) == base);
AVER(SegLimit(seg) == limit);
AVER(BoolCheck(withReservoirPermit));
UNUSED(args);
/* Segment may not be exposed, or in the shield cache */
/* See <design/seg/#split-merge.shield> & <code/shield.c#def.depth> */
AVER(seg->depth == 0);
/* Full initialization for segHi. Just modify seg. */
seg->limit = mid;
segHi->limit = limit;
segHi->rankSet = seg->rankSet;
segHi->white = seg->white;
segHi->nailed = seg->nailed;
segHi->grey = seg->grey;
segHi->pm = seg->pm;
segHi->sm = seg->sm;
segHi->depth = seg->depth;
segHi->firstTract = NULL;
segHi->class = seg->class;
segHi->sig = SegSig;
RingInit(SegPoolRing(segHi));
TRACT_FOR(tract, addr, arena, mid, limit) {
AVER(TractCheck(tract)); /* <design/check/#type.no-sig> */
AVER(TractHasSeg(tract));
AVER(seg == TractP(tract));
AVER(TractPool(tract) == pool);
TRACT_SET_SEG(tract, segHi);
if (addr == mid) {
AVER(segHi->firstTract == NULL);
segHi->firstTract = tract;
}
AVER(segHi->firstTract != NULL);
}
AVER(addr == segHi->limit);
RingAppend(&pool->segRing, SegPoolRing(segHi));
AVERT(Seg, seg);
AVERT(Seg, segHi);
return ResOK;
}
/* segTrivDescribe -- Basic Seg description method */
static Res segTrivDescribe(Seg seg, mps_lib_FILE *stream)
{
Res res;
if (!CHECKT(Seg, seg)) return ResFAIL;
if (stream == NULL) return ResFAIL;
res = WriteF(stream,
" shield depth $U\n", (WriteFU)seg->depth,
" protection mode:",
NULL);
if (res != ResOK) return res;
if (SegPM(seg) & AccessREAD) {
res = WriteF(stream, " read", NULL);
if (res != ResOK) return res;
}
if (SegPM(seg) & AccessWRITE) {
res = WriteF(stream, " write", NULL);
if (res != ResOK) return res;
}
res = WriteF(stream, "\n shield mode:", NULL);
if (res != ResOK) return res;
if (SegSM(seg) & AccessREAD) {
res = WriteF(stream, " read", NULL);
if (res != ResOK) return res;
}
if (SegSM(seg) & AccessWRITE) {
res = WriteF(stream, " write", NULL);
if (res != ResOK) return res;
}
res = WriteF(stream, "\n ranks:", NULL);
/* This bit ought to be in a RankSetDescribe in ref.c. */
if (RankSetIsMember(seg->rankSet, RankAMBIG)) {
res = WriteF(stream, " ambiguous", NULL);
if (res != ResOK) return res;
}
if (RankSetIsMember(seg->rankSet, RankEXACT)) {
res = WriteF(stream, " exact", NULL);
if (res != ResOK) return res;
}
if (RankSetIsMember(seg->rankSet, RankFINAL)) {
res = WriteF(stream, " final", NULL);
if (res != ResOK) return res;
}
if (RankSetIsMember(seg->rankSet, RankWEAK)) {
res = WriteF(stream, " weak", NULL);
if (res != ResOK) return res;
}
res = WriteF(stream, "\n",
" white $B\n", (WriteFB)seg->white,
" grey $B\n", (WriteFB)seg->grey,
" nailed $B\n", (WriteFB)seg->nailed,
NULL);
return res;
}
/* Class GCSeg -- Segment class with GC support
*/
/* GCSegCheck -- check the integrity of a GCSeg */
Bool GCSegCheck(GCSeg gcseg)
{
Seg seg;
CHECKS(GCSeg, gcseg);
seg = &gcseg->segStruct;
CHECKL(SegCheck(seg));
if (gcseg->buffer != NULL) {
CHECKU(Buffer, gcseg->buffer);
/* <design/seg/#field.buffer.owner> */
CHECKL(BufferPool(gcseg->buffer) == SegPool(seg));
CHECKL(BufferRankSet(gcseg->buffer) == SegRankSet(seg));
}
/* The segment should be on a grey ring if and only if it is grey. */
CHECKL(RingCheck(&gcseg->greyRing));
CHECKL((seg->grey == TraceSetEMPTY) ==
RingIsSingle(&gcseg->greyRing));
if (seg->rankSet == RankSetEMPTY) {
/* <design/seg/#field.rankSet.empty> */
CHECKL(gcseg->summary == RefSetEMPTY);
}
return TRUE;
}
/* gcSegInit -- method to initialize a GC segment */
static Res gcSegInit(Seg seg, Pool pool, Addr base, Size size,
Bool withReservoirPermit, va_list args)
{
SegClass super;
GCSeg gcseg;
Arena arena;
Align align;
Res res;
AVERT(Seg, seg);
AVERT(Pool, pool);
arena = PoolArena(pool);
align = ArenaAlign(arena);
AVER(AddrIsAligned(base, align));
AVER(SizeIsAligned(size, align));
gcseg = SegGCSeg(seg);
AVER(&gcseg->segStruct == seg);
AVER(BoolCheck(withReservoirPermit));
/* Initialize the superclass fields first via next-method call */
super = SEG_SUPERCLASS(GCSegClass);
res = super->init(seg, pool, base, size, withReservoirPermit, args);
if (ResOK != res)
return res;
gcseg->summary = RefSetEMPTY;
gcseg->buffer = NULL;
RingInit(&gcseg->greyRing);
gcseg->sig = GCSegSig;
AVERT(GCSeg, gcseg);
return ResOK;
}
/* gcSegFinish -- finish a GC segment */
static void gcSegFinish(Seg seg)
{
SegClass super;
GCSeg gcseg;
AVERT(Seg, seg);
gcseg = SegGCSeg(seg);
AVERT(GCSeg, gcseg);
AVER(&gcseg->segStruct == seg);
if (SegGrey(seg) != TraceSetEMPTY) {
RingRemove(&gcseg->greyRing);
seg->grey = TraceSetEMPTY;
}
gcseg->summary = RefSetEMPTY;
gcseg->sig = SigInvalid;
/* Don't leave a dangling buffer allocating into hyperspace. */
AVER(gcseg->buffer == NULL);
RingFinish(&gcseg->greyRing);
/* finish the superclass fields last */
super = SEG_SUPERCLASS(GCSegClass);
super->finish(seg);
}
/* gcSegSetGreyInternal -- change the greyness of a segment
*
* Internal method for updating the greyness of a GCSeg.
* Updates the grey ring and the grey seg count.
* Doesn't affect the shield (so it can be used by split
* & merge methods).
*/
static void gcSegSetGreyInternal(Seg seg, TraceSet oldGrey, TraceSet grey)
{
GCSeg gcseg;
Arena arena;
Rank rank;
/* Internal method. Parameters are checked by caller */
gcseg = SegGCSeg(seg);
arena = PoolArena(SegPool(seg));
seg->grey = grey;
/* If the segment is now grey and wasn't before, add it to the */
/* appropriate grey list so that TraceFindGrey can locate it */
/* quickly later. If it is no longer grey and was before, */
/* remove it from the list. */
if (oldGrey == TraceSetEMPTY) {
if (grey != TraceSetEMPTY) {
AVER(RankSetIsSingle(seg->rankSet));
for(rank = 0; rank < RankLIMIT; ++rank)
if (RankSetIsMember(seg->rankSet, rank)) {
RingInsert(ArenaGreyRing(arena, rank), &gcseg->greyRing);
break;
}
AVER(rank != RankLIMIT); /* there should've been a match */
}
} else {
if (grey == TraceSetEMPTY)
RingRemove(&gcseg->greyRing);
}
STATISTIC_STAT
({
TraceId ti; Trace trace;
TraceSet diff;
diff = TraceSetDiff(grey, oldGrey);
TRACE_SET_ITER(ti, trace, diff, arena)
++trace->greySegCount;
if (trace->greySegCount > trace->greySegMax)
trace->greySegMax = trace->greySegCount;
TRACE_SET_ITER_END(ti, trace, diff, arena);
diff = TraceSetDiff(oldGrey, grey);
TRACE_SET_ITER(ti, trace, diff, arena)
--trace->greySegCount;
TRACE_SET_ITER_END(ti, trace, diff, arena);
});
}
/* gcSegSetGrey -- GCSeg method to change the greyness of a segment
*
* Sets the segment greyness to the trace set grey and adjusts
* the shielding on the segment appropriately.
*/
static void gcSegSetGrey(Seg seg, TraceSet grey)
{
GCSeg gcseg;
TraceSet oldGrey, flippedTraces;
Arena arena;
AVERT_CRITICAL(Seg, seg); /* .seg.method.check */
AVER_CRITICAL(TraceSetCheck(grey)); /* .seg.method.check */
AVER(seg->rankSet != RankSetEMPTY);
gcseg = SegGCSeg(seg);
AVERT_CRITICAL(GCSeg, gcseg);
AVER_CRITICAL(&gcseg->segStruct == seg);
UNUSED(gcseg);
arena = PoolArena(SegPool(seg));
oldGrey = seg->grey;
gcSegSetGreyInternal(seg, oldGrey, grey); /* do the work */
/* The read barrier is raised when the segment is grey for */
/* some _flipped_ trace, i.e., is grey for a trace for which */
/* the mutator is black. */
flippedTraces = arena->flippedTraces;
if (TraceSetInter(oldGrey, flippedTraces) == TraceSetEMPTY) {
if (TraceSetInter(grey, flippedTraces) != TraceSetEMPTY)
ShieldRaise(arena, seg, AccessREAD);
} else {
if (TraceSetInter(grey, flippedTraces) == TraceSetEMPTY)
ShieldLower(arena, seg, AccessREAD);
}
EVENT_PPU(SegSetGrey, arena, seg, grey);
}
/* gcSegSetWhite -- GCSeg method to change whiteness of a segment
*
* Sets the segment whiteness to the trace set ts.
*/
static void gcSegSetWhite(Seg seg, TraceSet white)
{
GCSeg gcseg;
Tract tract;
Arena arena;
Addr addr, limit;
AVERT_CRITICAL(Seg, seg); /* .seg.method.check */
AVER_CRITICAL(TraceSetCheck(white)); /* .seg.method.check */
gcseg = SegGCSeg(seg);
AVERT_CRITICAL(GCSeg, gcseg);
AVER_CRITICAL(&gcseg->segStruct == seg);
arena = PoolArena(SegPool(seg));
AVERT_CRITICAL(Arena, arena);
limit = SegLimit(seg);
/* Each tract of the segment records white traces */
TRACT_TRACT_FOR(tract, addr, arena, seg->firstTract, limit) {
Seg trseg = NULL; /* suppress compiler warning */
UNUSED(trseg); /* @@@@ unused in hot varieties */
AVER_CRITICAL(TractCheck(tract)); /* <design/check/#type.no-sig> */
AVER_CRITICAL(TRACT_SEG(&trseg, tract) && (trseg == seg));
TractSetWhite(tract, white);
}
AVER(addr == limit);
seg->white = white;
}
/* gcSegSetRankSet -- GCSeg method to set the rank set of a segment
*
* If the rank set is made non-empty then the segment's summary is
* now a subset of the mutator's (which is assumed to be RefSetUNIV)
* so the write barrier must be imposed on the segment. If the
* rank set is made empty then there are no longer any references
* on the segment so the barrier is removed.
*
* The caller must set the summary to empty before setting the rank
* set to empty. The caller must set the rank set to non-empty before
* setting the summary to non-empty.
*/
static void gcSegSetRankSet(Seg seg, RankSet rankSet)
{
GCSeg gcseg;
RankSet oldRankSet;
Arena arena;
AVERT_CRITICAL(Seg, seg); /* .seg.method.check */
AVER_CRITICAL(RankSetCheck(rankSet)); /* .seg.method.check */
AVER_CRITICAL(rankSet == RankSetEMPTY
|| RankSetIsSingle(rankSet)); /* .seg.method.check */
gcseg = SegGCSeg(seg);
AVERT_CRITICAL(GCSeg, gcseg);
AVER_CRITICAL(&gcseg->segStruct == seg);
arena = PoolArena(SegPool(seg));
oldRankSet = seg->rankSet;
seg->rankSet = rankSet;
if (oldRankSet == RankSetEMPTY) {
if (rankSet != RankSetEMPTY) {
AVER(gcseg->summary == RefSetEMPTY);
ShieldRaise(arena, seg, AccessWRITE);
}
} else {
if (rankSet == RankSetEMPTY) {
AVER(gcseg->summary == RefSetEMPTY);
ShieldLower(arena, seg, AccessWRITE);
}
}
}
/* gcSegSetSummary -- GCSeg method to change the summary on a segment
*
* In fact, we only need to raise the write barrier if the
* segment contains references, and its summary is strictly smaller
* than the summary of the unprotectable data (i.e. the mutator).
* We don't maintain such a summary, assuming that the mutator can
* access all references, so its summary is RefSetUNIV.
*/
static void gcSegSetSummary(Seg seg, RefSet summary)
{
GCSeg gcseg;
RefSet oldSummary;
Arena arena;
AVERT_CRITICAL(Seg, seg); /* .seg.method.check */
gcseg = SegGCSeg(seg);
AVERT_CRITICAL(GCSeg, gcseg);
AVER_CRITICAL(&gcseg->segStruct == seg);
arena = PoolArena(SegPool(seg));
oldSummary = gcseg->summary;
gcseg->summary = summary;
AVER(seg->rankSet != RankSetEMPTY);
/* Note: !RefSetSuper is a test for a strict subset */
if (!RefSetSuper(summary, RefSetUNIV)) {
if (RefSetSuper(oldSummary, RefSetUNIV))
ShieldRaise(arena, seg, AccessWRITE);
} else {
if (!RefSetSuper(oldSummary, RefSetUNIV))
ShieldLower(arena, seg, AccessWRITE);
}
}
/* gcSegSetRankSummary -- GCSeg method to set both rank set and summary */
static void gcSegSetRankSummary(Seg seg, RankSet rankSet, RefSet summary)
{
GCSeg gcseg;
Bool wasShielded, willbeShielded;
Arena arena;
AVERT_CRITICAL(Seg, seg); /* .seg.method.check */
AVER_CRITICAL(RankSetCheck(rankSet)); /* .seg.method.check */
AVER_CRITICAL(rankSet == RankSetEMPTY
|| RankSetIsSingle(rankSet)); /* .seg.method.check */
gcseg = SegGCSeg(seg);
AVERT_CRITICAL(GCSeg, gcseg);
AVER_CRITICAL(&gcseg->segStruct == seg);
/* rankSet == RankSetEMPTY implies summary == RefSetEMPTY */
AVER(rankSet != RankSetEMPTY || summary == RefSetEMPTY);
arena = PoolArena(SegPool(seg));
wasShielded = (seg->rankSet != RankSetEMPTY && gcseg->summary != RefSetUNIV);
willbeShielded = (rankSet != RankSetEMPTY && summary != RefSetUNIV);
seg->rankSet = rankSet;
gcseg->summary = summary;
if (willbeShielded && !wasShielded) {
ShieldRaise(arena, seg, AccessWRITE);
} else if (wasShielded && !willbeShielded) {
ShieldLower(arena, seg, AccessWRITE);
}
}
/* gcSegBuffer -- GCSeg method to return the buffer of a segment */
static Buffer gcSegBuffer(Seg seg)
{
GCSeg gcseg;
AVERT_CRITICAL(Seg, seg); /* .seg.method.check */
gcseg = SegGCSeg(seg);
AVERT_CRITICAL(GCSeg, gcseg); /* .seg.method.check */
AVER_CRITICAL(&gcseg->segStruct == seg);
return gcseg->buffer;
}
/* gcSegSetBuffer -- GCSeg method to change the buffer of a segment */
static void gcSegSetBuffer(Seg seg, Buffer buffer)
{
GCSeg gcseg;
AVERT_CRITICAL(Seg, seg); /* .seg.method.check */
if (buffer != NULL)
AVERT_CRITICAL(Buffer, buffer);
gcseg = SegGCSeg(seg);
AVERT_CRITICAL(GCSeg, gcseg);
AVER_CRITICAL(&gcseg->segStruct == seg);
gcseg->buffer = buffer;
}
/* gcSegMerge -- GCSeg merge method
*
* .buffer: Can't merge two segments both with buffers.
* See <design/seg/#merge.inv.buffer>.
*/
static Res gcSegMerge(Seg seg, Seg segHi,
Addr base, Addr mid, Addr limit,
Bool withReservoirPermit, va_list args)
{
SegClass super;
GCSeg gcseg, gcsegHi;
TraceSet grey;
RefSet summary;
Buffer buf;
Res res;
AVERT(Seg, seg);
AVERT(Seg, segHi);
gcseg = SegGCSeg(seg);
gcsegHi = SegGCSeg(segHi);
AVERT(GCSeg, gcseg);
AVERT(GCSeg, gcsegHi);
AVER(base < mid);
AVER(mid < limit);
AVER(SegBase(seg) == base);
AVER(SegLimit(seg) == mid);
AVER(SegBase(segHi) == mid);
AVER(SegLimit(segHi) == limit);
AVER(BoolCheck(withReservoirPermit));
buf = gcsegHi->buffer; /* any buffer on segHi must be reassigned */
AVER(buf == NULL || gcseg->buffer == NULL); /* See .buffer */
grey = SegGrey(segHi); /* check greyness */
AVER(SegGrey(seg) == grey);
/* Merge the superclass fields via next-method call */
super = SEG_SUPERCLASS(GCSegClass);
res = super->merge(seg, segHi, base, mid, limit,
withReservoirPermit, args);
if (res != ResOK)
goto failSuper;
/* Update fields of gcseg. Finish gcsegHi. */
summary = RefSetUnion(gcseg->summary, gcsegHi->summary);
if (summary != gcseg->summary) {
gcSegSetSummary(seg, summary);
/* <design/seg/#split-merge.shield.re-flush> */
ShieldFlush(PoolArena(SegPool(seg)));
}
gcSegSetGreyInternal(segHi, grey, TraceSetEMPTY);
gcsegHi->summary = RefSetEMPTY;
gcsegHi->sig = SigInvalid;
RingFinish(&gcsegHi->greyRing);
/* Reassign any buffer that was connected to segHi */
if (NULL != buf) {
AVER(gcseg->buffer == NULL);
gcseg->buffer = buf;
gcsegHi->buffer = NULL;
BufferReassignSeg(buf, seg);
}
AVERT(GCSeg, gcseg);
return ResOK;
failSuper:
AVERT(GCSeg, gcseg);
AVERT(GCSeg, gcsegHi);
return res;
}
/* gcSegSplit -- GCSeg split method */
static Res gcSegSplit(Seg seg, Seg segHi,
Addr base, Addr mid, Addr limit,
Bool withReservoirPermit, va_list args)
{
SegClass super;
GCSeg gcseg, gcsegHi;
Buffer buf;
TraceSet grey;
Res res;
AVERT(Seg, seg);
AVER(segHi != NULL); /* can't check fully, it's not initialized */
gcseg = SegGCSeg(seg);
gcsegHi = SegGCSeg(segHi);
AVERT(GCSeg, gcseg);
AVER(base < mid);
AVER(mid < limit);
AVER(SegBase(seg) == base);
AVER(SegLimit(seg) == limit);
AVER(BoolCheck(withReservoirPermit));
grey = SegGrey(seg);
buf = gcseg->buffer; /* Look for buffer to reassign to segHi */
if (buf != NULL) {
if (BufferLimit(buf) > mid) {
/* Existing buffer extends above the split point */
AVER(BufferBase(buf) > mid); /* check it's all above the split */
} else {
buf = NULL; /* buffer lies below split and is unaffected */
}
}
/* Split the superclass fields via next-method call */
super = SEG_SUPERCLASS(GCSegClass);
res = super->split(seg, segHi, base, mid, limit,
withReservoirPermit, args);
if (res != ResOK)
goto failSuper;
/* Full initialization for segHi. */
gcsegHi->summary = gcseg->summary;
gcsegHi->buffer = NULL;
RingInit(&gcsegHi->greyRing);
gcsegHi->sig = GCSegSig;
gcSegSetGreyInternal(segHi, TraceSetEMPTY, grey);
/* Reassign buffer if it's now connected to segHi */
if (NULL != buf) {
gcsegHi->buffer = buf;
gcseg->buffer = NULL;
BufferReassignSeg(buf, segHi);
}
AVERT(GCSeg, gcseg);
AVERT(GCSeg, gcsegHi);
return ResOK;
failSuper:
AVERT(GCSeg, gcseg);
return res;
}
/* gcSegDescribe -- GCSeg description method */
static Res gcSegDescribe(Seg seg, mps_lib_FILE *stream)
{
Res res;
SegClass super;
GCSeg gcseg;
if (!CHECKT(Seg, seg)) return ResFAIL;
if (stream == NULL) return ResFAIL;
gcseg = SegGCSeg(seg);
if (!CHECKT(GCSeg, gcseg)) return ResFAIL;
/* Describe the superclass fields first via next-method call */
super = SEG_SUPERCLASS(GCSegClass);
res = super->describe(seg, stream);
if (res != ResOK) return res;
if (gcseg->buffer != NULL) {
res = BufferDescribe(gcseg->buffer, stream);
if (res != ResOK) return res;
}
res = WriteF(stream,
" summary $W\n", (WriteFW)gcseg->summary,
NULL);
return res;
}
/* SegClassCheck -- check a segment class */
Bool SegClassCheck(SegClass class)
{
CHECKL(ProtocolClassCheck(&class->protocol));
CHECKL(class->name != NULL); /* Should be <= 6 char C identifier */
CHECKL(class->size >= sizeof(SegStruct));
CHECKL(FUNCHECK(class->init));
CHECKL(FUNCHECK(class->finish));
CHECKL(FUNCHECK(class->setGrey));
CHECKL(FUNCHECK(class->setWhite));
CHECKL(FUNCHECK(class->setRankSet));
CHECKL(FUNCHECK(class->setRankSummary));
CHECKL(FUNCHECK(class->merge));
CHECKL(FUNCHECK(class->split));
CHECKL(FUNCHECK(class->describe));
CHECKS(SegClass, class);
return TRUE;
}
/* SegClass -- the vanilla segment class definition */
DEFINE_CLASS(SegClass, class)
{
INHERIT_CLASS(&class->protocol, ProtocolClass);
class->name = "SEG";
class->size = sizeof(SegStruct);
class->init = segTrivInit;
class->finish = segTrivFinish;
class->setSummary = segNoSetSummary;
class->buffer = segNoBuffer;
class->setBuffer = segNoSetBuffer;
class->setGrey = segNoSetGrey;
class->setWhite = segNoSetWhite;
class->setRankSet = segNoSetRankSet;
class->setRankSummary = segNoSetRankSummary;
class->merge = segTrivMerge;
class->split = segTrivSplit;
class->describe = segTrivDescribe;
class->sig = SegClassSig;
}
/* GCSegClass -- GC-supporting segment class definition */
typedef SegClassStruct GCSegClassStruct;
DEFINE_CLASS(GCSegClass, class)
{
INHERIT_CLASS(class, SegClass);
class->name = "GCSEG";
class->size = sizeof(GCSegStruct);
class->init = gcSegInit;
class->finish = gcSegFinish;
class->setSummary = gcSegSetSummary;
class->buffer = gcSegBuffer;
class->setBuffer = gcSegSetBuffer;
class->setGrey = gcSegSetGrey;
class->setWhite = gcSegSetWhite;
class->setRankSet = gcSegSetRankSet;
class->setRankSummary = gcSegSetRankSummary;
class->merge = gcSegMerge;
class->split = gcSegSplit;
class->describe = gcSegDescribe;
}
/* SegClassMixInNoSplitMerge -- Mix-in for unsupported merge
*
* Classes which don't support segment splitting and merging
* may mix this in to ensure that erroneous calls are checked.
*/
void SegClassMixInNoSplitMerge(SegClass class)
{
/* Can't check class because it's not initialized yet */
class->merge = segNoMerge;
class->split = segNoSplit;
}
/* C. COPYRIGHT AND LICENSE
*
* Copyright (C) 2001-2002 Ravenbrook Limited <http://www.ravenbrook.com/>.
* All rights reserved. This is an open source license. Contact
* Ravenbrook for commercial licensing options.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Redistributions in any form must be accompanied by information on how
* to obtain complete source code for this software and any accompanying
* software that uses this software. The source code must either be
* included in the distribution or be available for no more than the cost
* of distribution plus a nominal fee, and must be freely redistributable
* under reasonable conditions. For an executable file, complete source
* code means the source code for all modules it contains. It does not
* include source code for modules or files that typically accompany the
* major components of the operating system on which the executable file
* runs.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
* PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
|