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
.. highlight:: none


.. index::
   pair: segments; design

.. _design-seg:


Segment data structure
======================

.. mps:prefix:: design.mps.seg


Introduction
------------

:mps:tag:`intro` This is the design of the segment data structure.


Overview
--------

:mps:tag:`over.segments` Segments are the basic units of tracing and
shielding. The MPM also uses them as units of scanning and colour,
although pool classes may subdivide segments and be able to maintain
colour on a finer grain (down to the object level, for example).

:mps:tag:`over.objects` The mutator's objects are stored in segments.
Segments are contiguous blocks of memory managed by some pool.

:mps:tag:`segments.pool` The arrangement of objects within a segment is
determined by the class of the pool which owns the segment. The pool
is associated with the segment indirectly via the first tract of the
segment.

:mps:tag:`over.memory` The relationship between segments and areas of memory
is maintained by the segment module. Pools acquire tracts from the
arena, and release them back to the arena when they don't need them
any longer. The segment module can associate contiguous tracts owned
by the same pool with a segment. The segment module provides the
methods SegBase, SegLimit, and SegSize which map a segment onto the
addresses of the memory block it represents.

:mps:tag:`over.hierarchy` The Segment datastructure is designed to be
subclassable (see design.mps.protocol_). The basic segment class
(:c:type:`Seg`) supports colour and protection for use by the tracer, as
well as support for a pool ring, and all generic segment functions.
Clients may use :c:type:`Seg` directly, but will most probably want to use a
subclass with additional properties.

.. _design.mps.protocol: protocol.html

:mps:tag:`over.hierarchy.gcseg` ``GCSeg`` is a subclass of :c:type:`Seg` which
implements garbage collection, including buffering and the ability to
be linked onto the grey ring. It does not implement hardware barriers,
and so can only be used with software barriers, for example internally
in the MPS.

:mps:tag:`over.hierarchy.mutatorseg` ``MutatorSeg`` is a subclass of
``GCSeg`` implementing hardware barriers. It is suitable for handing
out to the mutator.


Data Structure
--------------

.. c:type:: struct SegStruct *Seg
.. c:type:: struct GCSegStruct *GCSeg

The implementations are as follows::

    typedef struct SegStruct {      /* segment structure */
      Sig sig;                      /* <code/misc.h#sig> */
      SegClass class;               /* segment class structure */
      Tract firstTract;             /* first tract of segment */
      RingStruct poolRing;          /* link in list of segs in pool */
      Addr limit;                   /* limit of segment */
      unsigned depth : ShieldDepthWIDTH; /* see <code/shield.c#def.depth> */
      AccessSet pm : AccessLIMIT;   /* protection mode, <code/shield.c> */
      AccessSet sm : AccessLIMIT;   /* shield mode, <code/shield.c> */
      TraceSet grey : TraceLIMIT;   /* traces for which seg is grey */
      TraceSet white : TraceLIMIT;  /* traces for which seg is white */
      TraceSet nailed : TraceLIMIT; /* traces for which seg has nailed objects */
      RankSet rankSet : RankLIMIT;  /* ranks of references in this seg */
    } SegStruct;

    typedef struct GCSegStruct {    /* GC segment structure */
      SegStruct segStruct;          /* superclass fields must come first */
      RingStruct greyRing;          /* link in list of grey segs */
      RefSet summary;               /* summary of references out of seg */
      Buffer buffer;                /* non-NULL if seg is buffered */
      Sig sig;                      /* design.mps.sig */
    } GCSegStruct;


:mps:tag:`field.rankSet` The ``rankSet`` field represents the set of ranks
of the references in the segment. It is initialized to empty by
:c:func:`SegInit()`.

:mps:tag:`field.rankSet.single` The Tracer only permits one rank per segment
[ref?] so this field is either empty or a singleton.

:mps:tag:`field.rankSet.empty` An empty ``rankSet`` indicates that there are
no references. If there are no references in the segment then it
cannot contain black or grey references.

:mps:tag:`field.rankSet.start` If references are stored in the segment then
it must be updated, along with the summary (:mps:ref:`.field.summary.start`).

:mps:tag:`field.depth` The ``depth`` field is used by the Shield
(impl.c.shield) to manage protection of the segment. It is initialized
to zero by :c:func:`SegInit()`.

:mps:tag:`field.sm` The ``sm`` field is used by the Shield (impl.c.shield)
to manage protection of the segment. It is initialized to
``AccessSetEMPTY`` by :c:func:`SegInit()`.

