Release notes¶
Release 1.115.0¶
New features¶
The MPS now provides control over the maximum time that operations within an arena may pause the client program for. This can be specified by the new function
mps_arena_pause_time_set()
or by passing the new keyword argumentMPS_KEY_PAUSE_TIME
tomps_arena_create_k()
. The current value can be retrieved by the new functionmps_arena_pause_time()
.The maximum pause time defaults to 0.1 seconds. For the old behaviour (whereby the MPS always returned to the client program as soon as possible), set it to zero.
New supported platforms
fri3ll
(FreeBSD, IA-32, Clang/LLVM) andfri6ll
(FreeBSD, x86-64, Clang/LLVM).When creating an AMC (Automatic Mostly-Copying) pool,
mps_pool_create_k()
accepts the new keyword argumentMPS_KEY_EXTEND_BY
, specifying the minimum size of the memory segments that the pool requests from the arena.The function
mps_arena_create_k()
accepts two new keyword arguments.MPS_KEY_COMMIT_LIMIT
sets the commit limit for the arena, andMPS_KEY_SPARE_COMMIT_LIMIT
sets the spare commit limit for the arena.New area scanning functions
mps_scan_area()
,mps_scan_area_masked()
,mps_scan_area_tagged()
,mps_scan_area_tagged_or_zero()
for use when scanning, especially when scanning threads and tagged references.New thread root functions
mps_root_create_thread()
,mps_root_create_thread_tagged()
, andmps_root_create_thread_scanned()
allow flexible scanning of thread stacks and registers in any format, with convenient implementations provided for tagged references.New function
mps_root_create_table_tagged()
for tables of roots containing tagged references.New area root functions
mps_root_create_area()
andmps_root_create_area_tagged()
for areas of memory that can be scanned by area scanning functions.
Interface changes¶
The type of pool classes is now
mps_pool_class_t
. The old namemps_class_t
is still available via atypedef
, but is deprecated.The functions
mps_mv_free_size()
,mps_mv_size()
,mps_mvff_free_size()
,mps_mvff_size()
,mps_mvt_free_size()
andmps_mvt_size()
are now deprecated in favour of the generic functionsmps_pool_free_size()
andmps_pool_total_size()
.The function
mps_root_create_reg()
is deprecated in favour ofmps_root_create_thread_tagged()
.The function
mps_root_create_table_masked()
is deprecated in favour ofmps_root_create_table_tagged()
.
Other changes¶
mps_arena_committed()
now returns a meaningful value (the amount of memory marked as in use in the page tables) for client arenas. See job001887.AMC (Automatic Mostly-Copying) pools now assert that exact references into the pool are aligned to the pool’s alignment. See job002175.
Internal calculation of the address space available to the MPS no longer takes time proportional to the number of times the arena has been extended, speeding up allocation when memory is tight. See job003814.
Setting
MPS_KEY_SPARE
for a MVFF (Manual Variable First Fit) pool now works. See job003870.When the arena is out of memory and cannot be extended without hitting the commit limit, the MPS now returns
MPS_RES_COMMIT_LIMIT
rather than substitutingMPS_RES_RESOURCE
. See job003899.Unfinalizable objects can no longer be registered for finalization. Previously the objects would be registered but never finalized. See job003865.
mps_arena_has_addr()
now returns the correct result for objects allocated from the MFS (Manual Fixed Small), MV (Manual Variable), and MVFF (Manual Variable First Fit) pools. See job003866.The MPS can now make use of spare committed memory even if it is mapped at an unhelpful address, by unmapping it and remapping at a better address. See job003898.
mps_arena_step()
now always considers starting a new garbage collection if the remaining idle time is long enough to complete it. (Previously, if there was already a collection in progress whenmps_arena_step()
was called, it would finish the collection but not consider starting a new one.) See job003934.The MPS no longer carries out garbage collections when there is no collection work to be done. See job003938.
The MPS is less aggressive in its use of hardware memory protection to maintain write barrier to speed up future collections. This is particularly important for OS X, where memory protection operations are very expensive. See job003371 and job003975.
The MPS coalesces memory protection, reducing the number of system calls. This markedly improves real run time on operating systems where memory protection operations are very expensive, such as OS X, but also has a significant effect on Linux. See job003371 and job003975.
Release 1.114.0¶
New features¶
Ambiguous interior pointers now keep objects in AMC (Automatic Mostly-Copying) and AMCZ (Automatic Mostly-Copying Zero-rank) pools alive.
This means that if the compiler optimizes away a pointer to the base of an object, leaving an interior pointer as the only reference keeping the object alive, this does not cause the object to be incorrectly collected. Or, if you are writing your own compiler, you can now perform such an optimization safely.
If you require the old behaviour (in which ambiguous interior pointers were ignored) then you can set the
MPS_KEY_INTERIOR
keyword argument toFALSE
when callingmps_pool_create_k()
.The logic for deciding which generations should be collected has changed. Now, a chain may be scheduled for collection if the new size of any of its generations exceeds its capacity, and when a chain is collected, all generations are collected up to, and including, the highest generation whose new size exceeds its capacity. This ensures that all generations are collected reliably on chains where there is no allocation into the nursery generation. See Scheduling of collections.
(Previously, only the nursery generation in each chain was considered, and a chain was collected up to, but not including, the lowest generation whose new size was within its capacity.)
As a result of this change, we recommend that you retune your generation sizes. (This is not necessary, but may improve performance.)
New pool introspection functions
mps_pool_free_size()
andmps_pool_total_size()
.
Interface changes¶
The granularity with which the arena manages memory can now be specified using the
MPS_KEY_ARENA_GRAIN_SIZE
keyword argument tomps_arena_create_k()
. Seemps_arena_class_cl()
andmps_arena_class_vm()
.There is now a default value (currently 256 megabytes) for the
MPS_KEY_ARENA_SIZE
keyword argument tomps_arena_create_k()
when creating a virtual memory arena. Seemps_arena_class_vm()
.The keyword argument
MPS_KEY_AMS_SUPPORT_AMBIGUOUS
now defaults toTRUE
in order to better support the general case: the valueFALSE
is appropriate only when you know that all references are exact. See AMS (Automatic Mark and Sweep).There is now a default value for the
MPS_KEY_AWL_FIND_DEPENDENT
keyword argument tomps_pool_create_k()
when creating an AWL (Automatic Weak Linked) pool. The default value is a function that always returnsNULL
(meaning that there is no dependent object).It is now possible to configure the alignment of objects allocated in a MV (Manual Variable) pool, by passing the
MPS_KEY_ALIGN
keyword argument tomps_pool_create_k()
.The MVFF (Manual Variable First Fit) pool class takes a new keyword argument
MPS_KEY_SPARE
. This specifies the maximum proportion of memory that the pool will keep spare for future allocations.The alignment requirements for MVFF (Manual Variable First Fit) and MVT (Manual Variable Temporal) pools have been relaxed on the platforms
w3i3mv
andw3i6mv
. On all platforms it is now possible to specify alignments down tosizeof(void*)
as the alignment for pools of these classes.The sizes of the templates in a
mps_pool_debug_option_s
structure no longer have to be related to the alignment of the pools that they are used with. This makes it easier to reuse these structures.
Other changes¶
The AMS (Automatic Mark and Sweep) pool class no longer triggers the assertion
!AMS_IS_INVALID_COLOUR(seg, i)
under rare circumstances (namely, detaching an allocation point from a grey segment whenMPS_KEY_AMS_SUPPORT_AMBIGUOUS
isFALSE
). See job001549.mps_arena_roots_walk()
no longer triggers an assertion failure when run twice in succession. See job003496.The alignment of AWL (Automatic Weak Linked) pools is now configurable via the object format, as documented, and is no longer always
MPS_PF_ALIGN
. See job003745.The debugging version of the MVFF (Manual Variable First Fit) pool class,
mps_class_mvff_debug()
, no longer triggers an assertion failure if you allocate a large object. See job003751.mpseventtxt now successfully processes a telemetry log containing multiple labels associated with the same address. See job003756.
AMS (Automatic Mark and Sweep), AWL (Automatic Weak Linked) and LO (Leaf Object) pools get reliably collected, even in the case where the pool is the only pool on its generation chain and is allocating into some generation other than the nursery. See job003771.
Allocation into AWL (Automatic Weak Linked) pools again reliably provokes garbage collections of the generation that the pool belongs to. (In version 1.113, the generation would only be collected if a pool of some other class allocated into it.) See job003772.
All unreachable objects in LO (Leaf Object) pools are finalized. (Previously, objects on a segment attached to an allocation point were not finalized until the allocation point was full.) See job003773.
The MVT (Manual Variable Temporal) and MVFF (Manual Variable First Fit) pool classes are now around 25% faster (in our benchmarks) than they were in version 1.113.
The default assertion handler in the default plinth now flushes the telemetry stream before aborting. See
mps_lib_assert_fail()
.Garbage collection performance is substantially improved in the situation where the arena has been extended many times. Critical operations now take time logarithmic in the number of times the arena has been extended (rather than linear, as in version 1.113 and earlier). See job003554.
Release 1.113.0¶
New features¶
In previous releases there was an implicit connection between blocks allocated by AWL (Automatic Weak Linked) and LO (Leaf Object) pools, and blocks allocated by other automatically managed pool classes.
In particular, blocks allocated by AWL and LO pools were garbage collected together with blocks allocated by AMS (Automatic Mark and Sweep) pools, and blocks allocated by AMC (Automatic Mostly-Copying) pools in generation 1 of their chains.
This is no longer the case: to arrange for blocks to be collected together you need to ensure that they are allocated in the same generation chain, using the
MPS_KEY_CHAIN
andMPS_KEY_GEN
keyword arguments tomps_pool_create_k()
.So if you have code like this:
res = mps_pool_create(&my_amc, arena, mps_class_amc(), my_chain); res = mps_pool_create(&my_awl, arena, mps_class_awl());
and you want to retain the connection between these pools, then you must ensure that they use the same generation chain:
MPS_ARGS_BEGIN(args) { MPS_ARGS_ADD(args, MPS_KEY_CHAIN, my_chain); res = mps_pool_create_k(&my_amc, arena, mps_class_amc(), args); } MPS_ARGS_END(args); MPS_ARGS_BEGIN(args) { MPS_ARGS_ADD(args, MPS_KEY_CHAIN, my_chain); MPS_ARGS_ADD(args, MPS_KEY_GEN, 1); res = mps_pool_create_k(&my_awl, arena, mps_class_awl(), args); } MPS_ARGS_END(args);
Interface changes¶
When creating a list of keyword arguments, there is no longer any need to call
MPS_ARGS_DONE()
. See Keyword arguments.When creating an automatically managed pool using
mps_pool_create_k()
, it is no longer necessary to pass in a generation chain. The arena has a default generation chain and this is used by all automatically managed pools where no generation chain was specified.It is now possible to specify a generation chain for AWL (Automatic Weak Linked) and LO (Leaf Object) pool classes, by using the optional
MPS_KEY_CHAIN
keyword argument tomps_pool_create_k()
.It is now possible to specify which generation the AMS (Automatic Mark and Sweep), AWL (Automatic Weak Linked), and LO (Leaf Object) pool classes allocate new objects into, using the optional
MPS_KEY_GEN
keyword argument tomps_pool_create_k()
.
Release 1.112.0¶
New features¶
New supported platform
lii6ll
(Linux, x86-64, Clang/LLVM).On Windows, you can now request that the MPS allocate address space from the top down, allowing a 32-bit executable linked with
/LARGEADDRESSAWARE
to use the top half of the address space. Use the keyword argumentMPS_KEY_VMW3_TOP_DOWN
when creating an arena of classmps_arena_class_vm()
.On OS X, multi-threaded programs are now supported. See Threads.
On OS X, you can now debug the MPS using
lldb
.
Interface changes¶
In the hot (production) variety, the default assertion handler now prints messages to standard error but does not terminate the program. Even though assertions indicate serious problems in the program, an end-user does not always want an application to terminate when there is a chance to shut down safely and save work, or even to limp along indefinitely. See Assertion handling.
The behaviour when an assertion is triggered is now configurable in the default plinth by installing an assertion handler. See
mps_lib_assert_fail_install()
.Functions that take a variable number of arguments (
mps_arena_create()
,mps_pool_create()
,mps_ap_create()
) and theirva_list
alternatives (mps_arena_create_v()
etc.) are now deprecated in favour of functions that use a keyword argument interface (mps_arena_create_k()
,mps_pool_create_k()
,mps_ap_create_k()
).Similarly, the object format variant structures (
mps_fmt_A_s
etc.) and the functions that take them as arguments (mps_fmt_create_A()
etc.) are now deprecated in favour ofmps_fmt_create_k()
.The new interfaces provide better reporting of errors, default values for arguments, and forward compatibility. See Keyword arguments.
The old interfaces continue to be supported for now, but new features will become available through the keyword interface only.
MFS (Manual Fixed Small) pools no longer refuse to manage blocks that are smaller than the platform alignment. They now round up smaller sizes internally if necessary.
MVT (Manual Variable Temporal) pools now allow the client to specify the alignment of blocks. Use the keyword argument
MPS_KEY_ALIGN
when creating a pool of classmps_class_mvt()
.On OS X, signals are no longer used for handling memory protection exceptions. This means that programs are free to handle
SIGBUS
, but must not install a thread-local Mach exception handler forEXC_BAD_ACCESS
exceptions. See Signal and exception handling issues.On OS X, when debugging with
gdb
, you no longer need to turn ondont-handle-bad-access
or to request special handling ofSIGBUS
.
Other changes¶
On Windows, an execute exception no longer triggers an assertion. See job003301.
Rehashing of large address-based hash tables no longer provokes a nursery collection that immediately renders the hash table stale again. See job003435.
An MVT (Manual Variable Temporal) pool no longer triggers an assertion failure when it runs out of space on its reserved block queue. See job003486.
The
-i
and-o
options no longer cause mpseventsql to crash. See job003507.On Windows, telemetry files now have correct clock values. Previously the top 32 bits were incorrectly output as zero. See job003519.
On 64-bit Windows, it’s no longer possible to get a stack overflow exception while the MPS is holding the arena lock. See job003640.
Release 1.111.0¶
New features¶
Reporting features have been removed from the mpseventcnv utility. Instead, the telemetry system comes with two new utility programs to assist with reporting and analysis: mpseventtxt converts an event stream into human-readable form, and mpseventsql loads an event stream into a SQLite database for further analysis. See Telemetry.
The new pool class MFS (Manual Fixed Small) provides manually managed allocation of fixed-size objects.
The new pool class MVT (Manual Variable Temporal) provides manually managed allocation of variable-size objects using a temporal fit allocation policy (that is, objects that are allocated togther are expected to be freed together).
Interface changes¶
It is no longer necessary for client programs to use
mps_tramp()
to ensure that exceptions due to barrier hits are caught. This function is now deprecated.You can set the environment variable
MPS_TELEMETRY_CONTROL
toall
to make the telemetry system output all events. See Telemetry.New functions
mps_telemetry_get()
,mps_telemetry_set()
andmps_telemetry_reset()
provide a more convenient interface to telemetry control thanmps_telemetry_control()
, which is now deprecated. See Telemetry.The pool classes MV (Manual Variable) and SNC (Stack No Checking) are now deprecated.
Allocation frames are now deprecated. See Allocation frames.
Additionally, the functions
mps_arena_expose()
,mps_arena_unsafe_expose_remember_protection()
,mps_arena_unsafe_restore_protection()
,mps_arena_roots_walk()
, andmps_fix()
are now deprecated.
Other changes¶
mps_arena_step()
no longer unclamps the arena as a side effect. If the arena is clamped or parked before callingmps_arena_step()
, it is clamped afterwards. See job003320.The ambiguous stack scanner,
mps_stack_scan_ambig()
, no longer asserts on Linux when there are multiple threads. See job003412.It is no longer possible for the “ramp” allocation pattern,
mps_alloc_pattern_ramp()
, to get stuck. Nowmps_ap_alloc_pattern_end()
reliably clears this pattern. See job003454.The build system now correctly detects the FreeBSD operating system running on the x86-64 architecture, for FreeBSD version 9.1 or later. See job003473.
Release 1.110.0¶
New features¶
New supported platforms:
fri6gc
(FreeBSD, x86-64, GCC)lii6gc
(Linux, x86-64, GCC)w3i6mv
(Windows, x86-64, Microsoft Visual C)xci3ll
(OS X, IA-32, Clang/LLVM)xci6gc
(OS X, x86-64, GCC)xci6ll
(OS X, x86-64, Clang/LLVM)
Support removed for platforms:
iam4cc
(Irix 6, MIPS R4000, MIPSpro C)lii3eg
(Linux, IA-32, EGCS)lippgc
(Linux, PowerPC, GCC)o1alcc
(OSF/1, Alpha, Digital C)o1algc
(OSF/1, Alpha, GCC)s7ppmw
(System 7, PowerPC, MetroWerks C)sos8gc
(Solaris, SPARC 8, GCC)sos9sc
(Solaris, SPARC 9, SunPro C)sus8gc
(SunOS, SPARC 8, GCC)xcppgc
(OS X, PowerPC, GCC)
On Unix platforms, the MPS can now be built and installed by running
./configure && make install
. See Building the Memory Pool System.The MPS can be compiled in a single step via the new source file
mps.c
. This also allows you to compile the MPS in the same compilation unit as your object format, allowing the compiler to perform global optimizations between the two. See Building the Memory Pool System.The set of build varieties has been reduced to three: the cool variety for development and debugging, the hot variety for production, and the rash variety for people who like to live dangerously. See Varieties.
The environment variable
MPS_TELEMETRY_CONTROL
can now be set to a space-separated list of event kinds. See Telemetry.Telemetry output is now emitted to the file named by the environment variable
MPS_TELEMETRY_FILENAME
, if it is set. See Telemetry.
Interface changes¶
Deprecated constants
MPS_MESSAGE_TYPE_FINALIZATION
,MPS_MESSAGE_TYPE_GC
andMPS_MESSAGE_TYPE_GC_START
have been removed. Usemps_message_type_finalization()
,mps_message_type_gc()
andmps_message_type_gc_start()
instead.Deprecated constants
MPS_RANK_AMBIG
,MPS_RANK_EXACT
andMPS_RANK_WEAK
have been removed. Usemps_rank_ambig()
,mps_rank_exact()
andmps_rank_weak()
instead.Deprecated functions with names starting
mps_space_
have been removed. Use the functions with names startingmps_arena_
instead.