diff --git a/mps/code/mpstd.h b/mps/code/mpstd.h
index 4043b6716d7..7884fc016f8 100644
--- a/mps/code/mpstd.h
+++ b/mps/code/mpstd.h
@@ -259,7 +259,6 @@
#define MPS_ARCH_AL
#define MPS_BUILD_GC
#define MPS_T_WORD unsigned long
-#define MPS_T_SHORT unsigned
#define MPS_WORD_WIDTH 64
#define MPS_WORD_SHIFT 6
#define MPS_PF_ALIGN 8
@@ -274,7 +273,6 @@
#define MPS_ARCH_AL
#define MPS_BUILD_CC
#define MPS_T_WORD unsigned long
-#define MPS_T_SHORT unsigned
#define MPS_WORD_WIDTH 64
#define MPS_WORD_SHIFT 6
#define MPS_PF_ALIGN 8
@@ -338,18 +336,18 @@
* Copyright (C) 2001-2002 Ravenbrook Limited
This is not a complete set of design documents for the MPS. We have many hundreds of documents, many of which contain confidential information. We are sorting through these and will include more as time goes on. We have tried to select the key documents for inclusion in the open source release, by including those documents referenced by the source code.
-This document will be modified as the product is developed. Design -documents will appear here according to the design document procedure -[RB -2000-10-05].
+This document will be modified as the product is developed.
The readership of this document is the product developers.
@@ -503,22 +500,6 @@ documents will appear here according to the design document procedure| [RB 2000-10-05] | - -- "P4DTI Project Design Document Procedure"; - Richard Brooksby; - Ravenbrook Limited; - 2000-10-05. - | - -
THE DESIGN OF A NEW MANUAL-VARIABLE MEMORY POOL CLASS
- design.mps.poolmv2
+ design.mps.poolmvt
draft design
P T Withington 1998-02-13
INTRODUCTION:
-This is a second-generation design for a pool that manually manages
-variable-sized objects. It is intended as a replacement for poolmv (except in
-its control pool role) and poolepdl, and it is intended to satisfy the
-requirements of the Dylan "misc" pool and the product malloc/new drop-in
+This is a second-generation design for a pool that manually manages
+variable-sized objects. It is intended as a replacement for poolmv (except in
+its control pool role) and poolepdl, and it is intended to satisfy the
+requirements of the Dylan "misc" pool and the product malloc/new drop-in
replacement.
-[This form should include these fields, rather than me having to create them
+[This form should include these fields, rather than me having to create them
"by hand"]
.readership: MM developers
.source: req.dylan(6), req.epcore(16), req.product(2)
-.background: design.mps.poolmv(0), design.mps.poolepdl(0),
-design.product.soft.drop(0), paper.wil95(1), paper.vo96(0), paper.grun92(1),
-paper.beck82(0), mail.ptw.1998-02-25.22-18(0)
+.background: design.mps.poolmv(0), design.mps.poolepdl(0),
+design.product.soft.drop(0), paper.wil95(1), paper.vo96(0), paper.grun92(1),
+paper.beck82(0), mail.ptw.1998-02-25.22-18(0)
.hist.-1: Initial email discussion mail.ptw.1998-02-04.21-27(0), ff.
-.hist.0: Draft created 1998-02-13 by P. T. Withington from email RFC
+.hist.0: Draft created 1998-02-13 by P. T. Withington from email RFC
mail.ptw.1998-02-12.03-36, ff.
-.hist.1: Revised 1998-04-01 in response to email RFC
+.hist.1: Revised 1998-04-01 in response to email RFC
mail.ptw.1998-03-23.20-43(0), ff.
-.hist.2: Revised 1998-04-15 in response to email RFC
+.hist.2: Revised 1998-04-15 in response to email RFC
mail.ptw.1998-04-13.21-40(0), ff.
.hist.3: Erroneously incremented version number
.hist.4: Revised 1998-05-06 in response to review review.design.mps.poolmv2.2
@@ -68,55 +68,55 @@ mail.ptw.1998-04-13.21-40(0), ff.
DEFINITIONS
-.def.alignment: Alignment is a constraint on an object's address, typically to
+.def.alignment: Alignment is a constraint on an object's address, typically to
be a power of 2 (see also, glossary.alignment )
.def.bit-map: A bitmap is a boolean-valued vector (see also, glossary.bitmap ).
-.def.block: A block is a contiguous extent of memory. In this document, block
-is used to mean a contiguous extent of memory managed by the pool for the pool
+.def.block: A block is a contiguous extent of memory. In this document, block
+is used to mean a contiguous extent of memory managed by the pool for the pool
client, typically a subset of a segment (compare with .def.segment).
-.def.cartesian-tree: A cartesian tree is a binary tree ordered by two keys
+.def.cartesian-tree: A cartesian tree is a binary tree ordered by two keys
(paper.stephenson83(0)).
-.def.crossing-map: A mechanism that supports finding the start of an object
-from any address within the object, typically only required on untagged
+.def.crossing-map: A mechanism that supports finding the start of an object
+from any address within the object, typically only required on untagged
architectures (see also, glossary.crossing.map ).
-.def.footer: A block of descriptive information describing and immediately
+.def.footer: A block of descriptive information describing and immediately
following another block of memory (see also .def.header).
-.def.fragmentation: Fragmented memory is memory reserved to the program but not
-usable by the program because of the arrangement of memory already in use (see
+.def.fragmentation: Fragmented memory is memory reserved to the program but not
+usable by the program because of the arrangement of memory already in use (see
also, glossary.fragmentation ).
-.def.header: A block of descriptive information describing and immediately
+.def.header: A block of descriptive information describing and immediately
preceding another block of memory (see also, glossary.in-band.header ).
-.def.in-band: From "in band signalling", when descriptive information about a
-data structure is stored in the data structure itself (see also,
+.def.in-band: From "in band signalling", when descriptive information about a
+data structure is stored in the data structure itself (see also,
glossary.in-band.header ).
-.def.out-of-band: When descriptive information about a data structure is stored
+.def.out-of-band: When descriptive information about a data structure is stored
separately from the structure itself (see also, glossary.out-of-band.header ).
-.def.refcount: A refcount is a count of the number of users of an object (see
+.def.refcount: A refcount is a count of the number of users of an object (see
also, glossary.reference.count ).
-.def.segment: A segment is a contiguous extent of memory. In this document,
-segment is used to mean a contiguous extent of memory managed by the MPS arena
-(design.mps.arena(1)) and subdivided by the pool to provide blocks (see
+.def.segment: A segment is a contiguous extent of memory. In this document,
+segment is used to mean a contiguous extent of memory managed by the MPS arena
+(design.mps.arena(1)) and subdivided by the pool to provide blocks (see
.def.block) to its clients.
-.def.splay-tree: A splay tree is a self-adjusting binary tree (paper.st85(0),
+.def.splay-tree: A splay tree is a self-adjusting binary tree (paper.st85(0),
paper.sleator96(0)).
-.def.splinter: A splinter is a fragment of memory that is too small to be
+.def.splinter: A splinter is a fragment of memory that is too small to be
useful (see also, glossary.splinter )
-.def.subblock: A subblock is a contiguous extent of memory. In this document,
-subblock is used to mean a contiguous extent of memory manage by the client for
+.def.subblock: A subblock is a contiguous extent of memory. In this document,
+subblock is used to mean a contiguous extent of memory manage by the client for
its own use, typically a subset of a block (compare with .def.block).
@@ -138,12 +138,12 @@ ABBREVIATIONS
OVERVIEW:
-mv2 is intended to satisfy the requirements of the clients that need
-manual-variable pools, improving on the performance of the existing
-manual-variable pool implementations, and reducing the duplication of code that
-currently exists. The expected clients of mv2 are: Dylan (currently for its
-misc pool), EP (particularly the dl pool, but all pools other than the PS
-object pool), and Product (initially the malloc/new pool, but also other manual
+mvt is intended to satisfy the requirements of the clients that need
+manual-variable pools, improving on the performance of the existing
+manual-variable pool implementations, and reducing the duplication of code that
+currently exists. The expected clients of mvt are: Dylan (currently for its
+misc pool), EP (particularly the dl pool, but all pools other than the PS
+object pool), and Product (initially the malloc/new pool, but also other manual
pool classes).
@@ -151,99 +151,99 @@ REQUIREMENTS:
.req.cat: Requirements are categorized per guide.req(2).
-.req.risk: req.epcore(16) is known to be obsolete, but the revised document has
+.req.risk: req.epcore(16) is known to be obsolete, but the revised document has
not yet been accepted.
Critical Requirements
-.req.fun.man-var: The pool class must support manual allocation and freeing of
-variable-sized blocks (source: req.dylan.fun.misc.alloc,
-req.epcore.fun.{dl,gen,tmp,stat,cache,trap}.{alloc,free},
+.req.fun.man-var: The pool class must support manual allocation and freeing of
+variable-sized blocks (source: req.dylan.fun.misc.alloc,
+req.epcore.fun.{dl,gen,tmp,stat,cache,trap}.{alloc,free},
req.product.fun.{malloc,new,man.man}).
-.non-req.fun.gc: There is not a requirement that the pool class support
-formatted objects, scanning, or collection objects; but it should not be
+.non-req.fun.gc: There is not a requirement that the pool class support
+formatted objects, scanning, or collection objects; but it should not be
arbitrarily precluded.
-.req.fun.align: The pool class must support aligned allocations to
-client-specified alignments. An individual instance need only support a single
-alignment; multiple instances may be used to support more than one alignment
+.req.fun.align: The pool class must support aligned allocations to
+client-specified alignments. An individual instance need only support a single
+alignment; multiple instances may be used to support more than one alignment
(source: req.epcore.attr.align).
-.req.fun.reallocate: The pool class must support resizing of allocated blocks
+.req.fun.reallocate: The pool class must support resizing of allocated blocks
(source req.epcore.fun.dl.promise.free, req.product.dc.env.{ansi-c,cpp}).
-.non-req.fun.reallocate.in-place: There is not a requirement blocks must be
+.non-req.fun.reallocate.in-place: There is not a requirement blocks must be
resized in place (where possible); but it seems like a good idea.
-.req.fun.thread: Each instance of the pool class must support multiple threads
+.req.fun.thread: Each instance of the pool class must support multiple threads
of allocation (source req.epcore.fun.dl.multi, req.product.dc.env.{ansi-c,cpp}).
-.req.attr.performance: The pool class must meet or exceed performance of
-"competitive" allocators (source: rec.epcore.attr.{run-time,tp},
-req.product.attr.{mkt.eval, perform}). [Dylan does not seem to have any
-requirement that storage be allocated with a particular response time or
-throughput, just so long as we don't block for too long. Clearly there is a
+.req.attr.performance: The pool class must meet or exceed performance of
+"competitive" allocators (source: rec.epcore.attr.{run-time,tp},
+req.product.attr.{mkt.eval, perform}). [Dylan does not seem to have any
+requirement that storage be allocated with a particular response time or
+throughput, just so long as we don't block for too long. Clearly there is a
missing requirement.]
.req.attr.performance.time: By inference, the time overhead must be competetive.
-.req.attr.performance.space: By inference, the space overhead must be
+.req.attr.performance.space: By inference, the space overhead must be
competetive.
-.req.attr.reliability: The pool class must have "rock-solid reliability"
+.req.attr.reliability: The pool class must have "rock-solid reliability"
(source: req.dylan.attr.rel.mtbf, req.epcore.attr.rel, req.product.attr.rel).
-.req.fun.range: The pool class must be able to manage blocks ranging in size
-from 1 byte to all of addressable memory
-(req.epcore.attr.{dl,gen,tmp,stat,cache,trap}.obj.{min,max}. The range
-requirement may be satisfied by multiple instances each managing a particular
-client-specified subrange of sizes. [Dylan has requirements
-req.dylan.attr.{capacity,obj.max}, but no requirement that such objects reside
-in a manual pool.]
+.req.fun.range: The pool class must be able to manage blocks ranging in size
+from 1 byte to all of addressable memory
+(req.epcore.attr.{dl,gen,tmp,stat,cache,trap}.obj.{min,max}. The range
+requirement may be satisfied by multiple instances each managing a particular
+client-specified subrange of sizes. [Dylan has requirements
+req.dylan.attr.{capacity,obj.max}, but no requirement that such objects reside
+in a manual pool.]
-.req.fun.debug: The pool class must support debugging erroneous usage by client
-programs (source: req.epcore.fun.{dc.variety, debug.support},
-req.product.attr.{mkt.eval,perform}). Debugging is permitted to incur
+.req.fun.debug: The pool class must support debugging erroneous usage by client
+programs (source: req.epcore.fun.{dc.variety, debug.support},
+req.product.attr.{mkt.eval,perform}). Debugging is permitted to incur
additional overhead.
-.req.fun.debug.boundaries: The pool class must support checking for accesses
+.req.fun.debug.boundaries: The pool class must support checking for accesses
outside the boundaries of live objects.
-.req.fun.debug.log: The pool class must support logging of all allocations and
+.req.fun.debug.log: The pool class must support logging of all allocations and
deallocations.
-.req.fun.debug.enumerate: The pool class must support examining all allocated
+.req.fun.debug.enumerate: The pool class must support examining all allocated
objects.
-.req.fun.debug.free: The pool class must support detecting incorrect,
+.req.fun.debug.free: The pool class must support detecting incorrect,
overlapping, and double frees.
-.req.fun.tolerant: The pool class must support tolerance of erroneous usage
+.req.fun.tolerant: The pool class must support tolerance of erroneous usage
(source req.product.attr.use.level.1).
Essential Requirements
-.req.fun.profile: The pool class should support memory usage profiling (source:
+.req.fun.profile: The pool class should support memory usage profiling (source:
req.product.attr.{mkt.eval, perform}).
-.req.attr.flex: The pool class should be flexible so that it can be tuned to
-specific allocation and freeing patterns (source:
-req.product.attr.flex,req.epcore.attr.{dl,cache,trap}.typ). The flexibility
-requirement may be satisfied by multiple instances each optimizing a specific
+.req.attr.flex: The pool class should be flexible so that it can be tuned to
+specific allocation and freeing patterns (source:
+req.product.attr.flex,req.epcore.attr.{dl,cache,trap}.typ). The flexibility
+requirement may be satisfied by multiple instances each optimizing a specific
pattern.
-.req.attr.adapt: The pool class should be adaptive so that it can accommodate
-changing allocation and freeing patterns (source:
+.req.attr.adapt: The pool class should be adaptive so that it can accommodate
+changing allocation and freeing patterns (source:
req.epcore.fun.{tmp,stat}.policy, req.product.attr.{mkt.eval,perform}).
Nice Requirements
-.req.fun.suballocate: The pool class may support freeing of any aligned,
-contiguous subset of an allocated block (source req.epcore.fun.dl.free.any,
+.req.fun.suballocate: The pool class may support freeing of any aligned,
+contiguous subset of an allocated block (source req.epcore.fun.dl.free.any,
req.product.attr.{mkt.eval,perform}).
@@ -251,148 +251,148 @@ req.product.attr.{mkt.eval,perform}).
ARCHITECTURE:
-.arch.overview: The pool has several layers: client allocation is by Allocation
-Points (APs). .arch.overview.ap: APs acquire storage from the pool
-available-block queue (ABQ). .arch.overview.abq: The ABQ holds blocks of a
-minimum configurable size: "reuse size". .arch.overview.storage: The ABQ
-acquires storage from the arena or from the coalescing-block structure (CBS).
-.arch.overview.storage.contiguous: The arena storage is requested to be
-contiguous to maximize opportunities for coalescing (Loci will be used when
-available). .arch.overview.cbs: The CBS holds blocks freed by the client until,
-through coalescing, they have reached the reuse size, at which point they are
+.arch.overview: The pool has several layers: client allocation is by Allocation
+Points (APs). .arch.overview.ap: APs acquire storage from the pool
+available-block queue (ABQ). .arch.overview.abq: The ABQ holds blocks of a
+minimum configurable size: "reuse size". .arch.overview.storage: The ABQ
+acquires storage from the arena or from the coalescing-block structure (CBS).
+.arch.overview.storage.contiguous: The arena storage is requested to be
+contiguous to maximize opportunities for coalescing (Loci will be used when
+available). .arch.overview.cbs: The CBS holds blocks freed by the client until,
+through coalescing, they have reached the reuse size, at which point they are
made available on the ABQ.
-.arch.ap: The pool will use allocation points as the allocation interface to
-the client. .arch.ap.two-phase: Allocation points will request blocks from the
-pool and suballocate those blocks (using the existing AP, compare and
-increment, 2-phase mechanism) to satisfy client requests. .arch.ap.fill: The
-pool will have a configurable "fill size" that will be the preferred size block
-used to fill the allocation point. .arch.ap.fill.size: The fill size should be
-chosen to amortize the cost of refill over a number of typical reserve/commit
-operations, but not so large as to exceed the typical object population of the
-pool. .arch.ap.no-fit: When an allocation does not fit in the remaining space
-of the allocation point, there may be a remaining fragment.
-.arch.ap.no-fit.sawdust: If the fragment is below a configurable threshold
-(minimum size), it will be left unused (but returned to the CBS so it will be
-reclaimed when adjacent objects are freed); .arch.ap.no-fit.splinter:
-otherwise, the remaining fragment will be (effectively) returned to the head of
-the available-block queue, so that it will be used as soon as possible (i.e.,
-by objects of similar birthdate). .arch.ap.no-fit.oversize: If the requested
-allocation exceeds the fill size it is treated exceptionally (this may indicate
-the client has either misconfigured or misused the pool and should either
-change the pool configuration or create a separate pool for these exceptional
-objects for best performance). .arch.ap.no-fit.oversize.policy: Oversize blocks
-are assumed to have exceptional lifetimes, hence are allocated to one side and
-do not participate in the normal storage recycling of the pool.
-.arch.ap.refill.overhead: If reuse size is small, or becomes small due to
-.arch.adapt, all allocations will effectively be treated exceptionally (the AP
-will trip and a oldest-fit block will be chosen on each allocation). This mode
+.arch.ap: The pool will use allocation points as the allocation interface to
+the client. .arch.ap.two-phase: Allocation points will request blocks from the
+pool and suballocate those blocks (using the existing AP, compare and
+increment, 2-phase mechanism) to satisfy client requests. .arch.ap.fill: The
+pool will have a configurable "fill size" that will be the preferred size block
+used to fill the allocation point. .arch.ap.fill.size: The fill size should be
+chosen to amortize the cost of refill over a number of typical reserve/commit
+operations, but not so large as to exceed the typical object population of the
+pool. .arch.ap.no-fit: When an allocation does not fit in the remaining space
+of the allocation point, there may be a remaining fragment.
+.arch.ap.no-fit.sawdust: If the fragment is below a configurable threshold
+(minimum size), it will be left unused (but returned to the CBS so it will be
+reclaimed when adjacent objects are freed); .arch.ap.no-fit.splinter:
+otherwise, the remaining fragment will be (effectively) returned to the head of
+the available-block queue, so that it will be used as soon as possible (i.e.,
+by objects of similar birthdate). .arch.ap.no-fit.oversize: If the requested
+allocation exceeds the fill size it is treated exceptionally (this may indicate
+the client has either misconfigured or misused the pool and should either
+change the pool configuration or create a separate pool for these exceptional
+objects for best performance). .arch.ap.no-fit.oversize.policy: Oversize blocks
+are assumed to have exceptional lifetimes, hence are allocated to one side and
+do not participate in the normal storage recycling of the pool.
+.arch.ap.refill.overhead: If reuse size is small, or becomes small due to
+.arch.adapt, all allocations will effectively be treated exceptionally (the AP
+will trip and a oldest-fit block will be chosen on each allocation). This mode
will be within a constant factor in overhead of an unbuffered pool.
-.arch.abq: The available block queue holds blocks that have coalesced
-sufficiently to reach reuse size. arch.abq.reuse.size: A multiple of the
-quantum of virtual memory is used as the reuse size (.anal.policy.size).
-.arch.abq.fifo: It is a FIFO queue (recently coalesced blocks go to the tail of
-the queue, blocks are taken from the head of the queue for reuse).
-.arch.abq.delay-reuse: By thus delaying reuse, coalescing opportunities are
-greater. .arch.abq.high-water: It has a configurable high water mark, which
-when reached will cause blocks at the head of the queue to be returned to the
-arena, rather than reused. .arch.abq.return: When the MPS supports it, the pool
-will be able to return free blocks from the ABQ to the arena on demand.
-.arch.return.segment: arch.abq.return can be guaranteed to be able to return a
-segment by setting reuse size to twice the size of the segments the pool
+.arch.abq: The available block queue holds blocks that have coalesced
+sufficiently to reach reuse size. arch.abq.reuse.size: A multiple of the
+quantum of virtual memory is used as the reuse size (.anal.policy.size).
+.arch.abq.fifo: It is a FIFO queue (recently coalesced blocks go to the tail of
+the queue, blocks are taken from the head of the queue for reuse).
+.arch.abq.delay-reuse: By thus delaying reuse, coalescing opportunities are
+greater. .arch.abq.high-water: It has a configurable high water mark, which
+when reached will cause blocks at the head of the queue to be returned to the
+arena, rather than reused. .arch.abq.return: When the MPS supports it, the pool
+will be able to return free blocks from the ABQ to the arena on demand.
+.arch.return.segment: arch.abq.return can be guaranteed to be able to return a
+segment by setting reuse size to twice the size of the segments the pool
requests from the arena.
-.arch.cbs: The coalescing block structure holds blocks that have been freed by
-the client. .arch.cbs.optimize: The data structure is optimized for coalescing.
-.arch.cbs.abq: When a block reaches reuse size, it is added to the ABQ.
-.arch.cbs.data-structure: The data structures are organized so that a block can
-be on both the CBS and ABQ simultaneously to permit additional coalescing, up
+.arch.cbs: The coalescing block structure holds blocks that have been freed by
+the client. .arch.cbs.optimize: The data structure is optimized for coalescing.
+.arch.cbs.abq: When a block reaches reuse size, it is added to the ABQ.
+.arch.cbs.data-structure: The data structures are organized so that a block can
+be on both the CBS and ABQ simultaneously to permit additional coalescing, up
until the time the block is removed from the ABQ and assigned to an AP.
-.arch.fragmentation.internal: Internal fragmentation results from The pool will
-request large segments from the arena to minimize the internal fragmentation
+.arch.fragmentation.internal: Internal fragmentation results from The pool will
+request large segments from the arena to minimize the internal fragmentation
due to objects not crossing segment boundaries.
-.arch.modular: The architecture will be modular, to allow building variations
-on the pool by assembling different parts. .arch.modular.example: For example,
-it should be possible to build pools with any of the freelist mechanisms, with
-in-band or out-of-band storage (where applicable), that do or do not support
+.arch.modular: The architecture will be modular, to allow building variations
+on the pool by assembling different parts. .arch.modular.example: For example,
+it should be possible to build pools with any of the freelist mechanisms, with
+in-band or out-of-band storage (where applicable), that do or do not support
derived object descriptions, etc.
-.arch.modular.initial: The initial architecture will use
-.mech.freelist.splay-tree for the CBS, .sol.mech.storage.out-of-band,
+.arch.modular.initial: The initial architecture will use
+.mech.freelist.splay-tree for the CBS, .sol.mech.storage.out-of-band,
.sol.mech.desc.derived, and .sol.mech.allocate.buffer.
-.arch.segregate: The architecture will support segregated allocation through
-the use of multiple allocation points. The client will choose the appropriate
+.arch.segregate: The architecture will support segregated allocation through
+the use of multiple allocation points. The client will choose the appropriate
allocation point either at run time, or when possible, at compile time.
-.arch.segregate.initial: The initial architecture will segregate allocations
-into two classes: large and small. This will be implemented by creating two
+.arch.segregate.initial: The initial architecture will segregate allocations
+into two classes: large and small. This will be implemented by creating two
pools with different parameters.
-.arch.segregate.initial.choice: The initial architecture will provide glue code
-to choose which pool to allocate from at run time. If possible this glue code
-will be written in a way that a good compiler can optimize the selection of
-pool at compile time. Eventually this glue code should be subsumed by the
+.arch.segregate.initial.choice: The initial architecture will provide glue code
+to choose which pool to allocate from at run time. If possible this glue code
+will be written in a way that a good compiler can optimize the selection of
+pool at compile time. Eventually this glue code should be subsumed by the
client or generated automatically by a tool.
-.arch.debug: Debugging features such as tags, fenceposts, types, creators will
-be implemented in a layer above the pool and APs. A generic pool debugging
+.arch.debug: Debugging features such as tags, fenceposts, types, creators will
+be implemented in a layer above the pool and APs. A generic pool debugging
interface will be developed to support debugging in this outer layer.
-.arch.debug.initial: The initial architecture will have counters for
+.arch.debug.initial: The initial architecture will have counters for
objects/bytes allocated/freed and support for detecting overlapping frees.
-.arch.dependency.loci: The architecture depends on the arena being able to
-efficiently provide segments of varying sizes without excessive fragmentation.
-The locus mechanism should satisfy this dependency. (See .anal.strategy.risk)
+.arch.dependency.loci: The architecture depends on the arena being able to
+efficiently provide segments of varying sizes without excessive fragmentation.
+The locus mechanism should satisfy this dependency. (See .anal.strategy.risk)
-.arch.dependency.mfs: The architecture internal data structures depend on
-efficient manual management of small, fixed-sized objects (2 different sizes).
+.arch.dependency.mfs: The architecture internal data structures depend on
+efficient manual management of small, fixed-sized objects (2 different sizes).
The MFS pool should satisfy this dependency.
-.arch.contingency: Since the strategy we propose is new, it may not work.
-.arch.contingency.pathalogical: In particular, pathological allocation patterns
-could result in fragmentation such that no blocks recycle from the CBS to ABQ.
-.arch.contingency.fallback: As a fallback, there will be a pool creation
-parameter for a high water mark for the CBS.
-.arch.contingency.fragmentation-limit: When the free space in the CBS as a
-percentage of all the memory managed by the pool (a measure of fragmentation)
-reaches that high water mark, the CBS will be searched oldest-fit before
-requesting additional segments from the arena. .arch.contingency.alternative:
-We also plan to implement .mech.freelist.cartesian-tree as an alternative CBS,
+.arch.contingency: Since the strategy we propose is new, it may not work.
+.arch.contingency.pathalogical: In particular, pathological allocation patterns
+could result in fragmentation such that no blocks recycle from the CBS to ABQ.
+.arch.contingency.fallback: As a fallback, there will be a pool creation
+parameter for a high water mark for the CBS.
+.arch.contingency.fragmentation-limit: When the free space in the CBS as a
+percentage of all the memory managed by the pool (a measure of fragmentation)
+reaches that high water mark, the CBS will be searched oldest-fit before
+requesting additional segments from the arena. .arch.contingency.alternative:
+We also plan to implement .mech.freelist.cartesian-tree as an alternative CBS,
which would permit more efficient searching of the CBS.
-.arch.parameters: The architecture supports several parameters so that multiple
-pools may be instantiated and tuned to support different object cohorts. The
-important parameters are: reuse size, minimum size, fill size, ABQ high water
-mark, CBS fragmentation limit (see .arch.contingency.fragmentation-limit).
-.arch.parameters.client-visible: The client-visible parameters of the pool are
-the minimum object size, the mean object size, the maximum object size, the
-reserve depth and fragmentation limit. The minimum object size determines when
-a splinter is kept on the head of the ABQ (.arch.ap.no-fit.splinter). The
-maximum object size determines the fill size (.arch.ap.fill-size) and hence
-when a block is allocated exceptionally (.arch.ap.no-fit.oversize). The mean
-object size is the most likely object size. The reserve depth is a measure of
-the hysteresis of the object population. The mean object size, reserve depth
-and, maximum object size are used to determine the size of the ABQ
-(.arch.abq.high-water). The fragmentation limit is used to determine when
+.arch.parameters: The architecture supports several parameters so that multiple
+pools may be instantiated and tuned to support different object cohorts. The
+important parameters are: reuse size, minimum size, fill size, ABQ high water
+mark, CBS fragmentation limit (see .arch.contingency.fragmentation-limit).
+.arch.parameters.client-visible: The client-visible parameters of the pool are
+the minimum object size, the mean object size, the maximum object size, the
+reserve depth and fragmentation limit. The minimum object size determines when
+a splinter is kept on the head of the ABQ (.arch.ap.no-fit.splinter). The
+maximum object size determines the fill size (.arch.ap.fill-size) and hence
+when a block is allocated exceptionally (.arch.ap.no-fit.oversize). The mean
+object size is the most likely object size. The reserve depth is a measure of
+the hysteresis of the object population. The mean object size, reserve depth
+and, maximum object size are used to determine the size of the ABQ
+(.arch.abq.high-water). The fragmentation limit is used to determine when
contingency mode is used to satisfy an allocation request (.arch.contingency).
-.arch.adapt: We believe that an important adaptation to explore is tying the
-reuse size inversely to the fragmentation (as measured in
-.arch.contingency.fragmentation-limit). .arch.adapt.reuse: By setting reuse
-size low when fragmentation is high, smaller blocks will be available for
-reuse, so fragmentation should diminish. .arch.adapt.overhead: This will result
-in higher overhead as the AP will need to be refilled more often, so reuse size
-should be raised again as fragmentation diminishes. .arch.adapt.oldest-fit: In
-the limit, if reuse size goes to zero, the pool will implement a "oldest-fit"
-policy: the oldest free block of sufficient size will be used for each
+.arch.adapt: We believe that an important adaptation to explore is tying the
+reuse size inversely to the fragmentation (as measured in
+.arch.contingency.fragmentation-limit). .arch.adapt.reuse: By setting reuse
+size low when fragmentation is high, smaller blocks will be available for
+reuse, so fragmentation should diminish. .arch.adapt.overhead: This will result
+in higher overhead as the AP will need to be refilled more often, so reuse size
+should be raised again as fragmentation diminishes. .arch.adapt.oldest-fit: In
+the limit, if reuse size goes to zero, the pool will implement a "oldest-fit"
+policy: the oldest free block of sufficient size will be used for each
allocation.
-.arch.adapt.risk: This adaptation is an experimental policy and should not be
+.arch.adapt.risk: This adaptation is an experimental policy and should not be
delivered to clients until thoroughly tested.
@@ -401,91 +401,91 @@ delivered to clients until thoroughly tested.
ANALYSIS:
-.anal.discard: We have discarded many traditional solutions based on experience
-and analysis in paper.wil95(1). In particular, managing the free list as a
-linear list arranged by address or size and basing policy on searching such a
-linear list in a particular direction, from a particular starting point, using
-fit and/or immediacy as criteria. We believe that none of these solutions is
-derived from considering the root of the problem to be solved (as described in
-.strategy), although their behavior as analyzed by Wilson gives several
+.anal.discard: We have discarded many traditional solutions based on experience
+and analysis in paper.wil95(1). In particular, managing the free list as a
+linear list arranged by address or size and basing policy on searching such a
+linear list in a particular direction, from a particular starting point, using
+fit and/or immediacy as criteria. We believe that none of these solutions is
+derived from considering the root of the problem to be solved (as described in
+.strategy), although their behavior as analyzed by Wilson gives several
insights.
-.anal.strategy: For any program to run in the minimum required memory (with
-minimal overhead -- we discard solutions such as compression for now),
-fragmentation must be eliminated. To eliminate fragmentation, simply place
-blocks in memory so that they die "in order" and can be immediately coalesced.
-This ideal is not achievable, but we believe we can find object attributes that
-correlate with deathtime and exploit them to approximate the ideal. Initially
-we believe birth time and type (as approximated by size) will be useful
+.anal.strategy: For any program to run in the minimum required memory (with
+minimal overhead -- we discard solutions such as compression for now),
+fragmentation must be eliminated. To eliminate fragmentation, simply place
+blocks in memory so that they die "in order" and can be immediately coalesced.
+This ideal is not achievable, but we believe we can find object attributes that
+correlate with deathtime and exploit them to approximate the ideal. Initially
+we believe birth time and type (as approximated by size) will be useful
attributes to explore.
-.anal.strategy.perform: To meet .req.attr.performance, the implementation of
+.anal.strategy.perform: To meet .req.attr.performance, the implementation of
.sol.strategy must be competitive in both time and space.
-.anal.strategy.risk: The current MPS segment substrate can cause internal
-fragmentation which an individual pool can do nothing about. We expect that
+.anal.strategy.risk: The current MPS segment substrate can cause internal
+fragmentation which an individual pool can do nothing about. We expect that
request.epcore.170193.sugg.loci will be implemented to remove this risk.
-.anal.policy: Deferred coalescing, when taken to the extreme will not minimize
-the memory consumption of a program, as no memory would ever be reused. Eager
-reuse appears to lead to more fragmentation, whereas delayed reuse appears to
-reduce fragmentation (paper.wil95(1)). The systems studied by Wilson did not
-directly address deferring reuse. Our proposed policy is to reuse blocks when
-they reach a (configurable) size. We believe that this policy along with the
-policy of segregating allocations by death time, will greatly reduce
-fragmentation. .anal.policy.risk: This policy could lead to pathologic behavior
+.anal.policy: Deferred coalescing, when taken to the extreme will not minimize
+the memory consumption of a program, as no memory would ever be reused. Eager
+reuse appears to lead to more fragmentation, whereas delayed reuse appears to
+reduce fragmentation (paper.wil95(1)). The systems studied by Wilson did not
+directly address deferring reuse. Our proposed policy is to reuse blocks when
+they reach a (configurable) size. We believe that this policy along with the
+policy of segregating allocations by death time, will greatly reduce
+fragmentation. .anal.policy.risk: This policy could lead to pathologic behavior
if allocations cannot be successfully segregated.
-.anal.policy.allocate.segregate: This policy has some similarities to
-CustomAlloc (paper.grun92(1)). CustomAlloc segregates objects by size classes,
-and then within those classes chooses a different allocator depending on
-whether that size class has a stable or unstable population. Classes with
-stable population recycle storage within the class, whereas classes with
-unstable populations return their storage to the general allocation pool for
-possible reuse by another class. CustomAlloc, however, requires profiling the
-application and tuning the allocator according to those profiles. Although we
+.anal.policy.allocate.segregate: This policy has some similarities to
+CustomAlloc (paper.grun92(1)). CustomAlloc segregates objects by size classes,
+and then within those classes chooses a different allocator depending on
+whether that size class has a stable or unstable population. Classes with
+stable population recycle storage within the class, whereas classes with
+unstable populations return their storage to the general allocation pool for
+possible reuse by another class. CustomAlloc, however, requires profiling the
+application and tuning the allocator according to those profiles. Although we
intend to support such tuning, we do not want to require it.
-.anal.policy.reallocate: For reallocation, .fun.suballocate can be used to free
-the remainder if a block is made smaller. Doing so will cause the freed block
-to obey .sol.policy.allocate [i.e., the freed block will not be treated
-specially, it will be subject to the normal policy on reuse]. Copying can be
-used if a block is made larger. paper.vo96(0) reports success in
-over-allocating a block the first time it is resized larger, presumably because
-blocks that are resized once tend to be resized again and over-allocating may
-avoid a subsequent copy. If each object that will be reallocated can be given
-its own allocation point until its final reallocation, the allocation point can
+.anal.policy.reallocate: For reallocation, .fun.suballocate can be used to free
+the remainder if a block is made smaller. Doing so will cause the freed block
+to obey .sol.policy.allocate [i.e., the freed block will not be treated
+specially, it will be subject to the normal policy on reuse]. Copying can be
+used if a block is made larger. paper.vo96(0) reports success in
+over-allocating a block the first time it is resized larger, presumably because
+blocks that are resized once tend to be resized again and over-allocating may
+avoid a subsequent copy. If each object that will be reallocated can be given
+its own allocation point until its final reallocation, the allocation point can
be used to hold released or spare storage.
-.anal.policy.size: We believe that this will take advantage of the underlying
-virtual memory system's ability to compact the physical memory footprint of the
-program by discarding free fragments that align with the virtual memory
-quantum. (In a VM system one can approximate compaction by sparse mapping. If
-every other page of a segment is unused, the unused pages can be unmapped,
+.anal.policy.size: We believe that this will take advantage of the underlying
+virtual memory system's ability to compact the physical memory footprint of the
+program by discarding free fragments that align with the virtual memory
+quantum. (In a VM system one can approximate compaction by sparse mapping. If
+every other page of a segment is unused, the unused pages can be unmapped,
freeing up physical memory that can be mapped to a new contiguous vm range.)
-.anal.mech.freelist: The literature (paper.grun92(1), paper.vo96(0)) indicate
-that .sol.freelist.cartesian-tree provides a space-efficient implementation at
-some cost in speed. .sol.freelist.splay-tree is faster but less
-space-efficient. .sol.freelist.bitmap is unstudied. Many of the faster
-allocators maintain caches of free blocks by size to speed allocation of
-"popular" sizes. We intend to initially explore not doing so, as we believe
-that policy ultimately leads to fragmentation by mixing objects of varying
-death times. Instead we intend to use a free list mechanism to support fast
+.anal.mech.freelist: The literature (paper.grun92(1), paper.vo96(0)) indicate
+that .sol.freelist.cartesian-tree provides a space-efficient implementation at
+some cost in speed. .sol.freelist.splay-tree is faster but less
+space-efficient. .sol.freelist.bitmap is unstudied. Many of the faster
+allocators maintain caches of free blocks by size to speed allocation of
+"popular" sizes. We intend to initially explore not doing so, as we believe
+that policy ultimately leads to fragmentation by mixing objects of varying
+death times. Instead we intend to use a free list mechanism to support fast
coalescing, deferring reuse of blocks until a minimum size has been reached.
-anal.mech.allocate.optimize-small: Wilson (paper.wil95(1)) notes that small
-blocks typically have short lifetimes and that overall performance is improved
-if you optimize the management of small blocks, e.g.,
-sol.mech.allocate.lookup-table for all small blocks. We believe that
+anal.mech.allocate.optimize-small: Wilson (paper.wil95(1)) notes that small
+blocks typically have short lifetimes and that overall performance is improved
+if you optimize the management of small blocks, e.g.,
+sol.mech.allocate.lookup-table for all small blocks. We believe that
.sol.mech.allocate.buffer does exactly that.
-.anal.mech.allocate.optimize-new: Wilson (paper.wil95(1)) reports some benefit
-from "preserving wilderness", that is, when a block of memory must be requested
-from the system to satisfy an allocation, only the minimum amount of that block
-is used, the remainder is preserved (effectively by putting it at the tail of
-the free list). This mechanism may or may not implement .sol.policy.allocate.
-We believe a better mechanism is to choose to preserve or not, based on
+.anal.mech.allocate.optimize-new: Wilson (paper.wil95(1)) reports some benefit
+from "preserving wilderness", that is, when a block of memory must be requested
+from the system to satisfy an allocation, only the minimum amount of that block
+is used, the remainder is preserved (effectively by putting it at the tail of
+the free list). This mechanism may or may not implement .sol.policy.allocate.
+We believe a better mechanism is to choose to preserve or not, based on
.sol.policy.allocate.
@@ -493,62 +493,62 @@ We believe a better mechanism is to choose to preserve or not, based on
IDEAS:
-.sol: Many solution ideas for manual management of variable-sized memory blocks
-are enumerated by paper.wil95(1). Here we list the most promising, and some of
+.sol: Many solution ideas for manual management of variable-sized memory blocks
+are enumerated by paper.wil95(1). Here we list the most promising, and some of
our own.
Strategy
-.sol.strategy: To run a program in the minimal required memory, with minimal
-overhead, utilize memory efficiently. Memory becomes unusable when fragmented.
-Strategy is to minimize fragmentation. So place blocks where they won't cause
+.sol.strategy: To run a program in the minimal required memory, with minimal
+overhead, utilize memory efficiently. Memory becomes unusable when fragmented.
+Strategy is to minimize fragmentation. So place blocks where they won't cause
fragmentation later.
-.sol.strategy.death: objects that will die together (in time) should be
+.sol.strategy.death: objects that will die together (in time) should be
allocated together (in space); thus they will coalesce, reducing fragmentation.
-.sol.strategy.death.birth: assume objects allocated near each other in time
+.sol.strategy.death.birth: assume objects allocated near each other in time
will have similar deathtimes (paper.beck82(0))
-.sol.strategy.death.type: assume objects of different type may have different
+.sol.strategy.death.type: assume objects of different type may have different
deathtimes, even if born together
.sol.strategy.death.predict: find and use program features to predict deathtimes
-.sol.strategy.reallocate: reallocation implies rebirth, or at least a change in
+.sol.strategy.reallocate: reallocation implies rebirth, or at least a change in
lifetime
-.sol.strategy.debug: as much of the debugging functionality as possible should
-be implemented as a generally available MPS utility; the pool will provide
-support for debugging that would be expensive or impossible to allocate outside
+.sol.strategy.debug: as much of the debugging functionality as possible should
+be implemented as a generally available MPS utility; the pool will provide
+support for debugging that would be expensive or impossible to allocate outside
the pool
Policy
-[Policy is an implementable decision procedure, hopefully approximating the
+[Policy is an implementable decision procedure, hopefully approximating the
strategy.]
.sol.policy.reuse: defer reusing blocks, to encourage coalescing
-.sol.policy.split: when a block is split to satisfy an allocation, use the
+.sol.policy.split: when a block is split to satisfy an allocation, use the
remainder as soon as possible
-.sol.policy.size: prevent .policy.reuse from consuming all of memory by
+.sol.policy.size: prevent .policy.reuse from consuming all of memory by
choosing a (coalesced) block for reuse when it reaches a minimum size
-.sol.policy.size.fixed: use the quantum of virtual memory (e.g., one page) as
+.sol.policy.size.fixed: use the quantum of virtual memory (e.g., one page) as
minimum size
.sol.policy.size.tune: allow tuning minimum size
.sol.policy.size.adapt: adaptively change minimum size
-.sol.policy.allocate: allocate objects with similar birthdate and lifetime
+.sol.policy.allocate: allocate objects with similar birthdate and lifetime
together
.sol.policy.allocate.segregate: segregate allocations by type
.sol.policy.allocate.segregate.size: use size as a substitute for type
.sol.policy.allocate.segregate.tune: permit tuning of segregation
.sol.policy.allocate.segregate.adapt: adaptively segregate allocations
-.sol.policy.reallocate: implement reallocation in a central mechanism outside
+.sol.policy.reallocate: implement reallocation in a central mechanism outside
of the pool, create a generic pool interface in support of same.
.sol.policy.debug: implement a pool debugging interface
-.sol.policy.debug.counters: implement debugging counters in the pool that are
+.sol.policy.debug.counters: implement debugging counters in the pool that are
queried with a generic interface
.sol.policy.debug.verify: implement debugging error returns on overlapping frees
@@ -559,75 +559,75 @@ Mechanism
.sol.mech.free-list: mechanisms that can be used to describe the free list
-.sol.mech.free-list.cartesian-tree: Using address and size as keys supports
-fast coalescing of adjacent blocks and fast searching for optimal-sized blocks.
-Unfortunately, because the shape of the tree is constrained by the second key,
-it can become unbalanced. This data structure is used in the SunOS 4.1 malloc
+.sol.mech.free-list.cartesian-tree: Using address and size as keys supports
+fast coalescing of adjacent blocks and fast searching for optimal-sized blocks.
+Unfortunately, because the shape of the tree is constrained by the second key,
+it can become unbalanced. This data structure is used in the SunOS 4.1 malloc
(paper.grun92(1)).
-.sol.mech.free-list.splay-tree: The amortized cost of a splay tree is
-competitive with balanced binary trees in the worst case, but can be
-significantly better for regular patterns of access because recently-accessed
-keys are moved to the root of the tree and hence can be re-accessed quickly.
-This data structure is used in the System Vr4 malloc (paper.vo96(0)). (For a
+.sol.mech.free-list.splay-tree: The amortized cost of a splay tree is
+competitive with balanced binary trees in the worst case, but can be
+significantly better for regular patterns of access because recently-accessed
+keys are moved to the root of the tree and hence can be re-accessed quickly.
+This data structure is used in the System Vr4 malloc (paper.vo96(0)). (For a
complete analysis of the splay tree algorithm time bounds see paper.st85(0).)
-.sol.mech.free-list.bit-map: Using address as an index and fix-sized blocks,
-the booleans can represent whether a block is free or not. Adjacent blocks can
-be used to construct larger blocks. Efficient algorithms for searching for runs
-in a vector are known. This data structure is used in many file system disk
+.sol.mech.free-list.bit-map: Using address as an index and fix-sized blocks,
+the booleans can represent whether a block is free or not. Adjacent blocks can
+be used to construct larger blocks. Efficient algorithms for searching for runs
+in a vector are known. This data structure is used in many file system disk
block managers.
-.sol.mech.free-list.refcount: A count of the number of allocated but not freed
-subblocks of a block can be used to determine when a block is available for
-reuse. This is an extremely compact data structure, but does not support
+.sol.mech.free-list.refcount: A count of the number of allocated but not freed
+subblocks of a block can be used to determine when a block is available for
+reuse. This is an extremely compact data structure, but does not support
subblock reuse.
-.sol.mech.free-list.hybrid: Bitmaps appear suited particularly to managing
-small, contiguous blocks. The tree structures appear suited particularly to
-managing varying-sized, discontiguous blocks. A refcount can be very efficient
-if objects can be placed accurately according to death time. A hybrid mechanism
+.sol.mech.free-list.hybrid: Bitmaps appear suited particularly to managing
+small, contiguous blocks. The tree structures appear suited particularly to
+managing varying-sized, discontiguous blocks. A refcount can be very efficient
+if objects can be placed accurately according to death time. A hybrid mechanism
may offer better performance for a wider range of situations.
.sol.mech.storage: methods that can be used to store the free list description
-.sol.mech.storage.in-band: The tree data structures are amenable to being
-stored in the free blocks themselves, minimizing the space overhead of
-management. To do so imposes a minimum size on free blocks and reduces the
+.sol.mech.storage.in-band: The tree data structures are amenable to being
+stored in the free blocks themselves, minimizing the space overhead of
+management. To do so imposes a minimum size on free blocks and reduces the
locality of the data structure.
-.sol.mech.storage.out-of-band: The bit-map data structure must be stored
+.sol.mech.storage.out-of-band: The bit-map data structure must be stored
separately.
-.sol.mech.desc: for an allocated block to be freed, its base and bound must be
+.sol.mech.desc: for an allocated block to be freed, its base and bound must be
known
-.sol.mech.desc.derived: Most clients can supply the base of the block. Some
+.sol.mech.desc.derived: Most clients can supply the base of the block. Some
clients can supply the bound.
-.sol.mech.desc.in-band: When the bound cannot be supplied, it can be stored as
-an in-band "header". If neither the base nor bound can be supplied (e.g., the
-client may only have an interior pointer to the block), a header and footer may
+.sol.mech.desc.in-band: When the bound cannot be supplied, it can be stored as
+an in-band "header". If neither the base nor bound can be supplied (e.g., the
+client may only have an interior pointer to the block), a header and footer may
be required.
-.sol.mech.desc.out-of-band: In un-tagged architectures, it may be necessary to
-store the header and footer out-of-band to distinguish them from client data.
-Out-of-band storage can improve locality and reliability. Any of the free-list
+.sol.mech.desc.out-of-band: In un-tagged architectures, it may be necessary to
+store the header and footer out-of-band to distinguish them from client data.
+Out-of-band storage can improve locality and reliability. Any of the free-list
structures can also be used to describe allocated blocks out-of-band.
-.sol.mech.desc.crossing-map: An alternative for untagged architectures is to
-store a "crossing map" which records an encoding of the start of objects and
+.sol.mech.desc.crossing-map: An alternative for untagged architectures is to
+store a "crossing map" which records an encoding of the start of objects and
then store the descriptive information in-band.
-.sol.mech.allocate: mechanisms that can be used to allocate blocks (these
+.sol.mech.allocate: mechanisms that can be used to allocate blocks (these
typically sit on top of a more general free-list manager)
-.sol.mech.allocate.lookup-table: Use a table of popular sizes to cache free
+.sol.mech.allocate.lookup-table: Use a table of popular sizes to cache free
blocks of those sizes.
-.sol.mech.allocate.buffer: Allocate from contiguous blocks using compare and
+.sol.mech.allocate.buffer: Allocate from contiguous blocks using compare and
increment.
-.sol.mech.allocate.optimize-small: Use a combination of techniques to ensure
-the time spent managing a block is small relative to the block's lifetime;
+.sol.mech.allocate.optimize-small: Use a combination of techniques to ensure
+the time spent managing a block is small relative to the block's lifetime;
assume small blocks typically have short lifetimes.
-.sol.mech.allocate.optimize-new: When "virgin" memory is acquired from the
-operating system to satisfy a request, try to preserve it (i.e., use only what
+.sol.mech.allocate.optimize-new: When "virgin" memory is acquired from the
+operating system to satisfy a request, try to preserve it (i.e., use only what
is necessary)
.sol.mech.allocate.segregate.size: use size as a substitute for type
-.sol.mech.reallocate: use .req.fun.suballocate to return unused memory when a
-block shrinks, but differentiate this from an erroneous overlapping free by
+.sol.mech.reallocate: use .req.fun.suballocate to return unused memory when a
+block shrinks, but differentiate this from an erroneous overlapping free by
using separate interfaces.
@@ -640,67 +640,67 @@ The implementation consists of the following separable modules:
Coalescing Block Structure
-.impl.c.cbs: The initial implementation will use .sol.mech.free-list.splay-tree
-and sol.mech.storage.out-of-band. For locality, this storage should be managed
-as a linked free list of splay nodes suballocated from blocks acquired from a
-pool shared by all CBS's. Must support creation and destruction of an empty
-tree. Must support search, insert and delete by key of type Addr. Must support
-finding left and right neighbors of a failed search for a key. Must support
-iterating over the elements of the tree with reasonable efficiency. Must
-support storing and retrieving a value of type Size associated with the key.
-Standard checking and description should be provided. See design.mps.splay(0)
+.impl.c.cbs: The initial implementation will use .sol.mech.free-list.splay-tree
+and sol.mech.storage.out-of-band. For locality, this storage should be managed
+as a linked free list of splay nodes suballocated from blocks acquired from a
+pool shared by all CBS's. Must support creation and destruction of an empty
+tree. Must support search, insert and delete by key of type Addr. Must support
+finding left and right neighbors of a failed search for a key. Must support
+iterating over the elements of the tree with reasonable efficiency. Must
+support storing and retrieving a value of type Size associated with the key.
+Standard checking and description should be provided. See design.mps.splay(0)
and design.mps.cbs(0).
Available Block Queue
-.impl.c.abq: The initial implementation will be a queue of fixed size
-(determined at pool creation time from the high water mark). Must support
-creation and destruction of an empty queue. Must support insertion at the head
-or tail of the queue (failing if full), peeking at the head of the queue, and
-removal of the head (failing if empty) or any element of the queue (found by a
+.impl.c.abq: The initial implementation will be a queue of fixed size
+(determined at pool creation time from the high water mark). Must support
+creation and destruction of an empty queue. Must support insertion at the head
+or tail of the queue (failing if full), peeking at the head of the queue, and
+removal of the head (failing if empty) or any element of the queue (found by a
search). Standard checking and description should be provided.
Pool Implementation
-.impl.c: The initial implementation will use the above modules to implement a
-buffered pool. Must support creation and destruction of the pool. Creation
-takes parameters: minimum size, mean size, maximum size, reserve depth and
-fragmentation limit. Minimum, mean, and maximum size are used to calculate the
-internal fill and reuse sizes. Reserve depth and mean size are used to
-calculate the ABQ high water mark. Fragmentation limit is used to set the CBS
-contingency mode. Must support buffer initialization, filling and emptying.
-Must support freeing. Standard checking and description should be provided.
-[Eventually, it should support scanning, so it can be used with collected
+.impl.c: The initial implementation will use the above modules to implement a
+buffered pool. Must support creation and destruction of the pool. Creation
+takes parameters: minimum size, mean size, maximum size, reserve depth and
+fragmentation limit. Minimum, mean, and maximum size are used to calculate the
+internal fill and reuse sizes. Reserve depth and mean size are used to
+calculate the ABQ high water mark. Fragmentation limit is used to set the CBS
+contingency mode. Must support buffer initialization, filling and emptying.
+Must support freeing. Standard checking and description should be provided.
+[Eventually, it should support scanning, so it can be used with collected
pools, but no manual pool currently does.]
-.impl.c.future: The implementation should not preclude "buffered free"
+.impl.c.future: The implementation should not preclude "buffered free"
(mail.ptw.1997-12-05.19-07(0), ff.) being added in the future.
-.impl.c.parameters: The pool parameters are calculated as follows from the
-input parameters: minimum, mean, and maximum size are taked directly from the
-parameters. .impl.c.parameter.fill-size: The fill size is set to the maximum
-size times the reciprocal of the fragmentation limit, aligned to the arena
-alignment. .imple.c.parameter.reuse-size: The reuse size is set to twice the
-fill size (see .arch.abq.return.segment, .impl.c.free.merge.segment).
-.impl.c.parameter.abq-limit: The ABQ high-water limit is set to the reserve
-depth times the mean size (that is, the queue should hold as many reuse blocks
-as would take to cover the population hysteresis if the population consisted
-solely of mean-sized blocks, see .arch.abq.high-water).
-.impl.c.parameter.avail-limit: The CBS high-water limit is implemented by
-comparing the available free space to an "available limit". The available
-limit is updated each time a segment is allocated from or returned to the arena
-by setting it to the total size of the pool times the fragmentation limit
+.impl.c.parameters: The pool parameters are calculated as follows from the
+input parameters: minimum, mean, and maximum size are taked directly from the
+parameters. .impl.c.parameter.fill-size: The fill size is set to the maximum
+size times the reciprocal of the fragmentation limit, aligned to the arena
+alignment. .imple.c.parameter.reuse-size: The reuse size is set to twice the
+fill size (see .arch.abq.return.segment, .impl.c.free.merge.segment).
+.impl.c.parameter.abq-limit: The ABQ high-water limit is set to the reserve
+depth times the mean size (that is, the queue should hold as many reuse blocks
+as would take to cover the population hysteresis if the population consisted
+solely of mean-sized blocks, see .arch.abq.high-water).
+.impl.c.parameter.avail-limit: The CBS high-water limit is implemented by
+comparing the available free space to an "available limit". The available
+limit is updated each time a segment is allocated from or returned to the arena
+by setting it to the total size of the pool times the fragmentation limit
divide vy 100 (see .arch.contingency.fallback).
.impl.c.ap.fill: An AP fill request will be handled as follows:
-o If the request is larger than fill size, attempt to request a segment from
+o If the request is larger than fill size, attempt to request a segment from
the arena sufficient to satisfy the request
o Use any previously returned splinter (from .impl.c.ap.empty), if large enough
-o Attempt to retrieve a free block from the head of the ABQ (removing it from
+o Attempt to retrieve a free block from the head of the ABQ (removing it from
ABQ and CBS if found).
-o If above fragmentation limit, attempt to find a block on the CBS, using
+o If above fragmentation limit, attempt to find a block on the CBS, using
oldest-fit search
o Attempt to request a segment of fill size from the arena
o Attempt to find a block on the CBS, using oldest-fit search
@@ -708,57 +708,57 @@ o Otherwise, fail
.impl.c.ap.empty: An AP empty request will be handled as follows:
o If remaining free is less than min size, return it to the CBS
-o If the remaining free is larger than any previous splinter, return that
+o If the remaining free is larger than any previous splinter, return that
splinter to the CBS and save this one for use by a subsequent fill
o Otherwise return the remaining block to the CBS
-.impl.c.free: When blocks are returned to the CBS a search is made for adjacent
-blocks that can be merged. If not, the block is simply inserted in the CBS. If
-a merge occurs between two blocks on the ABQ, the ABQ must be adjusted to
-reflect the merge. .impl.c.free.exception: Exceptional blocks are returned
+.impl.c.free: When blocks are returned to the CBS a search is made for adjacent
+blocks that can be merged. If not, the block is simply inserted in the CBS. If
+a merge occurs between two blocks on the ABQ, the ABQ must be adjusted to
+reflect the merge. .impl.c.free.exception: Exceptional blocks are returned
directly to the arena.
-.impl.c.free.merge: If a merge occurs and the merged block is larger than reuse
+.impl.c.free.merge: If a merge occurs and the merged block is larger than reuse
size:
-o If the ABQ is full, remove the block at the head of the ABQ from the ABQ and
+o If the ABQ is full, remove the block at the head of the ABQ from the ABQ and
CBS and return it to the arena(*)
-o Insert the newly merged block at the tail of the ABQ, leaving it on the CBS
+o Insert the newly merged block at the tail of the ABQ, leaving it on the CBS
for further merging
-.impl.c.free.merge.segment: (*) Merged blocks may not align with arena
-segments. If necessary, return the interior segments of a block to the arena
-and return the splinters to the CBS. .impl.c.free.merge.segment.reuse: If the
-reuse size (the size at which blocks recycle from the CBS to the ABQ) is at
-least twice the fill size (the size of segments the pool allocates from the
-arena), we can guarantee that there will always be a returnable segment in
-every ABQ block. .impl.c.free.merge.segment.overflow: If the reuse size is set
-smaller (see .arch.adapt), there may not be a returnable segment in an ABQ
-block, in which case the ABQ has "overflowed". Whenever this occurs, the ABQ
+.impl.c.free.merge.segment: (*) Merged blocks may not align with arena
+segments. If necessary, return the interior segments of a block to the arena
+and return the splinters to the CBS. .impl.c.free.merge.segment.reuse: If the
+reuse size (the size at which blocks recycle from the CBS to the ABQ) is at
+least twice the fill size (the size of segments the pool allocates from the
+arena), we can guarantee that there will always be a returnable segment in
+every ABQ block. .impl.c.free.merge.segment.overflow: If the reuse size is set
+smaller (see .arch.adapt), there may not be a returnable segment in an ABQ
+block, in which case the ABQ has "overflowed". Whenever this occurs, the ABQ
will be refilled by searching the CBS for dropped reusable blocks when needed.
-.impl.c.free.merge.segment.risk: The current segment structure does not really
-support what we would like to do. Loci should do better: support reserving
-contiguous address space and mapping/unmapping any portion of that address
+.impl.c.free.merge.segment.risk: The current segment structure does not really
+support what we would like to do. Loci should do better: support reserving
+contiguous address space and mapping/unmapping any portion of that address
space.
-.impl.c.free.merge.alternative: Alternatively, if the MPS segment substrate
-permitted mapping/unmapping of pages, the pool could use very large segments
+.impl.c.free.merge.alternative: Alternatively, if the MPS segment substrate
+permitted mapping/unmapping of pages, the pool could use very large segments
and map/unmap pages as needed.
AP Dispatch
-.impl.c.multiap: The initial implementation will be a glue layer that selects
-among several AP's for allocation according to the predicted deathtime (as
-approximated by size) of the requested allocation. Each AP will be filled from
-a pool instance tuned to the range of object sizes expected to be allocated
-from that AP. [For bonus points provide an interface that creates a batch of
-pools and AP's according to some set of expected object sizes. Eventually
+.impl.c.multiap: The initial implementation will be a glue layer that selects
+among several AP's for allocation according to the predicted deathtime (as
+approximated by size) of the requested allocation. Each AP will be filled from
+a pool instance tuned to the range of object sizes expected to be allocated
+from that AP. [For bonus points provide an interface that creates a batch of
+pools and AP's according to some set of expected object sizes. Eventually
expand to understand object lifetimes and general lifetime prediction keys.]
-impl.c.multiap.sample-code: This glue code is not properly part of the pool or
-MPS interface. It is a layer on top of the MPS interface, intended as sample
-code for unsophisticated clients. Sophisticated clients will likely want to
+impl.c.multiap.sample-code: This glue code is not properly part of the pool or
+MPS interface. It is a layer on top of the MPS interface, intended as sample
+code for unsophisticated clients. Sophisticated clients will likely want to
choose among multiple AP's more directly.
@@ -766,27 +766,27 @@ choose among multiple AP's more directly.
TESTING:
-.test.component: Components .impl.c.splay, .impl.c.cbs, and .impl.c.abq will be
+.test.component: Components .impl.c.splay, .impl.c.cbs, and .impl.c.abq will be
subjected to individual component tests to verify their functionality.
-.test.regression: All tests applied to poolmv (design.mps.poolmv(0)) and
-poolepdl (design.mps.poolepdl(0)) will be applied to poolmv2 to ensure that mv2
+.test.regression: All tests applied to poolmv (design.mps.poolmv(0)) and
+poolepdl (design.mps.poolepdl(0)) will be applied to poolmvt to ensure that mvt
is at least as functional as the pools it is replacing.
-.test.qa: Once poolmv2 is integrated into the MPS, the standard MPS QA tests
-will be applied to poolmv2 prior to each release.
+.test.qa: Once poolmvt is integrated into the MPS, the standard MPS QA tests
+will be applied to poolmvt prior to each release.
-.test.customer: Customer acceptance tests will be performed on a per-customer
-basis before release to that customer (cf., proc.release.epcore(2).test)
+.test.customer: Customer acceptance tests will be performed on a per-customer
+basis before release to that customer (cf., proc.release.epcore(2).test)
TEXT:
Possible tweaks (from mail.pekka.1998-04-15.13-10(0)):
-1. Try to coalesce splinters returned from AP's with the front (or any) block
+1. Try to coalesce splinters returned from AP's with the front (or any) block
on the ABQ.
-2. Sort ABQ in some other way to minimize splitting/splinters. E.g., proximity
+2. Sort ABQ in some other way to minimize splitting/splinters. E.g., proximity
to recently allocated blocks.
diff --git a/mps/manual/index.html b/mps/manual/index.html
index 440d2ef4b2e..67d5ce9b699 100644
--- a/mps/manual/index.html
+++ b/mps/manual/index.html
@@ -39,7 +39,7 @@
This is the catalogue of manuals for the Perforce Defect Tracking Integration product.
+This is the catalogue of manuals for the Memory Pool System product.
This document will be modified as the product is developed.
@@ -102,6 +102,16 @@ +This is the reference manual for the Memory Pool System.
+ +This document is quite incomplete. At present it consists +simply of reference descriptions of a number of MPS symbols (section 3). Many MPS symbols are not described +here (see section 4 for a list). There are +also no overview or protocol-oriented sections.
+MPS_ARCH_AL MPS_ARCH_M6 mps_fix MPS_FIX1 MPS_FIX12 MPS_RES_PARAM MPS_RM_CONST MPS_RM_PROT MPS_RM_PROT_INNER mps_sac_alloc MPS_SAC_ALLOC_FAST MPS_SAC_CLASS_LIMIT mps_arena_spare_commit_limit mps_arena_spare_commit_limit_set mps_arena_spare_committed mps_assert_default mps_assert_install mps_assert_t mps_bool_t mps_class_amc mps_class_epdl_debug mps_class_epdr_debug mps_class_mv2 mps_class_mvff mps_class_snc mps_class_mvt mps_class_t mps_finalize mps_fmt_A_s mps_lib_memcpy mps_lib_memset mps_lib_telemetry_control mps_message_collection_stats_condemned_size mps_message_collection_stats_live_size mps_message_sollection_stats_not_condemned_size mps_message_discard mps_message_finalization_ref mps_message_gc_condemned_size mps_message_queue_type mps_message_t mps_message_type mps_message_type_collection_stats mps_message_type_disable mps_message_type_enable mps_message_type_finalization mps_root_create_table_masked mps_root_scan_t mps_roots_stepper_t mps_sac_classes_s mps_sac_class_s mps_sac_create mps_sac_destroy mps_sac_flush mps_telemetry_flush mps_telemetry_intern mps_telemetry_label mps_thr_t MPS_ARCH_AL MPS_ARCH_AL MPS_ARCH_AL is a C preprocessor macro that indicates, if defined, that the targetprocessor architecture of the compilation is a member of the DEC Alpha family. It is defined, ifappropriate, by "mpstd.h".
MPS_ARCH_AL is a C
+preprocessor macro that indicates, if defined, that the target
+processor architecture of the compilation is a member of the DEC Alpha
+family. It is defined, if appropriate, by "mpstd.h".
None.
+None.
-mpstd.h.
+mpstd.h.
-See summary.
+See summary.
-
#ifdef MPS_ARCH_AL
@@ -248,129 +251,104 @@ typedef struct RegisterFile {
-Not applicable.
+Not applicable.
- MPS_PF_*, MPS_OS_*, MPS_BUILD_*, MPS_ARCH_*
+MPS_PF_*,
-
MPS_OS_*,
+MPS_BUILD_*,
-MPS_ARCH_*
-I'm not sure that the user ought to be using these symbols. GavinM 1997-05-01
+MPS_ARCH_M6 I'm not sure that the user ought to be using these symbols. GavinM +1997-05-01
- +mps_fix MPS_ARCH_M6 is a C preprocessor macro that indicates, if defined, that the targetprocessor architecture of the compilation is a member of the Motorola 68000 family. It is defined, if appropriate, by "mpstd.h".
None.
+The function mps_fix is the
+part of the scanning protocol used to indicate references to the
+MPS. It may only be called from within a scanning function.
msptd.h.
+Scanning.
-See summary.
+mps_res_t mps_fix(mps_ss_t mps_ss, mps_addr_t *ref_io)
-#ifdef MPS_ARCH_M6 ++Arguments
-typedef struct RegisterFile { - unsigned long d[8]; - unsigned long a[8]; - unsigned long usp, msp, isp, pc, sr; -} RegisterFile; +-#endif /* MPS_ARCH_M6 */ -
mps_ssthe scan state argument that was passed to the +scanning function
ref_io a pointer to a reference within the object
+being scanned
Not applicable.
+Returns a result code, see ERROR HANDLING.
+If the reference rank of the object being scanned is not MPS_RANK_AMBIG then the reference
+pointed to by ref_io may be modified by mps_fix.
MPS_PF_*, MPS_OS_*, MPS_BUILD_*, MPS_ARCH_*
mps.h
-mps_fix This function is the part of the scanning protocol used to indicate
+references. Scanning functions apply it, or MPS_FIX12, or MPS_FIX1 and MPS_FIX2 tothe references in the object
+being scanned.
It may only be called from within a scanning function. If it is
+called within a MPS_SCAN_BEGIN block, MPS_FIX_CALL must be used (yes,
+really).
This function does not perform any particular operation. The MPS
+may call scanning functions for a number of reasons, and mps_fix may take different actions
+depending on those reasons.
The function mps_fix is the part of the scanning protocol used to indicate references to theMPS. It may only be called from within a scanning function.
Scanning.
- - - mps_res_t mps_fix(mps_ss_t mps_ss, mps_addr_t *ref_io)
mps_ss the scan state argument that was passed to the scanning function
ref_io a pointer to a reference within the object being scanned
- - -Returns a result code, see ERROR HANDLING.
- - If the reference rank of the object being scanned is not MPS_RANK_AMBIG thenthe reference pointed to by ref_io may be modified by mps_fix.
mps.h
- - - This function is the part of the scanning protocol used to indicate references. Scanningfunctions apply it, or MPS_FIX12, or MPS_FIX1 and MPS_FIX2 tothe references in the object being scanned.
It may only be called from within a scanning function. If it is called within a MPS_SCAN_BEGIN block, MPS_FIX_CALL must be used (yes, really).
This function does not perform any particular operation. The MPS may call scanning functionsfor a number of reasons, and mps_fix may take different actions depending on thosereasons.
mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length) @@ -389,64 +367,113 @@ mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length)-
The function returns MPS_RES_OK if it was successful, in which case the scanning functionshould continue to scan the rest of the object, applying mps_fix to the remaining references. If mps_fix returns a value other than MPS_RES_OK, the scanning function must return that value, and mayreturn without scanning further references. Generally, it is better if it returns as soon aspossible.
The function returns MPS_RES_OK if it was successful, in
+which case the scanning function should continue to scan the rest of
+the object, applying mps_fix to
+the remaining references. If mps_fix returns a value other than MPS_RES_OK, the scanning function must
+return that value, and may return without scanning further
+references. Generally, it is better if it returns as soon
+as possible.
mps_ss_t, mps_root_scan_t, mps_fmt_scan_t, mps_reg_scan_t, MPS_SCAN_BEGIN, MPS_SCAN_END, MPS_FIX12, MPS_FIX1, MPS_FIX2, MPS_FIX_CALL
+
+mps_ss_t,
+
+mps_root_scan_t,
+
+mps_fmt_scan_t,
+
+mps_reg_scan_t,
+
+MPS_SCAN_BEGIN,
+
+MPS_SCAN_END,
+
+MPS_FIX12,
+
+MPS_FIX1,
+
+MPS_FIX2,
+
+MPS_FIX_CALL
+
+
MPS_FIX1 MPS_FIX1 The macro MPS_FIX1 is the part of the scanning protocol used to indicate references to theMPS. It may only be used from within MPS_SCAN_BEGIN and MPS_SCAN_END.
The macro MPS_FIX1 is the part
+of the scanning protocol used to indicate references to the MPS. It
+may only be used from within MPS_SCAN_BEGIN and MPS_SCAN_END.
Format.
+Format.
- MPS_FIX1(mps_ss, ref)
MPS_FIX1(mps_ss, ref)
mps_ss the scan state argument that was passed to the scanning function
mps_ss the scan state argument
+that was passed to the scanning function
ref a reference within the object being scanned, type mps_addr_t
ref a reference within the object being scanned, type
+mps_addr_t
Returns a truth value (type mps_bool_t) indicating whether the reference is likely to beinteresting to the MPS.
Returns a truth value (type mps_bool_t) indicating whether the
+reference is likely to be interesting to the MPS.
mps.h.
+mps.h.
- MPS_FIX1 and MPS_FIX2 are a trick to speed up scanning by splitting MPS_FIX12 into two macros. MPS_FIX1 is a fast test to see if the reference is likely to be interesting to the MPS; ifit returns false, the scanner can proceed to the next reference. If it returns true, the scan methodmust invoke MPS_FIX2, which does the actual fixing.
MPS_FIX1 and MPS_FIX2 are a trick to speed up scanning
+by splitting MPS_FIX12 into two
+macros. MPS_FIX1 is a fast test
+to see if the reference is likely to be interesting to the MPS; if it
+returns false, the scanner can proceed to the next reference. If it
+returns true, the scan method must invoke MPS_FIX2, which does the actual
+fixing.
This macro may only be used in code textually between MPS_SCAN_BEGIN and MPS_SCAN_END.
This macro may only be used in code textually between MPS_SCAN_BEGIN and MPS_SCAN_END.
mps_res_t scan_array(mps_ss_t ss, Array object, size_t length) @@ -474,65 +501,105 @@ mps_res_t scan_array(mps_ss_t ss, Array object, size_t length)-
MPS_FIX12, MPS_FIX2, mps_fix, mps_ss_t, mps_root_scan_t, mps_fmt_scan_t, mps_reg_scan_t, MPS_SCAN_BEGIN, MPS_SCAN_END, MPS_FIX_CALL
+
+MPS_FIX12,
+
+MPS_FIX2,
+
+mps_fix,
+
+mps_ss_t,
+
+mps_root_scan_t,
+
+mps_fmt_scan_t,
+
+mps_reg_scan_t,
+
+MPS_SCAN_BEGIN,
+
+MPS_SCAN_END,
+
+MPS_FIX_CALL
MPS_FIX12 MPS_FIX12 The macro MPS_FIX12 is the part of the scanning protocol used to indicatereferences to the MPS. It may only be used from within MPS_SCAN_BEGIN and MPS_SCAN_END.
The macro MPS_FIX12 is the
+part of the scanning protocol used to indicate references to the
+MPS. It may only be used from within MPS_SCAN_BEGIN and MPS_SCAN_END.
Scanning.
+Scanning.
- MPS_FIX12(mps_ss, ref_io);
MPS_FIX12(mps_ss, ref_io);
mps_ss the scan state argument that was passed to the scanning function
mps_ss the scan state argument that was passed to the scanning function
ref_io a pointer to a reference within the object being scanned, type mps_addr_t *
ref_io a pointer to a reference within the object
+being scanned, type mps_addr_t *
Returns a result code, see ERROR HANDLING.
+Returns a result code, see ERROR HANDLING.
- If the reference rank of the object being scanned is not MPS_RANK_AMBIG then the reference pointed to by ref_io may be modified by MPS_FIX12.
If the reference rank of the object being scanned is not MPS_RANK_AMBIG then the reference
+pointed to by ref_io may be modified by MPS_FIX12.
mps.h
+mps.h
- This macro is used in the scanning protocol to indicate references. Scanning functions apply it or mps_fix or MPS_FIX1 and MPS_FIX2 to the references in the object being scanned.
This macro is used in the scanning protocol to indicate
+references. Scanning functions apply it or mps_fix or MPS_FIX1 and MPS_FIX2 to the references in the object
+being scanned.
It may only be used in code textually between MPS_SCAN_BEGIN and MPS_SCAN_END.
It may only be used in code textually between MPS_SCAN_BEGIN and MPS_SCAN_END.
It is permitted for the reference (*ref_io) to point outside the MPS arena being scanned, or to be NULL; in that case, it is simply ignored.
It is permitted for the reference (*ref_io) to point
+outside the MPS arena being scanned, or to be NULL; in that case, it
+is simply ignored.
This macro does not perform any particular operation. The MPS may call scanning functions for a number of reasons, and MPS_FIX may take different actions depending on those reasons.
This macro does not perform any particular operation. The MPS may
+call scanning functions for a number of reasons, and MPS_FIX may take different actions
+depending on those reasons.
mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length) {
@@ -553,73 +620,110 @@ mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length) {
- The macro returns MPS_RES_OK if it was successful, in which case the scanningfunction should continue to scan the rest of the object, fixing the remaining references. If MPS_FIX12 returns a value other than MPS_RES_OK, the scanning functionmust return that value, and may return without scanning further references. Generally, it is better if it returns as soon as possible.
The macro returns MPS_RES_OK
+if it was successful, in which case the scanning function should
+continue to scan the rest of the object, fixing the remaining
+references. If MPS_FIX12 returns
+a value other than MPS_RES_OK,
+the scanning function must return that value, and may return without
+scanning further references. Generally, it is better if it returns as
+soon as possible.
mps_fix, mps_ss_t, mps_root_scan_t, mps_fmt_scan_t, mps_reg_scan_t, MPS_SCAN_BEGIN, MPS_SCAN_END, MPS_FIX1, MPS_FIX2, MPS_FIX_CALL
+
+mps_fix,
+
+mps_ss_t,
+
+mps_root_scan_t,
+
+mps_fmt_scan_t,
+
+mps_reg_scan_t,
+
+MPS_SCAN_BEGIN,
+
+MPS_SCAN_END,
+
+MPS_FIX1,
+
+MPS_FIX2,
+
+MPS_FIX_CALL
MPS_FIX12 is so called, as it basically performs the work of both MPS_FIX1 and MPS_FIX2.
MPS_FIX12 is so called, as it basically performs the work of both MPS_FIX1 and MPS_FIX2.
MPS_FIX2 MPS_FIX2 The macro MPS_FIX2, together with MPS_FIX1, is the part of the scanning protocol used to indicate references to the MPS. It may only be used from within MPS_SCAN_BEGIN and MPS_SCAN_END.
The macro MPS_FIX2, together with MPS_FIX1, is the part of the scanning protocol used to indicate references to the MPS. It may only be used from within MPS_SCAN_BEGIN and MPS_SCAN_END.
Scanning.
+Scanning.
- MPS_FIX2(mps_ss, ref_io);
MPS_FIX2(mps_ss, ref_io);
mps_ss the scan state argument that was passed to the scanning function
mps_ss the scan state argument
+that was passed to the scanning function
ref_io a pointer to a reference within the object being scanned, type mps_addr_t *
ref_io a pointer to a reference within the object
+being scanned, type mps_addr_t *
Returns a result code, see ERROR HANDLING.
+Returns a result code, see ERROR HANDLING.
- If the reference rank of the object being scanned is not MPS_RANK_AMBIG then the reference pointed to by ref_io may be modified by MPS_FIX2.
If the reference rank of the object being scanned is not MPS_RANK_AMBIG then the reference pointed to by ref_io may be modified by MPS_FIX2.
mps.h.
+mps.h.
- MPS_FIX1 and MPS_FIX2 are a trick to speed up scanning by splitting MPS_FIX12 into two macros. MPS_FIX1 is a fast test to see if the reference is likely to be interesting to the MPS; ifit returns false, the scanner can proceed to the next reference. If it returns true, the scan methodmust invoke MPS_FIX2, which does the actual fixing.
MPS_FIX1 and MPS_FIX2 are a trick to speed up scanning
+by splitting MPS_FIX12 into two
+macros. MPS_FIX1 is a fast test
+to see if the reference is likely to be interesting to the MPS; if it
+returns false, the scanner can proceed to the next reference. If it
+returns true, the scan method must invoke MPS_FIX2, which does the actual
+fixing.
This macro may only be used in code textually between MPS_SCAN_BEGIN and MPS_SCAN_END.
This macro may only be used in code textually between MPS_SCAN_BEGIN and MPS_SCAN_END.
This macro does not perform any particular operation. The MPS may call scanning functions for a number of reasons, and MPS_FIX2 may take different actions depending on those reasons.
This macro does not perform any particular operation. The MPS may call scanning functions for a number of reasons, and MPS_FIX2 may take different actions depending on those reasons.
mps_res_t scan_array(mps_ss_t ss, Array object, size_t length) {
@@ -646,64 +750,104 @@ mps_res_t scan_array(mps_ss_t ss, Array object, size_t length) {
- The macro returns MPS_RES_OK if it was successful, in which case the scanningfunction should continue to scan the rest of the object, fixing the remaining references. IfMPS_FIX2 returns a value other than MPS_RES_OK, the scanning functionmust return that value, and may return without scanning further references. Generally, it is betterif it returns as soon as possible.
The macro returns MPS_RES_OK
+if it was successful, in which case the scanning function should
+continue to scan the rest of the object, fixing the remaining
+references. IfMPS_FIX2 returns a
+value other than MPS_RES_OK,
+the scanning function must return that value, and may return without
+scanning further references. Generally, it is better if it returns as
+soon as possible.
MPS_FIX12, MPS_FIX1, mps_fix, mps_ss_t, mps_root_scan_t, mps_fmt_scan_t, mps_reg_scan_t, MPS_SCAN_BEGIN, MPS_SCAN_END, MPS_FIX_CALL
+
+MPS_FIX12,
+
+MPS_FIX1,
+
+mps_fix,
+
+mps_ss_t,
+
+mps_root_scan_t,
+
+mps_fmt_scan_t,
+
+mps_reg_scan_t,
+
+MPS_SCAN_BEGIN,
+
+MPS_SCAN_END,
+
+MPS_FIX_CALL
MPS_FIX_CALL MPS_FIX_CALL MPS_FIX_CALL is used to call a scanning function from within MPS_SCAN_BEGIN and MPS_SCAN_END.
MPS_FIX_CALL is used to call a scanning function from within MPS_SCAN_BEGIN and MPS_SCAN_END.
Scanning.
+Scanning.
- MPS_FIX_CALL(ss, call);
MPS_FIX_CALL(ss, call);
mps_ss the scan state argument that was passed to the scanning function
mps_ss the scan state argument that was passed to the scanning function
call an expression (containing a call to a scanning function)
+call an expression (containing a call to a scanning function)
None.
+None.
-mps.h.
+mps.h.
- When using the MPS_SCAN_BEGIN and MPS_SCAN_END macros, you can't directly call a separatefunction to do part of the scanning, because between MPS_SCAN_BEGIN and MPS_SCAN_END, thescan_state parameter is in a strange state, so you shouldn't pass it as an argument to a function.However, if really want to do it (say, because you have an embedded structure shared between twoscan methods), you can pass the scan state correctly using MPS_FIX_CALL.
When using the MPS_SCAN_BEGIN and MPS_SCAN_END macros, you can't
+directly call a separate function to do part of the scanning, because
+between MPS_SCAN_BEGIN and
+MPS_SCAN_END, the
+scan_state parameter is in a strange state, so you
+shouldn't pass it as an argument to a function. However, if you
+really want to do it (say, because you have an embedded structure
+shared between two scan methods), you can pass the scan state
+correctly using MPS_FIX_CALL.
Note that you must receive the return value of the scanning function called, and pass it onas described in the ERROR HANDLING section.
+Note that you must receive the return value of the scanning +function called, and pass it on as described in the ERROR HANDLING +section.
-mps_res_t foo_scan(mps_ss_t scan_state, mps_addr_t base, mps_addr_t limit) @@ -728,40 +872,73 @@ mps_res_t foo_scan(mps_ss_t scan_state, mps_addr_t base, mps_addr_t limit)-
You must receive the return value of the function called. Like all scanning functions, itreturns MPS_RES_OK if it was successful, in which case the caller should continue toscan the rest of the object, fixing the remaining references. If it returns a value other thanMPS_RES_OK, the calling scanning function must return that value, and may returnwithout scanning further references. Generally, it is better if it returns as soon as possible.
You must receive the return value of the function called. Like all
+scanning functions, itreturns MPS_RES_OK if it was successful, in
+which case the caller should continue to scan the rest of the object,
+fixing the remaining references. If it returns a value other
+thanMPS_RES_OK, the calling
+scanning function must return that value, and may return without
+scanning further references. Generally, it is better if it returns as
+soon as possible.
mps_fix, mps_ss_t, mps_root_scan_t, mps_fmt_scan_t, mps_reg_scan_t, MPS_SCAN_BEGIN, MPS_SCAN_END, MPS_FIX12, MPS_FIX1, MPS_FIX2
+
+mps_fix,
+
+mps_ss_t,
+
+mps_root_scan_t,
+
+mps_fmt_scan_t,
+
+mps_reg_scan_t,
+
+MPS_SCAN_BEGIN,
+
+MPS_SCAN_END,
+
+MPS_FIX12,
+
+MPS_FIX1,
+
+MPS_FIX2
MPS_RES_LIMIT MPS_RES_LIMIT MPS_RES_LIMIT is a result code, indicating that an operation failed because an internallimit was reached.
MPS_RES_LIMIT is a result
+code, indicating that an operation failed because an internal limit
+was reached.
mps.h.
+mps.h.
-This result code is returned if an operation could not be completed as requested because ofan internal limitation of the MPS. The precise meaning depends on the function that returned thecode. Refer to the documentation of that function for details.
+This result code is returned if an operation could not be completed +as requested because of an internal limitation of the MPS. The precise +meaning depends on the function that returned the code. Refer to the +documentation of that function for details.
-
switch(mps_alloc(&(mps_addr_t)object, pool, size)) {
@@ -775,85 +952,109 @@ mps_res_t foo_scan(mps_ss_t scan_state, mps_addr_t base, mps_addr_t limit)
-
+
+mps_res_t
MPS_RES_MEMORY MPS_RES_MEMORY MPS_RES_MEMORY is a result code, indicating that an operation failed because it ran out of memory.
MPS_RES_MEMORY is a result code, indicating that an operation failed because it ran out of memory.
All.
+All.
-mps.h
+mps.h
-This result code is returned if an operation could not be completed because there wasn'tenough memory available. You need to deallocate something or allow the garbage collector to reclaimsomething to free enough memory, or expand the arena (if you're using an arena where that does nothappen automatically).
+This result code is returned if an operation could not be completed +because there wasn't enough memory available. You need to deallocate +something or allow the garbage collector to reclaim something to free +enough memory, or expand the arena (if you're using an arena for which +that does not happen automatically).
- Note that failing to acquire enough memory because the arena commit limit would have beenexceeded is indicated by returning MPS_RES_COMMIT_LIMIT, not MPS_RES_MEMORY.
Note that failing to acquire enough memory because the arena commit
+limit would have been exceeded is indicated by returning MPS_RES_COMMIT_LIMIT, not
+MPS_RES_MEMORY.
Note that running out of address space (as might happen in virtual memory systems) isindicated by returning MPS_RES_RESOURCE, not MPS_RES_MEMORY.
Note that running out of address space (as might happen in virtual
+memory systems) is indicated by returning MPS_RES_RESOURCE, not MPS_RES_MEMORY.
mps_res_t, MPS_RES_RESOURCE, MPS_RES_COMMIT_LIMIT
+
+mps_res_t,
+
+MPS_RES_RESOURCE,
+
+MPS_RES_COMMIT_LIMIT
MPS_RES_PARAM MPS_RES_PARAM MPS_RES_PARAM is a result code, indicating that an operation failed because an invalidparameter was specified for the operation.
MPS_RES_PARAM is a result
+code, indicating that an operation failed because an invalid parameter
+was specified for the operation.
All.
+All.
-mps.h.
+mps.h.
-This result code is returned if an operation could not be completed as requested because aninvalid parameter was specified for the operation. The precise meaning depends on the function thatreturned the code. Refer to the documentation of that function for details.
+This result code is returned if an operation could not be completed +as requested because an invalid parameter was specified for the +operation. The precise meaning depends on the function that returned +the code. Refer to the documentation of that function for details.
-
switch( res = mps_pool_create_v(&pool, arena, class, params) ) {
@@ -867,53 +1068,69 @@ mps_res_t foo_scan(mps_ss_t scan_state, mps_addr_t base, mps_addr_t limit)
-
+
+mps_res_t
MPS_RM_CONST MPS_RM_CONST MPS_RM_CONST is a constant used in root mode arguments to indicate constant roots.
MPS_RM_CONST is a constant used in root mode arguments to indicate constant roots.
Root.
+Root.
-Integral constant.
+Integral constant.
-mps.h
+mps.h
- MPS_RM_CONST is a preprocessor macro defining a constant that can be OR'ed to otherMPS_RM_* constants, and passed as the root mode argument to certain root creation functions (mps_root_create, mps_root_create_fmt, mps_root_create_table, mps_root_create_table_masked,mps_root_create_reg ).
MPS_RM_CONST is a
+preprocessor macro defining a constant that can be OR'ed with other
+MPS_RM_* constants, and passed as the root mode argument
+to certain root creation functions (mps_root_create, mps_root_create_fmt, mps_root_create_table,
+mps_root_create_table_masked,
+mps_root_create_reg
+).
Passing MPS_RM_CONST means that the client program will not change the root after it isdeclared. I.e., scanning the root will produce the same set of references every time. Furthermore,for formatted and table roots, the client program may not write to the root at all.
Passing MPS_RM_CONST means
+that the client program will not change the root after it is
+declared. I.e., scanning the root will produce the same set of
+references every time. Furthermore, for formatted and table roots, the
+client program may not write to the root at all.
res = mps_root_create_table(&mmRoot, @@ -925,57 +1142,83 @@ mps_res_t foo_scan(mps_ss_t scan_state, mps_addr_t base, mps_addr_t limit)-
mps_root_create, mps_root_create_fmt, mps_root_create_table, mps_root_create_table_masked, mps_root_create_reg
+
+mps_root_create,
+
+mps_root_create_fmt,
+
+mps_root_create_table,
+
+mps_root_create_table_masked,
+
+mps_root_create_reg
Currently ignored. -- drj 1997-12-18.
+Currently ignored. -- drj 1997-12-18.
-MPS_RM_PROT MPS_RM_PROT MPS_RM_PROT is a constant used in root mode arguments to indicate protectable roots.
MPS_RM_PROT is a constant used in root mode arguments to indicate protectable roots.
Root.
+Root.
-Integral constant.
+Integral constant.
-mps.h
+mps.h
- MPS_RM_PROT is a preprocessor macro defining a constant that can be OR'ed to other MPS_RM_* contants, and passed as the root mode argument to certain root creation functions (mps_root_create_fmt, mps_root_create_table, mps_root_create_table_masked).
MPS_RM_PROT is a
+preprocessor macro defining a constant that can be OR'ed with other
+MPS_RM_* contants, and passed as the root mode argument
+to certain root creation functions (mps_root_create_fmt, mps_root_create_table,
+mps_root_create_table_masked).
Passing MPS_RM_PROT means that t he MPS may place a hardware write barrier on any pageswhich any part of the root covers. Format methods and any scanning function (except for the one forthis root) may not write data in this root. They may read it.
Passing MPS_RM_PROT means
+that the MPS may place a hardware write barrier on any pages which any
+part of the root covers. Format methods and any scanning function
+(except for the one for this root) may not write data in this
+root. They may read it.
You mustn't specify MPS_RM_PROT on a root allocated from the MPS.
You mustn't specify MPS_RM_PROT on a root allocated from
+the MPS.
res = mps_root_create_table(&mmRoot, @@ -987,138 +1230,112 @@ mps_res_t foo_scan(mps_ss_t scan_state, mps_addr_t base, mps_addr_t limit)-
mps_root_create_fmt, mps_root_create_table, mps_root_create_table_masked, MPS_RM_PROT_INNER
mps_root_create_table,
- No page may contain parts of two or more roots with MPS_RM_PROT [how does one preventthat?]. You mustn't specify MPS_RM_PROT if the client program or anything other than (thisinstance of) the MPS is going to protect or unprotect the relevant pages.
mps_root_create_table_masked.
- Future meaning: The MPS may place a hardware read and/or write barrier on any pages whichany part of the root covers. Format methods and scanning functions (except for the one for thisroot) may not read or write data in this root. You may specify MPS_RM_PROT on a root allocatedfrom the MPS, as long as it's not from a GCd pool. - drj 1997-12-18
No page may contain parts of two or more roots with MPS_RM_PROT [how does one prevent
+that?]. You mustn't specify MPS_RM_PROT if the client program or
+anything other than (this instance of) the MPS is going to protect or
+unprotect the relevant pages.
This feature is far too technical for most of our clients: we should think about producingsome guidelines on how to use it. - pekka 1998-01-27
-There may be problems if the client wants the OS to access the root. Lots of OSes can't copewith writing to protected pages. So we'll need to document that caveat too. drj 1998-05-20
+Future meaning: The MPS may place a hardware read and/or write
+barrier on any pages which any part of the root covers. Format methods
+and scanning functions (except for the one for thisroot) may not read
+or write data in this root. You may specify MPS_RM_PROT on a root allocated from
+the MPS, as long as it's not from a GCd pool. - drj 1997-12-18
MPS_RM_PROT_INNER This feature is far too technical for most of our clients: we +should think about producing some guidelines on how to use it. - pekka +1998-01-27
+There may be problems if the client wants the OS to access the +root. Lots of OSes can't cope with writing to protected pages. So +we'll need to document that caveat too. drj 1998-05-20
-mps_sac_alloc MPS_RM_PROT_INNER is a constant used in root mode arguments to indicate partiallyprotectable roots.
Root.
+This function allocates a block using the segregated allocation +cache given.
-Integral constant.
+Allocation cache
-mps.h
+mps_res_t mps_sac_alloc(mps_addr_t *p_o, mps_sac_t sac, size_t size, mps_bool_t has_reservoir_permit);
MPS_RM_PROT_INNER is a preprocessor macro defining a constant that can be OR'ed to other MPS_RM_* contants, and passed as the root mode argument to certain root creation functions(mps_root_create_fmt, mps_root_create_table, mps_root_create_table_masked).
p_o a pointer to a variable to hold the address of the new block
- Pas sing MPS_RM_PROT_INNER means that the MPS may place a hardware write barrier on anypages which are entirely covered by the root. Format methods and any scanning function (except forthe one for this root) may not write data in this root. They may read it.
sac the segregated allocation cache
+size the size of the block requested
-has_reservoir_permit regulates access to the reservoir
-res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(), - MPS_RM_PROT | MPS_RM_PROT_INNER, - (mps_addr_t)&Objects, rootCOUNT); -+
If the return value is MPS_RES_OK, the address of a new block
+is *p_o .
mps_root_create_fmt, mps_root_create_table, mps_root_create_table_masked, MPS_RM_PROT
mps.h
- To specify MPS_RM_PROT_INNER, you must also specify MPS_RM_PROT. The meaning of MPS_RM_PROT is overridden by MPS_RM_PROT_INNER.
This function allocates a block using the cache given. If no
+suitable block exists in the cache, it will ask for more memory from
+the associated pool. size does not have to be one of the
+class sizes of the cache; it does not have to be aligned.
Future meaning: The MPS may place a hardware read and/or write barrier on any pages whichare entirely covered by the root. Format methods and scanning functions (except for the one for thisroot) may not read or write data in this root.
+The client is responsible for synchronising the access to the +cache, but if the cache decides to access the pool, the MPS will +properly synchronize with any other threads that might be accessing +the same pool.
+has_reservoir_permit regulates whether the pool has
+permission to get more memory from the reservoir to satisfy this
+request.
mps_sac_alloc This function allocates a block using the segregated allocation cache given.
- - -Allocation cache
- - - mps_res_t mps_sac_alloc(mps_addr_t *p_o, mps_sac_t sac, size_t size, mps_bool_thas_reservoir_permit);
p_o a pointer to a variable to hold the address of the new block
- -sac the segregated allocation cache
- -size the size of the block requested
- - has_reservoir_permit regulates access to the reservoir
If the return value is MPS_RES_OK, the address of a new block in *p_o .
mps.h
- - - This function allocates a block using the cache given. If no suitable block exists in the cache, it will ask for more memory from the associated pool. size does not have to beone of the class sizes of the cache; it does not have to be aligned.
The client is responsible for synchronising the access to the cache, but if the cachedecides to access the pool, the MPS will properly synchronize with any other threads that might beaccessing the same pool.
- - has_reservoir_permit regulates whether the pool has permission to get morememory from the reservoir to satisfy this request.
void *p; @@ -1137,49 +1354,91 @@ res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(),-
mps_sac_alloc returns MPS_RES_MEMORY when it fails to find enough memory; see the documentation for this return code for recovery options. It returns MPS_RES_COMMIT_LIMIT if it can't allocate without exceeding the arena commit limit; Free something to make more space or increase the limit using mps_arena_commit_limit_set. It returns MPS_RES_RESOURCE if it has run outof swap space; Free something or terminate other processes on the same machine.
mps_sac_alloc returns
+MPS_RES_MEMORY when it
+fails to find enough memory; see the documentation for this return
+code for recovery options. It returns MPS_RES_COMMIT_LIMIT if it
+can't allocate without exceeding the arena commit limit; Free
+something to make more space or increase the limit using mps_arena_commit_limit_set. It
+returns MPS_RES_RESOURCE
+if it has run out of swap space; Free something or terminate other
+processes on the same machine.
MPS_SAC_ALLOC_FAST, mps_sac_free, MPS_SAC_FREE_FAST, mps_sac_t, mps_reservoir_limit_set, mps_arena_commit_limit_set, MPS_RES_MEMORY, MPS_RES_COMMIT_LIMIT, MPS_RES_RESOURCE
+
+MPS_SAC_ALLOC_FAST,
+
+mps_sac_free,
+
+MPS_SAC_FREE_FAST,
+
+mps_sac_t,
+
+mps_reservoir_limit_set,
+
+mps_arena_commit_limit_set,
+
+MPS_RES_MEMORY,
+
+MPS_RES_COMMIT_LIMIT,
+
+MPS_RES_RESOURCE
There's also a macro called MPS_SAC_ALLOC_FAST, that does the same thing. Themacro is faster, but generates more code and does less checking.
There's also a macro called MPS_SAC_ALLOC_FAST, that does
+the same thing. The macro is faster, but generates more code and does
+less checking.
The block allocated can be larger than requested. Blocks not matching any class size areallocated from the next largest class, and blocks larger than the largest class size are simplyallocated at the requested size (rounded up to alignment, as usual).
+The block allocated can be larger than requested. Blocks not +matching any class size are allocated from the next largest class, and +blocks larger than the largest class size are simply allocated at the +requested size (rounded up to alignment, as usual).
- Objects allocated through a segregated allocation cache should only be freed through a segregated allocation cache with the same class structure. Using mps_free on them can cause memory leaks, because the size of the block might be larger than you think. Naturally, the cache must also be attached to the same pool.
Objects allocated through a segregated allocation cache should only
+be freed through a segregated allocation cache with the same class
+structure. Using mps_free on
+them can cause memory leaks, because the size of the block might be
+larger than you think. Naturally, the cache must also be attached to
+the same pool.
MPS_SAC_ALLOC_FAST MPS_SAC_ALLOC_FASTThis macro allocates a block using the segregated allocation cache given.
+This macro allocates a block using the segregated allocation cache +given.
-Allocation cache
+Allocation cache
- MPS_SAC_ALLOC_FAST(res_o, p_o, sac, size, has_reservoir_permit)
MPS_SAC_ALLOC_FAST(res_o, p_o, sac, size, has_reservoir_permit)
res_o will be set to the return code. If this is MPS_RES_OK, the address of the new block is in p_o.
res_o will be set to the return code. If this is
+MPS_RES_OK, the address of the
+new block is in p_o.
mps.h
+mps.h
- This macro allocates a block using the cache given. If no suitable block exists in the cache, it will ask for more memory from the associated pool. size does not have to be one of the class sizes of the cache; it does not have to be aligned.
This macro allocates a block using the cache given. If no suitable
+block exists in the cache, it will ask for more memory from the
+associated pool. size does not have to be one of the
+class sizes of the cache; it does not have to be aligned.
The client is responsible for synchronizing the access to the cache, but if the cache decides to access the pool, the MPS will properly synchronize with any other threads that might be accessing the same pool.
+The client is responsible for synchronizing the access to the +cache, but if the cache decides to access the pool, the MPS will +properly synchronize with any other threads that might be accessing +the same pool.
- has_reservoir_permit regulates whether the pool has permission to get more memory from the reservoir to satisfy this request.
has_reservoir_permit regulates whether the pool has
+permission to get more memory from the reservoir to satisfy this
+request.
void *p; @@ -1275,67 +1544,108 @@ res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(),-
MPS_SAC_ALLOC_FAST returns MPS_RES_MEMORY when it fails to find enoughmemory; see the documentation for this return code for recovery options. It returns MPS_RES_COMMIT_LIMIT if it can't allocate without exceeding the arena commit limit;Free something to make more space or increase the limit using mps_arena_commit_limit_set. It returns MPS_RES_RESOURCE if it has run out of swap space; Free something or terminate other processes on the same machine.
MPS_SAC_ALLOC_FAST
+returns MPS_RES_MEMORY when
+it fails to find enough memory; see the documentation for this return
+code for recovery options. It returns MPS_RES_COMMIT_LIMIT if it
+can't allocate without exceeding the arena commit limit; free something
+to make more space or increase the limit using mps_arena_commit_limit_set. It
+returns MPS_RES_RESOURCE
+if it has run out of swap space; free something or terminate other
+processes on the same machine.
mps_sac_alloc, MPS_SAC_FREE_FAST, mps_sac_free, mps_sac_t, mps_reservoir_limit_set,mps_arena_commit_limit_set, MPS_RES_MEMORY, MPS_RES_COMMIT_LIMIT, MPS_RES_RESOURCE
+
+mps_sac_alloc,
+
+MPS_SAC_FREE_FAST,
+
+mps_sac_free,
+
+mps_sac_t,
+
+mps_reservoir_limit_set,
+
+mps_arena_commit_limit_set,
+
+MPS_RES_MEMORY,
+
+MPS_RES_COMMIT_LIMIT,
+
+MPS_RES_RESOURCE
There's also a function called mps_sac_alloc, that does the same thing.
There's also a function called mps_sac_alloc, that does the same
+thing.
The block allocated can be larger than requested. Blocks not matching any class size areallocated from the next largest class, and blocks larger than the largest class size are simplyallocated at the requested size (rounded up to alignment, as usual).
+The block allocated can be larger than requested. Blocks not +matching any class size are allocated from the next largest class, and +blocks larger than the largest class size are simply allocated at the +requested size (rounded up to alignment, as usual).
- Objects allocated through a segregated allocation cache should only be freed through asegregated allocation cache with the same class structure. Using mps_free on them cancause memory leaks or assertions, because the size of the block might be larger than you think.Naturally, the cache must also be attached to the same pool.
Objects allocated through a segregated allocation cache should only
+be freed through a segregated allocation cache with the same class
+structure. Using mps_free on them
+can cause memory leaks or assertions, because the size of the block
+might be larger than you think. Naturally, the cache must also be
+attached to the same pool.
The macro doesn't evaluate has_reservoir_permit, unless it decides to accessthe pool.
The macro doesn't evaluate has_reservoir_permit,
+unless it decides to access the pool.
MPS_SAC_CLASS_LIMIT MPS_SAC_CLASS_LIMIT MPS_SAC_CLASS_LIMIT specifies how many classes mps_sac_create is guaranteed to accept.
MPS_SAC_CLASS_LIMIT specifies how many classes mps_sac_create is guaranteed to accept.
size_t
+size_t
-Allocation cache
+Allocation cache
-mps.h
+mps.h
- MPS_SAC_CLASS_LIMIT specifies a lower limit on the maximum number of classesthat can be described in a call to mps_sac_create, i.e., the MPS guarantees to acceptat least this many classes. More might be accepted -- in fact, there might not be any limit in theimplementation on the maximum number of classes, but if you specify more than this, you should beprepared to handle the error.
MPS_SAC_CLASS_LIMIT specifies a lower limit on the maximum number of classesthat can be described in a call to mps_sac_create, i.e., the MPS guarantees to acceptat least this many classes. More might be accepted -- in fact, there might not be any limit in theimplementation on the maximum number of classes, but if you specify more than this, you should beprepared to handle the error.
MPS_SAC_CLASS_LIMIT is a macro suitable for use in a constant expression, bothin a #if directive and wherever else constant expressions may be used.
MPS_SAC_CLASS_LIMIT is a macro suitable for use in a constant expression, bothin a #if directive and wherever else constant expressions may be used.
mps_sac_t sac;
- mps_sac_classes_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
+ mps_sac_class_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
#if (MPS_SAC_CLASS_LIMIT < 3)
# error "Too many classes!"
@@ -1349,59 +1659,61 @@ res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(),
- If you ask for too many size classes, mps_sac_create returns MPS_RES_LIMIT; you can recover by combining some small adjacent classes.
If you ask for too many size classes, mps_sac_create returns MPS_RES_LIMIT; you can recover by combining some small adjacent classes.
mps_sac_free mps_sac_freeThis function frees an object using the segregated allocation cache given.
+This function frees an object using the segregated allocation cache given.
-Allocation cache
+Allocation cache
- void mps_sac_free(mps_sac_t sac, mps_addr_t p, size_t size);
void mps_sac_free(mps_sac_t sac, mps_addr_t p, size_t size);
sac the segregated allocation cache
+sac the segregated allocation cache
-p a pointer to the block being freed
+p a pointer to the block being freed
-size the size of the block being freed
+size the size of the block being freed
-None.
+None.
-mps.h
+mps.h
-This function frees an object using the cache given. If the cache would become too full,some blocks are returned to the associated pool. @@ -1409,10 +1721,10 @@ res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(), should be the size that wasspecified when the object was allocated (the cache knows what the real size of the block is). Theobject must have been allocated through a segregated allocation cache with the same class structure,attached to the same pool.
-The client is responsible for synchronising the access to the cache, but if the cachedecides to access the pool, the MPS will properly synchronize with any other threads that might beaccessing the same pool.
+The client is responsible for synchronising the access to the cache, but if the cachedecides to access the pool, the MPS will properly synchronize with any other threads that might beaccessing the same pool.
-void *p; @@ -1431,44 +1743,52 @@ res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(),-
MPS_SAC_FREE_FAST, mps_sac_alloc, MPS_SAC_ALLOC_FAST, mps_sac_t
+
+MPS_SAC_FREE_FAST,
+
+mps_sac_alloc,
+
+MPS_SAC_ALLOC_FAST,
+
+mps_sac_t
Usually, you'd use the same cache to allocate and deallocate an object.
+Usually, you'd use the same cache to allocate and deallocate an object.
- There's also a macro called MPS_SAC_FREE_FAST, that does the same thing. The macro is faster, but generates more code and does no checking.
There's also a macro called MPS_SAC_FREE_FAST, that does the same thing. The macro is faster, but generates more code and does no checking.
Note that mps_sac_free does very little checking; it's optimized for speed.Double frees and other mistakes will only be detected when the cache is flushed (which can happen bydemand through mps_sac_flush or automatically), unless intervening operations have obscured symptom.
Note that mps_sac_free does very little checking; it's optimized for speed.Double frees and other mistakes will only be detected when the cache is flushed (which can happen bydemand through mps_sac_flush or automatically), unless intervening operations have obscured symptom.
MPS_SAC_FREE_FAST MPS_SAC_FREE_FAST MPS_SAC_FREE_FAST frees an object using the segregated allocation cache given.
MPS_SAC_FREE_FAST frees an object using the segregated allocation cache given.
Allocation cache
+Allocation cache
- MPS_SAC_FREE_FAST(sac, p, size)
MPS_SAC_FREE_FAST(sac, p, size)
None.
+None.
-mps.h
+mps.h
-This macro frees an object using the cache given. If the cache would become too full, someblocks are returned to the associated pool. @@ -1525,10 +1845,10 @@ res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(), should be the size that was specifiedwhen the object was allocated (the cache knows what the real size of the block is). The objects musthave been allocated through a segregated allocation cache with the same class structure, attachedto the same pool.
-The client is responsible for synchronizing the access to the cache, but if the cachedecides to access the pool, the MPS will properly synchronize with any other threads that might beaccessing the same pool.
+The client is responsible for synchronizing the access to the cache, but if the cachedecides to access the pool, the MPS will properly synchronize with any other threads that might beaccessing the same pool.
-void *p; @@ -1548,59 +1868,67 @@ res = mps_root_create_table(&mmRoot, arena, mps_rank_exact(),-
mps_sac_free, MPS_SAC_ALLOC_FAST, mps_sac_alloc, mps_sac_t
+
+mps_sac_free,
+
+MPS_SAC_ALLOC_FAST,
+
+mps_sac_alloc,
+
+mps_sac_t
Usually, you'd use the same cache to allocate and deallocate an object.
+Usually, you'd use the same cache to allocate and deallocate an object.
- There's also a function called mps_sac_free, that does the same thing. Themacro is faster, but generates more code and does no checking.
There's also a function called mps_sac_free, that does the same thing. Themacro is faster, but generates more code and does no checking.
Note that MPS_SAC_FREE_FAST doesn't do any checking; it's optimized for speed. Double frees and other mistakes will only be detected when the cache is flushed (which can happen by demand through mps_sac_flush or automatically), unless intervening operations have obscured symptom.
Note that MPS_SAC_FREE_FAST doesn't do any checking; it's optimized for speed. Double frees and other mistakes will only be detected when the cache is flushed (which can happen by demand through mps_sac_flush or automatically), unless intervening operations have obscured symptom.
MPS_SCAN_BEGIN MPS_SCAN_BEGIN The macro MPS_SCAN_BEGIN is part of the scanning protocol; together with MPS_SCAN_END, it sets up local information used by MPS_FIX*.
The macro MPS_SCAN_BEGIN is part of the scanning protocol; together with MPS_SCAN_END, it sets up local information used by MPS_FIX*.
Scanning.
+Scanning.
- MPS_SCAN_BEGIN(ss)
MPS_SCAN_BEGIN(ss)
ss the scan state argument that was passed to the scanning function
+ss the scan state argument that was passed to the scanning function
-mps.h
+mps.h
- This macro is used in the scanning protocol. Together with MPS_SCAN_END, it sets up local information used by the fast MPS_FIX* macros.
This macro is used in the scanning protocol. Together with MPS_SCAN_END, it sets up local information used by the fast MPS_FIX* macros.
mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length) @@ -1622,55 +1950,65 @@ mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length)-
MPS_SCAN_END, MPS_FIX12, MPS_FIX1, MPS_FIX2, MPS_FIX_CALL
+
+MPS_SCAN_END,
+
+MPS_FIX12,
+
+MPS_FIX1,
+
+MPS_FIX2,
+
+MPS_FIX_CALL
Between MPS_SCAN_BEGIN and MPS_SCAN_END, you may not call another scanning functiondirectly, because the scan state parameter is in a strange state, so you shouldn't pass it as anargument to a function. However, you can pass the scan state using MPS_FIX_CALL. You also cannotnest MPS_SCAN_BEGIN textually within another MPS_SCAN_BEGIN -- MPS_SCAN_END pair.
Between MPS_SCAN_BEGIN and MPS_SCAN_END, you may not call another scanning functiondirectly, because the scan state parameter is in a strange state, so you shouldn't pass it as anargument to a function. However, you can pass the scan state using MPS_FIX_CALL. You also cannotnest MPS_SCAN_BEGIN textually within another MPS_SCAN_BEGIN -- MPS_SCAN_END pair.
MPS_SCAN_END MPS_SCAN_END The macro MPS_SCAN_END is part of the scanning protocol; it terminates a blockstarted by MPS_SCAN_BEGIN.
The macro MPS_SCAN_END is part of the scanning protocol; it terminates a blockstarted by MPS_SCAN_BEGIN.
Scanning.
+Scanning.
- MPS_SCAN_END(ss);
MPS_SCAN_END(ss);
ss the scan state argument that was passed to the scanning function
+ss the scan state argument that was passed to the scanning function
-mps.h
+mps.h
- This macro is used in the scanning protocol. Together with MPS_SCAN_BEGIN, itsets up local information used by the fast MPS_FIX* macros. Note that MPS_SCAN_END completes the scanning, so successful termination of the scanning mustinvoke it (error branches can return without passing through).
This macro is used in the scanning protocol. Together with MPS_SCAN_BEGIN, itsets up local information used by the fast MPS_FIX* macros. Note that MPS_SCAN_END completes the scanning, so successful termination of the scanning mustinvoke it (error branches can return without passing through).
mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length) {
@@ -1691,162 +2029,183 @@ mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length) {
- MPS_SCAN_BEGIN, MPS_FIX12, MPS_FIX1, MPS_FIX2, MPS_FIX_CALL
+MPS_SCAN_BEGIN,
-
MPS_FIX12,
- Between MPS_SCAN_BEGIN and MPS_SCAN_END, you may not call another scanning functiondirectly, because the scan state parameter is in a strange state, so you shouldn't pass it as anargument to a function. However, you can pass the scan state using MPS_FIX_CALL.
MPS_FIX1,
+MPS_FIX2,
-MPS_T_WORD MPS_FIX_CALL
-Between MPS_SCAN_BEGIN and MPS_SCAN_END, you may not call another scanning functiondirectly, because the scan state parameter is in a strange state, so you shouldn't pass it as anargument to a function. However, you can pass the scan state using MPS_FIX_CALL.
MPS_T_WORD MPS_T_WORD an unsigned integral type that is the same size as an object pointer.
mpstd.h.
+MPS_T_WORD an unsigned integral type that is the same size as an object pointer.
MPS_T_WORD is a preprocessor macro defined in "mpstd.h". It is the name of an unsignedintegral type that is the same size as an object pointer (so sizeof(MPS_T_WORD) == sizeof(void*)).The exact identity of the type is platform-dependent.
mpstd.h.
- MPS_WORD_SHIFT, MPS_WORD_WIDTH
MPS_T_WORD is a preprocessor macro defined in "mpstd.h". It is the name of an unsignedintegral type that is the same size as an object pointer (so sizeof(MPS_T_WORD) == sizeof(void*)).The exact identity of the type is platform-dependent.
MPS_WORD_SHIFT
+MPS_WORD_SHIFT,
-
MPS_WORD_WIDTH
- MPS_WORD_SHIFT is log base 2 of MPS_WORD_WIDTH.
MPS_WORD_SHIFTIntegral constant.
+mpstd.h.
+MPS_WORD_SHIFT is log base 2 of MPS_WORD_WIDTH.
MPS_WORD_SHIFT is a preprocessor macro defined in "mpstd.h". It is the logarithm in base 2 of MPS_WORD_WIDTH (so 1 << MPS_WORD_SHIFT == MPS_WORD_WIDTH). The value of MPS_WORD_SHIFT is platform-dependent. Typical values are 5 and 6.
Integral constant.
-mpstd.h.
-MPS_WORD_SHIFT is a preprocessor macro defined in "mpstd.h". It is the logarithm in base 2 of MPS_WORD_WIDTH (so 1 << MPS_WORD_SHIFT == MPS_WORD_WIDTH). The value of MPS_WORD_SHIFT is platform-dependent. Typical values are 5 and 6.
MPS_WORD_WIDTH -
MPS_T_WORD,
- MPS_WORD_WIDTH is the width in bits of the type MPS_T_WORD.
MPS_WORD_WIDTH
-MPS_WORD_WIDTHIntegral constant.
+mpstd.h.
+MPS_WORD_WIDTH is the width in bits of the type MPS_T_WORD.
MPS_WORD_WIDTH is a preprocessor macro defined in "mpstd.h" to be the width in bits of the type MPS_T_WORD (so MPS_WORD_WIDTH == sizeof(MPS_T_WORD) * CHAR_BIT).
This value is required for the use of the MPS C interface and the interpretation of "mps.h".It is platform-dependent. It is a power of 2; typical values are 32 and 64. It may be defined byincluding "mpstd.h" on a supported platform, or by defining it to be the width of MPS_T_WORD inbits.
Integral constant.
-mpstd.h.
+ + +MPS_WORD_WIDTH is a preprocessor macro defined in "mpstd.h" to be the width in bits of the type MPS_T_WORD (so MPS_WORD_WIDTH == sizeof(MPS_T_WORD) * CHAR_BIT).
This value is required for the use of the MPS C interface and the interpretation of "mps.h".It is platform-dependent. It is a power of 2; typical values are 32 and 64. It may be defined byincluding "mpstd.h" on a supported platform, or by defining it to be the width of MPS_T_WORD inbits.
#define MPS_WORD_WIDTH 32-
+
+MPS_T_WORD,
+
+MPS_WORD_SHIFT
mps_addr_t mps_addr_t mps_addr_t is the type of addresses managed by the MPS, and also the type of references too bjects.
mps_addr_t is the type of addresses managed by the MPS, and also the type of references too bjects.
Allocation, allocation point, format, root, location dependency.
+Allocation, allocation point, format, root, location dependency.
- typedef void *mps_addr_t;
typedef void *mps_addr_t;
mps.h
+mps.h
- mps_addr_t is the type of addresses managed by the MPS, and also the type of referencesto objects. It is used in the MPS C interface where the MPS needs to pass a pointer to memory thatis under the control of the MPS.
mps_addr_t is the type of addresses managed by the MPS, and also the type of referencesto objects. It is used in the MPS C interface where the MPS needs to pass a pointer to memory thatis under the control of the MPS.
In accordance with standard C practice, the value NULL of type mps_addr_t will never beused to represent the address of an object.
In accordance with standard C practice, the value NULL of type mps_addr_t will never beused to represent the address of an object.
{
@@ -1863,54 +2222,56 @@ mps_res_t scan_array(mps_ss_t ss, mps_addr_t object, size_t length) {
-Not applicable.
+Not applicable.
-
+
+mps_align_t
mps_align_t mps_align_t mps_align_t is the type of an alignment.
mps_align_t is the type of an alignment.
Format, pool, allocation.
+Format, pool, allocation.
- typedef size_t mps_align_t;
typedef size_t mps_align_t;
mps.h
+mps.h
-An alignment specifies the address modulus to which all objects in an object format must bealigned. That is, if an alignment of 4 is specified, then the address of any object in that formatmodulo 4 will always be 0.
+An alignment specifies the address modulus to which all objects in an object format must bealigned. That is, if an alignment of 4 is specified, then the address of any object in that formatmodulo 4 will always be 0.
- mps_align_t is a transparent type equivalent to the C type "size_t" and must be a positivepower of 2.
mps_align_t is a transparent type equivalent to the C type "size_t" and must be a positivepower of 2.
Some pools and allocation protocols accept an alignment as an option that can be used toensure that objects in the pool or objects allocated observe a stricter alignment than that of theobject format.
+Some pools and allocation protocols accept an alignment as an option that can be used toensure that objects in the pool or objects allocated observe a stricter alignment than that of theobject format.
-mps_align_t floatAlign = 4; @@ -1918,61 +2279,65 @@ mps_align_t doubleFloatAlign = 8;-
+
+mps_fmt_A_t,
+
+mps_addr_t
mps_alloc mps_alloc mps_alloc allocates a block of memory in a pool.
mps_alloc allocates a block of memory in a pool.
Allocation.
+Allocation.
- mps_res_t mps_alloc(mps_addr_t *p, mps_pool_t pool, size_t size, ...);
mps_res_t mps_alloc(mps_addr_t *p, mps_pool_t pool, size_t size, ...);
p output parameter for a pointer to the block allocated
+p output parameter for a pointer to the block allocated
-pool the pool to allocate in
+pool the pool to allocate in
-size the size of the block to allocate in bytes
+size the size of the block to allocate in bytes
-... (some pools can take additional arguments)
+... (some pools can take additional arguments)
-A return code.
+A return code.
-mps.h
+mps.h
- mps_alloc allocates a block of memory in the given pool.
mps_alloc allocates a block of memory in the given pool.
mps_res_t res; @@ -1989,55 +2354,57 @@ mps_align_t doubleFloatAlign = 8;-
+
+mps_free
mps_alloc_pattern_ramp mps_alloc_pattern_rampReturns a allocation pattern type indicating that allocation will follow a ramp pattern.
+Returns a allocation pattern type indicating that allocation will follow a ramp pattern.
-alloc-pattern-ramp
+alloc-pattern-ramp
- mps_alloc_pattern_t mps_alloc_pattern_ramp();
mps_alloc_pattern_t mps_alloc_pattern_ramp();
none
+none
-Returns the allocation pattern type for ramps.
+Returns the allocation pattern type for ramps.
- When declaring an allocation pattern for an AP, if the calls to mps_ap_alloc_pattern_begin use ramp allocation patterns (such as the result of mps_alloc_pattern_ramp), then the MPS willtake this as an indication that most of the objects allocated after the call to mps_ap_alloc_pattern_begin are likely to be dead by the corresponding call to mps_ap_alloc_pattern_end.
When declaring an allocation pattern for an AP, if the calls to mps_ap_alloc_pattern_begin use ramp allocation patterns (such as the result of mps_alloc_pattern_ramp), then the MPS willtake this as an indication that most of the objects allocated after the call to mps_ap_alloc_pattern_begin are likely to be dead by the corresponding call to mps_ap_alloc_pattern_end.
This permits the client to indicate useful points for GC with minimal perturbation of the GCstrategy.
+This permits the client to indicate useful points for GC with minimal perturbation of the GCstrategy.
-
{
@@ -2048,62 +2415,68 @@ mps_align_t doubleFloatAlign = 8;
-Cannot fail.
+Cannot fail.
- mps_alloc_pattern_ramp_collect_all, mps_ap_alloc_pattern_begin
+
+mps_alloc_pattern_ramp_collect_all,
+
+mps_ap_alloc_pattern_begin
mps_alloc_pattern_ramp_collect_all mps_alloc_pattern_ramp_collect_all mps_alloc_pattern_ramp_collect_all
mps_alloc_pattern_ramp_collect_all
Returns a ramp allocation pattern type indicating that a full GC should be done.
+Returns a ramp allocation pattern type indicating that a full GC should be done.
-GC, AP, ramps
+GC, AP, ramps
- mps_alloc_pattern_t mps_alloc_pattern_ramp_collect_all();
mps_alloc_pattern_t mps_alloc_pattern_ramp_collect_all();
none
+none
-Returns the allocation pattern type for full collection ramps.
+Returns the allocation pattern type for full collection ramps.
- This yields an allocation pattern for an AP that is similar to that returned by mps_alloc_pattern_ramp, in that it declares a ramp allocation pattern, but additionally indicates tothe MPS that the next collection following the ramp should be a full GC.
This yields an allocation pattern for an AP that is similar to that returned by mps_alloc_pattern_ramp, in that it declares a ramp allocation pattern, but additionally indicates tothe MPS that the next collection following the ramp should be a full GC.
This permits the client to indicate useful points for a full GC, either because most of theheap is likely to be dead, or because accurate statistics are required, with minimal perturbation ofthe GC strategy.
+This permits the client to indicate useful points for a full GC, either because most of theheap is likely to be dead, or because accurate statistics are required, with minimal perturbation ofthe GC strategy.
- As usual, this allocation pattern should be used in matching mps_ap_alloc_pattern_begin and mps_ap_alloc_pattern_end pairs. It may nest with, but should not otherwise overlap with allocationpatterns of type mps_alloc_pattern_ramp. In this case, the MPS may defer the full GC until after allramp allocation patterns have ended.
As usual, this allocation pattern should be used in matching mps_ap_alloc_pattern_begin and mps_ap_alloc_pattern_end pairs. It may nest with, but should not otherwise overlap with allocationpatterns of type mps_alloc_pattern_ramp. In this case, the MPS may defer the full GC until after allramp allocation patterns have ended.
{
@@ -2115,152 +2488,164 @@ mps_align_t doubleFloatAlign = 8;
+Cannot fail.
-Cannot fail.
+-
mps_alloc_pattern_ramp, mps_ap_alloc_pattern_begin
mps_alloc_pattern_ramp,
+mps_ap_alloc_pattern_begin
-mps_amc_apply mps_amc_apply mps_amc_apply is used to inspect objects in an AMC pool. You may only call it when thearena is parked (for example, after mps_arena_collect).
mps_amc_apply is used to inspect objects in an AMC pool. You may only call it when thearena is parked (for example, after mps_arena_collect).
Arena.
+Arena.
- extern void mps_amc_apply(mps_pool_t, void(*f)(mps_addr_t, void *, size_t), void *, size_t);
extern void mps_amc_apply(mps_pool_t, void(*f)(mps_addr_t, void *, size_t), void *, size_t);
mps_pool_t the pool whose objects you want to inpect
mps_pool_t the pool whose objects you want to inpect
f a supplied function
+f a supplied function
- mps_addr_t the address of the object you want to inspect
mps_addr_t the address of the object you want to inspect
*
+*
-size_t
+size_t
-Not applicable.
+Not applicable.
-Not applicable.
+Not applicable.
- mps_amc_apply is used to inspect objects in an AMC pool. You may only call it when thearena is parked (for example, after mps_arena_collect). When called, mps_amc_apply calls thesupplied function "f" once for each object in the pool, with the address of the object as its firstargument. "f" is given as its second and third arguments whatever values were given as the third andfourth arguments to mps_amc_apply. (This is intended to make it easy to pass, for example, anarray and its size as parameters.)
mps_amc_apply is used to inspect objects in an AMC pool. You may only call it when thearena is parked (for example, after mps_arena_collect). When called, mps_amc_apply calls thesupplied function "f" once for each object in the pool, with the address of the object as its firstargument. "f" is given as its second and third arguments whatever values were given as the third andfourth arguments to mps_amc_apply. (This is intended to make it easy to pass, for example, anarray and its size as parameters.)
"f" will be called on both data and pad objects, and it is "f"'s job to distinguish, ifrequired, between the two. Note (c.f. mps_arena_collect, above) that it may be called onunreachable objects that the collector has not recycled or has not been able to recycle.
"f" will be called on both data and pad objects, and it is "f"'s job to distinguish, ifrequired, between the two. Note (c.f. mps_arena_collect, above) that it may be called onunreachable objects that the collector has not recycled or has not been able to recycle.
The function "f" may not allocate memory or access any automatically-managed memory exceptthe object at which it is pointed and, in the case of objects in Dylan Container Format, thatobject's wrapper.
+The function "f" may not allocate memory or access any automatically-managed memory exceptthe object at which it is pointed and, in the case of objects in Dylan Container Format, thatobject's wrapper.
- Functions that park the arena: mps_arena_park, mps_arena_collect.
Functions that park the arena: -
A more general heap walker which inspects all formatted objects in the arena: mps_arena_formatted_objects_walk
mps_arena_park,
+mps_arena_collect.
-A more general heap walker which inspects all formatted objects in +the arena: -
There is no equivalent function for other pool classes, but there is a more general heapwalker: mps_arena_formatted_objects_walk.
mps_arena_formatted_objects_walk
-Does "You must call it when the arena is parked" mean that (a) parking an arena requiresthat you call this function, or (b) you can only call this function when the arena is in the parkedstate? LMB
+There is no equivalent function for other pool classes, but there is a more general heapwalker: mps_arena_formatted_objects_walk.
(b). Changed "must call" to "may only call" drj 1998-08-25
+mps_ap_alloc_pattern_begin Does "You must call it when the arena is parked" mean that (a) parking an arena requiresthat you call this function, or (b) you can only call this function when the arena is in the parkedstate? LMB
+(b). Changed "must call" to "may only call" drj 1998-08-25
-mps_ap_alloc_pattern_beginIndicates the start of allocation following a particular pattern.
+ -AP, Allocation, Alloc-pattern-ramp.
+Indicates the start of allocation following a particular pattern.
- mps_res_t mps_ap_alloc_pattern_begin(mps_ap_t ap, mps_alloc_pattern_t alloc_pattern)
AP, Allocation, Alloc-pattern-ramp.
-ap The allocation point in which the patterned allocation will occur
+mps_res_t mps_ap_alloc_pattern_begin(mps_ap_t ap, mps_alloc_pattern_t alloc_pattern)
alloc_pattern The pattern of the allocation
+ap The allocation point in which the patterned allocation will occur
-Result code indicating whether start of the allocation pattern was successfully registered.
+alloc_pattern The pattern of the allocation
-mps.h
+Result code indicating whether start of the allocation pattern was successfully registered.
- This function is used, together with mps_ap_alloc_pattern_end, to indicate periods ofallocation in an allocation point that follow some pattern of lifetime.
mps.h
- The nesting/overlapping restrictions on allocation patterns may vary depending on theparticular allocation pattern type, but in general, if mps_ap_alloc_pattern_begin is used multipletimes on the same allocation point without intervening calls to mps_ap_alloc_pattern_end, the callsmatch in a stack-like way, outermost and innermost; that is, allocation patterns may nest, but nototherwise overlap.
This function is used, together with mps_ap_alloc_pattern_end, to indicate periods ofallocation in an allocation point that follow some pattern of lifetime.
The nesting/overlapping restrictions on allocation patterns may vary depending on theparticular allocation pattern type, but in general, if mps_ap_alloc_pattern_begin is used multipletimes on the same allocation point without intervening calls to mps_ap_alloc_pattern_end, the callsmatch in a stack-like way, outermost and innermost; that is, allocation patterns may nest, but nototherwise overlap.
{
@@ -2285,57 +2670,69 @@ mps_align_t doubleFloatAlign = 8;
-Currently doesn't fail, but may in future if certain allocation patterns are inappropriatefor that allocation point at that point in time.
+Currently doesn't fail, but may in future if certain allocation patterns are inappropriatefor that allocation point at that point in time.
- mps_alloc_pattern_ramp, mps_alloc_pattern_ramp_collect_all, mps_ap_alloc_pattern_end, mps_ap_alloc_pattern_reset
+
+mps_alloc_pattern_ramp,
+
+mps_alloc_pattern_ramp_collect_all,
+
+mps_ap_alloc_pattern_end,
+
+mps_ap_alloc_pattern_reset
mps_ap_alloc_pattern_end mps_ap_alloc_pattern_endIndicates the end of allocation following a particular pattern.
+Indicates the end of allocation following a particular pattern.
-AP, Allocation, Alloc-pattern-ramp.
+AP, Allocation, Alloc-pattern-ramp.
- mps_res_t mps_ap_alloc_pattern_end(mps_ap_t ap, mps_alloc_pattern_t alloc_pattern)
mps_res_t mps_ap_alloc_pattern_end(mps_ap_t ap, mps_alloc_pattern_t alloc_pattern)
ap The allocation point in which the patterned allocation occurred
+ap The allocation point in which the patterned allocation occurred
-alloc_pattern The pattern of the allocation
+alloc_pattern The pattern of the allocation
-Result code indicating whether end of the allocation pattern was successfully registered.
+Result code indicating whether end of the allocation pattern was successfully registered.
- This function is used, together with mps_ap_alloc_pattern_begin, to indicate periods of allocation in an allocation point that follow some pattern of lifetime.
This function is used, together with mps_ap_alloc_pattern_begin, to indicate periods of allocation in an allocation point that follow some pattern of lifetime.
{
@@ -2360,55 +2757,67 @@ mps_align_t doubleFloatAlign = 8;
-Will fail if there is no extant allocation pattern of that type. May fail in future ifcertain allocation patterns are inappropriate for that allocation point at that point in time.
+Will fail if there is no extant allocation pattern of that type. May fail in future ifcertain allocation patterns are inappropriate for that allocation point at that point in time.
- mps_alloc_pattern_ramp, mps_alloc_pattern_ramp_collect_all, mps_ap_alloc_pattern_begin, mps_ap_alloc_pattern_reset
+
+mps_alloc_pattern_ramp,
+
+mps_alloc_pattern_ramp_collect_all,
+
+mps_ap_alloc_pattern_begin,
+
+mps_ap_alloc_pattern_reset
mps_ap_alloc_pattern_reset mps_ap_alloc_pattern_resetIndicates the end of allocation pattern on an allocation point.
+Indicates the end of allocation pattern on an allocation point.
-AP, Alloc-pattern-ramp
+AP, Alloc-pattern-ramp
- mps_res_t mps_ap_alloc_pattern_reset(mps_ap_t ap);
mps_res_t mps_ap_alloc_pattern_reset(mps_ap_t ap);
ap The allocation point in which the patterned allocation occurred
+ap The allocation point in which the patterned allocation occurred
-Result code indicating whether end of the allocation patterns was successfully registered.
+Result code indicating whether end of the allocation patterns was successfully registered.
- This function may be used in place of mps_ap_alloc_pattern_end to end all extant allocationpatterns on an allocation point. It is anticipated that this may be used to recover from errorconditions.
This function may be used in place of mps_ap_alloc_pattern_end to end all extant allocationpatterns on an allocation point. It is anticipated that this may be used to recover from errorconditions.
{
@@ -2438,247 +2847,268 @@ mps_align_t doubleFloatAlign = 8;
-Cannot fail at present. May fail in future if certain allocation patterns cannot be endedfor that allocation point at that point in time.
+Cannot fail at present. May fail in future if certain allocation patterns cannot be endedfor that allocation point at that point in time.
- mps_alloc_pattern_ramp, mps_alloc_pattern_ramp_collect_all, mps_ap_alloc_pattern_begin, mps_ap_alloc_pattern_end
mps_ap_frame_pop mps_alloc_pattern_ramp_collect_all,
+mps_ap_alloc_pattern_begin,
-mps_ap_alloc_pattern_end
-
+mps_ap_frame_popDeclares that a set of objects in a particular frame are dead or likely to be dead.
+AP Stack Protocol
+Declares that a set of objects in a particular frame are dead or likely to be dead.
- mps_res_t (mps_ap_frame_pop)(mps_ap_t /* ap */, mps_frame_t /* frame */)
AP Stack Protocol
-mps_ap_t ap
+The allocation point in which the frame was pushed.
+mps_res_t (mps_ap_frame_pop)(mps_ap_t /* ap */, mps_frame_t /* frame */)
frame
-The frame.
+mps_ap_t ap
-The allocation point in which the frame was pushed.
-A result code in the usual way.
+frame
+The frame.
- This function pops the specified frame making its parent the current frame (frames areimplicitly created using the push operation, see mps_ap_frame_push). Poppinginvalidates the specified frame and all frames pushed since the specified frame. Popping the framemakes a declaration about the set of objects which were allocated in the specified frame and alsoall frames which were pushed since the specified frame. It can be used to declare a set of objectsdead or likely to be mostly dead; the exact interpretation of the declaration depends on pool classthat the allocation point is in (the same pool class that that objects are in). Typically poolclasses which are mostly manually managed will use this declaration to mean that the objects aredead and their space can be reclaimed immediately, whereas pool classes which are mostlyautomatically managed will use this declaration to mean that the objects are likely to be mostlydead (the pool class may use this declaration to alter its collection decisions). Consult the poolclass documentation for details.
In general a frame other than the current frame can be popped (all frames pushed morerecently will be invalidated as well, as described above), but a particular pool class may imposethe restriction that only the current frame may be popped. This restriction means that every pushmust have a corresponding pop. Consult the pool class documentation for details.
+A result code in the usual way.
-It is illegal to pass invalid frames to any MPS function. In particular it is not possibleto pop frames out of order (so the sequence "A = push, B = push, pop A, pop B" is illegal) or to popto the same frame twice (so the sequence "A = push, pop A, pop A" is illegal).
-More comprehensive documentation is available in the protocol document (AP Stack Protocol).
+This function pops the specified frame making its parent the current frame (frames areimplicitly created using the push operation, see mps_ap_frame_push). Poppinginvalidates the specified frame and all frames pushed since the specified frame. Popping the framemakes a declaration about the set of objects which were allocated in the specified frame and alsoall frames which were pushed since the specified frame. It can be used to declare a set of objectsdead or likely to be mostly dead; the exact interpretation of the declaration depends on pool classthat the allocation point is in (the same pool class that that objects are in). Typically poolclasses which are mostly manually managed will use this declaration to mean that the objects aredead and their space can be reclaimed immediately, whereas pool classes which are mostlyautomatically managed will use this declaration to mean that the objects are likely to be mostlydead (the pool class may use this declaration to alter its collection decisions). Consult the poolclass documentation for details.
In general a frame other than the current frame can be popped (all frames pushed morerecently will be invalidated as well, as described above), but a particular pool class may imposethe restriction that only the current frame may be popped. This restriction means that every pushmust have a corresponding pop. Consult the pool class documentation for details.
-<example of how to use the symbol>
+It is illegal to pass invalid frames to any MPS function. In particular it is not possibleto pop frames out of order (so the sequence "A = push, B = push, pop A, pop B" is illegal) or to popto the same frame twice (so the sequence "A = push, pop A, pop A" is illegal).
+More comprehensive documentation is available in the protocol document (AP Stack Protocol).
-<how the client program should handle errors that the symbol returns, if applicable>
+<example of how to use the symbol>
- mps.protocol.alloc-point.stack, mps_ap_frame_push
<how the client program should handle errors that the symbol returns, if applicable>
-None.
+mps.protocol.alloc-point.stack, -
mps_ap_frame_push mps_ap_frame_push
-None.
-mps_ap_frame_pushDeclares a new frame as part of the AP stack protocol.
+AP Stack Protocol
+Declares a new frame as part of the AP stack protocol.
- mps_res_t (mps_ap_frame_push)(mps_frame_t * /* frameReturn */, mps_ap_t /* ap */);
AP Stack Protocol
- mps_frame_t *frameReturn The frame return parameter. A new frame (declared by this function) is stored in thislocation if this function is successful.
mps_ap_t ap The allocation point in which the new frame is declared.
mps_res_t (mps_ap_frame_push)(mps_frame_t * /* frameReturn */, mps_ap_t /* ap */);
A result code in the usual way. The creation of new frame objects (which is implicit in theaction of this function) can consume resources, so this function can fail because there areinsufficient resources. This function may fail if the correct protocol is not followed by theclient.
+mps_frame_t *frameReturn The frame return parameter. A new frame (declared by this function) is stored in thislocation if this function is successful.
mps_ap_t ap The allocation point in which the new frame is declared.
This function declares a new frame in the specified allocation point, makes that new frame achild of the current frame, changes the current frame to be the newly created frame, and returns ahandle to the frame. Frames have two important features: A single frame identifies a set of objects(those objects that are "allocated in the frame") which can be destroyed (or declared dead) in a popoperation (see mps_ap_frame_pop); They are arranged in a partially ordered sequence (this isimportant when the pop operation is used). A fuller and more useful description is found in the APstack protocol document (protocol.mps.alloc-point.stack).
A result code in the usual way. The creation of new frame objects (which is implicit in theaction of this function) can consume resources, so this function can fail because there areinsufficient resources. This function may fail if the correct protocol is not followed by theclient.
-[missing]
+This function declares a new frame in the specified allocation point, makes that new frame achild of the current frame, changes the current frame to be the newly created frame, and returns ahandle to the frame. Frames have two important features: A single frame identifies a set of objects(those objects that are "allocated in the frame") which can be destroyed (or declared dead) in a popoperation (see mps_ap_frame_pop); They are arranged in a partially ordered sequence (this isimportant when the pop operation is used). A fuller and more useful description is found in the APstack protocol document (protocol.mps.alloc-point.stack).
Errors can either be because the client hasn't followed the correct protocol in which casethere isn't much that we can recommend or else because some needed resource isn't available. Theusual course of actions when short of resources is recommended.
+[missing]
- mps_ap_frame_pop, protocol.mps.alloc-point.stack
Errors can either be because the client hasn't followed the correct protocol in which casethere isn't much that we can recommend or else because some needed resource isn't available. Theusual course of actions when short of resources is recommended.
-mps_arena_clamp -
mps_ap_frame_pop,
+protocol.mps.alloc-point.stack
-
+ mps_arena_clamp puts the specified arena into the clamped state.
mps_arena_clampArena.
+ - extern void mps_arena_clamp(mps_arena_t);
mps_arena_clamp puts the specified arena into the clamped state.
arena -- the arena to be put i nto the clamped state
+Arena.
-None.
+extern void mps_arena_clamp(mps_arena_t);
mps.h
+arena -- the arena to be put i nto the clamped state
- mps_arena_clamp puts the specified arena into the clamped state. In the clamped state, noobject motion will occur and the staleness of location dependencies will not change. All referencesto objects loaded while the arena is clamped will keep the same binary representation until after itis released.
None.
-In a clamped arena, incremental collection may still occur, but it will not be visible tothe mutator and no new collections will begin. Space used by unreachable objects will not berecycled until the arena becomes unclamped.
+mps.h
-mps_arena_clamp puts the specified arena into the clamped state. In the clamped state, noobject motion will occur and the staleness of location dependencies will not change. All referencesto objects loaded while the arena is clamped will keep the same binary representation until after itis released.
In a clamped arena, incremental collection may still occur, but it will not be visible tothe mutator and no new collections will begin. Space used by unreachable objects will not berecycled until the arena becomes unclamped.
- mps_arena_park, mps_arena_release
mps_arena_class_cl -
+mps_arena_park,
+mps_arena_release
- mps_arena_class_cl returns the client arena class.
mps_arena_class_clArena.
+ mps_arena_class_t mps_arena_class_cl(void)
mps_arena_class_cl returns the client arena class.
None.
+Arena.
-Returns the client arena class.
+mps_arena_class_t mps_arena_class_cl(void)
mpsacl.h
+None.
- This function is used to get hold of the client arena class, for the purpose of passing itto mps_arena_create.
Returns the client arena class.
+ + +mpsacl.h
+ + +This function is used to get hold of the client arena class, for the purpose of passing itto mps_arena_create.
mps_arena_t arena; @@ -2705,121 +3135,123 @@ int main(void)-
None.
+None.
- A client arena gets its managed memory from the client. This memory block is passed when thearena is created. When creating a client arena, mps_arena_create takes two extraarguments:
mps_res_t mps_arena_create(mps_arena_t *mps_arena_o, mps_arena_class_t mps_arena_class_cl,size_t size, void *block)
A client arena gets its managed memory from the client. This memory block is passed when thearena is created. When creating a client arena, mps_arena_create takes two extraarguments:
block is the address of the memory block managed by the arena, andsize is its size in bytes. If mps_arena_create returnsMPS_RES_MEMORY, then the block was too small to hold the internal arena structures.Allocate a (much) larger one, and try again. mps_arena_create returnsMPS_RES_FAIL, if the MPS library is copy-protected by a security device, such as adongle, and a valid security device cannot be found.
mps_res_t mps_arena_create(mps_arena_t *mps_arena_o, mps_arena_class_t mps_arena_class_cl,size_t size, void *block)
block is the address of the memory block managed by the arena, andsize is its size in bytes. If mps_arena_create returnsMPS_RES_MEMORY, then the block was too small to hold the internal arena structures.Allocate a (much) larger one, and try again. mps_arena_create returnsMPS_RES_FAIL, if the MPS library is copy-protected by a security device, such as adongle, and a valid security device cannot be found.
mps_arena_class_t mps_arena_class_t"m ps_arena_class_t " is the type of arena classes.
+"m ps_arena_class_t " is the type of arena classes.
-Arena.
+Arena.
- typedef struct mps_arena_s *mps_arena_t;
mps_arena_class_s is an incomplete structure type used only to declare the opaque type mps_arena_class_t.
typedef struct mps_arena_s *mps_arena_t;
mps_arena_class_s is an incomplete structure type used only to declare the opaque type mps_arena_class_t.
mps.h
+mps.h
- mps_arena_class_t is the type of arena classes. It is opaque.
mps_arena_class_t is the type of arena classes. It is opaque.
The definition of the client arena class in the "mpsacl.h" header:
+ extern mps_arena_class_t mps_arena_class_cl(void);
The definition of the client arena class in the "mpsacl.h" header:
+extern mps_arena_class_t mps_arena_class_cl(void);
None.
+None.
-mps_arena_class_vm mps_arena_class_vm mps_arena_class_vm returns the virtual memory arena class.
mps_arena_class_vm returns the virtual memory arena class.
Arena.
+Arena.
- mps_arena_class_t mps_arena_class_vm(void)
mps_arena_class_t mps_arena_class_vm(void)
None.
+None.
-Returns the virtual memory arena class.
+Returns the virtual memory arena class.
-mpsavm.h
+mpsavm.h
- This function is used to get hold of the virtual memory arena class, for the purpose ofpassing it to mps_arena_create. The VM arenas use the OS virtual memory interfaces toallocate memory. The chief consequence of this is that the arena can manage many more virtualaddresses than it needs to commit memory to. This gives it flexibility as to where to place objects,which reduces fragmentation and helps make garbage collection more efficient.
This class is similar to mps_arena_class_vmnz but uses a more complex placementpolicy, which is more suited to copying garbage collection.
This function is used to get hold of the virtual memory arena class, for the purpose ofpassing it to mps_arena_create. The VM arenas use the OS virtual memory interfaces toallocate memory. The chief consequence of this is that the arena can manage many more virtualaddresses than it needs to commit memory to. This gives it flexibility as to where to place objects,which reduces fragmentation and helps make garbage collection more efficient.
This class is similar to mps_arena_class_vmnz but uses a more complex placementpolicy, which is more suited to copying garbage collection.
mps_arena_t arena; @@ -2840,19 +3272,24 @@ int main(void)-
None.
+None.
- mps_arena_create, mps_arena_class_vmnz
+
+mps_arena_create,
+
+mps_arena_class_vmnz
A virtual memory arena gets its managed memory from the operating system's virtual memoryservices. An initial address space size is passed when the arena is created. When creating a virtualmemory arena, mps_arena_create takes one extra argument:
A virtual memory arena gets its managed memory from the operating system's virtual memoryservices. An initial address space size is passed when the arena is created. When creating a virtualmemory arena, mps_arena_create takes one extra argument:
mps_res_t mps_arena_create(mps_arena_t *arena_o,
@@ -2860,59 +3297,59 @@ int main(void)
size_t size)
- size is the initial amount of virtual address space, in bytes, that the arenawill reserve (this space is initially reserved so that the arena can subsequently use it withoutinterference from other parts of the program, but most of it is not committed, so it don't requireany RAM or backing store). The arena may allocate more virtual address space beyond this initialreservation as and when it deems it necessary. The MPS is most efficient if you reserve an addressspace that is several times larger than your peak memory usage.
size is the initial amount of virtual address space, in bytes, that the arenawill reserve (this space is initially reserved so that the arena can subsequently use it withoutinterference from other parts of the program, but most of it is not committed, so it don't requireany RAM or backing store). The arena may allocate more virtual address space beyond this initialreservation as and when it deems it necessary. The MPS is most efficient if you reserve an addressspace that is several times larger than your peak memory usage.
mps_arena_create returns MPS_RES_RESOURCE if it fails to reserveadequate address space to place the arena in; possibly other parts of the program are reserving toomuch virtual memory. It returns MPS_RES_MEMORY when it fails to allocate memory for theinternal arena structures; either size was far too small or you ran out of swap space.It returns MPS_RES_FAIL, if the library is copy-protected by a security device, suchas a dongle, and a valid security device cannot be found.
mps_arena_create returns MPS_RES_RESOURCE if it fails to reserveadequate address space to place the arena in; possibly other parts of the program are reserving toomuch virtual memory. It returns MPS_RES_MEMORY when it fails to allocate memory for theinternal arena structures; either size was far too small or you ran out of swap space.It returns MPS_RES_FAIL, if the library is copy-protected by a security device, suchas a dongle, and a valid security device cannot be found.
Virtual memory arenas are not available on the Mac platforms, other than MacOS X. You willget a linking error, if you attempt to use this function.
+Virtual memory arenas are not available on the Mac platforms, other than MacOS X. You willget a linking error, if you attempt to use this function.
-mps_arena_class_vmnz mps_arena_class_vmnz An arena class like mps_arena_class_vm but with a different placement policy.
An arena class like mps_arena_class_vm but with a different placement policy.
Arena.
+Arena.
- mps_arena_class_t mps_arena_class_vmnz(void);
mps_arena_class_t mps_arena_class_vmnz(void);
None.
+None.
-Returns the VMNZ arena class.
+Returns the VMNZ arena class.
-mpsavm.h
+mpsavm.h
- Returns the VMNZ arena class (stands for Virtual Memory No Zones, if you really care.) Thisclass can be passed to mps_arena_create in order to create a VMNZ arena. The VMNZarenas use the OS virtual memory interfaces to allocate memory. The chief consequence of this isthat the arena can manage many more virtual addresses than it needs to commit memory to. This givesit flexibility as to where to place objects.
Returns the VMNZ arena class (stands for Virtual Memory No Zones, if you really care.) Thisclass can be passed to mps_arena_create in order to create a VMNZ arena. The VMNZarenas use the OS virtual memory interfaces to allocate memory. The chief consequence of this isthat the arena can manage many more virtual addresses than it needs to commit memory to. This givesit flexibility as to where to place objects.
This class is similar to mps_arena_class_vm but uses a simpler placementpolicy, that makes it slightly faster.
This class is similar to mps_arena_class_vm but uses a simpler placementpolicy, that makes it slightly faster.
mps_arena_t arena; @@ -2932,197 +3369,210 @@ int main(void) }-
+ -
No errors.
+No errors.
- mps_arena_create, mps_arena_class_vm
+mps_arena_create,
-
mps_arena_class_vm
- This class takes an extra argument when used in mps_arena_create (see example).The extra parameter should be of type size_t. It specifies the amount of virtualaddress space, in bytes, that this arena should use. The arena will reserve this amount of virtualaddress space from the OS during initialization. It will not subsequently use any more address space(compare with mps_arena_class_vm which can grow).
mps_arena_create returns MPS_RES_RESOURCE if it fails to reserveadequate address space to place the arena in; possibly other parts of the program are reserving toomuch virtual memory. It returns MPS_RES_MEMORY when it fails to allocate memory for theinternal arena structures; either size was far too small or you ran out of swap space.It returns MPS_RES_FAIL, if the library is copy-protected by a security device, suchas a dongle, and a valid security device cannot be found.
Virtual memory arenas are not available on the Mac platforms, other than MacOS X. You willget a linking error, if you attempt to use this function.
+This class takes an extra argument when used in mps_arena_create (see example).The extra parameter should be of type size_t. It specifies the amount of virtualaddress space, in bytes, that this arena should use. The arena will reserve this amount of virtualaddress space from the OS during initialization. It will not subsequently use any more address space(compare with mps_arena_class_vm which can grow).
mps_arena_create returns MPS_RES_RESOURCE if it fails to reserveadequate address space to place the arena in; possibly other parts of the program are reserving toomuch virtual memory. It returns MPS_RES_MEMORY when it fails to allocate memory for theinternal arena structures; either size was far too small or you ran out of swap space.It returns MPS_RES_FAIL, if the library is copy-protected by a security device, suchas a dongle, and a valid security device cannot be found.
mps_arena_collect Virtual memory arenas are not available on the Mac platforms, other than MacOS X. You willget a linking error, if you attempt to use this function.
-mps_arena_collect mps_arena_collect collects the arena and puts it in the parked state.
mps_arena_collect collects the arena and puts it in the parked state.
Arena.
+Arena.
- void mps_arena_collect(mps_arena_t arena);
void mps_arena_collect(mps_arena_t arena);
arena the arena to collect
+arena the arena to collect
-mps.h
+mps.h
- mps_arena_collect collects the arena and puts it in the parked state. Collecting the arenaattempts to recycle as many unreachable objects as possible and reduce the size of the arena as muchas possible (though in some cases it may increase because it becomes more fragmented). If you do notwant the arena to be in the parked state, you must explicitly call mps_arena_release aftermps_arena_collect.
Note that the collector may not be able to recycle some objects (such as those near thedestination of ambiguous references) even though they are not reachable.
+mps_arena_collect collects the arena and puts it in the parked state. Collecting the arenaattempts to recycle as many unreachable objects as possible and reduce the size of the arena as muchas possible (though in some cases it may increase because it becomes more fragmented). If you do notwant the arena to be in the parked state, you must explicitly call mps_arena_release aftermps_arena_collect.
Note that the collector may not be able to recycle some objects (such as those near thedestination of ambiguous references) even though they are not reachable.
-[missing]
+[missing]
-No errors.
+No errors.
- mps_arena_park, mps_arena_release
-
None.
+mps_arena_park,
+mps_arena_release
-mps_arena_commit_limit None.
- +mps_arena_commit_limitReturns the current commit limit associated with the arena in bytes.
+Arena
+Returns the current commit limit associated with the arena in bytes.
- size_t mps_arena_commit_limit(mps_arena_t arena)
Arena
-arena -- the arena
+size_t mps_arena_commit_limit(mps_arena_t arena)
Returns the current commit limit as a number of bytes in a size_t
+arena -- the arena
-mps.h
+Returns the current commit limit as a number of bytes in a size_t
- Returns the current commit limit associated with the arena in bytes. The commit limit can bechanged using the function mps_commit_limit_set. The commit limit is used to control how much memorythe MPS can obtain from the OS. See Arena Protocol for details.
mps.h
- limit = mps_arena_commit_limit(arena);
Returns the current commit limit associated with the arena in bytes. The commit limit can bechanged using the function mps_commit_limit_set. The commit limit is used to control how much memorythe MPS can obtain from the OS. See Arena Protocol for details.
No errors.
+limit = mps_arena_commit_limit(arena);
mps_arena_committed, mps_arena_commit_limit_set
No errors.
-None.
+-
mps_arena_commit_limit_set mps_arena_committed,
+mps_arena_commit_limit_set
-None.
-Changes the current commit limit associated with the arena.
+mps_arena_commit_limit_setArena
+ - mps_res_t mps_arena_commit_limit_set(mps_arena_t arena, size_t limit)
Changes the current commit limit associated with the arena.
-arena -- the arena
+Arena
-limit -- the new commit limit in bytes
+mps_res_t mps_arena_commit_limit_set(mps_arena_t arena, size_t limit)
Returns a result code.
+arena -- the arena
-mps.h
+limit -- the new commit limit in bytes
- The commit limit of the arena is set to the limit given. The commit limit controls how muchmemory the MPS will obtain from the OS. See Arena Protocol for details. The commit limit cannot beset to a value that is lower than the number of bytes that the MPS is using. If an attempt is madeto set the commit limit to a value greater than or equal to that returned bymps_arena_committed then it will succeed. If an attempt is made to set the commit limitto a value less than that returned by mps_arena_committed then it will succeed only ifthe amount committed by the MPS can be reduced by reducing the amount of spare committed memory; insuch a case the spare committed memory will be reduced appropriately and the attempt will succeed.
Returns a result code.
-mps.h
+ + +The commit limit of the arena is set to the limit given. The commit limit controls how muchmemory the MPS will obtain from the OS. See Arena Protocol for details. The commit limit cannot beset to a value that is lower than the number of bytes that the MPS is using. If an attempt is madeto set the commit limit to a value greater than or equal to that returned bymps_arena_committed then it will succeed. If an attempt is made to set the commit limitto a value less than that returned by mps_arena_committed then it will succeed only ifthe amount committed by the MPS can be reduced by reducing the amount of spare committed memory; insuch a case the spare committed memory will be reduced appropriately and the attempt will succeed.
do {
@@ -3133,155 +3583,171 @@ do {
- Returns MPS_RES_OK when successful, and some other result code when not.
Returns MPS_RES_OK when successful, and some other result code when not.
mps_arena_committed, mps_arena_commit_limit, mps_arena_spare_commit_limit_set
+
+mps_arena_committed,
+
+mps_arena_commit_limit,
+
+mps_arena_spare_commit_limit_set
mps_arena_commit_limit_set puts a limit on all memory committed by the MPS. The"spare committed" memory can be limited separately with mps_arena_spare_commit_limit_set. Note that "spare committed" memory is subject toboth limits; there cannot be more spare committed memory than the spare commit limit, and therecan't be so much spare committed memory that there is more committed memory than the commit limit.
mps_arena_commit_limit_set puts a limit on all memory committed by the MPS. The"spare committed" memory can be limited separately with mps_arena_spare_commit_limit_set. Note that "spare committed" memory is subject toboth limits; there cannot be more spare committed memory than the spare commit limit, and therecan't be so much spare committed memory that there is more committed memory than the commit limit.
mps_arena_committed mps_arena_committed mps_arena_committed returns the amount of memory (backing store) in use by the arena, bothfor storing client objects and for its own data structures.
mps_arena_committed returns the amount of memory (backing store) in use by the arena, bothfor storing client objects and for its own data structures.
Arena.
+Arena.
- extern size_t mps_arena_committed(mps_arena_t arena)
extern size_t mps_arena_committed(mps_arena_t arena)
arena -- the arena
+arena -- the arena
-Returns a number of bytes (the amount of committed memory) as a size_t.
+Returns a number of bytes (the amount of committed memory) as a size_t.
-mps.h
+mps.h
- mps_arena_committed returns the amount of memory (backing store) in use by the arena (alsoknown as "committed memory"). The value returned is a number of bytes.
mps_arena_committed returns the amount of memory (backing store) in use by the arena (alsoknown as "committed memory"). The value returned is a number of bytes.
Committed memory may be used both for storing client objects and for storing MPS datastructures. In addition the MPS maintains committed memory which is not being used (for either ofthe above purposes). This memory is known as "spare committed" memory (see mps_arena_spare_committed). The amount of "spare committed" memory can change atany time, in particular in will be reduced as appropriate in order meet client requests.
Committed memory may be used both for storing client objects and for storing MPS datastructures. In addition the MPS maintains committed memory which is not being used (for either ofthe above purposes). This memory is known as "spare committed" memory (see mps_arena_spare_committed). The amount of "spare committed" memory can change atany time, in particular in will be reduced as appropriate in order meet client requests.
The reasons that the committed memory (as return by this function) might be large than thesum of the sizes of client allocated objects are:
+The reasons that the committed memory (as return by this function) might be large than thesum of the sizes of client allocated objects are:
some memory is used internally by the MPS to manage its own data structures and to recordinformation about client objects (such as free lists, page tables, colour tables, statistics, etc).
some memory is used internally by the MPS to manage its own data structures and to recordinformation about client objects (such as free lists, page tables, colour tables, statistics, etc).
operating systems (and hardware) typically restrict programs to requesting and releasingmemory with a certain granularity (for example, pages), so extra memory is committed when thisrounding is necessary.
operating systems (and hardware) typically restrict programs to requesting and releasingmemory with a certain granularity (for example, pages), so extra memory is committed when thisrounding is necessary.
there might be "spare committed" memory.
there might be "spare committed" memory.
The amount of committed memory is a good measure of how much virtual memory resource ("swapspace") the MPS is using from the OS.
+The amount of committed memory is a good measure of how much virtual memory resource ("swapspace") the MPS is using from the OS.
- This function may be called whether the arena is unclamped, clamped or parked, if calledwhen the arena in unclamped then the value may change after this function returns. A possible usemight be to call it just after mps_arena_collect to (over-)estimate the size of the heap.
This function may be called whether the arena is unclamped, clamped or parked, if calledwhen the arena in unclamped then the value may change after this function returns. A possible usemight be to call it just after mps_arena_collect to (over-)estimate the size of the heap.
If you want to know how much memory the MPS is using then you're probably interested in the value mps_arena_committed() - mps_arena_spare_committed().
If you want to know how much memory the MPS is using then you're probably interested in the value mps_arena_committed() - mps_arena_spare_committed().
The amount of committed memory can be limited with the function mps_arena_commit_limit.
The amount of committed memory can be limited with the function mps_arena_commit_limit.
mps_arena_collect, mps_arena_clamp, mps_arena_park, mps_arena_release
+
+mps_arena_collect,
+
+mps_arena_clamp,
+
+mps_arena_park,
+
+mps_arena_release
-
+-
-mps_arena_create mps_arena_create mps_arena_create is used to create an arena.
mps_arena_create is used to create an arena.
Arena.
+Arena.
- mps_res_t mps_arena_create(mps_arena_t *mps_arena_o, mps_arena_class_t mps_arena_class, ...)
mps_res_t mps_arena_create(mps_arena_t *mps_arena_o, mps_arena_class_t mps_arena_class, ...)
mps_arena_o pointer to a variable to store the new arena in
mps_arena_o pointer to a variable to store the new arena in
mps_arena_class the arena class
mps_arena_class the arena class
... initialization arguments for the arena class
... initialization arguments for the arena class
Different for each arena class. See mps_arena_class_*.
Different for each arena class. See mps_arena_class_*.
If the return value is MPS_RES_OK, the new arena is in *mps_arena_o.
If the return value is MPS_RES_OK, the new arena is in *mps_arena_o.
mps.h
+mps.h
- mps_arena_create is used to create an arena.
mps_arena_create is used to create an arena.
mps_arena_t arena; @@ -3301,102 +3767,114 @@ int main(void)-
mps_arena_create returns MPS_RES_FAIL, if the MPS library iscopy-protected by a security device, such as a dongle, and a valid security device cannot be found.Other error codes are specific to each arena class. See mps_arena_class_*.
mps_arena_create returns MPS_RES_FAIL, if the MPS library iscopy-protected by a security device, such as a dongle, and a valid security device cannot be found.Other error codes are specific to each arena class. See mps_arena_class_*.
mps_arena_create_v, mps_arena_class_*, mps_arena_destroy
+
+mps_arena_create_v,
+
+mps_arena_class_*,
+
+mps_arena_destroy
mps_arena_create_v mps_arena_create_v mps_arena_create_v is used to create an arena.
mps_arena_create_v is used to create an arena.
Arena.
+Arena.
- mps_res_t mps_arena_create_v(mps_arena_t *mps_arena_o, mps_arena_class_t mps_arena_class, va_list args)
mps_res_t mps_arena_create_v(mps_arena_t *mps_arena_o, mps_arena_class_t mps_arena_class, va_list args)
mps_arena_o pointer to a variable to store the new arena in
mps_arena_o pointer to a variable to store the new arena in
mps_arena_class the arena class
mps_arena_class the arena class
args initialization arguments for the arena class
args initialization arguments for the arena class
Different for each arena class. See mps_arena_class_*.
Different for each arena class. See mps_arena_class_*.
If the return value is MPS_RES_OK, the new arena is in *mps_arena_o.
If the return value is MPS_RES_OK, the new arena is in *mps_arena_o.
mps.h
+mps.h
- mps_arena_create_v is used to create an arena. It is exactly the same as mps_arena_create, except that it takes the arena class initialization arguments in a va_list .
mps_arena_create_v is used to create an arena. It is exactly the same as mps_arena_create, except that it takes the arena class initialization arguments in a va_list .
mps_arena_create_v returns MPS_RES_FAIL, if the MPS library is copy-protected by a security device, such as a dongle, and a valid security device cannot be found. Other error codes are specific to each arena class. See mps_arena_class_*.
mps_arena_create_v returns MPS_RES_FAIL, if the MPS library is copy-protected by a security device, such as a dongle, and a valid security device cannot be found. Other error codes are specific to each arena class. See mps_arena_class_*.
mps_arena_create, mps_arena_class_*, mps_arena_destroy
+
+mps_arena_create,
+
+mps_arena_class_*,
+
+mps_arena_destroy
mps_arena_formatted_objects_walk mps_arena_formatted_objects_walk mps_arena_formatted_objects_walk
mps_arena_formatted_objects_walk
mps_arena_formatted_objects_walk is used to iterate over all formatted objects in the MPS heap.
mps_arena_formatted_objects_walk is used to iterate over all formatted objects in the MPS heap.
None.
+None.
- mps_arena_formatted_objects_walk(mps_arena, client_step_function, client_step_closure_p,client_step_closure_s);
mps_arena_formatted_objects_walk(mps_arena, client_step_function, client_step_closure_p,client_step_closure_s);
extern void mps_arena_formatted_objects_walk(mps_arena_t, @@ -3405,198 +3883,212 @@ extern void mps_arena_formatted_objects_walk(mps_arena_t,-
(mps_arena_t mps_arena, mps_formatted_objects_stepper_t stepper, void *p, size_t s)
(mps_arena_t mps_arena, mps_formatted_objects_stepper_t stepper, void *p, size_t s)
mps_arena in an MPS arena object.
mps_arena in an MPS arena object.
stepper is a client-supplied function (pointer) of the right type (see mps_formatted_objects_stepper_t). This function is applied to every object in allformatted pools. This function should take the argument list (mps_addr_t object, mps_fmt_t format,mps_pool_t pool, void *p, size_t s). object is the object to which the function is being applied. format is the format (an MPS format object) of the object, pool is the pool in which the object resides, p and s are copies of the corresponding values that the client passed into mps_arena_formatted_objects_walk originally.
stepper is a client-supplied function (pointer) of the right type (see mps_formatted_objects_stepper_t). This function is applied to every object in allformatted pools. This function should take the argument list (mps_addr_t object, mps_fmt_t format,mps_pool_t pool, void *p, size_t s). object is the object to which the function is being applied. format is the format (an MPS format object) of the object, pool is the pool in which the object resides, p and s are copies of the corresponding values that the client passed into mps_arena_formatted_objects_walk originally.
p and s are passed into the function specified by the stepper argument whenever the MPS calls that function. See mps_formatted_objects_stepper_t.
p and s are passed into the function specified by the stepper argument whenever the MPS calls that function. See mps_formatted_objects_stepper_t.
None.
+None.
-mps.h
+mps.h
- mps_arena_formatted_objects_walk is used to iterate over all formatted objects in the MPSheap. A client-supplied function is called for every object in all formatted pools; the object, theformat, and the pool are passed to the user supplied function, as well as some closure variables.
mps_arena_formatted_objects_walk is used to iterate over all formatted objects in the MPSheap. A client-supplied function is called for every object in all formatted pools; the object, theformat, and the pool are passed to the user supplied function, as well as some closure variables.
Applies stepper function to a pool-class-specific collection of objects (that is, the poolclass determines which objects in its instances get walked). Typically pool classes will arrangethat all validly formatted objects are walked. During a trace this will in general be only the blackobjects, though the leaf pool class (LO), for example, will walk all objects since they are validlyformatted whether they are black or white. Padding objects may be walked at the pool classesdiscretion, the client should handle this case.
+Applies stepper function to a pool-class-specific collection of objects (that is, the poolclass determines which objects in its instances get walked). Typically pool classes will arrangethat all validly formatted objects are walked. During a trace this will in general be only the blackobjects, though the leaf pool class (LO), for example, will walk all objects since they are validlyformatted whether they are black or white. Padding objects may be walked at the pool classesdiscretion, the client should handle this case.
-[not yet]
+[not yet]
-There are none.
+There are none.
- mps_amc_apply (the historical walker), mps_formatted_objects_stepper_t
+mps_amc_apply (the
+historical walker),
-
mps_formatted_objects_stepper_t
-mps_arena_park mps_arena_park mps_arena_park puts the specified arena into the parked state.
mps_arena_park puts the specified arena into the parked state.
Arena.
+Arena.
- extern void mps_arena_park(mps_arena_t arena);
extern void mps_arena_park(mps_arena_t arena);
arena the arena to park
arena the arena to park
None.
+None.
-mps.h
+mps.h
- mps_arena_park puts the specified arena into the parked state. While an arena is parked,no object motion will occur and the staleness of location dependencies will not change. Allreferences to objects loaded while the arena is parked will keep the same binary representationuntil after it is released.
Any current collection is run to completion before the arena is parked, and no newcollections will start. When an arena is in the parked state, it is necessarily not in the middle ofa collection.
+mps_arena_park puts the specified arena into the parked state. While an arena is parked,no object motion will occur and the staleness of location dependencies will not change. Allreferences to objects loaded while the arena is parked will keep the same binary representationuntil after it is released.
Any current collection is run to completion before the arena is parked, and no newcollections will start. When an arena is in the parked state, it is necessarily not in the middle ofa collection.
-Can't fail.
+Can't fail.
- mps_arena_clamp, mps_arena_release
-
None.
+mps_arena_clamp,
+mps_arena_release
-mps_arena_release None.
- +mps_arena_release mps_arena_release puts the specified arena into the unclamped state.
Arena.
+mps_arena_release puts the specified arena into the unclamped state.
extern void mps_arena_release(mps_arena_t);
Arena.
-extern void mps_arena_release(mps_arena_t);
None.
+mps.h
+None.
- mps_arena_release puts the specified arena into the unclamped state. While an arena isunclamped, garbage collection, object motion, and other background activity can take place.
mps.h
-mps_arena_release puts the specified arena into the unclamped state. While an arena isunclamped, garbage collection, object motion, and other background activity can take place.
Can't fail.
+ mps_arena_clamp, mps_arena_park
Can't fail.
-None.
+-
mps_arena_roots_walk mps_arena_clamp,
+mps_arena_park
-None.
- mps_arena_roots_walk is used to iterate over all roots of the MPS heap.
mps_arena_roots_walkNone.
+ - mps_arena_roots_walk(mps_arena, client_step_function, client_step_closure_p,client_step_closure_s);
mps_arena_roots_walk is used to iterate over all roots of the MPS heap.
None.
+ + +mps_arena_roots_walk(mps_arena, client_step_function, client_step_closure_p,client_step_closure_s);
extern void mps_arena_roots_walk(mps_arena_t, @@ -3605,509 +4097,328 @@ extern void mps_arena_formatted_objects_walk(mps_arena_t,-
(mps_arena_t mps_arena, mps_roots_stepper_t stepper, void *p, size_t s)
(mps_arena_t mps_arena, mps_roots_stepper_t stepper, void *p, size_t s)
mps_arena in an MPS arena object.
mps_arena in an MPS arena object.
stepper is a client-supplied function (pointer) of the right type (see mps_roots_stepper_t). This function is applied to every reference to the heap fromevery root object registered with the arena. This function should take the argument list (mps_addr_t *ref, mps_root_t root, void *p, size_t s). ref is the address of a root which references an object in the arena. root is the registered root (an MPS root object) of which ref is a single reference, p and s are copies of the corresponding values that the client passed into mps_arena_roots_walk originally.
stepper is a client-supplied function (pointer) of the right type (see mps_roots_stepper_t). This function is applied to every reference to the heap fromevery root object registered with the arena. This function should take the argument list (mps_addr_t *ref, mps_root_t root, void *p, size_t s). ref is the address of a root which references an object in the arena. root is the registered root (an MPS root object) of which ref is a single reference, p and s are copies of the corresponding values that the client passed into mps_arena_roots_walk originally.
p and s are passed into the function specified by the stepper argument whenever the MPS calls that function. See mps_roots_stepper_t
p and s are passed into the function specified by the stepper argument whenever the MPS calls that function. See mps_roots_stepper_t
None.
+None.
-mps.h
+mps.h
- mps_arena_roots_walk is used to iterate over all roots of the MPS heap. A client-suppliedfunction is called for every root reference which points to an object in any automatically managedpools; the address of the root reference and the MPS root object are passed to the user suppliedfunction, as well as some closure variables.
mps_arena_roots_walk is used to iterate over all roots of the MPS heap. A client-suppliedfunction is called for every root reference which points to an object in any automatically managedpools; the address of the root reference and the MPS root object are passed to the user suppliedfunction, as well as some closure variables.
May only be called when the arena is in the parked state.
+May only be called when the arena is in the parked state.
- Applies stepper to each reference in any roots registered with the arena and which point toobjects in automatically managed pools. If the root has rank MPS_RANK_AMBIG then the reference mightnot be to the start of an object; the client should handle this case. There is no guarantee that thereference corresponds to the actual location that holds the pointer to the object (since this mightbe a register, for example) - but the actual location will be passed if possible. This may aidanalysis of roots via a debugger.
Applies stepper to each reference in any roots registered with the arena and which point toobjects in automatically managed pools. If the root has rank MPS_RANK_AMBIG then the reference mightnot be to the start of an object; the client should handle this case. There is no guarantee that thereference corresponds to the actual location that holds the pointer to the object (since this mightbe a register, for example) - but the actual location will be passed if possible. This may aidanalysis of roots via a debugger.
+ -
[not yet]
+[not yet]
-There are none.
+There are none.
--
mps_arena_formatted_objects_walk
mps_roots_stepper_t
+-
mps_arena_formatted_objects_walk
-mps_arena_spare_commit_limit mps_arena_spare_commit_limit Retrieves the value of the spare commit limit (previously set with mps_arena_spare_commit_limit_set).
Retrieves the value of the spare commit limit (previously set with mps_arena_spare_commit_limit_set).
Arena.
+Arena.
- extern size_t mps_arena_spare_commit_limit(mps_arena_t arena)
extern size_t mps_arena_spare_commit_limit(mps_arena_t arena)
mps_arena_t arena
Specifies the arena to retrieve the spare commit limit of.
+mps_arena_t arena
Specifies the arena to retrieve the spare commit limit of.
-Returns, as a size_t, the value of the spare commit limit.
+Returns, as a size_t, the value of the spare commit limit.
-mps.h
+mps.h
- Returns the current value of the spare commit limit which is the value most recently setwith mps_arena_spare_commit_limit_set. (See mps_arena_spare_commit_limit_set fordetails).
Returns the current value of the spare commit limit which is the value most recently setwith mps_arena_spare_commit_limit_set. (See mps_arena_spare_commit_limit_set fordetails).
[missing]
+[missing]
-There are no errors.
+There are no errors.
- mps_arena_spare_commit_limit_set
-
None.
+mps_arena_spare_commit_limit_set
-mps_arena_spare_commit_limit_set None.
- mps_arena_spare_commit_limit_set
mps_arena_spare_commit_limit_setSets the limit of the amount of spare committed memory.
+mps_arena_spare_commit_limit_set
Arena.
+Sets the limit of the amount of spare committed memory.
- extern void mps_arena_spare_commit_limit_set(mps_arena_t arena, size_t limit)
Arena.
- mps_arena_t arena
extern void mps_arena_spare_commit_limit_set(mps_arena_t arena, size_t limit)
The arena to which the new limit should apply.
-size_t limit
+The value of the new limit (specified in bytes).
+mps_arena_t arena
The arena to which the new limit should apply.
-size_t limit
-mps.h
+The value of the new limit (specified in bytes).
-+
mps.h
-The limit argument specifies a new "spare commit limit". The spare commit limit specifiesthe maximum amount of bytes of "spare committed" memory the MPS is allowed to have. Setting it to avalue lower than the current amount of spare committed memory would immediately cause sufficientspare committed memory to be uncommitted so as to bring the value under the limit. In particularsetting to 0 will mean that the MPS will have no "spare committed" memory.
+ - "spare committed" memory is the term for describing memory which the arena is managing asfree memory (so not in use by any pool and not otherwise in use for obscure internal reasons) butwhich remains committed (mapped from the OS). It is used by the arena to (attempt to) avoid callingthe OS to repeatedly unmap and map areas of VM. "spare committed" memory is counted as committedmemory as counted by mps_arena_committed and restricted by mps_arena_commit_limit.
Non-VM arenas do not have this concept, but they support the two functions mps_arena_spare_commit_limit and mps_arena_spare_commit_limit_set. The functions simply get andretrieve a value but do nothing else in that case.
Initially the value is some configuration-dependent value.
+The limit argument specifies a new "spare commit limit". The spare commit limit specifiesthe maximum amount of bytes of "spare committed" memory the MPS is allowed to have. Setting it to avalue lower than the current amount of spare committed memory would immediately cause sufficientspare committed memory to be uncommitted so as to bring the value under the limit. In particularsetting to 0 will mean that the MPS will have no "spare committed" memory.
- The value of the limit can be retrieved with mps_arena_spare_commit_limit.
"spare committed" memory is the term for describing memory which the arena is managing asfree memory (so not in use by any pool and not otherwise in use for obscure internal reasons) butwhich remains committed (mapped from the OS). It is used by the arena to (attempt to) avoid callingthe OS to repeatedly unmap and map areas of VM. "spare committed" memory is counted as committedmemory as counted by mps_arena_committed and restricted by mps_arena_commit_limit.
Non-VM arenas do not have this concept, but they support the two functions mps_arena_spare_commit_limit and mps_arena_spare_commit_limit_set. The functions simply get andretrieve a value but do nothing else in that case.
Initially the value is some configuration-dependent value.
-[missing]
+The value of the limit can be retrieved with mps_arena_spare_commit_limit.
There are no errors.
+[missing]
-There are no errors.
-None.
+ -mps_arena_spare_committed None.
- +mps_arena_spare_committedReturns the number of bytes of spare committed memory.
+Memory
+Returns the number of bytes of spare committed memory.
- size_t mps_arena_spare_committed(mps_arena_t);
Memory
-The arena to which the query applies.
+size_t mps_arena_spare_committed(mps_arena_t);
Returns the number of bytes of spare committed memory.
+ +The arena to which the query applies.
-mps.h
+Returns the number of bytes of spare committed memory.
-"Spare committed" memory is the term for describing memory which the arena is committed fromthe OS but which is free (so not in use by any pool and not otherwise in use for obscure internalreasons). It is used by the arena to (attempt to) avoid calling the OS to repeatedly uncommit andcommit areas of VM (because calling the OS to commit and uncommit memory is typically expensive)."Spare committed" memory can be used for grant client requests; if this is done when the MPS wouldotherwise have had to call the OS to commit more memory then the MPS has avoid some OS calls.
+ "spare committed" memory is counted as part of committed memory. The amount of committedmemory can be retrieved with mps_arena_committed (see mps_arena_committed).
mps.h
- The amount of "spare committed" memory can be limited by using mps_arena_spare_commit_limit_set (see mps_arena_spare_commit_limit_set ), and the valueof that limit can be retrieved with mps_arena_spare_commit_limit (see mps_arena_spare_commit_limit ). This is analogous to the functions for limiting theamount of committed memory.
"Spare committed" memory is the term for describing memory which the arena is committed fromthe OS but which is free (so not in use by any pool and not otherwise in use for obscure internalreasons). It is used by the arena to (attempt to) avoid calling the OS to repeatedly uncommit andcommit areas of VM (because calling the OS to commit and uncommit memory is typically expensive)."Spare committed" memory can be used for grant client requests; if this is done when the MPS wouldotherwise have had to call the OS to commit more memory then the MPS has avoid some OS calls.
-[missing]
+"spare committed" memory is counted as part of committed memory. The amount of committedmemory can be retrieved with mps_arena_committed (see mps_arena_committed).
The amount of "spare committed" memory can be limited by using mps_arena_spare_commit_limit_set (see mps_arena_spare_commit_limit_set ), and the valueof that limit can be retrieved with mps_arena_spare_commit_limit (see mps_arena_spare_commit_limit ). This is analogous to the functions for limiting theamount of committed memory.
[missing]
+[missing]
- mps_arena_spare_commit_limit_set, mps_arena_spare_commit_limit
[missing]
-None.
+-
mps_assert_default mps_arena_spare_commit_limit_set,
+mps_arena_spare_commit_limit
-None.
- mps_assert_default returns a pointer to the default assertion handler.
mps_bool_tAssertion.
+ -mps_bool_t is a transparent type, equivalent to int, that is used in the MPS C interfaceto indicate that a boolean value is intended.
None.
+Not applicable.
-None.
+Not applicable.
-A pointer to the default assertion handler.
+Not applicable.
-mps.h
+typedef int mps_bool_t;
mps_assert_default returns a pointer to the default assertion handler. It is intended tobe used in conjunction with mps_assert_install.
You may also call the default assertion handler directly, in which case the first, second,and third arguments must be non-NULL pointers to zero-terminated strings.
+mps.h
-When used as an input parameter to the MPS, a value of 0 indicates "false" and any othervalue indicates "true". As an output parameter or function return from the MPS, 0 indicates "false",and 1 indicates "true". Note that an mps_bool_t value can be used in a conditional context, suchas in an "if" statement.
Can't fail.
- - -"Assertion Protocol"
- - -None.
- - -mps_assert_install mps_assert_install installs the specified assertion handler as the current assertionhandler.
Assertion.
- - - mps_assert_t mps_assert_install(void my_assertion_handler);
my_assertion_handler the handler that you want to install
- - -A pointer to the previously installed assertion handler.
- - -mps.h
- - - mps_assert_install installs the specified assertion handler as the current assertionhandler. It returns a pointer to the previously installed assertion handler. Note that there is oneMPS assertion handler for the entire process (in particular it is not per arena).
-mps_assert_t old_handler;
-
-void my_assertion_handler(const char *cond,
-const char *id,
-const char *file, unsigned int line)
-{
- fatal_error_dialog("The Memory Pool System detected an inconsistency"
- "in file %s at line%u: %s\n", file, line, cond);
- old_handler(cond, id, file, line);
- abort();
- NOTREACHED;
-}
-
-/* ... */
-
- /* install the handler: */
- old_handler = mps_assert_install(my_assertion_handler);
-
- /* ... use the MPS ... */
-
- /* restore the old handler */
- (void) mps_assert_install(old_handler);
-
-
-
-None.
- - -mps_assert_t mps_assert_t is the type of assertion handlers in the MPS.
Assertion.
- - - typedef void (*mps_assert_t)(const char *, const char *, const char *, unsigned);
-
mps.h
- - - mps_assert_t is the type of assertion handlers in the MPS.
- - -
None.
- - -mps_bool_t mps_bool_t is a transparent type, equivalent to int, that is used in the MPS C interfaceto indicate that a boolean value is intended.
Not applicable.
- - -Not applicable.
- - -Not applicable.
- - - typedef int mps_bool_t;
mps.h
- - - When used as an input parameter to the MPS, a value of 0 indicates "false" and any othervalue indicates "true". As an output parameter or function return from the MPS, 0 indicates "false",and 1 indicates "true". Note that an mps_bool_t value can be used in a conditional context, suchas in an "if" statement.
if(mps_ld_isstale(&ld, space, obj)) {
@@ -4117,447 +4428,153 @@ const char *file, unsigned int line)
-None.
+None.
-mps_class_amc mps_class_amc+ -
mps_class_amc returns the pool class object for the Automatic Mostly Copying pool class.
mps_class_amc returns the pool class object for the Automatic Mostly Copying pool class.
Pool
+Pool
- mps_class_t mps_class_amc(void)
mps_class_t mps_class_amc(void)
No arguments.
+No arguments.
-Returns a pool class object.
+Returns a pool class object.
-mpscamc.h
+mpscamc.h
- This function returns an object of type mps_class_t which represents the Automatic MostlyCopying pool class.
This function returns an object of type mps_class_t which represents the Automatic MostlyCopying pool class.
This pool class requires an extra argument when used in mps_pool_create:
This pool class requires an extra argument when used in mps_pool_create:
res = mps_pool_create(&pool, arena, mps_class_amc(), format);-
The extra argument, format, should be of type mps_fmt_t and specifies the format of theobjects allocated in the pool.
The extra argument, format, should be of type mps_fmt_t and specifies the format of theobjects allocated in the pool.
An AMC pool is both scannable and collectable. Objects may contain exact references to otherobjects that will preserve such other objects. Objects may be reclaimed if they are not reachablefrom a root. Objects may move during collection, unless reachable via a (direct) ambiguousreference. Objects in an AMC pool may be registered for finalization. Exact (that is, non-ambiguous)references into an object in an AMC pool must be to the start of the object.
+An AMC pool is both scannable and collectable. Objects may contain exact references to otherobjects that will preserve such other objects. Objects may be reclaimed if they are not reachablefrom a root. Objects may move during collection, unless reachable via a (direct) ambiguousreference. Objects in an AMC pool may be registered for finalization. Exact (that is, non-ambiguous)references into an object in an AMC pool must be to the start of the object.
-The AMC pool class exploits assumptions about object lifetimes and inter-connectionvariously referred to as "the generational hypothesis". In particular, the following tendencies willbe efficiently exploited by such a pool:
+The AMC pool class exploits assumptions about object lifetimes and inter-connectionvariously referred to as "the generational hypothesis". In particular, the following tendencies willbe efficiently exploited by such a pool:
-- Most objects die young;
+- Most objects die young;
-- Objects that don't die young will live a long time;
+- Objects that don't die young will live a long time;
-- Most references are backwards in time.
+- Most references are backwards in time.
- mps_ap_frame_push and mps_ap_frame_pop may be used on an allocation point in an AMC pool.They do not declare the affected objects to be definitely dead (compare with the SNC pool class),but have an undefined effect on the collection strategy.
mps_ap_frame_push and mps_ap_frame_pop may be used on an allocation point in an AMC pool.They do not declare the affected objects to be definitely dead (compare with the SNC pool class),but have an undefined effect on the collection strategy.
If an allocation point is created in an AMC pool, the call to mps_ap_create will take noadditional parameters.
If an allocation point is created in an AMC pool, the call to mps_ap_create will take noadditional parameters.
+ -
mps_ap_frame_pop, mps_ap_frame_push, mps_ap_create
mps_class_epdl_debug Returns the EPDLDebug pool class.
- - -Debug.
- - - mps_class_t mps_class_epdl_debug(void)
Returns the EPDLDebug pool class.
- - -mpscepdl.h
- - - This function is used to get hold of the EPDLDebug pool class, for the purpose of passing itto mps_pool_create.
The EPDLDebug pool class is just like an EPDL pool class, except with debug featuresenabled.
- - -
-static mps_pool_debug_option_s debugOptions = { (void *)"postpost", 8 };
-
-if(mps_pool_create(&pool, arena, mps_class_epdl_debug(),
- &debugOptions, 8192, 135, 8)
- != MPS_RES_OK) {
- printf("Error creating pool!");
- exit(2);
-}
-
-
-
-Never fails.
- - - mps_class_epdl, mps_pool_debug_option_s
This pool class has four extra parameters to mps_pool_create: the first one is an mps_pool_debug_option_s structure (q.v.) for the debug options, and the rest are asfor EPDL, see mps_class_epdl for a description of those.
Apart from the debug features, the behaviour of this pool class is like EPDL. Usingfenceposts will, naturally, increase the size of objects, which might have an effect on theirplacement.
- - -mps_class_epdr_debug Returns the EPDRDebug pool class.
- - -Debug.
- - - mps_class_t mps_class_epdr_debug(void)
Returns the EPDRDebug pool class.
- - -mpscepdl.h
- - - This function is used to get hold of the EPDRDebug pool class, for the purpose of passing itto mps_pool_create.
The EPDRDebug pool class is just like an EPDR pool class, except with debug featuresenabled.
- - -
-static mps_pool_debug_option_s debugOptions = { (void *)"postpost", 8 };
-
-if(mps_pool_create(&pool, arena, mps_class_epdr_debug(),
- &debugOptions, 8192, 135, 8)
- != MPS_RES_OK) {
- printf("Error creating pool!");
- exit(2);
-}
-
-
-
-Never fails.
- - - mps_class_epdr, mps_pool_debug_option_s
This pool class has four extra parameters to mps_pool_create: the first one is an mps_pool_debug_option_s structure (q.v.) for the debug options, and the rest are asfor EPDR, see mps_class_epdr for a description of those.
Apart from the debug features, the behaviour of this pool class is like EPDR. Usingfenceposts will, naturally, increase the size of objects, which might have an effect on theirplacement.
- - -mps_class_mv2 mps_class_mv2 is a function that returns the MV2 pool class object.
Allocation point.
- - - mps_class_t mps_class_mv2(void);
C function
- - -None.
- - -The MV2 pool class object.
- - -mpscmv2.h
- - - The function mps_class_mv2 returns the MV2 pool class object, which can be used to create anMV2 pool instance by passing the class object as the mps_class_t (third) argument to mps_pool_create.
The MV2 pool class manually manages variable-sized, unformatted objects. The MV2 pool usesan allocation policy termed "temporal fit". Temporal fit attempts to place consecutive allocationsnext to each other. It relies on delaying reuse as long as possible to permit freed blocks tocoalesce, thus maximizing the number of consecutive allocations that can be co-located. Temporal fitpermits a very fast allocator and a deallocator competitive in speed with all other known policies.
+- Temporal fit is intended to take advantage of knowledge of object lifetimes, either - - apriori - - knowledge or knowledge acquired by profiling. The best performance of the MV2 poolwill be achieved by allocating objects with similar expected deathtimes together. -
-A simple policy can be implemented to take advantage of MV2: Object size is typicallywell-correlated with object life-expectancy, and birthtime plus lifetime gives deathtime, soallocating objects of similar size sequentially from the same pool instance should result in objectsallocated close to each other dying at about the same time.
+mps_ap_frame_pop,
-An application that has several classes of objects of widely differing life expectancy willbest be served by creating a different MV2 pool instance for each life-expectancy class. A moresophisticated policy can use either the programmer's knowledge of the expected lifetime of an objector any characteristic of objects that correlates with lifetime to choose an appropriate poolinstance to allocate in.
+mps_ap_frame_push,
-Allocating objects with unknown or very different deathtimes together will pessimize thespace performance of MV2.
+mps_ap_create
-mps_class_mvff
- if(mps_pool_create(&pool, arena, mps_class_mv2(), 8, 32, 256, 70, 20)
- != MPS_RES_OK) {
- printf("Error creating pool!");
- exit(2);
- }
-
- mps_class_mv2 cannot result in an error.
Used as a parameter to mps_pool_create to create an MVFF pool.
- - Creation - -
+The MV2 pool class has five creation parameters:
+Pool, Allocation Points.
-- mps_res_t mps_pool_create(mps_pool_t * pool, mps_arena_t arena, - mps_class_t mv2_class, size_t minimum_size, - size_t mean_size, size_t maximum_size, - mps_count_t reserve_depth mps_count_t fragmentation_limit); --
Sizes
+ minimum_size, mean_size, and maximum_size are the minimum, mean, and maximum (typical) sizein bytes of objects expected to be allocated in the pool. Objects smaller than minimum size may beallocated, but the pool is not guaranteed to manage them space-efficiently. Objects larger thanmaximum_size may be allocated, but the pool is not guaranteed to manage them space-efficiently.Furthermore, partial freeing is not supported for objects larger than maximum size; doing so willresult in the storage of the object never being reused. Mean_size need not be an accurate mean,although the pool will manage mean_size objects more efficiently.
mps_class_t mps_class_mvff(void)
Reserve Depth
-reserve_depth is the expected hysteresis of the object population. When pool objects arefreed, the pool will retain sufficient storage to allocate reserve_depth objects of mean_size fornear term allocations (rather than immediately making that storage available to other pools).
+If a pool has a stable object population, one which only grows over the lifetime of thepool, or one which grows steadily and then shrinks steadily, use a reserve_depth of 0.
+None.
-It is always safe to use a reserve depth of 0, but if the object population typicallyfluctuates in a range (e.g., the client program may repeatedly create and destroy a subset ofobjects in a loop), it is more efficient for the pool to retain enough storage to satisfy thatfluctuation. For example, if a pool has an object population that typically fluctuates between 8,000and 10,000, use a reserve_depth of 2,000.
-The reserve will not normally be available to other pools for allocation, even when it isnot used by the pool. If this is undesirable, a reserve depth of 0 may be used for a pool whoseobject population does vary, at a slight cost in efficiency. The reserve does not guarantee anyparticular amount of allocation.
+Fragmentation Limit
+The function returns a class object that can be passed to mps_pool_create.
fragmentation_limit is a percentage in (0, 100] that can be used to set an upper limit onthe space overhead of MV2 in case object deathtimes and allocations do not correlate well.
-If the free space managed by the pool as a ratio of all the space managed by the poolexceeds the specified percentage, the pool will fall back to a first fit allocation policy,exploiting space more efficiently at a cost in time efficiency.
+A fragmentation_limit of 0 would cause the pool to operate as a first-fit pool, at asignificant cost in time-efficiency, therefore is not permitted.
+mpscmvff.h
-A fragmentation_limit of 100 will cause the pool to use temporal fit (unless resources areexhausted). If the objects allocated in the pool have similar lifetime expectancies, this mode willhave the best time- and space-efficiency. If the objects have widely varying lifetime expectancies,this mode will be time-efficient, but may be space-inefficient. An intermediate setting can be usedto limit the space-inefficiency of temporal fit due to varying object life expectancies.
-- - Allocation - -
+ The MV2 pool class only supports allocation through allocation points. See mps_ap_create.
- - Deallocation - -
- - The MV2 pool class supports explicit freeing. See mps_pool_free.
Need a life-expectancy parameter! How else will different instances choose their Loci?
- -Need an alignment parameter. Perhaps this is embedded in a format parameter (when all poolshave at least a null format).
- -It is conceivable that a client would want to mix manual and automatic pools with the manualpool being able to be a root for the automatic. To do so, MV2 would need to support formattedobjects and scanning. This may be added someday.
- -Eventually the MM product will include profiling tools that will help determine objectcharacteristics that correlate with object lifetime and suggest how to configure the appropriatenumber of MV2 pool instances and what characteritics to dispatch on when choosing which instance toallocate from.
- -[From mail.ptw.1998-08-19.02-33(0) ]
- -Remember Wilson's statement that the goal of a memory manager is to exploit the regularitiesin allocation patterns? My intent in the interface parameters is to accept measurable regularitiesin object populations, then the implementation can exploit them.
- -Perhaps the pool should accept some description of the mean and deviation of the objectsizes, object population, and object lifetimes. Is that what you are getting at? [Reserve_depth isin some sense a deviation.]
- - -mps_class_mvff - - -
Used as a parameter to mps_pool_create to create an MVFF pool.
Pool, Allocation Points.
- - - mps_class_t mps_class_mvff(void)
None.
- - - The function returns a class object that can be passed to mps_pool_create.
mpscmvff.h
- - -MVFF pools implement a first-fit policy, and can be configured to be functionally equivalentto an EPDL or EPDR pool, but with better overall performance. The pool requires six parameters topool creation:
+MVFF pools implement a first-fit policy. The pool requires six +parameters to pool creation:
mps_size_t extendBy -- The size of segment to allocate by default;
mps_size_t extendBy -- The size of segment to allocate by default;
mps_size_t avgSize -- The average size of objects to be allocated;
mps_size_t avgSize -- The average size of objects to be allocated;
mps_align_t alignment -- The alignment of addresses for allocation (and freeing) in thepool;
mps_align_t alignment -- The alignment of addresses for allocation (and freeing) in thepool;
mps_bool_t slotHigh
mps_bool_t slotHigh
mps_bool_t arenaHigh
mps_bool_t arenaHigh
mps_bool_t firstFit
mps_bool_t firstFit
The three boolean parameters should be set to (0, 0, 1) to emulate EPDL, and (1, 1, 1) toemulate EPDR. No other settings of these parameters is currently recommended.
+The three boolean parameters may be set to (0, 0, 1) or (1, 1, 1). No other settings of these parameters is currently recommended.
- Buffered allocation (mps_reserve and mps_commit) is also supported, but in that case, thepolicy is rather different: buffers are filled worst-fit, and allocation is always upwards from thebase. The arenaHigh parameter regulates whether new segments are acquired at high or low addresses;the slotHigh and firstFit parameters do not affect buffered allocation. Buffered and unbufferedallocation can be used at the same time, but in that case, the first allocation point must becreated before any call to mps_alloc.
Buffered allocation (mps_reserve and mps_commit) is also supported, but in that case, thepolicy is rather different: buffers are filled worst-fit, and allocation is always upwards from thebase. The arenaHigh parameter regulates whether new segments are acquired at high or low addresses;the slotHigh and firstFit parameters do not affect buffered allocation. Buffered and unbufferedallocation can be used at the same time, but in that case, the first allocation point must becreated before any call to mps_alloc.
Cached allocation ( MPS_SAC_ALLOC and MPS_SAC_FREE ) is also supported, but in that case,the policy is a little different: allocation from the cache follows its own policy (typicallyfirst-fit), and only when the cache needs to acquire more blocks from the underlying MVFF pool doesit use the usual algorithm to choose blocks for the cache.
Cached allocation ( MPS_SAC_ALLOC and MPS_SAC_FREE ) is also supported, but in that case,the policy is a little different: allocation from the cache follows its own policy (typicallyfirst-fit), and only when the cache needs to acquire more blocks from the underlying MVFF pool doesit use the usual algorithm to choose blocks for the cache.
if(mps_pool_create(&pool, arena, mps_class_mvff(), 8 * 1024, 135, 4, 0, 0, 1) @@ -4585,166 +4602,352 @@ if(mps_pool_create(&pool, arena, mps_class_epdr_debug(),-
mps_pool_create, mps_class_epdr, mps_class_epdl, mps_reserve, mps_commit,
+
+mps_pool_create,
+
+mps_reserve,
+
+mps_commit.
It is usually not advisable to use buffered and unbuffered allocationat the same time,because the worst-fit policy of buffer filling will grab all the large blocks, leading to severefragmentation. Use two separate pools instead.
+It is usually not advisable to use buffered and unbuffered allocationat the same time,because the worst-fit policy of buffer filling will grab all the large blocks, leading to severefragmentation. Use two separate pools instead.
-Note that using buffered allocation prevents (for obscure technical reasons) the pool fromallocating across segment boundaries. This can cause added external fragmentation if objects areallocated that are a significant fraction of the segment size. (This quirk will disappear in afuture version.)
+Note that using buffered allocation prevents (for obscure technical reasons) the pool fromallocating across segment boundaries. This can cause added external fragmentation if objects areallocated that are a significant fraction of the segment size. (This quirk will disappear in afuture version.)
-mps_class_snc mps_class_snc+ -
Returns the pool class object (of type mps_class_t) for the Stack No Check pool class.
Returns the pool class object (of type mps_class_t) for the Stack No Check pool class.
Pool.
+Pool.
- mps_class_t mps_class_snc(void)
mps_class_t mps_class_snc(void)
No arguments.
+No arguments.
-Returns a pool class object.
+Returns a pool class object.
-mpscsnc.h
+mpscsnc.h
- This function returns an object of type mps_class_t which represents the Stack No Check poolclass.
This function returns an object of type mps_class_t which represents the Stack No Check poolclass.
This pool class requires an extra argument when used in mps_pool_create:
This pool class requires an extra argument when used in mps_pool_create:
res = mps_pool_create(&pool, arena, mps_class_snc(), format);-
The extra argument, format, should be of type mps_fmt_t and specifies the format of theobjects allocated in the pool (in a similar way to mps_class_amc). The format should provide atleast the methods: scan, skip, pad.
The extra argument, format, should be of type mps_fmt_t and specifies the format of theobjects allocated in the pool (in a similar way to mps_class_amc). The format should provide atleast the methods: scan, skip, pad.
An SNC pool is scannable, in that objects may contain references to objects in other poolsthat will keep those objects alive (depending on rank). In this sense, an SNC pool is a de-factoroot.
+An SNC pool is scannable, in that objects may contain references to objects in other poolsthat will keep those objects alive (depending on rank). In this sense, an SNC pool is a de-factoroot.
-Exact references may point to (the start of) objects in an SNC pool, but will have no effecton whether those objects are either scanned or kept alive.
+Exact references may point to (the start of) objects in an SNC pool, but will have no effecton whether those objects are either scanned or kept alive.
- If mps_ap_frame_pop is used on an allocation point in an SNC pool (after a correspondingcall to mps_ap_frame_push), then the objects affected by the pop are effectively declared dead, andmay be reclaimed by the collector. Extant references to such objects from reachable or de factoalive objects are safe, but such other objects should be dead; that is, such references must neverbe used.
If mps_ap_frame_pop is used on an allocation point in an SNC pool (after a correspondingcall to mps_ap_frame_push), then the objects affected by the pop are effectively declared dead, andmay be reclaimed by the collector. Extant references to such objects from reachable or de factoalive objects are safe, but such other objects should be dead; that is, such references must neverbe used.
If an allocation point is created in an SNC pool, then the call to mps_ap_create will takeas an additional parameter the rank (of type mps_rank_t) of references in the objects to be createdin that allocation point. Currently, only rank exact (mps_rank_exact) is supported.
If an allocation point is created in an SNC pool, then the call to mps_ap_create will takeas an additional parameter the rank (of type mps_rank_t) of references in the objects to be createdin that allocation point. Currently, only rank exact (mps_rank_exact) is supported.
Objects in an SNC pool may not be registered for finalization.
+Objects in an SNC pool may not be registered for finalization.
-Objects in an SNC pool will not move.
+Objects in an SNC pool will not move.
-+ -
Cannot fail.
+Cannot fail.
-+ -
mps_class_amc, mps_ap_frame_pop, mps_ap_frame_push, mps_ap_create
+
+mps_class_amc,
+
+mps_ap_frame_pop,
+
+mps_ap_frame_push,
+
+mps_ap_create
mps_class_t mps_class_mvt mps_class_t is the type of pool classes.
mps_class_mvt is a function that returns the MVT pool class object.
Pool.
+Allocation point.
-mps.h
+mps_class_t mps_class_mvt(void);
mps_class_t is the abstract type of pool classes. It is opaque. A pool class may beobtained by calling the class function for the appropriate class, such as mps_class_amc for theAMC class. A pool class is used when creating a pool with mps_pool_create or mps_pool_create_v.
C function
-None.
- mps_pool_create, mps_pool_create_v
The MVT pool class object.
- mps_class_s is an incomplete structure type used only to define mps_class_t.
mpscmv2.h
-mps_finalize The function mps_class_mvt returns the MVT pool
+class object, which can be used to create an MVT pool instance by
+passing the class object as the mps_class_t (third) argument to
+mps_pool_create.
The MVT pool class manually manages variable-sized, unformatted objects. The MVT pool usesan allocation policy termed "temporal fit". Temporal fit attempts to place consecutive allocationsnext to each other. It relies on delaying reuse as long as possible to permit freed blocks tocoalesce, thus maximizing the number of consecutive allocations that can be co-located. Temporal fitpermits a very fast allocator and a deallocator competitive in speed with all other known policies.
+ ++ Temporal fit is intended to take advantage of knowledge of object lifetimes, either + + apriori + + knowledge or knowledge acquired by profiling. The best performance of the MVT poolwill be achieved by allocating objects with similar expected deathtimes together. +
+ +A simple policy can be implemented to take advantage of MVT: Object size is typicallywell-correlated with object life-expectancy, and birthtime plus lifetime gives deathtime, soallocating objects of similar size sequentially from the same pool instance should result in objectsallocated close to each other dying at about the same time.
+ +An application that has several classes of objects of widely differing life expectancy willbest be served by creating a different MVT pool instance for each life-expectancy class. A moresophisticated policy can use either the programmer's knowledge of the expected lifetime of an objector any characteristic of objects that correlates with lifetime to choose an appropriate poolinstance to allocate in.
+ +Allocating objects with unknown or very different deathtimes together will pessimize thespace performance of MVT.
-
+ if(mps_pool_create(&pool, arena, mps_class_mvt(), 8, 32, 256, 70, 20)
+ != MPS_RES_OK) {
+ printf("Error creating pool!");
+ exit(2);
+ }
+
+
+mps_class_mvt cannot result in an error.
Registers an object for finalization.
+ -Finalization, message.
++ + Creation + +
+ +The MVT pool class has five creation parameters:
+ ++ mps_res_t mps_pool_create(mps_pool_t * pool, mps_arena_t arena, + mps_class_t mvt_class, size_t minimum_size, + size_t mean_size, size_t maximum_size, + mps_count_t reserve_depth mps_count_t fragmentation_limit); ++ +
Sizes
+ +minimum_size, mean_size, and maximum_size are the minimum, mean, and maximum (typical) sizein bytes of objects expected to be allocated in the pool. Objects smaller than minimum size may beallocated, but the pool is not guaranteed to manage them space-efficiently. Objects larger thanmaximum_size may be allocated, but the pool is not guaranteed to manage them space-efficiently.Furthermore, partial freeing is not supported for objects larger than maximum size; doing so willresult in the storage of the object never being reused. Mean_size need not be an accurate mean,although the pool will manage mean_size objects more efficiently.
Reserve Depth
+ +reserve_depth is the expected hysteresis of the object population. When pool objects arefreed, the pool will retain sufficient storage to allocate reserve_depth objects of mean_size fornear term allocations (rather than immediately making that storage available to other pools).
+ +If a pool has a stable object population, one which only grows over the lifetime of thepool, or one which grows steadily and then shrinks steadily, use a reserve_depth of 0.
+ +It is always safe to use a reserve depth of 0, but if the object population typicallyfluctuates in a range (e.g., the client program may repeatedly create and destroy a subset ofobjects in a loop), it is more efficient for the pool to retain enough storage to satisfy thatfluctuation. For example, if a pool has an object population that typically fluctuates between 8,000and 10,000, use a reserve_depth of 2,000.
+ +The reserve will not normally be available to other pools for allocation, even when it isnot used by the pool. If this is undesirable, a reserve depth of 0 may be used for a pool whoseobject population does vary, at a slight cost in efficiency. The reserve does not guarantee anyparticular amount of allocation.
+ +Fragmentation Limit
+ +fragmentation_limit is a percentage in (0, 100] that can be used to set an upper limit onthe space overhead of MVT in case object deathtimes and allocations do not correlate well.
+ +If the free space managed by the pool as a ratio of all the space managed by the poolexceeds the specified percentage, the pool will fall back to a first fit allocation policy,exploiting space more efficiently at a cost in time efficiency.
+ +A fragmentation_limit of 0 would cause the pool to operate as a first-fit pool, at asignificant cost in time-efficiency, therefore is not permitted.
+ +A fragmentation_limit of 100 will cause the pool to use temporal fit (unless resources areexhausted). If the objects allocated in the pool have similar lifetime expectancies, this mode willhave the best time- and space-efficiency. If the objects have widely varying lifetime expectancies,this mode will be time-efficient, but may be space-inefficient. An intermediate setting can be usedto limit the space-inefficiency of temporal fit due to varying object life expectancies.
+ ++ + Allocation + +
+ +The MVT pool class only supports allocation through allocation points. See mps_ap_create.
+ + Deallocation + +
+ +The MVT pool class supports explicit freeing. See mps_pool_free.
mps_res_t mps_finalize(mps_arena_t arena, mps_addr_t *object_ref)
Need a life-expectancy parameter! How else will different instances choose their Loci?
+ +Need an alignment parameter. Perhaps this is embedded in a format parameter (when all poolshave at least a null format).
+ +It is conceivable that a client would want to mix manual and automatic pools with the manualpool being able to be a root for the automatic. To do so, MVT would need to support formattedobjects and scanning. This may be added someday.
+ +Eventually the MM product will include profiling tools that will help determine objectcharacteristics that correlate with object lifetime and suggest how to configure the appropriatenumber of MVT pool instances and what characteritics to dispatch on when choosing which instance toallocate from.
+ +[From mail.ptw.1998-08-19.02-33(0) ]
+ +Remember Wilson's statement that the goal of a memory manager is to exploit the regularitiesin allocation patterns? My intent in the interface parameters is to accept measurable regularitiesin object populations, then the implementation can exploit them.
+ +Perhaps the pool should accept some description of the mean and +deviation of the objectsizes, object population, and object +lifetimes. Is that what you are getting at? [Reserve_depth is in some sense a deviation.]
-mps_class_tmps_class_t is the type of pool classes.
Pool.
+ + +mps.h
+ + +mps_class_t is the abstract type of pool classes. It is opaque. A pool class may beobtained by calling the class function for the appropriate class, such as mps_class_amc for theAMC class. A pool class is used when creating a pool with mps_pool_create or mps_pool_create_v.
+
+mps_pool_create,
+
+mps_pool_create_v
mps_class_s is an incomplete structure type used only to define mps_class_t.
mps_finalizeRegisters an object for finalization.
+ + +Finalization, message.
+ + +mps_res_t mps_finalize(mps_arena_t arena, mps_addr_t *object_ref)
arena
@@ -4754,77 +4957,83 @@ if(mps_pool_create(&pool, arena, mps_class_epdr_debug(),
object_ref
-- a pointer to a pointer to the object to be finalized
-
A result code.
+A result code.
-mps.h
+mps.h
-This function registers the specified object for finalization. This object must be an objectallocated from a pool in the specified arena.
+This function registers the specified object for finalization. This object must be an objectallocated from a pool in the specified arena.
-An object becomes finalizable if it is registered for finalization, and the collectorobserves that it would otherwise be reclaimable. Note that the subsequent creation of strongreferences to the object (from, say, weak references) may cause finalization to occur when an objectis not otherwise reclaimable.
+An object becomes finalizable if it is registered for finalization, and the collectorobserves that it would otherwise be reclaimable. Note that the subsequent creation of strongreferences to the object (from, say, weak references) may cause finalization to occur when an objectis not otherwise reclaimable.
-When an object is finalizable, it may be finalized up to N times, where N is the number oftimes it has been registered for finalization. When an object is finalized, it is also deregisteredfor finalization (so that it cannot be finalized again from the same registration).
+When an object is finalizable, it may be finalized up to N times, where N is the number oftimes it has been registered for finalization. When an object is finalized, it is also deregisteredfor finalization (so that it cannot be finalized again from the same registration).
- Finalization is performed by passing a finalization message to the client, containing anexact reference to the object. See the message protocol, mps_message_type_finalization, and mps_message_finalization_ref for details.
Finalization is performed by passing a finalization message to the client, containing anexact reference to the object. See the message protocol, mps_message_type_finalization, and mps_message_finalization_ref for details.
If an object is registered for finalization multiple times, then there may be multiplefinalization messages on the queue at the same time. It may also be necessary to discard previousfinalization messages for an object before all such messages are posted on the message queue.Clients performing multiple registrations must cope with both behaviors.
+If an object is registered for finalization multiple times, then there may be multiplefinalization messages on the queue at the same time. It may also be necessary to discard previousfinalization messages for an object before all such messages are posted on the message queue.Clients performing multiple registrations must cope with both behaviors.
-Note that there is no guarantee that finalization will be prompt, although the collectordoes attempt to do this.
+Note that there is no guarantee that finalization will be prompt, although the collectordoes attempt to do this.
- Note that there will be no attempt to finalize objects in the context of mps_arena_destroy or mps_pool_destroy. mps_pool_destroyshould therefore not be invoked on pools containing objects registered for finalization.
Note that there will be no attempt to finalize objects in the context of mps_arena_destroy or mps_pool_destroy. mps_pool_destroyshould therefore not be invoked on pools containing objects registered for finalization.
Not all pools support finalization of objects in those pools. For more information, see thePool Class Catalog.
+Not all pools support finalization of objects in those pools. For more information, see thePool Class Catalog.
-[missing]
+[missing]
-[missing]
+[missing]
- mps_message_*, mps_arena_destroy, mps_pool_destroy
+
+mps_message_*,
+
+mps_arena_destroy,
+
+mps_pool_destroy
This function receives a pointer to a reference. This is to avoid placing the restriction onthe client that the C call stack be a root.
+This function receives a pointer to a reference. This is to avoid placing the restriction onthe client that the C call stack be a root.
-mps_fmt_A_s mps_fmt_A_s mps_fmt_A_s is a structure used to create object formats of variant A.
mps_fmt_A_s is a structure used to create object formats of variant A.
Format.
+Format.
-
typedef struct mps_fmt_A_s {
@@ -4839,7 +5048,7 @@ typedef struct mps_fmt_A_s {
-
@@ -4848,20 +5057,21 @@ typedef struct mps_fmt_A_s {
Objects of this type are intended to be used in the creation of object formats. Objectformats describe the layout of client objects.
+Objects of this type are intended to be used in the creation of object formats. Objectformats describe the layout of client objects.
- mps_fmt_A_s is a structure that represents the particular collection of methodsand values that describes an object format of variant A.
mps_fmt_A_s is a structure that represents the particular collection of methodsand values that describes an object format of variant A.
Broadly speaking, the object formats of this variant are suitable for use in copying ormoving memory managers.
+Broadly speaking, the object formats of this variant are suitable for use in copying ormoving memory managers.
- mps_fmt_A_s has the following methods: scan, skip,copy, fwd, isfwd, pad, and the following value:align.
mps_fmt_A_s has the
+following methods: scan, skip, copy, fwd, isfwd, pad, and the following value:align.
align is an integer value defines the alignment of objects allocated with thisformat. It should be large enough to satisfy the alignment requirements of any field in the objects,and it cannot be larger than the arena alignment. For details of the methods, consult the reference pages for the type of each method.
align is an integer value defines the alignment of objects allocated with thisformat. It should be large enough to satisfy the alignment requirements of any field in the objects,and it cannot be larger than the arena alignment. For details of the methods, consult the reference pages for the type of each method.
mps_fmt_t create_format(mps_arena_t arena) @@ -4879,30 +5089,48 @@ mps_fmt_t create_format(mps_arena_t arena)-
mps_fmt_create_A, mps_fmt_scan_t, mps_fmt_skip_t mps_fmt_copy_t, mps_fmt_fwd_t, mps_isfwd_t,mps_pad_t, mps_align_t, mps_fmt_B_s
+
+mps_fmt_create_A,
+
+mps_fmt_scan_t,
+
+mps_fmt_skip_t
+
+mps_fmt_copy_t,
+
+mps_fmt_fwd_t,
+
+mps_isfwd_t,
+
+mps_pad_t,
+
+mps_align_t,
+
+mps_fmt_B_s
mps_fmt_A_t mps_fmt_A_t mps_fmt_A_t is the type pointer to mps_fmt_A_s.
mps_fmt_A_t is the type pointer to mps_fmt_A_s.
Format.
+Format.
-
typedef struct mps_fmt_A_s {
@@ -4919,47 +5147,53 @@ typedef struct mps_fmt_A_s *mps_fmt_A_t;
-mps.h
+mps.h
- mps_fmt_A_t is the type pointer to mps_fmt_A_s. A value of this type represents a collection of methods and values that can be used to create a format object of type mps_fmt_t.This type represents a particular collection of methods and values; other collections arerepresented by other types.
mps_fmt_A_t is the type pointer to mps_fmt_A_s. A value of this type represents a collection of methods and values that can be used to create a format object of type mps_fmt_t.This type represents a particular collection of methods and values; other collections arerepresented by other types.
Objects of type mps_fmt_A_t are intended to be used in the creation of object formats.Object formats describe the layout of client objects. The function mps_fmt_create_A takes an mps_fmt_A_t as one of its arguments and creates an object of type mps_fmt_t (an object format).
Objects of type mps_fmt_A_t are intended to be used in the creation of object formats.Object formats describe the layout of client objects. The function mps_fmt_create_A takes an mps_fmt_A_t as one of its arguments and creates an object of type mps_fmt_t (an object format).
See the documentation of mps_fmt_A_s for further details.
See the documentation of mps_fmt_A_s for further details.
mps_fmt_A_s, mps_fmt_t, mps_fmt_create_A
+
+mps_fmt_A_s,
+
+mps_fmt_t,
+
+mps_fmt_create_A
mps_fmt_B_s mps_fmt_B_s mps_fmt_B_s is a transparent structure used to create object formats of variantB.
mps_fmt_B_s is a transparent structure used to create object formats of variantB.
Format.
+Format.
-
typedef struct mps_fmt_B_s {
@@ -4975,23 +5209,23 @@ typedef struct mps_fmt_B_s {
-mps.h
+mps.h
- Objects of this type are intended to be used in the creation of object formats. Objectformats describe the layout of client objects. mps_fmt_B_s is a structure thatrepresents the particular collection of methods and values that describes an object format ofvariant B.
Objects of this type are intended to be used in the creation of object formats. Objectformats describe the layout of client objects. mps_fmt_B_s is a structure thatrepresents the particular collection of methods and values that describes an object format ofvariant B.
mps_fmt_B_s is the same as mps_fmt_A_s except for the addition ofthe mps_class method. Broadly speaking, the object formats of variety B are suitable for use incopying or moving memory managers (just like variety A); the addition of the class method allowsmore information to be passed to various support tools (such as graphical browsers).
mps_fmt_B_s is the same as mps_fmt_A_s except for the addition ofthe mps_class method. Broadly speaking, the object formats of variety B are suitable for use incopying or moving memory managers (just like variety A); the addition of the class method allowsmore information to be passed to various support tools (such as graphical browsers).
mps_fmt_B_s has the following methods: scan, skip, copy, fwd, isfwd, pad, mps_class, and the following value: align.
mps_fmt_B_s has the following methods: scan, skip, copy, fwd, isfwd, pad, mps_class, and the following value: align.
align is an integer value defines the alignment of objects allocated with this format. Itshould be large enough to satisfy the alignment requirements of any field in the objects, and itcannot be larger than the arena alignment. For details of the methods, consult the reference pagesfor the type of each method.
+align is an integer value defines the alignment of objects allocated with this format. Itshould be large enough to satisfy the alignment requirements of any field in the objects, and itcannot be larger than the arena alignment. For details of the methods, consult the reference pagesfor the type of each method.
-mps_fmt_t create_format(mps_arena_t arena) @@ -5009,35 +5243,55 @@ mps_fmt_t create_format(mps_arena_t arena)-
mps_fmt_create_B, mps_fmt_scan_t, mps_fmt_skip_t, mps_fmt_copy_t, mps_fmt_fwd_t,mps_isfwd_t, mps_pad_t, mps_align_t, mps_class_t, mps_fmt_A_s
+
+mps_fmt_create_B,
+
+mps_fmt_scan_t,
+
+mps_fmt_skip_t,
+
+mps_fmt_copy_t,
+
+mps_fmt_fwd_t,
+
+mps_isfwd_t,
+
+mps_pad_t,
+
+mps_align_t,
+
+mps_class_t,
+
+mps_fmt_A_s
The mps_class field used to be called "class", but that was problematic forC++, so we changed it.
The mps_class field used to be called "class", but that was problematic forC++, so we changed it.
mps_fmt_B_t mps_fmt_B_t mps_fmt_B_t is a type passed to mps_fmt_create_B. It represents the collection of methodsand values used to create a mps_fmt_t. You are expected to declare and create structures of thistype if you require an object of type mps_fmt_B_t.
mps_fmt_B_t is a type passed to mps_fmt_create_B. It represents the collection of methodsand values used to create a mps_fmt_t. You are expected to declare and create structures of thistype if you require an object of type mps_fmt_B_t.
Format
+Format
-
typedef struct mps_fmt_B_s {
@@ -5053,55 +5307,63 @@ typedef struct mps_fmt_B_s {
- typedef struct mps_fmt_B_s *mps_fmt_B_t;
typedef struct mps_fmt_B_s *mps_fmt_B_t;
mps.h
+mps.h
- mps_fmt_B_t is the equivalent to mps_fmt_A_t that should be passed tomps_fmt_create_B. It is suitable for format variety A collectors that need to use tools that useclass information.
mps_fmt_B_t is the equivalent to mps_fmt_A_t that should be passed tomps_fmt_create_B. It is suitable for format variety A collectors that need to use tools that useclass information.
See the documentation for the symbol mps_fmt_B_s for further details.
See the documentation for the symbol mps_fmt_B_s for further details.
mps_fmt_B_s, mps_fmt_t, mps_fmt_create_B, mps_fmt_A_t
+
+mps_fmt_B_s,
+
+mps_fmt_t,
+
+mps_fmt_create_B,
+
+mps_fmt_A_t
None.
+None.
-mps_fmt_auto_header_s mps_fmt_auto_header_s mps_fmt_auto_header_s is a structure used to create objectformats of variant auto_header.
mps_fmt_auto_header_s is a structure used to create objectformats of variant auto_header.
Format.
+Format.
-
@@ -5118,7 +5380,7 @@ typedef struct mps_fmt_auto_header_s {
-
@@ -5127,13 +5389,15 @@ typedef struct mps_fmt_auto_header_s {
Objects of this type are intended to be used in the creation of object formats. Objectformats describe the layout of client objects. mps_fmt_auto_header_s isa structure that represents the particular collection of methods and values that describes an objectformat of variant auto_header.
Objects of this type are intended to be used in the creation of object formats. Objectformats describe the layout of client objects. mps_fmt_auto_header_s isa structure that represents the particular collection of methods and values that describes an objectformat of variant auto_header.
Broadly speaking, the object formats of this variant are suitable for use in automaticmemory management for objects with headers (hence the name). More precisely, this variant isintended for formats where the client's pointers point some distance into the memory blockcontaining the object. This typically happens when the objects have a common header used for memorymanagement or class system purposes, but this situation also arises when the low bits of a pointerare used for a tag. The MPS does not care what the reason is, only about the offset of the pointerin relation to the memory block.
+Broadly speaking, the object formats of this variant are suitable +for use in automaticmemory management for objects with headers (hence +the name). More precisely, this variant is intended for formats where the client's pointers point some distance into the memory blockcontaining the object. This typically happens when the objects have a common header used for memorymanagement or class system purposes, but this situation also arises when the low bits of a pointerare used for a tag. The MPS does not care what the reason is, only about the offset of the pointerin relation to the memory block.
- mps_fmt_auto_header_shas the following methods: scan, skip, fwd, isfwd, pad, and the following values: align and mps_headerSize.
mps_fmt_auto_header_shas the following methods: scan, skip, fwd, isfwd, pad, and the following values: align and mps_headerSize.
@@ -5142,10 +5406,10 @@ typedef struct mps_fmt_auto_header_s {
is an integer value defines the alignment of objectsallocated with this format. It should be large enough to satisfy the alignment requirements of anyfield in the objects, and it cannot be larger than the arena alignment.
mps_headerSize is the size of the header, i.e., the offset of aclient pointer from the base the memory block. For details of the methods, consult the referencepages for the type of each method.
mps_headerSize is the size of the header, i.e., the offset of aclient pointer from the base the memory block. For details of the methods, consult the referencepages for the type of each method.
mps_fmt_t create_format(mps_arena_t arena) @@ -5163,66 +5427,83 @@ mps_fmt_t create_format(mps_arena_t arena)-
mps_fmt_create_auto_header, mps_fmt_scan_t, mps_fmt_skip_t, mps_fmt_fwd_t, mps_isfwd_t,mps_pad_t, mps_align_t, mps_fmt_A_s
+
+mps_fmt_create_auto_header,
+
+mps_fmt_scan_t,
+
+mps_fmt_skip_t,
+
+mps_fmt_fwd_t,
+
+mps_isfwd_t,
+
+mps_pad_t,
+
+mps_align_t,
+
+mps_fmt_A_s
For technical reasons, client objects must be longer than the header, i.e., objectsconsisting of only a header are not supported. However, if the header size is larger than or equalto alignment, the pad method must still be able to create padding objects down to alignment size.
+For technical reasons, client objects must be longer than the header, i.e., objectsconsisting of only a header are not supported. However, if the header size is larger than or equalto alignment, the pad method must still be able to create padding objects down to alignment size.
-At the moment, this format only works with pool classes AMC and AMCZ.
+At the moment, this format only works with pool classes AMC and AMCZ.
-mps_fmt_class_t mps_fmt_class_t mps_fmt_class_t is a function pointer type for the class method of a format.
mps_fmt_class_t is a function pointer type for the class method of a format.
Format. Telemetry.
+Format. Telemetry.
- typedef mps_addr_t (*mps_fmt_class_t)(mps_addr_t addr);
typedef mps_addr_t (*mps_fmt_class_t)(mps_addr_t addr);
addr the address of the object whose class is of interest
+addr the address of the object whose class is of interest
-Returns an address that the client associates with the class or type of the object.
+Returns an address that the client associates with the class or type of the object.
-mps.h
+mps.h
- mps_fmt_class_t is t he type of a format's class method. A class methodreturns an address that is related to the class of the object, for passing on to various supporttools (such as graphical browsers).
mps_fmt_class_t is t he type of a format's class method. A class methodreturns an address that is related to the class of the object, for passing on to various supporttools (such as graphical browsers).
A class method is provided by the client as part of a format (see Format Protocol).
+A class method is provided by the client as part of a format (see Format Protocol).
- The exact meaning of the return value is up to the client, but it would typically bear somerelation to class or type in the client program. The client may have objects that represent classesor types. These may be associated with strings via mps_telemetry_intern and mps_telemetry_label.
The exact meaning of the return value is up to the client, but it would typically bear somerelation to class or type in the client program. The client may have objects that represent classesor types. These may be associated with strings via mps_telemetry_intern and mps_telemetry_label.
mps_addr_t my_class_method(mps_addr_t object) {
@@ -5232,64 +5513,68 @@ mps_addr_t my_class_method(mps_addr_t object) {
-A class method is not allowed to fail, but may return NULL.
+A class method is not allowed to fail, but may return NULL.
-
+
+mps_fmt_t,
+
+mps_fmt_create_B
It is recommended that NULL be returned for padding objects and forwarded objects.
+It is recommended that NULL be returned for padding objects and forwarded objects.
-mps_fmt_copy_t mps_fmt_copy_t mps_fmt_copy_t is a function pointer type for the copy method of a format.
mps_fmt_copy_t is a function pointer type for the copy method of a format.
Format.
+Format.
- typedef void (*mps_fmt_copy_t)(mps_addr_t old, mps_addr_t new);
typedef void (*mps_fmt_copy_t)(mps_addr_t old, mps_addr_t new);
old -- the address of the object
+old -- the address of the object
-new -- the address to which the object should be copied
+new -- the address to which the object should be copied
-mps.h
+mps.h
- mps_fmt_copy_t is a function pointer type for the copy method of a format. A copy methodcopies an object to a new location. It may be called by the MPS as part of copying garbagecollection, for example.
mps_fmt_copy_t is a function pointer type for the copy method of a format. A copy methodcopies an object to a new location. It may be called by the MPS as part of copying garbagecollection, for example.
A copy method is required in some formats (in particular formats A and B (see mps_fmt_A_t and mps_fmt_B_t)). A copy method takes the address of an object and another address, and copiesthe object to the new address. The new and the old locations are guaranteed not to overlap.
A copy method is required in some formats (in particular formats A and B (see mps_fmt_A_t and mps_fmt_B_t)). A copy method takes the address of an object and another address, and copiesthe object to the new address. The new and the old locations are guaranteed not to overlap.
void my_copy_method(mps_addr_t old, mps_addr_t new) @@ -5300,47 +5585,57 @@ void my_copy_method(mps_addr_t old, mps_addr_t new)-
A copy method is not allowed to fail.
+A copy method is not allowed to fail.
- mps_fmt_t, mps_fmt_create_A, mps_fmt_A_t, mps_fmt_B_t, mps_fmt_create_B
+
+mps_fmt_t,
+
+mps_fmt_create_A,
+
+mps_fmt_A_t,
+
+mps_fmt_B_t,
+
+mps_fmt_create_B
Most pools will just ignore Copy methods, and do the copy themselves.
+Most pools will just ignore Copy methods, and do the copy themselves.
-mps_fmt_create_A mps_fmt_create_AFunction for create a format of variety A.
+Function for create a format of variety A.
-Format.
+Format.
-+ -
mps_res_t mps_fmt_create_A(mps_fmt_t *fmt_o, mps_arena_t arena, mps_fmt_A_s *fmt_A);
mps_res_t mps_fmt_create_A(mps_fmt_t *fmt_o, mps_arena_t arena, mps_fmt_A_s *fmt_A);
fmt_o
@@ -5355,25 +5650,25 @@ void my_copy_method(mps_addr_t old, mps_addr_t new)
fmt_A
- format description of variety A
-
Result status. If the return value is MPS_RES_OK, the new format is in *fmt_o .
Result status. If the return value is MPS_RES_OK, the new format is in *fmt_o .
mps.h
+mps.h
-This function creates a format from a user format specification of variety A.
+This function creates a format from a user format specification of variety A.
-mps_fmt_t create_format(mps_arena_t arena) @@ -5394,66 +5689,72 @@ mps_fmt_t create_format(mps_arena_t arena)-
The MPS may exhaust some resource in the course of mps_fmt_create_A and willreturn an appropriate error code in such circumstances.
The MPS may exhaust some resource in the course of mps_fmt_create_A and willreturn an appropriate error code in such circumstances.
mps_fmt_A_s, mps_fmt_t, mps_fmt_create_B
+
+mps_fmt_A_s,
+
+mps_fmt_t,
+
+mps_fmt_create_B
mps_fmt_create_B mps_fmt_create_BFunction for create a format of variety B.
+Function for create a format of variety B.
-Format.
+Format.
-+ -
mps_res_t mps_fmt_create_B(mps_fmt_t *fmt_o, mps_arena_t arena, mps_fmt_B_s *fmt_B);
mps_res_t mps_fmt_create_B(mps_fmt_t *fmt_o, mps_arena_t arena, mps_fmt_B_s *fmt_B);
arena - the arena in which to create the format
arena - the arena in which to create the format
fmt_B - format description of variety B
fmt_B - format description of variety B
Result status. If the return value is MPS_RES_OK, the new format is in*fmt_o .
Result status. If the return value is MPS_RES_OK, the new format is in*fmt_o .
+ -
mps.h
+mps.h
- This function creates a format from a user format specification of variety B. It is verysimilar to mps_fmt_create_A.
This function creates a format from a user format specification of variety B. It is verysimilar to mps_fmt_create_A.
mps_fmt_t create_format(mps_arena_t arena) @@ -5471,40 +5772,46 @@ mps_fmt_t create_format(mps_arena_t arena)-
The MPS may exhaust some resource in the course of mps_fmt_create_B and willreturn an appropriate error code in such circumstances.
The MPS may exhaust some resource in the course of mps_fmt_create_B and willreturn an appropriate error code in such circumstances.
mps_fmt_B_s, mps_fmt_t, mps_fmt_create_A
+
+mps_fmt_B_s,
+
+mps_fmt_t,
+
+mps_fmt_create_A
mps_fmt_create_auto_header mps_fmt_create_auto_headerFunction for create a format of variety auto_header.
+Function for create a format of variety auto_header.
-Format.
+Format.
-mps_res_t mps_fmt_create_auto_header(mps_fmt_t *fmt_o, mps_arena_t arena, mps_fmt_auto_header_s *fmt_st);
fmt_o
@@ -5519,25 +5826,25 @@ mps_fmt_t create_format(mps_arena_t arena)
fmt_st
- format description of variety auto_header
-
Result status. If the return value is MPS_RES_OK, the new format is in *fmt_o .
Result status. If the return value is MPS_RES_OK, the new format is in *fmt_o .
mps.h
+mps.h
-This function creates a format from a user format specification of variety auto_header.
+This function creates a format from a user format specification of variety auto_header.
-mps_fmt_t create_format(mps_arena_t arena) @@ -5555,73 +5862,80 @@ mps_fmt_t create_format(mps_arena_t arena)-
The MPS may exhaust some resource in the course of mps_fmt_create_auto_headerand will return an appropriate error code in such circumstances.
The MPS may exhaust some resource in the course of mps_fmt_create_auto_headerand will return an appropriate error code in such circumstances.
mps_fmt_auto_header_s, mps_fmt_t, mps_fmt_create_A
+
+mps_fmt_auto_header_s,
+
+mps_fmt_t,
+
+mps_fmt_create_A
mps_fmt_fwd_t mps_fmt_fwd_tThe type of a format's forward method.
+The type of a format's forward method.
-Format.
+Format.
- typedef void (*mps_fmt_fwd_t)(mps_addr_t old, mps_addr_t new);
typedef void (*mps_fmt_fwd_t)(mps_addr_t old, mps_addr_t new);
old
+old
-the address of an object
+the address of an object
-new
+new
-the address where the object has been moved
+the address where the object has been moved
-None.
+None.
- mps_fmt_fwd_t is the type of a format's forward method. A forward method isused to store relocation information in a heap. It may be called by the MPS as part of copyinggarbage collection.
mps_fmt_fwd_t is the type of a format's forward method. A forward method isused to store relocation information in a heap. It may be called by the MPS as part of copyinggarbage collection.
A forward method is provided by the client as part of a format (see Format Protocol ). TheMPS calls a forward method when it has relocated an object. The forward method when called mustreplace the object at 'old' with a forwarding marker that points to the address 'new'. Theforwarding marker must meet the following requirements:
+A forward method is provided by the client as part of a format (see Format Protocol ). TheMPS calls a forward method when it has relocated an object. The forward method when called mustreplace the object at 'old' with a forwarding marker that points to the address 'new'. Theforwarding marker must meet the following requirements:
it must be possible for the MPS to call other format methods with the address of aforwarding marker as the argument.
it must be possible for the MPS to call other format methods with the address of aforwarding marker as the argument.
he forwarding marker must not be bigger than the original object.
he forwarding marker must not be bigger than the original object.
t must be possible to distinguish the forwarding marker from ordinary objects using theisfwd method (see mps_fmt_isfwd_t ), and the isfwd method must return the address'new'.
t must be possible to distinguish the forwarding marker from ordinary objects using theisfwd method (see mps_fmt_isfwd_t ), and the isfwd method must return the address'new'.
/* define the function */
@@ -5649,47 +5963,56 @@ struct mps_fmt_B_s example_fmt_B = {
- mps_fmt_A_s, mps_fmt_B_s, mps_fmt_auto_header_s, mps_fmt_isfwd_t
+
+mps_fmt_A_s,
+
+mps_fmt_B_s,
+
+mps_fmt_auto_header_s,
+
+mps_fmt_isfwd_t
This method is never invoked by the GC on an object in a non-moving pool.
+This method is never invoked by the GC on an object in a non-moving pool.
-mps_fmt_isfwd_t mps_fmt_isfwd_tThe type of a format's isfwd ("is forwarded") method.
+The type of a format's isfwd ("is forwarded") method.
-Format.
+Format.
- typedef mps_addr_t (*mps_fmt_isfwd_t)(mps_addr_t addr);
typedef mps_addr_t (*mps_fmt_isfwd_t)(mps_addr_t addr);
addr
+addr
-the address of a candidate object
+the address of a candidate object
-Either a null pointer to indicate the object at @@ -5700,108 +6023,121 @@ struct mps_fmt_B_s example_fmt_B = {
-The type of a format's isfwd ("is forwarded") method. An isfwd method is used to testwhether an object has been relocated using the format's forward method.
+The type of a format's isfwd ("is forwarded") method. An isfwd method is used to testwhether an object has been relocated using the format's forward method.
- An isfwd method is provided by the client as part of a format (see protocol.mps.format(0) ).The MPS calls the isfwd method to determine whether an object in the heap has been relocated or not.Objects in the heap are relocated using the format's forward method (see mps_fmt_fwd_t). When the isfwd method is called the parameter addr will be the address of either an object or aforwarding marker created with the forward method. If it is an object (so it has not been relocated)the method should return a null pointer; otherwise it is a forward marker indicating the address ofthe relocated object, the address of the relocated object should be returned (this should be thesame as the 'new' parameter that was passed to the forward method that created the forwardingmarker).
An isfwd method is provided by the client as part of a format (see protocol.mps.format(0) ).The MPS calls the isfwd method to determine whether an object in the heap has been relocated or not.Objects in the heap are relocated using the format's forward method (see mps_fmt_fwd_t). When the isfwd method is called the parameter addr will be the address of either an object or aforwarding marker created with the forward method. If it is an object (so it has not been relocated)the method should return a null pointer; otherwise it is a forward marker indicating the address ofthe relocated object, the address of the relocated object should be returned (this should be thesame as the 'new' parameter that was passed to the forward method that created the forwardingmarker).
<example of how to use the symbol>
+<example of how to use the symbol>
- mps_fmt_A_s, mps_fmt_B_s, mps_fmt_auto_header_s, mps_fmt_fwd_t
+
+mps_fmt_A_s,
+
+mps_fmt_B_s,
+
+mps_fmt_auto_header_s,
+
+mps_fmt_fwd_t
This method is never invoked by the GC on an object in a non-moving pool.
+This method is never invoked by the GC on an object in a non-moving pool.
-mps_fmt_pad_t mps_fmt_pad_tThe type of a format's pad method.
+The type of a format's pad method.
-Format.
+Format.
- typedef void (*mps_fmt_pad_t)(mps_addr_t addr, size_t size);
typedef void (*mps_fmt_pad_t)(mps_addr_t addr, size_t size);
addr
+addr
-The address at which to create a padding object.
+The address at which to create a padding object.
-size
+size
-The size (in bytes) of the padding object to be created.
+The size (in bytes) of the padding object to be created.
-None.
+None.
-The type of a format's pad method. A pad method is used to create padding objects.
+The type of a format's pad method. A pad method is used to create padding objects.
-A pad method is provided by the client as part of a format (see Format Protocol ). The MPScalls a pad method when it wants to create a padding object. Typically the MPS creates paddingobjects to fill in otherwise unused gaps in memory; they allow the MPS to pack objects in fixed-sizeunits (such as OS pages). The pad method should create a padding object of the specified size at thespecified address. The size can be any aligned (to the format alignment) size. A padding objectshould be acceptable to other methods in the format (scan, skip, isfwd, etc.).
+A pad method is provided by the client as part of a format (see Format Protocol ). The MPScalls a pad method when it wants to create a padding object. Typically the MPS creates paddingobjects to fill in otherwise unused gaps in memory; they allow the MPS to pack objects in fixed-sizeunits (such as OS pages). The pad method should create a padding object of the specified size at thespecified address. The size can be any aligned (to the format alignment) size. A padding objectshould be acceptable to other methods in the format (scan, skip, isfwd, etc.).
-<example of how to use the symbol>
+<example of how to use the symbol>
-
+
+mps_fmt_A_s,
+
+mps_fmt_B_s
mps_fmt_scan_t mps_fmt_scan_tType of the scan method of a format.
+Type of the scan method of a format.
-Format, Scanning.
+Format, Scanning.
-typedef mps_res_t (*mps_fmt_scan_t)(mps_ss_t scan_state, mps_addr_t base, mps_addr_t limit)
scan_state
@@ -5819,24 +6155,24 @@ struct mps_fmt_B_s example_fmt_B = {
A result code.
+A result code.
-mps.h
+mps.h
- This is the type of scanning functions provided by the client in some format variants and mps_root_create_fmt. When the MPS needs to scan objects in an area of memory that thisscanning function has been registered for, it will be called with a scan state and the limits of theblock of objects to scan. It must then indicate references within the objects by usingmps_fix or one of the alternatives.
This is the type of scanning functions provided by the client in some format variants and mps_root_create_fmt. When the MPS needs to scan objects in an area of memory that thisscanning function has been registered for, it will be called with a scan state and the limits of theblock of objects to scan. It must then indicate references within the objects by usingmps_fix or one of the alternatives.
The base and limit arguments are client pointers, as usual. Notethat there might not be any object at the location indicated by limit.
The base and limit arguments are client pointers, as usual. Notethat there might not be any object at the location indicated by limit.
/* Scanner for a simple Scheme-like language with just two interesting types */ @@ -5890,40 +6226,69 @@ mps_res_t scan_objs(mps_ss_t ss, mps_addr_t base, mps_addr_t limit)-
If a fixing operation returns a value other than MPS_RES_OK, the scanningfunction must return that value, and may return without scanning further references. Generally, itis better if it returns as soon as possible. If the scanning is completed successfully, the functionshould return MPS_RES_OK.
If a fixing operation returns a value other than MPS_RES_OK, the scanning function must
+return that value, and may return without scanning further
+references. Generally, itis better if it returns as soon as
+possible. If the scanning is completed successfully, the
+function should return MPS_RES_OK.
mps_fmt_A_s, mps_fmt_B_s, mps_fmt_auto_header_s, mps_root_create_fmt, mps_fix, MPS_FIX12,MPS_FIX1, MPS_FIX2, MPS_FIX_CALL, MPS_SCAN_BEGIN, MPS_SCAN_END
+
+mps_fmt_A_s,
+
+mps_fmt_B_s,
+
+mps_fmt_auto_header_s,
+
+mps_root_create_fmt,
+
+mps_fix,
+
+MPS_FIX12,
+
+MPS_FIX1,
+
+MPS_FIX2,
+
+MPS_FIX_CALL,
+
+MPS_SCAN_BEGIN,
+
+MPS_SCAN_END
mps_fmt_skip_t mps_fmt_skip_t mps_fmt_skip_t is a function pointer type for the skip method of a format.
mps_fmt_skip_t is a function pointer type for the skip method of a format.
Format.
+Format.
- typedef mps_addr_t (*mps_fmt_skip_t)(mps_addr_t obj);
typedef mps_addr_t (*mps_fmt_skip_t)(mps_addr_t obj);
obj
@@ -5931,24 +6296,24 @@ mps_res_t scan_objs(mps_ss_t ss, mps_addr_t base, mps_addr_t limit)
The skip method should return the address of the next object.
+The skip method should return the address of the next object.
-mps.h
+mps.h
- mps_fmt_skip_t is a function pointer type for the skip method of a format.
mps_fmt_skip_t is a function pointer type for the skip method of a format.
These methods are provided by the client as part of a format and invoked by the MPS (seeFormat Protocol). The skip method takes the client pointer to the object. The method should returnthe client pointer to the next object, whether there is one or not. With no headers, this is theaddress just past the end of this object; with headers, it's the address just past where the headerof next object would be. It is always the case that the difference between the argument and thereturn value is the size of the block containing the object.
+These methods are provided by the client as part of a format and invoked by the MPS (seeFormat Protocol). The skip method takes the client pointer to the object. The method should returnthe client pointer to the next object, whether there is one or not. With no headers, this is theaddress just past the end of this object; with headers, it's the address just past where the headerof next object would be. It is always the case that the difference between the argument and thereturn value is the size of the block containing the object.
-mps_addr_t my_skip_method(mps_addr_t object) @@ -5960,52 +6325,59 @@ mps_addr_t my_skip_method(mps_addr_t object)-
A skip method is not allowed to fail.
+A skip method is not allowed to fail.
- mps_fmt_A_s, mps_fmt_B_s, mps_fmt_auto_header_s
+
+mps_fmt_A_s,
+
+mps_fmt_B_s,
+
+mps_fmt_auto_header_s
mps_fmt_t mps_fmt_t mps_fmt_t is the type of object formats.
mps_fmt_t is the type of object formats.
Format.
+Format.
- typedef struct mps_fmt_s *mps_fmt_t;
typedef struct mps_fmt_s *mps_fmt_t;
mps_fmt_s is an incomplete structure type used only to declare the opaque type mps_fmt_t.
mps_fmt_s is an incomplete structure type used only to declare the opaque type mps_fmt_t.
mps.h
+mps.h
- mps_fmt_t is the opaque type of object formats. An object format is a way for the MPS andclient programs to communicate regarding the layout of client objects. For more information, seeFormat Protocol.
mps_fmt_t is the opaque type of object formats. An object format is a way for the MPS andclient programs to communicate regarding the layout of client objects. For more information, seeFormat Protocol.
#include "mps.h" @@ -6039,619 +6411,464 @@ void go(mps_space_t space)-
mps_fmt_create_A, mps_fmt_create_B, mps_fmt_destroy, mps_fmt_A_t
+
+mps_fmt_create_A,
+
+mps_fmt_create_B,
+
+mps_fmt_destroy,
+
+mps_fmt_A_t
mps_formatted_objects_stepper_t mps_formatted_objects_stepper_t mps_formatted_objects_stepper_t
mps_formatted_objects_stepper_t
Type of the client supplied heap walker component.
+Type of the client supplied heap walker component.
-None.
+None.
-typedef void (*mps_formatted_objects_stepper_t)(mps_addr_t, mps_fmt_t, mps_pool_t, void *,size_t )
The function pointed to by an object of type mps_formatted_objects_stepper_t takes thefollowing argument list:
The function pointed to by an object of type mps_formatted_objects_stepper_t takes thefollowing argument list:
(mps_addr_t object, mps_fmt_t format, mps_pool_t pool, void *p, size_t s)
(mps_addr_t object, mps_fmt_t format, mps_pool_t pool, void *p, size_t s)
object is a pointer to the (client) object.
object is a pointer to the (client) object.
format is the MPS format of the client object.
format is the MPS format of the client object.
pool in the MPS pool in which the client object resides.
pool in the MPS pool in which the client object resides.
p and s are two closure values which are copies of the corresponding values which the clientpassed into mps_arena_formatted_objects_walk.
p and s are two closure values which are copies of the corresponding values which the clientpassed into mps_arena_formatted_objects_walk.
The function pointed to by an object of type mps_formatted_objects_stepper_t returns noarguments.
The function pointed to by an object of type mps_formatted_objects_stepper_t returns noarguments.
mps.h
+mps.h
- A pointer to a function is passed into the function mps_arena_formatted_objects_walk; the pointer has this type. The heap walker arranges to apply this function to all objects on the heap.
A pointer to a function is passed into the function mps_arena_formatted_objects_walk; the pointer has this type. The heap walker arranges to apply this function to all objects on the heap.
<example of how to use the symbol>
+<example of how to use the symbol>
- The function pointed to by an object of type mps_formatted_objects_stepper_t have no way toreturn an error code to the caller.
The function pointed to by an object of type mps_formatted_objects_stepper_t have no way toreturn an error code to the caller.
mps_arena_formatted_objects_arena_walk
+mps_arena_formatted_objects_arena_walk
mps_free mps_freeFrees a block of memory to a pool.
+Frees a block of memory to a pool.
-Allocation
+Allocation
- void mps_free(mps_pool_t pool, mps_addr_t p, size_t size);
void mps_free(mps_pool_t pool, mps_addr_t p, size_t size);
pool the pool of the object to be freed
p a pointer to the object to the freed
pool the pool of the object to be freed
size the size of the object to the freed in bytes
p a pointer to the object to the freed
size the size of the object to the freed in bytes
None.
+None.
-mps.h
+mps.h
-Frees an object of memory, returning the memory block to the pool it was allocated from.The pool might then decide to make it available to other pools, but the way this happens depends onthe pool class and the current situation.
+Frees an object of memory, returning the memory block to the pool it was allocated from.The pool might then decide to make it available to other pools, but the way this happens depends onthe pool class and the current situation.
--
mps_alloc
- mps_free takes a size argument, because it is most efficient to do so. In practicalprograms, the type of an object is usually known at the point in the code that calls thedeallocation function, and hence the size is trivially available. In such cases. storing the size onthe MPS side would cost time and memory, and make it hard to get good virtual memory behaviour (asit is, the deallocation code doesn't have to touch the dead object at all).
Undoubtedly, one day, we'll get around to writing a pool that stores the size of eachobject.
+mps_free takes a size argument, because it is most efficient to do so. In practicalprograms, the type of an object is usually known at the point in the code that calls thedeallocation function, and hence the size is trivially available. In such cases. storing the size onthe MPS side would cost time and memory, and make it hard to get good virtual memory behaviour (asit is, the deallocation code doesn't have to touch the dead object at all).
mps_lib_memcmp Undoubtedly, one day, we'll get around to writing a pool that stores the size of eachobject.
-mps_lib_memcmpA plinth function similar to C's "memcmp".
+A plinth function similar to C's "memcmp".
-Plinth
+Plinth
- int mps_lib_memcmp(const void *s1, const void *s2, size_t n);
int mps_lib_memcmp(const void *s1, const void *s2, size_t n);
s1, s2 pointers to memory blocks to be compared
-n length of the blocks, in bytes
+s1, s2 pointers to memory blocks to be compared
-n length of the blocks, in bytes
-An integer that is greater than, equal to, or less than zero, accordingly as the blockpointed to by "s1" is greater than, equal to, or less than the block pointer to by "s2".
+An integer that is greater than, equal to, or less than zero, accordingly as the blockpointed to by "s1" is greater than, equal to, or less than the block pointer to by "s2".
-mpslib.h
+mpslib.h
-This function is intended to have the same semantics as the "memcmp" function of the ANSI Cstandard (section 7.11.4.1).
-Like other plinth features, it is used by the MPS and provided by the client (possibly usingthe ANSI plinth, mpsliban.c).
+This function is intended to have the same semantics as the "memcmp" function of the ANSI Cstandard (section 7.11.4.1).
-Like other plinth features, it is used by the MPS and provided by the client (possibly usingthe ANSI plinth, mpsliban.c).
-None, clients don't use it.
+None, clients don't use it.
-None.
+None.
- mps_lib_memset, mps_lib_memcpy, mpsliban.c
-
None.
+mps_lib_memset,
+mps_lib_memcpy,
+mpsliban.c
-mps_lib_memcpy None.
- +mps_lib_memcpyA plinth function similar to C's "memcpy".
+Plinth
+A plinth function similar to C's "memcpy".
- void *mps_lib_memcpy(void *dest, const void *source, size_t n);
Plinth
-dest destination of copy
+source source of copy
+void *mps_lib_memcpy(void *dest, const void *source, size_t n);
n length of the blocks, in bytes
+dest destination of copy
-Returns the value of the dest argument.
+source source of copy
+n length of the blocks, in bytes
-mpslib.h
+Returns the value of the dest argument.
-This function is intended to have the same semantics as the "memcpy" function of the ANSI Cstandard (section 7.11.2.1).
+Like other plinth features, it is used by the MPS and provided by the client (possibly usingthe ANSI plinth, mpsliban.c).
+mpslib.h
-None, clients don't use it.
+This function is intended to have the same semantics as the "memcpy" function of the ANSI Cstandard (section 7.11.2.1).
+Like other plinth features, it is used by the MPS and provided by the client (possibly usingthe ANSI plinth, mpsliban.c).
-None.
+None, clients don't use it.
- mps_lib_memset, mps_lib_memcmp, mpsliban.c
None.
-None.
+-
mps_lib_memset mps_lib_memset,
+mps_lib_memcmp,
+mpsliban.c
-None.
-A plinth function similar to C's "memset".
+mps_lib_memsetPlinth
+ - void *mps_lib_memset(void *s, int c, size_t n);
A plinth function similar to C's "memset".
-s destination of copy
+Plinth
-c byte (when converted to an unsigned char) to copy
-n length of the block, in bytes
+void *mps_lib_memset(void *s, int c, size_t n);
Returns the value of s.
+s destination of copy
-c byte (when converted to an unsigned char) to copy
-mpslib.h
+n length of the block, in bytes
-This function is intended to have the same semantics as the "memset" function of the ANSI Cstandard (section 7.11.6.1).
+Returns the value of s.
-Like other plinth features, it is used by the MPS and provided by the client (possibly usingthe ANSI plinth, mpsliban.c).
+mpslib.h
-None, clients don't use it.
+This function is intended to have the same semantics as the "memset" function of the ANSI Cstandard (section 7.11.6.1).
-None.
+Like other plinth features, it is used by the MPS and provided by the client (possibly usingthe ANSI plinth, mpsliban.c).
- mps_lib_memcpy, mps_lib_memcmp, mpsliban.c
None, clients don't use it.
-None.
+None.
-mps_lib_telemetry_control -
mps_lib_memcpy,
-
+mps_lib_memcmp,
+mpsliban.c
-Plinth function to supply a default value for telemetry filters from environment.
+None.
-mps_lib_telemetry_controlTelemetry
+ unsigned long mps_lib_telemetry_control();
Plinth function to supply a default value for telemetry filters from environment.
-None.
+Telemetry
-In the absence of environmental data, a default of zero is recommended.
+unsigned long mps_lib_telemetry_control();
The default value of the telemetry filter, as derived from the environment. It isrecommended that the environment be consulted for a symbol analagous to MPS_TELEMETRY_CONTROL, subject to local restrictions.
None.
-Depends on access to the environment.
+In the absence of environmental data, a default of zero is recommended.
- See mps_telemetry_control for more information on the significant of the values.
+
The default value of the telemetry filter, as derived from the environment. It isrecommended that the environment be consulted for a symbol analagous to MPS_TELEMETRY_CONTROL, subject to local restrictions.
See the supplied ANSI plinth for an example implementation.
+Depends on access to the environment.
-See mps_telemetry_control for more information on the significant of the values.
mps_message_collection_stats_condemned_size mps_message_collection_stats_condemned_size
See the supplied ANSI plinth for an example implementation.
- mps_message_collection_stats_condemned_size returns the "condemned size" property of thespecified message in the specified arena.
Message, GC.
+mps_message_discard size_t mps_message_collection_stats_condemned_size(mps_message_t message)
message -- a message of a message type that supports this method
+mps_message_discard is used to indicate that there is no further use for thespecified message.
Not applicable.
+Message.
-An approximate size for the set of objects condemned in the collection that generated themessage.
+void mps_message_discard(mps_arena_t arena, mps_message_t message)
Not applicable.
- - - Currently, the only type of message that supports this property, is mps_message_type_collection_stats, which is generated whenever a garbage collection completes. Thismethod returns an approximation to the size of the set of objects that were condemned in thatcollection.
mps_message_*
mps_message_collection_stats_live_size mps_message_collection_stats_live_size
mps_message_collection_stats_live_size returns the "live size" property of the specifiedmessage in the specified arena.
Message, GC.
- - - size_t mps_message_collection_stats_live_size(mps_message_t message)
message -- a message of a message type that supports this method
- - -Not applicable.
- - -The total size of the condemned objects that survived the collection that generated themessage.
- - -Not applicable.
- - - Currently, the only type of message that supports this property, is mps_message_type_collection_stats, which is generated whenever a garbage collection completes. Thismethod returns the size of the set of objects that were condemned in that collection, but survived.
mps_message_*
mps_message_sollection_stats_not_condemned_size mps_message_collection_stats_not_condemned_size
mps_message_collection_stats_not_condemned_size returns the "not condemned size" propertyof the specified message in the specified arena.
Message, GC.
- - - size_t mps_message_collection_stats_not_condemned_size(mps_message_t message)
message -- a message of a message type that supports this method
- - -Not applicable.
- - -An approximate size for the set of objects that were in collected pools, but were notcondemned in the collection that generated the message.
- - -Not applicable.
- - - Currently, the only type of message that supports this property, is mps_message_type_collection_stats, which is generated whenever a garbage collection completes. Thismethod returns an approximation to the size of the set of objects that were in collected pools, butwere not condemned in that collection.
mps_message_*
mps_message_discard mps_message_discard is used to indicate that there is no further use for thespecified message.
Message.
- - - void mps_message_discard(mps_arena_t arena, mps_message_t message)
arena
@@ -6664,131 +6881,138 @@ void go(mps_space_t space)
None.
+None.
-mps.h
+mps.h
- mps_message_discard is used to indicate that the client has no further use forthe specified message in the specified arena. After this, the message may not be passed as argumentto any message functions.
mps_message_discard
+is used to indicate that the client has no further use for the specified message in the specified arena. After this, the message may not be passed as argumentto any message functions.
This procedure is called by the client program as a courtesy, to avoid the use of unboundedresources by the message queue itself and any other MPS-managed objects referred to by the message.
+This procedure is called by the client program as a courtesy, to avoid the use of unboundedresources by the message queue itself and any other MPS-managed objects referred to by the message.
-[missing]
+[missing]
-Can't fail.
+Can't fail.
-A finalized object will not be reclaimed by the collector until the finalization message hasbeen discarded, because the message contains a reference to the object.
+A finalized object will not be reclaimed by the collector until the finalization message hasbeen discarded, because the message contains a reference to the object.
-mps_message_finalization_ref mps_message_finalization_ref mps_message_finalization_ref returns the "finalization reference" property of thespecified message in the specified arena.
mps_message_finalization_ref returns the "finalization reference" property of thespecified message in the specified arena.
Message, finalization.
+Message, finalization.
- void mps_message_finalization_ref(mps_addr_t *object_ref, mps_arena_t arena, mps_message_tmessage)
void mps_message_finalization_ref(mps_addr_t *object_ref, mps_arena_t arena, mps_message_tmessage)
object_ref -- a reference to a reference to the object to which the message belongs
+arena -- the arena that the message is in
+object_ref -- a reference to a reference to the object to which the message belongs
-message -- a message of a message type that supports this method
+arena -- the arena that the message is in
+message -- a message of a message type that supports this method
-None.
+None.
-mps.h
+mps.h
- This method returns the "finalization reference" property of the specified message in thespecified arena. The message must be of a message type that supports this method. Currently, theonly such type is that of finalization messages, as returned by mps_message_type_finalization.
Note that the reference returned is subject to the normal constraints such as movingcollection, if appropriate. For this reason, it is returned indirectly via "object_ref" to enablethe client to place it directly into scanned memory, without imposing the restriction that the Cstack be a root.
+This method returns the "finalization reference" property of the specified message in thespecified arena. The message must be of a message type that supports this method. Currently, theonly such type is that of finalization messages, as returned by mps_message_type_finalization.
Note that the invocation of this method does not affect the liveness of the specifiedmessage and hence the liveness of the object referred to by "object_ref. Use mps_message_discard to discard messages.
Note that the reference returned is subject to the normal constraints such as movingcollection, if appropriate. For this reason, it is returned indirectly via "object_ref" to enablethe client to place it directly into scanned memory, without imposing the restriction that the Cstack be a root.
+Note that the invocation of this method does not affect the liveness of the specifiedmessage and hence the liveness of the object referred to by "object_ref. Use mps_message_discard to discard messages.
mps_message_*, mps_finalize
-
mps_message_gc_condemned_size mps_message_*,
+mps_finalize
-mps_message_gc_condemned_size mps_message_gc_condemned_size returns the "condemned size" property of the specified message in the specified arena.
Message, GC.
+mps_message_gc_condemned_size returns the "condemned size" property of the specified message in the specified arena.
size_t mps_message_gc_condemned_size(mps_arena_t arena, mps_message_tmessage)
Message, GC.
- arena-- the arena
size_t mps_message_gc_condemned_size(mps_arena_t arena, mps_message_tmessage)
arena-- the arena
@@ -6796,12 +7020,12 @@ void go(mps_space_t space)
An approximate size for the set of objects condemned in the collection that generated themessage.
+An approximate size for the set of objects condemned in the collection that generated themessage.
-
@@ -6810,58 +7034,60 @@ void go(mps_space_t space)
Currently, the only type of message that supports this property is mps_message_type_gc, such messages are generated whenever a garbage collectioncompletes. This method returns an approximation to the size of the set of objects that werecondemned in that collection.
Currently, the only type of message that supports this property is mps_message_type_gc, such messages are generated whenever a garbage collectioncompletes. This method returns an approximation to the size of the set of objects that werecondemned in that collection.
mps_message_*
+
+mps_message_*
mps_message_gc_live_size mps_message_gc_live_size mps_message_gc_live_size returns the "live size" property of thespecified message in the specified arena.
mps_message_gc_live_size returns the "live size" property of thespecified message in the specified arena.
Message, GC.
+Message, GC.
- size_t mps_message_gc_live_size(mps_arena_t arena, mps_message_t message)
size_t mps_message_gc_live_size(mps_arena_t arena, mps_message_t message)
arena -- the arena;
arena -- the arena;
message -- a message of a message type that supports thismethod.
message -- a message of a message type that supports thismethod.
The total size of the condemned objects that survived the collection that generated themessage.
+The total size of the condemned objects that survived the collection that generated themessage.
-
@@ -6870,46 +7096,48 @@ void go(mps_space_t space)
Currently, the only type of message that supports this property is mps_message_type_gc, such messages are generated whenever a garbage collectioncompletes. This method returns the size of the set of objects that were condemned in thatcollection, but survived.
Currently, the only type of message that supports this property is mps_message_type_gc, such messages are generated whenever a garbage collectioncompletes. This method returns the size of the set of objects that were condemned in thatcollection, but survived.
mps_message_*
+
+mps_message_*
mps_message_gc_not_condemned_size mps_message_gc_not_condemned_size mps_message_gc_not_condemned_size
mps_message_gc_not_condemned_size
mps_message_gc_not_condemned_size returns the "not condemnedsize" property of the specified message in the specified arena.
mps_message_gc_not_condemned_size returns the "not condemnedsize" property of the specified message in the specified arena.
Message, GC.
+Message, GC.
- size_t mps_message_gc_not_condemned_size(mps_arena_t arena,mps_message_t message)
size_t mps_message_gc_not_condemned_size(mps_arena_t arena,mps_message_t message)
@@ -6926,56 +7154,58 @@ void go(mps_space_t space)
An approximate size for the set of objects that were in collected pools, but were notcondemned in the collection that generated the message.
+An approximate size for the set of objects that were in collected pools, but were notcondemned in the collection that generated the message.
- mps.h
mps.h
Currently, the only type of message that supports this property is mps_message_type_gc; such messages are generated whenever a garbage collectioncompletes. This method returns an approximation to the size of the set of objects that were incollected pools (so potentially subject to garbage collection), but were not condemned in thatcollection.
Currently, the only type of message that supports this property is mps_message_type_gc; such messages are generated whenever a garbage collectioncompletes. This method returns an approximation to the size of the set of objects that were incollected pools (so potentially subject to garbage collection), but were not condemned in thatcollection.
mps_message_*
+
+mps_message_*
mps_message_get mps_message_getGets a message of the specified type from a message queue.
+Gets a message of the specified type from a message queue.
-Message.
+Message.
- mps_bool_t mps_message_get(mps_message_t *message_return, mps_arena_t arena, mps_message_type_tmessage_type)
mps_bool_t mps_message_get(mps_message_t *message_return, mps_arena_t arena, mps_message_type_tmessage_type)
message_return
@@ -6993,17 +7223,17 @@ void go(mps_space_t space)
Returns true if a message has been removed from the queue, false if not.
+Returns true if a message has been removed from the queue, false if not.
-mps.h
+mps.h
-
If there is a message of the specified type on the message queue of the specified arena,then this function removes one such message from the queue, returns a handle to it via themessage_return
@@ -7012,38 +7242,40 @@ void go(mps_space_t space)
mps_message_*
+
+mps_message_*
mps_message_poll mps_message_poll mps_message_poll determines whether there are currently any messages on amessage queue.
mps_message_poll determines whether there are currently any messages on amessage queue.
Message.
+Message.
- mps_bool_t mps_message_poll(mps_arena_t arena)
mps_bool_t mps_message_poll(mps_arena_t arena)
arena
@@ -7051,487 +7283,400 @@ void go(mps_space_t space)
A flag to indicate whether there are any messages on the queue.
+A flag to indicate whether there are any messages on the queue.
-mps.h
+mps.h
- mps_message_poll is used to determine whether there are currently any messageson the message queue of the specified arena.
mps_message_poll is used to determine whether there are currently any messageson the message queue of the specified arena.
[missing]
+[missing]
-Can't fail.
+Can't fail.
- If you expect a particular type of message, it is usually more practical to just call mps_message_get.
If you expect a particular type of message, it is usually more practical to just call mps_message_get.
mps_message_queue_type mps_message_queue_type mps_message_queue_type returns the type of the first message on a message queue.
mps_message_queue_type returns the type of the first message on a message queue.
Message.
+Message.
- mps_bool_t mps_message_queue_type(mps_message_type_t *message_type_return, mps_arena_t arena)
mps_bool_t mps_message_queue_type(mps_message_type_t *message_type_return, mps_arena_t arena)
message_type_return -- the type of the first message on the queue of the specified arena
+arena -- the arena
+message_type_return -- the type of the first message on the queue of the specified arena
+arena -- the arena
-"True" if there are any messages on the queue of the specified arena, "false" if not.
+"True" if there are any messages on the queue of the specified arena, "false" if not.
-mps.h
+mps.h
-If there are any messages on the queue of the specified arena, then this function returns"true", and also returns the type of the first message via "message_type_return". Otherwise itreturns "false".
+If there are any messages on the queue of the specified arena, then this function returns"true", and also returns the type of the first message via "message_type_return". Otherwise itreturns "false".
- mps_message_*
-
mps_message_t mps_message_*
-mps_message_t mps_message_t is used as a handle on an individual message.
mps_message_t is used as a handle on an individual message.
Message.
+Message.
- typedef struct mps_message_s *mps_message_t
mps_message_s is an incomplete structure type used only to declare the opaque type mps_message_t.
typedef struct mps_message_s *mps_message_t
mps_message_s is an incomplete structure type used only to declare the opaque type mps_message_t.
mps.h
+mps.h
- The opaque type mps_message_t is used as a handle on an individual message. Messages aremanually managed. They are created at the instigation of the MPS (but see mps_message_type_enable), and are deleted by the client.
An mps_message_t is a reference into MPS managed memory, and can safely be stored as suchin scannable memory.
The opaque type mps_message_t is used as a handle on an individual message. Messages aremanually managed. They are created at the instigation of the MPS (but see mps_message_type_enable), and are deleted by the client.
An mps_message_t is a reference into MPS managed memory, and can safely be stored as suchin scannable memory.
Not applicable.
+Not applicable.
- mps_message_*
mps_message_type
+mps_message_*
mps_message_type mps_message_type returns the type of a message.
Message.
+mps_message_type returns the type of a message.
mps_message_type_t mps_message_type(mps_arena_t arena, mps_message_t message)
Message.
-arena -- the arena containing the message
+mps_message_type_t mps_message_type(mps_arena_t arena, mps_message_t message)
message -- a valid message; that is, one previously returned by mps_message_get, and notdiscarded via mps_message_discard
arena -- the arena containing the message
-The type of the specified message.
+message -- a valid message; that is, one previously returned by mps_message_get, and notdiscarded via mps_message_discard
mps.h
+The type of the specified message.
- mps_message_type returns the type of a message.
mps.h
-mps_message_type returns the type of a message.
mps_message_*
mps_message_type_collection_stats -
mps_message_*
- mps_message_type_collection_stats
mps_message_type_disable mps_message_type_collection_stats returns the type of garbage collection statistic messages.
Message, gc.
+mps_message_type_disable restores the arena to the default state whereby messages of thespecified type are not generated.
This reverses the effect of an earlier call to "m ps_message_type_enable".
- mps_message_type_t mps_message_type_collection_stats()
Message.
-Not applicable.
+void mps_message_type_disable(mps_arena_t arena, mps_message_type_t message_type)
The type of garbage collection statistic messages.
+arena -- the arena
+message_type -- the message type to be disabled
-Not applicable.
+None.
- mps_message_type_collection_stats returns the type of garbage collection statisticmessages. Garbage collection statistic messages are used by the MPS to give the client informationabout garbage collections that have occurred. Such information may be useful in analysing theclient's memory usage over time.
The access methods specific to a message of this type are:
+mps.h
-This procedure may be used by the client to specify that messages of the specified typeshould not created for the specified arena.
-Messages are not generated by default, but the client may enable the generation of messageswith mps_message_type_enable.
Any existing messages of the specified type are flushed from the message queue.
-
-{
- mps_message_type_t type;
+[none]
- if(mps_message_queue_type(&type, arena)) {
- if(type == mps_message_type_collection_stats()) {
- size_t live, condemned, not_condemned;
- mps_message_t message;
- mps_bool_t got_message;
- got_message = mps_message_get(&message, arena, type);
- assert(got_message);
- live = mps_message_collection_stats_live_size(message);
- condemned = mps_message_collection_stats_condemned_size(message);
- not_condemned = mps_message_collection_stats_not_condemned_size(message);
- mps_message_discard(arena, message);
- process_collection_stats(live, condemned, not_condemned);
- } else {
- unknown_message_type();
- }
- }
-}
-
+Never fails.
-Cannot fail.
+-
mps_message_*,
mps_message_*
-"Message Protocol", "GC Protocol"
+It is permitted to call this function when the message type is already disabled. Such a callwill have no effect.
-mps_message_type_disable mps_message_type_enable mps_message_type_disable restores the arena to the default state whereby messages of thespecified type are not generated.
mps_message_type_enable allows messages of the specified type to be created for thespecified arena. Without such enabling, the MPS will, by default, not generate any messages of thattype.
This reverses the effect of an earlier call to "m ps_message_type_enable".
+Message.
-Message.
+void mps_message_type_enable(mps_arena_t arena, mps_message_type_t message_type)
void mps_message_type_disable(mps_arena_t arena, mps_message_type_t message_type)
arena -- the arena
-arena -- the arena
+message_type -- the message type to be enabled
-message_type -- the message type to be disabled
+None.
-None.
+mps.h
-mps.h
+This procedure may be used by the client to specify that messages of the specified type maybe created for the specified arena. Without such enabling, the MPS will by default not generate anymessages of that type.
-This procedure may be used by the client to specify that messages of the specified typeshould not created for the specified arena.
+Note that the enabling of messages of a particular type implies that the client applicationwill handle and discard message of that type, or the message queue may consume unbounded resources.
- Messages are not generated by default, but the client may enable the generation of messageswith mps_message_type_enable.
The client may disable message generation again by means of an equivalent call to mps_message_type_disable.
Any existing messages of the specified type are flushed from the message queue.
+[none]
-[none]
+Never fails.
-Never fails.
+-
mps_message_*
mps_message_*
+"Message Protocol"
-It is permitted to call this function when the message type is already disabled. Such a callwill have no effect.
+It is permitted to call this function when the message type is already enabled. Such a callwill have no effect.
-mps_message_type_enable mps_message_type_finalization mps_message_type_enable allows messages of the specified type to be created for thespecified arena. Without such enabling, the MPS will, by default, not generate any messages of thattype.
mps_message_type_finalization returns the type of finalization messages.
Message.
+Message, Finalization.
- void mps_message_type_enable(mps_arena_t arena, mps_message_type_t message_type)
mps_message_type_t mps_message_type_finalization(void)
arena -- the arena
-message_type -- the message type to be enabled
+None.
-None.
+The type of finalization messages.
-mps.h
+Not applicable.
-This procedure may be used by the client to specify that messages of the specified type maybe created for the specified arena. Without such enabling, the MPS will by default not generate anymessages of that type.
+Note that the enabling of messages of a particular type implies that the client applicationwill handle and discard message of that type, or the message queue may consume unbounded resources.
+mps_message_type_finalization returns the type of finalization messages. Finalizationmessages are used by the MPS see signal to the client that an object has become finalizable. Inaddition to the usual methods applicable to messages, finalization messages support the mps_message_finalization_ref method which returns a reference to the registered object.
The client may disable message generation again by means of an equivalent call to mps_message_type_disable.
[none]
- - -Never fails.
- - - mps_message_*
"Message Protocol"
- - -It is permitted to call this function when the message type is already enabled. Such a callwill have no effect.
- -- - -
mps_message_type_finalization mps_message_type_finalization returns the type of finalization messages.
Message, Finalization.
- - - mps_message_type_t mps_message_type_finalization(void)
None.
- - -The type of finalization messages.
- - -Not applicable.
- - - mps_message_type_finalization returns the type of finalization messages. Finalizationmessages are used by the MPS see signal to the client that an object has become finalizable. Inaddition to the usual methods applicable to messages, finalization messages support the mps_message_finalization_ref method which returns a reference to the registered object.
{
@@ -7547,45 +7692,49 @@ void go(mps_space_t space)
}
- mps_message_*, mps_finalize
+
+mps_message_*,
+
+mps_finalize
mps_message_type_gc mps_message_type_gc mps_message_type_gc returns the type of garbage collectionstatistic messages.
mps_message_type_gc returns the type of garbage collectionstatistic messages.
Message.
+Message.
- mps_message_type_t mps_message_type_gc(void)
mps_message_type_t mps_message_type_gc(void)
None.
+None.
-The type of garbage collection statistic messages.
+The type of garbage collection statistic messages.
-
@@ -7594,24 +7743,25 @@ void go(mps_space_t space)
mps_message_type_gc returns the type of garbage collectionstatistic messages. Garbage collection statistic messages are used by the MPS to give the clientinformation about garbage collections that have occurred. Such information may be useful inanalysing the client's memory usage over time.
mps_message_type_gc returns the type of garbage collectionstatistic messages. Garbage collection statistic messages are used by the MPS to give the clientinformation about garbage collections that have occurred. Such information may be useful inanalysing the client's memory usage over time.
The access methods specific to a message of this type are:
+The access methods specific to a message of this type are:
mps_message_gc_live_size -- gives the total size of thecondemned objects that survived the collection that generated the message
mps_message_gc_live_size -- gives the total size of thecondemned objects that survived the collection that generated the message
mps_message_gc_condemned_size -- gives an approximate size forthe set of objects condemned in the collection that generated the message.
mps_message_gc_condemned_size
+ -- gives an approximate size for the set of objects condemned in the collection that generated the message.
mps_message_gc_not_condemned_size -- gives an approximate sizefor the set of objects that were in collected pools, but were not condemned in the collection thatgenerated the message.
mps_message_gc_not_condemned_size -- gives an approximate sizefor the set of objects that were in collected pools, but were not condemned in the collection thatgenerated the message.
{
@@ -7628,126 +7778,131 @@ void go(mps_space_t space)
-Cannot fail.
+Cannot fail.
- mps_message_*,
mps_message_type_t mps_message_type_t is the type of message types.
Message.
- - -mps.h
- - - mps_message_type_t is the type whose values are the various message types. It is opaque.
mps_message_*
mps_pool_check_fenceposts Check all the fenceposts in the pool.
- - -Debug
- - - void mps_pool_check_fenceposts(mps_pool_t pool)
pool the pool whose fenceposts are to be checked
- - -mps.h
- - -This function is a debugging feature to check all the fenceposts in the pool. If a corruptedfencepost is found, an assert will fire. It is only useful to call this on a debug pool that hadfenceposting turned, it does nothing on other pools.
- - - mps_pool_check_fenceposts(gene_pool);
If a corrupted fencepost is found, an assert will fire. You can install an assert handlerusing mps_assert_install, but you'll probably want to look at the problem with adebugger instead.
mps_assert_install, mps_class_*_debug
mps_pool_debug_option_s mps_message_*.
- This structure is used to pass debug options to mps_pool_create for debug classes.
mps_message_type_tDebug.
+ -mps_message_type_t is the type of message types.
Message.
+ + +mps.h
+ + +mps_message_type_t is the type whose values are the various message types. It is opaque.
+
+mps_message_*
mps_pool_check_fencepostsCheck all the fenceposts in the pool.
+ + +Debug
+ + +void mps_pool_check_fenceposts(mps_pool_t pool)
pool the pool whose fenceposts are to be checked
+ + +mps.h
+ + +This function is a debugging feature to check all the fenceposts in the pool. If a corruptedfencepost is found, an assert will fire. It is only useful to call this on a debug pool that hadfenceposting turned, it does nothing on other pools.
+ + +mps_pool_check_fenceposts(gene_pool);
If a corrupted fencepost is found, an assert will fire. You will +probably want to look at the problem with a debugger.
+ + +
+
+mps_class_*_debug
mps_pool_debug_option_sThis structure is used to pass debug options to mps_pool_create for debug classes.
Debug.
+ + +
typedef struct mps_pool_debug_option_s {
@@ -7757,7 +7912,7 @@ typedef struct mps_pool_debug_option_s {
-
fence_template
@@ -7770,23 +7925,23 @@ typedef struct mps_pool_debug_option_s {
mps.h
+mps.h
- Structures of this type are used to pass debug options to mps_pool_create when creatinginstances of debug classes.
Structures of this type are used to pass debug options to mps_pool_create when creatinginstances of debug classes.
Fenceposting is enabled by specifying a non-zero fence_size; the size mustbe a multiple of the [pool/format] alignment. The content of fenceposts is given as a template thatis simply copied onto each fencepost (although sometimes the MPS will create fenceposts smaller thanthe given size, for example, to pad out some bit that was left unused because of alignmentrequirements).
Fenceposting is enabled by specifying a non-zero fence_size; the size mustbe a multiple of the [pool/format] alignment. The content of fenceposts is given as a template thatis simply copied onto each fencepost (although sometimes the MPS will create fenceposts smaller thanthe given size, for example, to pad out some bit that was left unused because of alignmentrequirements).
static mps_pool_debug_option_s debugOptions = { (void *)"postpost", 8 };
-if(mps_pool_create(&pool, arena, mps_class_epdl_debug(),
+if(mps_pool_create(&pool, arena, mps_class_ams_debug(),
&debugOptions, 8192, 135, 8)
!= MPS_RES_OK) {
printf("Error creating pool!"); exit(2);
@@ -7794,336 +7949,360 @@ if(mps_pool_create(&pool, arena, mps_class_epdl_debug(),
-Fencepost templates allow the client to specify complicated patterns that mimic illegal datavalues, that would cause an assert to fire if read by mistake, and that would never be written byany operation that writes at the wrong address by mistake.
+Another trick is to make the pattern contain an instruction sequence that would cause theprogram to error or stop if executed by mistake.
+Fencepost templates allow the client to specify complicated patterns that mimic illegal datavalues, that would cause an assert to fire if read by mistake, and that would never be written byany operation that writes at the wrong address by mistake.
+Another trick is to make the pattern contain an instruction sequence that would cause theprogram to error or stop if executed by mistake.
-mps_rank_ambig mps_rank_ambigFunction returning the value representing "rank ambig".
+Function returning the value representing "rank ambig".
-Allocation, Root, Scanning.
+Allocation, Root, Scanning.
- mps_rank_ambig()
mps_rank_ambig()
mps_rank_t mps_rank_ambig(void)
mps_rank_t mps_rank_ambig(void)
None.
+None.
- Returns a value of type mps_rank_t representing "rank ambig".
Returns a value of type mps_rank_t representing "rank ambig".
mps.h
+mps.h
-Used to get a value for "rank ambig", which is used to denote that certain references (in aroot, for example) are ambiguous references.
+Used to get a value for "rank ambig", which is used to denote that certain references (in aroot, for example) are ambiguous references.
--
mps_rank_exact mps_rank_t,
+mps_rank_exact
-mps_rank_exactUsed to declare references which the client wishes to be exact references.
+ -Allocation, Root, Scanning.
+Used to declare references which the client wishes to be exact references.
- mps_rank_t mps_rank_exact(void);
Allocation, Root, Scanning.
-No arguments.
+mps_rank_t mps_rank_exact(void);
Returns a rank (see mps_rank_t) which can be used to declare references to be exactreferences.
No arguments.
-mps.h
+Returns a rank (see mps_rank_t) which can be used to declare references to be exactreferences.
Used to declare references which the client wishes to be exact, non-weak references.
+mps.h
-[missing]
+Used to declare references which the client wishes to be exact, non-weak references.
- mps_rank_t, mps_rank_ambig, mps_rank_weak
[missing]
-mps_rank_t -
mps_rank_t,
-
+mps_rank_ambig,
+mps_rank_weak
-A type whose values are "reference ranks".
+mps_rank_tAllocation, Root.
+ - typedef unsigned int mps_rank_t;
A type whose values are "reference ranks".
-mps.h
+Allocation, Root.
- mps_rank_t is a concrete type. It is an alias (via the C typedef mechanism) for "unsignedint" provided for convenience and clarity. An object of type mps_rank_t can store a valuerepresenting one reference rank. Reference ranks are used to conveniently express specific semanticsof particular references. See "MPS Scanning Protocol" for descriptions of these semantics, and mps_rank_* for the actual ranks used to declare these semantics.
typedef unsigned int mps_rank_t;
(Probably won't be used explicitly, most likely to be seen in the prototype declaration forother MPS functions. For example, mps_root_create.)
mps.h
- mps_rank_*
mps_rank_t is a concrete type. It is an alias (via the C typedef mechanism) for "unsignedint" provided for convenience and clarity. An object of type mps_rank_t can store a valuerepresenting one reference rank. Reference ranks are used to conveniently express specific semanticsof particular references. See "MPS Scanning Protocol" for descriptions of these semantics, and mps_rank_* for the actual ranks used to declare these semantics.
mps_rank_weak (Probably won't be used explicitly, most likely to be seen in the prototype declaration forother MPS functions. For example, mps_root_create.)
-
mps_rank_*
-Function to return a value used to represent "rank weak".
+mps_rank_weakAllocation, Scanning.
+ extern mps_rank_t mps_rank_weak(void);
Function to return a value used to represent "rank weak".
-None.
+Allocation, Scanning.
- Returns a value of type mps_rank_t that represent "rank weak".
extern mps_rank_t mps_rank_weak(void);
mps.h
+None.
- mps_rank_weak returns a value used to represent "rank weak".
"Rank weak" is often used to denote that certain references (in a root or in objectsallocated in a pool) are weak references.
+Returns a value of type mps_rank_t that represent "rank weak".
<example of how to use the symbol>
+mps.h
-mps_rank_weak returns a value used to represent "rank weak".
"Rank weak" is often used to denote that certain references (in a root or in objectsallocated in a pool) are weak references.
-mps_reg_scan_t <example of how to use the symbol>
- +-
Type of root scanning functions for mps_root_create_reg.
mps_rank_t,
+mps_rank_exact
-Root.
+mps_reg_scan_tType of root scanning functions for mps_root_create_reg.
Root.
+ + +typedef mps_res_t (*mps_reg_scan_t)( mps_ss_t scan_state, mps_thr_t thread, void *p, size_t s)
scan_state a scan state
+scan_state a scan state
-thread the thread
+thread the thread
-p a value passed through from root registration
+p a value passed through from root registration
-s a value passed through from root registration
+s a value passed through from root registration
-A result code.
+A result code.
-mps.h
+mps.h
- This is the type of root scanning functions the client provides to mps_root_create_reg.These functions will be called, whenever the root needs to be scanned, and passed the "p" and "s"values specified in the call to mps_root_create_reg.
This is the type of root scanning functions the client provides to mps_root_create_reg.These functions will be called, whenever the root needs to be scanned, and passed the "p" and "s"values specified in the call to mps_root_create_reg.
mps_root_create_reg, mps_stack_scan_ambig
+
+mps_root_create_reg,
+
+mps_stack_scan_ambig
Users are not expected to write any scanning functions of this type. The one functionsupplied with the MPS, mps_stack_scan_ambig, should be enough for most purposes.
Users are not expected to write any scanning functions of this type. The one functionsupplied with the MPS, mps_stack_scan_ambig, should be enough for most purposes.
mps_res_t mps_res_t mps_res_t is the type of result codes returned by operations that may fail.
mps_res_t is the type of result codes returned by operations that may fail.
typedef int mps_res_t;
typedef int mps_res_t;
mps.h
+mps.h
-A result code indicates the success or failure of an operation, along with the reason forfailure. Like UNIX error codes, the meaning of the code depends on the call that returned it. Referto the documentation of the function for the exact meaning. This documentation describes the broadcategories with mnemonic names for various sorts of problems.
+A result code indicates the success or failure of an operation, along with the reason forfailure. Like UNIX error codes, the meaning of the code depends on the call that returned it. Referto the documentation of the function for the exact meaning. This documentation describes the broadcategories with mnemonic names for various sorts of problems.
- MPS_RES_OK: The operation succeeded. Out and in/out parameters will only be updated if OK isreturned, otherwise they will be left untouched. MPS_RES_OK is zero.
MPS_RES_OK: The operation succeeded. Out and in/out parameters will only be updated if OK isreturned, otherwise they will be left untouched. MPS_RES_OK is zero.
MPS_RES_FAIL: Something went wrong that does not fall into any of the other categories. Theexact meaning depends on the call. See the documentation of the function.
MPS_RES_FAIL: Something went wrong that does not fall into any of the other categories. Theexact meaning depends on the call. See the documentation of the function.
MPS_RES_RESOURCE: A needed resource could not be obtained. Which resource, depends on thecall. Compare with MPS_RES_MEMORY, which is a special case of this.
MPS_RES_RESOURCE: A needed resource could not be obtained. Which resource, depends on thecall. Compare with MPS_RES_MEMORY, which is a special case of this.
MPS_RES_MEMORY: Needed memory (committed memory, not address space) could not be obtained.
MPS_RES_MEMORY: Needed memory (committed memory, not address space) could not be obtained.
MPS_RES_LIMIT: An internal limitation was reached. For example, the maximum number ofsomething was reached.
MPS_RES_LIMIT: An internal limitation was reached. For example, the maximum number ofsomething was reached.
MPS_RES_UNIMPL: The operation, or some vital part of it, is unimplemented. This might bereturned by functions that are no longer supported, or by operations that are included for futureexpansion, but not yet supported.
MPS_RES_UNIMPL: The operation, or some vital part of it, is unimplemented. This might bereturned by functions that are no longer supported, or by operations that are included for futureexpansion, but not yet supported.
MPS_RES_IO: An I/O error occurred. Exactly what depends on the function.
MPS_RES_IO: An I/O error occurred. Exactly what depends on the function.
MPS_RES_COMMIT_LIMIT: The arena's commit limit would have been exceeded as a result of(explicit or implicit) allocation. See protocol.arena.commit.
MPS_RES_COMMIT_LIMIT: The arena's commit limit would have been exceeded as a result of(explicit or implicit) allocation. See protocol.arena.commit.
MPS_RES_PARAM: A parameter of the operation was invalid.
MPS_RES_PARAM: A parameter of the operation was invalid.
ny function that might fail will return a result code. Any other results of the function arebe passed back in "return" parameters. See MPS Interface Conventions for more information.
+ny function that might fail will return a result code. Any other results of the function arebe passed back in "return" parameters. See MPS Interface Conventions for more information.
-
mps_addr_t p;
@@ -8136,72 +8315,74 @@ if(res != MPS_RES_OK) {
}
-For more examples, s ee doc.mps.ref-man.if-conv.
+For more examples, s ee doc.mps.ref-man.if-conv.
- MPS_RES_*
+
+MPS_RES_*
mps_root_create mps_root_create The function mps_root_create declares a root that consists of all the references indicatedby a scanning function.
The function mps_root_create declares a root that consists of all the references indicatedby a scanning function.
Root.
+Root.
- mps_res_t mps_root_create(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_trm, mps_root_scan_t scan, void *p, size_t s)
mps_res_t mps_root_create(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_trm, mps_root_scan_t scan, void *p, size_t s)
root_o a pointer to a variable to store the new root structure
+root_o a pointer to a variable to store the new root structure
-arena the arena
+arena the arena
-rank the rank of references in the root
+rank the rank of references in the root
-rm the root mode
+rm the root mode
-scan the scanning function
+scan the scanning function
-p a value to be passed to the scanning function
+p a value to be passed to the scanning function
-s a value to be passed to the scanning function
+s a value to be passed to the scanning function
- If the return value is MPS_RES_OK, a new root structure in "*root_o".
If the return value is MPS_RES_OK, a new root structure in "*root_o".
mps.h.
+mps.h.
- The client provides a scanning function, that will be called with a scan state and "p" and"s", whenever the root needs to be scanned. See mps_root_scan_t for details.
The client provides a scanning function, that will be called with a scan state and "p" and"s", whenever the root needs to be scanned. See mps_root_scan_t for details.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
static mps_root_t mmRoot; @@ -8223,79 +8404,94 @@ int main(void)-
mps_root_create returns MPS_RES_MEMORY when it fails to allocate memory for the internalroot structure; you need to deallocate or reclaim something to make enough space, or expand thearena.
mps_root_create returns MPS_RES_MEMORY when it fails to allocate memory for the internalroot structure; you need to deallocate or reclaim something to make enough space, or expand thearena.
mps_root_scan_t, mps_rm_t, mps_rank_t, mps_root_t, mps_root_create_fmt,mps_root_create_table, MPS_RM_CONST
+
+mps_root_scan_t,
+
+mps_rm_t,
+
+mps_rank_t,
+
+mps_root_t,
+
+mps_root_create_fmt,
+
+mps_root_create_table,
+
+MPS_RM_CONST
"p" and "s" are just arbitrary data that scanning function can use. This is needed because Clacks local functions.
+"p" and "s" are just arbitrary data that scanning function can use. This is needed because Clacks local functions.
-mps_root_create_fmt mps_root_create_fmt The function mps_root_create_fmt declares a root that consists of a block of objects, andprovides a scanning function for them.
The function mps_root_create_fmt declares a root that consists of a block of objects, andprovides a scanning function for them.
Root.
+Root.
- mps_res_t mps_root_create_fmt(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_fmt_scan_t scan, mps_addr_t base, mps_addr_t limit)
mps_res_t mps_root_create_fmt(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_fmt_scan_t scan, mps_addr_t base, mps_addr_t limit)
root_o a pointer to a variable to store the new root structure
+root_o a pointer to a variable to store the new root structure
-arena the arena
+arena the arena
-rank the rank of references in the root
+rank the rank of references in the root
-rm the root mode
+rm the root mode
-scan the scanning function
+scan the scanning function
-base the address of the start of the root
+base the address of the start of the root
-limit the address just beyond the end of the root
+limit the address just beyond the end of the root
- If the return value is MPS_RES_OK, the new root in "*root_o".
If the return value is MPS_RES_OK, the new root in "*root_o".
mps.h
+mps.h
- The client provides a scanning function, that will be called with a scan state and an areaof memory, whenever the root needs to be scanned. See mps_fmt_scan_t for details.
The client provides a scanning function, that will be called with a scan state and an areaof memory, whenever the root needs to be scanned. See mps_fmt_scan_t for details.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
static mps_root_t mmRoot; @@ -8322,81 +8518,102 @@ int main(void)-
mps_root_create_fmt returns MPS_RES_MEMORY when it fails to allocate memory for theinternal root structure; you need to deallocate or reclaim something to make enough space, or expandthe arena.
mps_root_create_fmt returns MPS_RES_MEMORY when it fails to allocate memory for theinternal root structure; you need to deallocate or reclaim something to make enough space, or expandthe arena.
mps_fmt_scan_t, mps_rm_t, mps_rank_t, mps_root_t, mps_root_create, mps_root_create_table,MPS_RM_PROT, MPS_RM_PROT_INNER, MPS_RM_CONST
+
+mps_fmt_scan_t,
+
+mps_rm_t,
+
+mps_rank_t,
+
+mps_root_t,
+
+mps_root_create,
+
+mps_root_create_table,
+
+MPS_RM_PROT,
+
+MPS_RM_CONST
This is like mps_root_create_table, except you get to supply your own scanning function.This is like mps_root_create, except the scanning function has a slightly different argument list(and the MPS knows where the root is).
This is like mps_root_create_table, except you get to supply your own scanning function.This is like mps_root_create, except the scanning function has a slightly different argument list(and the MPS knows where the root is).
mps_root_create_reg mps_root_create_reg mps_root_create_reg registers a thread as a root.
mps_root_create_reg registers a thread as a root.
Root.
+Root.
- mps_res_t mps_root_create_reg(mps_root_t * root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_thr_t thread, mps_reg_scan_t scan, void *p, size_t s)
mps_res_t mps_root_create_reg(mps_root_t * root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_thr_t thread, mps_reg_scan_t scan, void *p, size_t s)
root_o a pointer to a variable to store the new root structure
+root_o a pointer to a variable to store the new root structure
-arena the arena
+arena the arena
-rank the rank of references in the root
+rank the rank of references in the root
-rm the root mode
+rm the root mode
-thread the thread to the registered as a root
+thread the thread to the registered as a root
-scan the scanning function
+scan the scanning function
-p a value to be passed to the scanning function
+p a value to be passed to the scanning function
-s a value to be passed to the scanning function
+s a value to be passed to the scanning function
- If the return value is MPS_RES_OK, a new root structure in "*root_o".
If the return value is MPS_RES_OK, a new root structure in "*root_o".
mps.h
+mps.h
- mps_root_create_reg declares the state of a thread as a root. The client provides a scanningfunction that will be called and passed "p" and "s", whenever the root needs to be scanned. See mps_reg_scan_t for details.
mps_root_create_reg
+declares the state of a thread as a root. The client provides a
+scanning function that will be called and passed "p" and "s", whenever
+the root needs to be scanned. See mps_reg_scan_t for details.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
typedef struct {
@@ -8420,77 +8637,81 @@ void InitThread(ThreadLocals *thr)
- mps_root_create_reg returns MPS_RES_MEMORY when it fails to allocate memory for theinternal root structure; you need to deallocate or reclaim something to make enough space, or expandthe arena.
mps_root_create_reg returns MPS_RES_MEMORY when it fails to allocate memory for theinternal root structure; you need to deallocate or reclaim something to make enough space, or expandthe arena.
mps_stack_scan_ambig, mps_reg_scan_t
+
+mps_stack_scan_ambig,
+
+mps_reg_scan_t
Only one suitable scanning function is supplied with the MPS, namely mps_stack_scan_ambig.
Only one suitable scanning function is supplied with the MPS, namely mps_stack_scan_ambig.
mps_root_create_table mps_root_create_table mps_root_create_table create s a root that is a vector of references.
mps_root_create_table create s a root that is a vector of references.
Root.
+Root.
- mps_res_t mps_root_create_table(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_addr_t *base, size_t size)
mps_res_t mps_root_create_table(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_addr_t *base, size_t size)
root_o a pointer to a variable for storing the new root structure in
+root_o a pointer to a variable for storing the new root structure in
-arena the arena
+arena the arena
-rank the rank of the references in this root
+rank the rank of the references in this root
-rm the root mode
+rm the root mode
-base a pointer to the vector of references that is being registered
+base a pointer to the vector of references that is being registered
-size the number of references in the vector being registered
+size the number of references in the vector being registered
- If the return value is MPS_RES_OK, the new root in "*root_o".
If the return value is MPS_RES_OK, the new root in "*root_o".
mps.h
+mps.h
-This function declares a root that is a vector of references.
+This function declares a root that is a vector of references.
- If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
static mps_root_t mmRoot; @@ -8513,50 +8734,57 @@ int main(void)-
mps_root_create_table returns MPS_RES_MEMORY when it fails to allocate memory for theinternal root structure; you need to deallocate or reclaim something to make enough space, or expandthe arena.
mps_root_create_table returns MPS_RES_MEMORY when it fails to allocate memory for theinternal root structure; you need to deallocate or reclaim something to make enough space, or expandthe arena.
mps_root_create_table_masked, MPS_RM_PROT, MPS_RM_PROT_INNER, MPS_RM_CONST
+
+mps_root_create_table_masked,
+
+MPS_RM_PROT,
+
+MPS_RM_CONST
mps_root_create_table_masked mps_root_create_table_masked mps_root_create_table_masked creates a root that is a vector of tagged values.
mps_root_create_table_masked creates a root that is a vector of tagged values.
Root.
+Root.
- mps_res_t mps_root_create_table_masked(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_addr_t *base, size_t size, mps_word_t mask);
mps_res_t mps_root_create_table_masked(mps_root_t *root_o, mps_arena_t arena, mps_rank_t rank, mps_rm_t rm, mps_addr_t *base, size_t size, mps_word_t mask);
root_o a pointer to a variable for storing the new root structure in
+root_o a pointer to a variable for storing the new root structure in
-arena the arena
+arena the arena
-rank the rank of the references in this root
+rank the rank of the references in this root
-rm the root mode
+rm the root mode
-base a pointer to the vector of references that is being registered
+base a pointer to the vector of references that is being registered
size the number of references in the vector being registered @@ -8565,24 +8793,24 @@ int main(void)
- If the return value is MPS_RES_OK, the new root in "*root_o".
If the return value is MPS_RES_OK, the new root in "*root_o".
mps.h
+mps.h
- mps_root_create_table_masked creates a root that is a table of tagged values. The maskparameter indicates which bits of a pointer are tag bits. References are assumed to have a tag ofzero, values with other tags are ignored.
mps_root_create_table_masked creates a root that is a table of tagged values. The maskparameter indicates which bits of a pointer are tag bits. References are assumed to have a tag ofzero, values with other tags are ignored.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
If the rank of the root is not MPS_RANK_AMBIG, the contents of the root have to be validwhenever a GC happens, i.e., they have to be references to actual objects or "NULL". If you're usingasynchronous GC, this could be right after the root is registered, so the root has to be valid whenit is registered. It's OK for a root to have entries which point to memory not managed by the MPS --they will simply be ignored.
#define tagMASK 0x0003 @@ -8607,64 +8835,71 @@ int main(void)-
mps_root_create_table_masked returns MPS_RES_MEMORY when it fails to allocate memoryfor the internal root structure; you need to deallocate or reclaim something to make enough space,or expand the arena.
mps_root_create_table_masked returns MPS_RES_MEMORY when it fails to allocate memoryfor the internal root structure; you need to deallocate or reclaim something to make enough space,or expand the arena.
mps_root_create_table, MPS_RM_PROT, MPS_RM_PROT_INNER, MPS_RM_CONST
+
+mps_root_create_table,
+
+MPS_RM_PROT,
+
+MPS_RM_CONST
mps_root_scan_t mps_root_scan_t Type of root scanning functions for mps_root_create.
Type of root scanning functions for mps_root_create.
Root.
+Root.
- typedef mps_res_t (*mps_root_scan_t)(mps_ss_t scan_state, void * p, size_t s)
typedef mps_res_t (*mps_root_scan_t)(mps_ss_t scan_state, void * p, size_t s)
scan_state a scan state
scan_state a scan state
p an argument passed through from mps_root_create
p an argument passed through from mps_root_create
s an argument passed through from mps_root_create
s an argument passed through from mps_root_create
A result code.
+A result code.
-mps.h
+mps.h
- This is the type of root scanning functions the client provides tomps_root_create. The MPS will call these functions whenever the root needs to bescanned, with a scan state (of type mps_ss_t ), and the p ands values specified in the call to mps_root_create. Apart from theargument list, the scanning function works like the format scan methods: it needs to indicate allreferences using mps_fix or MPS_FIX*.
This is the type of root scanning functions the client provides tomps_root_create. The MPS will call these functions whenever the root needs to bescanned, with a scan state (of type mps_ss_t ), and the p ands values specified in the call to mps_root_create. Apart from theargument list, the scanning function works like the format scan methods: it needs to indicate allreferences using mps_fix or MPS_FIX*.
static StackFrame *stackBottom; @@ -8690,129 +8925,158 @@ static mps_res_t rootScanner(mps_ss_t ss, void * p, size_t s)-
If a fixing operation returns a value other than MPS_RES_OK, the scanningfunction must return that value, and may return without scanning further references. Generally, itis better if it returns as soon as possible. If the scanning is completed successfully, the functionshould return MPS_RES_OK.
If a fixing operation returns a value other than MPS_RES_OK, the scanning function must
+return that value, and may return without scanning further
+references. Generally, itis better if it returns as soon as
+possible. If the scanning is completed successfully, the
+function should return MPS_RES_OK.
mps_root_create, mps_ss_t, mps_fix, MPS_SCAN_BEGIN, MPS_SCAN_END, MPS_FIX12, MPS_FIX1,MPS_FIX2, MPS_FIX_CALL, mps_fmt_scan_t
+
+mps_root_create,
+
+mps_ss_t,
+
+mps_fix,
+
+MPS_SCAN_BEGIN,
+
+MPS_SCAN_END,
+
+MPS_FIX12,
+
+MPS_FIX1,
+
+MPS_FIX2,
+
+MPS_FIX_CALL,
+
+mps_fmt_scan_t
mps_roots_stepper_t mps_roots_stepper_tType of the client-supplied root walker component.
+Type of the client-supplied root walker component.
-None.
+None.
-
typedef void (*mps_roots_stepper_t)( mps_addr_t *, mps_root_t, void *, size_t )
The function pointed to by an object of type mps_roots_stepper_t takes the followingargument list:
The function pointed to by an object of type mps_roots_stepper_t takes the followingargument list:
(mps_addr_t *ref, mps_root_t root, void *p, size_t s)
(mps_addr_t *ref, mps_root_t root, void *p, size_t s)
ref is the address of a root which references an object in the arena. It's a pointer to aroot which points to "something" in the client heap. That "something" will be an object if the rootis an exact root. But it might be an interior pointer to an object if the root is an ambiguous root.
+ref is the address of a root which references an object in the arena. It's a pointer to aroot which points to "something" in the client heap. That "something" will be an object if the rootis an exact root. But it might be an interior pointer to an object if the root is an ambiguous root.
-root is the MPS root object which contains ref.
+root is the MPS root object which contains ref.
- p and s are two closure values which are copies of the corresponding values which the clientpassed into mps_arena_roots_walk.
p and s are two closure values which are copies of the corresponding values which the clientpassed into mps_arena_roots_walk.
he function pointed to by an object of type mps_roots_stepper_t returns no values.
he function pointed to by an object of type mps_roots_stepper_t returns no values.
mps.h
+mps.h
- A pointer to a function is passed into the function mps_arena_roots_walk; the pointer hasthis type. The root walker arranges to apply this function to all objects which are directlyreferenced from the roots.
A pointer to a function is passed into the function mps_arena_roots_walk; the pointer hasthis type. The root walker arranges to apply this function to all objects which are directlyreferenced from the roots.
<example of how to use the symbol>
+<example of how to use the symbol>
- he function pointed to by an object of type mps_roots_stepper_t has no way of signalling anerror to the caller.
he function pointed to by an object of type mps_roots_stepper_t has no way of signalling anerror to the caller.
mps_sac_classes_s mps_sac_class_s A structure describing a size class to be passed as an argument to mps_sac_create.
A structure describing a size class to be passed as an argument to mps_sac_create.
Allocation cache
+Allocation cache
-
-typedef struct mps_sac_classes_s {
+typedef struct mps_sac_class_s {
size_t mps_block_size;
size_t mps_cached_count;
unsigned mps_frequency;
-} mps_sac_classes_s;
+} mps_sac_class_s;
-mps.h
+mps.h
- mps_sac_classes_s is the element t ype of the array passed tomps_sac_create to describ e the size classes. Each element of this array describes oneclass by specifying block_size, the maximum size (in bytes) in this class;cached_count , the number of objects of this class to cache ; andfrequency , a number that describes the frequency of requests (allocation anddeallocation combined ) in this class relative to all the other classes. The classes should be givenin the order of ascending size.
mps_sac_class_s is the element t ype of the array passed tomps_sac_create to describ e the size classes. Each element of this array describes oneclass by specifying block_size, the maximum size (in bytes) in this class;cached_count , the number of objects of this class to cache ; andfrequency , a number that describes the frequency of requests (allocation anddeallocation combined ) in this class relative to all the other classes. The classes should be givenin the order of ascending size.
block_size s have to be aligned to the pool alignment. All sizes must bedifferent, and the smallest size must be large enough to hold a void *.
block_size s have to be aligned to the pool alignment. All sizes must bedifferent, and the smallest size must be large enough to hold a void *.
cached_count
@@ -8821,14 +9085,14 @@ typedef struct mps_sac_classes_s {
of zero prevents anycaching of blocks falling into that class.
The MPS automatically provides an "overlarge" class for arbitrarily large objects above thelargest class described. Allocations falling into the overlarge class are not cached.
+The MPS automatically provides an "overlarge" class for arbitrarily large objects above thelargest class described. Allocations falling into the overlarge class are not cached.
-
mps_sac_t sac;
- mps_sac_classes_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
+ mps_sac_class_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
res = mps_sac_create(&sac, pool, 3, classes);
if (res != MPS_RES_OK) {
@@ -8838,74 +9102,76 @@ typedef struct mps_sac_classes_s {
-Any blocks whose size falls between two classes are allocated from the larger class.
+Any blocks whose size falls between two classes are allocated from the larger class.
-mps_sac_create mps_sac_createThis function creates a segregated allocation cache.
+This function creates a segregated allocation cache.
-Allocation cache
+Allocation cache
- mps_res_t mps_sac_create(mps_sac_t *sac_o, mps_pool_t pool, size_t classes_count,mps_sac_classes_s *classes);
mps_res_t mps_sac_create(mps_sac_t *sac_o, mps_pool_t pool, size_t classes_count,mps_sac_class_s *classes);
sac_o a pointer to a variable to hold the cache created
+sac_o a pointer to a variable to hold the cache created
-pool the pool the cache is attached to
+pool the pool the cache is attached to
-classes_count the number of the size classes
+classes_count the number of the size classes
-classes pointer to the first element of an array describing the size classes
+classes pointer to the first element of an array describing the size classes
- If the return value is MPS_RES_OK, a new cache in *sac_o.
If the return value is MPS_RES_OK, a new cache in *sac_o.
mps.h
+mps.h
-This function creates an allocation cache whose free-list is segregated into the given sizeclasses. The cache can get more memory from the given pool, or return memory to it.
+This function creates an allocation cache whose free-list is segregated into the given sizeclasses. The cache can get more memory from the given pool, or return memory to it.
- Segregated allocation caches can be associated with any pool that supports mps_alloc and mps_free.
Segregated allocation caches can be associated with any pool that supports mps_alloc and mps_free.
The size classes are described by an array of element type mps_sac_classes_s(q.v.). This array is used to initialize the cache, and is not needed aftermps_sac_create returns. There might be a limit on how many classes can be described,but it will be no less than MPS_SAC_CLASS_LIMIT. You must specify at least one class.The MPS automatically provides an "overlarge" class for arbitrarily large objects above the largestclass described. Allocations falling into the overlarge class are not cached.
The size classes are described by an array of element type mps_sac_class_s(q.v.). This array is used to initialize the cache, and is not needed aftermps_sac_create returns. There might be a limit on how many classes can be described,but it will be no less than MPS_SAC_CLASS_LIMIT. You must specify at least one class.The MPS automatically provides an "overlarge" class for arbitrarily large objects above the largestclass described. Allocations falling into the overlarge class are not cached.
mps_sac_t sac;
- mps_sac_classes_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
+ mps_sac_class_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
res = mps_sac_create(&sac, pool, 3, classes);
if (res != MPS_RES_OK) {
@@ -8915,69 +9181,85 @@ typedef struct mps_sac_classes_s {
- mps_sac_create returns MPS_RES_MEMORY orMPS_RES_COMMIT_LIMIT when it fails to allocate memory for the internal cache structure;see the documentation for those return codes for recovery options. It returnsMPS_RES_LIMIT if you ask for too many size classes; combine some small adjacentclasses. It returns MPS_RES_PARAM if the pool doesn't support segregated allocationcaches.
mps_sac_create returns MPS_RES_MEMORY orMPS_RES_COMMIT_LIMIT when it fails to allocate memory for the internal cache structure;see the documentation for those return codes for recovery options. It returnsMPS_RES_LIMIT if you ask for too many size classes; combine some small adjacentclasses. It returns MPS_RES_PARAM if the pool doesn't support segregated allocationcaches.
mps_sac_classes_s, MPS_SAC_CLASS_LIMIT, mps_sac_destroy, MPS_RES_MEMORY,MPS_RES_COMMIT_LIMIT, MPS_RES_LIMIT, MPS_RES_PARAM, mps_sac_t
+
+mps_sac_class_s,
+
+MPS_SAC_CLASS_LIMIT,
+
+mps_sac_destroy,
+
+MPS_RES_MEMORY,
+
+MPS_RES_COMMIT_LIMIT,
+
+MPS_RES_LIMIT,
+
+MPS_RES_PARAM,
+
+mps_sac_t
Too many classes will slow down allocation; too few classes waste more space in internalfragmentation. It is assumed that overlarge allocations are rare; otherwise, you would add anotherclass for them, or even create separate allocation caches or pools for them.
+Too many classes will slow down allocation; too few classes waste more space in internalfragmentation. It is assumed that overlarge allocations are rare; otherwise, you would add anotherclass for them, or even create separate allocation caches or pools for them.
-Some pools will work more efficiently with caches than others. In the future, the MPS mightoffer pools specially optimized for particular types of cache.
+Some pools will work more efficiently with caches than others. In the future, the MPS mightoffer pools specially optimized for particular types of cache.
- Segregated allocation caches work poorly with debug pool classes at the moment: the checkingonly happens when blocks are moved between the cache and the pool. This will be fixed, but the speedof allocation with a debug class will always be similar to mps_alloc, rather than cached speed.
Segregated allocation caches work poorly with debug pool classes at the moment: the checkingonly happens when blocks are moved between the cache and the pool. This will be fixed, but the speedof allocation with a debug class will always be similar to mps_alloc, rather than cached speed.
mps_sac_destroy mps_sac_destroyThis function destroys a segregated allocation cache.
+This function destroys a segregated allocation cache.
-Allocation cache
+Allocation cache
- void mps_sac_destroy(mps_sac_t);
void mps_sac_destroy(mps_sac_t);
sac the segregated allocation cache
+sac the segregated allocation cache
-None.
+None.
-mps.h
+mps.h
-This function destroys a segregated allocation cache. All memory held in it is returned tothe associated pool.
+This function destroys a segregated allocation cache. All memory held in it is returned tothe associated pool.
-
res = mps_sac_create(&sac, pool, 3, classes);
@@ -8993,64 +9275,68 @@ typedef struct mps_sac_classes_s {
-
+
+mps_sac_create,
+
+mps_sac_t
Destroying the cache might well cause the pool to return some memory to the arena, butthat's up to the pool's usual policy.
+Destroying the cache might well cause the pool to return some memory to the arena, butthat's up to the pool's usual policy.
-Destroying the cache has no effect on objects allocated through it.
+Destroying the cache has no effect on objects allocated through it.
-mps_sac_flush mps_sac_flushThis function flushes the segregated allocation cache given.
+This function flushes the segregated allocation cache given.
-Allocation cache
+Allocation cache
- void mps_sac_flush(mps_sac_t sac);
void mps_sac_flush(mps_sac_t sac);
sac the segregated allocation cache
+sac the segregated allocation cache
-None.
+None.
-mps.h
+mps.h
-This function flushes the segregated allocation cache given, returning all memory held in itto the associated pool.
+This function flushes the segregated allocation cache given, returning all memory held in itto the associated pool.
-The client is responsible for synchronising the access to the cache, but the MPS willproperly synchronize with any other threads that might be accessing the same pool.
+The client is responsible for synchronising the access to the cache, but the MPS willproperly synchronize with any other threads that might be accessing the same pool.
-
mps_sac_t sac_small, sac_large;
@@ -9079,58 +9365,60 @@ typedef struct mps_sac_classes_s {
-
+
+mps_sac_t
This is something that you'd typically do when you know you won't be using the cache for awhile, but want to hold on to the cache itself. Destroying a cache has the effect of flushing it,naturally.
+This is something that you'd typically do when you know you won't be using the cache for awhile, but want to hold on to the cache itself. Destroying a cache has the effect of flushing it,naturally.
-Flushing the cache might well cause the pool to return some memory to the arena, but that'supto the pool's usual policy.
+Flushing the cache might well cause the pool to return some memory to the arena, but that'supto the pool's usual policy.
-Note that the MPS might also decide to take memory from the cache without the clientrequesting a flush.
+Note that the MPS might also decide to take memory from the cache without the clientrequesting a flush.
-mps_sac_t mps_sac_tType of segregated allocation caches.
+Type of segregated allocation caches.
-Allocation cache
+Allocation cache
- typedef struct mps_sac_s *mps_sac_t;
typedef struct mps_sac_s *mps_sac_t;
mps.h
+mps.h
-A value of this type represents an allocation cache with segregated freelists. It is anopaque type.
+A value of this type represents an allocation cache with segregated freelists. It is anopaque type.
-
mps_sac_t sac;
- mps_sac_classes_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
+ mps_sac_class_s classes[3] = { {8, 38, 1}, {136, 19, 3}, {512, 4, 1} };
res = mps_sac_create(&sac, pool, 3, classes);
if (res != MPS_RES_OK) {
@@ -9140,68 +9428,82 @@ typedef struct mps_sac_classes_s {
- mps_sac_create, mps_sac_destroy, MPS_SAC_ALLOC,mps_sac_alloc, MPS_SAC_FREE, mps_sac_free,mps_sac_flush
+
+mps_sac_create,
+
+mps_sac_destroy,
+
+MPS_SAC_ALLOC,
+
+mps_sac_alloc,
+
+MPS_SAC_FREE,
+
+mps_sac_free,
+
+mps_sac_flush
None.
+None.
-mps_stack_scan_ambig mps_stack_scan_ambigA scanning function for ambiguous scanning of thread states.
+A scanning function for ambiguous scanning of thread states.
-Root.
+Root.
- mps_res_t mps_stack_scan_ambig(mps_ss_t scan_state, mps_thr_t thread, void *stack_bottom, size_t ignore)
mps_res_t mps_stack_scan_ambig(mps_ss_t scan_state, mps_thr_t thread, void *stack_bottom, size_t ignore)
scan_state a scan state
+scan_state a scan state
-thread the thread
+thread the thread
-stack_bottom a pointer to the bottom of the stack
+stack_bottom a pointer to the bottom of the stack
-ignore ignored
+ignore ignored
-A result code.
+A result code.
-mps.h
+mps.h
- This is a root scanning function of type mps_reg_scan_t. It will scan allinteger registers and everything on the stack of the thread given, and can therefore only be usedwith roots of rank MPS_RANK_AMBIG. It will only scan things at the given stack bottompointer or higher on the stack (that is, more recently added). References are assumed to berepresented as machine words, and are required to be 4-byte-aligned; unaligned values are ignored.
This is a root scanning function of type mps_reg_scan_t. It will scan allinteger registers and everything on the stack of the thread given, and can therefore only be usedwith roots of rank MPS_RANK_AMBIG. It will only scan things at the given stack bottompointer or higher on the stack (that is, more recently added). References are assumed to berepresented as machine words, and are required to be 4-byte-aligned; unaligned values are ignored.
Clients don't call this function, it is used as an argument of mps_root_create_reg.
Clients don't call this function, it is used as an argument of mps_root_create_reg.
typedef struct {
@@ -9224,265 +9526,297 @@ void InitThread(ThreadLocals *thr)
- mps_reg_scan_t, mps_root_create_reg
+mps_reg_scan_t,
-
mps_root_create_reg
-The MPS provides this function because it's hard to write (it's OS- andarchitecture-dependent and possibly compiler-dependent).
+mps_telemetry_control The MPS provides this function because it's hard to write (it's OS- andarchitecture-dependent and possibly compiler-dependent).
-mps_telemetry_controlThis function is used to read and change the filters on the telemetry stream.
+This function is used to read and change the filters on the telemetry stream.
-Telemetry.
+Telemetry.
- mps_word_t mps_telemetry_control(mps_word_t reset_mask, mps_word_t flip_mask);
mps_word_t mps_telemetry_control(mps_word_t reset_mask, mps_word_t flip_mask);
reset_mask is a bit mask indicating the bits that should be reset, regardless of previousvalue.
-flip_mask is a bit mask indicating the bits whose value should be flipped after theresetting.
+reset_mask is a bit mask indicating the bits that should be reset, regardless of previousvalue.
-flip_mask is a bit mask indicating the bits whose value should be flipped after theresetting.
-The function returns the previous value of the telemetry filter control.
+The function returns the previous value of the telemetry filter control.
-This function is used to read and change the filters on the telemetry stream. It isgenerally for use by developers.
-The parameters reset_mask and flip_mask allow specifying any binary operation on the filtercontrol. To use this function for typical operations, the parameters should be set as follows:
+Operation reset_mask flip_mask
+This function is used to read and change the filters on the telemetry stream. It isgenerally for use by developers.
-set(M) M M
+The parameters reset_mask and flip_mask allow specifying any binary operation on the filtercontrol. To use this function for typical operations, the parameters should be set as follows:
-reset(M) M 0
+Operation reset_mask flip_mask
-flip(M) 0 M
+set(M) M M
-read() 0 0
+reset(M) M 0
-The significance of the bits is liable to change, but the current values (number the leastsignificant bit as zero) are:
+flip(M) 0 M
-0 -- per space or arena
+read() 0 0
-1 -- per pool
+The significance of the bits is liable to change, but the current values (number the leastsignificant bit as zero) are:
-2 -- per trace or scan
+0 -- per space or arena
-3 -- per page (segment)
+1 -- per pool
-4 -- per reference or fix
+2 -- per trace or scan
-5 -- per allocation or object
+3 -- per page (segment)
- 6 -- user events (e.g., mps_telemetry_intern)
4 -- per reference or fix
+5 -- per allocation or object
-6 -- user events (e.g., mps_telemetry_intern)
mps_telemetry_flush mps_telemetry_flushThis function is used to flush the internal event buffers.
+ -Telemetry.
+This function is used to flush the internal event buffers.
- void mps_telemetry_flush(void);
Telemetry.
-mps.h
+void mps_telemetry_flush(void);
This function is used to flush the internal event buffers into the event stream. Thisfunction also calls mps_lib_io_flush on the event stream itself. This ensures that even the latestevents are now properly recorded, should the application terminate (uncontrollably as a result of abug, for example) or some interactive tool require access to the event data. You could even trycalling this from a debugger after a problem.
mps.h
- mps_telemetry_flush();
This function is used to flush the internal event buffers into the event stream. Thisfunction also calls mps_lib_io_flush on the event stream itself. This ensures that even the latestevents are now properly recorded, should the application terminate (uncontrollably as a result of abug, for example) or some interactive tool require access to the event data. You could even trycalling this from a debugger after a problem.
mps_telemetry_flush();
mps_telemetry_intern -
mps_lib_io_flush
-
+mps_telemetry_intern This function registers a string with the MPS, and receives a unique identifier in return.This identifier is suitable for use with mps_telemetry_label.
Telemetry
+This function registers a string with the MPS, and receives a unique identifier in return.This identifier is suitable for use with mps_telemetry_label.
mps_word_t mps_telemetry_intern(char *)
Telemetry
-The function receives a name as a nul-terminated string in the usual C way. The string'slength should not exceed 256 characters, including nul terminating character. In appropriatevarieties this restriction is checked and will cause the MPS to issue an ASSERT. So don't do it.
+mps_word_t mps_telemetry_intern(char *)
The function returns a unique idenifier that may be used to represent the string in future.
+The function receives a name as a nul-terminated string in the usual C way. The string'slength should not exceed 256 characters, including nul terminating character. In appropriatevarieties this restriction is checked and will cause the MPS to issue an ASSERT. So don't do it.
- The intention of this function is to provide an immediate identifier that can be used toconcisely represent a string for the purposes of mps_telemetry_label. Note that the appropriatesettings must be made to the telemetry filter (via mps_telemetry_control) before this function isinvoked; the associate event is of the user kind.
The function returns a unique idenifier that may be used to represent the string in future.
-The string's length should not exceed 256 characters, including nul terminating character.This will cause the MPS to issue an ASSERT in appropriate varieties.
+The intention of this function is to provide an immediate
+identifier that can be used toconcisely represent a string for the
+purposes of mps_telemetry_label. Note that
+the appropriatesettings must be made to the telemetry filter (via
+mps_telemetry_control) before
+this function is invoked; the associate event is of the user kind.
The string's length should not exceed 256 characters, including nul terminating character.This will cause the MPS to issue an ASSERT in appropriate varieties.
-mps_telemetry_label -
mps_telemetry_label
-
+
- This function associates an identifier returned from mps_telemetry_intern, and hence astring, with an address, in the telemetry stream.
mps_telemetry_labeltelemetry
+ - void mps_telemetry_label(mps_addr_t, mps_word_t);
This function associates an identifier returned from mps_telemetry_intern, and hence astring, with an address, in the telemetry stream.
The function receives an address and an identifier. The identifier should be one returned by mps_telemetry_intern in the same session.
telemetry
-This function is intended to associate the address with an identifier in the telemetrystream. Note that the user kind must be set in the telemetry filter.
+void mps_telemetry_label(mps_addr_t, mps_word_t);
Typical uses include:
+The function receives an address and an identifier. The identifier should be one returned by mps_telemetry_intern in the same session.
- Label pools with a human-meaningful name;
-- Label allocated objects with their type or class.
+This function is intended to associate the address with an identifier in the telemetrystream. Note that the user kind must be set in the telemetry filter.
- mps_telemetry_intern, mps_telemetry_control, mps_thr_t
Typical uses include:
-- Label pools with a human-meaningful name;
- +- Label allocated objects with their type or class.
- mps_thr_t is the type of thread records registered with the MPS.
mps_telemetry_control,
-Threads.
+mps_thr_t
-mps_thr_t typedef mps_thr_s *mps_thr_t;
mps.h
+mps_thr_t is the type of thread records registered with the MPS.
An object of the opaque type mps_thr_t is a thread registration. In a multi-threadedenvironment where incremental garbage collection is used, threads must be registered with the MPS sothat the MPS can examine their state.
An object of type mps_thr_t is obtained using the thread registration function mps_thread_reg.
Threads.
-typedef mps_thr_s *mps_thr_t;
mps.h
+ + +An object of the opaque type mps_thr_t is a thread registration. In a multi-threadedenvironment where incremental garbage collection is used, threads must be registered with the MPS sothat the MPS can examine their state.
An object of type mps_thr_t is obtained using the thread registration function mps_thread_reg.
mps_thr_t this_thread; @@ -9493,15 +9827,182 @@ void InitThread(ThreadLocals *thr)-
mps_reg_t, mps_thread_reg, mps_thread_dereg, mps_reg_scan_t, mps_root_create_reg, mps_stack_scan_ambig
+
+mps_reg_t,
+
+mps_thread_reg,
+
+mps_thread_dereg,
+
+mps_reg_scan_t,
+
+mps_root_create_reg,
+
+mps_stack_scan_ambig
The following MPS symbols are used or defined in MPS header files, +and intended for client use, but are not yet documented in this +reference manual.
+ ++mps_arena_t +mps_pool_t +mps_chain_t +mps_root_t +mps_ap_t +mps_ld_t +mps_ss_t +mps_alloc_pattern_t +mps_frame_t +mps_word_t +mps_shift_t +mps_rm_t +MPS_RES_OK +MPS_RES_FAIL +MPS_RES_RESOURCE +MPS_RES_UNIMPL +MPS_RES_IO +MPS_RES_COMMIT_LIMIT +mps_ap_s +mps_sac_freelist_block_s +mps_sac_s +mps_ld_s +mps_ss_s +mps_fmt_fixed_s +MPS_BEGIN +MPS_END +mps_arena_step +mps_arena_destroy +mps_arena_reserved +mps_arena_has_addr +mps_arena_extend +mps_arena_retract +mps_fmt_create_fixed +mps_fmt_destroy +mps_pool_create +mps_pool_create_v +mps_pool_destroy +mps_gen_param_s +mps_chain_create +mps_chain_destroy +mps_alloc_v +mps_ap_create +mps_ap_create_v +mps_ap_destroy +mps_reserve +mps_commit +mps_ap_fill +mps_ap_fill_with_reservoir_permit +mps_ap_trip +MPS_SAC_ALLOC +MPS_SAC_FREE +mps_reservoir_limit_set +mps_reservoir_limit +mps_reservoir_available +mps_reserve_with_reservoir_permit +MPS_RESERVE_BLOCK +MPS_RESERVE_WITH_RESERVOIRf_PERMIT_BLOCK +mps_root_destroy +mps_tramp_t +mps_tramp +mps_thread_reg +mps_thread_dereg +mps_ld_reset +mps_ld_add +mps_ld_merge +mps_ld_isstale +mps_collections +mps_definalize +mps_pool_check_free_space +mps_lib_get_EOF +mps_lib_stream_s +mps_lib_get_stderr +mps_lib_get_stdout +mps_lib_fputc +mps_lib_fputs +mps_lib_assert_fail +mps_clock_t +mps_clock +mps_class_amcz +mps_class_ams +mps_class_ams_debug +mps_class_awl +mps_class_lo +mps_mv_free_size +mps_mv_size +mps_class_mv +mps_class_mv_debug +mps_mvt_free_size +mps_mvt_size +mps_mvff_free_size +mps_mvff_size +mps_class_mvff_debug +mps_SEH_filter +mps_SEH_handler +mps_io_t +mps_io_create +mps_io_destroy +mps_io_write +mps_io_flush +MPS_PF_STRING +MPS_PF_ALIGN +MPS_ARCH_60 +MPS_ARCH_I3 +MPS_ARCH_I4 +MPS_ARCH_M2 +MPS_ARCH_M4 +MPS_ARCH_PP +MPS_ARCH_S8 +MPS_ARCH_S9 +MPS_BUILD_AC +MPS_BUILD_CC +MPS_BUILD_GC +MPS_BUILD_LC +MPS_BUILD_MV +MPS_BUILD_MW +MPS_BUILD_SC +MPS_OS_FR +MPS_OS_I5 +MPS_OS_IA +MPS_OS_LI +MPS_OS_O1 +MPS_OS_S7 +MPS_OS_SO +MPS_OS_SU +MPS_OS_W3 +MPS_OS_XC +MPS_PF_FRI4GC +MPS_PF_I5M2CC +MPS_PF_IAM4CC +MPS_PF_LII4GC +MPS_PF_LIPPGC +MPS_PF_O1ALCC +MPS_PF_O1ALGC +MPS_PF_S760AC +MPS_PF_S760MW +MPS_PF_S7PPAC +MPS_PF_S7PPMW +MPS_PF_SOS8GC +MPS_PF_SOS9SC +MPS_PF_SUS8GC +MPS_PF_SUS8LC +MPS_PF_W3ALMV +MPS_PF_W3I3MV +MPS_PF_W3PPMV +MPS_PF_XCPPGC ++ +
| 2002-06-20 | + +NB | + +Quite a bit of proof-reading, to insert missing spaces. Also reformatted for easier editing, including the "See Also" sections. | + +
| 2002-06-21 | + +NB | + +Removed obsolete symbols. | + +
This document is copyright © 1997-2002 Ravenbrook Limited. All rights reserved. This is an open source license. Contact Ravenbrook for commercial licensing options.
+This document is copyright © 1997-2002 Ravenbrook Limited. 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:
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
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.
+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.
$Id$
$Id$
Ravenbrook / diff --git a/mps/procedure/release-build/index.html b/mps/procedure/release-build/index.html index 05238cb41a7..c4c9111f702 100644 --- a/mps/procedure/release-build/index.html +++ b/mps/procedure/release-build/index.html @@ -97,24 +97,38 @@ change to get it.
Create a tarball containing the MPS sources:
+Create a tarball containing the MPS sources, and open it for add:
cp -r version/VERSION mps-kit-RELEASE
+ mkdir -p release/RELEASE
tar cf - mps-kit-RELEASE | gzip -c > release/RELEASE/mps-kit-RELEASE.tar.gz
- rm -r mps-kit-RELEASE
+ rm -r mps-kit-RELEASE
+ p4 add release/RELEASE/mps-kit-RELEASE.tar.gz
Add the tarball to Perforce with the comment "Adding the MPS Kit tarball for release RELEASE."
Add the readme.txt file to the release directory:
+ +
+ p4 integrate version/VERSION/readme.txt release/RELEASE/readme.txt
+
+
+Submit the tarball and the readme.txt file to Perforce with +the comment "Adding the MPS Kit tarball and readme.txt file for +release RELEASE."
On a Window box:
+On a Microsoft Windows box:
Launch WinZip and create a new archive called "mps-kit-RELEASE.zip" in the directory "release/RELEASE". Add the MPS sources by selecting "version/VERSION" and turning on "Include subfolders" option.
Make a self-extracting archive called "mps-kit-RELEASE.exe" from "mps-kit-RELEASE.zip" (in the same directory), by selcting Actions → Make .EXE File. Specify the default "unzip to" folder as "mps-kit-RELEASE".
Make a self-extracting archive called "mps-kit-RELEASE.exe" from "mps-kit-RELEASE.zip" (in the same directory), by selcting Actions → Make .EXE File.
Add the self-extracting archive to Perforce with the comment "Adding the MPS Kit zip file for release RELEASE."
Add the self-extracting archive and the zip file to Perforce with the comment "Adding the MPS Kit zip file for release RELEASE."