:mps:tag:`field.pm` The ``pm`` field is used by the Shield (impl.c.shield)
to manage protection of the segment. It is initialized to
``AccessSetEMPTY`` by :c:func:`SegInit()`. The field is used by both the
shield and the ANSI fake protection (impl.c.protan).

:mps:tag:`field.black` The ``black`` field is the set of traces for which
there may be black objects (that is, objects containing references,
but no references to white objects) in the segment. More precisely, if
there is a black object for a trace in the segment then that trace
will appear in the ``black`` field. It is initialized to
``TraceSetEMPTY`` by :c:func:`SegInit()`.

:mps:tag:`field.grey` The ``grey`` field is the set of traces for which
there may be grey objects (i.e containing references to white objects)
in the segment. More precisely, if there is a reference to a white
object for a trace in the segment then that trace will appear in the
``grey`` field. It is initialized to ``TraceSetEMPTY`` by :c:func:`SegInit()`.

:mps:tag:`field.white` The ``white`` field is the set of traces for which
there may be white objects in the segment. More precisely, if there is
a white object for a trace in the segment then that trace will appear
in the ``white`` field. It is initialized to ``TraceSetEMPTY`` by
:c:func:`SegInit()`.

:mps:tag:`field.summary` The ``summary`` field is an approximation to the
set of all references in the segment. If there is a reference ``R`` in
the segment, then ``RefSetIsMember(summary, R)`` is :c:macro:`TRUE`. The
summary is initialized to ``RefSetEMPTY`` by :c:func:`SegInit()`.

:mps:tag:`field.summary.start` If references are stored in the segment then
it must be updated, along with ``rankSet`` (:mps:ref:`.field.rankSet.start`).

:mps:tag:`field.buffer` The ``buffer`` field is either :c:macro:`NULL`, or points
to the descriptor structure of the buffer which is currently
allocating in the segment. The field is initialized to :c:macro:`NULL` by
:c:func:`SegInit()`.

:mps:tag:`field.buffer.owner` This buffer must belong to the same pool as
the segment, because only that pool has the right to attach it.


Interface
---------

Splitting and merging
.....................

:mps:tag:`split-and-merge` There is support for splitting and merging
segments, to give pools the flexibility to rearrange their tracts
among segments as they see fit.

.. c:function:: Res SegSplit(Seg *segLoReturn, Seg *segHiReturn, Seg seg, Addr at)

:mps:tag:`split` If successful, segment ``seg`` is split at address ``at``,
yielding two segments which are returned in segLoReturn and
segHiReturn for the low and high segments respectively. The base of
the low segment is the old base of ``seg``. The limit of the low
segment is ``at``. The base of the high segment is ``at``. This limit
of the high segment is the old limit of ``seg``. ``seg`` is
effectively destroyed during this operation (actually, it might be
reused as one of the returned segments). Segment subclasses may make
use of the optional arguments; the built-in classes do not.

:mps:tag:`split.invariants` The client must ensure some invariants are met
before calling :c:func:`SegSplit()`:

- :mps:tag:`split.inv.align` ``at`` must be a multiple of the arena grain
  size, and lie between the base and limit of ``seg``. Justification:
  the split segments cannot be represented if this is not so.

- :mps:tag:`split.inv.buffer` If ``seg`` is attached to a buffer, the
  buffered region must not include address ``at``. Justification: the
  segment module is not in a position to know how (or whether) a pool
  might wish to split a buffer. This permits the buffer to remain
  attached to just one of the returned segments.

:mps:tag:`split.state` Except as noted above, the segments returned have the
same properties as ``seg``. That is, their colour, summary, rankset,
nailedness etc. are set to the values of ``seg``.

.. c:function:: Res SegMerge(Seg *mergedSegReturn, Seg segLo, Seg segHi)

:mps:tag:`merge` If successful, segments ``segLo`` and ``segHi`` are merged
together, yielding a segment which is returned in mergedSegReturn.
``segLo`` and ``segHi`` are effectively destroyed during this
operation (actually, one of them might be reused as the merged
segment). Segment subclasses may make use of the optional arguments;
the built-in classes do not.

:mps:tag:`merge.invariants` The client must ensure some invariants are met
before calling :c:func:`SegMerge()`:

- :mps:tag:`merge.inv.abut` The limit of ``segLo`` must be the same as the
  base of ``segHi``. Justification: the merged segment cannot be
  represented if this is not so.

