diff --git a/mps/code/arg.c b/mps/code/arg.c index 75056285652..dcbbc9b5b7d 100644 --- a/mps/code/arg.c +++ b/mps/code/arg.c @@ -92,6 +92,13 @@ Bool ArgCheckRank(Arg arg) { return TRUE; } +Bool ArgCheckdouble(Arg arg) { + /* It would be nice if we could check doubles with C89, but + it doesn't have isfinite() etc. which are in C99. */ + UNUSED(arg); + return TRUE; +} + ARG_DEFINE_KEY(args_end, Shouldnt); diff --git a/mps/code/arg.h b/mps/code/arg.h index 2bcc80b0c61..1598707355f 100644 --- a/mps/code/arg.h +++ b/mps/code/arg.h @@ -53,6 +53,7 @@ extern Bool ArgCheckCount(Arg arg); extern Bool ArgCheckPointer(Arg arg); extern Bool ArgCheckRankSet(Arg arg); extern Bool ArgCheckRank(Arg arg); +extern Bool ArgCheckdouble(Arg arg); #endif /* arg_h */ diff --git a/mps/code/mps.xcodeproj/project.pbxproj b/mps/code/mps.xcodeproj/project.pbxproj index 3dbaac15900..f6eade11025 100644 --- a/mps/code/mps.xcodeproj/project.pbxproj +++ b/mps/code/mps.xcodeproj/project.pbxproj @@ -1031,7 +1031,7 @@ 3114A66C156E95EB001E0AA3 /* btcv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btcv.c; sourceTree = ""; }; 3114A67C156E9668001E0AA3 /* mv2test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mv2test; sourceTree = BUILT_PRODUCTS_DIR; }; 3114A686156E9674001E0AA3 /* mv2test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mv2test.c; sourceTree = ""; }; - 3114A68E156E96B6001E0AA3 /* poolmv2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 0; path = poolmv2.c; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.c; }; + 3114A68E156E96B6001E0AA3 /* poolmv2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 0; path = poolmv2.c; sourceTree = ""; }; 3114A695156E971B001E0AA3 /* messtest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = messtest; sourceTree = BUILT_PRODUCTS_DIR; }; 3114A69F156E9725001E0AA3 /* messtest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = messtest.c; sourceTree = ""; }; 3114A6AC156E9759001E0AA3 /* walkt0 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = walkt0; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1103,6 +1103,7 @@ 31CD33BC173A9F1500524741 /* poolams.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = poolams.c; sourceTree = ""; }; 31CD33BD173A9F1500524741 /* poolams.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = poolams.h; sourceTree = ""; }; 31CD33BE173ABB3000524741 /* poolmv2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = poolmv2.h; sourceTree = ""; }; + 31D4D5FD1745058100BE84B5 /* poolmv2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = poolmv2.c; sourceTree = ""; }; 31D60006156D3C5F00337B26 /* segsmss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = segsmss.c; sourceTree = ""; }; 31D6000D156D3CB200337B26 /* awluthe */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = awluthe; sourceTree = BUILT_PRODUCTS_DIR; }; 31D60017156D3CC300337B26 /* awluthe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = awluthe.c; sourceTree = ""; }; @@ -1729,6 +1730,7 @@ 31EEAC5A156AB40800714D05 /* Extra pools */ = { isa = PBXGroup; children = ( + 31D4D5FD1745058100BE84B5 /* poolmv2.c */, 31CD33BE173ABB3000524741 /* poolmv2.h */, 311F2F5D17398B0400C15B6A /* lo.h */, 31F6CCA91739B0CF00C48748 /* mpscamc.h */, diff --git a/mps/code/mpscmvt.h b/mps/code/mpscmvt.h index 5a1e5eb6ad5..f46e43267df 100644 --- a/mps/code/mpscmvt.h +++ b/mps/code/mpscmvt.h @@ -14,7 +14,7 @@ extern const struct mps_key_s _mps_key_mvt_reserve_depth; #define MPS_KEY_MVT_RESERVE_DEPTH_FIELD count extern const struct mps_key_s _mps_key_mvt_frag_limit; #define MPS_KEY_MVT_FRAG_LIMIT (&_mps_key_mvt_frag_limit) -#define MPS_KEY_MVT_FRAG_LIMIT_FIELD count +#define MPS_KEY_MVT_FRAG_LIMIT_FIELD d /* The mvt pool class has five extra parameters to mps_pool_create: * mps_res_t mps_pool_create(mps_pool_t * pool, mps_arena_t arena, diff --git a/mps/code/mv2test.c b/mps/code/mv2test.c index f4dacd295d2..edef9d2e8ba 100644 --- a/mps/code/mv2test.c +++ b/mps/code/mv2test.c @@ -206,18 +206,15 @@ static mps_res_t make(mps_addr_t *p, mps_ap_t ap, size_t size) static mps_res_t stress(mps_class_t class, mps_arena_t arena, - size_t (*size)(int i), ...) + size_t (*size)(int i), mps_arg_s args[]) { mps_res_t res; mps_ap_t ap; - va_list arg; int i, k; int *ps[TEST_SET_SIZE]; size_t ss[TEST_SET_SIZE]; - va_start(arg, size); - res = mps_pool_create_v(&pool, arena, class, arg); - va_end(arg); + res = mps_pool_create_k(&pool, arena, class, args); if(res != MPS_RES_OK) return res; die(mps_ap_create(&ap, pool, mps_rank_exact()), "BufferCreate"); @@ -299,15 +296,16 @@ static void stress_with_arena_class(mps_arena_class_t aclass) min = MPS_PF_ALIGN; mean = 42; max = 8192; - - die(stress(mps_class_mvt(), arena, randomSize, - min, /* min_size */ - mean, /* median_size */ - max, /* maximum_size */ - (mps_count_t)TEST_SET_SIZE/2, /* reserve_depth */ - (mps_count_t)30 /* fragmentation_limit */ - ), - "stress MVT"); + + MPS_ARGS_BEGIN(args) { + MPS_ARGS_ADD(args, MPS_KEY_MIN_SIZE, min); + MPS_ARGS_ADD(args, MPS_KEY_MEAN_SIZE, mean); + MPS_ARGS_ADD(args, MPS_KEY_MAX_SIZE, max); + MPS_ARGS_ADD(args, MPS_KEY_MVT_RESERVE_DEPTH, TEST_SET_SIZE/2); + MPS_ARGS_ADD(args, MPS_KEY_MVT_FRAG_LIMIT, 0.3); + MPS_ARGS_DONE(args); + die(stress(mps_class_mvt(), arena, randomSize, args), "stress MVT"); + } MPS_ARGS_END(args); mps_arena_destroy(arena); diff --git a/mps/code/poolmv2.c b/mps/code/poolmv2.c index 3ed4c65a9af..e7b8e7af52f 100644 --- a/mps/code/poolmv2.c +++ b/mps/code/poolmv2.c @@ -203,8 +203,9 @@ static void MVTVarargs(ArgStruct args[MPS_ARGS_MAX], va_list varargs) args[2].val.size = va_arg(varargs, Size); args[3].key = MPS_KEY_MVT_RESERVE_DEPTH; args[3].val.count = va_arg(varargs, Count); + /* Divide the old "percentage" argument by 100, fixing job003319. */ args[4].key = MPS_KEY_MVT_FRAG_LIMIT; - args[4].val.count = va_arg(varargs, Count); + args[4].val.d = (double)va_arg(varargs, Count) / 100.0; args[5].key = MPS_KEY_ARGS_END; AVER(ArgListCheck(args)); } @@ -220,7 +221,7 @@ ARG_DEFINE_KEY(mvt_min_size, Size); ARG_DEFINE_KEY(mvt_mean_size, Size); ARG_DEFINE_KEY(mvt_max_size, Size); ARG_DEFINE_KEY(mvt_reserve_depth, Count); -ARG_DEFINE_KEY(mvt_frag_limit, Count); +ARG_DEFINE_KEY(mvt_frag_limit, double); static Res MVTInit(Pool pool, ArgList args) { @@ -250,8 +251,11 @@ static Res MVTInit(Pool pool, ArgList args) maxSize = arg.val.size; if (ArgPick(&arg, args, MPS_KEY_MVT_RESERVE_DEPTH)) reserveDepth = arg.val.count; - if (ArgPick(&arg, args, MPS_KEY_MVT_FRAG_LIMIT)) - fragLimit = arg.val.count; + if (ArgPick(&arg, args, MPS_KEY_MVT_FRAG_LIMIT)) { + /* pending complete fix for job003319 */ + AVER(0 <= arg.val.d <= 1); + fragLimit = (Count)(arg.val.d * 100); + } AVER(0 < minSize); AVER(minSize <= meanSize); diff --git a/mps/manual/html/_sources/pool/mvt.txt b/mps/manual/html/_sources/pool/mvt.txt index 31fe3044b25..e2e885aab49 100644 --- a/mps/manual/html/_sources/pool/mvt.txt +++ b/mps/manual/html/_sources/pool/mvt.txt @@ -159,17 +159,17 @@ MVT interface reserve does not guarantee any particular amount of allocation. * :c:macro:`MPS_KEY_MVT_FRAG_LIMIT` (type :c:type:`mps_count_t`) - is a percentage from 1 to 100 (inclusive). It sets an upper + is a double from 0.0 to 1.0 (inclusive). It sets an upper limit on the space overhead of an MVT pool, in case block death times and allocations do not correlate well. If the free space managed by the pool as a ratio of all the space managed by the pool exceeds the fragmentation limit, the pool falls back to a first fit allocation policy, exploiting space more efficiently - at a cost in time efficiency. A fragmentation limit of 0 would + at a cost in time efficiency. A fragmentation limit of 0.0 would cause the pool to operate as a first-fit pool, at a significant cost in time efficiency: therefore this is not permitted. - A fragmentation limit of 100 causes the pool to always use + A fragmentation limit of 1.0 causes the pool to always use temporal fit (unless resources are exhausted). If the objects allocated in the pool have similar lifetime expectancies, this mode will have the best time- and space-efficiency. If the @@ -185,7 +185,7 @@ MVT interface MPS_ARGS_ADD(ARGS, MPS_KEY_MEAN_SIZE, 32); MPS_ARGS_ADD(ARGS, MPS_KEY_MAX_SIZE, 1024); MPS_ARGS_ADD(ARGS, MPS_KEY_MVT_RESERVE_DEPTH, 256); - MPS_ARGS_ADD(ARGS, MPS_KEY_MVT_FRAG_LIMIT, 50); + MPS_ARGS_ADD(ARGS, MPS_KEY_MVT_FRAG_LIMIT, 0.5); MPS_ARGS_DONE(args); res = mps_pool_create_k(&pool, arena, mps_class_mvt(), args); } MPS_ARGS_END(args); @@ -203,6 +203,12 @@ MVT interface mps_count_t reserve_depth, mps_count_t fragmentation_limit) + .. note:: + + The fragmentation_limit is a percentage from 0 to 100 + inclusive when passed to :c:func:`mps_pool_create`, not a + double from 0.0 to 1.0 as in :c:func:`mps_pool_create_k`. + .. index:: pair: MVT; introspection diff --git a/mps/manual/html/_sources/topic/index.txt b/mps/manual/html/_sources/topic/index.txt index b4e6300201e..baf376f3fc4 100644 --- a/mps/manual/html/_sources/topic/index.txt +++ b/mps/manual/html/_sources/topic/index.txt @@ -7,7 +7,6 @@ Reference :numbered: interface - keyword error arena pool diff --git a/mps/manual/html/objects.inv b/mps/manual/html/objects.inv index 1fe57b4fd84..c0233f27b77 100644 Binary files a/mps/manual/html/objects.inv and b/mps/manual/html/objects.inv differ diff --git a/mps/manual/html/searchindex.js b/mps/manual/html/searchindex.js index f03e63032eb..e631930a62c 100644 --- a/mps/manual/html/searchindex.js +++ b/mps/manual/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{mps_rank_t:[82,2,1,""],CBSDelete:[50,3,1,""],mps_fmt_fencepost_wrap:[46,3,1,""],mps_ap_alloc_pattern_reset:[47,3,1,""],mps_arena_roots_walk:[82,3,1,""],mps_thread_dereg:[94,3,1,""],CBSBlockDescribe:[50,3,1,""],mps_fmt_create_B:[35,3,1,""],MPS_SAC_CLASS_LIMIT:[12,4,1,""],mps_io_destroy:[32,3,1,""],MPS_RES_FAIL:[10,4,1,""],LockInit:[43,3,1,""],mps_definalize:[90,3,1,""],mps_thread_reg:[94,3,1,""],ACT_ON_RANGE:[18,3,1,""],LockClaim:[43,3,1,""],"-d":[13,0,1,"cmdoption-mpseventsql-d"],MPS_FIX12:[33,3,1,""],"-f":[13,0,1,"cmdoption-mpseventsql-f"],RefSet:[34,2,1,""],mps_pool_destroy:[81,3,1,""],"-l":[13,0,1,"cmdoption-mpseventtxt-l"],"-o":[13,0,1,"cmdoption-mpseventsql-o"],"-i":[13,0,1,"cmdoption-mpseventsql-i"],MPS_OS_W3:[88,4,1,""],mps_pool_create_k:[81,3,1,""],mps_reserve:[84,3,1,""],"-t":[13,0,1,"cmdoption-mpseventsql-t"],mps_message_type_gc_start:[36,3,1,""],"-v":[13,0,1,"cmdoption-mpseventsql-v"],mps_ap_create:[84,3,1,""],"-p":[13,0,1,"cmdoption-mpseventsql-p"],"-r":[13,0,1,"cmdoption-mpseventsql-r"],mps_class_lo:[9,3,1,""],Byte:[34,2,1,""],BTFindResRangeHigh:[18,3,1,""],mps_rank_exact:[82,3,1,""],mps_key_t:[28,2,1,""],mps_ap_alloc_pattern_begin:[47,3,1,""],mps_ap_s:[84,2,1,""],CBSFinish:[50,3,1,""],mps_chain_create:[36,3,1,""],MPS_RES_RESOURCE:[10,4,1,""],MPS_WORD_WIDTH:[88,4,1,""],mps_ap_t:[84,2,1,""],mps_sac_t:[12,2,1,""],MPS_BUILD_GC:[88,4,1,""],MPS_RES_COMMIT_LIMIT:[10,4,1,""],mps_reg_scan_t:[82,2,1,""],mps_tramp:[94,3,1,""],mps_clock:[32,3,1,""],mps_class_amc:[22,3,1,""],ACT_ON_RANGE_HIGH:[18,3,1,""],mps_lib_memset:[32,3,1,""],mps_alloc_pattern_t:[47,2,1,""],mps_arena_start_collect:[29,3,1,""],LockReleaseGlobalRecursive:[43,3,1,""],mps_fix:[33,3,1,""],mps_arena_clamp:[29,3,1,""],mps_gen_param_s:[36,2,1,""],CBSDescribe:[50,3,1,""],mps_sac_destroy:[12,3,1,""],MPS_PF_LII6GC:[88,4,1,""],MPS_T_WORD:[88,4,1,""],mps_arena_create:[29,3,1,""],LockClaimGlobalRecursive:[43,3,1,""],mps_lib_get_EOF:[32,3,1,""],mps_mvff_size:[92,3,1,""],Rank:[34,2,1,""],mps_message_type:[0,3,1,""],mps_awl_find_dependent_t:[8,2,1,""],mps_lib_FILE:[32,2,1,""],mps_lib_get_stderr:[32,3,1,""],mps_chain_t:[36,2,1,""],MPS_T_ULONGEST:[88,4,1,""],MPS_FIX2:[33,3,1,""],MPS_RESERVE_BLOCK:[84,3,1,""],mps_fmt_put_fencepost_t:[46,3,1,""],MPS_FIX1:[33,3,1,""],mps_mvt_size:[77,3,1,""],mps_telemetry_label:[13,3,1,""],BTFindShortResRangeHigh:[18,3,1,""],MPS_SAC_FREE_FAST:[12,3,1,""],MPS_PF_LII3GC:[88,4,1,""],CBSBlockBase:[50,3,1,""],MPS_RES_MEMORY:[10,4,1,""],mps_lib_get_stdout:[32,3,1,""],mps_formatted_objects_stepper_t:[35,2,1,""],MPS_RM_PROT:[82,4,1,""],mps_fmt_create_auto_header:[35,3,1,""],mps_sac_free:[12,3,1,""],Epoch:[34,2,1,""],mps_fmt_adjust_fencepost_t:[46,3,1,""],Ref:[34,2,1,""],mps_message_type_disable:[0,3,1,""],mps_io_write:[32,3,1,""],mps_ld_s:[87,2,1,""],mps_ld_t:[87,2,1,""],TraceSet:[34,2,1,""],mps_arena_class_vm:[29,3,1,""],BTCopyInvertRange:[18,3,1,""],mps_fmt_t:[35,2,1,""],mps_sac_alloc:[12,3,1,""],MPS_PF_XCI3LL:[88,4,1,""],mps_arena_create_k:[29,3,1,""],mps_sac_flush:[12,3,1,""],AccessSet:[34,2,1,""],mps_class_amcz:[2,3,1,""],mps_message_finalization_ref:[90,3,1,""],CBSSetMinSize:[50,3,1,""],mps_args_none:[28,4,1,""],mps_root_create_reg:[82,3,1,""],ArenaFinalize:[83,3,1,""],mps_arena_spare_commit_limit_set:[29,3,1,""],MPS_PF_XCI3GC:[88,4,1,""],mps_rank_weak:[82,3,1,""],mps_arena_create_v:[29,3,1,""],mps_mvff_free_size:[92,3,1,""],mps_ss_t:[33,2,1,""],mps_arena_reserved:[29,3,1,""],mps_arena_unsafe_restore_protection:[29,3,1,""],mps_message_discard:[0,3,1,""],mps_free:[84,3,1,""],mps_message_type_t:[0,2,1,""],Word:[34,2,1,""],mps_arena_class_cl:[29,3,1,""],mps_io_flush:[32,3,1,""],mps_clock_t:[48,2,1,""],mps_class_awl:[8,3,1,""],LockReleaseRecursive:[43,3,1,""],MPS_RES_PARAM:[10,4,1,""],mps_fmt_auto_header_s:[35,2,1,""],mps_commit:[84,3,1,""],mps_message_t:[0,2,1,""],CBSInit:[50,3,1,""],MPS_RES_OK:[10,4,1,""],mps_pool_walk:[46,3,1,""],MPS_PF_W3I3MV:[88,4,1,""],mps_ld_add:[87,3,1,""],mps_class_mv_debug:[75,3,1,""],mps_ap_destroy:[84,3,1,""],mps_arena_commit_limit:[29,3,1,""],mps_clocks_per_sec:[32,3,1,""],mps_root_t:[82,2,1,""],mps_class_mvff_debug:[92,3,1,""],mps_ap_fill:[84,3,1,""],MPS_WORD_SHIFT:[88,4,1,""],mps_class_mv:[75,3,1,""],MPS_SCAN_END:[33,3,1,""],mps_lib_fputc:[32,3,1,""],CONFIG_PLINTH_NONE:[32,4,1,""],BTCopyOffsetRange:[18,3,1,""],MPS_PF_STRING:[88,4,1,""],mps_pool_check_free_space:[1,3,1,""],CBSBlockLimit:[50,3,1,""],mps_fmt_create_A:[35,3,1,""],mps_lib_fputs:[32,3,1,""],mps_addr_fmt:[35,3,1,""],mps_lib_telemetry_control:[32,3,1,""],mps_arena_expose:[29,3,1,""],mps_arena_destroy:[29,3,1,""],mps_fmt_B_s:[35,2,1,""],Addr:[34,2,1,""],Index:[34,2,1,""],MPS_TELEMETRY_DATABASE:[13,1,1,"-"],mps_mvt_free_size:[77,3,1,""],mps_arena_walk:[46,3,1,""],MPS_PF_ALIGN:[88,4,1,""],Serial:[34,2,1,""],"-h":[13,0,1,"cmdoption-mpseventcnv-h"],LockReleaseGlobal:[43,3,1,""],BTIsSetRange:[18,3,1,""],mps_telemetry_get:[13,3,1,""],CONFIG_VAR_RASH:[10,4,1,""],Bool:[34,2,1,""],MPS_TELEMETRY_CONTROL:[13,1,1,"-"],BTFindResRange:[18,3,1,""],mps_thr_t:[94,2,1,""],mps_class_mvff:[92,3,1,""],mps_label_t:[48,2,1,""],MPS_PF_FRI6GC:[88,4,1,""],MPS_OS_LI:[88,4,1,""],mps_message_type_enable:[0,3,1,""],mps_arena_extend:[29,3,1,""],MPS_TELEMETRY_FILENAME:[13,1,1,"-"],mps_class_snc:[79,3,1,""],mps_root_scan_t:[82,2,1,""],mps_message_queue_type:[0,3,1,""],mps_pool_check_fenceposts:[1,3,1,""],mps_message_gc_start_why:[36,3,1,""],MPS_RM_CONST:[82,4,1,""],mps_alloc:[84,3,1,""],BTDestroy:[18,3,1,""],CBSInsert:[50,3,1,""],mps_addr_t:[48,2,1,""],mps_roots_stepper_t:[82,2,1,""],MPS_BUILD_LL:[88,4,1,""],mps_pool_create:[81,3,1,""],mps_message_get:[0,3,1,""],LockReleaseMPM:[43,3,1,""],CBSFindFirst:[50,3,1,""],mps_message_clock:[0,3,1,""],BTFindShortResRange:[18,3,1,""],mps_telemetry_control:[13,3,1,""],mps_pool_create_v:[81,3,1,""],mps_message_gc_live_size:[36,3,1,""],CBSIterateLarge:[50,3,1,""],BTSetRange:[18,3,1,""],RootVar:[34,2,1,""],mps_arena_spare_commit_limit:[29,3,1,""],MPS_RES_IO:[10,4,1,""],MPS_OS_XC:[88,4,1,""],MPS_PF_W3I6MV:[88,4,1,""],LockClaimGlobal:[43,3,1,""],Align:[34,2,1,""],mps_fmt_A_s:[35,2,1,""],mps_objects_step_t:[46,3,1,""],mps_debug_class:[46,3,1,""],CBSIterate:[50,3,1,""],mps_fmt_fwd_t:[35,2,1,""],MPS_ARGS_BEGIN:[28,3,1,""],BTIsResRange:[18,3,1,""],Fun:[34,2,1,""],mps_arena_release:[29,3,1,""],MPS_ARGS_ADD:[28,3,1,""],mps_root_create_table_masked:[82,3,1,""],mps_arena_step:[29,3,1,""],BTFindLongResRange:[18,3,1,""],mps_fmt_check_fenceposts_t:[46,3,1,""],MPS_SAC_ALLOC_FAST:[12,3,1,""],Compare:[34,2,1,""],mps_collections:[29,3,1,""],mps_ap_create_v:[84,3,1,""],mps_align_t:[48,2,1,""],MPS_RES_UNIMPL:[10,4,1,""],mps_sac_class_s:[12,2,1,""],mps_mv_free_size:[75,3,1,""],mps_arena_committed:[29,3,1,""],BTSet:[18,3,1,""],BTGet:[18,3,1,""],mps_ap_alloc_pattern_end:[47,3,1,""],mps_arena_unsafe_expose_remember_protection:[29,3,1,""],mps_ap_create_k:[84,3,1,""],mps_message_type_gc:[36,3,1,""],mps_arena_has_addr:[29,3,1,""],MPS_ARCH_I3:[88,4,1,""],CBSFindLast:[50,3,1,""],Size:[34,2,1,""],mps_io_create:[32,3,1,""],mps_lib_assert_fail:[32,3,1,""],mps_arena_t:[29,2,1,""],mps_amc_apply_stepper_t:[22,2,1,""],mps_ap_frame_push:[40,3,1,""],mps_fmt_scan_t:[35,2,1,""],mps_ld_reset:[87,3,1,""],LockFinish:[43,3,1,""],mps_root_create_fmt:[82,3,1,""],MPS_ARGS_DONE:[28,3,1,""],MPS_SCAN_BEGIN:[33,3,1,""],BTCreate:[18,3,1,""],BTRes:[18,3,1,""],mps_stack_scan_ambig:[82,3,1,""],Accumulation:[34,2,1,""],MPS_ARCH_I6:[88,4,1,""],mps_sac_create:[12,3,1,""],mps_arena_commit_limit_set:[29,3,1,""],ULongest:[34,2,1,""],mps_fmt_pad_t:[35,2,1,""],mps_pool_debug_option_s:[1,2,1,""],mps_root_destroy:[82,3,1,""],mps_root_create:[82,3,1,""],mps_arena_class_t:[29,2,1,""],mps_ld_merge:[87,3,1,""],MPS_ARGS_END:[28,3,1,""],mps_word_t:[48,2,1,""],mps_amc_apply:[22,3,1,""],mps_finalize:[90,3,1,""],mps_arena_collect:[29,3,1,""],BTCopyRange:[18,3,1,""],mps_telemetry_intern:[13,3,1,""],MPS_FIX_CALL:[33,3,1,""],Pointer:[34,2,1,""],CBSFindLargest:[50,3,1,""],mps_res_t:[10,2,1,""],mps_class_ams_debug:[27,3,1,""],mps_lib_memcpy:[32,3,1,""],mps_bool_t:[48,2,1,""],MPS_BUILD_MV:[88,4,1,""],MPS_PF_FRI3GC:[88,4,1,""],BTSize:[18,3,1,""],mps_mv_size:[75,3,1,""],CONFIG_VAR_HOT:[10,4,1,""],TraceId:[34,2,1,""],Attr:[34,2,1,""],mps_root_create_table:[82,3,1,""],mps_tramp_t:[94,2,1,""],mps_ap_frame_pop:[40,3,1,""],mps_ld_isstale:[87,3,1,""],CBSBlockSize:[50,3,1,""],mps_rank_ambig:[82,3,1,""],LockSize:[43,3,1,""],mps_class_ams:[27,3,1,""],mps_class_mfs:[85,3,1,""],Shift:[34,2,1,""],mps_addr_pool:[81,3,1,""],BTResRange:[18,3,1,""],MPS_RES_LIMIT:[10,4,1,""],mps_alloc_pattern_ramp_collect_all:[47,3,1,""],MPS_PF_XCI6LL:[88,4,1,""],mps_arena_spare_committed:[29,3,1,""],mps_fmt_skip_t:[35,2,1,""],Res:[34,2,1,""],mps_fmt_isfwd_t:[35,2,1,""],BTFindLongResRangeHigh:[18,3,1,""],mps_alloc_pattern_ramp:[47,3,1,""],mps_fmt_class_t:[35,2,1,""],mps_class_t:[81,2,1,""],mps_telemetry_flush:[13,3,1,""],mps_frame_t:[40,2,1,""],mps_ap_trip:[84,3,1,""],mps_pool_t:[81,2,1,""],mps_message_gc_not_condemned_size:[36,3,1,""],mps_chain_destroy:[36,3,1,""],CONFIG_VAR_COOL:[10,4,1,""],LockClaimRecursive:[43,3,1,""],mps_message_gc_condemned_size:[36,3,1,""],mps_message_type_finalization:[90,3,1,""],MPS_ARGS_ADD_FIELD:[28,3,1,""],mps_lib_memcmp:[32,3,1,""],mps_arg_s:[28,2,1,""],mps_arena_park:[29,3,1,""],mps_telemetry_set:[13,3,1,""],mps_rm_t:[82,2,1,""],mps_class_mvt:[77,3,1,""],mps_telemetry_reset:[13,3,1,""],mps_fmt_destroy:[35,3,1,""],mps_arena_formatted_objects_walk:[35,3,1,""],mps_io_t:[32,2,1,""],mps_message_poll:[0,3,1,""],MPS_OS_FR:[88,4,1,""]}},terms:{scriptwork:51,nurseri:[53,57,61,63,47,74,36],ru_utim:32,orthogon:[31,38],mps_arena_roots_walk:[82,29],demand:[21,72,74],btset:18,four:[30,82,58,18,70,67,69,7,72,73,50,75],secondli:[6,62,17,15],prefix:[48,4,6,51,58],circuitri:62,oldest:74,effienc:46,forget:[29,25],whose:[0,54,48,66,68,69,40,1,13,42,77,22,76,65,25,28,81,82,8,12,41,35,87,36,15,90,33,71,93,94,37,38],accur:[30,55,74,63,70,80,50],"const":[32,13,28,36],find_depend:8,mpsioan:32,albuquerqu:31,mps_telemetry_flush:[32,13,29],concret:[59,45,6,46,34,51],swap:[58,60,62,66,68,71,72,74,29],under:[39,56,57,5,18,68,44,10,50,48,46,90,74,3,41,84,29,38],sped:[0,15],spec:34,merchant:5,digit:[4,73,62,31,88],everi:[0,54,17,60,61,62,65,70,40,72,13,42,7,25,29,30,82,31,10,46,41,35,34,16,50,37],risk:[50,45],mps_final:[54,90,83,25],macraki:[93,58],"void":[0,54,18,60,48,70,13,2,1,75,41,43,77,6,79,25,27,28,29,81,30,82,9,31,32,8,83,46,47,12,22,34,35,85,87,36,88,84,90,50,92,94,37,51,72],rise:71,risc:63,lofix:17,implicit:[57,41,70,40,71],quantiz:74,addrstruct:34,jacob:31,affect:[36,18,79,44,70,11,90,67,46,69,16,71,51,57,29],mps_pool_check_fencepost:[46,1],poorli:[30,24,12,65],deleterang:50,vast:89,agesen:31,extend_s:[92,75,85],kilobyt:[64,62,36,37,58],ferreira:31,factori:72,vector:[82,63,58,18,68,25,46,59,71,33,37],terabyt:[70,58],cmu:31,parenthes:48,initialis:[50,43],bevan:93,x86_64:4,lockw3:10,deutsch:[56,31,15],mps_lib_get_stdout:32,naiv:41,direct:[53,55,56,57,5,18,32,11,65,69,41,84,51],histor:[53,54,56,57,58,59,60,62,65,67,68,70,71,72,73,4,43,45,83,49,88,15],nail:[26,61,74],consequ:[9,10,51,8,79,2,25,27,94,29],second:[84,17,88,44,32,62,65,49,24,71,25,41,13,37,29,38],reorder:84,doubt:5,aggreg:[68,59],type_fwd:37,p_v:[84,12],ap_o:[79,84,8],thisclass:41,mps_key_vmw3_top_down:[28,29],even:[0,53,56,57,17,18,65,66,67,69,70,71,72,74,84,42,59,5,77,24,25,26,29,30,33,46,47,12,13,35,15,90,16,50,94,37,51],hide:[46,68],fmt_o:35,arena_poll_max:6,neg:[81,87,18,32,35,29],asid:12,weren:57,btcopyoffsetrang:18,children:[53,61,70],cheng:31,supplier:30,"new":[0,39,57,58,18,54,61,62,63,65,67,53,70,40,72,74,19,4,41,42,20,43,6,24,50,8,29,81,30,82,31,10,25,46,48,92,13,35,80,87,36,88,89,15,84,90,33,71,37,38],mps_ss_t:[82,17,8,33,37,78,71,25,35],upward:[92,18],ever:[30,82,88,6,11,70,13,94],singhal:[31,74],protocolensuresomeclass:41,elimin:[30,57,17,62,89,15,67,71,72,84],port_ref:25,dahl:[31,15],mps_arena_class_cl:[28,37,29],mem:[34,50],splinter:[46,6],here:[0,17,18,63,4,13,42,21,44,6,25,29,82,10,46,84,87,36,90,16,33,37,38],block_requiring_fin:90,met:[67,5],undef:[48,15],studio:[4,88],subword:18,debugg:[13,16,82,29],path:[84,20,57,17,49,10,33,65,37,67,46,16,71,72,74,41,13,66,34,52],mps_message_type_dis:0,interpret:[0,81,82,87,57,1,44,33,70,86,15,90,16,40,80,25,13,37,29],michal:31,precis:[53,30,55,58,31,62,74,69,7,71,50,35],findshortresrangehigh:18,bitmask:[82,13,58],drj:[6,34,18,80],pekka:[42,31,6,83,46,80,34,93],scaveng:[53,71,70,57,31],permit:[0,30,57,59,5,46,77,6,50,89,68,39,70,51,74,41,84,62,29],krishnan:31,aka:[6,88,18,45],prolog:[53,57,11,15],mps_lib_telemetry_control:32,basereturn:[18,50],joshua:31,frombas:18,norsk:31,"000ae0397335c8b5":13,mps_key_chain:[22,1,2,25,27,28,37],tempt:[87,48,33],skippabl:37,"_mps_fix":17,brought:45,mps_releas:21,unix:[53,58,60,10,62,71,72,32,4,94,34,51],mps_sac_free_fast:12,brk:[71,58,59],amherst:31,strai:46,printf:[0,25],newspac:[61,70],mps_args_don:[1,9,77,22,8,37,79,2,25,92,27,75,28,35,29,85],total:[30,36,44,6,62,77,24,16,71,80,25,57,34,75,92,37,29],cbsfindlast:50,mps_fmt_create_b:35,unit:[42,56,57,17,60,32,6,37,72,73,74,34,85,35,62,58],highli:[39,30,17,15,37],bookkeep:[30,24,11,62,15],describ:[53,54,57,17,59,60,62,65,70,40,72,74,3,4,75,13,58,42,21,6,24,50,25,27,30,82,32,8,11,86,12,92,34,35,80,36,48,89,15,84,33,41,71,37,51,38],would:[84,54,55,57,17,18,61,63,67,2,13,58,42,5,77,6,24,25,29,30,82,10,8,11,46,12,41,35,85,87,34,32,89,15,90,83,50,37,72],tail:[46,31,15],unpredict:30,vol:31,edward:[62,31,15],call:[0,39,56,57,17,18,54,60,62,1,64,65,67,53,70,40,72,74,4,34,58,42,50,59,43,77,6,78,79,24,7,8,27,28,29,81,30,82,9,10,25,11,46,47,12,92,13,35,80,87,36,48,32,89,69,15,37,84,90,16,83,33,41,71,94,22,51],card:[57,31,74],"0x1003fb148":16,recommend:[17,32,11,48,37,12,33,94,35,38],indiana:31,promptli:[0,54,11,24,72,84],type:[0,54,55,56,57,17,18,60,62,63,64,65,67,68,69,70,40,2,74,75,34,58,42,20,59,88,77,6,79,24,7,8,27,28,29,81,30,82,9,31,45,10,25,11,92,46,47,12,50,13,35,85,80,87,36,48,72,94,32,15,37,84,90,16,33,41,71,1,22,51,52],until:[0,54,57,59,60,61,65,70,71,74,43,6,24,25,29,81,30,82,9,80,83,47,12,84,35,87,36,90,33,37],buddi:[54,56,58,31,30,89,65,23,67,71],mps_arch_m2:88,mps_arch_m4:88,buckets_find_depend:25,mps_arch_m6:88,relax:25,relat:[53,54,55,56,57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,74,13,7,30,11,41,35,87,34,15,50],notic:[31,48,18,5,74],warn:[39,45,12,33,34,94,84],exce:[30,36,18,77,6,13],mps_pf_string:[88,21],phd:31,wari:6,excl:84,hold:[0,54,55,58,18,62,65,40,72,4,84,43,6,25,29,81,82,12,34,35,86,36,90,71,94,38],overrun:46,must:[0,39,56,57,17,18,54,60,61,62,1,65,68,53,70,40,2,74,4,75,34,42,50,59,5,43,77,6,78,79,24,7,8,26,27,28,29,81,30,82,9,32,25,11,46,12,92,13,35,85,80,87,36,48,72,89,69,37,84,90,16,83,33,41,71,94,22,51,38],shoot:30,btfindshortresrangehigh:18,springer:31,join:[91,48],room:[46,36,68],err:6,restor:[0,57,31,43,15,71,33,37,29],chenei:[53,70,57,31],work:[39,53,57,17,18,62,63,65,67,70,71,72,4,13,42,44,6,24,8,27,29,30,82,31,83,80,11,12,34,36,89,15,84,90,50,93,37,38],btsetrang:18,pierc:31,doubleword:[56,63,73],mccaughan:93,coalesc:[54,55,56,57,58,59,20,77,30,45,89,67,71,50,63],sharp:47,poolfinish:80,hansen:[93,31],root:[39,53,55,57,17,59,62,67,69,70,71,72,74,4,75,41,58,42,20,77,6,78,24,50,25,27,29,82,9,31,45,8,83,22,34,85,86,15,84,90,33,92,52,94,37,38],cbsst:50,pierr:31,overrid:[41,17],defer:[56,57,59,31,24,47,72,50,84,76],obj_fmt_:[35,37],give:[0,30,77,87,36,46,44,32,88,11,48,67,39,7,71,61,57,13,29,38],mps_ld_reset:[87,25],jelica:31,indic:[0,54,56,59,60,48,70,40,72,13,42,43,6,24,50,32,26,29,82,10,25,83,47,92,41,35,80,87,34,88,33,71,37,51,38],sick:31,attrbuf:34,caution:[82,8,90,25,19,84,35,52],fibonacci:[54,89,58],want:[39,53,18,72,74,4,13,42,6,32,28,29,30,82,10,25,46,12,22,34,35,16,37],noprint:16,mysegclass:41,mps_key_mvt_reserve_depth:[77,28],keep:[58,65,67,70,71,72,74,17,42,43,6,78,24,8,29,30,9,25,50,11,46,36,89,15,90,91,33,37,51],unsign:[0,50,82,87,59,18,88,32,6,25,48,37,7,12,8,13,28,34,51],tediou:30,motion:[69,57,31,29,74],vanish:16,end:[54,55,17,18,60,65,71,72,84,6,25,28,29,82,10,47,48,41,35,90,16,50,37,38],"0x000000010000206b":16,quot:[54,62,48,67,71,37],mps_tramp_t:94,ordinari:[72,62,57,35,8],findfirst:50,classifi:[54,74],revisit:31,how:[0,39,56,57,17,18,54,62,70,72,58,42,5,6,49,24,25,29,81,30,82,31,8,11,46,12,13,35,80,36,89,16,33,37,51,38],hot:[57,17,10,66,68,72,4,13,51],recoveri:31,env:16,"000ae0397333bc6d":13,answer:[30,57,37,18,38],symposium:31,ancestor:15,config:[34,51,21],updat:[53,54,56,57,17,62,65,69,71,72,34,58,42,6,24,32,25,29,81,30,31,10,50,48,13,35,80,33,37,51],lam:31,simmon:93,recogn:[10,84,87,8],lai:37,after:[0,54,56,57,17,62,1,69,72,74,4,13,58,42,21,44,6,78,79,24,25,28,29,30,82,10,50,46,47,12,41,35,87,32,43,89,15,84,90,16,33,94,37,51,38],lovemor:93,"0x0000000100011ded":16,diagram:[24,57,84],befor:[84,54,17,18,62,48,71,1,13,58,43,6,24,25,28,29,30,82,10,8,46,22,41,87,89,15,90,33,92,37,38],wrong:[30,86,36,17,77,10,11,16,92,34,75,37],mps_tramp:94,arch:[42,51,21],parallel:[53,30,57,31,65,70,71,74,35],averag:[34,63],poolmvff:50,errror:82,type_port:25,attempt:[56,57,17,18,62,71,72,74,59,77,80,29,30,11,83,46,84,35,89,15,50,37],third:[17,31,88,44,49,24,25,34,37],opaqu:[56,43,60,48,70,87],grant:71,baker:[57,58,31,60,63,15,68,70],cbsiter:50,perform:[0,53,56,57,17,18,54,62,65,70,71,72,74,4,84,42,20,43,44,24,7,8,29,30,82,9,31,50,11,86,46,41,35,80,87,36,89,15,77,90,16,33,37,38],type_:[37,8],maintain:[56,57,17,59,62,63,67,70,71,72,42,43,6,29,82,12,41,85,86,50,93,37,51],environ:[72,30,58,31,43,60,32,74,15,37,84,16,59,25,4,94,13,51,52],abysm:50,reloc:[42,57,58,71,72,35],finalis:[80,43],exclus:[43,37,70,94,35,38],mps_telemetry_reset:13,lambda:[90,16,25],order:[53,54,56,57,17,59,61,62,63,65,66,67,70,40,72,4,13,58,43,6,24,7,25,26,28,30,31,8,33,83,12,92,34,89,15,84,90,16,50,71,94,37,51],finaliz:[26,67,90,72,25],decl:51,origin:[54,17,18,45,6,15,67,90,71,72,25,93,35],mpstd:[34,88,51,21],composit:[68,71,57,15],feedback:91,afip:31,diagnos:13,over:[56,57,17,18,62,1,71,74,42,59,77,6,7,25,29,82,32,11,46,47,34,35,87,36,83,50,37],config_var_cool:[10,16,51],message_type_o:0,becaus:[39,53,55,56,57,17,18,54,60,61,62,63,65,66,67,68,70,40,72,74,13,58,42,50,59,43,6,78,24,7,8,28,29,30,82,10,25,11,46,12,92,34,80,87,48,1,32,89,15,84,90,16,83,33,41,71,37,51],fifo:[54,63,59,92],poolcreat:80,dijkstra:[62,70,57,31],ulongest:34,flexibl:[39,42,82,56,60,89,67,12,29],vari:[30,57,17,54,44,77,71,51],btcopyrang:18,digest:74,sigplan:31,hashf:25,fit:[53,54,55,56,1,58,18,61,62,63,65,67,71,72,74,19,75,84,42,20,59,5,44,23,30,31,47,34,89,77,50,92,51,38],obj_pool:[35,37],fwrite:32,fix:[0,39,56,57,17,59,54,63,65,71,72,74,19,84,42,20,6,49,50,8,26,30,82,45,10,25,11,46,13,35,85,80,78,16,33,52,37,51,38],arenaent:6,better:[81,54,82,37,17,18,89,33,11,35,84,87,66,72,8,4,38,34,29,9],drawback:24,fig:51,persist:[81,82,36,31,47,12,33,35,29],comprehens:57,shire:93,hidden:[82,83,15],erlang:11,taiichi:31,easier:[42,30,11,89],define_pool_class:41,descend:15,them:[0,39,56,57,17,18,72,61,62,63,65,67,53,71,2,41,58,42,59,44,6,78,24,50,25,27,29,30,82,9,8,11,46,12,22,13,35,80,36,48,89,15,77,90,16,33,92,94,37,51,38],poolclass:[41,13,34,80],nygaard:15,thei:[0,39,56,57,17,18,54,72,62,63,65,67,68,53,70,71,2,74,41,58,42,50,59,43,77,6,76,24,7,8,26,27,29,30,82,9,31,45,32,25,11,46,12,34,35,80,87,36,48,1,89,69,15,37,84,78,83,33,94,22,38],fragment:[54,55,57,58,59,61,62,63,65,66,71,72,74,77,24,29,31,11,46,12,85,89,50,92,38],dirk:31,thee:13,safe:[0,30,82,87,84,59,31,43,77,94,15,54,39,70,71,48,34,28,37,29,79],mps_reg_scan_t:[82,37],debugmixin:46,"break":[84,58,18,88,77,83,15,46,16,71,72,33,41,92,4,75,37,29],band:[54,58,60,65,66,70],inescap:46,promis:[57,37],closer:89,interrupt:[30,24,5],itanium:88,yourself:[37,29,38],epdr:41,choic:[56,36,59,18,68,62,89,15,46,71,37],tendenc:[61,22],"0x000000010001f2d2":16,mps_messag:83,codewarrior:[4,51,88],string_hash:25,"0x7fff5fbff7a0":16,harri:31,xcppgc:88,accommod:[53,12,35],loss:[18,5,33],dest_ld:87,"000ae039733592f9":13,arrow:53,each:[0,53,55,56,57,17,18,54,60,61,62,63,65,67,68,70,71,72,74,4,13,58,42,50,59,88,44,6,24,7,8,28,29,30,82,10,25,11,46,12,34,35,85,80,87,36,48,1,89,37,84,77,78,16,33,41,94,22,51,38],debug:[0,56,59,70,13,1,4,75,41,20,43,22,32,27,29,45,10,25,11,46,12,34,35,86,84,16,50,92,37,52],went:[10,34],european:31,oblig:37,side:[46,84,48],mean:[53,54,17,18,60,62,63,65,66,67,68,70,40,72,74,75,13,58,42,59,5,77,22,7,8,26,29,30,82,9,10,25,46,48,92,34,35,80,87,15,84,90,16,33,41,71,94,37,51,38],data_scan:33,laboratori:31,poolepvm:18,btfindshortresrang:18,overflow:30,bufferfil:46,oppos:[30,34,56,57,65],mps_res_limit:[10,12],cbsbl:50,forgot:16,collector:[39,53,55,56,57,17,59,54,60,61,62,63,65,67,69,70,71,72,74,4,84,58,42,44,22,23,79,24,25,29,81,30,82,31,10,11,13,35,36,15,90,16,37],x86:[39,4,88,13,58],unbound:[0,72],network:[30,56,32,11,15,90,29],goe:[30,82,31,46,71,4,29],newli:[57,84,36],crucial:[24,25],content:[0,39,56,36,58,68,22,15,37,46,16,72,80,84,35,29],rewrit:[84,51],laid:[54,16],daniel:[93,31],adapt:[39,91,31,93],reader:33,mps_arena_create_v:29,protocolclass:41,forth:71,kiem:31,mccarthi:[53,13,62,31,15],cbsblockstruct:50,arizona:31,linear:[31,63,71,17,18],barrier:[56,58,72,63,65,67,68,70,71,2,74,75,84,42,77,6,79,8,27,29,82,9,31,45,83,22,34,35,85,15,16,92,94,37,38],worthwhil:30,mps_class_awl:[25,28,8],situat:[87,60,6,50,65,24,16,8,35,29],free:[39,53,55,56,57,58,18,54,60,61,62,63,65,66,67,69,70,71,72,74,4,75,42,59,77,6,24,8,29,30,82,10,80,11,46,12,84,85,1,89,15,90,50,92,37,38],ineffici:[77,89,63,11,24,71,72,74],mps_commit:[84,16,37,25],ian:31,cytron:31,hand:[30,17,18,20,10,48,37,59,72,8,34,35,52],mvt:[20,77,50,19,84,75,38],atc:[70,59],puzzl:25,epvm:18,assert_mpm:51,filter:[32,13,70,17],ish:46,iso:[57,58,31,21,32,15,48],isn:[30,57,17,47,80,46,24,16,25,34,51],"__int_64":[48,88],bufferstruct:80,"0x0000000000000000":16,subtl:[54,17,72],onto:[30,59,80,46,71,1,40],cbstest:[18,50],"0x0000000000000004":16,"0x0000000000000005":16,dimens:[68,71,31],rang:[58,18,60,62,74,67,46,69,77,71,72,50,34,37],kim:31,nhc:31,p_o:[84,16,12],hoop:80,independ:[42,56,9,31,65,29,51],wast:[18,44,89,11,65,12,74,85],rank:[55,17,59,2,67,71,72,19,20,79,25,28,82,9,8,83,34,78,16,33,38,37,52],necess:29,restrict:[84,58,32,8,65,46,90,50,40,51,74,71,4,35,29],hook:[6,82],instruct:[84,1,17,31,62,63,11,15,91,69,70,71,65,8,34,37,58],alreadi:[0,54,56,57,17,43,6,50,24,25,41,13,94,37],wrapper:[67,32,50,46,25],wasn:[10,12,17],tag_siz:25,agre:[0,15],flagella:[31,15],primari:[62,51,74],brock:31,"00000001003fc000":13,provabl:[56,63,37],nomin:5,top:[39,30,36,18,6,50,67,16,71,25,22],epdrpoolclass:41,sometim:[0,54,56,57,58,18,60,65,53,69,70,71,72,74,4,59,24,8,30,46,15,90],amcscannail:16,timothi:31,toi:[0,82,87,44,25,90,16,33,13,37],too:[39,30,36,44,51,8,70,62,15,42,67,46,24,16,12,25,34,81,50,37,29],kanefski:31,epdralloc:41,mps_message_get:[0,62,36,90,25],upshot:87,john:[53,31,62,15,13,93],bttest:18,hewitt:[55,31],mps_build_cc:88,mps_fill_fencepost:46,tricolor:[67,70,71],tool:[30,31,21,32,62,88,11,15,72,4,13,51],tractofaddr:6,took:[84,87],gnumak:4,"10g":16,mps_sac_class_:[71,12],incur:[55,2],serial:[32,6,34,31],somewhat:[25,71,17,74],conserv:[53,30,55,57,58,31,54,62,8,11,15,24,59,71,65,74,26,34],happili:83,simula:[31,15],config_var_rash:[10,72],mps_clock_t:[0,32,48],technic:[39,42,86,31,92,35,38],symptom:12,modula3:15,nmk:4,r4000:88,silli:18,target:[39,30,86,17,18,45,32,33,37,7,74,4,88,34,51],keyword:[57,64,48,71,2,1,75,20,77,22,79,8,27,28,29,81,9,84,85,92,37,52],cxref:88,provid:[39,54,57,17,18,60,62,63,70,71,2,74,4,41,42,50,59,5,43,22,79,24,7,32,27,29,30,82,9,25,10,8,11,46,12,13,35,80,87,72,89,15,37,84,90,91,33,1,6,38],lvalu:[84,12],tree:[54,59,45,6,65,66,46,71,50,4],mps_os_w3:[51,88],withington:[63,31,93],project:[39,86,31,15,91,4,37,51],matter:[24,87,58,31],mpmtype:[34,18],poolinit:[6,13,80],searchlimit:18,provis:[80,50],fashion:[62,90,15],entail:[24,57,17,35],mps_ap_frame_push:[79,40,59],ran:[34,12],mps_count_t:77,ram:[56,59,62,11,71,72,74,37,29],mind:[44,71,24,11],mine:31,bitfield:34,raw:[6,69,72],rat:51,lookup_in_fram:[13,16],manner:[46,5,80],increment:[39,53,57,58,54,62,63,65,67,70,71,72,74,84,42,6,24,8,29,30,31,10,80,34,15,94,37,38],infring:5,seen:[30,43,74,46,71,50,51],seem:[30,24,34,46,37],strength:[89,72],recreat:80,harper:31,latter:[67,72,18],cope:[30,82,62,8,90,74],client:[0,53,56,57,17,18,54,60,62,63,48,70,40,72,74,3,13,42,20,59,43,77,6,50,8,26,28,29,81,30,82,45,10,25,83,46,47,12,34,35,80,87,36,1,32,37,84,90,16,33,41,71,52,94,22,51,38],fwd2:37,thoma:31,thoroughli:34,memo:31,eagerli:50,wherebi:[0,63,47,57],simplifi:[39,53,58,18,54,25,70,46,59,2,33],transistor:71,table_set:25,shall:[48,6,18,5],mps_ap_frame_pop:[79,40,59],object:[0,53,55,56,57,17,18,54,60,61,62,63,76,65,66,67,68,69,70,71,2,74,19,4,75,34,58,42,20,59,21,44,6,78,23,79,24,7,8,26,27,88,29,30,82,9,31,45,10,25,11,86,46,12,13,35,85,80,36,48,72,43,89,15,37,84,77,90,16,83,33,41,92,52,1,22,38],mps_root_scan_t:82,lexic:15,regular:[0,67,4,90,25],alan:31,letter:[48,31],phase:[42,45,62,24,71,74],fwd_:37,coin:31,character_:37,prematur:[53,30,56,62,11,69,74],tradit:43,event_poolinit:13,simplic:[94,51,18,33],don:[39,17,18,48,67,72,84,58,42,6,80,28,29,30,25,46,22,41,90,50,37,51,38],simplif:30,doc:[42,18],"0x1003f9878":16,flow:15,doe:[0,53,57,17,18,54,60,61,62,63,65,67,69,71,72,74,75,58,42,50,5,43,44,6,78,79,24,7,8,27,28,29,30,82,9,10,25,11,12,13,35,85,80,87,48,1,32,89,15,37,77,90,16,83,33,92,94,22,51,38],buckets_:[37,25],dummi:[6,84],declar:[84,30,82,18,31,21,48,54,79,67,59,40,51,80,71,34,41,29,72],metat:15,sun:[31,15],unchang:[1,50],notion:[30,6],came:[60,46,51],kristen:15,ungar:[63,31,15,72],introspect:[81,82,45,77,22,79,92,19,41,75,35,29,52],wow64:39,sigsegv:94,opposit:[53,54,55,56,57,58,18,60,61,62,63,70,65,66,67,68,69,59,71,72,74],cheapli:56,syntax:[41,57,15],minimum_s:77,modula:[53,11,15],identifi:[18,21,6,63,64,65,37,68,71,48,33,41,13,28,35,51,52],figueiredo:15,involv:[30,17,18,60,89,62,8,11,67,46,47,70,72,74,71,41,50,35,58],despit:[87,57,58,11,15,71,72,25,41],layout:[57,17,25,11,16,71,33,35],acquir:[77,10,29,92],mpsliban:[32,4],i5m2cc:88,mps_key_mvff_slot_high:[92,28],menu:4,explain:[10,11,8,41,28,37,51],configur:[20,27,9,18,43,77,6,22,15,79,45,70,51,8,85,92,4,75,13,29,38],mps_key_ams_support_ambigu:28,than:[0,53,56,57,17,18,54,60,61,62,63,64,65,67,68,70,40,72,74,41,58,42,5,44,6,50,8,29,30,82,10,25,11,46,47,12,92,34,35,80,87,36,48,1,32,89,15,84,77,16,33,71,94,37,51,38],btget:18,rich:[30,15],weakrefer:[67,72,15],mps_chat:0,predecessor:15,plate:71,stoy:[60,31],likewis:[6,62],stop:[30,31,1,65,24,71,25,29],compli:69,ceil:18,mpscmvff:92,watson:31,mps_variety_str:21,report:[84,30,87,31,32,83,15,70,65,50,13,37],reconstruct:[16,18],mps_ap_fil:[84,16],mustn:82,first_fit:92,softli:[15,67,46,71,72,74],bar:[71,51],gareth:[18,21,6,43,83,46,7,80,50,26,3,93,51],emb:41,"\u00e5ke":31,baz:51,patch:48,"__date__":21,twice:[30,82,50,40,46],bad:[30,58,89,70,65,46,16,15,25,84],fourteenth:31,told:[42,65],steal:29,respond:[89,11,12],mps_arena_has_addr:29,cbssetmins:50,fragmentation_limit:77,victim:13,fair:18,fp_size:46,btcv:18,light:30,datatyp:43,loreclaim:17,nul:[32,13,84],accumulatorscal:34,result:[0,54,57,17,18,62,65,69,40,72,74,41,77,6,50,8,27,29,81,30,82,10,25,46,47,12,34,35,80,87,36,48,32,84,13,90,16,33,71,94,37,51,52],"0x1003faf20":[13,16],respons:[39,30,80,56,57,59,43,6,50,65,42,24,12,74,41,81,62,29],fail:[84,56,17,18,48,40,13,59,44,6,24,25,29,30,10,83,46,47,12,41,35,36,34,15,16,50,71,37,51],hash:[86,56,87,8,15,67,46,78,16,65,25,37,38],charact:[30,17,88,32,37,71,2,25,4,13,51,58],tractofbaseaddr:6,best:[39,54,58,59,65,67,53,71,74,77,25,29,30,31,50,34,89,15,33,92,37,51],subject:[0,82,32,50,67,46,90,71,25,4,35,29,85],awar:[54,41,8],said:[42,53,61,62,46,69,70,72,74,13],hopefulli:17,erez:31,databas:[31,80,18,5,21,6,43,83,46,24,7,72,50,26,3,4,13,51],delphi:15,phantomli:74,shenker:31,yet:[0,42,36,17,10,50,83,90,15,53,84,46,24,16,8,41,34,37],figur:[39,42,84,46],mps_pf_w3i3mv:[51,88],languag:[53,54,56,57,17,59,60,62,63,65,68,69,70,71,72,74,84,58,20,5,78,23,24,30,31,32,11,48,41,39,86,15,90,37,51,52],res_io:46,sos8cx:88,awai:[11,17],approach:[48,89,11,51,31],glasgow:31,pad_:37,attribut:[34,87,80],inabl:[54,55],accord:[42,30,17,18,54,61,89,65,84,47,71,48,74,92,41,34],never:[53,54,58,18,62,63,48,68,72,34,44,6,79,24,25,81,30,32,80,13,35,87,15,84,77,90,50,37],extend:[42,17,18,6,50,15,91,59,80,8,41,37,29,58],sram:71,weak:[39,56,17,18,67,70,71,72,74,19,42,20,22,78,79,8,27,82,25,34,86,89,15,90,38,37,52],obj_chain:[37,25],extens:[53,82,57,18,45,44,10,62,11,15,66,51,41,37,29,38],lazi:[65,83,31,18],unabl:[22,29],preprocessor:[88,61,32,15,16,48,10,51],extent:[55,56,57,59,63,11,65,66,90,71,15],dbgpool:[10,46],toler:[67,70,8],xci6ll:[4,88],mps_clocks_per_sec:32,protect:[53,54,58,72,62,48,67,68,71,2,74,19,75,41,42,43,77,6,79,25,27,29,82,9,31,8,83,22,34,35,85,80,84,16,92,38,94,37,51,52],accident:[34,62],expos:[53,68,71,29],fault:[39,53,58,31,6,8,65,67,68,71,72,74,19,35,62],howev:[0,54,56,57,58,18,60,62,65,71,72,4,84,42,59,5,44,6,24,25,27,29,30,32,12,41,15,33,93,94,37,51],against:[30,87,44,6,74,33,62],logic:[17,18,60,63,15,68,72,51,38],browser:15,com:[39,4,91,5],con:[0,57,31,59,15,67],rehash:[87,37,25],epdldebugsig:41,mps_telemetry_set:13,bool:[18,6,7,50,26,41,34],toni:[41,6,93,31,18],character:[67,30,31,15],ref_o:90,delic:8,loader:29,dconfig_var_cool:[4,16],enorm:[46,93],guil:15,exemplari:5,sml:[31,15],vmmap:13,wider:4,guid:[20,86,87,18,11,48,72,8,41,37],assum:[42,53,82,57,10,90,67,46,24,12,8,41,34,84,37,51,61],summar:[6,38],duplic:[42,57,58,6,11,69,51],mps_lib_fput:32,liabil:5,degener:63,fre:15,union:[42,87,59,6,48,70,25,34,28,37],three:[0,54,57,62,65,67,68,69,71,72,74,3,4,75,84,42,21,44,6,24,7,25,27,29,30,10,50,11,46,48,13,35,87,88,89,15,77,16,33,37,51],been:[0,39,56,57,17,18,54,60,62,63,67,53,70,71,72,74,13,58,42,88,6,78,76,24,25,26,28,29,81,30,45,10,50,11,46,12,34,35,80,87,36,69,15,37,84,90,16,83,33,41,93,94,22,38],specul:[18,15],accumul:[61,34,11,80],much:[0,53,56,17,18,62,70,4,58,42,44,24,29,30,45,33,11,47,12,39,36,89,90,50,37,51],mps_arena_unsafe_restore_protect:29,mult:41,interest:[0,30,37,17,45,10,50,15,35,78,91,72,33,42,4,13,29,38],subscrib:91,insert_link:84,cohen:31,quickli:[57,58,6,62,70,72,37,29,17],life:[77,63,31,25],retrospect:31,lifo:[54,63,71,59],suppress:48,tractreturn:6,ani:[0,54,56,57,17,18,60,62,63,65,66,67,69,70,71,72,74,4,34,58,42,50,59,5,21,77,6,24,7,8,28,29,30,82,10,25,11,46,12,13,35,80,87,48,1,32,43,89,15,37,84,90,16,83,33,41,92,94,22,51,38],"0x0000000100001ef7":16,unzip:4,dave:31,lift:18,child:[7,65],"catch":[56,36,51,15],pool_o:[81,9,77,22,79,2,8,92,27,75,85],"_m_ix86":51,emploi:63,type_fwd2:37,mps_alloc_pattern_ramp_collect_al:47,ident:[87,18,88,44,63,83,48,68,2,50,41,12],aix:60,gnu:[0,88,15,16,4,13],servic:[42,30,5,89,62,11,70,71,12,50],properti:[18,63,65,67,70,71,2,19,75,34,20,77,22,79,25,27,29,9,31,8,41,85,87,36,50,92,38,37,52],mps_lib_memcpi:[32,34],commerci:[39,30,5],mps_rm_const:[82,57],aim:[31,15],calcul:[67,34,89,35],publicli:[30,15],thrash:[30,31,62,67,70,72,74],aid:[82,50],vagu:58,anchor:31,spawn:15,seven:92,cons:59,mps_amc_apply_stepper_t:22,arenasetcommitlimit:6,mexico:31,c1999:[],tabl:[55,56,57,17,18,65,66,67,68,70,72,74,13,58,20,88,44,76,8,28,29,82,31,45,25,34,86,87,15,78,16,37,38],toolkit:31,cond:7,conf:[51,31,38],mps_thr_t:[82,70,94,37],symtab_s:[82,37],"1003fd328":13,disappear:[90,72,48,50],grown:15,mps_word_t:[82,87,17,48,37,16,33,13,28,34,29],op_env:16,incorrectli:[90,59],receiv:[30,82,16,57,5,60,89,11,37,90,7,50,13,35],suggest:[30,18,44,10,60,91,50,92,93,37],make:[0,39,55,56,17,18,54,62,63,65,68,53,70,40,72,74,4,13,58,42,59,5,21,44,22,49,24,25,88,29,81,30,82,10,50,11,46,48,34,35,86,36,32,43,89,15,84,77,78,16,33,41,71,52,94,37,51,38],transpar:[82,56,60,10,48,46,70,84,87],who:[0,10,15,30],complex:[30,59,62,70,11,15,46,16,65,41,51,72],split:[54,56,58,18,89,63,11,67,46,71,50,3,13],mps_mvt_free_siz:77,complet:[42,30,82,57,5,18,44,10,62,33,11,37,67,24,71,51,32,41,84,35,29],elli:[42,31,15],mps_fmt_adjust_fencepost_t:46,fragil:33,evid:[16,59],vvv:13,quentin:31,rail:54,kit:[20,4,86,5],fairli:[55,72],rais:35,refil:[84,94],ownership:43,refin:[42,24,57,72,15],gustavo:31,poolarena:41,protocolerror:50,mps_io_t:32,studi:[46,11,31],tune:[20,86,31,30,44,22,37,16,35,62],dylan:[17,5,83,6,25,11,15,68,51,8,41,18],char_bit:88,undesir:77,bewar:[84,16],mps_ap_trip:84,mps_lib_assert_fail:32,thu:[0,30,57,17,60,61,74,15,67,77,53,70,25,34,84],messeng:[30,31],thr:[82,94],inherit:[20,41,59,15,45],poolmrg:[26,83],contact:[39,20,82,5,8,48,91,84,79,78,16,40,25,92,4,94,27,29],greatest:18,thi:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,40,2,74,3,4,75,34,58,42,50,59,5,21,44,22,78,79,24,7,8,26,27,28,88,29,81,30,82,9,45,10,25,11,46,47,12,92,13,35,85,80,87,36,48,72,94,32,43,89,69,15,37,84,77,90,16,83,33,41,71,1,6,51,38],endif:51,lockstruct:43,programm:[0,30,59,54,60,62,88,11,90,65,77,53,71,15,41],jean:31,portabl:[39,31,32,15,71,48,33,13,37,51],arenasetsparecommitlimit:6,left:[50,57,18,1,10,6,25,89,62,15,48,33,2,74,13,34,29],arena_ld_length:6,protocol:[39,57,59,65,67,40,34,42,20,6,79,80,26,82,45,33,46,41,84,50,37,51,52],background:[18,45,6,43,69,29,51],just:[0,54,57,17,18,67,13,1,4,41,58,42,59,44,78,25,29,30,82,50,83,46,34,35,15,90,16,33,71,94,37,51,38],mps_sac_alloc_fast:12,shapiro:31,pool_create_v:[],orient:[42,54,31,60,62,15,41],bandwidth:[62,72],human:[3,13,21],ifdef:51,nowadai:[67,71],unbuff:92,poolcondemn:80,act_on_rang:18,previous:[17,59,43,90,25,26,13],easi:[82,18,22,11,15,37,67,16,4,94,35,51],interfer:29,had:[0,30,58,83,15,42,46,16,72,25,92,13,66,37],lumpi:36,define_class:41,fortran:[11,15],spread:[30,89,61],"0x1003f9ae0":16,board:31,henriqu:15,els:[0,42,8,16,51,25,84,37,29],save:[53,55,57,31,33,15,71,50],gave:[30,15],opt:4,applic:[39,54,59,62,68,53,71,74,4,77,23,29,30,31,32,11,89,15,90,16,33,38],"0x1003f9c18":16,preserv:[56,17,61,67,70,71,80],r_o:94,locu:42,pretest:[0,15],distanc:35,lcc:88,birth:77,"0x1003f99d8":16,obj_isfwd:[35,37],"0x000000010000ea40":16,apart:[7,11],linux:[39,43,88,16,8,4,94,51],measur:[58,31,62,71,33,34,29,17],overcompens:62,specif:[84,57,17,18,62,63,72,74,34,42,59,43,6,23,80,26,29,81,30,82,31,11,46,13,36,15,50,51],arbitrari:[41,6,35,48,66],bufferinit:80,hunt:31,manual:[0,53,56,59,54,61,62,1,66,40,80,74,19,75,42,20,77,23,79,24,8,81,30,82,50,11,46,12,92,84,39,85,15,33,71,38,37,52],mit:31,dep:51,"0x00000001003fb130":16,mps_pf_fri3gc:88,src_ld:87,colmerau:15,unnecessari:[53,30,17,25],underli:[57,25,11,90,71,50],www:4,right:[30,18,31,44,50,11,48,46,33,34,5,37,38],old:[53,54,57,58,59,60,61,62,63,70,72,74,84,88,6,24,25,30,45,34,35,87,15,50,37],mps_arch_s8:88,deal:[30,55,87,68,34,15,67,60,71,74,41,27],interv:[0,54,18,25,50,84,37,29],mps_arch_s9:88,maxim:[42,77,41],percentag:77,mmqa_test_funct:18,zct:[56,76],born:74,intern:[84,54,55,17,18,83,65,71,74,4,13,58,20,6,25,29,81,30,31,45,10,11,46,12,34,49,85,32,89,16,50,38],printer:[13,15],addrcomp:34,pain:[30,17],"0x0000000100003f55":[13,16],successfulli:[81,82,56,36,84,47,12,50,41,35,29,72],make_pair:37,mps_key_max_s:[77,75,28],insensit:15,cooper:[42,58,31,43,6,15,24,70,29],combat:8,bottom:[82,8,25,16,50,37],stronger:58,segmyseg:41,fox:31,arthur:31,subclass:[46,6,41,58],tempor:[20,77,50,19,84,75,38],track:[42,30,57,54,10,15,46,24,16,71,65,37,72],ucsc:31,morereturn:16,overcom:15,condit:[53,30,37,81,59,5,10,47,11,65,35,84,7,71,50,41,4,34,51],foo:[48,16,12,80,13,51],type_integ:[37,25],c99:57,fencepost:[54,56,60,10,46,1],core:[62,56,57,48],plu:[77,6,51,5],sensibl:80,bole:31,bold:30,someclass:41,pose:37,libsqlite3:4,confer:31,promot:[53,36,59,61,22,70,74,41],"0x7fff5fbff808":16,hsu:31,mps_frequenc:12,post:[0,54,36,62,90,25],"super":[46,41],gartner:15,proceed:31,chapter:[51,16,31,29,37],obj:[16,6,25,83,37,46,78,7,33,84,35,87],harlequin:[93,15],patchi:72,slightli:[72,6,50,17,25],simul:[68,31,15,50],felleisen:31,poolscan:[16,80],despair:38,frame_o:40,old_symtab_s:37,liber:94,commit:[84,82,57,45,10,6,62,71,12,80,34,37,29],sept:31,produc:[81,82,36,18,15,46,72,13,84,29],mps_key_pool_debug_opt:[92,27,75,28,1],encount:[10,13,11,33],curiou:13,"float":[53,54,59,61,65,69,71,74,51],encod:[58,18,21,67,68,69,70,72,13],bound:[0,56,36,58,18,60,62,63,15,68,16,71],soo:31,down:[0,54,17,18,70,71,72,4,42,88,6,7,32,29,30,10,46,12,35,15,16,50,37],attrincr_rb:34,"0x0":16,formerli:[88,57,25],lieu:42,wrap:[67,30,69,46,33],opportun:[46,36],cafeteria:71,storag:[0,53,56,57,58,18,60,62,63,66,67,68,71,72,74,59,77,24,29,30,31,41,15,50],kakkad:31,accordingli:[3,15,32],suffici:[53,18,77,89,15,70,41,37],mps_class:35,mps_t_word:[34,51,88],config_var_:51,support:[0,39,56,57,58,18,54,62,48,66,70,40,72,74,3,4,75,41,42,59,43,77,6,78,79,24,50,8,27,30,82,9,31,10,25,46,47,12,92,34,35,85,86,87,32,88,89,15,37,84,90,33,71,52,94,22,51,38],why:[0,30,16,36,18,32,90,7,25,34,84,38],avail:[39,54,57,58,18,62,65,68,70,71,72,74,4,84,59,5,44,32,29,81,30,10,25,11,13,89,15,77,16,50,94,51],width:[34,88,59,51,50],reli:[30,57,17,60,10,90,48,77,24,70,13,94,84,38],editor:[93,15],fraction:92,acknowledg:[20,93],overhead:[42,30,17,18,77,6,70,11,65,68,24,59,50,41,62,38],btfindresrang:18,lowest:[7,59,18],head:[46,84,61],traceid:34,toward:[30,71,18],form:[0,54,56,57,18,60,61,62,63,65,66,67,53,70,71,72,74,5,7,8,28,10,80,11,48,13,89,15,16,50,92,94,37,51],offer:[53,15,67,46,71,74],forc:[30,13,37,15,33],poolno:80,mpscmv:75,somehow:15,multiprocessor:31,hear:38,dead:[53,54,56,57,17,59,60,61,62,63,65,69,40,72,42,44,22,79,80,47,84,36,16,37],heap:[53,54,56,57,58,59,62,65,66,70,71,72,42,22,80,29,30,82,31,11,35,89,15,16,33,37],old_symtab_root:37,oopsla:31,hashtabl:25,"true":[0,54,59,48,33,84,18,6,7,8,26,29,81,30,25,41,35,87,34,90,50,92,37],cached_count:12,reset:[87,18,6,25,34,13],"throw":11,attr:[10,6,34],rattl:30,maximum:[42,63,36,18,77,6,51,46,12,50,34,75,29],tell:[0,39,55,87,21,74,82,15,42,54,53,51,25,84,37,29,72],mps_pool_t:[81,37,1,9,85,79,77,22,8,35,84,46,12,74,92,27,75,25,2],tucson:31,absenc:[32,83,46],autoconf:4,emit:[13,59,51,80],mpscsnc:79,accessset:34,uncoop:[62,31],featur:[0,56,59,48,70,71,72,1,13,20,6,25,29,82,45,8,11,46,22,84,15,37],alongsid:[41,56],mps_word_width:[51,18,88],classic:[30,4,71,24,66],utc:[13,16,31],"abstract":[42,30,31,18,43,6,45,15,54,46,7,51,34,41,29],consciou:31,decrypt:33,mps_class_t:[81,9,79,77,22,8,46,2,74,92,27,75,85],"__line__":46,postscript:[57,71,11,15,68],exist:[0,56,17,18,62,48,71,3,13,42,6,24,26,28,30,46,12,41,35,36,34,50,93,37],darko:31,strive:[6,87],mps_root_create_fmt:82,indirect:[55,56,17,5,65,69],pirinen:[42,58,31,6,65,67,46,70,71,93],sticki:[63,71,31],assembl:[31,51,17,15],"_io":[48,65],encrypt:33,testor:43,when:[0,53,55,56,57,17,18,54,60,61,62,63,65,66,67,69,70,71,2,74,3,4,75,34,58,42,59,44,22,78,79,24,50,8,27,28,29,30,82,9,10,25,11,46,12,13,35,85,80,87,36,48,72,94,32,89,15,37,84,77,90,16,83,33,41,92,1,6,51,38],lockclaimrecurs:43,mps_begin:46,poolstruct:80,accessread:34,jone:[30,56,18,31,21,60,83,11,65,70,72,80,3,93],fmt_scan:82,test:[0,53,17,18,60,62,68,13,4,41,88,44,7,25,29,30,45,10,34,87,15,84,78,16,50,92,37,51,52],mpsacl:29,presum:[6,43],telemetri:[20,87,17,44,10,32,80,70,48,37,16,25,4,13,29,52],unlimit:[30,7],mps_class_mv2:[],jonl:[93,58],node:[53,55,57,61,67,70,71,50],matur:[10,22,31],notif:[83,50],intend:[18,60,2,34,43,77,22,7,80,29,82,9,10,33,41,35,87,32,15,50,94,37,51,72],prot:[6,51],benefici:18,felt:30,stringid:13,mps_debug_option_:[92,27,75],intens:[56,31],intent:[18,48,70,50,13,34],consid:[53,30,36,17,18,54,61,6,63,11,59,71,80,50,84,81,35,62,38],occasion:17,mps_build_ac:88,russo:31,younger:[53,55,57,61,65,72],event_kind:13,my_malloc:30,longer:[0,54,56,57,18,62,63,71,72,74,34,24,8,26,81,30,10,80,11,12,41,35,36,15,90,93,37],furthermor:[46,82,17],home:15,arenainit:6,phantomrefer:[72,74],blockrang:50,candid:[57,35,18],iwmm:31,phong:31,ignor:[82,57,17,47,65,24,7,72],gracefulli:60,config_:51,time:[0,39,55,56,57,17,18,60,62,63,65,66,67,68,53,70,71,72,74,4,34,42,59,5,21,44,22,78,24,8,28,29,30,82,31,10,25,11,46,47,12,13,35,87,36,48,1,32,43,89,69,15,37,84,77,90,16,83,41,92,52,94,6,51,38],push:[71,63,40,59,85],mps_fmt_fwd_t:[54,35,37],offsetof:[8,33,37,16,80,84,25],backward:[53,6,18],strong_buckets_ap:25,chunksiz:13,rom:[62,72],chain:[0,53,56,58,59,54,61,62,63,67,69,71,2,1,44,22,25,27,28,29,41,86,36,89,37,52],globals_root:37,skip:[84,54,86,17,18,22,25,37,79,16,71,2,8,27,35,9],mps_:48,global:[30,80,17,43,6,74,82,37,86,16,71,72,25,41,4,93,34],ost:31,invent:[53,24,58,15],osi:5,cacm:31,signific:[53,30,59,18,77,32,6,89,11,67,70,74,92,13,62],addrcopi:34,dalton:31,milo:31,pldi:31,osf:[4,88],hierarch:31,decid:[42,30,36,17,18,80,11,84,46,71,12,74,57,34,37,29,38],middl:[82,57,62,65,16,72,50,41,84,29],depend:[53,50,56,57,17,18,54,63,48,67,68,69,40,72,74,19,75,13,20,59,88,77,6,79,7,8,27,29,30,82,9,45,10,25,46,92,22,34,85,86,87,36,89,15,78,33,41,71,52,94,37,51,38],zone:[42,6,17],graph:[53,55,56,57,61,65,67,70,71],cornel:31,intermedi:[77,17],w3ppmv:88,rel:[30,56,58,15,70,71,12],environment:32,yve:31,rightmost:18,decis:[36,17,18,32,78,59,40,37],jvm:15,lasttract:6,henderson:31,brown:31,sourc:[39,59,13,4,41,20,5,21,6,8,29,30,31,45,32,50,46,34,87,15,78,33,51,38],mps_sac_t:12,string:[84,30,36,17,31,21,32,70,15,68,16,2,65,25,13,28,37],barrett:[93,31],blumof:31,"1003fe000":13,unfamiliar:64,feasibl:46,broadli:[63,35],bruggeman:31,octob:31,word:[53,56,57,17,18,61,62,65,67,70,71,72,73,74,13,58,59,91,8,82,25,33,46,48,34,35,85,84,16,50,37,51],exact:[54,55,57,17,59,62,48,70,71,72,74,34,88,22,79,8,27,82,10,25,84,37,38],seemingli:16,cool:[57,10,66,68,16,72,4,13,51],"0x1003f9af8":16,format_return:46,"0x1003fe278":16,administr:[11,15],level:[39,57,59,62,65,66,67,68,71,72,74,13,88,6,24,7,8,30,25,11,46,34,15,16,50],did:[30,37,29,15,25],die:[53,36,17,59,22,65,16,72,25],gui:31,henri:[70,31],metadata:[25,8],iter:[17,18,45,6,15,50,37],rusag:32,magnet:58,item:[6,71,21],"__time__":21,quick:[54,63,89],recogniz:58,dip:46,round:[58,10,89,11,71,12,25,92,84,37,29],dir:51,o1algc:88,prevent:[0,57,17,31,6,90,78,24,70,12,8,34,72],edelson:[71,31,15],slower:[30,62,57,58,18],attrbuf_alloc:34,sign:6,oldspac:[60,54],colin:31,cost:[55,56,60,62,63,67,70,71,2,84,42,5,44,24,25,31,50,12,13,15,77,33,37,51],unprotect:[82,56,8],maximum_s:[77,75],relocat:66,port:[32,15,90,25,37,51],leaf_ap:25,addr:[81,50,37,34,6,8,83,35,84,46,16,25,41,13,28,22,29,87],malo:31,texa:31,uniform:[59,18,80],current:[0,39,57,58,18,54,68,70,40,72,74,4,41,42,59,43,6,8,27,88,29,82,50,11,46,34,21,15,13,33,71,94,51],"0x00000001003f9730":16,arenafinish:6,suspect:16,mps_os_i5:88,va_list:[81,46,41,84,29],tolimit:18,failobj1:41,lockclaimglob:43,deriv:[56,57,58,60,32,6,65,24,70,48,50,34,41],increasingli:47,vector_:[37,33],guardian:[41,83,31],gener:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,67,53,70,40,2,74,4,75,41,58,42,20,59,43,44,6,78,8,26,27,29,30,82,31,45,25,11,86,46,47,12,34,35,80,36,48,72,89,15,37,84,90,16,33,71,94,22,51,52],"1003fa7d0":13,integer_:37,disclaim:5,consult:[84,32,6,17],explicitli:[39,53,48,63,15,65,41,34,13,29],modif:[57,18,5,15,46,24,71,72,4],address:[0,54,55,56,17,18,60,61,62,63,65,66,67,68,69,70,71,72,74,13,58,59,44,6,50,8,28,29,81,30,82,45,10,25,12,22,34,35,87,48,89,15,84,16,33,92,94,37],failnoteseg:41,ratio:77,along:[57,61,25,89,80,10,34,41],lii6gc:[4,88],wait:[0,39,6,29,25],epdldebugpoolclass:41,mps_os_ia:88,shift:[34,51,17,18],steffen:31,queue:[0,57,17,62,25,83,67,90,71,72,50,52],weak_array_:8,attrpm_no_read:34,behav:[30,57,11,48,68,47,41],thirti:31,extrem:[70,71,51],bob:31,rafael:31,reclaim:[0,39,56,57,54,61,63,65,67,53,70,40,72,74,75,76,42,77,22,78,79,24,8,27,81,82,9,45,10,25,46,92,34,85,80,1,15,84,90,71,37,38],macintosh:[51,31,88],mps_rank_t:[82,79,72,8,34,28],chalmer:31,semant:[32,6,56,41,15],refsetuniv:42,regardless:[29,50],prerequisit:[4,86],grunwald:[63,31],extra:[81,30,56,17,18,6,65,67,24,80,84,62,29],pentium:56,modul:[42,20,30,5,18,21,32,6,43,11,15,53,45,50,65,74,41,49,51],c1990:[],prefer:[17,6,24,34,28,4,58],reig:31,type_uniniti:84,visibl:[48,59,29],marker:[54,82,59,60,37,40,35],prompt:[54,90,15,24,72,8,4,29],prei:74,sigbu:[16,94],memori:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,71,72,73,74,4,34,58,42,20,59,5,88,44,22,23,24,50,91,8,26,29,81,30,82,31,45,10,25,11,86,93,46,47,12,13,35,14,80,87,36,48,1,32,89,69,15,37,84,90,16,33,76,52,94,6,51,38],wherev:34,univers:[42,31],visit:[53,82,58,22,16,4,35,29],todai:[30,71,15],perl:[53,54,11,15],cmp_t:[87,25],live:[0,54,55,56,57,59,62,63,67,53,70,72,74,44,22,78,24,8,30,82,9,31,10,25,47,12,80,36,1,69,90,16],handler:[16,6,68,7,74,13,94,35],mps_key_args_end:28,scope:[41,71,17,15],prev:84,trishul:31,unsaf:[90,71,29],idempot:13,afford:[42,30,17],peopl:[0,30,57,62,64,15,91,70,71,93],claus:5,brooksbi:[39,31,18,21,6,43,83,46,7,80,50,26,3,93,51],scholten:31,visual:[39,57,88,15,4,51],appel:[42,58,65,31,74],olivi:31,prototyp:[51,18,15],examin:[42,56,17,18,61,24,87,71,41,37,29,58],alexand:31,mps_pool_check_free_spac:1,effort:[10,62,65,29,74,51],easiest:46,behalf:30,logarithm:[51,88],judi:93,graphic:[93,51,15,58],dissimilarli:59,poolam:[10,18],car:[16,37,31,33],prepar:[0,36,18,16,12,80,84],pretend:11,uniqu:[42,58,31,13,34,51],imper:15,descriptor:[54,6,80,50],minimum:[54,57,17,18,77,74,46,72,50,92,51],can:[0,39,55,56,57,17,18,54,60,61,62,63,65,66,67,68,53,70,40,72,74,4,34,58,42,59,5,21,44,6,78,76,24,50,91,8,27,28,88,29,30,82,9,31,10,25,11,46,12,92,13,35,80,87,36,48,1,43,89,69,15,84,77,90,16,83,33,41,71,94,37,51,38],inadequ:[71,11],findshortresrang:18,purpos:[54,57,58,62,71,2,4,75,13,5,43,6,8,29,30,31,45,50,12,22,41,35,15,33,94,37],laughter:13,traceabl:[6,80],cisc:63,boilerpl:41,strother:31,mps_arena_t:[0,59,60,48,2,75,77,22,79,8,27,28,29,81,82,9,83,46,35,85,87,36,90,92,94,37],encapsul:[87,6,74,67,71,72,25,29],stream:[54,58,10,32,50,70,37,16,80,25,4,13,29,52],predict:[30,77,36,17,18,44,63,11,60,59,71,92,57,84,75,29],winston:31,agent:42,limitreturn:[18,50],heard:30,critic:[84,20,57,17,31,43,10,62,65,49,46,16,33,41,13,66,37,52],abort:[32,13,16,37,33],tracesetempti:6,recycl:[53,54,57,17,59,62,63,65,70,71,72,1,42,20,22,23,24,80,29,82,11,89,15],mps_pf_xci6ll:88,unfortun:[30,11],occur:[0,54,56,57,59,60,62,65,67,68,69,70,71,72,74,34,24,29,10,11,47,41,87,84,37],verlag:31,alwai:[0,54,58,59,63,65,67,68,53,71,72,1,34,88,77,25,26,29,30,82,10,46,47,48,13,35,89,16,33,92,37,51],differenti:72,exit_cod:82,multipl:[39,53,56,59,54,60,61,1,66,67,69,70,71,74,84,42,18,43,6,8,29,30,45,46,47,12,41,85,87,15,90,94,37,52],instant:[81,54,29],mps_frame_t:40,reg_root:[82,37],mps_telemetry_intern:[13,70],write:[0,56,57,17,60,83,65,67,68,13,72,74,19,4,34,58,42,20,5,8,29,30,82,9,31,32,11,46,48,41,15,84,90,91,3,33,71,94,37,38],vital:[58,10,65,33,84,34],anyon:30,pure:[39,53,56,25],familiar:[42,37],parameter:51,predictor:31,controlalloc:[6,41],poolclassepvm:18,unlucki:90,product:[39,53,86,17,5,21,10,22,35,46,16,51,27,4,59,13,29],proc:[31,21],snc:[19,38,40,79,20],book:[93,11,51],csl:31,max:6,clone:31,make_t:25,usabl:29,jacqu:31,membership:[6,50],mad:31,"1993a":[68,72],mai:[0,39,55,56,57,17,59,54,60,62,63,65,67,68,53,70,40,2,74,4,75,34,58,43,77,22,78,79,24,50,8,27,29,81,30,82,9,31,10,25,11,47,12,92,13,35,85,80,87,36,48,72,94,32,89,69,15,37,84,90,16,33,41,71,1,6,51,38],underscor:48,allocat:43,data:[39,53,56,57,17,18,54,60,62,63,65,66,67,68,69,70,71,72,74,34,58,59,5,43,6,24,7,25,29,30,82,9,31,45,10,50,11,46,47,12,13,1,32,15,84,16,33,41,94,37,38],grow:[0,30,36,77,62,71,50],man:[62,18],mps_key_mvff_arena_high:[92,28],mps_fmt_class_t:35,stress:[4,50],mps_arena_:[60,48],practic:[42,87,57,18,31,11,48,67,24,33,13,37,58],findshortresetrang:18,mpsio:[32,13],explicit:[54,56,58,30,11,15,46,41],mps_arg_:[81,64,84,28,37,29],mps_root_create_t:[82,37,25],pooltrivbufferinit:80,inform:[0,53,56,57,17,59,54,60,62,64,65,67,68,69,70,74,13,58,42,5,21,6,23,24,91,80,29,31,32,50,11,46,41,35,36,16,33],"switch":[17,25,15,37,33,4,27],preced:[89,28],combin:[39,30,57,31,88,89,6,50,11,15,42,67,46,24,12,74,4,51,72],block:[0,39,55,56,57,58,59,54,60,61,62,63,65,67,53,70,40,2,74,75,84,42,20,44,6,78,79,24,50,25,27,28,29,81,30,82,9,45,10,8,11,46,47,12,92,13,35,85,87,36,48,72,32,89,15,37,77,90,16,33,71,1,22,51,38],finddelet:50,csd:31,callabl:6,talk:46,tbl:[87,25],approx:42,"_ts_":46,schwartz:[67,70,31],anticip:[30,74],softrefer:[71,72],approv:[5,50],ymmv:39,cutt:31,mps_fmt_destroi:[35,37],thr_o:94,size_t:[18,48,1,75,84,43,77,22,8,28,29,30,82,32,25,46,12,34,35,85,36,16,33,92,94,37,51],equip:31,still:[53,56,17,18,62,63,70,73,74,4,42,59,43,78,24,25,29,30,80,11,46,13,35,87,15,90,16,50],ieee:31,dynam:[53,30,56,57,59,31,6,63,89,90,65,66,69,70,71,15,41,62,72],"0x000000010006631f":16,conjunct:[56,51,43],mps_arena_start_collect:29,group:[93,51,15],mps_key_align:[92,28],concis:[13,50],polici:[39,53,56,57,17,59,54,63,65,67,70,71,74,58,18,77,6,81,31,48,41,89,92,52,37,12],zendra:31,bekker:31,tort:5,window:[39,53,58,43,32,62,88,69,51,8,4,94,34,29],mail:[18,6,46,91,41,51],main:[30,82,56,57,58,31,89,62,50,70,48,68,24,16,71,72,74,41,37,51],message_o:0,confin:[34,11],non:[57,18,61,62,65,70,71,72,1,3,34,42,59,5,43,6,50,25,26,27,29,82,31,45,10,8,41,35,80,87,32,15,33,37],free_templ:1,recal:37,halt:[53,59],halv:70,mmqa:18,mps_arena_walk:46,cbsblocksiz:50,jame:31,alist:10,mayuseinlin:50,initi:[84,54,57,17,18,63,67,70,71,34,43,44,6,80,29,30,82,25,12,41,50,37,51],tucker:[93,31],therebi:[53,18],half:[70,18],superset:42,provision:42,discuss:[42,54,21,11,67,46,90,91,41,37,51],nor:[56,62,63,67,71,12,74],introduct:[39,20,80,37,41,18,21,6,45,86,23,46,7,51,50,26,3,4,34,42],critiqu:31,obj_scan:[78,37,35,33],term:[39,54,55,56,57,17,59,60,61,62,63,65,66,67,68,53,70,71,72,73,74,4,58,5,77,30,11,46,69],workload:31,name:[58,18,60,63,65,13,80,4,41,42,59,21,8,7,32,28,30,45,10,25,46,48,34,35,88,15,50,51],lewi:[31,15],perspect:[31,8],didn:[53,46,59,15],revert:42,type_vector:33,buckets_pool:25,separ:[55,57,17,18,60,62,63,48,68,71,72,4,34,42,6,24,25,29,30,11,46,12,41,85,50,92,51],mps_addr_return:83,massachusett:31,sigusr2:94,januari:[42,31],mps_fmt_put_fencepost_t:46,confid:[24,27,25],compil:[39,54,56,57,17,18,60,62,63,65,66,68,69,70,71,72,74,3,4,84,58,5,21,24,30,82,31,10,13,86,88,15,16,33,37,51],everyth:[82,13,37],domain:[30,15],replai:80,mps_args_begin:[1,9,77,22,8,37,79,2,25,92,27,75,28,35,29,85],dialect:15,moher:31,replac:[54,60,8,15,35,46,78,25,41,37],individu:[87,57,18,6,47,74],continu:[39,30,63,57,59,18,89,33,11,15,67,70,24,7,65,25,50,37,29,72],lookasid:[68,70,59],dramat:[44,53],"0x00000001003f9b70":16,redistribut:5,replay:80,"0x00000001003f9bc8":16,significantli:[42,30,89,18],poolreadi:6,year:[57,31],operand:[34,16],happen:[42,30,57,17,72,10,62,25,11,37,84,46,16,12,8,41,81,94,35,61],dispos:[35,15],mps_args_add:[1,9,77,22,8,37,79,2,25,92,27,75,28,35,29,85],conting:50,shown:[70,67,90,16,25,13,84],myformat:4,jackson:[93,31],space:[84,54,56,57,17,59,60,61,62,63,65,68,70,40,72,74,75,34,58,42,44,6,24,25,26,29,30,31,10,80,11,46,12,92,13,85,87,36,1,15,77,16,83,50,71,37,51],profit:5,protocolsomeclassguardian:41,rankfin:34,mps_cached_count:12,"0x7fff5fbff174":16,profil:[31,88,44,70,77,16,13],underwrit:[46,1],toolchain:[4,88],rational:[61,34,51,45],mps_arch_i4:88,mps_alloc_pattern_t:47,mps_arch_i6:88,mps_arena_expos:29,correct:[39,50,57,45,43,10,6,8,70,90,84,24,33,40,25,41,27,88,35,62],mps_arch_i3:[51,88],undead:[69,56,63],earlier:[0,56,71,58],"goto":[41,17,18],newsiz:50,thirdli:[6,15],million:[44,37],seventh:37,argv:[82,16],mps_key_mvt_frag_limit:[77,28],mps_message_t:[0,83,90,36,25],california:31,lab:31,carl:31,org:[4,15],"byte":[53,57,58,18,62,64,67,68,69,70,71,1,75,84,59,77,6,80,29,82,32,33,46,12,34,85,89,15,50,92,37],argc:[82,16],sigxfsz:[16,94],boehm:[53,30,82,57,58,31,65,90,15,93],care:[84,54,82,17,59,35,25,41,34],mps_key_min_s:[77,28],reusabl:41,kaufmann:31,wai:[84,17,18,62,65,67,70,72,74,4,41,42,5,21,6,78,24,8,29,30,82,10,25,11,46,47,34,87,32,43,89,15,90,16,37,51,38],mps_word_shift:[51,18,88],badli:[67,89,70,11,8],prescrib:71,frequenc:[24,12],mps_pool_class_mvff:[],synchron:[0,30,56,57,58,31,70,59,71,12,84,72],mps_size_t:[92,75,85],refus:[6,29],recov:[30,47],turn:[42,53,63,36,1,25,46,16,71,80,33,57,13,35],tlb:70,place:[58,62,65,70,71,72,74,84,77,6,8,29,30,82,25,11,13,35,87,36,15,90,16,37,51,38],unwis:46,principl:[42,51,31],imposs:65,frequent:[53,20,37,17,30,22,15,23,24,16,74,35,29],first:[0,53,57,17,18,54,61,62,63,65,67,71,1,19,4,75,41,58,20,59,88,44,6,23,24,25,26,28,29,81,31,8,83,46,12,13,35,87,36,89,15,84,77,16,50,92,94,37,51,38],oper:[0,39,56,57,17,18,54,62,65,66,67,68,53,70,71,72,74,4,34,58,42,50,59,5,43,77,6,23,24,7,8,29,81,30,82,9,31,10,25,11,46,12,13,35,87,48,88,89,15,84,16,33,94,37,51],findlast:50,suspend:[42,6,94,35,43],written:[39,56,57,17,18,70,72,1,13,42,6,8,30,32,11,41,89,15,78,50,93,37,51],directli:[53,82,56,58,5,21,62,90,15,66,84,24,7,72,74,41,13,34,51],subrang:18,carri:[87,74,59,33,90,80,25],onc:[31,30,63,57,17,18,46,8,15,42,48,39,71,12,65,25,34,84,41,29,72],arrai:[54,55,57,58,18,63,64,48,68,71,6,65,25,28,82,8,12,22,34,35,36,15,94,37],resultreturn:16,bufferempti:6,supernam:41,acquisit:90,act_on_range_high:18,"long":[0,39,17,18,48,67,53,71,72,74,84,42,59,88,77,22,24,25,28,29,30,9,31,32,33,83,12,34,87,36,16,50,37,51],symmetri:18,xci3gc:[4,88],fromlimit:18,ring:[6,57,34],mps_arena:[83,29],open:[31,20,17,18,54,32,25,78,15,39,90,50,8,4,5,29,38],predefin:[37,51],size:[53,54,55,56,57,17,18,60,61,63,65,66,67,69,71,72,73,74,75,13,58,59,43,44,6,79,50,8,27,28,29,30,82,9,45,10,25,11,86,46,47,12,34,35,85,80,87,36,48,1,32,88,89,15,37,84,77,16,33,41,92,94,22,51,38],mps_build_sc:88,given:[42,30,55,56,1,59,60,32,62,50,83,82,65,67,46,12,25,41,13,28,37],unlink:70,capac:[0,30,36,44,22,27,37,62],pad1_:[16,37],fmt:[9,22,1,79,2,8,27,35],anderson:93,gen_param:36,necessarili:[57,34,70,37,16,41,13,29],draft:[46,6,51],yip:[62,31],circl:15,handbook:[93,11,31],white:[42,53,55,57,17,60,6,65,67,70,71,80,26,93,35,58],conveni:[0,30,82,57,18,10,6,33,32,15,42,67,50,25,41,28,37],chilimbi:31,mps_mv_size:75,mps_pool_create_v:81,mps_fmt_scan_t:[82,17,37,71,33,35],demer:[53,31],mps_res_io:10,especi:[30,56,17,60,74,65,46,70,72,50],resetrang:18,copi:[53,54,57,17,18,60,62,63,65,67,68,69,70,71,2,74,19,4,84,58,42,20,5,44,6,24,25,26,27,30,9,31,10,46,47,48,41,35,36,72,32,15,37,33,1,22,38],specifi:[0,39,57,18,54,1,65,53,2,74,75,6,78,79,8,27,28,81,30,82,9,10,25,46,47,12,22,13,35,85,80,36,90,50,92,37,38],ebi:31,blacklist:58,weak_array_t:8,enclos:[54,57,48],mostli:[17,18,62,63,48,40,2,19,4,20,44,6,25,27,30,9,31,10,11,46,47,22,34,36,15,16,33,71,37,38],floppi:[62,58],domin:30,holder:5,mps_pool_create_k:[81,1,9,77,10,22,8,37,79,2,25,92,27,75,35,85],serv:[77,6],wide:[30,56,36,77,22,63,15,24],amcfix:17,subexpress:84,kolodn:31,balanc:[62,59],mpsavm:[48,37,29],were:[84,54,56,57,18,63,67,70,40,2,13,88,44,22,25,30,82,46,12,41,35,87,36,15,50,94,37],posit:[81,82,87,59,18,25,64,48,35,33,34,37],server:[62,31,15],transport:[70,71],seri:[67,54,13,56,24],pre:4,analysi:[0,42,82,18,31,60,22,37,59,72,13,35],sai:[42,30,32,62,74,11,35,84,70,71,72,25,4,34],look:[0,54,57,17,18,61,72,13,6,24,25,28,31,10,8,11,41,35,87,84,78,16,33,51,38],obj_empti:[16,37],anywher:30,dash:25,"1992a":71,nickola:31,"1992c":[60,70],"20g":16,deliv:[15,21],ravenbrook:[39,4,91,5,93],fp_pattern:46,repack:31,sat:[13,16],buffercr:80,engin:[42,15],techniqu:[39,53,56,57,17,59,61,62,63,67,68,71,72,58,42,20,44,6,23,24,30,31,11,41,89,15,33],advic:[86,16,12,29],scanstat:[26,34],destroi:[81,30,82,56,36,18,60,80,83,15,37,84,77,71,12,65,1,13,35,29,72],"0x1003fa7d0":[13,16],note:[0,53,56,57,17,18,54,60,62,65,67,68,70,40,72,73,4,13,58,42,59,88,44,22,78,24,50,25,27,28,29,81,30,82,9,31,45,10,8,46,47,12,92,34,35,80,87,36,48,32,89,15,84,90,33,71,94,37,51,38],ideal:[9,44,62,11,65,72,41,17],take:[84,54,57,17,18,63,65,70,71,80,41,42,50,59,77,6,79,24,7,25,27,28,29,81,30,82,9,10,8,11,46,12,22,13,87,36,48,89,15,90,16,33,92,37,51,38],advis:[92,5,50],"0x000000010001287d":16,interior:[56,57,58,65,33],unfix:[52,33],noth:[42,36,43,34,1,68,51,25,92,13,75,37,29,38],wirf:31,begin:[42,54,57,18,21,10,80,89,65,48,46,67,70,71,51,61,4,84,29],sure:[30,55,46,16,71,33,37,51],tospac:[54,71,70,57,61],norman:[60,31],trace:[53,56,57,17,59,62,63,65,67,70,71,72,34,58,42,6,23,24,80,29,82,31,45,83,13,35,16,33,37],normal:[0,55,57,17,48,71,72,74,84,43,77,24,7,8,29,25,46,34,87,13,90,41,51],buffer:[84,9,18,32,6,70,65,68,59,71,80,92,34,94,13,58],friedman:[60,31],enter:[16,71,59,74],compress:[71,57],clearer:34,eclect:15,poollo:18,egc:[4,88],wire:[62,74],tract:[6,17,45],pair:[50,56,58,18,88,25,16,33,4,37],neatli:30,paulo:31,mps_alloc_pattern_ramp:47,spector:93,perceiv:[0,15],synonym:[57,58,18,15,71,74],proud:13,quantiti:[53,30,58,62,64,66,70,74],runtim:[31,17,15,37],pattern:[20,56,36,59,30,89,63,11,87,54,46,47,40,72,1,84,52],senior:93,mrg:[26,83],review:[31,17,18,37],mrb:60,uncontrol:[32,13],messageempti:83,mps_amc_appli:22,show:[30,44,6,24,16,25,13,41],mps_mvff_free_siz:92,maint:51,infant:[53,65,31],merit:46,concurr:[39,54,57,58,31,67,90,72,74,41],overlarg:12,permiss:[84,35,15],hack:18,threshold:6,obj_delet:[25,87,8],cbschangesizemethod:50,ground:72,slot:[54,41,84,8],onli:[39,53,55,56,57,58,18,60,61,62,63,65,66,67,69,70,40,72,74,34,42,50,5,21,77,6,78,79,24,7,8,27,28,29,81,30,82,9,10,25,83,46,47,12,13,35,80,87,48,1,32,43,89,15,37,84,90,16,33,41,71,94,22,51,38],slow:[0,30,17,63,70,15,46,16,71,12,29],slop:46,fenc:[46,54],pointer:[0,54,55,56,57,17,18,60,61,62,1,65,66,67,69,70,71,72,74,84,58,42,50,59,88,6,78,79,24,7,8,27,29,81,30,82,9,31,32,25,11,46,12,34,35,85,80,87,36,48,89,15,37,90,16,33,94,22,38],"0x7fff5fbfef2c":16,transact:31,activ:[42,30,56,57,59,43,6,62,15,54,69,71,65,63,37,29],behind:[42,13,57,2,25],z80:18,luc:31,black:[42,53,57,58,45,60,65,67,70,71,80,35],btfindshort:18,sigusr1:94,petrank:31,analys:36,wilei:31,overwritten:[60,24,16,72],moreau:31,nearli:[84,62,17,65,37],variou:[20,82,37,17,18,21,30,50,62,15,23,46,33,4,34,51],get:[0,57,17,18,61,68,71,74,4,84,42,44,22,8,29,30,10,25,83,46,12,41,86,36,89,16,33,37,51],genera:31,mung:51,clang:[39,4,16,88],secondari:[51,31],cannot:[0,55,56,57,18,65,66,67,69,70,71,72,34,42,59,6,24,50,25,27,29,30,10,8,11,46,47,48,41,89,84,90,33,37,51,38],murali:31,freestor:[54,66],eventrep:80,mps_io_writ:32,requir:[0,53,56,57,58,18,54,60,61,62,1,65,67,70,71,2,74,75,13,59,21,77,6,79,24,50,8,27,28,29,30,82,9,45,10,25,11,46,34,35,85,80,87,72,32,43,89,15,37,90,91,83,33,41,92,94,22,51,38],ssb:71,reveal:[16,59,25],discontigu:59,arenaclamp:6,seldom:68,borrow:46,yield:74,hash_t:[87,25],joker:13,tillotson:93,"0x7fff5fbfef28":16,roger:31,aris:[54,56,35,5,33],though:[17,18,62,90,15,69,16,51,74,35,29],scott:31,where:[84,54,55,56,57,17,18,61,62,63,65,68,70,13,72,74,4,41,50,59,21,6,49,24,7,8,29,30,82,83,25,11,46,12,34,35,87,36,48,43,89,16,33,71,94,37,51],mps_key_mvff_first_fit:[92,28],summari:[42,6,80,17,50],kernel:72,ams_alloc:10,highest:[29,18,72],lasttractbas:6,mps_formatted_objects_stepper_t:[71,35],closurep:50,symtab_root:[37,25],zaphod:18,tape:58,lnc:31,concern:[42,30,60,62,11,70,16,72,50,37],infinit:62,checkl:7,detect:[56,59,63,65,67,72,1,84,78,8,29,30,82,45,25,11,46,12,41,90,16,50,37,51,38],"0x1003cb958":16,parent:[61,65,7,40,34,41],mps_sac_flush:12,mps_telemetry_filenam:[32,13],checkd:7,enumer:[34,71,50],"0x000000010007b14a":16,label:[13,70,48,52],hist:[42,18,21,6,43,83,46,7,80,50,26,3,41,51],palimpsest:74,enough:[59,30,89,37,58,18,54,77,10,50,11,35,16,12,32,13,63,34,29],between:[0,53,55,56,57,17,54,62,65,66,67,68,71,72,74,4,84,88,77,6,24,25,28,29,30,31,32,33,11,46,12,22,41,80,36,48,90,50,37,51],"import":[84,30,82,17,18,44,33,70,15,37,48,24,7,71,65,25,13,50,34,72],checku:7,across:[57,65,50,92,4,51],dybvig:[72,31],spars:[55,59,65,72,74,15],august:31,amort:50,mps_arena_extend:29,mps_build_:51,comp:15,tarditi:31,style:[41,80,17,15,18],cheap:[53,56,89],blame:30,cycl:[53,54,57,59,44,8,65,67,70,71,15,74,29],sparc:[4,18,88],spare:[54,45,6,11,71,29],inflex:[70,11],uncondition:90,shortag:[94,11],come:[37,18,6,50,11,62,15,35,68,56,65,8,13,4,29],caar:16,reaction:13,unrel:16,mono:15,region:[30,59,31,54,80,15,16,71,72,33,41],mps_var_df:51,contract:[6,5],retir:51,audienc:13,saguaro:57,coucaud:31,mani:[39,54,55,56,57,17,18,62,63,65,66,68,71,72,74,13,58,42,59,77,24,25,29,30,82,32,11,12,41,87,89,15,84,90,16,93,37,51,38],unstructur:9,mann:[6,93],bitset:[34,58],nettl:[72,31],bufferpool:10,undocu:[92,94],color:[53,57,58,60,65,67,70,71],overview:[39,20,86,42,18,21,83,6,43,11,23,46,45,50,3,41,37,51],inspir:15,period:[30,56,24,47,71,37,29],dispatch:[50,37,17,15,25],mps_class_mv_debug:[75,28,1],duti:15,exploit:[77,22,17],qin:31,anti:41,exclud:[32,4,58,18],sentinel:6,constant:[82,57,18,88,10,50,65,46,16,48,32,51,72],poll:[0,6,45,25],poli:41,damag:[62,5],ultim:6,clarif:51,coupl:[30,37],resort:25,invert:[65,18,15,74],feldt:93,invers:[53,18],fixabl:80,mark:[53,54,57,17,18,61,62,63,65,67,69,70,71,74,19,58,42,20,24,25,26,27,31,10,80,13,36,1,15,93,38],klauser:31,workshop:[31,88],sparecommitexceed:6,weak_table_:8,scannabl:[42,59,71,25,37,38],string_equalp:25,"0x0000000100002fe4":16,parser:37,mps_arena_spare_commit:[6,71,29],"000ae0397334e0a0":13,derefer:1,thousand:44,resolut:[32,13],andrew:[93,31],catastroph:71,mps_sac_class_limit:12,compactli:[68,71,58],ironpython:15,lectur:[13,31],former:[42,54,67,72,21],mps_arena_spare_commit_limit:[71,29],sound:[11,18],"char":[84,87,36,58,32,25,37,16,33,13,28,34],"0x000000010000261b":16,thesi:31,"0x000000010002686d":16,mps_align_t:[59,48,92,34,28,35],diagnost:4,poolfre:[34,80],epdlpoolclass:41,antoni:31,thisclasscoerc:41,wasmark:26,trick:37,cast:[54,60,32,48,70,33,34,41],invok:[30,57,59,18,50,46,90,7,33,41,13,35],mps_ap_alloc_pattern_end:[47,72],mps_pool_debug_option_:[46,28,1],"na\u00efv":[90,25],amcscan:16,invoc:[57,59,48,71,50,41],mps_message_gc_not_condemned_s:36,addroffset:34,findshortresetrangehigh:18,advantag:[30,58,43,77,89,11,65,46,71,72,25],stdout:32,metric:64,henc:[53,30,55,57,74,70,84,7,72,25,41,50,35,80],mps_scan_begin:[82,17,8,33,48,37,78,25,35],worri:[30,17,11,15,25,84],destin:[32,87,29],cluster:18,"0x1003f9b98":16,cobol:[11,15],eras:15,cbsiteratelarg:50,"0x7fff5fbff830":16,mps_ss:17,nearbi:[63,16,11],smalltalk:[53,54,56,31,11,15,72],sos9sc:88,develop:[39,18,70,4,5,21,44,6,7,27,29,31,45,10,11,46,41,86,15,50,51,38],"0x1003f9b58":16,alphabet:18,stepper:[82,10,22,68,71,35],lippgc:88,same:[84,54,55,56,57,17,18,62,63,48,67,68,69,40,72,74,13,58,42,59,43,77,22,78,79,50,8,26,27,29,30,82,31,10,25,46,47,12,34,35,85,87,36,32,88,90,33,41,92,37,51,38],check:[0,54,56,17,18,60,40,80,1,19,4,34,42,20,43,6,79,7,25,29,81,30,31,45,10,50,46,12,41,88,89,84,90,16,33,37],binari:[54,56,17,5,21,32,6,43,89,67,51,13,29,58],epoch:[32,6,34],mps_arena_class_t:[59,29],pad:[54,80,37,57,9,1,60,61,22,8,86,65,35,46,16,2,74,27,25,79],protsync:51,sos8gc:88,circularli:71,knuth:71,document:[39,17,18,60,62,48,70,40,3,4,34,42,5,21,6,7,80,26,28,29,81,30,31,45,10,83,46,47,41,43,15,84,50,71,94,51],ensuresomeclass:41,week:15,exhaust:[77,35],finish:[0,30,9,50,61,6,25,11,65,42,46,53,16,80,74,13,28,41,29,58],typesett:15,poolfix:17,nest:[57,47,28],assist:[71,13,16,70,65],driver:51,someon:[30,48],treadmil:[60,70,57,31],event_param:13,driven:[67,31],capabl:[84,13,71,72,15],mps_root_create_table_mask:82,mps_addr_pool:[81,29],improv:[56,18,63,68,72,4,44,22,24,32,27,30,9,31,10,8,46,36,89,15,77,91,92,51],extern:[54,55,56,57,58,18,65,71,72,74,42,24,80,29,30,45,11,83,41,89,90,50,92,51],postpon:[37,25],mps_fmt_skip_t:[71,35,37],tradition:67,mps_args_end:[1,9,77,22,8,37,79,2,25,92,27,75,28,35,29,85],appropri:[56,57,58,18,62,65,71,72,74,42,59,21,77,7,80,29,82,25,41,35,89,90,37,38],port_:[37,25],macro:[84,17,18,21,61,6,88,48,46,7,12,33,41,34,28,37,51,52],attrscan:34,justifi:[59,18,50],w3i6mv:[4,88],without:[0,39,55,56,17,18,54,60,62,65,67,53,71,72,4,41,5,6,24,27,28,29,81,30,82,9,31,10,50,11,46,47,12,34,35,86,36,48,15,84,90,33],evict:57,temptat:33,model:[53,31,15],branquart:[31,15],dereferenc:[34,84,15],commitlimit:6,table_rehash:[87,25],tobt:18,gdr:80,warranti:5,printezi:31,execut:[39,55,56,57,17,18,62,74,70,1,58,59,5,43,44,8,32,80,41,21,15,94],among:[30,15,46],c89:57,unflush:13,rest:[94,35,37],halfwai:50,mps_build_lc:88,gdb:[13,16,29],doligez:[31,15,74],kill:30,tracequantum:16,aspect:[57,21,44,88,11,71,50,29],touch:[10,84,87,61],rankexact:34,speed:[30,57,18,77,11,15,71,12,33,13,84,38],mps_build_ll:88,concentr:[30,51,21],death:[53,77,31,25],autocad:53,miscellan:[30,32,23],issetrang:18,mmap:[60,62,72,51],except:[39,58,18,62,48,67,2,74,59,5,43,6,65,80,30,82,50,83,46,12,13,35,89,15,33,94,22,51,72],littl:[42,30,18,6,63,11,15,46,12,80,62,51],desktop:71,"0x1003cbe50":16,instrument:51,setenv:4,treatment:57,exercis:[16,70,31,18,50],notori:15,role:[54,37],doctorat:31,pitman:93,disrupt:31,splayfindfirst:50,nielsen:31,hypothesi:[53,22,65],read:[0,58,18,63,48,67,70,71,72,74,13,42,43,6,8,29,82,9,32,25,83,46,34,35,15,90,16,94],outermost:47,amc:[20,36,17,10,22,48,16,47,2,80,19,27,37,38],mop:46,mov:8,vivek:31,reassembl:33,sac_o:12,anchovi:50,insist:41,sobalvarro:[57,31,15],mod:51,intel:[56,58,88],distil:15,patrick:31,robson:31,integ:[54,82,37,58,18,88,32,8,35,67,69,7,71,59,25,13,34,87],shrink:[77,6,58,50],benefit:[42,30,54,6,46,71,8,41,62],weakest:72,either:[39,57,58,18,62,63,65,67,71,72,4,42,5,43,77,6,24,25,26,28,29,81,30,82,83,8,11,46,12,34,35,87,48,89,15,90,16,50,37,51],larchant:31,output:[10,32,48,16,71,50,4,13],downward:[29,18],inter:[57,22,65,67,24,72,35],manag:[0,39,55,56,57,17,18,54,60,61,62,63,64,76,65,66,67,68,53,70,40,2,73,74,75,34,58,42,20,59,5,77,6,23,79,24,50,8,26,27,85,29,81,30,82,9,31,45,83,25,11,46,12,92,13,35,14,80,87,36,48,72,94,89,69,15,37,84,90,16,33,41,71,93,1,22,51,38],fulfil:6,arena_o:29,cbsfinish:50,minsiz:50,free_:80,poolawl:18,thermodynam:31,mps_key_format:[1,9,22,8,37,79,2,25,27,28,35],legitim:33,interlock:87,splayroot:50,journei:37,cruz:31,assert_mpsi:51,has_reservoir_permit:12,constitut:[37,18],resfail:[34,50],basic:[42,30,58,6,74,11,15,46,70,71,51,25,92,41,37,29,72],slice:[42,36],poolmv2:50,thereund:46,definit:[82,56,17,18,45,6,80,15,46,7,48,50,41,51],average_s:[92,75],legal:28,moon:[93,31,15],pioneer:15,moor:[31,18,43],noop:51,"0x00000001003f9a58":16,mps_fix2:[54,82,17,8,33,37,78,25,35],mps_fix1:[54,82,17,8,33,37,78,25,35],virtualalloc:[51,29],sus8gc:88,blocksiz:50,obj_pad:[35,37],immun:[57,65],compris:[6,72,18,43],power:[56,58,18,88,8,89,15,67,24,59,71,48,25,34],event_typ:13,sixth:37,garbag:[0,39,55,56,57,17,59,54,60,61,62,63,65,67,53,70,71,72,74,4,75,13,58,42,20,44,22,23,79,24,25,27,29,81,30,82,9,31,10,8,11,93,47,34,35,85,86,87,36,69,15,37,84,77,90,16,92,52,94,6,38],inspect:[18,65,16,3,35,29],indira:31,"0x00007fff9050ae2a":16,broken:[54,57,58,71,72,80,26],great:[56,63,17],fulli:[57,48,7,71,80,41],regexp:10,referr:65,s7m6mw:88,w3almv:88,src:51,central:[71,57],greatli:[30,4,70,89],mps_mvt_size:77,arena_class_vm:29,joyner:[62,31],drag:31,acm:31,arenafin:83,degre:[46,48],wolf:31,stand:[67,30,24],wold:1,act:[42,62,80,57,74],johnston:[54,55,31,67,70,71,92,93],luck:[10,84,17],processor:[39,56,57,17,59,62,63,48,66,67,69,70,71,72,74,84,58,88,8,82,32,65,13,15,51],mps_message_type_en:[0,90,25],"001b":13,routin:[54,30,83,46],amd:88,effici:[53,39,17,18,62,63,65,67,69,70,40,72,75,84,58,42,59,77,6,24,8,27,29,30,82,9,31,11,46,92,22,34,89,50,71,37],"001a":13,shaw:31,"00000001003fd000":13,wordindex:18,terminolog:[87,62,67,71,74,41,52],surviv:[42,53,56,36,17,59,62,11,15,69,74,37],vigil:17,fence_templ:1,btrangessam:18,artur:31,nikla:31,icfp:31,your:[39,55,17,68,13,4,84,44,32,29,30,82,10,25,47,34,86,90,16,33,37,38],stare:8,fmtdy:17,certainli:30,log:[34,32,4,13,50],unflip:83,area:[42,30,56,57,58,59,54,61,62,63,11,65,66,71,50,29],aren:[39,17,5,25,34,94,84,18],mps_class_snc:[79,28],poolclassmrg:83,overwrit:[54,56,58,18,30,60,62,46,69,16,71,59,1,84],checkabl:6,strip:33,start:[0,54,55,57,17,18,72,65,70,40,2,4,75,41,58,42,59,77,6,79,24,50,8,27,28,29,81,82,9,25,47,48,92,13,85,80,36,89,15,37,84,16,33,71,52,94,22,38],mps_os_li:88,"00000001003fd328":13,interfac:[0,39,56,57,17,18,54,60,61,83,64,65,68,53,70,2,3,19,75,34,58,20,59,43,77,6,7,8,26,27,28,29,81,30,82,9,31,45,10,50,11,46,12,13,49,85,80,87,48,72,32,88,89,15,37,84,90,33,41,92,94,22,51,52],low:[42,30,36,18,45,60,32,8,15,67,46,33,71,74,92,13,88,50,35,29],lot:[42,30,87,36,17,6,50,11,15,46,24,74],resum:94,strictli:[53,51,18,58],obj_skip:[16,35,37],repetit:[11,33],mps_message_gc_start_whi:[0,36],mps_pool_mvff:[],morrison:31,programmat:3,conclud:30,tomasev:31,regard:[24,56,57,62],alain:[31,15],aslr:16,amongst:87,allegro:15,procedur:[57,59,45,25,15,90,71,72,33,37,51,38],obj_t:[84,82,87,8,25,78,16,33,13,37],illus:[0,62,71],trickier:37,untag:8,faster:[0,30,62,11,15,53,71,12,33,34,84],notat:18,amcscannailedonc:16,table_ref:[87,25],dirti:[56,57],sbrk:[60,71,58],possibl:[39,53,55,56,17,18,62,63,65,71,72,34,58,42,50,59,5,43,77,24,7,25,29,30,82,10,8,46,12,41,35,80,87,15,84,16,33,37,51,38],"default":[0,10,32,33,37,16,25,41,4,13,51],"__mode":15,poolalloc:[34,80],nearest:71,unusu:[62,29,15],manuel:31,embed:[31,21,32,50,15,65,33,37],deadlock:[6,63,90,43],powerless:39,pool_superclass:41,gone:29,addradd:34,creat:[0,39,57,18,54,60,61,62,1,48,67,70,71,2,74,75,13,42,77,6,78,79,8,27,28,29,81,30,82,9,25,83,46,12,22,41,35,85,86,87,36,72,15,84,90,50,92,94,37,51,52],conundrum:37,pseudo:17,deep:7,strongli:[53,31,74,15,67,71,72,25,92],intro:[42,18,21,6,46,50,3,41,34,51],decreas:[30,89,58,72],file:[54,17,62,48,66,71,72,3,4,5,21,24,25,29,30,45,32,13,15,90,16,37,51],type_str:[16,25],ecoop98:31,proport:[53,30,36,17,44,62,50,66,24,33,37],eliot:[93,31],tv_sec:32,fill:[84,82,18,32,6,63,37,46,80,74,92,34,35,62],hit:[42,58,62,63,66,16,72,74,94],again:[42,53,87,58,18,54,32,62,74,11,90,84,46,24,25,41,37],beyond:[82,17,15,29,4,35,51],fput:[30,37,32],"0x1003f9ba8":16,hybrid:[53,62,50,59,45],reduct:[42,31],idiom:71,"0x00000001003fb000":16,valid:[54,57,59,62,66,72,18,6,7,80,29,81,82,8,25,11,46,84,36,16,50,51],compet:[65,29],copyright:5,epdldebugpoolclassstruct:41,you:[0,39,17,54,60,48,67,53,40,72,4,13,42,5,44,22,78,91,79,24,50,25,27,28,29,81,30,82,9,10,8,11,46,47,12,92,34,35,87,36,32,84,90,16,33,71,94,37,51,38],zvi:31,coerceclass:41,freestand:32,fork:57,discours:57,btre:18,genuin:[30,37,33],sigmod:31,config_var_df:51,sequenc:[82,57,18,89,6,1,70,16,40,33,41,34,35],symbol:[84,82,18,31,32,86,15,16,48,25,13,37,51,52],mps_rm_t:[82,72],lueh:31,wirth:15,mps_class_mvt:[77,28],briefli:[89,24,11,17],cbsfindlargest:50,peak:[17,29,37],nrevers:31,pool:[39,53,56,57,17,18,54,60,62,1,65,68,40,2,74,19,4,75,34,58,42,20,59,5,88,44,22,78,49,79,50,91,8,26,27,29,81,82,9,31,45,10,25,83,86,46,12,92,13,35,85,80,36,48,37,84,77,90,16,33,41,71,52,94,6,38],mps_arena_create_k:[28,37,29],reduc:[42,30,56,57,17,31,60,89,6,63,83,65,53,24,51,33,66,29,72],bulk:63,"0x1003f9b48":16,symbol_pool:13,directori:[4,51],readership:[18,45,6,21,46,50,41],cmp:[87,25],descript:[0,80,37,18,10,33,82,15,35,84,87,71,65,74,13,94,34,72],unseg:71,contraven:41,tricki:[34,33],inevit:18,mimic:1,mass:62,potenti:[53,82,17,18,43,32,24,59,37],appl:[13,16,31,15,66],mps_chain_destroi:[36,37],degrad:[30,9,50],cpu:[53,30,56,88,62,63,11,4,29],scm:[44,16],represent:[53,54,87,17,31,61,6,65,67,68,69,70,71,29,50,62,18,72],all:[0,39,55,56,57,17,18,54,61,62,63,65,66,67,53,70,40,72,74,4,34,58,42,50,59,5,43,44,6,78,24,7,8,26,28,29,81,30,82,10,25,11,46,47,12,92,13,35,85,80,87,36,48,1,88,15,37,84,77,90,16,83,33,41,71,94,22,51,38],caleb:31,consider:[30,17,31,54,62,3,49,51],illustr:[70,17,29,37],mps_key_:28,lack:[32,62,15],ala:18,scalar:[68,63,71,35,59],extrapol:37,attrincr_wb:34,abil:[42,58,11,15,46,51],ptw:46,follow:[0,57,18,62,65,70,40,72,13,42,5,21,6,91,24,50,25,28,30,82,10,8,11,47,12,22,34,35,80,48,43,89,15,84,16,33,41,71,37],disk:[30,58,31,62,63,66,68,71,72,74],ruinou:44,resok:[34,41,18,80],abid:6,mps_ap_alloc_pattern_reset:47,accesswrit:34,ron:31,tracefix:[6,13,80],codasyl:15,mps_message_gc_condemned_s:36,cbsdelet:50,program:[0,39,56,57,17,59,54,60,62,63,65,66,67,68,53,70,40,72,74,3,4,84,58,5,21,44,22,78,24,8,27,29,81,30,82,31,10,25,11,47,12,13,35,87,36,48,1,32,89,69,15,77,90,16,33,71,94,37,51,38],those:[54,56,57,17,18,61,63,65,70,71,72,74,84,58,42,43,6,7,32,29,30,10,80,46,13,89,78,37],"10992f000":13,segclass:41,swallow:74,neglig:5,introduc:[42,30,82,61,6,11,65,71,15,72],xiaohan:31,liter:57,straightforward:[51,25],replic:[68,62,72,31,74],far:[42,30,17,18,43,60,11,65,16,25,34,37,29],mps_shift_t:34,mpm:[42,34,17,18,80],fat:51,util:[13,52,15,50],mpw:51,mps_class_amc:[22,28,37],verb:[62,18],mechan:[0,53,55,56,57,58,59,54,60,61,62,63,65,67,70,71,72,74,84,20,43,6,25,29,81,45,46,41,39,21,15,90,50,94],quantifi:31,veri:[39,54,17,18,61,62,63,65,70,40,72,74,84,58,42,59,44,6,24,8,30,82,45,10,25,11,12,92,41,85,89,15,77,83,50,71,37,51],rebuild:13,gmake:4,"0x0000000100005ff5":16,lisp:[53,30,57,59,31,62,11,65,66,67,68,70,71,15,13],rescommit_limit:[6,34],list:[0,53,55,56,57,58,18,54,62,64,68,70,71,72,84,5,43,24,91,8,28,29,81,30,31,10,46,12,13,49,88,89,15,16,50,92,37,51,52],mps_free:[39,81,9,85,77,22,84,79,12,8,92,27,75,35,62,38],arenapark:6,emul:[39,8],reset_mask:13,adjust:[56,60,63,65,46,24,70,71,80],mps_lib_get_stderr:32,stderr:[30,16,33,37,32],small:[39,53,55,57,17,18,61,62,63,65,70,71,72,19,42,20,59,44,6,24,29,30,9,33,11,46,12,84,85,36,89,15,50,37],tear:[32,37],kemeni:15,compareless:34,lockreleaserecurs:43,synergi:46,inherit_class:41,tupl:59,ref_io:33,computation:68,ten:[44,54,13,70,57],ensuredebugclass:46,addrset:34,pun:[52,70,37,48,33],past:[39,30,57,17,18,35,67,37,38],rate:[31,6,63,15,66,67,70,71,62],pressur:72,design:[39,53,17,18,54,62,63,80,1,3,41,42,20,59,21,6,24,7,25,26,29,30,31,45,32,8,11,46,50,34,43,15,84,90,91,83,33,94,37,51,38],pass:[0,54,57,17,18,62,64,65,66,67,69,71,2,1,75,13,58,42,77,22,79,50,32,26,27,28,29,82,9,31,10,8,11,46,12,34,35,85,80,87,36,15,84,78,16,33,41,92,94,37,51,38],further:[0,30,82,87,57,17,6,69,84,24,33,13,35,29],suboptim:[36,37],mps_chain_creat:[36,37],mps_arena_class_vm:[28,37,29],cursor:17,what:[0,39,57,17,18,54,72,34,42,59,44,6,49,24,8,29,30,82,10,80,11,46,12,41,35,86,36,89,84,16,33,94,37,51],stood:30,sub:[41,58,18,50],richard:[31,18,21,6,43,83,46,7,80,50,26,3,34,93,51],clock:[0,57,32,6,16,71,25],diag:51,sum:[54,82,59,77,62,89,67,92,75,35,29],mps_pool_class_mv_debug:46,abl:[54,82,57,18,21,72,43,11,69,15,37,46,24,16,65,50,94,35,29,38],overload:71,"0x000000010002b399":16,delet:[0,30,56,8,78,15,67,24,50,71,25,13,34,39],abbrevi:[71,63,64,25],version:[0,17,18,48,40,2,3,75,13,42,20,59,21,77,6,79,50,25,27,88,29,81,30,82,9,45,8,46,92,22,34,35,85,87,43,15,84,16,33,71,94,37,51],regnesentr:31,intersect:50,consecut:[77,54,59],mps_build_mw:88,mps_build_mv:[51,88],runfinalizersonexit:90,"public":[53,54,55,56,57,58,59,60,61,62,63,65,67,68,69,70,71,72,74,4,30,10,48,84,15],contrast:[55,71,62,29,74],sizeisalign:10,millisecond:29,hasn:[53,13],full:[30,16,18,54,47,88,70,15,66,90,7,12,25,13,37,29],themselv:[30,56,18,67,90,34,41],berkelei:[31,5],variat:[89,24,71,62,72],sanctifi:34,sophist:[77,24,51],client_is_wait:29,behaviour:[84,43,10,6,45,48,68,46,90,50,33,41,13],modular:[10,62,46,15,30],shouldn:[42,17,37],procur:5,box:[57,58,65,67,69,72],omiss:51,solari:[4,88],excess:15,free_siz:1,method:[84,54,56,57,17,60,65,71,2,74,4,41,58,42,21,6,78,79,50,25,26,27,82,9,31,45,10,8,86,46,48,22,34,35,80,36,72,15,90,16,33,52,37,51,38],standard:[57,62,64,48,70,13,4,84,21,6,24,25,29,81,30,31,32,65,41,15,33,51],modifi:[54,36,18,21,6,15,46,24,71,65,57,28,62],pointeradd:34,valu:[0,54,55,56,57,17,18,62,63,65,67,68,69,70,71,72,74,13,58,50,59,88,6,24,7,8,26,28,29,30,82,10,25,12,34,35,80,87,48,1,32,15,84,78,16,33,41,92,37],arena:[0,39,57,17,18,72,62,1,48,68,69,71,2,74,75,13,42,20,59,44,6,79,8,27,28,29,81,82,9,45,10,25,83,46,12,22,34,35,85,86,87,36,77,90,16,50,41,92,94,37,52],search:[54,18,31,61,89,24,71,50,13,58],ahead:57,garwick:31,fwd:[37,35,25],fstruct:37,removeadjacentrang:50,mac:[4,31,66],prior:[0,13,87,15,50],amount:[42,30,56,36,17,18,44,6,89,65,77,24,71,51,8,92,34,75,29,72],calder:31,pick:[41,69,31,25],action:[42,30,56,54,80,67,46,90,40,72,25,71,34,84,29],pauillac:43,mps_addr_fmt:[35,29],magnitud:[68,62,63,71],via:[84,62,1,48,70,72,74,75,13,5,77,6,79,7,8,27,29,81,30,82,9,10,80,11,12,22,41,85,87,32,15,83,50,92,94,37],depart:31,declin:47,primit:[30,24,57,65,15],transit:42,"0x1003fb130":16,reservoirpermit:41,readili:[32,24],filenam:13,mps_telemetry_get:13,inappropri:24,mps_io_destroi:32,heurist:[60,57,15,74],demonstr:13,gratuit:18,decrement:[67,24,63,72],coercion:41,dangl:[42,62,56,11,1],select:[42,18,31,10,6,66,68,72,74,13,51,58],gudeman:[67,69,70,58,31],hexadecim:13,sparecommit:6,"0x1003cb970":16,distinct:[54,58,21,60,88,11,65,68,71,17],findlongresetrangehigh:18,etc:[58,60,62,11,91,71,4,13,51],regist:[39,54,57,17,59,62,63,65,67,70,71,72,75,13,77,22,78,79,25,27,29,82,9,8,33,83,34,85,80,15,84,90,50,92,38,94,37,52],two:[0,54,55,56,57,58,18,62,1,65,67,68,70,71,2,74,4,34,42,59,21,22,24,50,8,27,29,30,82,31,10,25,11,46,47,12,13,85,80,87,36,48,32,43,89,15,37,84,16,33,92,6,51,72],coverag:18,workstat:[65,15],rhel:39,azaguri:[57,31],taken:[36,6,11,70,24,7,71,25,34,29],zorn:[30,57,58,31,15,93],minor:0,more:[0,39,57,17,18,54,60,61,62,63,65,67,68,53,70,40,2,74,4,34,58,42,59,5,43,77,22,78,23,24,8,28,29,81,30,82,31,10,25,11,46,47,12,92,13,35,87,48,32,69,15,37,84,90,16,50,41,71,94,6,51,72],mps_reserv:[10,48,37,46,16,72,25,84,35],flat:[17,15],mellon:31,desir:[30,71,58,46],mps_alloc_dbg_v:46,hundr:[44,70,57],hyperspec:[57,15],brisl:[50,18,21],mps_sac_creat:[71,12],flag:[24,56,83,29],stick:63,particular:[0,53,57,17,18,54,60,62,63,65,70,71,72,74,84,59,5,43,77,6,24,25,29,30,50,46,47,48,13,35,80,87,15,33,93,22,51],known:[39,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,53,70,71,72,74,34,5,77,6,76,24,25,30,80,11,48,41,87,89,69,15,84,90,94,37],beown:43,cach:[56,57,17,18,62,63,66,67,70,71,72,75,20,59,77,6,79,24,8,27,81,9,31,45,11,12,85,92,38,22,52],mps_key_mean_s:[77,92,75,28],canterburi:31,none:[42,87,18,10,6,84,51,8,41,13,28,35,29,38],mps_class_mvff:[92,28],methodolog:31,operator_:37,damien:31,outlin:50,resresourc:34,dev:[4,72],histori:[42,20,31,18,21,6,43,83,62,15,46,45,7,80,50,26,3,13,41,51],rootstruct:34,remain:[42,54,80,57,9,89,74,70,90,37,67,24,50,71,51,25,13,84,34,29],den:[67,30,70,31],learn:[39,30,15],abandon:65,motiv:[59,15],btfindresrangehigh:18,dee:56,def:[6,51,34,18,50],stubborn:16,omit:[7,16],rootvar:34,bogu:26,useabl:6,scan:[39,53,55,56,57,17,18,54,72,63,65,68,70,71,2,74,75,13,58,42,20,59,44,22,78,49,79,24,8,27,29,82,9,31,45,10,25,86,46,48,34,35,85,80,89,84,77,90,16,33,92,52,94,37,38],rodriguez:31,registr:[57,25,52,94,74],share:[57,60,62,68,70,71,4,13,43,6,24,25,29,30,31,11,46,41,15,16,33,94],accept:[36,62,80,37,70,12,33,57,41,35,51,38],pessim:77,prehistori:6,unreli:[30,11],"0x0000000100001947":16,partner:15,phrase:68,struggl:16,strlen:25,resmemori:[34,50],condemn:[0,42,36,17,45,80,70,65,67,54,53,16,71,25,26,57],uncheck:7,huge:[30,63,71,66],cours:[53,32,6,37,84,35,29],untru:51,awkward:8,divid:[53,54,55,57,58,18,32,62,89,11,67,70,24,59,71,34,37],rather:[42,30,56,57,18,54,60,10,6,63,64,15,48,77,53,16,65,13,84,37],anoth:[0,53,55,57,58,18,54,60,65,66,70,71,72,74,34,42,24,8,29,81,30,82,25,33,11,47,12,41,87,36,48,89,15,84,90,16,50,94,37],comfort:44,nwper96:31,commonli:[42,54,56,58,59,10,62,63,66,67,68,71,74],rapport:31,narrowli:53,daconta:[31,15],heck:31,compactifi:[57,31],reject:[30,33],strong:[42,17,18,65,67,90,70,71,15,25,72],simpl:[57,17,18,70,71,72,4,58,59,43,77,24,25,31,32,8,85,89,15,16,33,38,37,51,2],mps_fmt_create_auto_head:35,pieper:[93,31],survivor:[22,36],arenaseri:6,resourc:[0,54,59,60,62,65,66,70,40,80,4,34,77,32,29,30,10,25,11,41,35,90,50,51],referenc:[53,54,56,57,59,61,62,63,68,71,74,84,22,79,24,7,8,27,9,34,90,16,37],algebra:[68,71,59],cheaper:[60,30,62,58,54],mps_fmt_copy_t:35,variant:[9,61,22,8,15,37,79,71,72,33,27,35,38],reflect:[58,31],okai:[26,34],type_t:[84,87,37,25],sos8gp:88,rovner:31,varianc:35,associ:[0,30,80,87,84,59,43,6,50,64,90,15,67,69,70,12,65,25,13,62,51],unreserv:80,cmpf:25,circumst:[81,87,57,60,62,90,24,50,28,37,29],"short":[42,80,63,17,18,44,50,68,71,12,74,34,72],addr_method:28,confus:[34,71,37,59],mpseventtxt:13,ambigu:[55,57,17,59,62,69,71,72,74,84,42,6,79,8,26,27,29,82,31,25,22,34,90,33,38,37,52],caus:[54,17,60,61,62,1,65,68,70,71,72,74,58,42,5,77,6,24,25,29,81,30,31,10,11,47,12,90,16,50,92,37,52],callback:[50,45],chiefli:53,leroi:[31,74],issubclasspoli:41,began:13,target_check_deep:7,rotat:61,reservoir:[46,13],root_o:82,soon:[42,82,56,57,17,74,90,65,37,24,33,4,35,29],mps_lib_memset:[32,34],reachabl:[53,54,57,58,59,62,63,65,67,69,70,71,72,74,22,79,24,8,27,29,30,82,9,31,25,11,84,80,15,90,33,37],cook:31,scientist:15,through:[42,55,41,17,18,6,80,15,37,67,46,90,12,65,50,26,13,34,29],cbsalign:50,word_act:18,hierarchi:[57,62,63,66,67,71,72,74,41],coerceinst:41,exponenti:53,suffer:[30,63,54],kistruck:93,tracescansegr:16,paramet:[84,57,17,18,60,65,13,80,41,77,22,79,32,27,82,9,45,10,8,46,12,34,35,48,15,50,92,94,37,51],"0x1003f9b70":16,typedef:[84,87,36,18,1,6,8,70,48,37,50,12,25,41,28,35,51],make_bucket:25,special_:37,fri4gc:88,mps_pool_class_epdr_debug:46,late:[81,62,25],harmless:[46,47],classofpoli:41,pend:[80,18,50],rapidli:[44,15],exchang:91,stephen:[93,31],tractstruct:6,might:[53,54,56,57,17,18,60,61,62,65,67,68,13,72,74,41,42,44,78,24,50,32,28,29,81,30,82,25,10,8,46,12,34,35,87,36,48,89,84,90,16,33,71,94,37,51,38],alter:[40,51],mps_key_t:28,finer:72,wouldn:[24,11,25],good:[39,42,82,17,5,58,44,32,63,89,90,84,53,71,13,37,29,18],"return":[0,39,57,17,18,54,62,83,65,70,40,2,75,34,50,59,43,44,6,78,79,24,7,25,27,28,29,81,30,82,9,10,8,11,47,12,92,13,35,85,80,87,36,48,32,89,37,84,77,90,16,33,41,71,94,22,72],amelior:46,mps_ap_t:[59,8,79,47,40,25,84,37],timestamp:13,pollut:42,entry_interpret:16,inria:[31,43],symbol_t:84,framework:[42,20,31,15,45],swizzl:31,mps_rank_ambig:[82,71,37,59,72],arenaalloc:6,compound:[30,57,51],abi:88,arbitr:62,detach:80,complain:46,bigger:[44,57,35,18],feet:29,eventu:[0,42,11,15,46],redesign:15,weak_buckets_ap:25,osarct:[4,88],datastructur:[6,18,50],refresh:[56,71,50],mysteri:[30,56,15],easili:[39,87,59,5,63,15,46,24,34],achiev:[82,56,77,6,65,24,71,62],ecru:[60,55],tracescan:80,type_pad:[16,37],"12th":31,found:[17,18,74,71,1,13,58,44,80,81,30,82,25,11,46,12,84,35,87,50,92,37],difficult:[30,56,59,54,62,90,15,24,16],out:[39,54,56,57,17,18,60,61,62,63,65,66,68,70,40,80,74,13,42,59,5,6,50,8,26,29,30,10,25,11,46,12,34,35,87,36,48,1,15,84,90,16,33,71,37],mps_telemetry_label:13,clamp:[6,57,69,29,74],interleav:[39,54,62,57,2],weight:[56,18,31,67,24,72,58],"0x0000000100074106":16,arenaread:83,lua:15,hard:[42,30,82,58,62,11,24,16,71,72,84,37],idea:[42,57,45,15,46,90,71,25,13,41],ifip:31,realli:[42,30,81,54,6,46,33],heavi:30,linkag:51,cbsfinddeletelow:50,expect:[53,59,63,74,42,18,21,44,80,29,30,82,47,12,34,35,36,43,15,77,16,37],mps_stack_scan_ambig:[84,82,37,72],longjmp:35,operation:67,thing:[30,87,17,31,77,83,6,51,11,46,90,7,12,41,34,37,29,72],todo:25,event:[0,30,37,5,45,10,32,50,11,35,87,70,90,16,80,25,4,13,29,52],"0x00000001003f9c90":16,ftp:4,mps_sac_alloc:12,safeti:[52,94,87,43],uncollect:24,robert:31,mnemon:[34,63,71],publish:[53,91],research:[11,31,15],handl:[0,55,17,62,48,66,67,40,72,74,84,42,43,78,79,8,82,32,25,11,46,12,34,35,15,90,16,33,71,94,51,52],bibop:[72,17,15,58],resparam:34,mps_arena_cr:[6,29],fmt_ah:35,arenareleas:6,cbsiteratemethod:50,benjamin:[30,93,31],difficulti:[0,74],qualifi:[63,15],mps_lib_get_eof:32,proxi:54,uncommit:29,advanc:[20,86,58,31,30,61,8,11,15,25],mmu:[68,62,74],guess:16,pair_:[16,37,33],controlpoolstruct:6,wakel:31,mps_ap_creat:[9,77,22,79,8,92,27,84],reason:[17,59,65,71,72,74,84,18,5,6,50,80,29,30,82,10,8,34,35,32,89,15,90,33,92,38],base:[56,17,18,63,65,66,70,71,72,4,13,58,42,59,88,6,79,50,8,27,28,29,82,9,31,25,48,41,35,80,87,15,37,78,16,33,92,22,51,38],isymtab:37,believ:[56,70],suddenli:13,ask:[42,20,37,57,30,83,15,23,12,81,35,29,38],classnamestruct:41,canon:41,earliest:15,mps_alloc:[81,9,85,79,72,10,22,8,48,37,84,46,77,12,74,92,27,75,35,62,38],lag:31,basi:[42,24,18],mps_label_t:[13,48],director:93,kept:[42,89,56,57,43,10,25,83,78,24,50,72,33,37,51],mpsc:48,thread:[39,57,17,59,62,63,67,70,72,34,58,42,20,43,6,29,30,82,9,31,12,41,35,86,87,84,16,94,37,52],mpsa:48,worth:[30,71],vararg:46,"_mps_fix2":17,mpsi:[10,16],mymp:4,perhap:[42,18,10,62,16,25,29],perman:[72,65],cbsstruct:50,lifetim:[53,55,56,17,31,60,61,22,63,11,15,66,77,71,65,25,37,62,72],entry_string_append:16,hasseg:6,simultan:[39,30,25,57,74],major:[42,30,56,57,5,22,89,15,46,53,62,29],dont:16,obviou:[46,6,34,18],upper:[77,48,51],feel:[46,37],articl:37,number:[0,53,56,57,17,18,54,60,62,63,67,68,69,70,71,2,74,4,13,58,59,43,44,6,25,27,29,30,82,9,31,10,50,83,12,34,80,36,32,89,15,77,16,33,41,37,51,72],placehold:37,globals_scan:37,mps_res_fail:[10,90,47,33],pop:[56,59,79,71,40,85],mps_message_typ:0,done:[0,53,57,58,62,71,74,4,42,25,29,30,32,83,46,13,87,36,15,16,50,37,51],uninterest:[17,50],stdlib:30,stabl:[77,31],implementor:[53,41],miss:[42,56,31,6,70,65,66,67,16,71,62],"000ae03973352375":13,fanci:46,gpl:5,differ:[39,55,17,18,62,65,67,68,70,71,3,4,58,42,5,44,6,25,29,30,31,10,50,11,46,12,34,35,87,36,48,89,77,16,33,92,37,51,38],fuller:11,script:[4,15],mps_t_ulongest:88,gpf:53,luiz:15,least:[0,54,57,17,18,61,62,48,67,70,71,74,84,59,6,80,29,30,50,46,12,13,85,87,36,33,37],mps_message_queue_typ:[0,62,25],checkpoint:21,paint:65,stori:[6,37],mps_key_awl_find_depend:[25,28,8],reclam:[67,90,31],statement:[84,48],relink:70,aver:[46,83,50],twenti:57,scheme:[0,53,57,58,59,65,67,71,72,44,25,82,31,11,13,86,87,15,90,16,33,37,52],supernamestruct:41,store:[0,39,55,56,57,17,18,54,60,62,63,65,66,67,68,70,71,72,74,34,58,42,59,43,6,24,25,29,30,82,31,83,50,11,46,12,41,35,85,48,89,15,84,90,33,94,37,38],eql:68,lii3gc:[4,88],alleg:33,assign:[84,30,59,18,62,89,15,67,70,12,34,13],parc:31,option:[6,50,48,46,71,80,27,92,13,75,28,37,29],table_delet:25,mps_thread_reg:[82,70,94,37],"0x7":33,similarli:[33,12,18,25],park:[81,82,57,6,69,74,22,29],pari:31,illeg:[80,40,1],part:[53,54,56,57,17,18,62,63,48,67,68,69,70,71,72,74,34,58,42,59,5,6,24,8,29,30,82,10,80,11,46,41,1,32,89,15,84,16,50,93,37,51],"0x1003fe820":16,mps_lib_fil:[32,50],fall:[53,87,31,77,10,15,24,12,34,72],mps_message_pol:[0,62],ncc:31,std:18,kind:[0,54,57,17,48,60,10,62,33,15,67,46,16,71,51,74,61,37,29,38],grep:13,doubli:[56,8,67,70,71,25,84,52],mipspro:88,cyclic:[39,30,56,57,31,15,72],remot:[22,79,72,8,27,38],remov:[0,42,80,56,6,33,82,15,37,46,24,50,71,48,74,28,35,51,72],dant:31,prot_bar:51,niklau:15,ringstruct:34,reus:[42,81,56,77,89,6,11,15,24,16,71,72,41],architect:93,sigcheck:10,arrang:[39,42,58,54,80,17],stale:[39,87,57,6,74,25,26,29,52],unalign:[82,58,59,62,69,80,92,84],typic:[53,54,55,56,57,58,18,60,62,63,65,67,68,69,70,40,72,74,13,42,59,5,88,77,6,24,8,29,30,82,10,80,11,12,41,35,87,48,32,89,15,84,50,71,37],grei:[42,53,80,45],randomli:11,cleaner:[53,11],comput:[42,30,87,57,58,31,6,25,11,15,24,16,71,72,74,62],"0b00":17,deleg:33,grarup:31,packag:[4,56,72,15],overran:16,perri:31,succeed:[10,34,37],dedic:[94,15],"null":[30,82,87,50,6,8,48,37,46,78,16,71,80,25,84,28,35],commonplac:58,imagin:[46,13],wilson:[53,30,55,57,58,31,54,61,63,11,65,67,59,71,89],xref:42,brad:31,relationship:[46,41,7,15,68],thingcheck:7,mps_ld_:[34,87,25],ancillari:30,odd:57,lin:31,violat:[53,58,10,62,74,65,67,90,71,72,50,34],mps_res_param:[10,12],align_up:37,accessor:[41,50],count_max:18,build:[39,20,86,57,17,45,47,15,37,68,16,71,4,13,51],mps_fix:[35,33],"00000001003ff000":13,analogu:70,brace:41,ecmascript:15,splai:[46,50,45],mktemp:13,pipelin:71,distribut:[39,53,56,36,5,31,44,63,15,67,24,65,72],alignof:37,unsur:[69,59],kai:31,previou:[61,54,17,43,10,80,89,90,16,71,74,13],reach:[0,54,56,57,62,74,11,24,50,72,25,34],mixtur:[54,8,33,48,15,25],backtrac:[10,16],crash:[90,11,29],most:[39,53,57,17,18,61,62,63,48,66,67,70,71,72,74,4,84,58,42,59,44,6,24,7,8,29,30,82,10,25,11,47,12,22,34,87,32,89,15,90,16,33,93,94,37,38],plai:31,buckets_skip:25,plan:[31,38],moss:[93,31,74],alpha:[4,73,88],splat:[8,25,78,67,90,71,1],getrusag:32,appear:[39,30,87,57,58,83,62,74,70,65,16,48,25,41,13,50,37,51],bug:[39,30,56,54,10,32,89,11,15,16,65,74,13,84,29],filesystem:51,weak_table_t:8,reg_scan:82,cover:[42,82,63,11,48,71,33,84,37,29],recherch:31,destruct:[30,80],dimension:[71,15],quadword:[56,73],ext:51,getter:6,abnorm:[13,11],clean:[41,56,15,74],mpscawl:8,addr_io:46,blend:15,microsoft:[39,57,88,15,4,51],iwooo:31,think:[84,82,15,46,24,12,34,13],"0x000000010000d75f":16,summer:31,"0x0000000100005e30":16,pooltriv:80,xcode:4,memorandum:31,eq_hash:[87,25],faq:[30,15],session:[29,25],particularli:[30,56,57,18,11,65,69,70,74,41],cdr:[16,37,33],fine:[62,16,90],find:[0,39,56,57,17,18,54,60,63,53,70,71,72,4,13,58,42,6,24,50,25,29,30,82,31,8,46,41,49,87,36,89,33,37,38],leewai:33,impact:51,buckets_fmt_:25,dosser:31,coerc:41,pretti:17,writer:15,solut:[30,55,45,6,50,11,15,46,24,74,4,37],"0x0000000100008ca2":16,peculiar:72,ambig:42,rangessam:18,tag_mask:82,templat:[46,1],factor:[30,62,70],unobtrus:[30,31],iec:[48,32,57,31,15],pooldebugmixinstruct:46,writef:34,boulder:31,remedi:74,poolamc:16,unus:[30,57,58,18,59,62,89,16,71,29,1,35,51],behavior:[30,57,31,11,15,71],"__file__":46,express:[31,16,84,18,5,59,62,33,89,15,48,7,65,25,41,4,88,34,51],btfindlong:18,allen:31,nativ:[72,88],mainten:[41,51,50],fastest:[71,84,57,33],liabl:[13,5],cgi:15,cbsfindfirst:50,him:30,obligatori:41,morgan:31,napier88:31,whenev:[82,87,18,21,60,15,67,24,7,34,37],someclassstruct:41,synthes:31,"0x1003f9b68":16,"0x100001b80":16,mps_build_gp:88,common:[54,55,56,57,58,59,61,62,63,65,67,70,71,74,84,6,23,24,30,10,50,11,41,35,89,15,78,16,33,94,37,51,52],mps_chain_t:[36,22,2,27,28,37],fuzzi:11,unmaintain:15,"0x0000000100068050":16,sac:12,crl:31,tr99:31,"0x1003f9b88":16,set:[53,54,55,57,17,18,60,62,63,65,67,68,70,40,72,77,4,41,58,42,59,43,44,6,24,25,26,29,30,82,31,45,32,50,12,92,34,35,80,87,36,15,84,13,16,33,71,51],art:[62,15],fputc:32,btcreat:18,buildsi:51,"0x1003f9b80":16,extant:79,vinc:31,"00000001078c85b8":13,mutabl:[62,65,43],seg:[42,10,6,16,13,34,41],isfinalpool:6,see:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,40,2,73,74,3,4,75,34,58,42,50,59,21,44,6,78,76,79,24,7,8,27,28,29,81,30,82,9,10,25,83,46,48,92,13,35,85,80,87,36,72,94,32,43,89,69,15,37,84,77,90,16,33,41,71,1,22,51,38],ierusalimschi:15,undergradu:15,arg:[81,1,9,77,22,8,37,84,79,2,25,41,92,27,75,28,35,29,85],reserv:[57,17,59,60,62,48,68,69,71,72,34,58,5,77,80,29,30,82,10,12,84,37],"1003fd000":13,arm:58,analog:[32,62,29],barn:[93,51,31],"_win32":51,hess:31,expert:[30,93,11,38],misalign:[62,69],someth:[42,30,82,17,10,6,83,15,46,12,80,34,51],particip:80,struct:[84,82,87,36,1,60,32,6,8,83,48,37,50,12,25,41,34,28,35,51],weakli:[8,15,67,71,72,74],"case":[0,39,57,17,59,54,60,65,53,40,72,4,13,88,44,6,24,50,25,27,29,30,82,31,10,8,83,46,47,12,92,34,35,80,87,48,15,84,77,90,16,33,41,71,94,37,51],won:[42,17,6,11,71,12,84,37,72],mutex:43,amalgam:4,experi:[30,51,91,37,31],type_link:84,altern:[81,54,59,31,32,25,12,50,84,29,72],signatur:[6,7,41,18],mpsevent:13,chain_o:36,disadvantag:[24,70,11,37,58],numer:[69,15,8],complement:30,sole:68,isol:50,mps_ap_destroi:[84,37],res_v:[84,12],awl_pool:[79,8],incident:5,matthia:31,stroustrup:[30,15],valuabl:93,consumpt:54,distinguish:[53,54,57,17,22,35,67,69,70,37,58],mps_ld_add:[87,25],classnam:41,"1003ff000":13,mps_class_am:[27,28],popul:[77,12,15,18],water:58,cryptic:80,last:[42,30,56,36,17,18,6,50,89,69,16,71,25,41,37,87],delimit:[82,35,33],linuxthread:[94,43],retent:71,hint:[30,57,59,77,47,12,92,36,75,37],alon:72,algol:[57,11,31,15],isomorph:70,xleroi:43,aver_and_check:51,context:[57,59,43,90,15,37,24,71,50,84,35,51],forgotten:16,oopsla97:31,mps_res_ok:[17,48,72,1,90,32,29,81,82,25,10,8,47,12,84,35,36,78,16,33,94,37],maclisp:[58,31],fermin:31,whole:[42,53,80,1,17,18,74,15,67,59,51,25,27,84,29],elsevi:31,ecma:15,load:[30,17,72,58,63,15,71,65,4,13,29,52],songworm:31,simpli:[30,57,59,18,43,32,11,54,46,67,47,71,12,50,34,41,29,72],elliot:31,point:[0,39,57,17,59,54,60,62,1,65,67,53,70,40,72,74,75,13,58,42,43,44,6,78,79,24,25,27,29,81,30,82,9,10,8,46,47,12,92,34,35,85,87,36,48,32,69,15,37,84,77,90,16,33,71,52,94,22,38],instanti:[46,6,50],schedul:[0,63,36,9,31,44,32,22,8,62,90,47,59,25,13,27,29,52],hudson:[57,31],sweep:[20,36,31,18,1,58,10,57,63,15,24,71,80,61,19,27,62,38],arbitrarili:[12,37],header:[54,57,58,60,63,65,66,70,71,72,3,4,22,79,8,27,9,50,48,35,33,38,37,51,52],uniniti:[84,37],hangov:18,church:16,lar:[93,31],mistak:[84,16,12,59],gavin:[93,7,31,50],poolclassam:18,coincid:46,simpler:[0,30,37],topla:31,prot_:51,xci3ll:[4,88],stamp:[32,13],help:[30,17,54,62,1,16,33,41,13,93,28,37,29],devic:[62,11,59,74],due:[39,42,57,54,60,62,80,15,66,77,90,71,72,74,84],empti:[0,42,58,18,89,83,53,34,28,37],destructor:[30,56,57,31,54,15],clocks_per_sec:32,arenapol:[6,16],newcom:25,arenapok:83,txt:13,threaten:[70,57,31],devis:[62,70],obj_u:37,strategi:[42,57,59,31,43,46,24,71],anthoni:93,invis:[46,8],modern:[30,17,59,62,11,15,66,68,24,74,37],versa:[42,6,25,15,8],gavinm:[34,50],"0x0000000100067ca1":16,fire:[46,1],clariti:[10,34,82],imag:[30,71,72,18],ada:54,consequenti:5,unnecessarili:[71,25],gap:[46,66,35,37],fund:6,understand:[11,17,31,25],func:12,weak_array_find_depend:8,cbsdescrib:50,chatter:[0,52],vulner:[30,38],base_address:28,henriksson:31,mergerang:50,strictest:53,"0x1003f9b78":16,mpscmvt:77,solid:27,typecheck:7,straight:[46,17],batch:15,durat:[42,56,59,15,71,35,29],"while":[0,56,62,65,70,71,74,24,8,29,81,30,82,25,11,46,84,15,78,16,33,37,51],mps_key_extend_bi:[92,75,28,85],unifi:46,smart:[71,31,15,72],abov:[17,18,40,4,75,13,58,5,6,24,8,27,28,81,30,11,12,84,35,50,92,37,51],guido:15,fun:[18,6,83,46,7,34,51],mps_root_t:[82,37,72],loos:[53,71,58,15],loop:[54,87,57,17,18,77,90,24,25,84,37,29],pack:[58,35,37],propag:[41,17,37],malloc:[39,30,58,59,6,11,15,37,62],untag_s:25,mem_top_down:29,clinger:31,readi:[41,6,28,37,80],rip:15,willi:31,itself:[56,57,17,65,66,67,69,71,72,74,4,13,43,6,7,25,30,11,46,12,41,87,21,90,16,33],costli:[53,62,63],virtu:61,limit:[0,56,57,17,18,60,62,63,71,72,13,58,5,8,6,24,25,29,82,45,10,33,11,12,41,35,36,34,15,84,77,78,50,93,37,51],arenar:6,pedagog:[34,80],chase:[58,31],weakref:15,yuasa:31,mps_sac_fre:12,tobas:18,minim:[42,18,31,68,62,15,46,70,12,41,37,51],belong:[0,39,57,59,54,40,72,74,75,77,6,79,25,27,29,81,82,9,8,92,12,22,84,35,85,87,36,33,71,94,37,38],shorten:51,x64:4,shorter:[84,37],stefanov:31,decod:[17,59,72,4,13,52],mps_res_t:[17,40,72,1,75,77,22,78,79,25,27,28,29,81,82,9,10,8,83,46,47,12,84,35,85,36,32,90,16,33,92,94,37,2],varp:37,sqlite3:4,mps_bool_t:[0,81,87,25,48,46,12,33,92,84,28,35,29],conflict:6,higher:[54,82,32,6,65,15,37],vmcreat:13,sigxcpu:94,lie:57,optim:[30,82,63,57,17,31,54,6,33,90,68,69,12,86,25,4,37,29],target_check_shallow:7,wherea:[57,62,40,68],pretenur:31,dimm:56,mps_pf_w3i6mv:88,moment:[34,83,25],arenacreatevm:13,temporari:[46,59,31],user:[0,60,68,44,32,6,62,11,15,46,65,80,8,13,41,29],bartlett:[62,71,31,15],robust:[30,56,18,11,92,28],yuan:31,transitori:50,recent:[54,82,57,17,59,61,6,63,40,74],sunpro:[4,88],travers:[30,6,56],task:[30,60,62,11,65,15,33,37],net:15,equival:[53,54,22,50,89,4,33,34,28,41],older:[53,30,55,57,88,61,62,35,24,71,72,74,37],entri:[55,87,17,18,72,6,25,11,15,65,8,93,94,38],mps_pf_xci3ll:88,yehudai:31,spent:[62,29],diwan:31,person:31,mps_lib_memcmp:[32,34],epdlpoolclassstruct:41,expens:[42,30,55,56,57,58,54,62,71],arenacommitlimit:6,cedar:54,johan:15,insidepol:6,spend:[0,30,57,62,11,70,29,51],poolclassawl:18,propos:[30,46,50,31,45],explan:[42,30],construct:[30,56,57,18,11,35,41,28,37,51],"000ae0397334df9f":13,buckets_scan:25,epcor:[46,50,18,21],table_:[87,37,25],obscur:[12,58],"0x00000001003fb148":16,relianc:48,shape:57,mysql:5,love:38,fflush:32,mps_key_arena_cl_bas:[28,29],simm:56,stoutamir:93,isfwd:[35,25],cup:29,scenario:[41,84],restructuredtext:[18,21,6,43,83,46,7,80,50,26,3,51],theoret:[30,57],failnextmethod:41,eager:[59,50],mps_message_type_gc_start:[0,62,36],"0x10012a000":16,appli:[42,82,17,5,62,65,67,46,71,12,80,84,37,51],snap:[26,70,71],input:[53,59,10,48,90,71,25,13,29],unlik:[57,17,15,71,37,85],subsequ:[54,56,57,30,50,29],btresrang:18,useless:13,indentifi:70,subroutin:57,xcodebuild:4,march:31,obsolet:[37,88,35,25],format:[39,54,55,57,17,59,60,63,65,70,71,2,74,4,75,13,58,42,20,77,22,49,79,1,25,27,28,29,30,82,9,10,8,86,46,34,35,85,80,72,15,84,16,33,92,52,37,38],big:[42,58,44,11,71,29,85],single_act:18,mps_class_ams_debug:[27,28,1],"0x1003f9bb8":16,alias:[41,17],mps_arena_reserv:29,cierniak:31,insert:[46,84,50,52,74],bit:[39,54,56,57,17,18,60,62,63,65,67,70,72,73,74,4,13,58,42,20,59,88,6,24,50,8,82,31,45,25,46,34,35,80,87,33,37,51],characterist:[67,54,77],formal:15,xcodeproj:4,lost:[46,84,18,15],semi:[54,57,58,31,30,62,70,59,71,50],rossum:15,signal:[16,71,1,13,94,35,52],resolv:[30,34,70],manifest:16,heart:[54,57,58,80,71,72,33,26],collect:[0,39,55,56,57,17,59,54,60,61,62,83,65,67,53,70,40,72,74,75,34,58,42,20,88,44,6,23,79,24,25,26,27,29,30,82,9,31,45,10,8,11,93,47,92,13,35,85,86,87,36,32,69,15,37,84,77,90,16,71,52,94,22,38],princip:[15,50],pithi:80,popular:[15,74],eec:31,mps_pool_class_epdl_debug:46,setrang:18,mps_gen_param_:[36,37],often:[53,54,56,57,58,18,61,62,63,64,65,67,68,70,71,72,74,59,6,24,80,30,10,11,89,15,16,33,37],comparegreat:34,spring:71,creation:[63,57,17,59,50,83,46,90,40,25,13,37,29,58],some:[0,39,55,56,57,17,18,54,60,62,63,65,66,67,68,53,70,71,72,74,4,13,58,42,59,43,6,78,24,25,28,29,81,30,82,31,45,10,50,11,46,47,12,34,35,80,87,36,48,32,89,69,15,84,90,16,33,41,94,37,38],back:[77,87,74,58,59,21,60,83,62,25,11,68,46,45,50,71,72,33,34,84,29],understood:72,strongest:72,unspecifi:[72,18],sampl:[32,46],"0x1003faf30":16,instal:[30,4,13,86],scienc:[11,31],sizeof:[84,50,80,87,36,58,18,88,8,33,48,78,16,12,25,41,92,34,37],surpris:30,obj_fwd:[35,37],teco:15,scale:[30,62,15,67,71,34],laru:31,predefinit:51,mps_message_finalization_ref:[90,83,25],mps_awl_find_dependent_t:8,per:[17,31,32,62,11,15,50,13,94,84,18],block_on_client_with_timeout:29,substitut:[7,5,33],mathemat:[67,18],larg:[53,54,55,56,17,18,62,63,65,66,67,70,71,72,74,58,59,44,6,24,8,30,9,31,11,46,47,12,34,35,89,15,77,50,92],undon:83,leftmost:[59,18],prod:51,reproduc:[30,16,5,54],worst:[53,54,31,59,89,67,90,8,92],mps_message_discard:[0,90,36,25],link_t:84,machin:[56,58,59,62,63,65,67,70,71,72,74,13,88,30,82,31,10,11,84,34,15,51],mps_var_:51,run:[0,39,56,17,18,54,60,62,63,65,66,70,71,72,4,13,58,42,59,5,44,6,24,25,29,30,31,10,8,11,34,35,86,87,15,84,90,16,33,41,94,37,51,52],mps_fmt_t:[9,79,10,22,37,46,2,8,27,28,35],epdrpoolclassstruct:41,nmake:[4,51],pietro:31,step:[39,17,18,33,70,84,46,24,16,25,27,37],convent:[20,55,56,57,18,30,60,65,70,48,74,41,51,52],mps_ap:16,squeez:66,santa:31,not_condemn:[0,16,25],mps_pool_walk:46,from:[0,39,55,56,57,17,18,54,60,61,62,63,65,67,68,53,70,40,72,74,3,4,75,34,58,42,50,59,5,21,44,22,78,79,24,7,8,26,27,88,29,81,30,82,9,31,10,25,11,46,47,12,92,13,35,85,80,87,48,1,32,43,89,69,15,37,84,77,90,83,33,41,71,94,6,51,38],subtract:[0,30,17,59,71,33,35],impos:[90,56,40,18],mps_class_mvff_debug:[92,28,1],proven:[54,69],constraint:[90,56,36,59,45,61,6,11,69,24,70,12,25,35,29],coexist:74,proce:[39,42,87,17,10,65,70,33,92,29],preclud:38,prove:[53,59,60,90,69,70,80,37],lieberman:[55,31],vmalloc:31,idl:[36,29,52],mean_siz:77,alfr:31,slot_high:92,abstractarenaclass:6,"r\u00f6jemo":31,uncach:6,cutoff:47,frob:51,real:[42,30,31,62,83,15,68,24,71,12,65,74,34,72],colorado:31,primarili:[41,6,63,17,80],mps_ap_create_v:84,digraph:55,intl:31,within:[39,54,56,57,17,18,62,70,71,72,74,24,7,29,81,30,82,10,50,46,34,35,33,37,51,38],programat:35,toft:[31,15,72],myseg:41,rankweak:34,mps_message_clock:0,obj_:37,contributor:5,lesson:44,fopen:32,mps_key_rank:[79,25,28,8],mps_args_:28,trampolin:94,occupi:[42,18,62,65,69,16,72,29],inclus:[77,37],span:[39,54],mask:[82,18],carnegi:31,mythic:59,fledg:7,megabyt:[53,62,70,37,58],"0xfdfdfdfd":46,fast:[39,30,56,36,17,31,77,50,89,84,59,71,33,41,57,13,63,37,18,58],custom:[82,50,31,15,25],adjac:[54,56,57,58,30,89,12,73,50],reserve_depth:77,arithmet:34,includ:[39,53,55,56,57,58,18,54,72,61,62,65,67,68,70,71,2,4,75,34,59,5,88,77,6,79,24,7,32,25,27,28,29,30,9,31,10,8,11,46,48,13,35,85,80,87,89,15,37,16,50,41,92,22,51,38],suit:[72,15],forward:[84,54,86,57,9,18,79,60,22,8,65,37,46,71,2,74,41,27,35,58],nepot:61,superpag:[71,66],busytrac:6,cbss:50,properli:[32,46,71,12,13,29],obj_unus:25,repeatedli:[54,77,63,46,71,29],subgraph:71,subsidiari:[46,50],mpscmf:85,teach:15,decomposit:18,navig:11,dgc:56,link:[54,56,57,67,70,71,72,74,19,4,84,20,21,25,30,31,8,11,13,15,78,3,50,38,51,52],translat:[17,31,45,6,70,65,68,46,59,74,62],atom:[42,30,59,31,43,6,63,41,94,84],cbsblock:50,line:[42,50,17,25,15,84,46,16,80,8,4,13,51],mitig:30,mminfo:[18,21,6,43,83,46,7,80,50,26,3,51],ismm:31,sdk:4,info:42,concaten:21,consist:[53,56,57,17,18,62,1,73,74,34,42,21,24,88,29,81,82,10,46,41,35,86,43,84,16,50,37,51],confusingli:[72,15],pool_debug_opt:28,caller:[60,83,65,80,37,51],pkg_add:4,adequ:29,tightli:37,unlock:41,mps_roots_stepper_t:82,highlight:[84,31,25],mps_defin:[90,83,25],btsize:18,similar:[53,54,55,56,57,58,59,62,63,65,66,67,68,69,70,71,72,74,34,5,77,6,25,29,82,32,83,41,15,84,37],clear:[30,87,58,18,60,74,67,16,71,72,25,13,33,34],impl:[18,21,6,43,46,7,80,50,41,34,51],w3i3mv:[4,34,88],caught:94,event_label:13,obviat:46,mps_end:46,command:[0,10,15,16,4,13,51],doesn:[42,30,87,57,17,18,44,6,25,62,84,24,71,12,8,41,34,22,29,38],repres:[84,54,55,57,58,18,63,48,66,68,69,70,71,72,74,34,59,6,25,28,30,82,31,33,46,13,35,87,90,50,37],poolasm:80,proper:30,incomplet:[21,60,32,43,83,48,46,7,26,3,34],septemb:[46,31],dconfig_var_df:51,aggrav:30,flexowrit:13,getthreadcontext:39,singli:50,phantom:[67,71,72,15,74],oberon:15,pronounc:56,sequenti:[54,58,31,77,62,65,70,71],tag_data:46,sheetal:31,invalid:[0,42,82,81,58,10,6,74,65,67,50,40,72,25,71,34,84,29],setsparecommitlimit:6,appendic:20,"000ae03973361d5a":13,priori:[77,37,72],gonthier:[31,74],librari:[39,17,62,48,71,74,3,4,58,20,21,35,30,31,45,32,13,49,86,15,16,51],buckets_t:25,retract:6,mps_scan_end:[82,17,8,33,37,78,25,35],nice:46,btdestroi:18,draw:[55,71],llvm:[39,88],users:13,gigabyt:[53,70,58],event_al:51,benchmark:44,caml:15,mps_rm_prot:[82,74],w3i3m9:88,william:31,elsewher:[34,87,35,17,21],meaning:[6,7,13],wrongli:1,eval:[90,16,25],unwind:83,dram:[56,71],alloc_pattern:47,param:51,deserv:46,lang:[15,67,71,72,74,41],pmo:31,infrequ:[24,63,72],algorithm:[53,30,36,18,31,89,62,70,15,66,67,24,59,71,65,92,57,72],vice:[42,6,25,15,8],ams_is_invalid_colour:10,bibliographi:[20,11,31,30],bateman:93,discrimin:[34,70],depth:[77,63,37,31],appendix:[13,90],unconnect:66,dot:13,leak:[0,30,31,62,63,11,15,53,71,12],mps_arena_unsafe_expose_remember_protect:29,fresh:80,leah:93,oop:[16,31],unclamp:[69,57,29,74],io_o:32,code:[84,54,56,57,17,18,60,62,63,65,68,40,72,74,4,13,58,42,59,5,43,6,49,25,29,81,30,82,9,45,10,50,11,46,47,12,34,35,80,36,48,1,88,89,15,90,33,41,71,52,94,37,51,38],partial:[30,57,18,59,77,71,41,84],edg:[53,61,55,70,71],mps_arch_al:88,scratch:[24,84],cbsfinddeletenon:50,fclose:[32,25],recomput:29,pthread_mutex_lock:43,mps_prod_str:21,mps_fmt_fencepost_wrap:46,attrbuf_reserv:34,mps_arena_spare_commit_limit_set:[6,71,29],holdout:30,searchbas:18,mps_builder_:51,cbsinsertisolatedrang:50,compact:[42,56,57,58,31,62,63,15,66,69,71,72],root_scan:82,privat:[6,71,84,48,25],simon:31,pthread:43,secur:[62,15,74],quarterli:31,tracecondemn:80,migh:46,young:[53,22,57,55],send:[67,91,94],mps_arena_step:[36,29],granular:[6,29,66],carefulli:[30,61,83,70,74,51],tricolour:[67,70,71],mps_arena_park:[22,29,74],becam:[90,59],visitor:[68,71],exit:[30,55,18,65,37,90,16,94,35],fatal:13,sent:[10,13],isresetrang:18,fly:31,random:[54,16,71,72],mainstream:54,btreturn:18,peyton:31,amcss:[4,34],electron:[62,11,31],untouch:[10,34,18],implicitli:[41,63,62],popl:31,relev:[53,54,55,56,57,58,18,62,63,65,66,67,68,70,71,72,74,59,82,11,37,51],weak_array_scan:8,tri:[42,53,57,17,10,62,50,65,66,67,46,69,70,71,12,8,34,58],mps_ld_t:[87,25],mps_ld_isstal:[63,87,25],salad:71,question:[39,20,57,5,30,10,15,23,46,91,4,37,29,38],complic:[72,46,51,18,74],joel:31,scalabl:[42,41,71,31],michael:31,fewer:[30,11,18],mps_io_creat:32,"try":[39,30,82,17,43,42,46,24,71,51,8,13,37,29],poolclasslo:18,race:[10,41,84],attrgc:34,freed:[30,56,57,58,59,54,77,6,63,11,24,71,12,74,84,37,62],rdoss:31,pleas:[39,5,10,11,48,91,16,4,94,84],app:4,impli:[30,5,54,60,6,15,71,13,51],smaller:[57,58,1,63,89,46,71,74,92,34,38],fortun:[42,68,24,31],readabl:[13,52],weslei:31,"0x3":82,natur:[42,56,58,59,88,77,10,85,15,46,12,73,8,61,92,34,75,38],inconsist:[94,65],memset:[32,34,16],elisp:15,mps_message_type_t:[0,62,36,90,25],crop:15,jump:80,fold:46,compareequ:34,mps_key_arena_cl_addr:[],s7ppac:88,"0x1003f9be8":16,download:[4,37],hyper:53,spaghetti:[71,57,51],rivera:31,append:16,mps_ss_:48,compat:[34,73,41,5],index:[20,87,17,18,54,15,67,71,65,74,34,58],lockclaimglobalrecurs:43,compar:[30,57,18,31,32,6,15,66,24,72,50,34,58],"0x1003f9c08":16,resembl:[56,57,58,15,1],"1003fc000":13,han:[93,31],mpmst:80,experiment:[18,15,88],tom:93,mps_rank_weak:[82,8,67,78,72,25],mps_clock:[0,32,48],cele:15,mps_key_extend_s:75,journal:31,deduc:42,whatev:[57,17,32,46,29,51],penalti:72,ramsei:31,led:18,chose:70,boolcheck:34,inlinedescriptors:50,"__assert_rtn":16,mps_args_non:[84,28,37,25],mps_message_type_gc:[0,62,36],closur:[57,31,59,80,15,66,50,51],waldemar:15,let:[60,10,16,37,46],ubuntu:39,tenur:[30,70,31,74],"0x0000000100003ea6":16,becom:[0,54,56,57,17,62,65,53,69,71,72,74,24,25,29,81,30,82,11,12,84,15,90,50,93,37],sinc:[39,53,56,17,18,54,60,62,67,40,34,58,42,6,24,25,29,30,82,32,41,35,85,87,36,89,15,84,16,71,94,37],mps_arena_commit_limit:29,attralloc:[10,34],convert:[50,18,21,32,6,43,83,46,7,80,33,26,3,13,34,51],survei:[11,31],convers:[46,6,48,15],overcommit:[60,62],artifici:31,hilfing:31,conceiv:51,larger:[54,56,57,17,18,61,63,70,71,72,58,44,29,30,11,12,35,87,36,89,15,77,50,37],technolog:[30,57,31,68],oldsiz:50,later:[0,30,87,36,17,74,11,39,24,71,25,57,29],resurrect:[84,90,72],epdl:41,epdldbg:41,bufferdestroi:80,initialz:41,earli:[30,17,31,62,65,59,71,15,18],chang:[53,56,57,17,18,62,63,65,67,70,71,74,4,13,42,21,6,24,25,26,29,81,82,31,45,83,80,11,46,48,34,87,36,89,50,37,51,38],perform_client_act:29,chanc:[46,94],"0x00000001000014e3":16,marc:31,ansi:[39,30,57,58,43,32,48,4,13,51],calibr:32,mpsclo:9,kurtz:15,clark:[60,31],danger:[10,41,89],mps_lib_fputc:32,approxim:[42,30,82,56,36,59,54,6,63,53,72,34],aquir:93,foundat:42,sqlite:[4,13,52],apt:4,"0x1003f9bc8":16,"boolean":[41,6,34,48,50],immut:[68,62,65,15,25],validli:[84,78,90,35],greg:31,microcod:15,tailor:31,fee:5,metaphor:46,zip:4,commun:[0,56,57,31,62,15,67,46,24,65,50,26,35,72],doubl:[53,56,36,17,31,69,59,12,74,34,29,58],coordin:[46,62],next:[39,54,57,17,18,61,68,53,71,84,42,77,6,25,29,50,11,47,12,41,35,86,36,89,16,33,37],few:[39,30,57,17,18,60,89,63,11,15,48,70,53,16,12,25,29,58],dconfig_plinth_non:[32,4],busi:[6,83,15,5,8],usr:4,protic:31,lesli:31,jonathan:31,postpost:1,remaind:[54,89],sort:[0,30,55,87,58,34,62,42,71,72,3,13,35,51],mps_ap_create_k:[79,84,25,37,8],clever:46,comparison:[34,50,87,25],fillmutators:6,mps_fmt_create_:35,pfm:51,mps_fix12:[48,33,35,37,8],classes_count:12,cbsfinddeletehigh:50,mps_key_arena_s:[28,37,29],rare:[53,63,57,59,10,6,74,70,71,12,50,84,37],rusage_self:32,structu:1,goal:91,interven:[47,12],mps_pf_:[51,88],account:[42,6,57,24,25],hoard:31,retriev:[0,36,18,83,68,90,71,29],augment:60,cannarozzi:31,alia:[84,82,87,60,10,48,70,72,32,34,41],annot:[51,17,15],larch:31,plinth:[0,20,34,32,48,49,74,4,13],obvious:[46,41],meet:[6,51,35,18,50],tracescanseg:16,fetch:[30,57,17,74],aliv:[61,30,63,9,59,79,8,10,33,78,65,67,44,90,71,72,25,37],proof:10,control:[39,54,55,56,57,17,18,62,65,70,71,72,34,42,59,6,24,7,29,81,30,82,31,45,32,11,46,48,13,85,15,84,16,50,94,37,51,38],config_var_hot:[10,51,66],weaker:74,bitmap:[57,58,65,70,71,13],process:[53,56,57,17,59,62,65,66,67,68,70,71,72,74,4,76,58,42,21,44,24,25,29,30,31,10,8,13,89,15,90,33,37],lock:[39,20,63,43,10,6,45,35,84,90,87,41,34,94,37],loci:42,"0x00000001003f9ae0":16,divis:[57,58,31,15,67,71],high:[30,56,36,18,31,62,50,70,15,59,71,65,33,92,13,58],protix:16,lispwork:15,fprintf:[32,16,37,33],mps_arena_commit_limit_set:[10,57,29],"002d":13,mps_mv_free_siz:75,onlin:51,subsystem:31,giusepp:[93,31],everywher:[37,58],kib:17,"0x7fff5fbff0a0":16,minlength:18,link_:84,six:[92,4,72,31,88],smoothli:[36,37],"0x10012a5a0":16,georg:31,brian:31,sig:[41,7,31],mps_thread_dereg:[82,94,37],fence_s:1,fencealloc:46,mps_pf_xci3gc:88,l979:31,circular:[61,70,31],prottramp:16,delai:[77,90,16,31],"_addr":[37,33],overridden:[6,41,51],"1078c85b8":13,interchang:[55,72],watch:62,bufferfinish:80,gcc:[39,18,88,16,4,37,51],inst:41,attent:30,attenu:50,redund:74,philosophi:15,physic:[30,59,68,44,61,62,65,60,69,70,71,72,74],mps_arena_releas:[69,16,29],alloc:[39,53,55,56,57,17,18,54,60,61,62,63,65,66,67,70,40,2,74,75,34,58,42,20,59,43,44,6,78,23,79,24,50,8,27,28,29,81,30,82,9,31,10,25,11,86,46,47,12,92,13,35,85,80,36,48,72,94,89,15,37,84,77,90,16,83,33,41,71,52,1,22,38],drop:[67,24,76],essenti:[0,60,15,71,74,37],"0x1003f9948":16,bind:[16,57],init:[6,50,46,80,84,41],chapman:31,serrano:31,issu:[58,59,62,11,90,71,3,94,18,52],chief:[93,29],stavro:[93,58],unaccept:[30,71,65],freebsd:[39,4,94,51,88],oslo:[0,15],fallback:50,longest:34,mps_tag_a_:46,elif:51,neglect:[0,10,15],poor:[30,36,61,62,11,24,74,37],larson:31,ouput:29,berger:31,train:31,move:[39,54,55,56,57,17,18,61,62,63,65,66,70,71,72,74,75,84,58,42,77,6,79,24,8,26,27,29,9,45,25,12,22,34,35,85,80,87,15,90,33,92,37,38],microsystem:15,cbsblockbas:50,mps_root_creat:[82,57,37,74],notabl:[42,34,56,59],uniprocessor:31,jni:74,mps_message_gc_live_s:36,perfect:[36,58,74],pai:[30,17],famili:[88,51,15,58],movabl:[38,74],acycl:7,chosen:[42,17,61,89,69,24,71,37,29],concept:[17,31],mps_os_so:88,culprit:10,whether:[0,53,57,17,18,54,60,63,65,72,74,34,42,5,88,6,24,25,26,29,30,82,50,83,46,41,35,80,87,84,33,92,37,38],mps_addr_t:[84,17,59,48,70,72,34,22,78,25,28,29,81,82,8,83,46,12,13,35,87,90,16,33,37],mps_os_su:[51,88],mps_class_lo:[28,9],therefor:[54,82,57,59,77,50,90,35,24,70,71,72,33,34,66,37,29],symbol_:[84,37,25],trace_max:[6,34],uninitialis:74,cbsfinddelet:50,junction:61,fourth:37,python:[30,11,15,74],auto:[9,22,8,79,33,27,35,38],overal:[44,37,17,18,21],mps_build_gc:88,handi:[67,71,74],mention:15,mps_root_create_reg:[84,82,70,94,37],snake:74,arenafre:6,instead:[84,56,57,17,18,63,48,67,70,13,72,75,41,42,6,24,7,25,27,29,81,30,9,10,8,83,46,12,34,32,15,16,33,71],front:[54,63,36,29],arenadestroi:83,scatter:[24,55,31],mps_alloc_dbg:46,mps_arena_clamp:[57,29],type_pair:[13,16,37,33],mps_arena_formatted_objects_walk:[22,71,35,29],config_plinth_non:32,anyth:[39,30,82,17,54,42,46,24,33,4,37,51],edit:[6,21],iglio:31,tran:6,myunnoteseg:41,dominiqu:31,arenawrit:83,februari:42,mode:[0,53,82,57,77,50,15,46,16,72,74,34,37,52],truth:33,obtain:[0,57,5,10,62,89,15,68,71,34,29],stock:[31,15],walgenbach:31,cbsfinddeleteentir:50,whiten:80,subset:[42,82,18,77,80,71,72,50,37],societi:31,"__gc":15,accessnon:34,map:[30,63,57,58,18,54,60,32,6,74,68,46,69,59,71,51,25,62,29,72],arenaringinit:6,chunk:29,cbsblocklimit:50,mps_os_fr:88,remap:74,predic:[68,41,62],consum:[0,65,40,29,51,72],"static":[0,39,56,57,17,59,66,70,71,72,34,43,6,25,30,82,31,45,46,41,87,15,16,33,37],attrfre:34,fluctuat:[77,12],our:[6,11,48,25,34,13,38],mps_res_commit_limit:[10,12],mps_arena_collect:[22,16,29,74],mps_fmt_isfwd_t:[35,65,37],special:[39,54,55,57,58,59,60,63,48,40,72,74,13,5,6,79,8,30,45,10,50,11,41,34,89,15,90,83,33,71,37],obj_gen_param:37,variabl:[84,56,57,17,59,60,62,63,48,71,72,1,19,75,13,20,43,77,22,79,24,25,27,29,81,30,82,9,31,32,8,11,46,41,80,15,50,92,52,37,38],eqv:[0,90,16,25],nick:[93,51,31],"th\u00e9se":31,contigu:[54,17,18,60,6,63,65,46,71,50,62,58],bag:58,influenc:[57,15],req:[18,6,83,46,50,41,51],facto:79,bobrow:[56,31,15],categori:[72,13,34,52],pooldescrib:80,mps_key_mfs_unit_s:[28,85],suitabl:[39,54,58,18,62,63,65,59,5,43,8,27,30,82,32,12,13,35,89,50,37,38],sever:[54,56,57,17,18,61,63,71,74,84,42,44,6,29,30,50,11,46,41,1,89,15,77,33,92,37,51],hardwar:[42,55,56,57,58,31,45,62,11,15,23,70,24,59,71,65,74,35,29],iam4cc:88,ref:[42,82,74,18,43,33,83,78,65,37,67,90,71,72,25,26,13,34],old_symtab:37,ree:[18,21,6,43,83,46,7,80,50,26,3,51],franc:31,insid:[81,36,17,31,22,65,16,33,94,35,18],parenthesi:48,fmt_a:35,frank:31,manipul:[30,18,6,63,15,67,7,71,50,94,35],powerpc:[4,65,88],arena_class:29,"0x1003f9bd8":16,york:31,usual:[0,53,55,56,57,17,18,54,61,62,63,65,66,67,68,70,71,72,74,84,58,42,59,24,25,29,30,10,80,11,12,41,35,39,87,89,15,90,33,92,37,51],releas:[30,82,36,21,10,6,43,90,48,54,1,80,25,4,94,29],mps_fmt_create_a:[37,35,25],mps_mortal:36,queri:[13,62],afterward:[82,33,29,25],refset:[42,6,34],reslimit:34,"000ae03973336e3c":13,walker:[46,80],intrus:31,tru64:[4,88],unwant:15,could:[55,18,60,62,83,66,70,13,72,4,41,42,24,27,29,82,10,50,11,46,34,87,15,33,37,51],lexer:37,put:[42,54,87,57,18,60,8,62,25,83,48,46,69,74,29],segreg:[54,55,58,63,71,2,75,20,77,22,79,25,27,81,9,8,12,85,86,33,92,38,37,52],timer:13,david:[18,31,43,21,83,80,3,93],counterpart:[84,1],length:[0,87,36,18,8,37,84,16,25,41,13,33,34],enforc:94,wrote:[10,32],outsid:[42,30,55,60,46,38],mortal:[53,36,31,44,22,15,65,27,37],retain:[30,56,57,5,77,11,65,71,50],"universit\u00e9":31,scarc:[54,90],austin:31,softwar:[42,20,56,57,31,5,21,30,45,15,3,29,58],isbn:31,suffix:51,christoph:31,mps_class_amcz:[28,2,25],qualiti:32,port_clos:25,echo:13,date:[42,24,45,37,21],haskel:[11,31],lib:[4,51],facil:[42,43,32,6,46,50,41],buckets_find:[87,25],suffic:25,ecoop:31,prioriti:50,avert:41,supposedli:59,dump:46,strict:[53,57,58,5,71,72,50,41],unknown:[0,10,67,77,39],mps_arg:28,perfectli:30,system:[39,53,56,57,17,59,54,60,62,63,64,65,66,67,68,70,71,72,74,3,4,41,58,42,20,5,43,44,6,23,24,50,91,8,29,81,30,82,9,31,45,10,25,11,12,13,35,86,48,32,88,89,15,84,90,16,33,94,37,51],messag:[0,20,36,59,30,32,62,83,90,15,54,67,91,25,13,81,84,41,29,52],size_io:46,attach:[0,58,6,46,70,12,84,37,62,72],attack:62,poolcheck:7,btcopyinvertrang:18,termin:[54,59,18,10,32,50,70,33,13,84],"final":[0,39,17,54,67,70,72,74,75,42,20,77,6,78,79,25,26,27,28,30,9,31,45,8,83,22,34,85,86,15,90,92,38,37,52],poolreclaim:80,prone:30,configura:83,shell:13,ferrit:57,deregist:[82,83,90,94,37,29,38],"__del__":15,obj_quot:37,juli:[46,31],shallow:7,accompani:[51,5],lockreleaseglob:43,enqueu:[67,71,72,74],diminish:44,exactli:[53,56,57,18,60,8,11,48,46,50,74,34,63,41,51,38],steel:[42,58,31],unmap:[54,62,68,69,71,72,29],holland:31,cpython:15,bloat:30,tr94:31,couldn:[82,36,35,46,25,37],mps_io_:32,aaron:34,emac:[0,10,53,15],structur:[39,53,56,57,17,18,54,60,62,1,64,65,66,70,71,72,74,41,58,42,20,59,21,6,24,7,8,28,29,81,30,31,45,10,25,11,46,47,12,50,34,35,85,80,87,36,48,32,43,15,84,16,33,94,37,51],epdrinit:41,claim:[43,10,6,70,41,94],mps_res_resourc:[10,12,29],sens:[54,57,58,63,68,71,25,37,38],mps_arena_commit:[62,29],seriou:[39,30,72],dubiou:[69,18],exp:16,spaceaccess:80,stdio:30,bet:46,busili:24,exhibit:[63,58],counter:13,"0x00007fff91aeed46":[13,16],freefre:1,mps_root_destroi:[82,37],linker:[71,51],deprec:[81,82,9,18,77,22,33,48,84,79,90,40,2,8,92,13,75,94,27,29,85],mps_pf_align:[85,88,77,61,6,8,75,51,38],correspond:[53,54,17,18,62,70,40,72,58,43,6,78,79,8,28,29,82,25,83,47,34,35,80,88,90,50,94,22,51],arenaaccess:6,corrupt:[30,56,59,10,46,16,1,13],scientif:15,usenix:31,have:[0,39,55,56,57,17,18,54,60,61,62,63,65,67,68,53,70,40,72,74,4,75,34,58,42,50,59,21,77,6,78,76,79,24,7,91,8,27,28,88,29,81,30,82,9,10,25,11,46,47,12,92,13,35,85,80,87,36,48,1,32,43,89,69,15,37,84,90,16,83,33,41,71,93,94,22,51,38],ari:31,need:[0,39,55,56,57,17,18,54,60,61,63,65,66,67,53,40,2,74,4,34,58,42,59,43,22,78,79,24,8,27,28,29,30,82,9,10,25,11,46,12,92,13,35,80,87,36,48,72,32,15,37,84,90,16,83,33,41,71,94,6,38],ben:31,finalpool:6,element:[57,6,63,70,16,71,12,50,28,37],tidi:[0,86,37,51],flip_mask:13,optimis:17,runciman:31,lazili:[83,57],sdram:[56,71],depict:55,mpscamc:[22,2,48,37],min:[6,51,50],findlongresrang:18,"0x1003cbe38":16,accuraci:[67,34],mix:41,unawar:74,discret:[35,80],"0x7fff5fbff7d0":16,which:[0,53,55,56,57,17,18,54,60,61,62,63,65,66,67,68,70,40,72,74,4,34,58,42,59,5,21,77,6,78,76,24,7,25,26,28,88,29,81,30,82,31,10,50,11,46,47,12,13,35,85,80,87,36,48,32,43,89,15,84,90,16,83,33,41,71,94,37,51,38],mps_message_type_fin:[0,54,62,90,25],mip:[4,88],addison:31,type_charact:25,singl:[39,53,56,57,17,18,54,60,62,63,71,72,42,59,43,44,6,24,8,27,28,45,46,41,89,15,16,50,94,37,51],uppercas:48,btisresrang:18,radioact:31,unless:[53,59,48,74,75,13,77,22,24,8,27,30,9,25,50,11,46,84,85,33,92,37],rove:[61,89],clash:[41,48],deploy:[39,10,13],transmit:32,jun:[13,16],lockfinish:43,licens:[39,20,4,5],discov:[57,44,10,70,46,78,16,25,37,29],mpslib:[32,4],arenacr:6,rankambig:[26,34],awl:[20,56,18,8,67,78,25,19,38],eight:[67,51],intern_str:25,deploi:39,bjarn:[30,15],nostop:16,judici:30,"class":[39,53,56,57,17,18,54,72,1,65,67,68,40,2,74,19,4,75,13,58,20,59,77,22,78,49,79,8,27,28,29,81,30,82,9,45,10,25,83,86,46,12,92,34,35,85,80,48,15,37,84,90,33,41,71,52,94,6,38],morrisett:31,make_port:25,lee:31,placement:[6,59,31,18,74],weiser:[53,30,57,31,15],dens:18,instig:0,gather:[53,71,58],request:[39,54,57,58,18,62,65,66,67,53,71,74,75,84,42,59,21,6,91,25,29,81,10,80,11,46,12,34,85,89,15,16,50,92,37,38],face:[71,62,11,59],inde:[41,6,35,62,33],deni:80,snapshot:[67,71,65],determin:[0,53,56,57,17,59,54,63,65,66,67,68,69,70,71,72,74,3,84,42,21,6,78,24,8,26,29,81,30,82,25,50,46,34,35,80,87,15,90,33,37,38],xavier:31,constrain:[46,34,50],stichnoth:31,fact:[53,54,55,17,18,62,63,48,70,72,34,78,29,82,11,12,41,87,15,90,16,33,37],"000000010992f000":13,arenacheck:6,guei:31,gen_count:36,assert:[0,80,16,57,17,18,1,72,10,32,33,66,7,59,25,13,37,51,52],text:[58,59,45,15,71,80,13],verbos:13,"0x100002130":16,minski:[31,15],poolaccess:80,connect:[53,55,57,60,32,22,11,90,24,72],bring:[29,18],"0x000000010000447d":16,empir:31,totalreturn:16,parentclassnam:41,topmost:[71,36],trivial:[6,84,50],anywai:[41,43,87,25],duck:15,wors:[54,89],insertisolatedrang:50,textual:[80,50],locat:[0,54,55,57,58,18,60,62,63,65,67,40,72,74,34,20,59,43,77,6,24,50,8,29,81,82,45,10,25,11,46,12,41,35,86,87,36,48,32,89,84,90,83,33,71,52,94,37,38],materi:[30,5],"0x00000001003f9a80":16,print:[0,50,15,37,90,16,80,25,13,34,29],youngest:53,correl:77,rash:[57,59,10,66,68,72,51],should:[0,54,17,18,62,65,67,70,72,1,4,75,13,42,44,6,79,7,25,26,27,28,29,81,30,82,31,10,8,46,47,12,34,35,80,87,36,48,32,84,77,90,16,50,41,37,51,38],mps_ld_merg:87,held:[6,50,12,43],smallest:[53,57,58,89,71,12,50,34],suppos:[26,82,12,18],preturn:80,mps_capac:36,"0x00007fff90509df0":16,various:22,"0x1003fad48":16,local:[54,56,57,17,59,61,62,63,65,68,70,71,72,4,84,58,43,24,7,30,82,31,32,11,48,41,35,89,33,37,51],hope:[82,51],mps_ap_alloc_pattern_begin:[47,72],meant:[54,71],count:[53,54,56,18,60,61,62,63,67,71,72,76,59,43,23,24,25,28,29,30,82,31,46,34,15],protstruct:51,changeov:17,mps_fmt_pad_t:[37,35,74],contribut:[42,93],mps_block_siz:12,lii4gc:88,findfirstbefor:50,tract_of_addr:6,make_str:[16,25],simplest:[84,4,70,37],memcpi:[32,34,16,84],bear:44,neighbour:50,joint:31,theori:[62,59,58,5],lockinit:43,lockix:10,meter:51,cbsblockdescrib:50,increas:[53,30,57,54,60,10,51,83,67,47,12,13,89,29,72],debugpoolcheckmethod:41,cbsgl:50,thomson:93,obj_fmt:[37,35,25],amcz:[20,9,33,2,25,19,37,38],extract:21,enabl:[0,10,32,8,90,71,25,41,13,37],organ:30,whilst:80,underscan:[27,16,86],caudil:31,stanford:31,symtab:[82,37,25],mpscam:27,grai:[53,57,58,60,65,67,70,71],stuff:51,mps_sac_destroi:12,integr:[39,42,59,88,10,62,15,37,48,46,51,25,34,27,29],partit:[61,6,72,31,45],contain:[84,54,55,57,17,18,72,62,1,65,67,70,71,2,74,4,75,13,58,42,59,5,21,77,22,78,79,24,50,8,27,28,29,30,82,9,25,11,46,48,34,35,85,80,87,36,43,37,90,16,33,41,92,6,51,38],grab:92,btfindlonghigh:18,btfindlongresrangehigh:18,view:[39,42,58,59,43,6,65,54,46],mvff:[20,62,1,92,50,19,75,38],conform:[57,18,32,48,41,51],legaci:4,modulo:87,inexplic:59,bucket:[53,87,57,58,59,74,25,37],frame:[54,56,57,59,65,40,74,75,20,77,22,79,8,27,82,9,92,13,85,16,71,38,52],knowledg:[77,89,11,71,50,41,37],bty:18,btx:18,flip:[42,54,58,45,6,84,70,34,94,13,29],veljko:31,temporarili:47,now:[0,30,57,17,18,54,62,25,83,15,84,80,74,13,81,28,37],stack:[39,55,56,57,17,59,65,66,70,40,72,74,19,20,77,22,79,24,8,27,28,30,82,9,31,11,47,92,84,85,15,90,16,71,94,37],modulu:18,mps_add_fencepost:46,mps_pf_fri6gc:88,polymorph:[34,41],statu:[30,50,88,8],error:[84,54,56,17,59,60,62,1,65,69,71,72,74,13,58,20,22,8,27,29,81,30,82,25,10,33,83,47,12,34,35,80,87,36,48,32,16,50,37,51,52],correctli:[87,59,33,65,80,84,41],reform:51,mps_os_xc:88,boundari:[57,18,31,63,65,59,71,92],segment:[53,17,18,62,63,65,67,71,72,74,75,34,58,42,59,6,80,46,41,85,13,92],below:[39,57,18,33,80,4,13,43,44,6,24,25,29,30,82,10,8,11,46,41,36,88,89,84,90,16,50,37,51],mps_ap_:[84,48],tend:[58,18,11,67,33,17],favor:30,state:[0,56,57,17,59,62,65,69,71,72,74,34,42,43,6,80,29,81,82,32,50,46,48,22,41,35,15,33,94,37,52],sparecommitlimit:6,entrant:[72,10,35,50],mpseventsql:[86,4,13],mps_fmt_auto_header_:[35,33],crude:60,progress:[42,53,36,31,63,91,74,57,13,29],neither:[81,82,56,74,67,7,50],induc:15,tent:46,locksiz:43,javascript:[11,15],kei:[53,56,17,8,11,15,67,46,78,50,25,28,87],amen:34,lamport:31,appopri:12,supplant:15,mps_res_unimpl:10,job:[30,22,11],entir:[30,80,17,18,44,62,8,11,69,15,24,50,71,65,74,29],mps_fmt_a_:[37,35,25],fri3gc:[4,88],argument:[0,57,18,64,48,67,2,1,75,41,42,20,8,6,79,25,27,28,29,81,82,9,31,10,33,12,22,34,35,85,84,77,50,92,94,37,52],amer:31,swift:57,addit:[84,56,57,58,18,60,70,13,17,42,77,22,79,24,8,27,29,30,9,11,46,12,41,35,89,15,90,92,37],mps_fix_cal:[35,33],attrpm_no_writ:34,drum:[71,58],bucket_:[87,25],mps_class_mv:[75,28],unformat:[77,46,92,38],obtrus:24,mps_arch_pp:88,ramp:[47,36,72,52],equal:[57,18,31,32,35,67,50,4,34,29,58],jersei:15,mps_pool_creat:[81,9,77,22,79,2,8,92,27,75,85],jin:31,detlef:31,instanc:[54,82,17,59,77,32,6,80,65,67,46,70,71,50,34,41,62,58],grain:[53,61,6,67,50],equat:58,committe:15,mps_class_mf:[75,28,85],section:[42,50,87,18,43,10,8,11,70,45,33,25,4,37,51,38],freeli:[35,5],prot_foo:51,cactu:[71,57],suno:[4,88],boyer:[31,18],"0x00000001003f9b40":16,comment:[0,17,50,33,80,93],unimpl:34,unmark:[62,71],english:[57,36],steadili:77,guidelin:[41,45],rarer:56,arriv:67,arena_high:92,walk:[46,35,80],solv:[30,31,62,25,24,71,50,37],ucb:31,commenc:29,respect:[42,87,58,18,43,10,6,70,15,59,71,50,34,37],leftblock:50,traceset:[6,34],seligmann:31,mailto:5,quit:[30,82,57,59,54,61,15,67,46,24,70,13,37,38],longword:[56,63],slowli:13,pin:[61,22,33,74],mps_build_eg:88,platform:[39,53,18,61,63,48,67,72,74,4,75,13,20,21,77,45,32,34,49,85,86,88,15,50,92,94,37,51,38],addition:[30,18,62,48,47,41,29],decent:38,accumulatorreset:34,compos:[89,31],insuffici:[84,50,40,15,74],compon:[42,30,5,21,6,15,72,4],plezbert:31,treat:[55,56,8,25,90,87,80,74],tactic:37,immedi:[42,30,82,56,81,58,21,77,25,65,68,69,16,40,33,37,29,87],"0x000000010002d020":16,mps_pf_lii3gc:88,field:[84,54,55,57,58,18,60,63,65,70,71,72,74,34,42,6,7,8,26,28,25,11,46,41,35,80,15,37,51],set_mask:13,memcmp:[32,34],both:[84,56,57,17,18,65,13,72,1,41,43,6,24,25,29,8,33,11,46,92,48,22,34,15,90,50,71,37,38],presenc:[87,59,63,46,24,8],decai:[53,31],forestal:74,deliber:[62,37],zero:[0,56,1,17,59,72,61,63,67,33,2,74,19,13,20,76,24,32,28,30,82,9,25,10,8,12,34,80,15,50,37,38],togeth:[53,54,36,59,18,77,89,11,37,46,72,66,35],colnet:31,reinhold:31,plausibl:[30,18],present:[42,53,43,32,25,11,70,47,71,80,33,34,37,51,38],statist:[13,36,17,29],determinist:16,multi:[39,30,5,31,43,6,63,70,59,72,74,84,94,37,62],cbsinit:50,obj1:41,plain:18,align:[53,1,17,18,61,63,65,67,69,70,80,74,75,84,58,59,88,77,6,79,50,8,27,28,29,82,9,45,10,25,46,12,22,34,35,85,48,16,33,92,37,51,38],event_intern:13,corrigendum:31,fmt_b:35,unsuit:24,defin:[0,54,57,58,18,61,65,66,70,71,72,34,43,7,32,88,82,10,25,83,46,48,41,80,21,90,16,33,37,51],deem:29,talpin:[31,15,72],rightblock:50,glossari:[53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,76,20,30,11,14,93],s7ppmw:88,sep:51,observ:[53,30,58,59,63,90],april:31,mps_os_o1:88,layer:[71,11,89],fwd2_:37,conclus:30,incapacit:13,cell:[60,67,57],almost:[39,30,59,15,67,46,84,37],"5th":31,site:[30,91,54],bodi:[53,41,63,91],mps_args_add_field:28,mps_pool_class_t:81,archiv:[4,91],cbsinsert:50,attrfmt:[34,80],substanti:[24,56,72,15],buckets_fmt:25,r2000:88,protspong:51,revis:[50,57,31,25],foreign:[54,38,9,74],greater:[18,32,68,71,50,34,29],trap:[74,31,62,80,50,84],mutat:[42,53,56,57,59,45,6,63,69,15,67,54,24,70,71,65,74,34,62,29,72],mps_arch_:51,mps_mvff_size:92,"0x00000001003f9b80":16,referenti:54,satisfi:[81,54,56,59,18,77,89,35,71,74,84,66,37,38],cross:57,access:[0,53,56,57,58,18,60,62,63,65,66,67,68,69,70,13,72,74,3,4,41,59,43,22,24,8,30,82,9,32,25,11,46,12,34,35,80,87,36,48,15,84,90,16,83,50,71,94,51,38],member:[56,57,88,6,15,70,48,33,34,93],matthew:[93,7,31,50],anachronist:65,mps_reserve_block:[84,48],largest:[67,88,12,59,50],failur:[50,56,10,62,25,70,16,80,32,41,34,87],inc:31,infer:[71,59,15,72],optarg:46,leaf_pool:25,competit:77,undesign:42,http:[4,43],denot:[4,58,18],expans:[10,34,48,18,21],heapsort:66,maxlength:18,upon:[67,68,41,48,25],effect:[0,54,57,58,18,62,65,13,42,59,44,79,24,29,30,82,31,46,47,12,41,87,48,89,84,16,50,37,51],coffe:29,dai:[42,30,18,8],mps_pf_lii6gc:88,lii3eg:88,sooner:[30,16,17,29],student:15,dealloc:[53,54,56,59,60,62,74,65,66,71,1,75,77,22,79,8,27,30,9,10,80,12,84,85,15,50,92],customalloc:31,decoupl:51,blocklimit:50,expand:[88,10,48,15,34,41],mordechai:31,off:[55,57,43,60,89,70,46,16,71,80],cbsmayuseinlin:50,firstli:[6,62,17,15],mps_telemetry_databas:13,builder:51,obj_ap:[16,37,25],well:[0,54,58,18,62,63,48,68,77,40,4,41,42,44,24,50,25,27,30,8,11,46,12,34,35,87,89,15,84,13,33,71,38],morri:31,thought:[13,34],action_find_set_bit:18,exampl:[0,39,56,57,17,18,54,60,62,63,65,66,67,68,53,70,71,2,74,4,75,34,58,42,59,5,21,77,6,78,79,24,7,8,27,28,29,30,82,9,45,32,25,11,86,46,12,13,35,85,80,87,36,48,72,94,88,89,69,37,84,90,16,33,41,92,52,1,22,51,38],frombt:18,pda:71,mpseventcnv:[4,13],choos:[42,20,77,57,17,59,72,44,78,90,84,46,53,70,51,86,19,41,37,29,38],undefin:[30,18,32,6,48,90,70],colour:[42,57,18,45,10,67,70,71,34,29],btfindshorthigh:18,mckinlei:31,latest:[0,32,15,71,4,13],test1:18,test2:18,bye:0,paus:[30,36,44,6,11,65,24,72,57,62,29],less:[53,56,57,17,18,71,72,74,75,84,58,77,6,25,29,30,32,11,12,34,36,89,90,50,92,37],conv:[34,18],compel:30,pitfal:24,myseginit:41,mistaken:[84,25,8],metrowerk:[4,51,88],topic:[20,86,8,11,48,25,37],distant:[30,16],virtual:[17,59,60,62,63,48,66,67,68,69,70,71,72,74,88,6,24,65,29,30,31,10,11,12,84,15,37,52],heavili:[30,50],type_pad1:[16,37],paul:[93,31],zoneshift:6,systemat:56,brainpow:17,"00000001003fe000":13,gmk:4,web:[91,15],adt:[34,18,43],rapid:[31,15,50],tight:[13,89,17,15,24],dylan_scan_contig:17,close:[39,30,57,59,5,54,77,74,90,53,25,51],alloct:46,makefil:[4,51],hall:31,bits_act:18,add:[42,30,82,87,89,10,50,70,15,37,84,46,24,16,12,25,41,4,28,13],lower:[48,6,70,62,29],epdldebugcheck:41,mps_telemetry_control:[32,13,70,29],exempt:5,mps_pool_destroi:[81,90,37],ado:17,ought:6,match:[30,66,46,47,12,25,34,28,38],"0x00000001003fb0a0":16,jython:15,branch:[71,84,57,17,51],poolclassstruct:[34,80],dest:32,"002b":13,hpl:31,multiprocess:31,arguabl:41,sigsoft:31,built:[30,82,56,57,17,88,15,48,4,37],realiz:37,five:[42,82,58,77,62,24,35,17],know:[39,53,55,57,17,18,60,48,66,68,74,34,42,24,28,29,30,82,10,11,46,12,41,35,16,33,37,38],burden:53,nointersect:50,press:31,somewher:[30,82],lockclaim:43,recurs:[30,57,59,31,43,6,15,66,7,71,41],mps_arena_destroi:[90,13,37,29],motorola:88,resid:[42,56,57,58,67,68,71,72,41],like:[53,54,56,57,17,18,62,65,40,2,4,75,13,42,59,5,77,6,79,24,50,8,27,28,29,30,9,10,25,11,46,47,48,34,85,80,36,89,15,37,84,78,16,33,41,92,22,72],success:[39,53,63,48,66,40,72,41,43,32,29,10,50,11,12,84,35,87,34,15,13,90,33,94],safest:33,corpor:31,resio:34,lose:[60,54,56,71,50],roth:31,stagger:56,ref_p:90,necessari:[84,54,57,48,66,70,13,80,34,43,6,24,25,26,29,30,8,46,65,22,41,87,21,90,33,94,37,51],martin:[93,31],customis:[51,31],async:42,architectur:[57,58,59,63,65,66,67,69,70,71,72,73,74,4,84,42,20,21,6,8,26,82,31,45,80,83,46,13,88,37,51],soft:[67,71,72,15],page:[56,57,17,18,62,63,65,66,67,68,69,70,71,72,74,4,58,59,6,29,30,82,31,13,35,15,37],candi:51,provok:[10,16,30],unreach:[39,53,82,56,57,54,62,80,11,90,15,69,16,72,74,81,37,29,38],exceed:[34,10,6,12],revers:[0,30,18,54,70,71,41,37],unit_s:85,captur:57,"0x7fff5fbff3e0":16,mps_os_:51,yarsun:31,interact:[0,30,31,18,32,62,63,11,65,24,71,25,13,89,29,52],hain:31,self:[54,70,31],certain:[30,80,56,58,54,89,33,11,15,67,68,24,47,70,51,74,71,63,50,29,72],"__kill":[13,16],"_msc_ver":51,superclass:[46,41],flush:[0,32,71,12,13,37,29],piec:[30,57,45,43,89,24,70,1,29],guarante:[54,17,60,65,67,72,58,43,77,6,24,29,30,82,32,46,12,35,87,90,50,37,38],contig:6,peter:31,type_weak_t:8,mainli:[71,11,15,45],win32:43,subramanian:31,trust:72,leaf:[20,63,17,59,54,44,33,68,71,2,25,19,38,35,9],borland:15,lead:[56,36,58,59,60,89,62,63,70,16,71,92,51],broad:34,avoid:[0,53,56,57,17,61,63,65,66,71,2,74,13,58,5,43,44,6,25,29,30,50,83,46,48,41,49,34,89,90,33,37,51,72],mps_res_memori:[10,82,12,29],thank:93,overlap:[42,82,32,47,80,29],debug_opt:[92,27,75,1],estim:[54,36,17,15,29],leav:[30,56,17,18,54,32,46,24,71,29,58],disciplin:[72,15],overlai:72,launch:9,speak:[35,58],pollthreshold:6,mps_os_s7:88,mynoteseg:41,"0x1003fe928":16,encourag:[62,89,17],investig:[53,30,27],fromspac:[60,54,70,71],slight:[77,15],aitr:31,mps_build_cx:88,"enum":50,usag:[36,17,21,62,66,13,37,29,58],hosk:[93,57,31,74],facilit:[71,15],paper:[30,13,70,11],host:32,obei:[37,72],although:[54,57,59,60,62,65,70,71,41,18,43,6,24,7,25,30,11,46,48,34,15,50,38],offset:[80,71,35,18,74],java:[53,30,31,54,11,15,66,67,90,71,72,74],sigabrt:[13,16],stage:[42,17,71,33,13,49,51],about:[0,56,57,17,18,62,63,65,67,69,70,40,72,74,13,58,42,59,77,22,78,24,25,29,81,30,82,80,11,46,41,35,36,34,15,84,90,91,50,94,37,51,38],actual:[0,54,55,56,57,58,62,65,66,40,73,74,42,43,6,24,25,29,30,82,80,11,46,41,92],fri6gc:[4,88],world:[62,11,31,29],string_:[16,37],column:[13,88],freedom:[68,30,15,46],irix:[60,4,88],justif:[41,18],tracer:[42,6,34,45],mps_key_vm_w3_top_down:[],jouannaud:31,constructor:[30,56,57,59,15,37],fals:[0,81,87,41,18,6,50,48,37,84,12,33,26,92,34,35,29],discard:[0,54,36,50,90,47,12,25,57,84,35,29,38],hypothet:41,disabl:[0,6,17],conflat:50,sleepycat:5,harder:[89,65,15,74],own:[39,57,68,70,71,72,4,34,42,43,6,32,29,30,82,10,25,11,46,41,89,15,84,37],absolut:[12,59,74],roughli:17,kathryn:31,unbox:[58,65,69,71,33,37],around:[61,30,36,17,43,58,32,62,8,69,15,84,46,24,25,34,37,38],tag:[57,17,59,60,48,67,69,70,71,72,74,58,7,8,30,82,25,46,65,84,35,15,16,33,37,51,52],eventdef:13,automat:[39,53,56,57,17,59,72,62,1,65,66,67,40,2,74,19,4,75,20,77,22,23,79,24,50,8,27,29,81,30,82,9,31,10,25,11,46,47,12,92,84,35,85,80,36,48,15,78,33,71,94,37,51,38],make_symbol:[84,25],guard:[90,6,41,25],refer:[0,39,55,56,57,17,18,54,60,61,62,63,76,65,67,53,70,71,2,74,19,75,34,58,42,20,59,77,22,78,23,79,24,8,26,27,29,81,30,82,9,31,45,10,25,11,93,46,48,13,35,85,80,87,72,89,69,15,84,90,16,83,33,41,92,52,94,37,51,38],awhil:12,lund:31,scanner:[82,63,17,49,33],tito:31,lockreleasempm:43,hysteresi:[77,6,45],pointless:85,mere:[42,46,63,57,87],merg:[87,57,18,50,89,80],mps_fmt_b_:35,edeadlk:43,van:15,obj1struct:41,val:[7,28],pictur:[39,42],assumpt:[22,11,46,90,8,41,34],transfer:[62,63,71,74],findlongresetrang:18,intellig:[63,17,31],trigger:[68,74],lockreleaseglobalrecurs:43,inner:[57,18],define_alias_class:41,"var":[41,51,38],protocolclasssuperclasspoli:41,c90:57,contamin:31,"function":[0,39,56,57,17,18,54,60,62,63,64,65,66,67,68,53,40,72,74,34,42,20,59,43,6,7,8,26,28,29,81,30,82,9,31,45,10,25,11,46,47,12,50,13,35,80,87,48,32,15,37,84,90,16,83,33,41,71,94,22,51,52],btissetrang:18,north:31,unexpect:[16,37,15,33],unwrap:[67,69,72],subsum:42,findlastaft:50,message_typ:0,middleblock:50,mps_debug_class:46,tv_usec:32,type_symbol:[84,16,37,25],gain:[44,15,46,33,94,29],spuriou:42,grate:93,munro:31,eas:[30,15],inlin:[39,30,82,87,84,17,59,33,65,48,50,12,25,4,34],buf:[10,32],poolmark:80,"0x1003f9bf8":16,exit_failur:30,suppli:[89,87,59,43,32,50,11,15,46,65,25,41,35,38],also:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,40,2,73,74,4,13,58,42,59,5,43,6,76,24,7,25,26,29,30,82,9,31,80,11,46,12,92,34,35,87,36,48,1,89,69,15,37,84,90,91,50,41,71,22,51,72],dmb:58,made:[84,56,17,59,65,66,71,41,58,18,21,6,80,29,30,10,25,46,13,87,43,15,50,93,51],wise:[60,30,56,31,93],clearli:[6,16],wish:43,o1alcc:88,displai:[0,11,21],troubl:[30,56],asynchron:[0,59,11,37,70,16,71,35,29],record:[0,42,56,57,17,18,54,32,6,63,15,67,46,59,71,13,94,76,29,87],btfindlongresrang:18,blockbas:50,ensur:[84,56,17,59,65,67,70,71,13,58,6,24,25,29,30,82,9,32,8,41,35,89,15,90,33,37,51],indefinit:[56,57,59,63,65,66],mps_headers:35,tracepol:[6,16],otherwis:[0,39,55,17,18,54,67,71,2,34,58,42,5,43,6,25,29,81,82,50,11,47,12,13,35,87,36,84,90,33],problem:[53,54,56,59,62,66,70,71,72,74,13,42,6,23,24,8,30,31,25,11,46,34,89,15,90,50,37],walter:93,tracesetismemb:6,succe:[0,30,6,46,84,29],lfp:31,foster:15,multipli:29,immobil:74,evalu:[31,25,65,48,16,12,33,34,84],pascal:[11,15],"int":[54,82,18,10,6,83,48,71,32,41,34,28,37,51],roberto:15,dure:[0,54,56,57,18,60,61,62,1,65,67,71,72,74,84,42,43,6,24,80,29,30,50,46,41,35,87,33,37,38],dish:71,memoiz:[62,57,51],xerox:31,pig:74,multic:62,sptab:37,implement:[0,39,55,56,57,17,18,54,60,63,65,66,67,53,70,40,72,74,4,41,58,42,20,59,5,21,77,6,91,24,7,32,26,30,31,45,10,8,11,46,92,12,50,34,85,80,87,48,43,15,37,84,90,16,83,33,71,52,25,51,38],erik:[0,15],protocolsomeclassstruct:41,ing:15,resunimpl:34,eric:31,probabl:[42,30,82,18,54,10,67,53,70,71,72,34,37,29],misleadingli:25,mutual:[43,31,38],sizenews:50,nonetheless:84,allow:[0,53,56,57,17,18,54,62,66,69,70,13,72,1,4,34,58,42,59,21,6,24,50,25,26,27,29,30,82,10,8,46,12,41,35,80,15,84,78,91,33,71,37,51],detail:[39,53,57,17,18,60,62,65,68,71,13,42,43,50,8,30,45,25,11,46,48,41,87,84,90,33,37],innermost:47,mps_fmt_check_fenceposts_t:46,ultrasparc:65,other:[0,39,55,56,57,17,18,54,60,61,62,63,65,68,53,70,40,72,74,3,4,34,58,42,50,59,5,21,44,6,78,49,79,24,7,8,27,29,81,30,82,10,25,11,46,12,92,13,35,85,80,87,36,48,43,89,69,15,37,84,77,90,16,33,41,71,94,22,51,38],lookup:[87,58,18,62,65,66,16,25,17],futur:[53,30,82,63,36,17,59,45,10,50,48,67,90,47,80,32,41,57,34,13,58],rememb:[31,30,53,57,17,18,43,72,55,15,42,54,24,67,71,65,34,82,29,38],varieti:[30,63,57,59,18,21,10,45,15,66,68,46,16,72,4,52,13,51,38],milutinov:31,siginvalid:6,"0x000000010000341f":16,mps_rank_exact:[55,8,82,79,71,72,25,37],kent:[93,31],naggum:[0,15],repeat:[87,62,25,46,90,70,1,84,37],attardi:[93,31,15],foostruct:80,pooldestroi:80,june:[46,31],neeli:31,throughout:[18,89,48,67,70,71,37],mps_objects_step_t:46,mps_collect:29,vein:59,stai:[59,8],multithread:31,experienc:30,philipp:31,eof:32,eqv_hash:25,refsig:80,pdp:[73,58,31],reliabl:[39,30,82,87,81,15,42,24,16,51,25,84,37,29],indirectli:[67,30,24,41],rule:[90,34,37,25],pool_class:35,gdbinit:[13,16],portion:[72,57,29,18,74],emerg:[90,6,50,17,25],tightest:89,auxiliari:[72,65,38],suballoc:[30,60,89,11,65,23,71],decemb:31,invari:[10,83,65,67,70,71,15,80],emeri:31,mps_io_flush:[32,13]},objtypes:{"0":"std:option","1":"std:envvar","2":"c:type","3":"c:function","4":"c:macro"},titles:["12. Messages","18. Debugging pools","5. AMCZ (Automatic Mostly-Copying Zero-rank)","18. Software versions","2. Building the Memory Pool System","Memory Pool System Kit Open Source License","1. Arena","4. Checking","7. AWL (Automatic Weak Linked)","8. LO (Leaf Object)","3. Error handing","1. Overview","15. Segregated allocation caches","19. Telemetry","Memory Management Glossary","4. Memory management in various languages","4. Debugging with the Memory Pool System","3. The critical path","2. Bit tables","Pool reference","Memory Pool System","19. Library version mechanism","4. AMC (Automatic Mostly-Copying)","Introduction to memory management","3. Recycling techniques","6. Advanced topics","9. The generic fix function","6. AMS (Automatic Mark and Sweep)","2. Keyword arguments","4. Arenas","5. Frequently Asked Questions","Bibliography","1. Plinth","8. Scanning","17. General MPS types","7. Object formats","11. Garbage collection","3. Garbage collecting a language with the Memory Pool System","1. Choosing a pool class","1. Overview of the Memory Pool System","17. Allocation frames","16. Protocol inheritance","6. Collection framework","14. The lock module","5. Tuning the Memory Pool System for performance","Design","15. Debugging features for client objects","16. Allocation patterns","1. Interface conventions","Internals","3. Coalescing block structure","7. Configuration","Reference","Memory Management Glossary: G","Memory Management Glossary: F","Memory Management Glossary: E","Memory Management Glossary: D","Memory Management Glossary: C","Memory Management Glossary: B","Memory Management Glossary: A","Memory Management Glossary: O","Memory Management Glossary: N","Memory Management Glossary: M","Memory Management Glossary: L","Memory Management Glossary: K","Memory Management Glossary: I","Memory Management Glossary: H","Memory Management Glossary: W","Memory Management Glossary: V","Memory Management Glossary: U","Memory Management Glossary: T","Memory Management Glossary: S","Memory Management Glossary: R","Memory Management Glossary: Q","Memory Management Glossary: P","10. MV (Manual Variable)","Memory Management Glossary: Z","12. MVT (Manual Variable Temporal)","20. Weak references","13. SNC (Stack No Checking)","5. Pool class interface","5. Pools","10. Roots","8. Finalization","6. Allocation","9. MFS (Manual Fixed Small)","Guide","14. Location dependency","2. Platforms","2. Allocation techniques","13. Finalization","Contact us","11. MVFF (Manual Variable First Fit)","Acknowledgements","9. Threads"],objnames:{"0":["std","option","option"],"1":["std","envvar","environment variable"],"2":["c","type","C type"],"3":["c","function","C function"],"4":["c","macro","C macro"]},filenames:["topic/message","topic/debugging","pool/amcz","design/version","guide/build","copyright","design/arena","design/check","pool/awl","pool/lo","topic/error","mmref/begin","topic/cache","topic/telemetry","glossary/index","mmref/lang","guide/debug","topic/critical","design/bt","pool/index","index","design/version-library","pool/amc","mmref/index","mmref/recycle","guide/advanced","design/fix","pool/ams","topic/keyword","topic/arena","mmref/faq","mmref/bib","topic/plinth","topic/scanning","design/type","topic/format","topic/collection","guide/lang","pool/intro","guide/overview","topic/frame","design/protocol","design/collection","design/lock","guide/perf","design/index","design/object-debug","topic/pattern","topic/interface","topic/internals","design/cbs","design/config","topic/index","glossary/g","glossary/f","glossary/e","glossary/d","glossary/c","glossary/b","glossary/a","glossary/o","glossary/n","glossary/m","glossary/l","glossary/k","glossary/i","glossary/h","glossary/w","glossary/v","glossary/u","glossary/t","glossary/s","glossary/r","glossary/q","glossary/p","pool/mv","glossary/z","pool/mvt","topic/weak","pool/snc","design/class-interface","topic/pool","topic/root","design/finalize","topic/allocation","pool/mfs","guide/index","topic/location","topic/platform","mmref/alloc","topic/finalization","contact","pool/mvff","mmref/credit","topic/thread"]}) \ No newline at end of file +Search.setIndex({objects:{"":{mps_pool_debug_option_s:[74,2,1,""],mps_arena_destroy:[29,3,1,""],CBSDelete:[50,3,1,""],mps_fmt_fencepost_wrap:[46,3,1,""],mps_ap_alloc_pattern_reset:[47,3,1,""],mps_arena_roots_walk:[82,3,1,""],CBSBlockDescribe:[50,3,1,""],MPS_SAC_CLASS_LIMIT:[12,4,1,""],CBSFindLast:[50,3,1,""],mps_io_destroy:[32,3,1,""],Fun:[34,2,1,""],LockInit:[43,3,1,""],mps_definalize:[78,3,1,""],ACT_ON_RANGE:[18,3,1,""],LockClaim:[43,3,1,""],"-d":[13,0,1,"cmdoption-mpseventsql-d"],MPS_FIX12:[33,3,1,""],"-f":[13,0,1,"cmdoption-mpseventsql-f"],mps_fmt_check_fenceposts_t:[46,3,1,""],mps_pool_destroy:[81,3,1,""],"-l":[13,0,1,"cmdoption-mpseventtxt-l"],"-o":[13,0,1,"cmdoption-mpseventsql-o"],"-i":[13,0,1,"cmdoption-mpseventsql-i"],MPS_RM_PROT:[82,4,1,""],mps_arena_step:[29,3,1,""],mps_reserve:[84,3,1,""],"-t":[13,0,1,"cmdoption-mpseventsql-t"],mps_message_type_gc_start:[36,3,1,""],"-v":[13,0,1,"cmdoption-mpseventsql-v"],mps_ap_create:[84,3,1,""],"-p":[13,0,1,"cmdoption-mpseventsql-p"],"-r":[13,0,1,"cmdoption-mpseventsql-r"],mps_class_lo:[9,3,1,""],Byte:[34,2,1,""],MPS_OS_W3:[88,4,1,""],BTFindResRangeHigh:[18,3,1,""],mps_rank_exact:[82,3,1,""],mps_key_t:[28,2,1,""],MPS_ARCH_I3:[88,4,1,""],mps_ap_s:[84,2,1,""],CBSFinish:[50,3,1,""],mps_chain_create:[36,3,1,""],mps_sac_t:[12,2,1,""],MPS_WORD_WIDTH:[88,4,1,""],mps_ap_t:[84,2,1,""],mps_arena_walk:[46,3,1,""],mps_label_t:[65,2,1,""],mps_reg_scan_t:[82,2,1,""],mps_tramp:[94,3,1,""],mps_arena_create_v:[29,3,1,""],mps_class_amc:[22,3,1,""],mps_root_create_reg:[82,3,1,""],mps_lib_memset:[32,3,1,""],mps_mvff_free_size:[92,3,1,""],mps_arena_start_collect:[29,3,1,""],LockReleaseGlobalRecursive:[43,3,1,""],mps_arena_clamp:[29,3,1,""],mps_gen_param_s:[36,2,1,""],mps_sac_destroy:[12,3,1,""],BTIsSetRange:[18,3,1,""],MPS_T_WORD:[88,4,1,""],MPS_T_ULONGEST:[88,4,1,""],LockClaimGlobalRecursive:[43,3,1,""],mps_lib_get_EOF:[32,3,1,""],mps_mvff_size:[92,3,1,""],Rank:[34,2,1,""],mps_message_type:[0,3,1,""],mps_awl_find_dependent_t:[7,2,1,""],mps_lib_FILE:[32,2,1,""],mps_lib_get_stderr:[32,3,1,""],mps_ap_alloc_pattern_begin:[47,3,1,""],mps_chain_t:[36,2,1,""],mps_arena_create:[29,3,1,""],MPS_FIX2:[33,3,1,""],MPS_RESERVE_BLOCK:[84,3,1,""],mps_fmt_put_fencepost_t:[46,3,1,""],MPS_FIX1:[33,3,1,""],mps_mvt_size:[77,3,1,""],mps_telemetry_label:[13,3,1,""],BTFindShortResRangeHigh:[18,3,1,""],LockClaimRecursive:[43,3,1,""],MPS_SAC_FREE_FAST:[12,3,1,""],MPS_PF_LII3GC:[88,4,1,""],CBSBlockBase:[50,3,1,""],MPS_RES_MEMORY:[10,4,1,""],mps_lib_get_stdout:[32,3,1,""],mps_formatted_objects_stepper_t:[35,2,1,""],MPS_PF_W3I6MV:[88,4,1,""],mps_fmt_create_auto_header:[35,3,1,""],mps_sac_free:[12,3,1,""],Epoch:[34,2,1,""],TraceId:[34,2,1,""],mps_message_type_disable:[0,3,1,""],mps_io_write:[32,3,1,""],mps_ld_s:[87,2,1,""],mps_arena_collect:[29,3,1,""],TraceSet:[34,2,1,""],mps_arena_class_vm:[29,3,1,""],BTCopyInvertRange:[18,3,1,""],mps_fmt_t:[35,2,1,""],mps_sac_alloc:[12,3,1,""],MPS_PF_XCI3LL:[88,4,1,""],mps_arena_create_k:[29,3,1,""],mps_sac_flush:[12,3,1,""],LockSize:[43,3,1,""],mps_class_mv_debug:[75,3,1,""],mps_class_amcz:[1,3,1,""],mps_message_finalization_ref:[78,3,1,""],CBSSetMinSize:[50,3,1,""],mps_args_none:[28,4,1,""],ArenaFinalize:[83,3,1,""],mps_amc_apply_stepper_t:[22,2,1,""],mps_rank_weak:[82,3,1,""],mps_clock:[32,3,1,""],mps_alloc_pattern_t:[47,2,1,""],mps_ss_t:[33,2,1,""],mps_arena_reserved:[29,3,1,""],mps_arena_unsafe_restore_protection:[29,3,1,""],mps_message_discard:[0,3,1,""],mps_free:[84,3,1,""],mps_message_type_t:[0,2,1,""],Word:[34,2,1,""],mps_res_t:[10,2,1,""],mps_arena_class_cl:[29,3,1,""],mps_class_awl:[7,3,1,""],LockReleaseRecursive:[43,3,1,""],MPS_RES_PARAM:[10,4,1,""],mps_fmt_auto_header_s:[35,2,1,""],mps_commit:[84,3,1,""],mps_message_t:[0,2,1,""],CBSInit:[50,3,1,""],MPS_RES_OK:[10,4,1,""],mps_arena_spare_commit_limit_set:[29,3,1,""],mps_message_type_gc:[36,3,1,""],mps_pool_walk:[46,3,1,""],mps_ld_add:[87,3,1,""],MPS_PF_XCI3GC:[88,4,1,""],mps_ap_destroy:[84,3,1,""],mps_arena_commit_limit:[29,3,1,""],mps_clocks_per_sec:[32,3,1,""],mps_root_t:[82,2,1,""],mps_class_mvff_debug:[92,3,1,""],mps_ap_fill:[84,3,1,""],MPS_WORD_SHIFT:[88,4,1,""],mps_class_mv:[75,3,1,""],MPS_SCAN_END:[33,3,1,""],mps_lib_fputc:[32,3,1,""],CONFIG_PLINTH_NONE:[32,4,1,""],mps_arena_park:[29,3,1,""],BTCopyOffsetRange:[18,3,1,""],Accumulation:[34,2,1,""],MPS_PF_STRING:[88,4,1,""],mps_pool_check_free_space:[74,3,1,""],MPS_ARCH_I6:[88,4,1,""],CBSBlockLimit:[50,3,1,""],mps_fmt_create_A:[35,3,1,""],mps_lib_fputs:[32,3,1,""],mps_addr_fmt:[35,3,1,""],mps_lib_telemetry_control:[32,3,1,""],mps_arena_expose:[29,3,1,""],mps_rank_t:[82,2,1,""],mps_fmt_B_s:[35,2,1,""],Addr:[34,2,1,""],Index:[34,2,1,""],MPS_TELEMETRY_DATABASE:[13,1,1,"-"],mps_mvt_free_size:[77,3,1,""],MPS_BUILD_GC:[88,4,1,""],MPS_PF_ALIGN:[88,4,1,""],"-h":[13,0,1,"cmdoption-mpseventcnv-h"],LockReleaseGlobal:[43,3,1,""],MPS_PF_LII6GC:[88,4,1,""],mps_telemetry_get:[13,3,1,""],CONFIG_VAR_RASH:[10,4,1,""],Bool:[34,2,1,""],MPS_TELEMETRY_CONTROL:[13,1,1,"-"],ULongest:[34,2,1,""],BTFindResRange:[18,3,1,""],mps_ld_t:[87,2,1,""],mps_root_create_table_masked:[82,3,1,""],mps_class_mvff:[92,3,1,""],RefSet:[34,2,1,""],MPS_PF_FRI6GC:[88,4,1,""],mps_message_gc_not_condemned_size:[36,3,1,""],mps_message_type_enable:[0,3,1,""],BTDestroy:[18,3,1,""],MPS_TELEMETRY_FILENAME:[13,1,1,"-"],mps_class_snc:[79,3,1,""],mps_message_queue_type:[0,3,1,""],mps_pool_check_fenceposts:[74,3,1,""],mps_message_gc_start_why:[36,3,1,""],MPS_RM_CONST:[82,4,1,""],mps_alloc:[84,3,1,""],mps_arena_extend:[29,3,1,""],CBSInsert:[50,3,1,""],mps_addr_t:[65,2,1,""],mps_roots_stepper_t:[82,2,1,""],BTFindLongResRangeHigh:[18,3,1,""],mps_pool_create:[81,3,1,""],mps_message_get:[0,3,1,""],mps_fmt_isfwd_t:[35,2,1,""],LockReleaseMPM:[43,3,1,""],CBSFindFirst:[50,3,1,""],mps_message_clock:[0,3,1,""],BTFindShortResRange:[18,3,1,""],mps_telemetry_control:[13,3,1,""],mps_pool_create_v:[81,3,1,""],mps_message_gc_live_size:[36,3,1,""],CBSIterateLarge:[50,3,1,""],BTSetRange:[18,3,1,""],RootVar:[34,2,1,""],mps_arena_spare_commit_limit:[29,3,1,""],MPS_RES_IO:[10,4,1,""],mps_thread_reg:[94,3,1,""],LockClaimGlobal:[43,3,1,""],Align:[34,2,1,""],mps_fmt_A_s:[35,2,1,""],mps_objects_step_t:[46,3,1,""],mps_debug_class:[46,3,1,""],CBSIterate:[50,3,1,""],mps_fmt_fwd_t:[35,2,1,""],MPS_ARGS_BEGIN:[28,3,1,""],BTIsResRange:[18,3,1,""],MPS_RES_FAIL:[10,4,1,""],mps_arena_release:[29,3,1,""],MPS_ARGS_ADD:[28,3,1,""],mps_clock_t:[65,2,1,""],mps_pool_create_k:[81,3,1,""],CBSDescribe:[50,3,1,""],MPS_SAC_ALLOC_FAST:[12,3,1,""],Compare:[34,2,1,""],mps_collections:[29,3,1,""],mps_ap_create_v:[84,3,1,""],mps_align_t:[65,2,1,""],MPS_RES_UNIMPL:[10,4,1,""],mps_sac_class_s:[12,2,1,""],mps_mv_free_size:[75,3,1,""],mps_stack_scan_ambig:[82,3,1,""],mps_ap_trip:[84,3,1,""],BTSet:[18,3,1,""],Res:[34,2,1,""],mps_ap_alloc_pattern_end:[47,3,1,""],mps_arena_unsafe_expose_remember_protection:[29,3,1,""],mps_ap_create_k:[84,3,1,""],BTFindLongResRange:[18,3,1,""],mps_arena_has_addr:[29,3,1,""],MPS_RES_COMMIT_LIMIT:[10,4,1,""],MPS_OS_XC:[88,4,1,""],Size:[34,2,1,""],mps_io_create:[32,3,1,""],mps_arena_t:[29,2,1,""],Pointer:[34,2,1,""],mps_ap_frame_push:[40,3,1,""],mps_fmt_scan_t:[35,2,1,""],mps_message_type_finalization:[78,3,1,""],mps_ld_reset:[87,3,1,""],LockFinish:[43,3,1,""],mps_root_create_fmt:[82,3,1,""],MPS_ARGS_DONE:[28,3,1,""],MPS_SCAN_BEGIN:[33,3,1,""],BTCreate:[18,3,1,""],BTRes:[18,3,1,""],MPS_PF_W3I3MV:[88,4,1,""],mps_arena_committed:[29,3,1,""],BTGet:[18,3,1,""],mps_sac_create:[12,3,1,""],mps_arena_commit_limit_set:[29,3,1,""],mps_thr_t:[94,2,1,""],mps_fmt_pad_t:[35,2,1,""],MPS_RES_RESOURCE:[10,4,1,""],mps_root_destroy:[82,3,1,""],mps_root_create:[82,3,1,""],mps_ld_merge:[87,3,1,""],MPS_ARGS_END:[28,3,1,""],mps_word_t:[65,2,1,""],mps_amc_apply:[22,3,1,""],mps_finalize:[78,3,1,""],Ref:[34,2,1,""],BTCopyRange:[18,3,1,""],mps_telemetry_intern:[13,3,1,""],CBSFindLargest:[50,3,1,""],MPS_FIX_CALL:[33,3,1,""],mps_arena_class_t:[29,2,1,""],mps_thread_dereg:[94,3,1,""],mps_class_ams_debug:[27,3,1,""],mps_lib_memcpy:[32,3,1,""],mps_bool_t:[65,2,1,""],MPS_BUILD_MV:[88,4,1,""],BTSize:[18,3,1,""],mps_mv_size:[75,3,1,""],CONFIG_VAR_HOT:[10,4,1,""],mps_fmt_adjust_fencepost_t:[46,3,1,""],Attr:[34,2,1,""],mps_root_create_table:[82,3,1,""],mps_tramp_t:[94,2,1,""],mps_ap_frame_pop:[40,3,1,""],mps_ld_isstale:[87,3,1,""],CBSBlockSize:[50,3,1,""],mps_rank_ambig:[82,3,1,""],mps_message_poll:[0,3,1,""],mps_root_scan_t:[82,2,1,""],mps_class_ams:[27,3,1,""],mps_class_mfs:[85,3,1,""],Shift:[34,2,1,""],mps_addr_pool:[81,3,1,""],BTResRange:[18,3,1,""],MPS_RES_LIMIT:[10,4,1,""],mps_telemetry_reset:[13,3,1,""],mps_alloc_pattern_ramp_collect_all:[47,3,1,""],MPS_PF_XCI6LL:[88,4,1,""],mps_arena_spare_committed:[29,3,1,""],mps_fmt_skip_t:[35,2,1,""],mps_io_t:[32,2,1,""],Serial:[34,2,1,""],MPS_BUILD_LL:[88,4,1,""],mps_alloc_pattern_ramp:[47,3,1,""],mps_fmt_class_t:[35,2,1,""],mps_class_t:[81,2,1,""],AccessSet:[34,2,1,""],mps_frame_t:[40,2,1,""],mps_fix:[33,3,1,""],mps_pool_t:[81,2,1,""],mps_lib_assert_fail:[32,3,1,""],mps_chain_destroy:[36,3,1,""],CONFIG_VAR_COOL:[10,4,1,""],mps_fmt_create_B:[35,3,1,""],MPS_OS_LI:[88,4,1,""],mps_telemetry_flush:[13,3,1,""],MPS_ARGS_ADD_FIELD:[28,3,1,""],mps_lib_memcmp:[32,3,1,""],mps_arg_s:[28,2,1,""],MPS_PF_FRI3GC:[88,4,1,""],mps_telemetry_set:[13,3,1,""],mps_rm_t:[82,2,1,""],mps_class_mvt:[77,3,1,""],ACT_ON_RANGE_HIGH:[18,3,1,""],mps_fmt_destroy:[35,3,1,""],mps_arena_formatted_objects_walk:[35,3,1,""],mps_message_gc_condemned_size:[36,3,1,""],mps_io_flush:[32,3,1,""],MPS_OS_FR:[88,4,1,""]}},terms:{scriptwork:51,nurseri:[53,57,61,63,47,8,36],ru_utim:32,orthogon:[31,38],mps_arena_roots_walk:[82,29],weak_array_find_depend:7,btset:18,four:[30,82,58,18,70,67,69,6,72,73,50,75],secondli:[5,62,17,15],prefix:[3,51,5,65,58],circuitri:62,oldest:8,effienc:46,consider:[30,17,31,54,62,2,49,51],whose:[0,54,65,66,68,69,40,74,13,42,77,22,76,48,7,28,81,82,25,12,41,35,87,36,15,78,33,71,93,94,37,38],accur:[30,55,63,70,80,8,50],"const":[32,13,28,36],find_depend:7,mpsioan:32,albuquerqu:31,mps_telemetry_flush:[32,13,29],concret:[59,45,5,46,34,51],swap:[58,60,62,66,68,71,72,8,29],under:[39,56,57,4,18,68,44,10,8,65,46,78,50,2,41,84,29,38],prot_foo:51,sped:[0,15],spec:34,merchant:4,digit:[3,73,62,31,88],everi:[0,54,17,60,61,62,48,70,40,72,13,42,6,25,29,30,82,31,10,46,41,35,34,16,50,37],risk:[50,45],mps_final:[54,78,83,25],lookup:[87,58,18,62,48,66,16,25,17],mps_arena_commit_limit_set:[10,57,29],macraki:[93,58],"void":[0,54,18,60,65,70,13,1,74,75,41,43,77,5,79,7,27,28,29,81,30,82,9,31,32,25,83,46,47,12,22,34,35,85,87,36,88,84,78,50,92,94,37,51,72],rise:71,risc:63,quantiz:8,addrstruct:34,jacob:31,affect:[36,18,79,44,70,11,78,67,46,69,16,71,51,57,29],mps_pool_check_fencepost:[46,74],poorli:[30,24,12,48],deleterang:50,vast:89,agesen:31,extend_s:[92,75,85],scalar:[68,63,71,35,59],correct:[39,50,57,45,43,10,5,7,70,78,84,24,33,40,25,41,27,88,35,62],vector:[82,63,58,18,68,25,46,59,71,33,37],terabyt:[70,58],cmu:31,initialis:[50,43],bevan:93,x86_64:3,reproduc:[30,16,4,54],lockw3:10,deutsch:[56,31,15],mps_lib_get_stdout:32,naiv:41,direct:[53,55,56,57,4,18,32,11,48,69,41,84,51],batch:15,nail:[26,61,8],consequ:[9,10,51,7,79,1,25,27,94,29],second:[84,17,88,44,32,62,48,49,24,71,25,41,13,37,29,38],reorder:84,doubt:4,aggreg:[68,59],type_fwd:37,p_v:[84,12],ap_o:[79,84,7],thisclass:41,mps_key_vmw3_top_down:[28,29],even:[0,53,56,57,17,18,48,66,67,69,70,71,72,8,84,42,59,4,77,24,25,26,29,30,50,46,47,12,13,35,15,78,16,33,94,37,51],hide:[46,68],fmt_o:35,arena_poll_max:5,neg:[81,87,18,32,35,29],asid:12,weren:57,btcopyoffsetrang:18,resok:[34,41,18,80],cheng:31,supplier:30,"new":[0,39,57,58,18,54,61,62,63,65,67,53,70,40,72,8,19,3,41,42,20,43,5,24,50,25,29,81,30,82,31,10,7,46,48,92,13,35,80,87,36,88,89,15,84,78,33,71,37,38],mps_ss_t:[82,17,7,33,37,90,71,25,35],upward:[92,18],ever:[30,82,88,5,11,70,13,94],singhal:[31,8],protocolensuresomeclass:41,elimin:[30,57,17,62,89,15,67,71,72,84],port_ref:25,dahl:[31,15],mps_arena_class_cl:[28,37,29],mem:[34,50],splinter:[46,5],here:[0,17,18,63,3,13,42,21,44,5,25,29,82,10,46,84,87,36,78,16,33,37,38],block_requiring_fin:78,met:[67,4],undef:[65,15],studio:[3,88],subword:18,debugg:[13,16,82,29],path:[84,20,57,17,49,10,8,48,37,67,46,16,71,72,33,41,13,66,34,52],mps_message_type_dis:0,interpret:[0,81,82,87,57,44,74,70,86,15,78,16,40,80,25,13,33,37,29],michal:31,algebra:[68,71,59],precis:[53,30,55,58,31,62,8,69,6,71,50,35],findshortresrangehigh:18,bitmask:[82,13,58],drj:[5,34,18,80],scaveng:[53,71,70,57,31],permit:[0,30,57,59,4,68,77,8,5,51,89,84,46,70,29,50,41,62,39],california:31,aka:[5,88,18,45],pack:[58,35,37],mps_lib_telemetry_control:32,basereturn:[18,50],joshua:31,frombas:18,norsk:31,"000ae0397335c8b5":13,phrase:68,skippabl:37,"_mps_fix":17,brought:45,mps_releas:21,unix:[53,58,60,10,62,71,72,32,3,94,34,51],mps_sac_free_fast:12,brk:[71,58,59],amherst:31,strai:46,printf:[0,25],newspac:[61,70],total:[30,36,44,5,62,77,24,16,71,80,25,57,34,75,92,37,29],cbsfindlast:50,mps_mortal:36,unit:[42,56,57,17,60,32,5,35,72,73,8,34,85,37,62,58],highli:[39,30,17,15,37],bookkeep:[30,24,11,62,15],describ:[53,54,57,17,59,60,62,65,70,40,72,8,2,3,75,13,58,42,21,5,24,50,48,25,27,30,82,32,7,11,86,12,92,34,35,80,36,89,15,84,33,41,71,37,51,38],would:[84,54,55,57,17,18,61,63,67,1,13,58,42,4,77,5,24,25,29,30,82,10,7,11,46,12,41,35,85,87,34,32,89,15,78,83,50,37,72],cbsdelet:50,sigxfsz:[16,94],readi:[41,5,28,37,80],edward:[62,31,15],call:[0,39,56,57,17,18,54,60,62,8,64,65,67,53,70,40,72,74,3,34,58,42,50,59,43,77,5,78,79,24,6,48,7,27,28,29,81,30,82,9,10,25,11,46,47,12,92,13,35,80,87,36,32,89,69,15,37,84,90,16,83,33,41,71,94,22,51],boehm:[53,30,82,57,58,31,15,78,48,93],"0x1003fb148":16,recommend:[17,32,11,65,37,12,33,94,35,38],indiana:31,refset:[42,5,34],type:[0,54,55,56,57,17,18,60,62,63,64,65,67,68,69,70,40,1,74,75,34,58,42,20,59,88,77,5,79,24,6,48,7,27,28,29,81,30,82,8,9,31,45,10,25,11,92,46,47,12,50,13,35,85,80,87,36,72,32,15,37,84,78,16,33,41,71,94,22,51,52],until:[0,54,57,59,60,61,48,70,71,8,43,5,24,25,29,81,30,82,9,80,83,47,12,84,35,87,36,78,33,37],buddi:[54,56,58,31,30,89,48,23,67,71],mps_arch_m2:88,mps_arch_m4:88,buckets_find_depend:25,mps_arch_m6:88,relax:25,relat:[53,54,55,56,57,58,59,60,61,62,63,64,48,67,68,69,70,71,72,8,13,6,30,11,41,35,87,34,15,50],notic:[31,8,18,4,65],warn:[39,45,12,33,34,94,84],effect:[0,54,57,58,18,62,65,13,42,59,44,79,24,48,29,30,82,31,46,47,12,41,87,89,84,16,50,37,51],exce:[30,36,18,77,5,13],mps_pf_string:[88,21],wari:5,excl:84,hold:[0,54,55,58,18,62,48,40,72,3,84,43,5,25,29,81,82,12,34,35,86,36,78,71,94,38],overrun:46,must:[0,39,56,57,17,18,54,60,61,62,8,65,68,53,70,40,1,74,3,75,34,42,50,59,4,43,77,5,78,79,24,6,48,7,26,27,28,29,81,30,82,9,32,25,11,46,12,92,13,35,85,80,87,36,72,89,69,37,84,90,16,83,33,41,71,94,22,51,38],shoot:30,blumof:31,springer:31,join:[91,65],room:[46,36,68],err:5,henri:[70,31],neglig:4,edelson:[71,31,15],btsetrang:18,pierc:31,doubleword:[56,63,73],mccaughan:93,coalesc:[54,55,56,57,58,59,20,77,30,45,89,67,71,50,63],poolfinish:80,hansen:[93,31],root:[39,53,55,57,17,59,62,67,69,70,71,72,8,3,75,41,58,42,20,77,5,78,24,50,25,27,29,82,9,31,45,7,83,22,34,85,86,15,84,90,33,92,52,94,37,38],cbsst:50,pierr:31,overrid:[41,17],defer:[56,57,59,31,24,47,72,50,84,76],obj_fmt_:[35,37],give:[0,30,77,87,36,46,44,32,88,11,65,67,39,6,71,61,57,13,29,38],mps_ld_reset:[87,25],jelica:31,indic:[0,54,56,59,60,65,70,40,72,13,42,43,5,24,50,32,26,29,82,10,25,83,47,92,41,35,80,87,34,88,33,71,37,51,38],segreg:[54,55,58,63,71,1,75,20,77,22,79,25,27,81,9,7,12,85,86,33,92,38,37,52],liter:57,caution:[82,7,78,25,19,84,35,52],fibonacci:[54,89,58],want:[39,53,18,72,8,3,13,42,5,25,28,29,30,82,10,46,12,22,34,35,32,16,37],mysegclass:41,mps_key_mvt_reserve_depth:[77,28],david:[18,31,43,21,83,80,2,93],unsign:[0,50,82,87,59,18,88,32,5,25,65,37,6,12,7,13,28,34,51],tediou:30,recov:[30,47],arenar:5,end:[54,55,17,18,60,65,71,72,84,5,25,28,29,82,10,47,48,41,35,78,16,50,37,38],"0x000000010000206b":16,manipul:[30,18,5,63,15,67,6,71,50,94,35],quot:[54,62,65,67,71,37],ordinari:[72,62,57,35,7],findfirst:50,classifi:[54,8],revisit:31,how:[0,39,56,57,17,18,54,62,70,72,58,42,4,5,49,24,25,29,81,30,82,31,7,11,46,12,13,35,80,36,89,16,33,37,51,38],hot:[57,17,10,66,68,72,3,13,51],recoveri:31,env:16,"000ae0397333bc6d":13,answer:[30,57,37,18,38],symposium:31,ancestor:15,config:[34,51,21],updat:[53,54,56,57,17,62,65,69,71,72,34,58,42,5,24,32,25,29,81,30,31,10,50,48,13,35,80,33,37,51],lam:31,simmon:93,recogn:[10,84,87,7],lai:37,after:[0,54,56,57,17,62,8,69,72,74,3,13,58,42,21,44,5,78,79,24,25,28,29,30,82,10,50,46,47,12,41,35,87,32,43,89,15,84,90,16,33,94,37,51,38],lovemor:93,"0x0000000100011ded":16,diagram:[24,57,84],befor:[84,54,17,18,62,65,71,74,13,58,43,5,24,7,28,29,30,82,10,25,46,22,41,87,89,15,78,33,92,37,38],wrong:[30,86,36,17,77,10,11,16,92,34,75,37],fat:51,arch:[42,51,21],parallel:[53,30,57,31,48,70,71,8,35],averag:[34,63],poolmvff:50,scarc:[54,78],attempt:[56,57,17,18,62,71,72,8,59,77,80,29,30,11,83,46,84,35,89,15,50,37],third:[17,31,88,44,49,24,25,34,37],opaqu:[56,43,60,65,70,87],minim:[42,18,31,68,62,15,46,70,12,41,37,51],cbsiter:50,perform:[0,53,56,57,17,18,54,62,48,70,71,72,8,3,84,42,20,43,44,24,6,7,29,30,82,9,31,50,11,86,46,41,35,80,87,36,89,15,77,78,16,33,37,38],type_:[37,7],maintain:[56,57,17,59,62,63,67,70,71,72,42,43,5,29,82,12,41,85,86,50,93,37,51],environ:[72,30,58,31,43,60,32,8,15,37,84,16,59,25,3,94,13,51,52],migh:46,reloc:[42,57,58,71,72,35],finalis:[80,43],exclus:[43,37,70,94,35,38],mps_telemetry_reset:13,first:[0,53,57,17,18,54,61,62,63,48,67,71,74,19,3,75,41,58,20,59,88,44,5,23,24,7,26,28,29,81,31,25,83,46,12,13,35,87,36,89,15,84,77,16,50,92,94,37,51,38],order:[53,54,56,57,17,59,61,62,63,48,66,67,70,40,72,3,13,58,43,5,24,6,25,26,28,30,31,7,33,83,12,92,34,89,15,84,78,16,50,71,94,37,51],finaliz:[26,67,78,72,25],classnamestruct:41,decl:51,oper:[0,39,56,57,17,18,54,62,65,66,67,68,53,70,71,72,8,3,34,58,42,50,59,4,43,77,5,23,24,6,48,25,29,81,30,82,9,31,10,7,11,46,12,13,35,87,88,89,15,84,16,33,94,37,51],mpstd:[34,88,51,21],composit:[68,71,57,15],feedback:91,afip:31,diagnos:13,over:[56,57,17,18,62,8,71,74,42,59,77,5,6,25,29,82,32,11,46,47,34,35,87,36,83,50,37],config_var_cool:[10,16,51],message_type_o:0,becaus:[39,53,55,56,57,17,18,54,60,61,62,63,65,66,67,68,70,40,72,74,13,58,42,50,59,43,5,78,24,6,48,32,28,29,30,82,8,25,10,7,11,46,12,92,34,80,87,89,15,84,90,16,83,33,41,71,37,51],fifo:[54,63,59,92],poolcreat:80,dijkstra:[62,70,57,31],ulongest:34,flexibl:[39,42,82,56,60,89,67,12,29],vari:[30,57,17,54,44,77,71,51],btcopyrang:18,digest:8,sigplan:31,hashf:25,fit:[53,54,55,56,58,18,61,62,63,48,67,71,72,74,19,75,84,42,20,59,4,44,23,30,8,31,47,34,89,77,50,92,51,38],fwrite:32,fix:[0,39,56,57,17,59,54,63,48,71,72,8,19,84,42,20,5,35,50,25,26,30,82,45,10,7,11,46,13,49,85,80,90,16,33,52,37,51,38],arenaent:5,better:[81,54,82,37,17,18,89,33,11,35,84,87,66,72,7,3,38,34,29,9],drawback:24,fig:51,persist:[81,82,36,31,47,12,33,35,29],comprehens:57,decod:[17,59,72,3,13,52],hidden:[82,83,15],erlang:11,taiichi:31,easier:[42,30,11,89],descend:15,them:[0,39,56,57,17,18,72,61,62,63,65,67,53,71,1,41,58,42,59,44,5,78,24,50,48,25,27,29,30,82,9,7,11,46,12,22,13,35,80,36,89,15,77,90,16,33,92,94,37,51,38],poolclass:[41,13,34,80],nygaard:15,thei:[0,39,56,57,17,18,54,72,62,63,65,67,68,53,70,71,1,74,41,58,42,50,59,43,77,5,76,24,6,48,7,26,27,29,30,82,8,9,31,45,32,25,11,46,12,34,35,80,87,36,89,69,15,37,84,90,83,33,94,22,38],fragment:[54,55,57,58,59,61,62,63,48,66,71,72,8,77,24,29,31,11,46,12,85,89,50,92,38],thee:13,safe:[0,30,82,87,84,59,31,43,77,94,15,54,39,70,71,65,34,28,37,29,79],mps_reg_scan_t:[82,37],debugmixin:46,"break":[84,58,18,88,77,83,15,46,16,71,72,33,41,92,3,75,37,29],band:[54,58,60,48,66,70],promis:[57,37],interrupt:[30,24,4],itanium:88,supernam:41,epdr:41,choic:[56,36,59,18,68,62,89,15,46,71,37],tendenc:[61,22],"0x000000010001f2d2":16,mps_messag:83,codewarrior:[3,51,88],string_hash:25,"0x7fff5fbff7a0":16,xcppgc:88,accommod:[53,12,35],dest_ld:87,conflict:5,arrow:53,each:[0,53,55,56,57,17,18,54,60,61,62,63,65,67,68,70,71,72,74,3,13,58,42,50,59,88,44,5,24,6,48,7,28,29,30,82,8,10,25,11,46,12,34,35,85,80,87,36,89,37,84,77,90,16,33,41,94,22,51,38],debug:[0,56,59,70,13,74,3,75,41,20,43,22,25,27,29,45,10,11,46,12,34,35,86,32,84,16,50,92,37,52],went:[10,34],european:31,oblig:37,side:[46,84,65],mean:[53,54,17,18,60,62,63,65,66,67,68,70,40,72,8,75,13,58,42,59,4,77,22,6,25,26,29,30,82,9,10,7,46,48,92,41,35,80,87,34,15,84,78,16,33,71,94,37,51,38],vmcreat:13,laboratori:31,poolepvm:18,btfindshortresrang:18,bufferfil:46,fromlimit:18,member:[56,57,88,5,65,70,15,33,34,93],mps_res_limit:[10,12],cbsbl:50,forgot:16,collector:[39,54,55,56,57,17,59,60,61,62,63,48,67,53,70,71,72,8,3,84,58,42,44,22,23,79,24,25,29,81,30,82,31,10,11,13,35,36,69,15,78,16,37],x86:[39,3,88,13,58],unbound:[0,72],network:[30,56,32,11,15,78,29],goe:[30,82,31,46,71,3,29],newli:[57,84,36],crucial:[24,25],digraph:55,content:[0,39,56,36,58,68,22,15,37,46,16,72,80,84,35,29],rewrit:[84,51],laid:[54,16],daniel:[93,31],adapt:[39,91,31,93],reader:33,mps_arena_create_v:29,protocolclass:41,forth:71,kiem:31,mccarthi:[53,13,62,31,15],onlin:51,prioriti:50,arizona:31,linear:[31,63,71,17,18],barrier:[56,58,72,63,48,67,68,70,71,1,8,75,84,42,77,5,79,7,27,29,82,9,31,45,83,22,34,35,85,15,16,92,94,37,38],worthwhil:30,mps_class_awl:[25,28,7],situat:[87,60,5,50,48,24,16,7,35,29],free:[39,53,55,56,57,58,18,54,60,61,62,63,48,66,67,69,70,71,72,74,3,75,42,59,77,5,24,7,29,30,82,8,10,80,11,46,12,84,85,89,15,78,50,92,37,38],ineffici:[77,89,63,11,24,71,72,8],mps_commit:[84,16,37,25],ian:31,cytron:31,hand:[30,17,18,20,10,65,37,59,72,7,34,35,52],mvt:[20,77,50,19,84,75,38],atc:[70,59],puzzl:25,epvm:18,compareless:34,filter:[32,13,70,17],ish:46,iso:[57,58,31,21,32,65,15],isn:[30,57,17,47,80,46,24,16,25,34,51],"__int_64":[65,88],discret:[35,80],bufferstruct:80,"0x0000000000000000":16,subtl:[54,17,72],onto:[30,59,80,46,71,74,40],cbstest:[18,50],"0x0000000000000004":16,"0x0000000000000005":16,synergi:46,rang:[58,18,60,62,8,67,46,69,77,71,72,50,34,37],kim:31,nhc:31,p_o:[84,16,12],hoop:80,independ:[42,56,9,31,48,29,51],wast:[18,44,89,11,48,12,8,85],rank:[55,17,59,1,67,71,72,19,20,79,25,28,82,9,7,83,34,90,16,33,38,37,52],necess:29,restrict:[84,8,58,32,50,48,46,78,40,51,7,71,3,35,29],hook:[5,82],instruct:[84,63,17,31,62,74,11,15,91,69,70,71,48,7,34,37,58],alreadi:[0,54,56,57,17,43,5,50,24,25,41,13,94,37],messag:[0,20,36,59,30,32,62,83,78,15,54,67,91,25,13,81,84,41,29,52],wasn:[10,12,17],ref_io:33,agre:[0,15],flagella:[31,15],primari:[62,51,8],brock:31,"00000001003fc000":13,provabl:[56,63,37],nomin:4,top:[39,30,36,18,5,50,67,16,71,25,22],epdrpoolclass:41,sometim:[0,54,56,57,58,18,60,48,53,69,70,71,72,8,3,59,24,7,30,46,15,78],transitori:50,timothi:31,toi:[0,82,87,44,25,78,16,33,13,37],too:[39,30,36,44,51,7,70,62,15,42,67,46,24,16,12,25,34,81,50,37,29],kanefski:31,epdralloc:41,mps_message_get:[0,62,36,78,25],upshot:87,john:[53,31,62,15,13,93],bttest:18,hewitt:[55,31],mps_build_cc:88,mps_fill_fencepost:46,addrset:34,tool:[30,31,21,32,62,88,11,15,72,3,13,51],tractofaddr:5,took:[84,87],"10g":16,mps_sac_class_:[71,12],incur:[55,1],somewhat:[8,71,17,25],conserv:[53,30,55,57,58,31,54,62,8,11,15,24,59,71,48,7,26,34],happili:83,simula:[31,15],config_var_rash:[10,72],mps_clock_t:[0,32,65],technic:[39,42,86,31,92,35,38],symptom:12,past:[39,30,57,17,18,35,67,37,38],r4000:88,silli:18,target:[39,30,86,17,18,45,32,8,37,6,33,3,88,34,51],keyword:[81,57,9,77,22,74,64,65,84,79,71,1,7,92,27,75,28,37,29,85],cxref:88,provid:[39,54,57,17,18,60,62,63,70,71,1,74,3,41,42,50,59,4,43,22,79,24,6,7,27,29,30,82,8,9,10,25,11,46,12,13,35,80,87,72,32,89,15,37,84,78,91,33,5,38],lvalu:[84,12],tree:[54,59,45,5,48,66,46,71,50,3],mps_os_w3:[51,88],"final":[0,54,17,67,70,72,8,75,42,20,77,5,78,79,25,26,27,28,30,9,31,45,7,83,22,34,39,85,86,15,90,92,38,37,52],project:[39,86,31,15,91,3,37,51],matter:[24,87,58,31],mpmtype:[34,18],design:[39,53,17,18,54,62,63,80,74,2,41,42,20,59,21,5,24,6,7,26,29,30,31,45,32,25,11,46,50,34,43,15,84,78,91,83,33,94,37,51,38],searchlimit:18,provis:[80,50],fashion:[62,78,15],entail:[24,57,17,35],mps_ap_frame_push:[79,40,59],ran:[34,12],ram:[56,59,62,11,71,72,8,37,29],mind:[44,71,24,11],mine:31,bitfield:34,raw:[5,69,72],rat:51,lookup_in_fram:[13,16],manner:[46,4,80],increment:[39,53,57,58,54,62,63,48,67,70,71,72,8,84,42,5,24,7,29,30,31,10,80,34,15,94,37,38],infring:4,seen:[30,43,8,46,71,50,51],seem:[30,24,34,46,37],strength:[89,72],recreat:80,harper:31,latter:[67,72,18],especi:[30,56,17,60,8,48,46,70,72,50],client:[0,53,56,57,17,18,54,60,62,63,65,70,40,72,74,2,13,42,20,59,43,77,5,50,32,26,28,29,81,30,82,8,45,10,7,83,46,47,12,22,34,35,80,87,36,37,84,78,16,33,41,71,52,94,25,51,38],fwd2:37,thoma:31,thoroughli:34,resetrang:18,eagerli:50,wherebi:[0,63,47,57],simplifi:[39,53,58,18,54,25,70,46,59,1,33],shallow:6,table_set:25,shall:[65,5,18,4],mps_ap_frame_pop:[79,40,59],object:[0,53,55,56,57,17,18,54,60,61,62,63,76,65,66,67,68,69,70,71,1,74,19,3,75,34,58,42,20,59,21,44,5,78,23,79,24,6,48,7,26,27,88,29,30,82,8,9,31,45,10,25,11,86,46,12,13,35,85,80,36,72,43,89,15,37,84,77,90,16,83,33,41,92,52,22,38],mps_root_scan_t:82,lexic:15,regular:[0,67,3,78,25],specifi:[0,39,57,18,54,8,48,53,1,74,75,5,78,79,7,27,28,81,30,82,9,10,25,46,47,12,22,13,35,85,80,36,90,50,92,37,38],letter:[65,31],phase:[42,45,62,24,71,8],fwd_:37,coin:31,character_:37,prematur:[53,30,56,62,11,69,8],tradit:43,simplic:[94,51,18,33],don:[39,17,18,65,67,72,41,58,42,5,80,28,29,30,25,46,22,84,78,50,37,51,38],simplif:30,doc:[42,18],clock:[0,57,32,5,16,71,25],flow:15,doe:[0,53,57,17,18,54,60,61,62,63,65,67,69,71,72,74,75,58,42,50,4,43,44,5,78,79,24,6,48,7,27,28,29,30,82,8,9,10,25,11,12,13,35,85,80,87,32,89,15,37,77,90,16,83,33,92,94,22,51,38],buckets_:[37,25],dummi:[5,84],declar:[84,30,82,18,31,21,65,54,79,67,59,40,51,80,71,34,41,29,72],metat:15,diag:51,unchang:[50,74],notion:[30,5],came:[60,46,51],kristen:15,ungar:[63,31,15,72],introspect:[81,82,45,77,22,79,92,19,41,75,35,29,52],mostli:[17,18,62,63,65,40,1,19,3,20,44,5,25,27,30,9,31,10,11,46,47,22,34,36,15,16,33,71,37,38],sigsegv:94,opposit:[53,54,55,56,57,58,18,60,61,62,63,70,48,66,67,68,69,59,71,72,8],cheapli:56,syntax:[41,57,15],minimum_s:77,identifi:[18,21,5,63,64,65,37,68,71,48,33,41,13,28,35,51,52],next:[39,54,57,17,18,61,68,53,71,84,42,77,5,25,29,50,11,47,12,41,35,86,36,89,16,33,37],link_t:84,figueiredo:15,involv:[30,8,17,18,60,89,62,50,11,67,46,47,70,72,7,71,41,35,58],despit:[87,57,58,11,15,71,72,25,41],layout:[57,17,25,11,16,71,33,35],acquir:[77,10,29,92],mpsliban:[32,3],i5m2cc:88,mps_key_mvff_slot_high:[92,28],menu:3,explain:[10,11,7,41,28,37,51],configur:[20,27,9,18,43,77,5,22,15,79,45,70,51,7,85,92,3,75,13,29,38],abbrevi:[71,63,64,25],mps_pool_create_k:[81,37,9,77,10,22,74,35,79,1,7,92,27,75,25,85],artur:31,philosophi:15,btget:18,about:[0,56,57,17,18,62,63,48,67,69,70,40,72,8,13,58,42,59,77,22,78,24,25,29,81,30,82,80,11,46,41,35,36,34,15,84,90,91,50,94,37,51,38],rich:[30,15],mps_lib_memset:[32,34],weakrefer:[67,72,15],predecessor:15,plate:71,stoy:[60,31],likewis:[5,62],stop:[30,31,74,48,24,71,25,29],compli:69,ceil:18,mpscmvff:92,watson:31,mps_variety_str:21,report:[84,30,87,31,32,83,15,70,48,50,13,37],reconstruct:[16,18],mutual:[43,31,38],mps_ap_fil:[84,16],mps_build_mw:88,first_fit:92,softli:[15,67,46,71,72,8],bar:[71,51],gareth:[18,21,5,43,83,46,6,80,50,26,2,93,51],emb:41,"\u00e5ke":31,baz:51,patch:65,"__date__":21,twice:[30,82,50,40,46],bad:[30,58,89,70,15,46,16,48,25,84],told:[42,48],steal:29,respond:[89,11,12],mps_arena_has_addr:29,cbssetmins:50,fragmentation_limit:77,victim:13,fair:18,fp_size:46,btcv:18,light:30,datatyp:43,loreclaim:17,nul:[32,13,84],flush:[0,32,71,12,13,37,29],accumulatorscal:34,result:[0,54,57,17,18,62,65,69,40,72,8,41,77,5,50,48,25,27,29,81,30,82,10,7,46,47,12,34,35,80,87,36,32,84,13,78,16,33,71,94,37,51,52],"0x1003faf20":[13,16],respons:[39,30,80,56,57,59,43,5,8,48,42,24,12,50,41,81,62,29],fail:[84,56,17,18,65,40,13,59,44,5,24,25,29,30,10,83,46,47,12,41,35,36,34,15,16,50,71,37,51],themselv:[30,56,18,67,78,34,41],epdrinit:41,tractofbaseaddr:5,best:[39,54,58,59,48,67,53,71,8,77,25,29,30,31,33,34,89,15,50,92,37,51],subject:[0,82,32,50,67,46,78,71,25,3,35,29,85],awar:[54,41,7],said:[42,53,61,62,46,69,70,72,8,13],hopefulli:17,erez:31,databas:[31,80,18,4,21,5,43,83,46,24,6,72,50,26,2,3,13,51],delphi:15,phantomli:8,shenker:31,yet:[0,42,36,17,10,50,83,78,15,53,84,46,24,16,7,41,34,37],figur:[39,42,84,46],mps_pf_w3i3mv:[51,88],languag:[53,54,56,57,17,59,60,62,63,65,68,69,70,71,72,8,84,58,20,4,78,23,24,30,31,32,11,48,41,39,86,15,90,37,51,52],res_io:46,sos8cx:88,awai:[11,17],approach:[89,51,11,65,31],glasgow:31,pad_:37,attribut:[34,87,80],inabl:[54,55],accord:[42,30,17,18,54,61,89,65,84,47,71,48,8,92,41,34],never:[53,54,58,18,62,63,65,68,72,34,44,5,79,24,25,81,30,32,80,13,35,87,15,84,77,78,50,37],extend:[42,17,18,5,50,15,91,59,80,7,41,37,29,58],sram:71,weak:[39,56,17,18,67,70,71,72,8,19,42,20,22,78,79,25,27,82,7,34,86,89,15,90,38,37,52],sophist:[77,24,51],obj_chain:[37,25],extens:[53,82,57,18,45,44,10,62,11,15,66,51,41,37,29,38],lazi:[48,83,31,18],preprocessor:[61,88,10,65,16,15,32,51],extent:[55,56,57,59,63,11,15,66,78,71,48],dbgpool:[10,46],toler:[67,70,7],behaviour:[84,43,10,5,45,65,68,46,78,50,33,41,13],protect:[53,54,58,72,62,65,67,68,71,1,8,19,75,41,42,43,77,5,79,25,27,29,82,9,31,7,83,22,34,35,85,80,84,16,92,38,94,37,51,52],accident:[34,62],expos:[53,68,71,29],modular:[10,62,46,15,30],fault:[39,53,58,31,5,8,48,67,68,71,72,7,19,35,62],howev:[0,54,56,57,58,18,60,62,48,71,72,3,84,42,59,4,44,5,24,25,27,29,30,32,12,41,15,33,93,94,37,51],against:[30,87,44,5,33,8,62],obei:[37,72],logic:[17,18,60,63,15,68,72,51,38],seri:[67,54,13,56,24],com:[39,3,91,4],con:[0,57,31,59,15,67],rehash:[87,37,25],epdldebugsig:41,mps_telemetry_set:13,toni:[41,5,93,31,18],character:[67,30,31,15],ref_o:78,sai:[42,30,32,62,8,11,35,84,70,71,72,25,34,3],loader:29,dconfig_var_cool:[3,16],enorm:[46,93],guil:15,exemplari:4,vmmap:13,wider:3,guid:[20,86,87,18,11,65,72,7,41,37],assum:[42,53,82,57,10,78,67,46,24,12,7,41,34,84,37,51,61],summar:[5,38],duplic:[42,57,58,5,11,69,51],mps_lib_fput:32,liabil:4,degener:63,fre:15,union:[42,87,59,5,65,70,25,34,28,37],ben:31,three:[0,54,57,62,65,67,68,69,71,72,8,2,3,75,84,42,21,44,5,24,6,25,27,29,30,10,50,11,46,48,13,35,87,88,89,15,77,16,33,37,51],been:[0,39,56,57,17,18,54,60,62,63,67,53,70,71,72,8,13,58,42,88,5,78,76,24,25,26,28,29,81,30,45,10,50,11,46,12,22,34,35,80,87,36,69,15,84,90,16,83,33,41,93,94,37,38],specul:[18,15],accumul:[61,34,11,80],much:[0,53,56,17,18,62,70,3,58,42,44,24,29,30,45,33,11,47,12,39,36,89,78,50,37,51],mps_arena_unsafe_restore_protect:29,valu:[0,54,55,56,57,17,18,62,63,65,67,68,69,70,71,72,74,13,58,50,59,88,5,24,6,48,32,26,28,29,30,82,8,10,7,12,34,35,80,87,15,37,84,90,16,33,41,92,25],interest:[0,30,37,17,45,10,50,15,35,90,91,72,33,42,3,13,29,38],subscrib:91,insert_link:84,known:[39,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,53,70,71,72,8,34,4,77,5,76,24,25,30,80,11,48,41,87,89,69,15,84,78,94,37],quickli:[57,58,5,62,70,72,37,29,17],life:[77,63,31,25],rather:[42,30,56,57,18,54,60,10,5,63,64,15,84,77,53,16,65,48,13,37],retrospect:31,lifo:[54,63,71,59],suppress:65,tractreturn:5,anywher:30,"0x0000000100001ef7":16,dave:31,lift:18,child:[6,48],"catch":[56,36,51,15],pool_o:[81,9,77,22,79,1,7,92,27,75,85],"_m_ix86":51,emploi:63,type_fwd2:37,mps_alloc_pattern_ramp_collect_al:47,ident:[87,18,88,44,63,83,65,68,1,50,41,12],aix:60,gnu:[0,88,15,16,3,13],servic:[42,30,4,89,62,11,70,71,12,50],properti:[18,63,48,67,70,71,1,19,75,34,20,77,22,79,25,27,29,9,31,7,41,85,87,36,50,92,38,37,52],mps_lib_memcpi:[32,34],commerci:[39,30,4],mps_rm_const:[82,57],aim:[31,15],calcul:[67,34,89,35],displai:[0,11,21],publicli:[30,15],thrash:[30,31,62,67,70,72,8],aid:[82,50],vagu:58,anchor:31,spawn:15,seven:92,cons:59,have:[0,39,55,56,57,17,18,54,60,61,62,63,65,67,68,53,70,40,72,74,3,75,34,58,42,50,59,21,77,5,78,76,79,24,6,91,48,7,27,28,88,29,81,30,82,8,9,10,25,11,46,47,12,92,13,35,85,80,87,36,32,43,89,69,15,37,84,90,16,83,33,41,71,93,94,22,51,38],arenasetcommitlimit:5,mexico:31,toolkit:31,need:[0,39,55,56,57,17,18,54,60,61,63,65,66,67,53,40,1,8,3,34,58,42,59,43,5,78,79,24,48,32,27,28,29,30,82,9,25,10,7,11,46,12,92,13,35,80,87,36,72,15,37,84,90,16,83,33,41,71,94,22,38],noop:51,cond:6,conf:[51,31,38],ravenbrook:[39,3,91,4,93],symtab_s:[82,37],"1003fd328":13,disappear:[78,72,65,50],grown:15,mps_word_t:[82,87,17,65,37,16,33,13,28,34,29],disabl:[0,5,17],incorrectli:[78,59],receiv:[30,82,16,57,4,60,89,11,37,78,6,50,13,35],suggest:[30,18,44,10,60,91,50,92,93,37],make:[0,39,55,56,17,18,54,62,63,65,68,53,70,40,72,8,3,13,58,42,59,4,21,44,22,49,24,50,32,88,29,81,30,82,10,25,11,46,48,34,35,86,36,43,89,15,84,77,90,16,33,41,71,52,94,37,51,38],format:[39,54,55,57,17,59,60,63,48,70,71,1,74,3,75,13,58,42,20,77,22,49,79,25,27,28,29,30,82,8,9,10,7,86,46,34,35,85,80,72,15,84,16,33,92,52,37,38],who:[0,10,15,30],complex:[30,59,62,70,11,15,46,16,48,41,51,72],split:[54,56,58,18,89,63,11,67,46,71,50,2,13],mps_mvt_free_siz:77,complet:[42,30,82,57,4,18,44,10,62,33,11,37,67,24,71,51,32,41,84,35,29],elli:[42,31,15],mps_fmt_adjust_fencepost_t:46,fragil:33,evid:[16,59],vvv:13,quentin:31,rail:54,kit:[20,3,86,4],fairli:[55,72],rais:35,refil:[84,94],ownership:43,refin:[42,24,57,72,15],engin:[42,15],poolarena:41,protocolerror:50,mps_io_t:32,studi:[46,11,31],tune:[20,86,31,30,44,22,37,16,35,62],dylan:[17,4,83,5,25,11,15,68,51,7,41,18],char_bit:88,undesir:77,bewar:[84,16],mps_ap_trip:84,mps_lib_assert_fail:32,thu:[0,30,57,17,60,61,8,15,67,77,53,70,25,34,84],min:[5,51,50],thr:[82,94],inherit:[20,41,59,15,45],poolmrg:[26,83],contact:[39,20,82,4,7,65,91,84,79,90,16,40,25,92,3,94,27,29],greatest:18,thi:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,40,1,74,2,3,75,34,58,42,50,59,4,21,44,22,78,79,24,6,48,7,26,27,28,88,29,81,30,82,8,9,45,10,25,11,46,47,12,92,13,35,85,80,87,36,72,32,43,89,69,15,37,84,77,90,16,83,33,41,71,94,5,51,38],endif:51,lockstruct:43,programm:[0,30,59,54,60,62,88,11,78,15,77,53,71,48,41],jean:31,portabl:[39,31,32,15,71,65,33,13,37,51],arenasetsparecommitlimit:5,left:[50,8,57,18,10,5,25,89,62,15,65,33,1,74,13,34,29],arena_ld_length:5,protocol:[39,57,59,48,67,40,34,42,20,5,79,80,26,82,45,33,46,41,84,50,37,51,52],background:[18,45,5,43,69,29,51],just:[0,54,57,17,18,67,13,74,3,41,58,42,59,44,78,25,29,30,82,33,83,46,34,35,15,90,16,50,71,94,37,51,38],mps_sac_alloc_fast:12,pool_create_v:[],bandwidth:[62,72],ask:[42,20,37,57,30,83,15,23,12,81,35,29,38],fact:[53,54,55,17,18,62,63,65,70,72,34,78,29,82,11,12,41,87,15,90,16,33,37],human:[2,13,21],ifdef:51,unreach:[39,53,82,56,57,54,62,80,11,78,15,69,16,72,8,81,37,29,38],nowadai:[67,71],unbuff:92,poolcondemn:80,act_on_rang:18,previous:[17,59,43,78,25,26,13],easi:[82,18,22,11,15,37,67,16,3,94,35,51],interfer:29,had:[0,30,58,83,15,42,46,16,72,25,92,13,66,37],ideal:[9,44,62,11,48,72,41,17],define_class:41,fortran:[11,15],spread:[30,89,61],"0x1003f9ae0":16,board:31,henriqu:15,els:[0,42,7,16,51,25,84,37,29],save:[53,55,57,31,33,15,71,50],latest:[0,32,15,71,3,13],gave:[30,15],opt:3,applic:[39,54,59,62,68,53,71,8,3,77,23,29,30,31,32,11,89,15,78,16,33,38],advis:[92,4,50],preserv:[56,17,61,67,70,71,80],mps_message_type_fin:[0,54,62,78,25],uncheck:6,lcc:88,birth:77,"0x1003f99d8":16,obj_isfwd:[35,37],"0x000000010000ea40":16,apart:[6,11],linux:[39,43,88,16,7,3,94,51],measur:[58,31,62,71,33,34,29,17],semi:[54,57,58,31,30,62,70,59,71,50],specif:[84,57,17,18,62,63,72,8,34,42,59,43,5,23,80,26,29,81,30,82,31,11,46,13,36,15,50,51],arbitrari:[41,5,35,65,66],bufferinit:80,hunt:31,manual:[0,53,56,59,54,61,62,8,66,40,80,74,19,75,42,20,77,23,79,24,7,81,30,82,50,11,46,12,92,84,39,85,15,33,71,38,37,52],type_charact:25,dep:51,"0x00000001003fb130":16,mps_pf_fri3gc:88,src_ld:87,colmerau:15,unnecessari:[53,30,17,25],underli:[57,25,11,78,71,50],www:3,right:[30,18,31,44,50,11,65,46,33,34,4,37,38],old:[53,54,57,58,59,60,61,62,63,70,72,8,84,88,5,24,25,30,45,34,35,87,15,50,37],mps_arch_s8:88,deal:[30,55,87,68,34,15,67,60,71,8,41,27],interv:[0,54,18,25,50,84,37,29],mps_arch_s9:88,eas:[30,15],maxim:[42,77,41],percentag:77,mmqa_test_funct:18,zct:[56,76],born:8,intern:[84,54,55,17,18,83,48,71,8,3,13,58,20,5,32,29,81,30,31,45,10,25,11,46,12,34,49,85,89,16,50,38],sure:[30,55,46,16,71,33,37,51],addrcomp:34,tospac:[54,71,70,57,61],"0x0000000100003f55":[13,16],successfulli:[81,82,56,36,84,47,12,50,41,35,29,72],make_pair:37,mps_key_max_s:[77,75,28],insensit:15,cooper:[42,58,31,43,5,15,24,70,29],clash:[41,65],bottom:[82,7,25,16,50,37],logarithm:[51,88],coercion:41,deploy:[39,10,13],fox:31,princip:[15,50],subclass:[46,5,41,58],tempor:[20,77,50,19,84,75,38],buffer:[84,9,18,32,5,70,48,68,59,71,80,92,34,94,13,58],ucsc:31,morereturn:16,overcom:15,bruggeman:31,foo:[65,16,12,80,13,51],type_integ:[37,25],friedman:[60,31],fencepost:[54,56,60,10,46,74],core:[62,56,57,65],plu:[77,5,51,4],sensibl:80,bole:31,bold:30,someclass:41,pose:37,libsqlite3:3,confer:31,speak:[35,58],promot:[53,36,59,61,22,70,8,41],"0x7fff5fbff808":16,hsu:31,mps_frequenc:12,post:[0,54,36,62,78,25],"super":[46,41],gartner:15,sparecommit:5,unsaf:[78,71,29],alexand:31,"0x1003cb970":16,arenacr:5,slightli:[72,5,50,17,25],unfortun:[30,11],felleisen:31,poolscan:[16,80],alia:[84,82,87,60,10,65,70,72,32,34,41],despair:38,eec:31,old_symtab_s:37,findlongresetrangehigh:18,commit:[84,82,57,45,10,5,62,71,12,80,34,37,29],approxim:[42,30,82,56,36,59,54,5,63,53,72,34],sept:31,produc:[81,82,36,18,15,46,72,13,84,29],match:[30,66,46,47,12,25,34,28,38],mps_key_pool_debug_opt:[92,27,75,28,74],setrang:18,curiou:13,"float":[53,54,59,61,48,69,71,8,51],encod:[58,18,21,67,68,69,70,72,13],bound:[0,56,36,58,18,60,62,63,15,68,16,71],soo:31,down:[0,54,17,18,70,71,72,3,42,88,5,6,32,29,30,10,46,12,35,15,16,50,37],attrincr_rb:34,formerli:[88,57,25],lieu:42,wrap:[67,30,69,46,33],opportun:[46,36],cafeteria:71,storag:[0,53,56,57,58,18,60,62,63,66,67,68,71,72,8,59,77,24,29,30,31,41,15,50],kakkad:31,sigsoft:31,accordingli:[2,15,32],suffici:[53,18,77,89,15,70,41,37],mps_t_word:[34,51,88],judici:30,support:[0,39,56,57,58,18,54,62,65,66,70,40,72,8,2,3,75,41,42,59,43,77,5,78,79,24,50,25,27,30,82,9,31,10,7,46,47,12,92,34,35,85,86,87,32,88,89,15,37,84,90,33,71,52,94,22,51,38],closur:[57,31,59,80,15,66,50,51],"class":[39,53,56,57,17,18,54,72,8,65,67,68,40,1,74,19,3,75,13,58,20,59,77,22,78,49,79,48,7,27,28,29,81,30,82,9,45,10,25,83,86,46,12,92,34,35,85,80,15,37,84,90,33,41,71,52,94,5,38],avail:[39,54,57,58,18,62,48,68,70,71,72,8,3,84,59,4,44,32,29,81,30,10,25,11,13,89,15,77,16,50,94,51],width:[34,88,59,51,50],reli:[30,57,17,60,10,78,65,77,24,70,13,94,84,38],editor:[93,15],fraction:92,spring:71,overhead:[42,30,17,18,77,5,70,11,48,68,24,59,50,41,62,38],btfindresrang:18,lowest:[6,59,18],head:[46,84,61],traceid:34,form:[0,53,56,57,18,54,60,61,62,63,65,66,67,70,71,72,8,4,6,7,28,10,80,11,48,13,89,15,16,50,92,94,37,51],offer:[53,15,67,46,71,8],forc:[30,13,37,15,33],poolno:80,somehow:15,multiprocessor:31,hear:38,dead:[53,54,56,57,17,59,60,61,62,63,48,69,40,72,42,44,22,79,80,47,84,36,16,37],heap:[53,54,56,57,58,59,62,48,66,70,71,72,42,22,80,29,30,82,31,11,35,89,15,16,33,37],placement:[5,59,31,18,8],oopsla:31,hashtabl:25,"true":[0,54,59,65,33,84,18,5,6,7,26,29,81,30,25,41,35,87,34,78,50,92,37],cached_count:12,reset:[87,18,5,25,34,13],"throw":11,attr:[10,5,34],rattl:30,maximum:[42,63,36,18,77,5,51,46,12,50,34,75,29],tell:[0,39,55,87,21,8,82,15,42,54,53,51,25,84,37,29,72],dens:18,tucson:31,absenc:[32,83,46],autoconf:3,emit:[13,59,51,80],mpscsnc:79,accessset:34,mps_reserv:[10,65,37,46,16,72,25,84,35],featur:[0,56,59,65,70,71,72,74,13,20,5,25,29,82,45,7,11,46,22,84,15,37],alongsid:[41,56],mps_word_width:[51,18,88],classic:[30,3,71,24,66],utc:[13,16,31],"abstract":[42,30,31,18,43,5,45,15,54,46,6,51,34,41,29],decrypt:33,mps_class_t:[81,9,79,77,22,8,46,1,7,92,27,75,85],"__line__":46,postscript:[57,71,11,15,68],exist:[0,56,17,18,62,65,71,2,13,42,5,24,26,28,30,46,12,41,35,36,34,50,93,37],darko:31,request:[39,54,57,58,18,62,48,66,67,53,71,8,75,84,42,59,21,5,91,25,29,81,10,80,11,46,12,34,85,89,15,16,50,92,37,38],indirect:[55,56,17,4,48,69],pirinen:[42,58,31,5,48,67,46,70,71,93],sticki:[63,71,31],assembl:[31,51,17,15],inde:[41,5,35,62,33],encrypt:33,testor:43,index:[54,87,17,18,20,15,67,71,48,8,34,58],when:[0,53,55,56,57,17,18,54,60,61,62,63,65,66,67,69,70,71,1,74,2,3,75,34,58,42,59,44,22,78,79,24,50,48,7,27,28,29,30,82,8,9,10,25,11,46,12,13,35,85,80,87,36,72,32,89,15,37,84,77,90,16,83,33,41,92,94,5,51,38],deni:80,mps_begin:46,poolstruct:80,accessread:34,jone:[30,56,18,31,21,60,83,11,48,70,72,80,2,93],fmt_scan:82,test:[0,53,17,18,60,62,68,13,3,41,88,44,6,25,29,30,45,10,34,87,15,84,90,16,50,92,37,51,52],snapshot:[67,71,48],presum:[5,43],telemetri:[20,87,17,44,10,32,80,70,65,37,16,25,3,13,29,52],unlimit:[30,6],mps_class_mv2:[],jonl:[93,58],node:[53,55,57,61,67,70,71,50],matur:[10,22,31],notif:[83,50],intend:[18,60,1,34,43,77,22,6,80,29,82,9,10,33,41,35,87,32,15,50,94,37,51,72],prot:[5,51],benefici:18,felt:30,stringid:13,intens:[56,31],intent:[18,65,70,50,13,34],consid:[53,30,36,17,18,54,61,5,63,11,59,71,80,50,84,81,35,62,38],xavier:31,pooldescrib:80,doubl:[53,56,36,17,31,77,69,59,12,8,34,29,58],mps_build_ac:88,russo:31,brian:31,younger:[53,55,57,61,48,72],mrg:[26,83],my_malloc:30,longer:[0,54,56,57,18,62,63,71,72,8,34,24,7,26,81,30,10,80,11,12,41,35,36,15,78,93,37],furthermor:[46,82,17],arenainit:5,phantomrefer:[72,8],blockrang:50,candid:[57,35,18],iwmm:31,phong:31,ignor:[82,57,17,47,48,24,6,72],mrb:60,config_:51,time:[0,39,55,56,57,17,18,60,62,63,65,66,67,68,53,70,71,72,74,3,34,42,59,4,21,44,22,78,24,48,7,28,29,30,82,8,31,10,25,11,46,47,12,13,35,87,36,32,43,89,69,15,37,84,77,90,16,83,41,92,52,94,5,51,38],push:[71,63,40,59,85],mps_fmt_fwd_t:[54,35,37],offsetof:[7,33,37,16,80,84,25],backward:[53,5,18],strong_buckets_ap:25,mps_message_finalization_ref:[78,83,25],rom:[62,72],chain:[0,53,56,58,59,54,61,62,63,67,69,71,1,74,44,22,25,27,28,29,41,86,36,89,37,52],globals_root:37,skip:[84,54,86,17,18,22,25,37,79,16,71,1,7,27,35,9],global:[30,80,17,43,5,8,82,37,86,16,71,72,25,41,3,93,34],ost:31,invent:[53,24,58,15],osi:4,cacm:31,signific:[53,30,59,18,77,32,5,89,11,67,70,8,92,13,62],memset:[32,34,16],per:[17,31,32,62,11,15,50,13,94,84,18],addrcopi:34,dalton:31,milo:31,pldi:31,osf:[3,88],hierarch:31,decid:[42,30,36,17,18,80,11,84,46,71,12,8,57,34,37,29,38],middl:[82,57,62,48,16,72,50,41,84,29],depend:[53,50,56,57,17,18,54,63,65,67,68,69,40,72,8,19,75,13,20,59,88,77,5,79,6,25,27,29,30,82,9,45,10,7,46,92,22,34,85,86,87,36,89,15,90,33,41,71,52,94,37,51,38],system:[39,53,56,57,17,59,54,60,62,63,64,65,66,67,68,70,71,72,8,2,3,41,58,42,20,4,43,44,5,23,24,50,91,48,25,29,81,30,82,9,31,45,10,7,11,12,13,35,86,32,88,89,15,84,78,16,33,94,37,51],zone:[42,5,17],graph:[53,55,56,57,61,48,67,70,71],show:[30,44,5,24,16,25,13,41],intermedi:[77,17],w3ppmv:88,environment:32,yve:31,rightmost:18,electron:[62,11,31],decis:[36,17,18,32,90,59,40,37],jvm:15,lasttract:5,cbsdescrib:50,henderson:31,brown:31,sourc:[39,59,13,3,41,20,4,21,5,7,29,30,31,45,32,50,46,34,87,15,90,33,51,38],mps_sac_t:12,string:[84,30,36,17,31,21,32,70,15,68,16,1,48,25,13,28,37],btfindshortresrangehigh:18,maint:51,unfamiliar:64,feasibl:46,broadli:[63,35],condit:[53,30,37,81,59,4,10,47,11,48,35,84,6,71,50,41,3,34,51],octob:31,word:[53,56,57,17,18,61,62,65,67,33,71,72,73,8,34,58,59,91,7,82,25,70,46,48,13,35,85,84,16,50,37,51],exact:[54,55,57,17,59,62,65,70,71,72,8,34,88,22,79,7,27,82,10,25,84,37,38],seemingli:16,cool:[57,10,66,68,16,72,3,13,51],"0x1003f9af8":16,format_return:46,"0x1003fe278":16,administr:[11,15],level:[39,57,59,62,48,66,67,68,71,72,8,34,88,5,24,6,25,30,7,11,46,13,15,16,50],did:[30,37,29,15,25],die:[53,36,17,59,22,48,16,72,25],gui:31,restor:[0,57,31,43,15,71,33,37,29],metadata:[25,7],iter:[17,18,45,5,15,50,37],rusag:32,magnet:58,item:[5,71,21],"__time__":21,quick:[54,63,89],spent:[62,29],dip:46,round:[58,10,89,11,71,12,25,92,84,37,29],dir:51,o1algc:88,prevent:[0,78,57,17,31,5,90,24,70,12,7,34,72],work:[39,53,57,17,18,62,63,48,67,70,71,72,3,13,42,44,5,24,7,27,29,30,82,31,83,80,11,12,34,36,89,15,84,78,50,93,37,38],slower:[30,62,57,58,18],version:[0,17,18,65,40,1,2,75,13,42,20,59,21,77,5,79,50,25,27,88,29,81,30,82,9,45,7,46,92,22,34,35,85,87,43,15,84,16,33,71,94,37,51],sign:5,oldspac:[60,54],colin:31,cost:[55,56,60,62,63,67,70,71,1,84,42,4,44,24,25,31,50,12,13,15,77,33,37,51],unprotect:[82,56,7],maximum_s:[77,75],relocat:66,port:[32,15,78,25,37,51],leaf_ap:25,addr:[81,50,37,34,5,7,83,35,84,46,16,25,41,13,28,22,29,87],rootstruct:34,trivial:[5,84,50],uniform:[59,18,80],current:[0,39,57,58,18,54,68,70,40,72,8,3,41,42,59,43,5,7,27,88,29,82,50,11,46,34,21,15,13,33,71,94,51],"0x00000001003f9730":16,sinc:[39,53,56,17,18,54,60,62,67,40,34,58,42,5,24,25,29,30,82,32,41,35,85,87,36,89,15,84,16,71,94,37],arenafinish:5,suspect:16,mps_os_i5:88,va_list:[81,46,41,84,29],tolimit:18,failobj1:41,deriv:[56,57,58,60,32,5,65,24,70,48,50,34,41],vector_:[37,33],test2:18,guardian:[41,83,31],gener:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,67,53,70,40,1,8,3,75,41,58,42,20,59,43,44,5,78,48,25,26,27,29,30,82,31,45,7,11,86,46,47,12,34,35,80,36,72,89,15,37,84,90,16,33,71,94,22,51,52],"1003fa7d0":13,epdrpoolclassstruct:41,disclaim:4,consult:[84,32,5,17],slow:[0,30,17,63,70,15,46,16,71,12,29],modif:[57,18,4,15,46,24,71,72,3],address:[0,54,55,56,17,18,60,61,62,63,65,66,67,68,69,70,71,72,8,13,58,59,44,5,50,48,25,28,29,81,30,82,45,10,7,12,22,34,35,87,89,15,84,16,33,92,94,37],failnoteseg:41,slop:46,along:[57,61,25,89,80,10,34,41],mps_key_t:28,lii6gc:[3,88],giusepp:[93,31],wait:[0,39,5,29,25],epdldebugpoolclass:41,mps_os_ia:88,cannarozzi:31,statu:[30,50,88,7],shift:[34,51,17,18],soft:[67,71,72,15],steffen:31,queue:[0,57,17,62,25,83,67,78,71,72,50,52],weak_array_:7,attrpm_no_read:34,behav:[30,57,11,65,68,47,41],thirti:31,extrem:[70,71,51],bob:31,rafael:31,reclaim:[0,39,56,57,54,61,63,48,67,53,70,40,72,74,75,76,42,77,22,78,79,24,7,27,81,82,8,9,45,10,25,46,92,34,85,80,15,84,90,71,37,38],macintosh:[51,31,88],mps_rank_t:[82,79,72,7,34,28],chalmer:31,semant:[32,5,56,41,15],refsetuniv:42,regardless:[29,50],santa:31,grunwald:[63,31],extra:[81,30,56,17,18,5,48,67,24,80,84,62,29],pentium:56,modul:[42,20,8,30,18,4,21,32,5,43,11,15,53,45,48,50,41,49,51],c1990:[],prefer:[17,5,24,34,28,3,58],leav:[30,56,17,18,54,32,46,24,71,29,58],type_uniniti:84,visibl:[59,65,29],marker:[54,82,59,60,37,40,35],rootvar:34,prei:8,sigbu:[16,94],memori:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,71,72,73,74,3,34,58,42,20,59,4,88,44,22,23,24,50,91,48,7,26,29,81,30,82,8,31,45,10,25,11,86,93,46,47,12,13,35,14,80,87,36,32,89,69,15,37,84,78,16,33,76,52,94,5,51,38],univers:[42,31],visit:[53,82,58,22,16,3,35,29],todai:[30,71,15],perl:[53,54,11,15],cmp_t:[87,25],live:[0,54,55,56,57,59,62,63,67,53,70,72,74,44,22,78,24,7,30,82,8,9,31,10,25,47,12,80,36,69,90,16],handler:[16,5,68,6,8,13,94,35],mps_key_args_end:28,scope:[41,71,17,15],prev:84,tightli:37,preturn:80,chapter:[51,16,31,29,37],idempot:13,afford:[42,30,17],peopl:[0,30,57,62,64,15,91,70,71,93],claus:4,brooksbi:[39,31,18,21,5,43,83,46,6,80,50,26,2,93,51],grate:93,"0x00007fff90509df0":16,visual:[39,57,88,15,3,51],appel:[42,48,58,31,8],olivi:31,prototyp:[51,18,15],examin:[42,56,17,18,61,24,87,71,41,37,29,58],obj:[16,5,25,83,37,46,90,6,33,84,35,87],mps_pool_check_free_spac:74,effort:[10,62,48,29,8,51],easiest:46,behalf:30,fly:31,judi:93,graphic:[93,51,15,58],poolam:[10,18],car:[16,37,31,33],prepar:[0,36,18,16,12,80,84],pretend:11,uniqu:[42,58,31,13,34,51],imper:15,descriptor:[54,5,80,50],prehistori:5,can:[0,39,55,56,57,17,18,54,60,61,62,63,65,66,67,68,53,70,40,72,74,3,34,58,42,59,4,21,44,5,78,76,24,50,91,48,7,27,28,88,29,30,82,8,9,31,10,25,11,46,12,92,13,35,80,87,36,43,89,69,15,84,77,90,16,83,33,41,71,94,37,51,38],inadequ:[71,11],findshortresrang:18,purpos:[54,57,58,62,71,1,3,75,13,4,43,5,7,29,30,31,45,50,12,22,41,35,15,33,94,37],laughter:13,preclud:38,cisc:63,boilerpl:41,strother:31,mps_arena_t:[0,59,60,65,1,75,77,22,79,7,27,28,29,81,82,9,83,46,35,85,87,36,78,92,94,37],encapsul:[87,5,8,67,71,72,25,29],stream:[54,58,10,32,50,70,37,16,80,25,3,13,29,52],predict:[30,77,36,17,18,44,63,11,60,59,71,92,57,84,75,29],tracesetismemb:5,winston:31,agent:42,limitreturn:[18,50],heard:30,critic:[84,20,57,17,31,43,10,62,48,49,46,16,33,41,13,66,37,52],abort:[32,13,16,37,33],tracesetempti:5,recycl:[53,54,57,17,59,62,63,48,70,71,72,74,42,20,22,23,24,80,29,82,11,89,15],mps_pf_xci6ll:88,simul:[68,31,15,50],occur:[0,54,56,57,59,60,62,48,67,68,69,70,71,72,8,34,24,29,10,11,47,41,87,84,37],verlag:31,alwai:[0,54,58,59,63,65,67,68,53,71,72,74,34,88,77,25,26,29,30,82,10,46,47,48,13,35,89,16,33,92,37,51],differenti:72,exit_cod:82,multipl:[39,53,56,59,54,60,61,8,66,67,69,70,71,74,84,42,18,43,5,7,29,30,45,46,47,12,41,85,87,15,78,94,37,52],mps_frame_t:40,reg_root:[82,37],mps_telemetry_intern:[13,70],write:[0,56,57,17,60,8,65,67,68,13,72,2,19,3,34,58,42,20,4,7,29,30,82,9,31,32,11,46,48,41,15,84,78,91,83,33,71,94,37,38],vital:[58,10,48,33,84,34],anyon:30,actual:[0,54,55,56,57,58,62,48,66,40,73,8,42,43,5,24,25,29,30,82,80,11,46,41,92],pure:[39,53,56,25],tract_of_addr:5,parameter:51,controlalloc:[5,41],poolclassepvm:18,unlucki:78,product:[39,53,86,17,4,21,10,22,35,46,16,51,27,3,59,13,29],snc:[19,38,40,79,20],huge:[30,63,71,66],max:5,clone:31,make_t:25,usabl:29,jacqu:31,membership:[5,50],mad:31,"1993a":[68,72],mai:[0,39,55,56,57,17,59,54,60,62,63,65,67,68,53,70,40,1,74,3,75,34,58,43,77,22,78,79,24,50,48,32,25,27,29,81,30,82,8,9,31,10,7,11,47,12,92,13,35,85,80,87,36,72,89,69,15,37,84,90,16,33,41,71,94,5,51,38],underscor:65,secondari:[51,31],data:[39,53,56,57,17,18,54,60,62,63,48,66,67,68,69,70,71,72,74,34,58,59,4,43,5,24,6,25,29,30,82,8,9,31,45,10,50,11,46,47,12,13,32,15,84,16,33,41,94,37,38],grow:[0,30,36,77,62,71,50],man:[62,18],mps_key_mvff_arena_high:[92,28],mps_fmt_class_t:35,stress:[3,50],mps_arena_:[60,65],practic:[42,87,57,18,31,11,65,67,24,33,13,37,58],findshortresetrang:18,mpsio:[32,13],explicit:[54,56,58,30,11,15,46,41],pooltrivbufferinit:80,inform:[0,53,56,57,17,59,54,60,62,64,48,67,68,69,70,8,13,58,42,4,21,5,23,24,91,80,29,31,32,33,11,46,41,35,36,16,50],"switch":[17,25,15,37,33,3,27],preced:[89,28],combin:[39,30,57,31,88,89,5,8,11,15,42,67,46,24,12,50,3,51,72],uncach:5,finddelet:50,anoth:[0,53,55,57,58,18,54,60,65,66,33,71,72,8,34,42,70,24,48,25,29,81,30,82,7,11,47,12,41,87,36,89,15,84,78,16,50,94,37],callabl:5,talk:46,approx:42,"_ts_":46,schwartz:[67,70,31],anticip:[30,8],softrefer:[71,72],approv:[4,50],ymmv:39,cutt:31,thr_o:94,size_t:[18,65,74,75,84,43,77,22,7,28,29,30,82,32,25,46,12,34,35,85,36,16,33,92,94,37,51],equip:31,still:[53,56,17,18,62,63,70,73,8,3,42,59,43,78,24,25,29,30,80,11,46,13,35,87,15,90,16,50],ieee:31,dynam:[53,30,56,57,59,31,5,63,89,78,15,66,69,70,71,48,41,62,72],"0x000000010006631f":16,conjunct:[56,51,43],group:[93,51,15],mps_key_align:[92,28],concis:[13,50],polici:[39,53,56,57,58,18,54,63,65,67,70,71,8,17,59,77,5,48,81,31,12,41,89,92,37,52],obj_fmt:[37,35,25],bekker:31,multithread:31,tort:4,window:[39,53,58,43,32,62,88,69,51,7,3,94,34,29],mail:[18,5,46,91,41,51],arguabl:41,main:[30,82,56,57,58,31,89,62,8,70,65,68,24,16,71,72,50,41,37,51],message_o:0,confin:[34,11],non:[57,18,61,62,48,70,71,72,74,2,34,42,59,4,43,5,50,32,26,25,27,29,82,31,45,10,7,41,35,80,87,15,33,37],free_templ:74,recal:37,halt:[53,59],halv:70,mmqa:18,mps_arena_walk:46,cbsblocksiz:50,jame:31,alist:10,mayuseinlin:50,initi:[84,54,57,17,18,63,67,70,71,34,43,44,5,80,29,30,82,25,12,41,50,37,51],tucker:[93,31],process:[53,56,57,17,59,62,48,66,67,68,70,71,72,8,3,76,58,42,21,44,24,25,29,30,31,10,7,13,89,15,78,33,37],therebi:[53,18],half:[70,18],superset:42,provision:42,discuss:[42,54,21,11,67,46,78,91,41,37,51],nor:[56,62,63,67,71,12,8],introduct:[39,20,80,37,41,18,21,5,45,86,23,46,6,51,50,26,2,3,34,42],critiqu:31,obj_scan:[90,37,35,33],term:[39,54,55,56,57,17,59,60,61,62,63,48,66,67,68,53,70,71,72,73,8,3,58,4,77,30,11,46,69],workload:31,name:[58,18,60,63,65,13,80,3,41,42,59,21,7,6,32,28,30,45,10,25,46,48,34,35,88,15,50,51],lewi:[31,15],mps_rank_weak:[82,7,67,90,72,25],perspect:[31,7],didn:[53,46,59,15],revert:42,type_vector:33,buckets_pool:25,separ:[55,57,17,18,60,62,63,65,68,71,72,3,34,42,5,24,25,29,30,11,46,12,41,85,50,92,51],mps_addr_return:83,massachusett:31,gain:[44,15,46,33,94,29],januari:[42,31],mps_fmt_put_fencepost_t:46,confid:[24,27,25],compil:[39,54,56,57,17,18,60,62,63,48,66,68,69,70,71,72,8,2,3,84,58,4,21,24,30,82,31,10,13,86,88,15,16,33,37,51],everyth:[82,13,37],domain:[30,15],replai:80,mps_args_begin:[74,9,77,22,7,37,79,1,25,92,27,75,28,35,29,85],dialect:15,moher:31,replac:[54,60,7,15,35,46,90,25,41,37],individu:[87,57,18,5,47,8],compon:[42,30,4,21,5,15,72,3],continu:[39,30,63,57,59,18,89,33,11,15,67,70,24,6,48,25,50,37,29,72],lookasid:[68,70,59],borrow:46,"0x00000001003f9b70":16,redistribut:4,replay:80,"0x00000001003f9bc8":16,significantli:[42,30,89,18],poolreadi:5,year:[57,31],operand:[34,16],happen:[42,30,57,17,72,10,62,25,11,37,84,46,16,12,7,41,81,94,35,61],dispos:[35,15],lesson:44,conting:50,shown:[70,67,78,16,25,13,84],myformat:3,jackson:[93,31],space:[84,54,56,57,17,59,60,61,62,63,48,68,70,40,72,74,75,34,58,42,44,5,24,25,26,29,30,8,31,10,80,11,46,12,92,13,85,87,36,15,77,16,83,50,71,37,51],profit:4,protocolsomeclassguardian:41,rankfin:34,mps_cached_count:12,"0x7fff5fbff174":16,profil:[31,88,44,70,77,16,13],underwrit:[46,74],rational:[61,34,51,45],mps_arch_i4:88,mps_alloc_pattern_t:47,mps_arch_i6:88,mps_arena_expos:29,factori:72,mps_arch_i3:[51,88],undead:[69,56,63],earlier:[0,56,71,58],"goto":[41,17,18],newsiz:50,occupi:[42,18,62,48,69,16,72,29],million:[44,37],seventh:37,argv:[82,16],mps_key_mvt_frag_limit:[77,28],mps_message_t:[0,83,78,36,25],krishnan:31,lab:31,carl:31,org:[3,15],"byte":[53,57,58,18,62,64,67,68,69,70,71,74,75,84,59,77,5,80,29,82,32,50,46,12,34,85,89,15,33,92,37],argc:[82,16],unpredict:30,card:[57,31,8],care:[84,54,82,17,59,35,25,41,34],mps_key_min_s:[77,28],reusabl:41,kaufmann:31,wai:[84,17,18,62,48,67,70,72,8,3,34,42,4,43,5,78,24,25,29,30,82,10,7,11,46,47,41,87,32,21,89,15,90,16,37,51,38],mps_word_shift:[51,18,88],badli:[67,89,70,11,7],prescrib:71,frequenc:[24,12],mps_pool_class_mvff:[],synchron:[0,30,56,57,58,31,70,59,71,12,84,72],mps_size_t:[92,75,85],refus:[5,29],motion:[69,57,31,29,8],turn:[42,53,63,74,57,25,46,16,71,80,33,36,13,35],place:[58,62,48,70,71,72,8,84,77,5,25,29,30,82,7,11,13,35,87,36,15,78,16,37,51,38],stuff:51,unwis:46,principl:[42,51,31],imposs:48,frequent:[53,20,37,17,30,22,15,23,24,16,8,35,29],lambda:[78,16,25],origin:[54,17,18,45,5,15,67,78,71,72,25,93,35],suspend:[42,5,94,35,43],written:[39,56,57,17,18,70,72,74,13,42,5,7,30,32,11,41,89,15,90,50,93,37,51],directli:[53,82,56,58,4,21,62,78,15,66,84,24,6,72,8,41,13,34,51],subrang:18,carri:[87,59,8,78,80,33,25],onc:[31,30,63,57,17,18,46,7,15,42,65,39,71,12,48,25,34,84,41,29,72],arrai:[54,55,57,58,18,63,64,65,68,71,5,48,25,28,82,7,12,22,34,35,36,15,94,37],resultreturn:16,bufferempti:5,yourself:[37,29,38],acquisit:78,act_on_range_high:18,fast:[39,30,56,36,17,31,77,50,89,84,59,71,33,41,57,13,63,37,18,58],symmetri:18,xci3gc:[3,88],oppos:[30,34,56,57,48],ring:[5,57,34],mps_arena:[83,29],open:[31,20,17,18,54,32,25,78,15,39,90,50,7,3,4,29,38],predefin:[37,51],size:[53,54,55,56,57,17,18,60,61,63,65,66,67,69,71,72,73,74,75,13,58,59,43,44,5,79,50,48,32,27,28,29,30,82,8,9,45,10,7,11,86,46,47,12,22,34,35,85,80,87,36,88,89,15,37,84,77,16,33,41,92,94,25,51,38],mps_build_sc:88,given:[42,30,55,56,59,60,32,62,74,83,82,48,67,46,50,12,25,41,13,28,37],unlink:70,pad1_:[16,37],fmt:[9,22,74,79,1,7,27,35],anderson:93,gen_param:36,necessarili:[57,34,70,37,16,41,13,29],draft:[46,5,51],yip:[62,31],circl:15,arithmet:34,white:[42,53,55,57,17,60,5,48,67,70,71,80,26,93,35,58],conveni:[0,30,82,57,18,10,5,33,32,15,42,67,50,25,41,28,37],frame:[54,56,57,59,48,40,8,75,20,77,22,79,7,27,82,9,92,13,85,16,71,38,52],mps_mv_size:75,mps_pool_create_v:81,mps_fmt_scan_t:[82,17,37,71,33,35],mps_res_io:10,cope:[30,82,62,7,78,8],memo:31,copi:[53,54,57,17,18,60,62,63,65,67,68,69,70,71,1,74,19,3,84,58,42,20,4,44,5,24,25,26,27,30,8,9,31,10,46,47,48,41,35,36,72,32,15,37,33,22,38],alan:31,btx:18,blacklist:58,weak_array_t:7,enclos:[54,57,65],wow64:39,floppi:[62,58],domin:30,mps_class_mvt:[77,28],holder:4,than:[0,53,56,57,17,18,54,60,61,62,63,64,65,67,68,70,40,72,74,41,58,42,4,44,5,50,48,32,29,30,82,8,25,10,7,11,46,47,12,92,34,35,80,87,36,89,15,84,77,16,33,71,94,37,51,38],serv:[77,5],wide:[30,56,36,77,22,63,15,24],amcfix:17,instanc:[54,82,17,59,77,32,5,80,48,67,46,70,71,50,34,41,62,58],expens:[42,30,55,56,57,58,54,62,71],subexpress:84,kolodn:31,balanc:[62,59],mpsavm:[65,37,29],were:[84,54,56,57,18,63,67,70,40,1,13,88,44,22,25,30,82,46,12,41,35,87,36,15,50,94,37],posit:[81,82,87,59,18,25,64,65,35,33,34,37],server:[62,31,15],browser:15,pre:3,analysi:[0,42,82,18,31,60,22,37,59,72,13,35],delic:7,look:[0,54,57,17,18,61,72,13,5,24,25,28,31,10,7,11,41,35,87,84,90,16,33,51,38],obj_empti:[16,37],ani:[0,54,56,57,17,18,60,62,63,65,66,67,69,70,71,72,74,3,34,58,42,50,59,4,21,77,5,24,6,48,7,28,29,30,82,8,10,25,11,46,12,13,35,80,87,32,43,89,15,37,84,78,16,83,33,41,92,94,22,51,38],danger:[10,41,89],dash:25,"1992a":71,nickola:31,"1992c":[60,70],"20g":16,deliv:[15,21],mps_thr_t:[82,70,94,37],fp_pattern:46,repack:31,mps_os_xc:88,sat:[13,16],buffercr:80,gustavo:31,techniqu:[39,53,56,57,17,59,61,62,63,67,68,71,72,58,42,20,44,5,23,24,30,31,11,41,89,15,33],advic:[86,16,12,29],callback:[50,45],destroi:[81,30,82,56,36,18,60,80,83,15,37,84,77,71,12,48,74,13,35,29,72],note:[0,53,56,57,17,18,54,60,62,65,67,68,70,40,72,73,3,13,58,42,59,88,44,22,78,24,50,48,25,27,28,29,81,30,82,9,31,45,10,7,46,47,12,92,34,35,80,87,36,32,89,15,84,77,90,33,71,94,37,51,38],other:[0,39,55,56,57,17,18,54,60,61,62,63,65,68,53,70,40,72,8,2,3,34,58,42,50,59,4,21,44,5,78,49,79,24,6,48,7,27,29,81,30,82,10,25,11,46,12,92,13,35,85,80,87,36,43,89,69,15,37,84,77,90,16,33,41,71,94,22,51,38],lumpi:36,take:[84,54,57,17,18,63,65,70,71,80,41,42,50,59,77,5,79,24,6,48,25,27,28,29,81,30,82,9,10,7,11,46,12,22,13,87,36,89,15,78,16,33,92,37,51,38],"0x1003f9c18":16,subsidiari:[46,50],interior:[56,57,58,48,33],concern:[42,30,60,62,11,70,16,72,50,37],noth:[42,36,43,74,37,68,51,25,92,13,75,34,29,38],mps_pf_fri6gc:88,begin:[42,54,57,18,21,10,80,89,65,67,46,70,71,51,48,61,3,84,29],printer:[13,15],pain:[30,17],norman:[60,31],trace:[53,56,57,17,59,62,63,48,67,70,71,72,34,58,42,5,23,24,80,29,82,31,45,83,13,35,16,33,37],normal:[0,55,57,17,65,71,72,8,41,43,77,24,6,25,29,7,46,84,87,34,13,78,51],track:[42,30,57,54,10,15,46,24,16,71,48,37,72],c99:57,enter:[16,71,59,8],compress:[71,57],clearer:34,eclect:15,poollo:18,leroi:[31,8],mps_root_creat:[82,57,37,8],tract:[5,17,45],pair:[50,56,58,18,88,25,16,33,3,37],maclisp:[58,31],neatli:30,mps_alloc_pattern_ramp:47,todo:25,synonym:[57,58,18,15,71,8],proud:13,quantiti:[53,30,58,62,64,66,70,8],runtim:[31,17,15,37],senior:93,event_kind:13,checkd:6,gracefulli:60,translat:[31,17,59,45,5,48,68,46,70,8,62],event:[0,30,37,4,45,10,32,50,11,35,87,70,78,16,80,25,3,13,29,52],messageempti:83,mps_amc_appli:22,cornel:31,mps_mvff_free_siz:92,"1003fe000":13,target_check_deep:6,merit:46,meter:51,concurr:[39,54,57,58,31,67,78,72,8,41],mps_ap_:[84,65],permiss:[84,35,15],hack:18,threshold:5,obj_delet:[25,87,7],cbschangesizemethod:50,addit:[84,56,57,58,18,60,70,13,17,42,77,22,79,24,7,27,29,30,9,11,46,12,41,35,89,15,78,92,37],ground:72,slot:[54,41,84,7],onli:[39,53,55,56,57,58,18,60,61,62,63,65,66,67,69,70,40,72,74,34,42,50,4,21,77,5,78,79,24,6,48,32,27,28,29,81,30,82,8,9,10,7,83,46,47,12,22,13,35,80,87,43,89,15,37,84,90,16,33,41,71,94,25,51,38],explicitli:[39,53,63,15,65,48,41,34,13,29],ratio:77,fenc:[46,54],pointer:[0,54,55,56,57,17,18,60,61,62,8,65,66,67,69,70,71,72,74,84,58,42,50,59,88,5,78,79,24,6,48,7,27,29,81,30,82,9,31,32,25,11,46,12,34,35,85,80,87,36,89,15,37,90,16,33,94,22,38],"0x7fff5fbfef2c":16,transact:31,activ:[42,30,56,57,59,43,5,62,15,54,69,71,48,63,37,29],enough:[59,30,89,37,58,18,54,77,10,50,11,35,16,12,32,13,63,34,29],z80:18,sparecommitlimit:5,black:[42,53,57,58,45,60,48,67,70,71,80,35],btfindshort:18,analys:36,wilei:31,entrant:[72,10,35,50],overwritten:[60,24,16,72],moreau:31,"0x0000000100005ff5":16,nearli:[84,62,17,48,37],variou:[20,82,37,17,18,21,30,50,62,15,23,46,33,3,34,51],get:[0,57,17,18,61,68,71,8,3,84,42,44,22,25,29,30,10,7,83,46,12,41,86,36,89,16,33,37,51],genera:31,mung:51,clang:[39,3,16,88],allocat:43,cannot:[0,55,56,57,18,65,66,67,69,70,71,72,34,42,59,5,24,50,25,27,29,30,10,7,11,46,47,48,41,89,84,78,33,37,51,38],murali:31,freestor:[54,66],eventrep:80,attrbuf_reserv:34,mps_io_writ:32,requir:[0,53,56,57,58,18,54,60,61,62,8,48,67,70,71,1,74,75,13,59,21,77,5,79,24,50,32,27,28,29,30,82,9,45,10,7,11,46,22,34,35,85,80,87,72,43,89,15,37,78,91,83,33,41,92,94,25,51,38],ssb:71,reveal:[16,59,25],discontigu:59,arenaclamp:5,seldom:68,dramat:[44,53],yield:8,hash_t:[87,25],joker:13,tillotson:93,"0x7fff5fbfef28":16,roger:31,though:[17,18,62,78,15,69,16,51,8,35,29],through:[42,55,41,17,18,5,80,15,37,67,46,78,12,48,50,26,13,34,29],where:[84,54,55,56,57,17,18,61,62,63,65,68,70,13,72,8,3,41,50,59,43,5,49,24,6,48,25,29,30,82,83,7,11,46,12,34,35,87,36,21,89,16,33,71,94,37,51],mps_key_mvff_first_fit:[92,28],summari:[42,5,80,17,50],user:[0,60,68,44,32,5,62,11,15,46,48,80,7,13,41,29],kernel:72,ams_alloc:10,lasttractbas:5,mps_formatted_objects_stepper_t:[71,35],closurep:50,symtab_root:[37,25],zaphod:18,lnc:31,unfix:[52,33],infinit:62,checkl:6,detect:[56,59,63,48,67,72,74,84,78,25,29,30,82,45,7,11,46,12,41,90,16,50,37,51,38],"0x1003cb958":16,amort:50,mps_sac_flush:12,mps_telemetry_filenam:[32,13],review:[31,17,18,37],enumer:[34,71,50],"0x000000010007b14a":16,label:[13,70,65,52],hist:[42,18,21,5,43,83,46,6,80,50,26,2,41,51],mps_build_:51,behind:[42,13,57,1,25],between:[0,53,55,56,57,17,54,62,65,66,67,68,71,72,8,3,84,88,77,5,24,48,25,28,29,30,31,32,50,11,46,12,22,41,80,36,78,33,37,51],"import":[84,30,82,17,18,44,33,70,15,37,24,6,71,65,48,25,13,50,34,72],checku:6,across:[57,48,50,92,3,51],dybvig:[72,31],spars:[55,59,48,15,8,72],august:31,parent:[61,48,6,40,34,41],palimpsest:8,comp:15,tarditi:31,typedef:[84,87,74,18,5,7,70,65,37,50,12,25,36,41,28,35,51],cheap:[53,56,89],blame:30,cycl:[53,54,57,59,44,8,15,67,70,71,48,7,29],sparc:[3,18,88],pieper:[93,31],spare:[54,45,5,11,71,29],inflex:[70,11],uncondition:78,shortag:[94,11],come:[37,18,5,50,11,62,15,35,68,56,48,7,13,3,29],caar:16,o1alcc:88,reaction:13,unrel:16,mono:15,region:[30,59,31,54,80,15,16,71,72,33,41],mps_var_df:51,contract:[5,4],retir:51,eql:68,audienc:13,saguaro:57,coucaud:31,mani:[39,54,55,56,57,17,18,62,63,48,66,68,71,72,8,13,58,42,59,77,24,25,29,30,82,32,11,12,41,87,89,15,84,78,16,93,37,51,38],mann:[5,93],bitset:[34,58],nettl:[72,31],bufferpool:10,undocu:[92,94],color:[53,57,58,60,48,67,70,71],overview:[39,20,86,42,18,21,83,5,43,11,23,46,45,50,2,41,37,51],suppos:[26,82,12,18],inspir:15,period:[30,56,24,47,71,37,29],dispatch:[50,37,17,15,25],mps_pool_class_epdr_debug:46,duti:15,exploit:[77,22,17],qin:31,anti:41,exclud:[32,3,58,18],sentinel:5,event_label:13,poll:[0,5,45,25],poli:41,damag:[62,4],atom:[42,30,59,31,43,5,63,41,94,84],ultim:5,clarif:51,coupl:[30,37],harmless:[46,47],invert:[48,18,15,8],feldt:93,invers:[53,18],fixabl:80,mark:[53,54,57,17,18,61,62,63,48,67,69,70,71,74,19,58,42,20,24,25,26,27,8,31,10,80,13,36,15,93,38],klauser:31,workshop:[31,88],sparecommitexceed:5,weak_table_:7,scannabl:[42,59,71,25,37,38],"0x0000000100002fe4":16,mps_end:46,mps_arena_spare_commit:[5,71,29],"000ae0397334e0a0":13,derefer:74,thousand:44,resolut:[32,13],andrew:[93,31],catastroph:71,mps_sac_class_limit:12,rememb:[31,30,53,57,17,18,43,72,55,15,42,54,24,67,71,48,34,82,29,38],drum:[71,58],ironpython:15,repres:[84,54,55,57,58,18,63,65,66,68,69,70,71,72,8,34,59,5,25,28,30,82,31,50,46,13,35,87,78,33,37],mps_message_gc_condemned_s:36,mps_arena_spare_commit_limit:[71,29],sound:[11,18],poolasm:80,"0x000000010000261b":16,thesi:31,"0x000000010002686d":16,mps_align_t:[59,65,92,34,28,35],diagnost:3,might:[53,54,7,56,57,17,18,60,61,62,65,67,68,71,72,8,13,42,44,78,24,50,48,32,28,29,81,30,82,10,25,46,12,41,35,87,36,34,89,84,90,16,33,94,37,51,38],epdlpoolclass:41,antoni:31,thisclasscoerc:41,wasmark:26,trick:37,cast:[54,60,32,65,70,33,34,41],invok:[30,57,59,18,50,46,78,6,33,41,13,35],mps_ap_alloc_pattern_end:[47,72],mps_pool_debug_option_:[46,28,74],"na\u00efv":[78,25],amcscan:16,invoc:[57,59,65,71,50,41],mps_message_gc_not_condemned_s:36,addroffset:34,findshortresetrangehigh:18,vararg:46,program:[0,39,56,57,17,59,54,60,62,63,65,66,67,68,53,70,40,72,74,2,3,84,58,4,21,44,22,78,24,48,32,27,29,81,30,82,8,31,10,7,11,47,12,13,35,87,36,89,69,15,37,77,90,16,33,71,94,25,51,38],advantag:[30,58,43,77,89,11,48,46,71,72,25],stdout:32,hypothesi:[53,22,48],metric:64,dconfig_var_df:51,henc:[53,30,55,57,8,25,70,84,6,72,50,41,35,80],mps_scan_begin:[82,17,7,33,65,37,90,25,35],worri:[30,17,11,15,25,84],destin:[32,87,29],cluster:18,good:[39,42,82,17,4,58,44,32,63,89,78,84,53,71,13,37,29,18],cobol:[11,15],eras:15,cbsiteratelarg:50,"0x7fff5fbff830":16,mps_ss:17,nearbi:[63,16,11],smalltalk:[53,54,56,31,11,15,72],sos9sc:88,develop:[39,18,70,3,4,21,44,5,6,27,29,31,45,10,11,46,41,86,15,50,51,38],"0x1003f9b58":16,alphabet:18,stepper:[82,10,22,68,71,35],lippgc:88,same:[84,54,55,56,57,17,18,62,63,65,67,68,69,40,72,8,41,58,42,59,43,77,22,78,79,50,25,26,27,29,30,82,31,10,7,46,47,12,34,35,85,87,36,32,88,13,90,33,92,37,51,38],check:[0,54,56,17,18,60,40,80,74,19,3,34,42,20,43,5,79,6,25,29,81,30,31,45,10,50,46,12,41,88,89,84,78,16,33,37],binari:[54,56,17,4,21,32,5,43,89,67,51,13,29,58],epoch:[32,5,34],mps_arena_class_t:[59,29],pad:[54,80,37,57,9,79,60,61,22,74,8,86,48,35,46,16,1,7,27,25],protsync:51,sos8gc:88,circularli:71,knuth:71,document:[39,17,18,60,62,65,70,40,2,3,34,42,4,21,5,6,80,26,28,29,81,30,31,45,10,83,46,47,41,43,15,84,50,71,94,51],ensuresomeclass:41,week:15,exhaust:[77,35],finish:[0,30,8,9,61,5,50,11,48,42,46,53,16,80,25,13,28,41,29,58],typesett:15,poolfix:17,nest:[57,47,28],assist:[71,13,16,70,48],driver:51,someon:[30,65],treadmil:[60,70,57,31],entry_interpret:16,driven:[67,31],capabl:[84,13,71,72,15],mps_root_create_table_mask:82,mps_addr_pool:[81,29],improv:[56,18,63,68,72,3,44,22,24,32,27,30,9,31,10,7,46,36,89,15,77,91,92,51],extern:[54,55,56,57,58,18,48,71,72,8,42,24,80,29,30,45,11,83,41,89,78,50,92,51],postpon:[37,25],mps_fmt_skip_t:[71,35,37],tradition:67,mps_args_end:[74,9,77,22,7,37,79,1,25,92,27,75,28,35,29,85],appropri:[56,57,58,18,62,48,71,72,8,42,59,21,77,6,80,29,82,25,41,35,89,78,37,38],poolmark:80,framework:[42,20,31,15,45],macro:[84,17,18,21,61,5,88,65,46,6,12,33,41,34,28,37,51,52],random:[54,16,71,72],attrscan:34,justifi:[59,18,50],pronounc:56,without:[0,39,55,56,17,18,54,60,62,65,67,53,71,72,3,41,4,5,24,48,27,28,29,81,30,82,9,31,10,50,11,46,47,12,34,35,86,36,15,84,78,33],evict:57,temptat:33,model:[53,31,15],branquart:[31,15],dereferenc:[34,84,15],commitlimit:5,table_rehash:[87,25],tobt:18,gdr:80,printezi:31,execut:[39,55,56,57,17,18,62,8,70,74,58,59,4,43,44,80,32,7,41,21,15,94],among:[30,15,46],conform:[57,18,32,65,41,51],c89:57,unflush:13,rest:[94,35,37],halfwai:50,rare:[53,8,57,59,10,5,63,70,71,12,50,84,37],mps_build_lc:88,gdb:[13,16,29],doligez:[31,15,8],kill:30,invalid:[0,42,82,8,58,10,5,50,48,67,40,72,25,71,34,81,84,29],aspect:[57,21,44,88,11,71,50,29],touch:[10,84,87,61],rankexact:34,speed:[30,57,18,77,11,15,71,12,33,13,84,38],mps_build_ll:88,concentr:[30,51,21],death:[53,77,31,25],autocad:53,miscellan:[30,32,23],issetrang:18,mmap:[60,62,72,51],except:[39,58,18,72,62,65,67,1,8,59,4,43,5,80,30,82,33,83,46,48,13,35,89,15,50,94,22,51,12],littl:[42,30,18,5,63,11,15,46,12,80,62,51],desktop:71,"0x1003cbe50":16,instrument:51,setenv:3,treatment:57,exercis:[16,70,31,18,50],notori:15,role:[54,37],doctorat:31,pitman:93,disrupt:31,microsystem:15,mps_pool_creat:[81,9,77,22,79,1,7,92,27,75,85],splayfindfirst:50,idiom:71,nielsen:31,tobas:18,read:[0,58,18,63,65,67,70,71,72,8,34,42,43,5,25,29,82,9,32,7,83,46,13,35,15,78,16,94],outermost:47,amc:[20,36,17,10,22,65,16,47,1,80,19,27,37,38],mop:46,mov:7,vivek:31,reassembl:33,anchovi:50,insist:41,dirti:[56,57],sobalvarro:[57,31,15],mod:51,intel:[56,58,88],patrick:31,deliber:[62,37],robson:31,integ:[54,82,37,58,18,88,32,7,35,67,69,6,71,59,25,13,34,87],shrink:[77,5,58,50],benefit:[42,30,54,5,46,71,7,41,62],weakest:72,either:[39,57,58,18,62,63,65,67,71,72,3,42,4,43,77,5,24,48,25,26,28,29,81,30,82,83,7,11,46,12,34,35,87,89,15,78,16,50,37,51],larchant:31,output:[10,50,65,16,71,32,3,13],downward:[29,18],inter:[57,22,48,67,24,72,35],manag:[0,39,55,56,57,17,18,54,60,61,62,63,64,76,65,66,67,68,53,70,40,1,73,74,75,34,58,42,20,59,4,77,5,23,79,24,50,48,7,26,27,85,29,81,30,82,8,9,31,45,83,25,11,46,12,92,13,35,14,80,87,36,72,89,69,15,37,84,78,16,33,41,71,93,94,22,51,38],ucb:31,fulfil:5,cbsfinish:50,minsiz:50,free_:80,poolawl:18,thermodynam:31,frombt:18,mps_key_format:[74,9,22,7,37,79,1,25,27,28,35],commenc:29,juli:[46,31],legitim:33,interlock:87,splayroot:50,journei:37,respect:[42,87,58,18,43,10,5,70,15,59,71,50,34,37],inlin:[39,30,82,87,17,59,33,65,84,50,12,48,25,3,34],has_reservoir_permit:12,constitut:[37,18],resfail:[34,50],slice:[42,36],easili:[39,87,59,4,63,15,46,24,34],poolmv2:50,freebsd:[39,3,94,51,88],"0x1003f9bb8":16,definit:[82,56,17,18,45,5,80,15,46,6,65,50,41,51],average_s:[92,75],legal:28,moon:[93,31,15],pioneer:15,moor:[31,18,43],exit:[30,55,18,48,37,78,16,94,35],"0x00000001003f9a58":16,mps_fix2:[54,82,17,7,33,37,90,25,35],mps_fix1:[54,82,17,7,33,37,90,25,35],virtualalloc:[51,29],blocksiz:50,obj_pad:[35,37],immun:[57,48],type_pad:[16,37],power:[56,58,18,88,7,89,15,67,24,59,71,65,25,34],event_typ:13,sixth:37,garbag:[0,39,55,56,57,17,59,54,60,61,62,63,48,67,53,70,71,72,8,3,75,13,58,42,20,44,5,23,79,24,25,27,29,81,30,82,9,31,10,7,11,93,47,34,35,85,86,87,36,69,15,37,84,77,78,16,92,52,94,22,38],inspect:[18,48,16,2,35,29],"0x00007fff9050ae2a":16,broken:[54,57,58,71,72,80,26],found:[17,18,74,71,8,13,58,44,80,81,30,82,25,11,46,12,84,35,87,50,92,37],regexp:10,referr:48,nmk:3,src:51,simplest:[84,3,70,37],central:[71,57],greatli:[30,3,70,89],mps_mvt_size:77,arena_class_vm:29,joyner:[62,31],meaning:[5,6,13],acm:31,arenafin:83,addition:[30,18,62,65,47,41,29],degre:[46,65],integr:[39,42,59,88,10,51,62,15,37,46,65,25,34,27,29],wolf:31,stand:[67,30,24],wold:74,act:[42,62,80,57,8],johnston:[54,55,31,67,70,71,92,93],luck:[10,84,17],processor:[39,56,57,17,59,62,63,65,66,67,69,70,71,72,8,84,58,88,7,82,32,48,13,15,51],mps_message_type_en:[0,78,25],wrongli:74,routin:[54,30,83,46],amd:88,effici:[53,39,17,18,62,63,48,67,69,70,40,72,75,84,58,42,59,77,5,24,7,27,29,30,82,9,31,11,46,92,22,34,89,50,71,37],eval:[78,16,25],shaw:31,"00000001003fd000":13,wordindex:18,terminolog:[87,62,67,71,8,41,52],surviv:[42,53,56,36,17,59,62,11,15,69,8,37],dram:[56,71],btrangessam:18,cbsblocklimit:50,nikla:31,your:[39,55,17,68,13,3,84,44,32,29,30,82,10,25,47,34,86,78,16,33,37,38],stare:7,fmtdy:17,certainli:30,log:[34,32,3,13,50],unflip:83,area:[42,30,56,57,58,59,54,61,62,63,11,48,66,71,50,29],aren:[39,17,4,25,34,94,84,18],mps_class_snc:[79,28],poolclassmrg:83,comparison:[34,50,87,25],overwrit:[54,56,58,18,30,60,62,46,69,16,71,59,74,84],checkabl:5,start:[0,54,55,57,17,18,72,65,70,40,1,3,75,41,58,42,59,77,5,79,24,50,7,27,28,29,81,82,9,25,47,48,92,13,85,80,36,89,15,37,84,16,33,71,52,94,22,38],mps_os_li:88,"00000001003fd328":13,interfac:[0,39,56,57,17,18,54,60,61,83,64,65,68,53,70,1,2,19,75,34,58,20,59,43,77,5,6,48,7,26,27,28,29,81,30,82,9,31,45,10,50,11,46,12,13,49,85,80,87,72,32,88,89,15,37,84,78,33,41,92,94,22,51,52],low:[42,30,8,36,18,45,60,32,33,15,67,46,50,71,7,92,13,88,35,29],lot:[42,30,87,36,17,5,8,11,15,46,24,50],resum:94,strictli:[53,51,18,58],deserv:46,machin:[56,58,59,62,63,48,67,70,71,72,8,13,88,30,82,31,10,11,84,34,15,51],mps_message_gc_start_whi:[0,36],stage:[42,17,71,33,13,49,51],morrison:31,conclud:30,tomasev:31,regard:[24,56,57,62],alain:[31,15],aslr:16,amongst:87,leewai:33,allegro:15,ifip:31,realli:[42,30,81,54,5,46,33],illus:[0,62,71],untag:7,faster:[0,30,62,11,15,53,71,12,33,34,84],notat:18,amcscannailedonc:16,table_ref:[87,25],amcz:[20,9,33,1,25,19,37,38],sbrk:[60,71,58],possibl:[39,53,55,56,17,18,62,63,48,71,72,34,58,42,50,59,4,43,77,24,6,25,29,30,82,10,7,46,12,41,35,80,87,15,84,16,33,37,51,38],"default":[0,10,32,33,37,16,25,41,3,13,51],"__mode":15,poolalloc:[34,80],stichnoth:31,unusu:[62,29,15],manuel:31,embed:[31,21,32,50,15,48,33,37],deadlock:[5,63,78,43],powerless:39,pool_superclass:41,gone:29,addradd:34,creat:[0,39,57,18,54,60,61,62,8,65,67,70,71,1,74,75,13,42,77,5,78,79,7,27,28,29,81,30,82,9,25,83,46,12,22,41,35,85,86,87,36,72,15,84,90,50,92,94,37,51,52],conundrum:37,pseudo:17,deep:6,jin:31,strongli:[53,31,8,15,67,71,72,25,92],mainli:[71,11,15,45],intro:[42,18,21,5,46,50,2,41,34,51],decreas:[30,89,58,72],file:[54,17,62,65,66,71,72,2,3,4,21,24,25,29,30,45,32,13,15,78,16,37,51],type_str:[16,25],ecoop98:31,proport:[53,30,36,17,44,62,50,66,24,33,37],eliot:[93,31],operation:67,fill:[84,82,18,32,5,63,35,46,80,8,92,34,37,62],hit:[42,58,62,63,66,16,72,8,94],again:[42,53,87,58,18,54,32,62,8,11,78,84,46,24,25,41,37],beyond:[82,17,15,29,3,35,51],fput:[30,37,32],"0x1003f9ba8":16,hybrid:[53,62,50,59,45],reduct:[42,31],tight:[13,89,17,15,24],"0x00000001003fb000":16,valid:[54,57,59,62,66,72,18,5,6,80,29,81,82,7,25,11,46,84,36,16,50,51],compet:[48,29],presenc:[87,59,63,46,24,7],eight:[67,51],you:[0,39,17,54,60,65,67,53,40,72,3,13,42,4,44,22,78,91,79,24,50,25,27,28,29,81,30,82,9,10,7,11,46,47,12,92,34,35,87,36,32,84,90,16,33,71,94,37,51,38],coerceclass:41,freestand:32,fork:57,discours:57,genuin:[30,37,33],sigmod:31,config_var_df:51,sequenc:[82,57,18,89,5,74,70,16,40,33,41,34,35],symbol:[84,82,18,31,32,86,15,16,65,25,13,37,51,52],mps_rm_t:[82,72],lueh:31,wirth:15,string_:[16,37],briefli:[89,24,11,17],cbsfindlargest:50,peak:[17,29,37],safeti:[52,94,87,43],pool:[39,53,56,57,17,18,54,60,62,8,65,68,40,1,74,19,3,75,34,58,42,20,59,4,88,44,22,78,49,79,50,91,48,7,26,27,29,81,82,9,31,45,10,25,83,86,46,12,92,13,35,85,80,36,37,84,77,90,16,33,41,71,52,94,5,38],mps_arena_create_k:[28,37,29],reduc:[42,30,56,57,17,31,60,89,5,63,83,48,53,24,51,33,66,29,72],neighbour:50,"0x1003f9b48":16,symbol_pool:13,directori:[3,51],readership:[18,45,5,21,46,50,41],cmp:[87,25],descript:[0,80,37,18,10,8,82,15,35,84,87,71,48,33,13,94,34,72],unseg:71,tricki:[34,33],inevit:18,mimic:74,mass:62,potenti:[53,82,17,18,43,32,24,59,37],mps_chain_destroi:[36,37],degrad:[30,9,50],cpu:[53,30,56,88,62,63,11,3,29],societi:31,scm:[44,16],represent:[53,54,87,17,31,61,5,48,67,68,69,70,71,29,50,62,18,72],all:[0,39,55,56,57,17,18,54,61,62,63,65,66,67,53,70,40,72,74,3,34,58,42,50,59,4,43,44,5,78,24,6,48,7,26,28,29,81,30,82,8,10,25,11,46,47,12,92,13,35,85,80,87,36,88,15,37,84,77,90,16,83,33,41,71,94,22,51,38],caleb:31,forget:[29,25],metaphor:46,illustr:[70,17,29,37],mps_key_:28,lack:[32,62,15],mps_arena_destroi:[78,13,37,29],ala:18,ferreira:31,code:[84,54,56,57,17,18,60,62,63,65,68,40,72,74,3,13,58,42,59,4,43,5,49,48,25,29,81,30,82,8,9,45,10,50,11,46,47,12,34,35,80,36,88,89,15,78,33,41,71,52,94,37,51,38],publish:[53,91],abil:[42,58,11,15,46,51],ptw:46,follow:[0,57,18,62,65,70,40,72,13,42,4,21,5,91,24,50,48,25,28,30,82,10,7,11,47,12,22,34,35,80,43,89,15,84,16,33,41,71,37],disk:[30,58,31,62,63,66,68,71,72,8],ruinou:44,children:[53,61,70],abid:5,mps_ap_alloc_pattern_reset:47,ron:31,plausibl:[30,18],codasyl:15,former:[42,54,67,72,21],tail:[46,31,15],sml:[31,15],those:[54,56,57,17,18,61,63,48,70,71,72,8,84,58,42,43,5,6,32,29,30,10,80,46,13,89,90,37],"10992f000":13,segclass:41,chenei:[53,70,57,31],introduc:[42,30,82,61,5,11,15,71,48,72],xiaohan:31,attrbuf:34,straightforward:[51,25],determinist:16,far:[42,30,17,18,43,60,11,48,16,25,34,37,29],mps_shift_t:34,mpm:[42,34,17,18,80],mps_tramp:94,util:[13,52,15,50],mpw:51,mps_class_amc:[22,28,37],verb:[62,18],mechan:[0,53,55,56,57,58,59,54,60,61,62,63,48,67,70,71,72,8,84,20,21,5,25,29,81,45,46,41,39,43,15,78,50,94],quantifi:31,veri:[39,54,17,18,61,62,63,48,70,40,72,8,84,58,42,59,44,5,24,25,30,82,45,10,7,11,12,92,41,85,89,15,77,83,50,71,37,51],rebuild:13,findlastaft:50,trigger:[68,8],pthread_mutex_lock:43,harri:31,lisp:[53,30,57,59,31,62,11,15,66,67,68,70,71,48,13],rescommit_limit:[5,34],list:[0,53,55,56,57,58,18,54,62,64,68,70,71,72,84,4,43,24,91,7,28,29,81,30,31,10,46,12,13,49,88,89,15,16,50,92,37,51,52],mps_free:[39,81,9,85,77,22,84,79,12,7,92,27,75,35,62,38],arenapark:5,emul:[39,7],reset_mask:13,adjust:[56,60,63,48,46,24,70,71,80],mps_lib_get_stderr:32,stderr:[30,16,33,37,32],small:[39,53,55,57,17,18,61,62,63,48,70,71,72,19,42,20,59,44,5,24,29,30,9,33,11,46,12,84,85,36,89,15,50,37],kemeni:15,assert_mpm:51,lockreleaserecurs:43,dimens:[68,71,31],inherit_class:41,tag_siz:25,computation:68,ten:[44,54,13,70,57],ensuredebugclass:46,tricolor:[67,70,71],qualifi:[63,15],modula3:15,rate:[31,5,63,15,66,67,70,71,62],pressur:72,poolinit:[5,13,80],pass:[0,54,57,17,18,62,64,48,66,67,69,71,1,74,75,13,58,42,77,22,79,50,32,26,27,28,29,82,9,31,10,7,11,46,12,34,35,85,80,87,36,15,84,90,16,33,41,92,94,37,51,38],further:[0,30,82,87,57,17,5,69,84,24,33,13,35,29],suboptim:[36,37],mps_chain_creat:[36,37],mps_arena_class_vm:[28,37,29],unsuit:24,what:[0,39,57,17,18,54,72,34,42,59,44,5,49,24,7,29,30,82,10,80,11,46,12,41,35,86,36,89,84,16,33,94,37,51],searchbas:18,stood:30,sub:[41,58,18,50],richard:[31,18,21,5,43,83,46,6,80,50,26,2,34,93,51],"0x1003f9878":16,sun:[31,15],sum:[54,82,59,77,62,89,67,92,75,35,29],mps_pool_class_mv_debug:46,abl:[54,82,57,18,21,72,43,11,69,15,37,46,24,16,48,50,94,35,29,38],overload:71,delet:[0,30,56,7,90,15,67,24,50,71,25,13,34,39],mps_key_ams_support_ambigu:28,mps_amc_apply_stepper_t:22,regnesentr:31,intersect:50,consecut:[77,54,59],mustn:82,mps_build_mv:[51,88],"public":[53,54,55,56,57,58,59,60,61,62,63,65,67,68,69,70,71,72,8,3,30,10,48,84,15],contrast:[55,71,62,29,8],sizeisalign:10,millisecond:29,hasn:[53,13],full:[30,16,18,54,47,88,70,15,66,78,6,12,25,13,37,29],hash:[86,56,87,7,15,67,46,90,16,48,25,37,38],berkelei:[31,4],variat:[89,24,71,62,72],rightblock:50,demer:[53,31],client_is_wait:29,mps_clocks_per_sec:32,arena_o:29,shouldn:[42,17,37],simon:31,omiss:51,solari:[3,88],excess:15,free_siz:74,method:[84,54,56,57,17,60,65,71,1,8,3,34,58,42,21,5,78,79,50,25,26,27,82,9,31,45,10,7,86,46,48,22,41,35,80,36,72,15,90,16,33,52,37,51,38],standard:[57,62,64,65,70,13,3,41,21,5,24,25,29,81,30,31,32,48,84,15,33,51],modifi:[54,36,18,21,5,15,46,24,71,48,57,28,62],mult:41,serrano:31,arena:[0,39,57,17,18,72,62,8,65,68,69,71,1,74,75,13,42,20,59,44,5,79,7,27,28,29,81,82,9,45,10,25,83,46,12,22,34,35,85,86,87,36,77,78,16,50,41,92,94,37,52],search:[54,18,31,61,89,24,71,50,13,58],ahead:57,garwick:31,fwd:[37,35,25],fstruct:37,reason:[17,59,48,71,72,8,84,18,4,7,5,80,29,30,82,10,50,34,35,32,89,15,78,33,92,38],observ:[53,30,58,59,63,78],prior:[0,13,87,15,50],amount:[42,30,56,36,17,18,44,5,89,48,77,24,71,51,7,92,34,75,29,72],base:[56,17,18,63,65,66,70,71,72,3,13,58,42,59,88,5,79,50,7,27,28,29,82,9,31,25,48,41,35,80,87,15,37,90,16,33,92,22,51,38],pick:[41,69,31,25],action:[42,30,56,54,80,67,46,78,40,72,25,71,34,84,29],pauillac:43,mps_addr_fmt:[35,29],magnitud:[68,62,63,71],via:[84,62,8,65,70,72,74,75,13,4,77,5,79,6,32,27,29,81,30,82,9,10,7,11,12,22,41,85,80,87,15,83,50,92,94,37],depart:31,declin:47,primit:[30,24,57,48,15],transit:42,"0x1003fb130":16,mps_root_destroi:[82,37],readili:[32,24],filenam:13,mps_telemetry_get:13,inappropri:24,mps_io_destroi:32,heurist:[60,57,15,8],demonstr:13,gratuit:18,decrement:[67,24,63,72],segmyseg:41,dangl:[42,62,56,11,74],select:[42,18,31,10,5,66,68,72,8,13,51,58],gudeman:[67,69,70,58,31],procur:4,hexadecim:13,proceed:31,harlequin:[93,15],distinct:[54,58,21,60,88,11,48,68,71,17],liber:94,etc:[58,60,62,11,91,71,3,13,51],regist:[39,54,57,17,59,62,63,48,67,70,71,72,75,13,77,22,78,79,25,27,29,82,9,7,33,83,34,85,80,15,84,90,50,92,38,94,37,52],two:[0,54,55,56,57,58,18,62,8,65,67,68,70,71,1,74,3,34,42,59,21,22,24,50,48,32,25,27,29,30,82,31,10,7,11,46,47,12,13,85,80,87,36,43,89,15,37,84,16,33,92,5,51,72],coverag:18,mps_alloc:[81,9,85,79,72,10,22,8,65,37,84,46,77,12,7,92,27,75,35,62,38],obj_quot:37,rhel:39,azaguri:[57,31],taken:[36,5,11,70,24,6,71,25,34,29],zorn:[30,57,58,31,15,93],table_:[87,37,25],minor:0,more:[0,39,57,17,18,54,60,61,62,63,65,67,68,53,70,40,1,8,3,34,58,42,59,4,43,77,5,78,23,24,48,7,28,29,81,30,82,31,10,25,11,46,47,12,92,13,35,87,32,69,15,37,84,90,16,50,41,71,94,22,51,72],uncoop:[62,31],flat:[17,15],mellon:31,desir:[30,71,58,46],mps_alloc_dbg_v:46,hundr:[44,70,57],line:[42,50,17,25,15,84,46,16,80,7,3,13,51],brisl:[50,18,21],mps_sac_creat:[71,12],flag:[24,56,83,29],stick:63,particular:[0,53,57,17,18,54,60,62,63,65,70,71,72,8,84,59,4,43,77,5,24,25,29,30,50,46,47,48,13,35,80,87,15,33,93,22,51],xci6ll:[3,88],beown:43,cach:[56,57,17,18,62,63,66,67,70,71,72,75,20,59,77,5,79,24,7,27,81,9,31,45,11,12,85,92,38,22,52],mps_key_mean_s:[77,92,75,28],canterburi:31,none:[42,87,18,10,5,84,51,7,41,13,28,35,29,38],unformat:[77,46,92,38],operator_:37,damien:31,outlin:50,dev:[3,72],histori:[42,20,31,18,21,5,43,83,62,15,46,45,6,80,50,26,2,13,41,51],malo:31,remain:[42,54,80,57,9,8,50,89,78,37,67,24,70,71,51,25,34,84,13,29],den:[67,30,70,31],learn:[39,30,15],abandon:48,cbsinsert:50,btfindresrangehigh:18,dee:56,def:[5,51,34,18,50],stubborn:16,omit:[6,16],prompt:[54,78,15,24,72,7,3,29],bogu:26,useabl:5,scan:[39,53,55,56,57,17,18,54,72,63,65,68,70,71,1,8,75,13,58,42,20,59,44,22,78,49,79,24,25,27,29,82,9,31,45,10,7,86,46,48,34,35,85,80,89,84,77,90,16,33,92,52,94,37,38],rodriguez:31,registr:[8,52,57,94,25],share:[57,60,62,68,70,71,3,13,43,5,24,25,29,30,31,11,46,41,15,16,33,94],accept:[36,62,80,37,70,12,33,57,41,35,51,38],pessim:77,minimum:[54,57,17,18,77,8,46,72,50,92,51],unreli:[30,11],"0x0000000100001947":16,protspong:51,sharp:47,mpsi:[10,16],strlen:25,revis:[50,57,31,25],condemn:[0,42,36,17,45,80,70,48,67,54,53,16,71,25,26,57],inescap:46,csl:31,cours:[53,32,5,37,84,35,29],untru:51,awkward:7,divid:[53,54,55,57,58,18,32,62,89,11,67,70,24,59,71,34,37],programmat:2,csd:31,comfort:44,nwper96:31,rapport:31,narrowli:53,heck:31,compactifi:[57,31],reject:[30,33],strong:[42,17,18,48,67,78,70,71,15,25,72],simpl:[57,17,18,70,71,72,3,58,59,43,77,24,25,31,32,7,85,89,15,16,33,38,37,51,1],mps_fmt_create_auto_head:35,unabl:[22,29],arenaseri:5,resourc:[0,54,59,60,62,48,66,70,40,80,3,34,77,32,29,30,10,25,11,41,35,78,50,51],referenc:[53,54,56,57,59,61,62,63,68,71,8,34,22,79,24,6,7,27,9,84,78,16,37],overcommit:[60,62],mps_fmt_copy_t:35,variant:[9,61,22,7,15,37,79,71,72,33,27,35,38],reflect:[58,31],okai:[26,34],offset:[80,71,35,18,8],type_t:[84,87,37,25],sos8gp:88,varianc:35,associ:[0,30,80,87,84,59,43,5,50,64,78,15,67,69,70,12,48,25,13,62,51],unreserv:80,s7ppac:88,circumst:[81,87,57,60,62,78,24,50,28,37,29],"short":[42,80,8,17,18,44,63,68,71,12,50,34,72],addr_method:28,confus:[34,71,37,59],mpseventtxt:13,ambigu:[55,57,17,59,62,69,71,72,8,84,42,5,79,7,26,27,29,82,31,25,22,34,78,33,38,37,52],caus:[54,17,60,61,62,8,48,68,70,71,72,74,58,42,4,77,5,24,25,29,81,30,31,10,11,47,12,78,16,50,92,37,52],scanstat:[26,34],chiefli:53,ari:31,egc:[3,88],issubclasspoli:41,infant:[53,48,31],rotat:61,reservoir:[46,13],root_o:82,soon:[42,82,56,57,17,8,78,48,37,24,33,3,35,29],tupl:59,reachabl:[53,54,57,58,59,62,63,48,67,69,70,71,72,8,22,79,24,25,27,29,30,82,9,31,7,11,84,80,15,78,33,37],cook:31,scientist:15,scott:31,cbsalign:50,word_act:18,hierarchi:[57,62,63,66,67,71,72,8,41],coerceinst:41,suffer:[30,63,54],kistruck:93,implicitli:[41,63,62],paramet:[84,57,17,18,60,65,13,80,41,77,22,79,48,32,27,82,9,45,10,7,46,12,34,35,15,50,92,94,37,51],"0x1003f9b70":16,style:[41,80,17,15,18],make_bucket:25,matthew:[93,6,31,50],special_:37,fri4gc:88,mps_class_mv_debug:[75,28,74],late:[81,62,25],resort:25,classofpoli:41,pend:[80,18,50],rapidli:[44,15],exchang:91,stephen:[93,31],tractstruct:5,poolfre:[34,80],alter:[40,51],hyperspec:[57,15],finer:72,wouldn:[24,11,25],"0x1003f9b98":16,"return":[0,39,57,17,18,54,62,83,65,70,40,1,75,34,50,59,43,44,5,78,79,24,6,48,25,27,28,29,81,30,82,9,10,7,11,47,12,92,13,35,85,80,87,36,32,89,37,84,77,90,16,33,41,71,94,22,72],amelior:46,mps_ap_t:[59,7,79,47,40,25,84,37],timestamp:13,pollut:42,event_param:13,inria:[31,43],number:[0,53,56,57,17,18,54,60,62,63,67,68,69,70,71,1,8,3,13,58,59,43,44,5,50,32,27,29,30,82,9,31,10,25,83,12,34,80,36,89,15,77,16,33,41,37,51,72],port_:[37,25],swizzl:31,mps_rank_ambig:[82,71,37,59,72],arenaalloc:5,compound:[30,57,51],abi:88,arbitr:62,detach:80,complain:46,bigger:[44,57,35,18],globals_scan:37,eventu:[0,42,11,15,46],weak_buckets_ap:25,osarct:[3,88],datastructur:[5,18,50],refresh:[56,71,50],mysteri:[30,56,15],tear:[32,37],achiev:[82,56,77,5,48,24,71,62],ecru:[60,55],tracescan:80,compris:[5,72,18,43],"12th":31,fulli:[57,65,6,71,80,41],optarg:46,mps_telemetry_label:13,clamp:[5,57,69,29,8],leaf_pool:25,interleav:[39,54,62,57,1],weight:[56,18,31,67,24,72,58],"0x0000000100074106":16,arenaread:83,hard:[42,30,82,58,62,11,24,16,71,72,84,37],idea:[42,57,45,15,46,78,71,25,13,41],procedur:[57,59,45,25,15,78,71,72,33,37,51,38],obj_t:[84,82,87,7,25,90,16,33,13,37],heavi:30,linkag:51,cbsfinddeletelow:50,expect:[53,59,63,8,42,18,21,44,80,29,30,82,47,12,34,35,36,43,15,77,16,37],mps_stack_scan_ambig:[84,82,37,72],http:[3,43],tv_sec:32,thing:[30,87,17,31,77,83,5,51,11,46,78,6,12,41,34,37,29,72],errror:82,orient:[42,54,31,60,62,15,41],"0x00000001003f9c90":16,ftp:3,architectur:[57,58,59,63,48,66,67,69,70,71,72,73,8,3,84,42,20,21,5,7,26,82,31,45,80,83,46,13,88,37,51],mps_sac_alloc:12,nrevers:31,uncollect:24,robert:31,attrincr_wb:34,research:[11,31,15],bibop:[72,17,15,58],mps_arena_cr:[5,29],expans:[10,34,65,18,21],arenareleas:5,cbsiteratemethod:50,benjamin:[30,93,31],difficulti:[0,8],pun:[52,70,37,65,33],mps_lib_get_eof:32,proxi:54,uncommit:29,advanc:[20,86,58,31,30,61,7,11,15,25],mmu:[68,62,8],differ:[39,55,17,18,62,65,67,68,70,71,2,3,58,42,4,44,5,48,25,29,30,31,10,50,11,46,12,34,35,87,36,89,77,16,33,92,37,51,38],pair_:[16,37,33],controlpoolstruct:5,junction:61,mps_ap_creat:[9,77,22,79,7,92,27,84],removeadjacentrang:50,calder:31,isymtab:37,believ:[56,70],dirk:31,mps_:65,canon:41,earliest:15,workstat:[48,15],lag:31,basi:[42,24,18],mps_label_t:[13,65],director:93,kept:[42,89,56,57,43,10,25,83,90,24,50,72,33,37,51],mpsc:65,thread:[39,57,17,59,62,63,67,70,72,34,58,42,20,43,5,29,30,82,9,31,12,41,35,86,87,84,16,94,37,52],mpsa:65,worth:[30,71],exponenti:53,"_mps_fix2":17,struggl:16,mymp:3,perhap:[42,18,10,62,16,25,29],perman:[72,48],cbsstruct:50,lifetim:[53,55,56,17,31,60,61,22,63,11,15,66,77,71,48,25,37,62,72],entry_string_append:16,hasseg:5,major:[42,30,56,57,4,22,89,15,46,53,62,29],dont:16,obviou:[46,5,34,18],upper:[77,51,65],feel:[46,37],articl:37,symbol_t:84,placehold:37,feet:29,mps_res_fail:[10,78,47,33],pop:[56,59,79,71,40,85],mps_message_typ:0,done:[0,53,57,58,62,71,8,3,42,25,29,30,32,83,46,13,87,36,15,16,50,37,51],uninterest:[17,50],stdlib:30,stabl:[77,31],implementor:[53,41],miss:[42,56,31,5,70,48,66,67,16,71,62],"000ae03973352375":13,fanci:46,gpl:4,guess:16,fuller:11,script:[3,15],mps_t_ulongest:88,gpf:53,least:[0,54,57,17,18,61,62,65,67,70,71,8,84,59,5,80,29,30,33,46,12,13,85,87,36,50,37],checkpoint:21,paint:48,stori:[5,37],expand:[88,10,65,15,34,41],statement:[84,65],natur:[42,56,58,59,88,77,10,85,15,46,12,73,7,61,92,34,75,38],aver:[46,83,50],twenti:57,choos:[42,20,77,57,17,59,72,44,90,84,46,53,70,51,86,19,41,78,37,29,38],scheme:[0,53,57,58,59,48,67,71,72,44,25,82,31,11,13,86,87,15,78,16,33,37,52],supernamestruct:41,store:[0,39,55,56,57,17,18,54,60,62,63,65,66,67,68,70,71,72,8,34,58,42,59,43,5,24,48,25,29,30,82,31,83,50,11,46,12,41,35,85,89,15,84,78,33,94,37,38],unalign:[82,58,59,62,69,80,92,84],zoneshift:5,lii3gc:[3,88],alleg:33,assign:[84,30,59,18,62,89,15,67,70,12,34,13],parc:31,option:[5,50,65,46,71,80,27,92,13,75,28,37,29],table_delet:25,mps_thread_reg:[82,70,94,37],elisp:15,similarli:[33,12,18,25],park:[81,82,57,5,69,8,22,29],cbsinit:50,pari:31,illeg:[80,40,74],part:[53,54,56,57,17,18,62,63,65,67,68,69,70,71,72,74,34,58,42,59,4,5,24,32,29,30,82,8,10,7,11,46,41,80,89,15,84,16,50,93,37,51],"0x1003fe820":16,mps_lib_fil:[32,50],fall:[53,87,31,77,10,15,24,12,34,72],mps_message_pol:[0,62],ncc:31,std:18,kind:[0,54,8,57,17,60,10,51,62,15,67,46,16,71,65,33,61,37,29,38],grep:13,doubli:[56,7,67,70,71,25,84,52],cyclic:[39,30,56,57,31,15,72],remot:[22,79,72,7,27,38],remov:[0,42,80,56,8,5,50,82,15,37,46,24,71,65,33,28,35,51,72],dant:31,mps_add_fencepost:46,prot_bar:51,niklau:15,ringstruct:34,reus:[42,81,56,77,89,5,11,15,24,16,71,72,41],architect:93,sigcheck:10,corrupt:[30,56,59,10,46,16,74,13],consumpt:54,stale:[39,87,57,5,8,25,26,29,52],toward:[30,71,18],grei:[42,53,80,45],randomli:11,cleaner:[53,11],comput:[42,30,87,57,58,31,5,8,11,15,24,16,71,72,25,62],"0b00":17,deleg:33,grarup:31,packag:[3,56,72,15],overran:16,"000ae03973336e3c":13,perri:31,"0x000000010000341f":16,dedic:[94,15],"null":[30,82,87,50,5,7,65,37,46,90,16,71,80,25,84,28,35],commonplac:58,imagin:[46,13],wilson:[53,30,55,57,58,31,54,61,63,11,48,67,59,71,89],xref:42,carefulli:[30,61,83,70,8,51],relationship:[46,41,6,15,68],thingcheck:6,mps_ld_:[34,87,25],ancillari:30,spaghetti:[71,57,51],lin:31,violat:[53,58,10,62,8,48,67,78,71,72,50,34],mps_res_param:[10,12],align_up:37,accessor:[41,50],exampl:[0,39,56,57,17,18,54,60,62,63,65,66,67,68,53,70,71,1,74,3,75,34,58,42,59,4,21,77,5,78,79,24,6,48,7,27,28,29,30,82,8,9,45,32,25,11,86,46,12,13,35,85,80,87,36,72,88,89,69,37,84,90,16,33,41,92,52,94,22,51,38],comment:[0,17,50,33,80,93],build:[39,20,86,57,17,45,47,15,37,68,16,71,3,13,51],mps_fix:[35,33],"00000001003ff000":13,analogu:70,brace:41,ecmascript:15,splai:[46,50,45],compat:[34,73,41,4],pipelin:71,distribut:[39,53,56,36,4,31,44,63,15,67,24,48,72],alignof:37,unsur:[69,59],kai:31,previou:[54,17,43,10,8,89,78,16,71,80,61,13],reach:[0,54,56,57,8,62,25,11,24,72,50,34],mixtur:[54,7,33,65,15,25],most:[39,53,57,17,18,61,62,63,65,66,67,70,71,72,8,3,84,58,42,59,44,5,24,6,25,29,30,82,10,7,11,47,12,22,34,87,32,89,15,78,16,33,93,94,37,38],plai:31,plan:[31,38],moss:[93,31,8],alpha:[3,73,88],custom:[82,50,31,15,25],splat:[74,25,78,67,90,71,7],getrusag:32,appear:[39,30,87,57,58,8,62,50,70,65,16,83,48,25,41,13,37,51],weak_table_t:7,clear:[30,87,8,58,18,60,25,67,16,71,72,33,13,34],cover:[42,82,63,11,65,71,33,84,37,29],recherch:31,destruct:[30,80],dimension:[71,15],quadword:[56,73],ext:51,getter:5,abnorm:[13,11],clean:[41,56,15,8],mpscawl:7,addr_io:46,blend:15,microsoft:[39,57,88,15,3,51],iwooo:31,think:[84,82,15,46,24,12,34,13],"0x000000010000d75f":16,contig:5,summer:31,"0x0000000100005e30":16,pooltriv:80,xcode:3,memorandum:31,eq_hash:[87,25],ansi:[39,30,57,58,43,32,65,3,13,51],session:[29,25],particularli:[30,56,57,18,11,48,69,70,8,41],cdr:[16,37,33],eqv_hash:25,fine:[62,16,78],find:[0,39,56,57,17,18,54,60,63,53,70,71,72,3,13,58,42,5,24,50,25,29,30,82,31,7,46,41,49,87,36,89,33,37,38],reservoirpermit:41,impact:51,buckets_fmt_:25,dosser:31,coerc:41,pretti:17,wish:43,writer:15,solut:[30,55,45,5,8,11,15,46,24,50,3,37],"0x1003f9bc8":16,peculiar:72,ambig:42,rangessam:18,tag_mask:82,templat:[46,74],factor:[30,62,70],unobtrus:[30,31],iec:[65,32,57,31,15],pooldebugmixinstruct:46,writef:34,boulder:31,remedi:8,poolamc:16,unus:[30,57,58,18,59,62,89,16,71,51,74,35,29],"__file__":46,express:[31,16,18,4,59,62,33,89,15,84,6,65,48,25,41,3,88,34,51],cheaper:[60,30,62,58,54],allen:31,nativ:[72,88],mainten:[41,51,50],fastest:[71,84,57,33],liabl:[13,4],cbsfindfirst:50,him:30,obligatori:41,morgan:31,napier88:31,whenev:[82,87,18,21,60,15,67,24,6,34,37],someclassstruct:41,synthes:31,"0x1003f9b68":16,"0x100001b80":16,common:[54,55,56,57,58,59,61,62,63,48,67,70,71,8,84,5,23,24,30,10,33,11,41,35,89,15,90,16,50,94,37,51,52],mps_chain_t:[36,22,1,27,28,37],unmaintain:15,"0x0000000100068050":16,crl:31,tr99:31,"0x1003f9b88":16,set:[53,54,55,57,17,18,60,62,63,48,67,68,70,40,72,77,3,41,58,42,59,43,44,5,24,25,26,29,30,82,31,45,32,50,12,92,34,35,80,87,36,15,84,13,16,33,71,51],art:[62,15],btcreat:18,buildsi:51,"0x1003f9b80":16,extant:79,vinc:31,invis:[46,7],"00000001078c85b8":13,mutabl:[62,48,43],seg:[42,10,5,16,13,34,41],isfinalpool:5,see:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,40,1,73,74,2,3,75,34,58,42,50,59,21,44,5,78,76,79,24,6,7,27,28,29,81,30,82,8,9,10,25,83,46,48,92,13,35,85,80,87,36,72,32,43,89,69,15,37,84,77,90,16,33,41,71,94,22,51,38],ramsei:31,arg:[81,74,9,77,22,7,37,84,79,1,25,41,92,27,75,28,35,29,85],reserv:[57,17,59,60,62,65,68,69,71,72,34,58,4,77,80,29,30,82,10,12,84,37],"1003fd000":13,arm:58,analog:[32,62,29],barn:[93,51,31],"_win32":51,hess:31,expert:[30,93,11,38],misalign:[62,69],someth:[42,30,82,17,10,5,83,15,46,12,80,34,51],particip:80,weakli:[7,15,67,71,72,8],"case":[0,39,57,17,59,54,60,65,53,40,72,3,13,88,44,5,24,50,48,25,27,29,30,82,31,10,7,83,46,47,12,92,34,35,80,87,15,84,77,78,16,33,41,71,94,37,51],inner:[57,18],won:[42,17,5,11,71,12,84,37,72],mutex:43,amalgam:3,experi:[30,51,91,37,31],type_link:84,altern:[81,54,59,31,32,25,12,50,84,29,72],signatur:[5,6,41,18],mpsevent:13,chain_o:36,disadvantag:[24,70,11,37,58],numer:[69,15,7],complement:30,sole:68,isol:50,mps_ap_destroi:[84,37],res_v:[84,12],awl_pool:[79,7],incident:4,matthia:31,valuabl:93,rarer:56,distinguish:[53,54,57,17,22,35,67,69,70,37,58],mps_ld_add:[87,25],classnam:41,"1003ff000":13,mps_class_am:[27,28],popul:[77,12,15,18],water:58,cryptic:80,last:[42,30,56,36,17,18,5,50,89,69,16,71,25,41,37,87],delimit:[82,35,33],linuxthread:[94,43],retent:71,hint:[30,57,59,77,47,12,92,36,75,37],alon:72,algol:[57,11,31,15],isomorph:70,xleroi:43,aver_and_check:51,context:[57,59,43,78,15,37,24,71,50,84,35,51],forgotten:16,oopsla97:31,let:[60,10,16,37,46],blocklimit:50,fermin:31,whole:[42,53,80,8,17,18,74,15,67,59,51,25,27,84,29],ecma:15,load:[30,17,72,58,63,15,71,48,3,13,29,52],songworm:31,simpli:[30,57,59,18,43,32,11,54,46,67,47,71,12,50,34,41,29,72],"00000001003fe000":13,point:[0,39,57,17,59,54,60,62,8,65,67,53,70,40,72,74,75,13,58,42,43,44,5,78,79,24,48,25,27,29,81,30,82,9,10,7,46,47,12,92,34,35,85,87,36,32,69,15,37,84,77,90,16,33,71,52,94,22,38],instanti:[46,5,50],schedul:[0,63,36,9,31,44,32,22,7,62,78,47,59,25,13,27,29,52],sweep:[61,20,36,31,18,58,10,57,63,15,24,71,80,74,19,27,62,38],arbitrarili:[12,37],header:[54,57,58,60,63,65,66,70,71,72,2,3,22,79,7,27,9,50,48,35,33,38,37,51,52],uniniti:[84,37],hangov:18,church:16,lar:[93,31],mistak:[84,16,12,59],gavin:[93,6,31,50],poolclassam:18,coincid:46,sever:[54,56,57,17,18,61,63,71,74,84,42,44,5,29,30,8,50,11,46,41,89,15,77,33,92,37,51],topla:31,prot_:51,xci3ll:[3,88],stamp:[32,13],help:[30,17,54,62,33,16,74,41,13,93,28,37,29],devic:[62,11,59,8],due:[39,42,57,54,60,62,80,15,66,77,78,71,72,8,84],empti:[0,42,58,18,89,83,53,34,28,37],destructor:[30,56,57,31,54,15],clocks_per_sec:32,arenapol:[5,16],newcom:25,arenapok:83,txt:13,threaten:[70,57,31],devis:[62,70],obj_u:37,strategi:[42,57,59,31,43,46,24,71],anthoni:93,box:[57,58,48,67,69,72],modern:[30,17,59,62,11,15,66,68,24,8,37],versa:[42,5,25,15,7],gavinm:[34,50],attralloc:[10,34],fire:[46,74],clariti:[10,34,82],imag:[30,71,72,18],exempt:4,consequenti:4,unnecessarili:[71,25],gap:[46,66,35,37],fund:5,understand:[11,17,31,25],func:12,demand:[8,72,21],repetit:[11,33],chatter:[0,52],vulner:[30,38],convers:[46,5,65,15],base_address:28,henriksson:31,aaron:34,strictest:53,"0x1003f9b78":16,mpscmvt:77,solid:27,typecheck:6,straight:[46,17],define_pool_class:41,durat:[42,56,59,15,71,35,29],reliabl:[39,30,82,87,81,15,42,24,16,51,25,84,37,29],"while":[0,56,62,48,70,71,8,24,25,29,81,30,82,7,11,46,84,15,90,16,33,37,51],mps_key_extend_bi:[92,75,28,85],unifi:46,smart:[71,31,15,72],abov:[17,18,40,3,75,13,58,4,5,24,7,27,28,81,30,11,12,84,35,50,92,37,51],guido:15,fun:[18,5,83,46,6,34,51],loos:[53,71,58,15],loop:[54,87,57,17,18,77,78,24,25,84,37,29],prolog:[53,57,11,15],propag:[41,17,37],malloc:[39,30,58,59,5,11,15,37,62],mem_top_down:29,"0x00000001003fb0a0":16,vol:31,therefor:[54,82,57,59,77,50,78,35,24,70,71,72,33,34,66,37,29],rip:15,revers:[0,30,18,54,70,71,41,37],itself:[56,57,17,48,66,67,69,71,72,8,3,13,43,5,6,25,30,11,46,12,41,87,21,78,16,33],costli:[53,62,63],virtu:61,limit:[0,56,57,17,18,60,62,63,71,72,13,58,4,7,5,24,25,29,82,45,10,33,11,12,41,35,36,34,15,84,77,90,50,93,37,51],vanish:16,pedagog:[34,80],chase:[58,31],weakref:15,yuasa:31,mps_sac_fre:12,mps_key_chain:[22,74,1,25,27,28,37],grant:71,belong:[0,39,57,59,54,40,72,8,75,77,5,79,25,27,29,81,82,9,7,92,12,22,84,35,85,87,36,33,71,94,37,38],shorten:51,x64:3,instal:[30,3,13,86],shorter:[84,37],stefanov:31,shire:93,mps_res_t:[17,40,72,74,75,77,22,78,79,32,27,28,29,81,82,9,25,10,7,83,46,47,12,84,35,85,36,90,16,33,92,94,37,1],varp:37,sqlite3:3,mps_bool_t:[0,81,87,25,65,46,12,33,92,84,28,35,29],"000ae039733592f9":13,higher:[54,82,32,5,48,15,37],data_scan:33,sigxcpu:94,lie:57,optim:[30,82,63,57,17,31,54,5,33,86,68,69,12,25,3,78,37,29],target_check_shallow:6,wherea:[57,62,40,68],pretenur:31,dimm:56,mps_pf_w3i6mv:88,moment:[34,83,25],arenacreatevm:13,temporari:[46,59,31],thereund:46,bartlett:[62,71,31,15],robust:[30,56,18,11,92,28],yuan:31,amcscannail:16,recent:[54,82,57,17,59,61,5,63,40,8],sunpro:[3,88],travers:[30,5,56],task:[30,60,62,11,15,48,33,37],net:15,equival:[53,54,22,50,89,3,33,34,28,41],older:[53,30,55,57,88,61,62,37,24,71,72,8,35],entri:[55,87,17,18,72,5,25,11,15,48,7,93,94,38],yehudai:31,parenthes:65,diwan:31,person:31,mps_lib_memcmp:[32,34],epdlpoolclassstruct:41,commonli:[42,54,56,58,59,10,62,63,66,67,68,71,8],arenacommitlimit:5,five:[42,82,58,77,62,24,35,17],johan:15,insidepol:5,spend:[0,30,57,62,11,70,29,51],poolclassawl:18,propos:[30,46,50,31,45],explan:[42,30],construct:[30,56,57,18,11,35,41,28,37,51],"0x1003f9bf8":16,"000ae0397334df9f":13,buckets_scan:25,epcor:[46,50,18,21],c1999:[],obscur:[12,58],"0x00000001003fb148":16,insid:[81,36,17,31,22,48,16,33,94,35,18],relianc:65,shape:57,thomson:93,mysql:4,love:38,fflush:32,mps_key_arena_cl_bas:[28,29],simm:56,proven:[54,69],seriou:[39,30,72],isfwd:[35,25],cup:29,scenario:[41,84],restructuredtext:[18,21,5,43,83,46,6,80,50,26,2,51],theoret:[30,57],failnextmethod:41,eager:[59,50],mps_message_type_gc_start:[0,62,36],"0x10012a000":16,appli:[42,82,17,4,62,48,67,46,71,12,80,84,37,51],snap:[26,70,71],input:[53,59,10,65,78,71,25,13,29],unlik:[57,17,15,71,37,85],subsequ:[54,56,57,30,50,29],btresrang:18,useless:13,indentifi:70,subroutin:57,xcodebuild:3,march:31,obsolet:[37,88,35,25],transpar:[82,56,60,10,65,46,70,84,87],big:[42,58,44,11,71,29,85],single_act:18,mps_class_ams_debug:[27,28,74],sac:12,alias:[41,17],mps_arena_reserv:29,cierniak:31,insert:[46,84,52,8,50],bit:[39,54,56,57,17,18,60,62,63,48,67,70,72,73,8,3,13,58,42,20,59,88,5,24,50,25,82,31,45,7,46,34,35,80,87,33,37,51],characterist:[67,54,77],formal:15,xcodeproj:3,success:[39,53,63,65,66,40,72,41,43,32,29,10,50,11,12,84,35,87,34,15,13,78,33,94],overcompens:62,rossum:15,signal:[16,71,74,13,94,35,52],resolv:[30,34,70],manifest:16,heart:[54,57,58,80,71,72,33,26],collect:[0,39,55,56,57,17,59,54,60,61,62,83,48,67,53,70,40,72,8,75,13,58,42,20,88,44,5,23,79,24,25,26,27,29,30,82,9,31,45,10,7,11,93,47,92,34,35,85,86,87,36,32,69,15,37,84,77,78,16,71,52,94,22,38],arthur:31,pithi:80,popular:[15,8],mode:[0,53,82,57,77,8,15,46,16,72,50,34,37,52],frame_o:40,mps_pool_class_epdl_debug:46,encount:[10,13,11,33],mps_gen_param_:[36,37],often:[53,54,56,57,58,18,61,62,63,64,48,67,68,70,71,72,8,59,5,24,80,30,10,11,89,15,16,33,37],comparegreat:34,acknowledg:[20,93],creation:[63,57,17,59,50,83,46,78,40,25,13,37,29,58],some:[0,39,55,56,57,17,18,54,60,62,63,65,66,67,68,53,70,71,72,8,3,13,58,42,59,43,5,78,24,50,48,32,28,29,81,30,82,31,45,10,25,11,46,47,12,34,35,80,87,36,89,69,15,84,90,16,33,41,94,37,38],back:[77,87,8,58,59,21,60,83,62,33,11,68,46,45,50,71,72,25,34,84,29],understood:72,strongest:72,unspecifi:[72,18],sampl:[32,46],"0x1003faf30":16,consciou:31,scienc:[11,31],sizeof:[84,50,80,87,36,58,18,88,7,33,65,90,16,12,25,41,92,34,37],surpris:30,obj_fwd:[35,37],teco:15,scale:[30,62,15,67,71,34],laru:31,bobrow:[56,31,15],chunksiz:13,mps_awl_find_dependent_t:7,sigusr2:94,block_on_client_with_timeout:29,substitut:[6,4,33],mathemat:[67,18],larg:[53,54,55,56,58,18,62,63,48,66,67,70,71,72,8,17,59,44,5,24,7,30,9,31,11,46,47,12,34,35,89,15,77,50,92],undon:83,leftmost:[59,18],prod:51,proc:[31,21],worst:[53,54,31,59,89,67,78,7,92],mps_message_discard:[0,78,36,25],recogniz:58,cgi:15,boolcheck:34,mps_var_:51,run:[0,39,56,17,18,54,60,62,63,48,66,70,71,72,3,13,58,42,59,4,44,5,24,25,29,30,31,10,7,11,34,35,86,87,15,84,78,16,33,41,94,37,51,52],martin:[93,31],integer_:37,pietro:31,step:[39,17,18,33,70,84,46,24,16,25,27,37],convent:[20,55,56,57,18,30,60,65,70,48,8,41,51,52],mps_ap:16,squeez:66,prerequisit:[3,86],async:42,mps_pool_walk:46,frob:51,subtract:[0,30,17,59,71,33,35],impos:[78,56,40,18],mps_fmt_pad_t:[8,35,37],mps_class_mvff_debug:[92,28,74],dissimilarli:59,constraint:[78,56,36,59,45,61,5,11,69,24,70,12,25,35,29],coexist:8,proce:[39,42,87,17,10,48,70,33,92,29],traceabl:[5,80],prove:[53,59,60,78,69,70,80,37],favor:30,lieberman:[55,31],vmalloc:31,idl:[36,29,52],mean_siz:77,alfr:31,slot_high:92,abstractarenaclass:5,"r\u00f6jemo":31,block:[0,39,55,56,57,58,59,54,60,61,62,63,65,67,53,70,40,1,74,75,84,42,20,44,5,78,79,24,50,48,25,27,28,29,81,30,82,8,9,45,10,7,11,46,47,12,92,13,35,85,87,36,72,32,89,15,37,77,90,16,33,71,22,51,38],cutoff:47,compactli:[68,71,58],real:[42,30,31,62,83,15,68,24,71,12,48,8,34,72],colorado:31,primarili:[41,5,63,17,80],mps_ap_create_v:84,sigusr1:94,intl:31,sens:[54,57,58,63,68,71,25,37,38],within:[39,54,56,57,17,18,62,70,71,72,8,24,6,29,81,30,82,10,33,46,34,35,50,37,51,38],programat:35,toft:[31,15,72],usual:[0,53,55,56,57,17,18,54,61,62,63,48,66,67,68,70,71,72,8,84,58,42,59,24,25,29,30,10,80,11,12,41,35,39,87,89,15,78,33,92,37,51],myseg:41,rankweak:34,mps_message_clock:0,rapid:[31,15,50],contributor:4,chang:[53,56,57,17,18,62,63,65,67,70,71,8,3,13,42,21,5,24,25,26,29,81,82,31,45,83,80,11,46,48,34,87,36,89,50,37,51,38],mps_args_add:[74,9,77,22,7,37,79,1,25,92,27,75,28,35,29,85],fopen:32,mps_key_rank:[79,25,28,7],trampolin:94,thirdli:[5,15],inclus:[77,37],span:[39,54],carnegi:31,mythic:59,fledg:6,enabl:[0,10,32,7,78,71,25,41,13,37],megabyt:[53,62,70,37,58],"0xfdfdfdfd":46,"long":[0,39,17,18,65,67,53,71,72,8,84,42,59,88,77,22,24,25,28,29,30,9,31,32,33,83,12,34,87,36,16,50,37,51],fence_templ:74,adjac:[54,56,57,58,30,89,12,73,50],reserve_depth:77,handbook:[93,11,31],includ:[39,53,55,56,57,58,18,54,72,61,62,65,67,68,70,71,1,3,75,34,59,4,88,77,5,79,24,6,32,25,27,28,29,30,9,31,10,7,11,46,48,13,35,85,80,87,89,15,37,16,50,41,92,22,51,38],suit:[72,15],forward:[84,54,86,57,9,18,79,60,22,8,48,37,46,71,1,7,41,27,35,58],nepot:61,superpag:[71,66],busytrac:5,cbss:50,properli:[32,46,71,12,13,29],obj_unus:25,repeatedli:[54,77,63,46,71,29],subgraph:71,"0x000000010001287d":16,mpscmf:85,rash:[57,59,10,66,68,72,51],decomposit:18,navig:11,dgc:56,link:[54,56,57,8,67,70,71,72,2,19,3,84,20,21,25,30,31,7,11,13,15,90,50,38,51,52],uncontrol:[32,13],arrang:[39,42,58,54,80,17],cbsblock:50,mpscmv:75,mitig:30,mminfo:[18,21,5,43,83,46,6,80,50,26,2,51],ismm:31,sdk:3,info:42,concaten:21,cactu:[71,57],consist:[53,56,57,17,18,62,8,73,74,34,42,21,24,88,29,81,82,10,46,41,35,86,43,84,16,50,37,51],confusingli:[72,15],myseginit:41,pool_debug_opt:28,caller:[60,83,48,80,37,51],pkg_add:3,adequ:29,trishul:31,mps_roots_stepper_t:82,highlight:[84,31,25],mps_defin:[78,83,25],btsize:18,similar:[53,54,55,56,57,58,59,62,63,48,66,67,68,69,70,71,72,8,34,4,77,5,25,29,82,32,83,41,15,84,37],mps_fmt_destroi:[35,37],impl:[18,21,5,43,46,6,80,50,41,34,51],w3i3mv:[3,34,88],caught:94,constant:[82,57,18,88,10,50,65,46,16,48,32,51,72],waldemar:15,obviat:46,parser:37,doesn:[42,30,87,57,17,18,44,5,25,62,84,24,71,12,7,41,34,22,29,38],lectur:[13,31],"char":[84,87,36,58,32,25,37,16,33,13,28,34],proper:30,incomplet:[21,60,32,43,83,65,46,6,26,2,34],clever:46,behavior:[30,57,31,11,15,71],aggrav:30,getthreadcontext:39,singli:50,phantom:[67,71,72,15,8],oberon:15,w3i6mv:[3,88],sequenti:[54,58,31,77,62,48,70,71],wirf:31,sheetal:31,tracequantum:16,setsparecommitlimit:5,appendic:20,"000ae03973361d5a":13,priori:[77,37,72],gonthier:[31,8],librari:[39,17,62,65,71,8,2,3,58,20,21,35,30,31,45,32,13,49,86,15,16,51],retract:5,mps_scan_end:[82,17,7,33,37,90,25,35],nice:46,btdestroi:18,draw:[55,71],llvm:[39,88],users:13,gigabyt:[53,70,58],event_al:51,pfm:51,caml:15,mps_rm_prot:[82,8],w3i3m9:88,william:31,drag:31,"001b":13,"001a":13,vigil:17,alloc_pattern:47,param:51,obj_skip:[16,35,37],lang:[15,67,71,72,8,41],pmo:31,infrequ:[24,63,72],algorithm:[53,30,36,18,31,89,62,70,15,66,67,24,59,71,48,92,57,72],vice:[42,5,25,15,7],ams_is_invalid_colour:10,built:[30,82,56,57,17,88,65,15,3,37],bibliographi:[20,11,31,30],bateman:93,discrimin:[34,70],depth:[77,63,37,31],appendix:[13,78],unconnect:66,mps_pool_mvff:[],mps_build_cx:88,broad:34,mps_arena_unsafe_expose_remember_protect:29,fresh:80,convert:[50,18,21,32,5,43,83,46,6,80,33,26,2,13,34,51],avoid:[0,53,56,57,17,61,63,65,66,71,1,8,13,58,4,43,44,5,25,29,30,50,83,46,48,41,49,34,89,78,33,37,51,72],oop:[16,31],unclamp:[69,57,29,8],io_o:32,extrapol:37,partial:[30,57,18,59,77,71,41,84],edg:[53,61,55,70,71],mps_arch_al:88,scratch:[24,84],cbsfinddeletenon:50,fclose:[32,25],recomput:29,gmake:3,mps_prod_str:21,mps_fmt_fencepost_wrap:46,cmpf:25,holdout:30,predefinit:51,mps_builder_:51,cbsinsertisolatedrang:50,compact:[42,56,57,58,31,62,63,15,66,69,71,72],root_scan:82,privat:[5,71,84,65,25],spector:93,pthread:43,secur:[62,15,8],quarterli:31,tracecondemn:80,elsewher:[34,87,35,17,21],young:[53,22,57,55],send:[67,91,94],mps_arena_step:[36,29],granular:[5,29,66],lower:[5,62,70,65,29],tricolour:[67,70,71],estim:[54,36,17,15,29],becam:[78,59],visitor:[68,71],aris:[54,56,35,4,33],fatal:13,sent:[10,13],isresetrang:18,pekka:[42,31,5,83,46,80,34,93],unzip:3,mainstream:54,btreturn:18,amcss:[3,34],mps_arena_formatted_objects_walk:[22,71,35,29],theori:[62,59,58,4],untouch:[10,34,18],tracescansegr:16,popl:31,relev:[53,54,55,56,57,58,18,62,63,48,66,67,68,70,71,72,8,59,82,11,37,51],weak_array_scan:7,tri:[42,53,57,17,10,62,50,48,66,67,46,69,70,71,12,7,34,58],mps_ld_t:[87,25],augment:60,question:[39,20,57,4,30,10,15,23,46,91,3,37,29,38],ought:5,complic:[46,8,51,18,72],joel:31,scalabl:[42,41,71,31],michael:31,fewer:[30,11,18],mps_io_creat:32,"try":[39,30,82,17,43,42,46,24,71,51,7,13,37,29],poolclasslo:18,race:[10,41,84],attrgc:34,freed:[30,56,57,58,59,54,77,5,63,11,24,71,12,8,84,37,62],rdoss:31,pleas:[39,4,10,11,65,91,16,3,94,84],impli:[30,4,54,60,5,15,71,13,51],smaller:[57,58,8,63,89,46,71,74,92,34,38],fortun:[42,68,24,31],readabl:[13,52],weslei:31,"0x3":82,relink:70,inconsist:[94,48],"0x0":16,"0x7":33,mps_message_type_t:[0,62,36,78,25],crop:15,jump:80,fold:46,compareequ:34,mps_key_arena_cl_addr:[],accesswrit:34,"0x1003f9be8":16,download:[3,37],hyper:53,odd:57,rivera:31,append:16,mps_ss_:65,mktemp:13,mps_tramp_t:94,lockclaimglobalrecurs:43,compar:[30,57,18,31,32,5,15,66,24,72,50,34,58],"0x1003f9c08":16,resembl:[56,57,58,15,74],"1003fc000":13,han:[93,31],mpmst:80,experiment:[18,15,88],chilimbi:31,mps_clock:[0,32,65],cele:15,mps_key_extend_s:75,deduc:42,whatev:[57,17,32,46,29,51],penalti:72,ierusalimschi:15,led:18,chose:70,fputc:32,inlinedescriptors:50,"__assert_rtn":16,mps_args_non:[84,28,37,25],mps_message_type_gc:[0,62,36],luiz:15,suddenli:13,mps_res_ok:[17,65,72,74,90,32,29,81,82,25,10,7,47,12,84,35,36,78,16,33,94,37],ubuntu:39,tenur:[30,70,31,8],"0x0000000100003ea6":16,becom:[0,54,56,57,17,62,48,53,69,71,72,8,24,25,29,81,30,82,11,12,84,15,78,50,93,37],implicit:[57,41,70,40,71],mps_arena_commit_limit:29,"0x0000000100067ca1":16,great:[56,63,17],survei:[11,31],copyright:4,survivor:[22,36],artifici:31,hilfing:31,conceiv:51,larger:[54,56,57,17,18,61,63,70,71,72,58,44,29,30,11,12,35,87,36,89,15,77,50,37],technolog:[30,57,31,68],oldsiz:50,later:[0,30,87,36,17,8,11,39,24,71,25,57,29],resurrect:[78,84,72],epdl:41,epdldbg:41,bufferdestroi:80,initialz:41,earli:[30,59,31,62,15,71,48,18,17],typic:[53,54,55,56,57,58,18,60,62,63,65,67,68,69,70,40,72,8,13,42,59,4,88,77,5,24,48,32,29,30,82,10,7,11,12,41,35,80,87,89,15,84,50,71,37],perform_client_act:29,chanc:[46,94],mps_alloc_dbg:46,"0x00000001000014e3":16,marc:31,undergradu:15,calibr:32,mpsclo:9,kurtz:15,clark:[60,31],nearest:71,mps_lib_fputc:32,app:3,aquir:93,foundat:42,config_var_hot:[10,51,66],apt:3,"0x0000000100008ca2":16,"boolean":[41,5,34,65,50],mps_rank_exact:[55,7,82,79,71,72,25,37],immut:[68,62,48,15,25],validli:[84,78,90,35],greg:31,microcod:15,tailor:31,fee:4,from:[0,39,55,56,57,17,18,54,60,61,62,63,65,67,68,53,70,40,72,74,2,3,75,34,58,42,50,59,4,21,44,22,78,79,24,6,48,7,26,27,88,29,81,30,82,8,9,31,10,25,11,46,47,12,92,13,35,85,80,87,32,43,89,69,15,37,84,77,90,83,33,41,71,94,5,51,38],type_pad1:[16,37],zip:3,commun:[0,56,57,31,62,15,67,46,24,48,50,26,35,72],hudson:[57,31],s7m6mw:88,few:[39,30,57,17,18,60,89,63,11,15,65,70,53,16,12,25,29,58],dconfig_plinth_non:[32,3],busi:[5,83,15,4,7],usr:3,lock:[39,20,63,43,10,5,45,35,84,78,87,41,34,94,37],lesli:31,jonathan:31,postpost:74,remaind:[54,89],sort:[0,30,55,87,58,34,62,42,71,72,2,13,35,51],mps_ap_create_k:[79,84,25,37,7],mps_root_create_fmt:82,tag_data:46,fillmutators:5,mps_fmt_create_:35,benchmark:44,mps_fix12:[65,33,35,37,7],"0x00000001003f9ae0":16,cbsfinddeletehigh:50,mps_key_arena_s:[28,37,29],mps_pf_xci3ll:88,rusage_self:32,structu:74,fri6gc:[3,88],mps_pf_:[51,88],account:[42,5,57,24,25],hoard:31,retriev:[0,36,18,83,68,78,71,29],salad:71,perceiv:[0,15],stoutamir:93,annot:[51,17,15],larch:31,plinth:[0,20,32,65,49,13,8,3,34],obvious:[46,41],meet:[5,51,35,18,50],tracescanseg:16,fetch:[30,57,17,8],aliv:[61,30,63,9,59,79,7,10,33,78,48,67,44,90,71,72,25,37],proof:10,control:[39,54,55,56,57,17,18,62,65,70,71,72,34,42,59,5,24,6,29,81,30,82,31,45,32,11,46,48,13,85,15,84,16,50,94,37,51,38],sqlite:[3,13,52],weaker:8,bitmap:[57,58,48,70,71,13],lockclaimglob:43,protic:31,loci:42,classes_count:12,justif:[41,18],high:[30,56,36,18,31,62,50,70,15,59,71,48,33,92,13,58],pictur:[39,42],protix:16,lispwork:15,fprintf:[32,16,37,33],buckets_t:25,"002d":13,locu:42,mps_mv_free_siz:75,subsystem:31,serial:[32,5,34,31],everywher:[37,58],kib:17,"0x7fff5fbff0a0":16,minlength:18,link_:84,six:[92,3,72,31,88],"0x10012a5a0":16,georg:31,acycl:6,sig:[41,6,31],mps_thread_dereg:[82,94,37],fence_s:74,fencealloc:46,mps_pf_xci3gc:88,l979:31,circular:[61,70,31],prottramp:16,delai:[77,78,16,31],"_addr":[37,33],overridden:[5,41,51],"1078c85b8":13,interchang:[55,72],watch:62,bufferfinish:80,gcc:[39,18,88,16,3,37,51],inst:41,attent:30,attenu:50,guarante:[54,17,60,48,67,72,58,43,77,5,24,29,30,82,32,46,12,35,87,78,50,37,38],redund:8,btfindlong:18,mere:[42,46,63,57,87],physic:[30,59,68,44,61,62,48,60,69,70,71,72,8],mps_arena_releas:[69,16,29],alloc:[39,53,55,56,57,17,18,54,60,61,62,63,65,66,67,70,40,1,74,75,34,58,42,20,59,43,44,5,78,23,79,24,50,48,7,27,28,29,81,30,82,8,9,31,10,25,11,86,46,47,12,92,13,35,85,80,36,72,89,15,37,84,77,90,16,83,33,41,71,52,94,22,38],drop:[67,24,76],essenti:[0,60,15,71,8,37],mps_io_:32,bind:[16,57],init:[5,50,46,80,84,41],chapman:31,element:[57,5,63,70,16,71,12,50,28,37],issu:[58,59,62,11,78,71,2,94,18,52],chief:[93,29],stavro:[93,58],unaccept:[30,71,48],rove:[61,89],oslo:[0,15],fallback:50,longest:34,mps_tag_a_:46,elif:51,neglect:[0,10,15],larson:31,ouput:29,berger:31,train:31,solv:[30,31,62,25,24,71,50,37],move:[39,54,55,56,57,17,18,61,62,63,48,66,70,71,72,8,75,84,58,42,77,5,79,24,25,26,27,29,9,45,7,12,22,34,35,85,80,87,15,78,33,92,37,38],daconta:[31,15],cbsblockbas:50,reg_scan:82,fromspac:[60,54,70,71],notabl:[42,34,56,59],jni:8,mps_message_gc_live_s:36,perfect:[36,58,8],pai:[30,17],famili:[88,51,15,58],movabl:[8,38],treat:[55,56,7,25,78,87,80,8],"0x1003fa7d0":[13,16],chosen:[42,17,61,89,69,24,71,37,29],concept:[17,31],mps_os_so:88,culprit:10,whether:[0,53,57,17,18,54,60,63,48,72,8,34,42,4,88,5,24,25,26,29,30,82,50,83,46,41,35,80,87,84,33,92,37,38],mps_addr_t:[84,17,59,65,70,72,34,22,78,25,28,29,81,82,7,83,46,12,13,35,87,90,16,33,37],mps_os_su:[51,88],mps_class_lo:[28,9],peyton:31,symbol_:[84,37,25],trace_max:[5,34],uninitialis:8,cbsfinddelet:50,crash:[78,11,29],fourth:37,python:[30,11,15,8],auto:[9,22,7,79,33,27,35,38],overal:[44,37,17,18,21],mps_build_gc:88,handi:[67,71,8],bulk:63,mention:15,mps_root_create_reg:[84,82,70,94,37],snake:8,arenafre:5,instead:[84,56,57,17,18,63,65,67,70,13,72,75,41,42,5,24,6,25,27,29,81,30,9,10,7,83,46,12,34,32,15,16,33,71],front:[54,63,36,29],arenadestroi:83,scatter:[24,55,31],strive:[5,87],mps_arena_clamp:[57,29],type_pair:[13,16,37,33],somewher:[30,82],config_plinth_non:32,anyth:[39,30,82,17,54,42,46,24,33,3,37,51],edit:[5,21],iglio:31,tran:5,myunnoteseg:41,dominiqu:31,arenawrit:83,februari:42,trap:[31,62,80,50,8,84],truth:33,stock:[31,15],walgenbach:31,cbsfinddeleteentir:50,whiten:80,subset:[42,82,18,77,80,71,72,50,37],unwind:83,"__gc":15,accessnon:34,map:[30,8,57,58,18,54,60,32,5,63,68,46,69,59,71,51,25,62,29,72],arenaringinit:5,chunk:29,strip:33,remap:8,predic:[68,41,62],consum:[0,48,40,29,51,72],"static":[0,39,56,57,17,59,66,70,71,72,34,43,5,25,30,82,31,45,46,41,87,15,16,33,37],attrfre:34,fluctuat:[77,12],our:[5,11,65,25,34,13,38],mps_res_commit_limit:[10,12],mps_arena_collect:[22,16,29,8],mps_fmt_isfwd_t:[35,48,37],special:[39,54,55,57,58,59,60,63,65,40,72,8,13,4,5,79,7,30,45,10,50,11,41,34,89,15,78,83,33,71,37],obj_gen_param:37,variabl:[84,56,57,17,59,60,62,63,65,71,72,74,19,75,13,20,43,77,22,79,24,7,27,29,81,30,82,9,31,32,25,11,46,41,80,15,50,92,52,37,38],eqv:[0,78,16,25],nick:[93,51,31],"th\u00e9se":31,misleadingli:25,contigu:[54,17,18,60,5,63,48,46,71,50,62,58],bag:58,influenc:[57,15],req:[18,5,83,46,50,41,51],"5th":31,facto:79,trickier:37,categori:[72,13,34,52],stroustrup:[30,15],mps_key_mfs_unit_s:[28,85],suitabl:[39,54,58,18,62,63,48,59,4,43,7,27,30,82,32,12,13,35,89,50,37,38],rel:[30,56,58,15,70,71,12],gmk:3,hardwar:[42,55,56,57,58,31,45,62,11,15,23,70,24,59,71,48,8,35,29],iam4cc:88,ref:[42,82,8,18,43,25,83,78,48,37,67,90,71,72,33,26,13,34],investig:[53,30,27],old_symtab:37,ree:[18,21,5,43,83,46,6,80,50,26,2,51],franc:31,make_symbol:[84,25],parenthesi:65,fmt_a:35,frank:31,kilobyt:[64,62,36,37,58],transfer:[62,63,71,8],powerpc:[3,48,88],edeadlk:43,"0x1003f9bd8":16,york:31,tempt:[87,65,33],releas:[30,43,36,21,10,5,74,82,65,54,78,80,25,3,94,29],mps_fmt_create_a:[37,35,25],mps_fmt_create_b:35,queri:[13,62],afterward:[82,33,29,25],promptli:[0,54,11,24,72,84],reslimit:34,septemb:[46,31],walker:[46,80],intrus:31,tru64:[3,88],unwant:15,could:[55,18,60,62,83,66,70,13,72,3,41,42,24,27,29,82,10,50,11,46,34,87,15,33,37,51],lexer:37,put:[42,54,87,57,18,60,8,62,7,83,65,46,69,25,29],mac:[3,31,66],timer:13,keep:[17,48,67,70,71,72,8,58,42,43,5,78,24,50,25,29,30,9,7,11,46,36,89,15,90,91,33,37,51],counterpart:[84,74],length:[0,87,36,18,7,37,84,16,25,41,13,33,34],enforc:94,wrote:[10,32],outsid:[42,30,55,60,46,38],mortal:[53,36,31,44,22,15,48,27,37],retain:[30,56,57,4,77,11,48,71,50],"universit\u00e9":31,type_port:25,austin:31,softwar:[42,20,56,57,31,4,21,30,45,15,2,29,58],isbn:31,suffix:51,christoph:31,student:15,mps_class_amcz:[28,1,25],qualiti:32,port_clos:25,echo:13,date:[42,24,45,37,21],haskel:[11,31],lib:[3,51],facil:[42,43,32,5,46,50,41],buckets_find:[87,25],suffic:25,ecoop:31,cbsblockstruct:50,avert:41,supposedli:59,dump:46,strict:[53,57,58,4,71,72,50,41],unknown:[0,10,67,77,39],mps_arg:28,perfectli:30,capac:[0,30,36,44,22,27,37,62],wrapper:[67,32,50,46,25],attach:[0,58,5,46,70,12,84,37,62,72],attack:62,poolcheck:6,btcopyinvertrang:18,termin:[54,59,18,10,32,50,70,33,13,84],withington:[63,31,93],poolreclaim:80,prone:30,configura:83,shell:13,ferrit:57,deregist:[82,83,78,94,37,29,38],"__del__":15,fuzzi:11,methodolog:31,transistor:71,accompani:[51,4],lockreleaseglob:43,enqueu:[67,71,72,8],diminish:44,exactli:[53,56,57,18,60,8,50,11,65,46,7,34,63,41,51,38],steel:[42,58,31],unmap:[54,62,68,69,71,72,29],holland:31,cpython:15,bloat:30,tr94:31,couldn:[82,36,35,46,25,37],"0x1003f9948":16,roberto:15,emac:[0,10,53,15],structur:[39,53,56,57,17,18,54,60,62,8,64,65,66,70,71,72,74,41,58,42,20,59,21,5,24,6,48,32,28,29,81,30,31,45,10,7,11,46,47,12,50,34,35,85,80,87,36,43,15,37,84,16,33,94,25,51],charact:[30,17,88,32,37,71,1,25,3,13,51,58],claim:[43,10,5,70,41,94],dai:[42,30,18,7],mps_res_resourc:[10,12,29],noprint:16,mps_arena_commit:[62,29],histor:[53,54,56,57,58,59,60,62,48,67,68,70,71,72,73,3,43,45,83,49,88,15],dubiou:[69,18],exp:16,spaceaccess:80,stdio:30,bet:46,busili:24,exhibit:[63,58],counter:13,"0x00007fff91aeed46":[13,16],freefre:74,cohen:31,linker:[71,51],deprec:[81,82,9,18,77,22,33,65,84,79,78,40,1,7,92,13,75,94,27,29,85],mps_pf_align:[85,88,77,61,5,7,75,51,38],correspond:[53,54,17,18,62,70,40,72,58,43,5,78,79,7,28,29,82,25,83,47,34,35,80,88,90,50,94,22,51],arenaaccess:5,tom:93,btissetrang:18,usenix:31,fourteenth:31,tabl:[55,56,57,17,18,48,66,67,68,70,72,8,34,58,20,88,44,76,25,28,29,82,31,45,7,13,86,87,15,90,16,37,38],close:[39,30,57,59,4,54,77,8,78,53,25,51],wakel:31,finalpool:5,op_env:16,tidi:[0,86,37,51],flip_mask:13,optimis:17,runciman:31,lazili:[83,57],sdram:[56,71],depict:55,mpscamc:[22,1,65,37],messeng:[30,31],findlongresrang:18,"0x1003cbe38":16,accuraci:[67,34],mix:41,unawar:8,contraven:41,"0x7fff5fbff7d0":16,which:[0,53,55,56,57,17,18,54,60,61,62,63,65,66,67,68,70,40,72,8,3,34,58,42,50,59,4,21,77,5,78,76,24,6,48,32,26,28,88,29,81,30,82,31,10,25,11,46,47,12,13,35,85,80,87,36,43,89,15,84,90,16,83,33,41,71,94,37,51,38],r_o:94,mip:[3,88],mit:31,singl:[39,53,56,57,17,18,54,60,62,63,71,72,42,59,43,44,5,24,7,27,28,45,46,41,89,15,16,50,94,37,51],uppercas:65,btisresrang:18,radioact:31,unless:[53,59,65,8,75,13,77,22,24,50,25,27,30,9,7,11,46,84,85,33,92,37],allow:[0,53,56,57,17,18,54,62,66,69,70,71,72,74,3,13,58,42,59,21,5,24,50,7,26,27,29,30,82,10,25,46,12,34,35,80,15,84,90,91,33,41,37,51],combat:7,size_io:46,transmit:32,jun:[13,16],lockfinish:43,licens:[39,20,3,4],discov:[57,44,10,70,46,90,16,25,37,29],middleblock:50,patchi:72,rankambig:[26,34],awl:[20,56,18,7,67,90,25,19,38],runfinalizersonexit:78,intern_str:25,deploi:39,bjarn:[30,15],nostop:16,config_var_:51,why:[0,30,16,36,18,32,78,6,25,34,84,38],morrisett:31,make_port:25,lee:31,old_symtab_root:37,brad:31,mps_pool_t:[81,37,8,9,85,79,77,22,74,35,84,46,12,7,92,27,75,25,1],instig:0,gather:[53,71,58],stronger:58,face:[71,62,11,59],"_io":[48,65],lockclaimrecurs:43,mpsacl:29,error:[84,54,56,17,59,60,62,8,65,69,33,71,72,74,13,58,20,22,48,32,27,29,81,30,82,25,10,7,83,47,12,34,35,80,87,36,16,50,37,51,52],determin:[0,53,56,57,17,59,54,63,48,66,67,68,69,70,71,72,8,2,84,42,21,5,78,24,50,25,26,29,81,30,82,7,46,34,35,80,87,15,90,33,37,38],occasion:17,constrain:[46,34,50],weiser:[53,30,57,31,15],icfp:31,"000000010992f000":13,arenacheck:5,guei:31,gen_count:36,text:[58,59,45,15,71,80,13],lockreleasempm:43,verbos:13,"0x100002130":16,minski:[31,15],poolaccess:80,connect:[53,55,57,60,32,22,11,78,24,72],bring:[29,18],"0x000000010000447d":16,empir:31,totalreturn:16,parentclassnam:41,topmost:[71,36],texa:31,anywai:[41,43,87,25],duck:15,wors:[54,89],insertisolatedrang:50,textual:[80,50],locat:[0,54,55,57,58,18,60,62,63,65,67,40,72,8,34,20,59,43,77,5,24,50,48,25,29,81,82,45,10,7,11,46,12,41,35,86,87,36,32,89,84,78,83,33,71,52,94,37,38],materi:[30,4],print:[0,50,15,37,78,16,80,25,13,34,29],youngest:53,correl:77,obj_:37,should:[0,54,17,18,62,65,67,70,72,74,3,75,13,42,44,5,79,6,48,32,26,27,28,29,81,30,82,31,10,7,46,47,12,34,35,80,87,36,37,84,77,78,16,50,41,25,51,38],mps_ld_merg:87,held:[5,50,12,43],smallest:[53,57,58,89,71,12,50,34],tape:58,untag_s:25,mps_capac:36,scholten:31,various:22,"0x1003fad48":16,local:[54,56,57,17,59,61,62,63,65,68,70,71,72,3,84,58,43,24,6,30,82,31,32,11,48,41,35,89,33,37,51],hope:[82,51],mps_ap_alloc_pattern_begin:[47,72],meant:[54,71],count:[53,54,56,18,60,61,62,63,67,71,72,76,59,43,23,24,25,28,29,30,82,31,46,34,15],protstruct:51,changeov:17,obj_pool:[35,37],contribut:[42,93],mps_block_siz:12,lii4gc:88,findfirstbefor:50,familiar:[42,37],make_str:[16,25],mergerang:50,memcpi:[32,34,16,84],bear:44,joint:31,mps_arg_:[81,64,84,28,37,29],lockinit:43,lockix:10,tbl:[87,25],cbsblockdescrib:50,increas:[53,30,57,54,60,10,51,83,67,47,12,13,89,29,72],debugpoolcheckmethod:41,cbsgl:50,mps_arena_start_collect:29,zendra:31,nmake:[3,51],portion:[8,57,29,18,72],extract:21,unstructur:9,organ:30,whilst:80,underscan:[27,16,86],caudil:31,stanford:31,symtab:[82,37,25],mpscam:27,grai:[53,57,58,60,48,67,70,71],reig:31,mps_sac_destroi:12,sus8gc:88,partit:[61,5,72,31,45],contain:[84,54,55,57,17,18,72,62,8,65,67,70,71,1,74,3,75,13,58,42,59,4,21,77,22,78,79,24,50,7,27,28,29,30,82,9,25,11,46,48,34,35,85,80,87,36,43,37,90,16,33,41,92,5,51,38],grab:92,btfindlonghigh:18,btfindlongresrangehigh:18,view:[39,42,58,59,54,5,43,48,46],mvff:[20,62,74,92,50,19,75,38],shapiro:31,legaci:3,modulo:87,bucket:[53,87,57,58,59,8,25,37],modula:[53,11,15],knowledg:[77,89,11,71,50,41,37],bty:18,ebi:31,flip:[42,54,58,45,5,84,70,34,94,13,29],veljko:31,temporarili:47,stack:[39,55,56,57,17,59,48,66,70,40,72,8,19,20,77,22,79,24,7,27,28,30,82,9,31,11,47,92,84,85,15,78,16,71,94,37],modulu:18,mps_os_fr:88,closer:89,polymorph:[34,41],mps_fmt_t:[9,79,10,22,37,46,1,7,27,28,35],wire:[62,8],correctli:[87,59,33,48,80,84,41],reform:51,pattern:[20,56,36,59,30,89,63,11,87,54,46,47,40,72,74,84,52],boundari:[57,31,59,63,48,71,92,18],segment:[53,17,18,62,63,48,67,71,72,8,75,34,58,42,59,5,80,46,13,85,41,92],btfindlongresrang:18,overlarg:12,tend:[58,18,11,67,33,17],lua:15,state:[0,56,57,17,59,62,65,69,71,72,8,34,42,43,5,80,29,81,82,32,33,46,48,22,41,35,15,50,94,37,52],luc:31,rovner:31,mpseventsql:[86,3,13],mps_fmt_auto_header_:[35,33],crude:60,progress:[42,53,36,31,63,91,8,57,13,29],neither:[81,82,56,50,67,6,8],induc:15,tent:46,locksiz:43,javascript:[11,15],kei:[53,56,17,7,11,15,67,46,90,50,25,28,87],amen:34,lamport:31,appopri:12,mps_res_unimpl:10,job:[30,22,11],entir:[30,80,8,17,18,44,62,50,11,69,15,24,71,48,7,29],mps_fmt_a_:[37,35,25],fri3gc:[3,88],argument:[0,57,18,64,65,67,1,74,75,41,42,77,5,79,50,7,27,28,29,81,82,9,31,10,25,12,22,34,35,85,84,33,92,94,37],amer:31,swift:57,barrett:[93,31],mps_fix_cal:[35,33],attrpm_no_writ:34,instant:[81,54,29],bucket_:[87,25],mps_class_mv:[75,28],goal:91,obtrus:24,mps_arch_pp:88,ramp:[47,36,72,52],equal:[57,18,31,32,35,67,50,3,34,29,58],jersei:15,mipspro:88,tlb:70,detlef:31,succeed:[10,34,37],grain:[53,61,5,67,50],equat:58,committe:15,mps_class_mf:[75,28,85],section:[42,50,87,18,43,10,7,11,70,45,33,25,3,37,51,38],freeli:[35,4],swallow:8,mps_key_awl_find_depend:[25,28,7],suno:[3,88],boyer:[31,18],"0x00000001003f9b40":16,mps_root_create_t:[82,37,25],unimpl:34,unmark:[62,71],english:[57,36],guidelin:[41,45],resresourc:34,arriv:67,arena_high:92,walk:[46,35,80],distil:15,tv_usec:32,dot:13,flexowrit:13,assert_mpsi:51,leftblock:50,traceset:[5,34],seligmann:31,mailto:4,quit:[30,82,57,59,54,61,15,67,46,24,70,13,37,38],slowli:13,evalu:[31,25,65,16,12,48,33,34,84],platform:[39,53,18,61,63,65,67,72,8,3,75,13,20,21,77,45,32,34,49,85,86,88,15,50,92,94,37,51,38],teach:15,decent:38,accumulatorreset:34,compos:[89,31],insuffici:[84,8,40,15,50],willi:31,plezbert:31,"0x000000010002b399":16,tactic:37,immedi:[42,30,82,56,81,58,21,77,25,48,68,69,16,40,33,37,29,87],"0x000000010002d020":16,mps_pf_lii3gc:88,set_mask:13,memcmp:[32,34],both:[84,56,57,17,18,65,13,72,74,41,43,5,24,7,29,25,33,11,46,92,48,22,34,15,78,50,71,37,38],epdldebugpoolclassstruct:41,decai:[53,31],forestal:8,sac_o:12,zero:[0,56,17,59,72,61,63,67,1,74,19,13,20,7,76,24,32,28,30,82,8,9,25,10,33,12,34,80,15,50,37,38],togeth:[53,54,36,59,18,77,89,11,37,46,72,66,35],colnet:31,reinhold:31,pig:8,tracefix:[5,13,80],present:[42,53,43,32,25,11,70,47,71,80,33,34,37,51,38],statist:[13,36,17,29],replic:[68,62,72,31,8],multi:[39,30,4,31,43,5,63,70,59,72,8,84,94,37,62],attrbuf_alloc:34,obj1:41,plain:18,align:[53,17,18,61,63,65,67,69,70,80,74,75,84,58,59,88,77,5,79,50,48,7,27,28,29,82,8,9,45,10,25,46,12,22,34,35,85,16,33,92,37,51,38],event_intern:13,corrigendum:31,fmt_b:35,cursor:17,defin:[0,54,57,58,18,61,65,66,70,71,72,34,43,6,32,88,82,10,25,83,46,48,41,80,21,78,16,33,37,51],deem:29,talpin:[31,15,72],sanctifi:34,glossari:[53,54,55,56,57,58,59,60,61,62,63,64,48,66,67,68,69,70,71,72,73,8,76,20,30,11,14,93],s7ppmw:88,blockbas:50,sep:51,uniprocessor:31,april:31,mps_os_o1:88,layer:[71,11,89],fwd2_:37,conclus:30,incapacit:13,cell:[60,67,57],almost:[39,30,59,15,67,46,84,37],mps_chat:0,site:[30,91,54],"0x00000001003f9b80":16,mps_args_add_field:28,mps_pool_class_t:81,archiv:[3,91],motiv:[59,15],attrfmt:[34,80],substanti:[24,56,72,15],buckets_fmt:25,r2000:88,partner:15,resmemori:[34,50],foreign:[54,8,9,38],greater:[18,32,68,71,50,34,29],mutat:[42,53,56,57,59,45,5,63,69,15,67,54,24,70,71,48,8,34,62,29,72],mps_arch_:51,mps_mvff_size:92,began:13,referenti:54,satisfi:[81,54,56,59,18,77,89,37,71,8,84,66,35,38],cross:57,access:[0,53,56,57,58,18,60,62,63,65,66,67,68,69,70,13,72,8,2,3,41,59,43,22,24,48,25,30,82,9,32,7,11,46,12,34,35,80,87,36,15,84,78,16,83,50,71,94,51,38],paulo:31,handl:[0,55,17,62,65,66,67,40,72,8,84,42,43,78,79,25,82,32,7,11,46,12,34,35,15,90,16,33,71,94,51,52],anachronist:48,mps_reserve_block:[84,65],largest:[67,88,12,59,50],failur:[50,56,10,62,25,70,16,80,32,41,34,87],probabl:[42,30,82,18,54,10,67,53,70,71,72,34,37,29],infer:[71,59,15,72],difficult:[30,56,59,54,62,78,15,24,16],innermost:47,competit:77,undesign:42,longjmp:35,denot:[3,58,18],fmt_ah:35,heapsort:66,maxlength:18,upon:[67,68,41,65,25],struct:[84,82,87,74,60,32,5,25,83,65,37,50,12,7,41,36,34,28,35,51],coffe:29,phd:31,mps_pf_lii6gc:88,lii3eg:88,sooner:[30,16,17,29],w3almv:88,dealloc:[53,54,56,59,60,62,74,48,66,71,8,75,77,22,79,7,27,30,9,10,80,12,84,85,15,50,92],customalloc:31,decoupl:51,mps_message_queue_typ:[0,62,25],reclam:[67,78,31],mordechai:31,off:[55,57,43,60,89,70,46,16,71,80],cbsmayuseinlin:50,firstli:[5,62,17,15],mps_telemetry_databas:13,builder:51,obj_ap:[16,37,25],well:[0,54,58,18,62,63,65,68,77,40,3,41,42,44,24,50,25,27,30,7,11,46,12,34,35,87,89,15,84,13,33,71,38],morri:31,thought:[13,34],action_find_set_bit:18,count_max:18,command:[0,10,15,16,3,13,51],pda:71,mpseventcnv:[3,13],filesystem:51,undefin:[30,18,32,5,65,78,70],colour:[42,57,18,45,10,67,70,71,34,29],btfindshorthigh:18,mckinlei:31,faq:[30,15],test1:18,distanc:35,bye:0,paus:[30,36,44,5,11,48,24,72,57,62,29],less:[53,56,57,17,18,71,72,8,75,84,58,77,5,25,29,30,32,11,12,34,36,89,78,50,92,37],conv:[34,18],compel:30,obtain:[0,57,4,10,62,89,15,68,71,34,29],mistaken:[84,25,7],metrowerk:[3,51,88],topic:[20,86,7,11,65,25,37],distant:[30,16],heavili:[30,50],increasingli:47,paul:[93,31],simultan:[39,30,8,57,25],systemat:56,brainpow:17,elliot:31,mps_args_don:[74,9,77,22,7,37,79,1,25,92,27,75,28,35,29,85],web:[91,15],adt:[34,18,43],now:[0,30,57,17,18,54,62,8,83,15,84,80,25,13,81,28,37],field:[84,54,55,57,58,18,60,63,48,70,71,72,8,34,42,5,6,25,26,28,7,11,46,41,35,80,15,37,51],dylan_scan_contig:17,elsevi:31,alloct:46,makefil:[3,51],hall:31,bits_act:18,add:[42,30,82,87,89,10,50,70,15,37,84,46,24,16,12,25,41,3,28,13],divis:[57,58,31,15,67,71],epdldebugcheck:41,mps_telemetry_control:[32,13,70,29],ada:54,mps_pool_destroi:[81,78,37],ado:17,mps_build_gp:88,petrank:31,clinger:31,jython:15,branch:[71,84,57,17,51],poolclassstruct:[34,80],dest:32,"002b":13,varieti:[30,63,57,59,18,21,10,45,15,66,68,46,16,72,3,52,13,51,38],multiprocess:31,steadili:77,assert:[0,80,16,57,17,18,72,10,32,25,66,6,59,74,13,33,37,51,52],cruz:31,realiz:37,cedar:54,know:[39,53,55,57,17,18,60,65,66,68,8,34,42,24,28,29,30,82,10,11,46,12,41,35,16,33,37,38],burden:53,nointersect:50,press:31,redesign:15,lockclaim:43,recurs:[30,57,59,31,43,5,15,66,6,71,41],loss:[18,4,33],motorola:88,resid:[42,56,57,58,67,68,71,72,41],like:[53,54,56,57,17,18,62,65,40,1,3,75,13,42,59,4,77,5,79,24,50,7,27,28,29,30,9,10,25,11,46,47,48,34,85,80,36,89,15,37,84,90,16,33,41,92,22,72],lost:[46,84,18,15],safest:33,corpor:31,resio:34,roth:31,stagger:56,ref_p:78,necessari:[84,54,57,65,66,70,13,80,34,43,5,24,25,26,29,30,7,46,48,22,41,87,21,78,33,94,37,51],lose:[60,54,56,71,50],customis:[51,31],not_condemn:[0,16,25],abysm:50,pretest:[0,15],page:[56,57,17,18,62,63,48,66,67,68,69,70,71,72,8,3,58,59,5,29,30,82,31,13,35,15,37],candi:51,provok:[10,16,30],poor:[30,36,61,62,11,24,8,37],exceed:[34,10,5,12],string_equalp:25,unit_s:85,captur:57,"0x7fff5fbff3e0":16,mps_os_:51,yarsun:31,interact:[0,30,31,18,32,62,63,11,48,24,71,25,13,89,29,52],hain:31,self:[54,70,31],certain:[30,80,56,8,58,54,89,50,11,15,67,68,24,47,70,51,33,71,63,29,72],"__kill":[13,16],"_msc_ver":51,superclass:[46,41],smoothli:[36,37],piec:[30,57,45,43,89,24,70,74,29],home:15,mps_class:35,peter:31,type_weak_t:7,transport:[70,71],win32:43,subramanian:31,trust:72,leaf:[20,63,17,59,54,44,33,68,71,1,25,19,38,35,9],borland:15,lead:[56,36,58,59,60,89,62,63,70,16,71,92,51],leak:[0,30,31,62,63,11,15,53,71,12],leah:93,mps_res_memori:[10,82,12,29],thank:93,overlap:[42,82,32,47,80,29],debug_opt:[92,27,75,74],mps_arena_park:[22,29,8],mps_args_:28,disciplin:[72,15],overlai:72,launch:9,mps_ld_isstal:[63,87,25],pollthreshold:5,mps_os_s7:88,mynoteseg:41,"0x1003fe928":16,mps_build_eg:88,gnumak:3,mnemon:[34,63,71],slight:[77,15],aitr:31,journal:31,"enum":50,usag:[36,17,21,62,66,13,37,29,58],hosk:[93,57,31,8],facilit:[71,15],paper:[30,13,70,11],host:32,mps_arena_spare_commit_limit_set:[5,71,29],although:[54,57,59,60,62,65,70,71,41,18,43,5,24,6,25,30,11,46,48,34,15,50,38],longword:[56,63],java:[53,30,31,54,11,15,66,67,78,71,72,8],sigabrt:[13,16],simpler:[0,30,37],mps_root_t:[82,37,72],toolchain:[3,88],interven:[47,12],world:[62,11,31,29],findlast:50,column:[13,88],freedom:[68,30,15,46],irix:[60,3,88],pascal:[11,15],btre:18,tracer:[42,5,34,45],mps_key_vm_w3_top_down:[],jouannaud:31,constructor:[30,56,57,59,15,37],fals:[0,81,87,41,18,5,50,65,37,84,12,33,26,92,34,35,29],discard:[0,54,36,50,78,47,12,25,57,84,35,29,38],hypothet:41,predictor:31,conflat:50,sleepycat:4,harder:[89,48,15,8],own:[39,57,68,70,71,72,3,34,42,43,5,32,29,30,82,10,25,11,46,41,89,15,84,37],absolut:[12,59,8],roughli:17,kathryn:31,unbox:[58,48,69,71,33,37],around:[61,30,36,17,43,58,32,62,7,69,15,84,46,24,25,34,37,38],tag:[57,17,59,60,65,67,69,70,71,72,8,58,6,7,30,82,25,46,48,84,35,15,16,33,37,51,52],eventdef:13,automat:[39,53,56,57,17,59,72,62,8,65,66,67,40,1,74,19,3,75,20,77,22,23,79,24,50,48,7,27,29,81,30,82,9,31,10,25,11,46,47,12,92,84,35,85,80,36,15,90,33,71,94,37,51,38],warranti:4,guard:[78,5,41,25],refer:[0,39,55,56,57,17,18,54,60,61,62,63,76,65,67,53,70,71,1,8,19,75,34,58,42,20,59,77,22,78,23,79,24,25,26,27,29,81,30,82,9,31,45,10,7,11,93,46,48,13,35,85,80,87,72,89,69,15,84,90,16,83,33,41,92,52,94,37,51,38],awhil:12,lund:31,scanner:[82,63,17,49,33],tito:31,pitfal:24,hysteresi:[77,5,45],pointless:85,mps_class_mvff:[92,28],merg:[87,57,18,50,89,80],mps_fmt_b_:35,arena_class:29,van:15,obj1struct:41,val:[6,28],mps_arena_extend:29,assumpt:[22,11,46,78,7,41,34],indira:31,findlongresetrang:18,intellig:[63,17,31],appl:[13,16,31,15,66],lockreleaseglobalrecurs:43,inexplic:59,define_alias_class:41,"var":[41,51,38],protocolclasssuperclasspoli:41,c90:57,contamin:31,"function":[0,39,56,57,17,18,54,60,62,63,64,65,66,67,68,53,40,72,8,34,42,20,59,43,5,6,48,25,26,28,29,81,30,82,9,31,45,10,7,11,46,47,12,50,13,35,80,87,32,15,37,84,78,16,83,33,41,71,94,22,51,52],encourag:[62,89,17],north:31,unexpect:[16,37,15,33],unwrap:[67,69,72],subsum:42,basic:[42,30,58,5,8,11,15,46,70,71,51,25,92,41,37,29,72],message_typ:0,mpslib:[32,3],mps_debug_class:46,bodi:[53,41,63,91],type_symbol:[84,16,37,25],backtrac:[10,16],spuriou:42,mps_debug_option_:[92,27,75],munro:31,overflow:30,highest:[29,18,72],buf:[10,32],bug:[39,30,89,56,54,10,8,11,15,16,48,32,13,84,29],wherev:34,exit_failur:30,suppli:[89,87,59,43,32,50,11,15,46,48,25,41,35,38],also:[0,39,55,56,57,17,18,54,60,61,62,63,64,65,66,67,68,53,70,40,1,73,74,3,13,58,42,59,4,43,5,76,24,6,48,25,26,29,30,82,8,9,31,80,11,46,12,92,34,35,87,36,89,69,15,37,84,78,91,50,41,71,22,51,72],dmb:58,made:[84,56,17,59,48,66,71,41,58,18,21,5,80,29,30,10,25,46,13,87,43,15,50,93,51],wise:[60,30,56,31,93],clearli:[5,16],lofix:17,scientif:15,unlock:41,troubl:[30,56],asynchron:[0,59,11,37,70,16,71,35,29],record:[0,42,56,57,17,18,54,32,5,63,15,67,46,59,71,13,94,76,29,87],below:[39,57,18,33,80,3,13,43,44,5,24,25,29,30,82,10,7,11,46,41,36,88,89,84,78,16,50,37,51],supplant:15,ensur:[84,56,17,59,48,67,70,71,13,58,5,24,25,29,30,82,9,32,7,41,35,89,15,78,33,37,51],indefinit:[56,57,59,63,48,66],tracepol:[5,16],otherwis:[0,39,55,17,18,54,67,71,1,34,58,42,4,43,5,25,29,81,82,50,11,47,12,13,35,87,36,84,78,33],problem:[53,54,56,59,62,66,70,71,72,8,34,42,5,23,24,25,30,31,7,11,46,13,89,15,78,50,37],walter:93,mps_count_t:77,succe:[0,30,5,46,84,29],lfp:31,foster:15,multipli:29,immobil:8,pin:[61,22,8,33],addison:31,"int":[54,82,18,10,5,83,65,71,32,41,34,28,37,51],mask:[82,18],dure:[0,54,56,57,18,60,61,62,8,48,67,71,72,74,84,42,43,5,24,80,29,30,50,46,41,35,87,33,37,38],dish:71,memoiz:[62,57,51],xerox:31,resparam:34,multic:62,sptab:37,implement:[0,39,55,56,57,17,18,54,60,63,65,66,67,53,70,40,72,8,3,41,58,42,20,59,4,21,77,5,91,24,6,48,25,26,30,31,45,10,7,11,46,92,12,50,34,85,80,87,32,43,15,84,78,16,83,33,71,52,37,51,38],erik:[0,15],protocolsomeclassstruct:41,ing:15,resunimpl:34,eric:31,inc:31,event_poolinit:13,zvi:31,sizenews:50,nonetheless:84,buckets_skip:25,detail:[39,53,57,17,18,60,62,65,68,71,13,42,43,50,7,30,45,25,11,46,48,41,87,84,78,33,37],virtual:[17,59,60,62,63,65,66,67,68,69,70,71,72,8,88,5,24,48,29,30,31,10,11,12,84,15,37,52],mps_fmt_check_fenceposts_t:46,ultrasparc:48,book:[93,11,51],bool:[18,5,6,50,26,41,34],futur:[53,30,82,63,36,17,59,45,10,50,65,67,78,47,80,32,41,57,34,13,58],sick:31,hpl:31,milutinov:31,siginvalid:5,out:[39,54,56,57,17,18,60,61,62,63,65,66,68,70,40,80,74,13,42,59,4,5,50,48,7,26,29,30,8,10,25,11,46,12,34,35,87,36,15,84,78,16,33,71,37],"0x00000001003f9a80":16,kent:[93,31],auxiliari:[72,48,38],repeat:[87,62,74,46,78,70,25,84,37],attardi:[93,31,15],foostruct:80,pooldestroi:80,june:[46,31],neeli:31,throughout:[18,89,65,67,70,71,37],mps_objects_step_t:46,decemb:31,vein:59,stai:[59,7],mps_headers:35,experienc:30,philipp:31,eof:32,coordin:[46,62],refsig:80,pdp:[73,58,31],baker:[57,58,31,60,63,15,68,70],indirectli:[67,30,24,41],rule:[78,34,37,25],emeri:31,gdbinit:[13,16],pointeradd:34,emerg:[78,5,50,17,25],tightest:89,naggum:[0,15],suballoc:[30,60,89,11,48,23,71],mps_collect:29,invari:[10,83,48,67,70,71,15,80],pool_class:35,mps_io_flush:[32,13]},objtypes:{"0":"std:option","1":"std:envvar","2":"c:type","3":"c:function","4":"c:macro"},titles:["11. Messages","5. AMCZ (Automatic Mostly-Copying Zero-rank)","18. Software versions","2. Building the Memory Pool System","Memory Pool System Kit Open Source License","1. Arena","4. Checking","7. AWL (Automatic Weak Linked)","Memory Management Glossary: P","8. LO (Leaf Object)","2. Error handing","1. Overview","14. Segregated allocation caches","18. Telemetry","Memory Management Glossary","4. Memory management in various languages","4. Debugging with the Memory Pool System","3. The critical path","2. Bit tables","Pool reference","Memory Pool System","19. Library version mechanism","4. AMC (Automatic Mostly-Copying)","Introduction to memory management","3. Recycling techniques","6. Advanced topics","9. The generic fix function","6. AMS (Automatic Mark and Sweep)","Keyword arguments","3. Arenas","5. Frequently Asked Questions","Bibliography","1. Plinth","7. Scanning","17. General MPS types","6. Object formats","10. Garbage collection","3. Garbage collecting a language with the Memory Pool System","1. Choosing a pool class","1. Overview of the Memory Pool System","16. Allocation frames","16. Protocol inheritance","6. Collection framework","14. The lock module","5. Tuning the Memory Pool System for performance","Design","15. Debugging features for client objects","15. Allocation patterns","Memory Management Glossary: I","Internals","3. Coalescing block structure","7. Configuration","Reference","Memory Management Glossary: G","Memory Management Glossary: F","Memory Management Glossary: E","Memory Management Glossary: D","Memory Management Glossary: C","Memory Management Glossary: B","Memory Management Glossary: A","Memory Management Glossary: O","Memory Management Glossary: N","Memory Management Glossary: M","Memory Management Glossary: L","Memory Management Glossary: K","1. Interface conventions","Memory Management Glossary: H","Memory Management Glossary: W","Memory Management Glossary: V","Memory Management Glossary: U","Memory Management Glossary: T","Memory Management Glossary: S","Memory Management Glossary: R","Memory Management Glossary: Q","17. Debugging pools","10. MV (Manual Variable)","Memory Management Glossary: Z","12. MVT (Manual Variable Temporal)","12. Finalization","13. SNC (Stack No Checking)","5. Pool class interface","4. Pools","9. Roots","8. Finalization","5. Allocation","9. MFS (Manual Fixed Small)","Guide","13. Location dependency","2. Platforms","2. Allocation techniques","19. Weak references","Contact us","11. MVFF (Manual Variable First Fit)","Acknowledgements","8. Threads"],objnames:{"0":["std","option","option"],"1":["std","envvar","environment variable"],"2":["c","type","C type"],"3":["c","function","C function"],"4":["c","macro","C macro"]},filenames:["topic/message","pool/amcz","design/version","guide/build","copyright","design/arena","design/check","pool/awl","glossary/p","pool/lo","topic/error","mmref/begin","topic/cache","topic/telemetry","glossary/index","mmref/lang","guide/debug","topic/critical","design/bt","pool/index","index","design/version-library","pool/amc","mmref/index","mmref/recycle","guide/advanced","design/fix","pool/ams","topic/keyword","topic/arena","mmref/faq","mmref/bib","topic/plinth","topic/scanning","design/type","topic/format","topic/collection","guide/lang","pool/intro","guide/overview","topic/frame","design/protocol","design/collection","design/lock","guide/perf","design/index","design/object-debug","topic/pattern","glossary/i","topic/internals","design/cbs","design/config","topic/index","glossary/g","glossary/f","glossary/e","glossary/d","glossary/c","glossary/b","glossary/a","glossary/o","glossary/n","glossary/m","glossary/l","glossary/k","topic/interface","glossary/h","glossary/w","glossary/v","glossary/u","glossary/t","glossary/s","glossary/r","glossary/q","topic/debugging","pool/mv","glossary/z","pool/mvt","topic/finalization","pool/snc","design/class-interface","topic/pool","topic/root","design/finalize","topic/allocation","pool/mfs","guide/index","topic/location","topic/platform","mmref/alloc","topic/weak","contact","pool/mvff","mmref/credit","topic/thread"]}) \ No newline at end of file diff --git a/mps/manual/source/pool/mvt.rst b/mps/manual/source/pool/mvt.rst index 31fe3044b25..e2e885aab49 100644 --- a/mps/manual/source/pool/mvt.rst +++ b/mps/manual/source/pool/mvt.rst @@ -159,17 +159,17 @@ MVT interface reserve does not guarantee any particular amount of allocation. * :c:macro:`MPS_KEY_MVT_FRAG_LIMIT` (type :c:type:`mps_count_t`) - is a percentage from 1 to 100 (inclusive). It sets an upper + is a double from 0.0 to 1.0 (inclusive). It sets an upper limit on the space overhead of an MVT pool, in case block death times and allocations do not correlate well. If the free space managed by the pool as a ratio of all the space managed by the pool exceeds the fragmentation limit, the pool falls back to a first fit allocation policy, exploiting space more efficiently - at a cost in time efficiency. A fragmentation limit of 0 would + at a cost in time efficiency. A fragmentation limit of 0.0 would cause the pool to operate as a first-fit pool, at a significant cost in time efficiency: therefore this is not permitted. - A fragmentation limit of 100 causes the pool to always use + A fragmentation limit of 1.0 causes the pool to always use temporal fit (unless resources are exhausted). If the objects allocated in the pool have similar lifetime expectancies, this mode will have the best time- and space-efficiency. If the @@ -185,7 +185,7 @@ MVT interface MPS_ARGS_ADD(ARGS, MPS_KEY_MEAN_SIZE, 32); MPS_ARGS_ADD(ARGS, MPS_KEY_MAX_SIZE, 1024); MPS_ARGS_ADD(ARGS, MPS_KEY_MVT_RESERVE_DEPTH, 256); - MPS_ARGS_ADD(ARGS, MPS_KEY_MVT_FRAG_LIMIT, 50); + MPS_ARGS_ADD(ARGS, MPS_KEY_MVT_FRAG_LIMIT, 0.5); MPS_ARGS_DONE(args); res = mps_pool_create_k(&pool, arena, mps_class_mvt(), args); } MPS_ARGS_END(args); @@ -203,6 +203,12 @@ MVT interface mps_count_t reserve_depth, mps_count_t fragmentation_limit) + .. note:: + + The fragmentation_limit is a percentage from 0 to 100 + inclusive when passed to :c:func:`mps_pool_create`, not a + double from 0.0 to 1.0 as in :c:func:`mps_pool_create_k`. + .. index:: pair: MVT; introspection