- :mps:tag:`merge.inv.buffer` One or other of ``segLo`` and ``segHi`` may
  be attached to a buffer, but not both. Justification: the segment
  module does not support attachment of a single seg to 2 buffers.

- :mps:tag:`merge.inv.similar` ``segLo`` and ``segHi`` must be sufficiently
  similar. Two segments are sufficiently similar if they have
  identical values for each of the following fields: ``class``,
  ``grey``, ``white``, ``nailed``, ``rankSet``. Justification: There
  has yet to be a need to implement default behaviour for these
  cases. Pool classes should arrange for these values to be the same
  before calling :c:func:`SegMerge()`.

:mps:tag:`merge.state` The merged segment will share the same state as
``segLo`` and ``segHi`` for those fields which are identical (see
:mps:ref:`.merge.inv.similar`). The summary will be the union of the summaries
of ``segLo`` and ``segHi``.


Extensibility
-------------

Allocation
..........

.. c:type:: Bool (*SegBufferFillMethod)(Addr *baseReturn, Addr *limitReturn, Seg seg, Size size, RankSet rankSet)

:mps:tag:`method.buffer-fill` Allocate a block in the segment, of at least
``size`` bytes, with the given set of ranks. If successful, update
``*baseReturn`` and ``*limitReturn`` to the block and return :c:macro:`TRUE`.
Otherwise, return :c:macro:`FALSE`. The allocated block must be accounted as
buffered (see design.mps.strategy.account.buffered_).

.. _design.mps.strategy.account.buffered: strategy.html#design.mps.strategy.account.buffered

.. c:type:: void (*SegBufferEmptyMethod)(Seg seg, Buffer buffer)

:mps:tag:`method.buffer-empty` Free the unused part of the buffer to the
segment. Account the used part as new (see design.mps.strategy.account.new_) and the unused part as free (see design.mps.strategy.account.free_).

.. _design.mps.strategy.account.new: strategy.html#design.mps.strategy.account.new
.. _design.mps.strategy.account.free: strategy.html#design.mps.strategy.account.free


Garbage collection
..................

.. c:type:: Res (*SegAccessMethod)(Seg seg, Arena arena, Addr addr, AccessSet mode, MutatorContext context)

:mps:tag:`method.access` The ``access`` method indicates that the client
program attempted to access the address ``addr``, but has been denied
due to a protection fault. The ``mode`` indicates whether the client
program was trying to read (``AccessREAD``) or write (``AccessWRITE``)
the address. If this can't be determined, ``mode`` is ``AccessREAD |
AccessWRITE``. The segment should perform any work necessary to remove
the protection whilst still preserving appropriate invariants (this
might scanning the region containing ``addr``). Segment classes are
not required to provide this method, and not doing so indicates they
never protect any memory managed by the pool. This method is called
via the generic function :c:func:`SegAccess()`.

.. c:type:: Res (*SegWhitenMethod)(Seg seg, Trace trace)

:mps:tag:`method.whiten` The ``whiten`` method requests that the segment
``seg`` condemn (a subset of, but typically all) its objects for the
trace ``trace``. That is, prepare them for participation in the trace
to determine their liveness. The segment should expect fix requests
(:mps:ref:`.method.fix`) during the trace and a reclaim request
(:mps:ref:`.method.reclaim`) at the end of the trace. Segment
classes that automatically reclaim dead objects must provide this
method, and pools that use these segment classes must additionally set
the ``AttrGC`` attribute. This method is called via the generic
function :c:func:`SegWhiten()`.

.. c:type:: void (*SegGreyenMethod)(Seg seg, Trace trace)

:mps:tag:`method.grey` The ``greyen`` method requires the segment ``seg`` to
colour its objects grey for the trace ``trace`` (excepting objects
that were already condemned for this trace). That is, make them ready
for scanning by the trace ``trace``. The segment must arrange that any
appropriate invariants are preserved, possibly by using the protection
interface (see design.mps.prot_). Segment classes are not required to
provide this method, and not doing so indicates that all instances of
this class will have no fixable or traceable references in them. This
method is called via the generic function :c:func:`SegGreyen()`.

.. _design.mps.prot: prot.html

.. c:type:: void (*SegBlackenMethod)(Seg seg, TraceSet traceSet)

:mps:tag:`method.blacken` The ``blacken`` method is called if it is known
that the segment ``seg`` cannot refer to the white set for any of the
traces in ``traceSet``. The segment must blacken all its grey objects
for those traces. Segment classes are not required to provide this
method, and not doing so indicates that all instances of this class
will have no fixable or traceable references in them. This method is
called via the generic function :c:func:`SegBlacken()`.

.. c:type:: Res (*SegScanMethod)(Bool *totalReturn, Seg seg, ScanState ss)

:mps:tag:`method.scan` The ``scan`` method scans all the grey objects on the
segment ``seg``, passing the scan state ``ss`` to
:c:func:`TraceScanFormat()`. The segment may additionally accumulate a
summary of *all* its objects. If it succeeds in accumulating such a
summary it must indicate that it has done so by setting the
``*totalReturn`` parameter to :c:macro:`TRUE`. Otherwise it must set
``*totalReturn`` to :c:macro:`FALSE`. This method is called via the generic
function :c:func:`SegScan()`.

:mps:tag:`method.scan.required` Automatically managed segment classes are
required to provide this method, even if all instances of this class
will have no fixable or traceable references in them, in order to
support :c:func:`mps_pool_walk()`.

.. c:type:: Res (*SegFixMethod)(Seg seg, ScanState ss, Ref *refIO)

:mps:tag:`method.fix` The ``fix`` method indicates that the reference
``*refIO`` has been discovered at rank ``ss->rank`` by the traces in
``ss->traces``, and the segment must handle this discovery according
to the fix protocol (design.mps.fix_). If the method moves the object,
it must update ``*refIO`` to refer to the new location of the object.
If the method determines that the referenced object died (for example,
because the highest-ranking references to the object were weak), it
must update ``*refIO`` to :c:macro:`NULL`. Segment classes that automatically
reclaim dead objects must provide this method, and pools that use
these classes must additionally set the ``AttrGC`` attribute. Pool
classes that use segment classes that may move objects must also set
the ``AttrMOVINGGC`` attribute. The ``fix`` method is on the critical
path (see design.mps.critical-path_) and so must be fast. This method
is called via the function :c:func:`TraceFix()`.

.. _design.mps.fix: fix.html
.. _design.mps.critical-path: critical-path.html

:mps:tag:`method.fixEmergency` The ``fixEmergency`` method is used to
perform fixing in "emergency" situations. Its specification is
identical to the ``fix`` method, but it must complete its work without
allocating memory (perhaps by using some approximation, or by running
more slowly). Segment classes must provide this method if and only if
they provide the ``fix`` method. If the ``fix`` method does not need
to allocate memory, then it is acceptable for ``fix`` and
``fixEmergency`` to be the same.

.. c:type:: void (*SegReclaimMethod)(Seg seg, Trace trace)

:mps:tag:`method.reclaim` The ``reclaim`` method indicates that any
remaining white objects in the segment ``seg`` have now been proved
unreachable by the trace ``trace``, and so are dead. The segment
should reclaim the resources associated with the dead objects. Segment
classes are not required to provide this method. If they do, pools
that use them must set the ``AttrGC`` attribute. This method is called
via the generic function :c:func:`SegReclaim()`.

.. c:type:: void (*SegWalkMethod)(Seg seg, Format format, FormattedObjectsVisitor f, void *v, size_t s)

:mps:tag:`method.walk` The ``walk`` method must call the visitor function
``f`` (along with its closure parameters ``v`` and ``s`` and the
format ``format``) once for each of the *black* objects in the segment
``seg``. Padding objects may or may not be included in the walk, at
the segment's discretion: it is the responsibility of the client
program to handle them. Forwarding objects must not be included in the
walk. Segment classes need not provide this method. This method is
called by the generic function :c:func:`SegWalk()`, which is called by the
deprecated public functions :c:func:`mps_arena_formatted_objects_walk()` and
:c:func:`mps_amc_apply()`.

:mps:tag:`method.walk.deprecated` The ``walk`` method is deprecated along
with the public functions :c:func:`mps_arena_formatted_objects_walk()` and
:c:func:`mps_amc_apply()` and will be removed along with them in a future
release.

.. c:type:: void (*SegFlipMethod)(Seg seg, Trace trace)

:mps:tag:`method.flip` Raise the read barrier, if necessary, for a trace
that's about to flip and for which the segment is grey and potentially
contains references.


Splitting and merging
.....................

.. c:type:: Res (*SegSplitMethod)(Seg seg, Seg segHi, Addr base, Addr mid, Addr limit)

:mps:tag:`method.split` Segment subclasses may extend the support for
segment splitting by defining their own "split" method. On entry,
``seg`` is a segment with region ``[base,limit)``, ``segHi`` is
uninitialized, ``mid`` is the address at which the segment is to be
split. The method is responsible for destructively modifying ``seg``
and initializing ``segHi`` so that on exit ``seg`` is a segment with
region ``[base,mid)`` and ``segHi`` is a segment with region
``[mid,limit)``. Usually a method would only directly modify the
fields defined for the segment subclass.

:mps:tag:`method.split.next` A split method should always call the next
method, either before or after any class-specific code (see
design.mps.protocol.overview.next-method_).

.. _design.mps.protocol.overview.next-method: protocol.html#design.mps.protocol.overview.next-method

:mps:tag:`method.split.accounting` If ``seg`` belongs to a generation in a
chain, then the pool generation accounting must be updated. In the
simple case where the split segments remain in the same generation,
this can be done by calling :c:func:`PoolGenAccountForSegSplit()`.

.. c:type:: Res (*SegMergeMethod)(Seg seg, Seg segHi, Addr base, Addr mid, Addr limit)

:mps:tag:`method.merge` Segment subclasses may extend the support for
segment merging by defining their own ``merge`` method. On entry,
``seg`` is a segment with region ``[base,mid)``, ``segHi`` is a
segment with region ``[mid,limit)``, The method is responsible for
destructively modifying ``seg`` and finishing ``segHi`` so that on
exit ``seg`` is a segment with region ``[base,limit)`` and ``segHi``
is garbage. Usually a method would only modify the fields defined for
the segment subclass.

:mps:tag:`method.merge.next` A merge method should always call the next
method, either before or after any class-specific code (see
design.mps.protocol.overview.next-method_).

.. _design.mps.protocol.overview.next-method: protocol.html#design.mps.protocol.overview.next-method

:mps:tag:`method.merge.accounting` If ``seg`` belongs to a generation in a
chain, then the pool generation accounting must be updated. In the
simple case where the two segments started in the same generation and
the merged segment remains in that generation, this can be done by
calling :c:func:`PoolGenAccountForSegMerge()`.

:mps:tag:`split-merge.shield` Split and merge methods may assume that the
segments they are manipulating are not in the shield queue.

:mps:tag:`split-merge.shield.flush` The shield queue is flushed before any
split or merge methods are invoked.

:mps:tag:`split-merge.shield.re-flush` If a split or merge method performs
an operation on a segment which might cause the segment to be queued,
the method must flush the shield queue before returning or calling
another split or merge method.

:mps:tag:`split-merge.fail` Split and merge methods might fail, in which
case segments ``seg`` and ``segHi`` must be equivalently valid and
configured at exit as they were according to the entry conditions.
It's simplest if the failure can be detected before calling the next
method (for example, by allocating any objects early in the method).

:mps:tag:`split-merge.fail.anti` If it's not possible to detect failure
before calling the next method, the appropriate anti-method must be
used (see design.mps.protocol.guide.fail.after-next_). Split methods
are anti-methods for merge methods, and vice-versa.

.. _design.mps.protocol.guide.fail.after-next: protocol.html#design.mps.protocol.guide.fail.after-next

:mps:tag:`split-merge.fail.anti.constrain` In general, care should be taken
when writing split and merge methods to ensure that they really are
anti-methods for each other. The anti-method must not fail if the
initial method succeeded. The anti-method should reverse any side
effects of the initial method, except where it's known to be safe to
avoid this (see :mps:ref:`.split-merge.fail.summary` for an example of a safe
case).

:mps:tag:`split-merge.fail.anti.no` If this isn't possible (it might not be)
then the methods won't support after-next failure. This fact should be
documented, if the methods are intended to support further
specialization. Note that using va_arg with the ``args`` parameter is
sufficient to make it impossible to reverse all side effects.

:mps:tag:`split-merge.fail.summary` The segment summary might not be
restored exactly after a failed merge operation. Each segment would be
left with a summary which is the union of the original summaries (see
:mps:ref:`.merge.state`). This increases the conservatism in the summaries,
but is otherwise safe.

:mps:tag:`split-merge.unsupported` Segment classes need not support segment
merging at all. The function :c:func:`SegClassMixInNoSplitMerge()` is supplied
to set the split and merge methods to unsupporting methods that will
report an error in checking varieties.