2016-02-20 12:09:31 +08:00
|
|
|
#include "test/jemalloc_test.h"
|
|
|
|
|
2017-04-20 04:39:33 +08:00
|
|
|
#include "jemalloc/internal/ticker.h"
|
|
|
|
|
2016-10-11 13:15:10 +08:00
|
|
|
static nstime_monotonic_t *nstime_monotonic_orig;
|
2016-02-22 03:25:02 +08:00
|
|
|
static nstime_update_t *nstime_update_orig;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
|
|
|
static unsigned nupdates_mock;
|
2016-02-22 03:25:02 +08:00
|
|
|
static nstime_t time_mock;
|
2016-10-12 06:28:43 +08:00
|
|
|
static bool monotonic_mock;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-03-18 03:42:33 +08:00
|
|
|
static bool
|
|
|
|
check_background_thread_enabled(void) {
|
|
|
|
bool enabled;
|
|
|
|
size_t sz = sizeof(bool);
|
|
|
|
int ret = mallctl("background_thread", (void *)&enabled, &sz, NULL,0);
|
|
|
|
if (ret == ENOENT) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(ret, 0, "Unexpected mallctl error");
|
2017-03-18 03:42:33 +08:00
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
2016-10-11 13:15:10 +08:00
|
|
|
static bool
|
2017-01-16 08:56:30 +08:00
|
|
|
nstime_monotonic_mock(void) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return monotonic_mock;
|
2016-10-11 13:15:10 +08:00
|
|
|
}
|
|
|
|
|
2020-06-02 21:42:44 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
nstime_update_mock(nstime_t *time) {
|
2016-02-20 12:09:31 +08:00
|
|
|
nupdates_mock++;
|
2017-01-16 08:56:30 +08:00
|
|
|
if (monotonic_mock) {
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_copy(time, &time_mock);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:32:42 +08:00
|
|
|
static unsigned
|
2017-05-18 01:47:00 +08:00
|
|
|
do_arena_create(ssize_t dirty_decay_ms, ssize_t muzzy_decay_ms) {
|
2017-03-03 15:32:42 +08:00
|
|
|
unsigned arena_ind;
|
|
|
|
size_t sz = sizeof(unsigned);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("arenas.create", (void *)&arena_ind, &sz, NULL, 0),
|
2017-03-03 15:32:42 +08:00
|
|
|
0, "Unexpected mallctl() failure");
|
|
|
|
size_t mib[3];
|
|
|
|
size_t miblen = sizeof(mib)/sizeof(size_t);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib("arena.0.dirty_decay_ms", mib, &miblen),
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
0, "Unexpected mallctlnametomib() failure");
|
|
|
|
mib[1] = (size_t)arena_ind;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, NULL, NULL,
|
2017-05-18 01:47:00 +08:00
|
|
|
(void *)&dirty_decay_ms, sizeof(dirty_decay_ms)), 0,
|
|
|
|
"Unexpected mallctlbymib() failure");
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib("arena.0.muzzy_decay_ms", mib, &miblen),
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
0, "Unexpected mallctlnametomib() failure");
|
2017-03-03 15:32:42 +08:00
|
|
|
mib[1] = (size_t)arena_ind;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, NULL, NULL,
|
2017-05-18 01:47:00 +08:00
|
|
|
(void *)&muzzy_decay_ms, sizeof(muzzy_decay_ms)), 0,
|
|
|
|
"Unexpected mallctlbymib() failure");
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
|
2017-03-03 15:32:42 +08:00
|
|
|
return arena_ind;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_arena_destroy(unsigned arena_ind) {
|
|
|
|
size_t mib[3];
|
|
|
|
size_t miblen = sizeof(mib)/sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib("arena.0.destroy", mib, &miblen), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlnametomib() failure");
|
|
|
|
mib[1] = (size_t)arena_ind;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, NULL, NULL, NULL, 0), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlbymib() failure");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
do_epoch(void) {
|
|
|
|
uint64_t epoch = 1;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("epoch", NULL, NULL, (void *)&epoch, sizeof(epoch)),
|
2017-03-03 15:32:42 +08:00
|
|
|
0, "Unexpected mallctl() failure");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
do_purge(unsigned arena_ind) {
|
|
|
|
size_t mib[3];
|
|
|
|
size_t miblen = sizeof(mib)/sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib("arena.0.purge", mib, &miblen), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlnametomib() failure");
|
|
|
|
mib[1] = (size_t)arena_ind;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, NULL, NULL, NULL, 0), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlbymib() failure");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
do_decay(unsigned arena_ind) {
|
|
|
|
size_t mib[3];
|
|
|
|
size_t miblen = sizeof(mib)/sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib("arena.0.decay", mib, &miblen), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlnametomib() failure");
|
|
|
|
mib[1] = (size_t)arena_ind;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, NULL, NULL, NULL, 0), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlbymib() failure");
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
get_arena_npurge_impl(const char *mibname, unsigned arena_ind) {
|
2017-03-03 15:32:42 +08:00
|
|
|
size_t mib[4];
|
|
|
|
size_t miblen = sizeof(mib)/sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib(mibname, mib, &miblen), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlnametomib() failure");
|
|
|
|
mib[2] = (size_t)arena_ind;
|
|
|
|
uint64_t npurge = 0;
|
|
|
|
size_t sz = sizeof(npurge);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, (void *)&npurge, &sz, NULL, 0),
|
2017-03-03 15:32:42 +08:00
|
|
|
config_stats ? 0 : ENOENT, "Unexpected mallctlbymib() failure");
|
|
|
|
return npurge;
|
|
|
|
}
|
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
static uint64_t
|
|
|
|
get_arena_dirty_npurge(unsigned arena_ind) {
|
|
|
|
do_epoch();
|
|
|
|
return get_arena_npurge_impl("stats.arenas.0.dirty_npurge", arena_ind);
|
|
|
|
}
|
|
|
|
|
2019-03-13 06:02:41 +08:00
|
|
|
static uint64_t
|
|
|
|
get_arena_dirty_purged(unsigned arena_ind) {
|
|
|
|
do_epoch();
|
|
|
|
return get_arena_npurge_impl("stats.arenas.0.dirty_purged", arena_ind);
|
|
|
|
}
|
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
static uint64_t
|
|
|
|
get_arena_muzzy_npurge(unsigned arena_ind) {
|
|
|
|
do_epoch();
|
|
|
|
return get_arena_npurge_impl("stats.arenas.0.muzzy_npurge", arena_ind);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
get_arena_npurge(unsigned arena_ind) {
|
|
|
|
do_epoch();
|
|
|
|
return get_arena_npurge_impl("stats.arenas.0.dirty_npurge", arena_ind) +
|
|
|
|
get_arena_npurge_impl("stats.arenas.0.muzzy_npurge", arena_ind);
|
|
|
|
}
|
|
|
|
|
2017-03-03 15:32:42 +08:00
|
|
|
static size_t
|
|
|
|
get_arena_pdirty(unsigned arena_ind) {
|
|
|
|
do_epoch();
|
|
|
|
size_t mib[4];
|
|
|
|
size_t miblen = sizeof(mib)/sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib("stats.arenas.0.pdirty", mib, &miblen), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlnametomib() failure");
|
|
|
|
mib[2] = (size_t)arena_ind;
|
|
|
|
size_t pdirty;
|
|
|
|
size_t sz = sizeof(pdirty);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, (void *)&pdirty, &sz, NULL, 0), 0,
|
2017-03-03 15:32:42 +08:00
|
|
|
"Unexpected mallctlbymib() failure");
|
|
|
|
return pdirty;
|
|
|
|
}
|
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
static size_t
|
|
|
|
get_arena_pmuzzy(unsigned arena_ind) {
|
|
|
|
do_epoch();
|
|
|
|
size_t mib[4];
|
|
|
|
size_t miblen = sizeof(mib)/sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlnametomib("stats.arenas.0.pmuzzy", mib, &miblen), 0,
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
"Unexpected mallctlnametomib() failure");
|
|
|
|
mib[2] = (size_t)arena_ind;
|
|
|
|
size_t pmuzzy;
|
|
|
|
size_t sz = sizeof(pmuzzy);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctlbymib(mib, miblen, (void *)&pmuzzy, &sz, NULL, 0), 0,
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
"Unexpected mallctlbymib() failure");
|
|
|
|
return pmuzzy;
|
|
|
|
}
|
|
|
|
|
2017-03-03 15:32:42 +08:00
|
|
|
static void *
|
|
|
|
do_mallocx(size_t size, int flags) {
|
|
|
|
void *p = mallocx(size, flags);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected mallocx() failure");
|
2017-03-03 15:32:42 +08:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
generate_dirty(unsigned arena_ind, size_t size) {
|
|
|
|
int flags = MALLOCX_ARENA(arena_ind) | MALLOCX_TCACHE_NONE;
|
|
|
|
void *p = do_mallocx(size, flags);
|
|
|
|
dallocx(p, flags);
|
|
|
|
}
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
TEST_BEGIN(test_decay_ticks) {
|
2017-03-18 03:42:33 +08:00
|
|
|
test_skip_if(check_background_thread_enabled());
|
2020-08-15 04:36:41 +08:00
|
|
|
test_skip_if(opt_hpa);
|
2017-03-18 03:42:33 +08:00
|
|
|
|
2021-02-01 04:50:55 +08:00
|
|
|
ticker_geom_t *decay_ticker;
|
2017-03-07 04:51:41 +08:00
|
|
|
unsigned tick0, tick1, arena_ind;
|
2016-06-01 05:50:21 +08:00
|
|
|
size_t sz, large0;
|
2016-02-20 12:09:31 +08:00
|
|
|
void *p;
|
|
|
|
|
|
|
|
sz = sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("arenas.lextent.0.size", (void *)&large0, &sz, NULL,
|
2016-10-28 12:31:25 +08:00
|
|
|
0), 0, "Unexpected mallctl failure");
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-03-07 04:51:41 +08:00
|
|
|
/* Set up a manually managed arena for test. */
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
arena_ind = do_arena_create(0, 0);
|
2017-03-07 04:51:41 +08:00
|
|
|
|
|
|
|
/* Migrate to the new arena, and get the ticker. */
|
|
|
|
unsigned old_arena_ind;
|
|
|
|
size_t sz_arena_ind = sizeof(old_arena_ind);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("thread.arena", (void *)&old_arena_ind,
|
2017-04-21 08:21:37 +08:00
|
|
|
&sz_arena_ind, (void *)&arena_ind, sizeof(arena_ind)), 0,
|
|
|
|
"Unexpected mallctl() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
decay_ticker = tsd_arena_decay_tickerp_get(tsd_fetch());
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(decay_ticker,
|
2017-03-07 04:51:41 +08:00
|
|
|
"Unexpected failure getting decay ticker");
|
|
|
|
|
2016-02-21 01:02:49 +08:00
|
|
|
/*
|
2016-06-01 05:50:21 +08:00
|
|
|
* Test the standard APIs using a large size class, since we can't
|
2016-05-28 15:17:28 +08:00
|
|
|
* control tcache interactions for small size classes (except by
|
|
|
|
* completely disabling tcache for the entire test program).
|
2016-02-21 01:02:49 +08:00
|
|
|
*/
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
/* malloc(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-06-01 05:50:21 +08:00
|
|
|
p = malloc(large0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected malloc() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0, "Expected ticker to tick during malloc()");
|
2016-02-20 12:09:31 +08:00
|
|
|
/* free(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-02-20 12:09:31 +08:00
|
|
|
free(p);
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0, "Expected ticker to tick during free()");
|
2016-02-20 12:09:31 +08:00
|
|
|
|
|
|
|
/* calloc(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-06-01 05:50:21 +08:00
|
|
|
p = calloc(1, large0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected calloc() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0, "Expected ticker to tick during calloc()");
|
2016-02-20 12:09:31 +08:00
|
|
|
free(p);
|
|
|
|
|
|
|
|
/* posix_memalign(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(posix_memalign(&p, sizeof(size_t), large0), 0,
|
2016-02-20 12:09:31 +08:00
|
|
|
"Unexpected posix_memalign() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2016-02-20 12:09:31 +08:00
|
|
|
"Expected ticker to tick during posix_memalign()");
|
|
|
|
free(p);
|
|
|
|
|
|
|
|
/* aligned_alloc(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-06-01 05:50:21 +08:00
|
|
|
p = aligned_alloc(sizeof(size_t), large0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected aligned_alloc() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2016-02-20 12:09:31 +08:00
|
|
|
"Expected ticker to tick during aligned_alloc()");
|
|
|
|
free(p);
|
|
|
|
|
|
|
|
/* realloc(). */
|
|
|
|
/* Allocate. */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-06-01 05:50:21 +08:00
|
|
|
p = realloc(NULL, large0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected realloc() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()");
|
2016-02-20 12:09:31 +08:00
|
|
|
/* Reallocate. */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-06-01 05:50:21 +08:00
|
|
|
p = realloc(p, large0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected realloc() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()");
|
2016-02-20 12:09:31 +08:00
|
|
|
/* Deallocate. */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-02-20 12:09:31 +08:00
|
|
|
realloc(p, 0);
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()");
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2016-02-21 01:02:49 +08:00
|
|
|
/*
|
2016-06-01 05:50:21 +08:00
|
|
|
* Test the *allocx() APIs using large and small size classes, with
|
2016-05-28 15:17:28 +08:00
|
|
|
* tcache explicitly disabled.
|
2016-02-21 01:02:49 +08:00
|
|
|
*/
|
|
|
|
{
|
|
|
|
unsigned i;
|
2016-05-28 15:17:28 +08:00
|
|
|
size_t allocx_sizes[2];
|
2016-06-01 05:50:21 +08:00
|
|
|
allocx_sizes[0] = large0;
|
2016-05-28 15:17:28 +08:00
|
|
|
allocx_sizes[1] = 1;
|
2016-02-21 01:02:49 +08:00
|
|
|
|
|
|
|
for (i = 0; i < sizeof(allocx_sizes) / sizeof(size_t); i++) {
|
|
|
|
sz = allocx_sizes[i];
|
|
|
|
|
|
|
|
/* mallocx(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-02-21 01:02:49 +08:00
|
|
|
p = mallocx(sz, MALLOCX_TCACHE_NONE);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected mallocx() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2016-02-21 01:02:49 +08:00
|
|
|
"Expected ticker to tick during mallocx() (sz=%zu)",
|
|
|
|
sz);
|
|
|
|
/* rallocx(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-02-21 01:02:49 +08:00
|
|
|
p = rallocx(p, sz, MALLOCX_TCACHE_NONE);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected rallocx() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2016-02-21 01:02:49 +08:00
|
|
|
"Expected ticker to tick during rallocx() (sz=%zu)",
|
|
|
|
sz);
|
|
|
|
/* xallocx(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-02-21 01:02:49 +08:00
|
|
|
xallocx(p, sz, 0, MALLOCX_TCACHE_NONE);
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2016-02-21 01:02:49 +08:00
|
|
|
"Expected ticker to tick during xallocx() (sz=%zu)",
|
|
|
|
sz);
|
|
|
|
/* dallocx(). */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-02-21 01:02:49 +08:00
|
|
|
dallocx(p, MALLOCX_TCACHE_NONE);
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2016-02-21 01:02:49 +08:00
|
|
|
"Expected ticker to tick during dallocx() (sz=%zu)",
|
|
|
|
sz);
|
|
|
|
/* sdallocx(). */
|
|
|
|
p = mallocx(sz, MALLOCX_TCACHE_NONE);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected mallocx() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2016-02-21 01:02:49 +08:00
|
|
|
sdallocx(p, sz, MALLOCX_TCACHE_NONE);
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2016-02-21 01:02:49 +08:00
|
|
|
"Expected ticker to tick during sdallocx() "
|
|
|
|
"(sz=%zu)", sz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-06-01 05:50:21 +08:00
|
|
|
* Test tcache fill/flush interactions for large and small size classes,
|
2016-02-21 01:02:49 +08:00
|
|
|
* using an explicit tcache.
|
|
|
|
*/
|
2017-04-21 08:21:37 +08:00
|
|
|
unsigned tcache_ind, i;
|
|
|
|
size_t tcache_sizes[2];
|
|
|
|
tcache_sizes[0] = large0;
|
|
|
|
tcache_sizes[1] = 1;
|
|
|
|
|
|
|
|
size_t tcache_max, sz_tcache_max;
|
|
|
|
sz_tcache_max = sizeof(tcache_max);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("arenas.tcache_max", (void *)&tcache_max,
|
2017-04-21 08:21:37 +08:00
|
|
|
&sz_tcache_max, NULL, 0), 0, "Unexpected mallctl() failure");
|
|
|
|
|
|
|
|
sz = sizeof(unsigned);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("tcache.create", (void *)&tcache_ind, &sz,
|
2017-04-21 08:21:37 +08:00
|
|
|
NULL, 0), 0, "Unexpected mallctl failure");
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(tcache_sizes) / sizeof(size_t); i++) {
|
|
|
|
sz = tcache_sizes[i];
|
|
|
|
|
|
|
|
/* tcache fill. */
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2017-04-21 08:21:37 +08:00
|
|
|
p = mallocx(sz, MALLOCX_TCACHE(tcache_ind));
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(p, "Unexpected mallocx() failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
2017-04-21 08:21:37 +08:00
|
|
|
"Expected ticker to tick during tcache fill "
|
|
|
|
"(sz=%zu)", sz);
|
|
|
|
/* tcache flush. */
|
|
|
|
dallocx(p, MALLOCX_TCACHE(tcache_ind));
|
2021-02-01 04:50:55 +08:00
|
|
|
tick0 = ticker_geom_read(decay_ticker);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("tcache.flush", NULL, NULL,
|
2017-04-21 08:21:37 +08:00
|
|
|
(void *)&tcache_ind, sizeof(unsigned)), 0,
|
|
|
|
"Unexpected mallctl failure");
|
2021-02-01 04:50:55 +08:00
|
|
|
tick1 = ticker_geom_read(decay_ticker);
|
2017-04-21 08:21:37 +08:00
|
|
|
|
|
|
|
/* Will only tick if it's in tcache. */
|
2021-02-01 04:50:55 +08:00
|
|
|
expect_u32_ne(tick1, tick0,
|
|
|
|
"Expected ticker to tick during tcache flush (sz=%zu)", sz);
|
2016-02-21 01:02:49 +08:00
|
|
|
}
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
static void
|
|
|
|
decay_ticker_helper(unsigned arena_ind, int flags, bool dirty, ssize_t dt,
|
|
|
|
uint64_t dirty_npurge0, uint64_t muzzy_npurge0, bool terminate_asap) {
|
2017-03-03 15:32:42 +08:00
|
|
|
#define NINTERVALS 101
|
2017-05-18 01:47:00 +08:00
|
|
|
nstime_t time, update_interval, decay_ms, deadline;
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
|
2019-12-17 04:41:06 +08:00
|
|
|
nstime_init_update(&time);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
|
2017-05-18 01:47:00 +08:00
|
|
|
nstime_init2(&decay_ms, dt, 0);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
nstime_copy(&deadline, &time);
|
2017-05-18 01:47:00 +08:00
|
|
|
nstime_add(&deadline, &decay_ms);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
|
|
|
|
nstime_init2(&update_interval, dt, 0);
|
|
|
|
nstime_idivide(&update_interval, NINTERVALS);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Keep q's slab from being deallocated during the looping below. If a
|
|
|
|
* cached slab were to repeatedly come and go during looping, it could
|
|
|
|
* prevent the decay backlog ever becoming empty.
|
|
|
|
*/
|
|
|
|
void *p = do_mallocx(1, flags);
|
|
|
|
uint64_t dirty_npurge1, muzzy_npurge1;
|
|
|
|
do {
|
2021-02-01 04:50:55 +08:00
|
|
|
for (unsigned i = 0; i < ARENA_DECAY_NTICKS_PER_UPDATE / 2;
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
i++) {
|
|
|
|
void *q = do_mallocx(1, flags);
|
|
|
|
dallocx(q, flags);
|
|
|
|
}
|
|
|
|
dirty_npurge1 = get_arena_dirty_npurge(arena_ind);
|
|
|
|
muzzy_npurge1 = get_arena_muzzy_npurge(arena_ind);
|
|
|
|
|
|
|
|
nstime_add(&time_mock, &update_interval);
|
|
|
|
nstime_update(&time);
|
|
|
|
} while (nstime_compare(&time, &deadline) <= 0 && ((dirty_npurge1 ==
|
|
|
|
dirty_npurge0 && muzzy_npurge1 == muzzy_npurge0) ||
|
|
|
|
!terminate_asap));
|
|
|
|
dallocx(p, flags);
|
|
|
|
|
|
|
|
if (config_stats) {
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u64_gt(dirty_npurge1 + muzzy_npurge1, dirty_npurge0 +
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
muzzy_npurge0, "Expected purging to occur");
|
|
|
|
}
|
|
|
|
#undef NINTERVALS
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_BEGIN(test_decay_ticker) {
|
2017-03-18 03:42:33 +08:00
|
|
|
test_skip_if(check_background_thread_enabled());
|
2020-08-15 04:36:41 +08:00
|
|
|
test_skip_if(opt_hpa);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
#define NPS 2048
|
2017-05-18 01:47:00 +08:00
|
|
|
ssize_t ddt = opt_dirty_decay_ms;
|
|
|
|
ssize_t mdt = opt_muzzy_decay_ms;
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
unsigned arena_ind = do_arena_create(ddt, mdt);
|
2017-03-03 15:32:42 +08:00
|
|
|
int flags = (MALLOCX_ARENA(arena_ind) | MALLOCX_TCACHE_NONE);
|
2016-02-20 12:09:31 +08:00
|
|
|
void *ps[NPS];
|
|
|
|
|
|
|
|
/*
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
* Allocate a bunch of large objects, pause the clock, deallocate every
|
|
|
|
* other object (to fragment virtual memory), restore the clock, then
|
|
|
|
* [md]allocx() in a tight loop while advancing time rapidly to verify
|
|
|
|
* the ticker triggers purging.
|
2016-02-20 12:09:31 +08:00
|
|
|
*/
|
2020-10-22 10:47:57 +08:00
|
|
|
size_t large;
|
2017-04-21 08:21:37 +08:00
|
|
|
size_t sz = sizeof(size_t);
|
2020-10-22 10:47:57 +08:00
|
|
|
expect_d_eq(mallctl("arenas.lextent.0.size", (void *)&large, &sz, NULL,
|
2017-04-21 08:21:37 +08:00
|
|
|
0), 0, "Unexpected mallctl failure");
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-03-03 15:32:42 +08:00
|
|
|
do_purge(arena_ind);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
uint64_t dirty_npurge0 = get_arena_dirty_npurge(arena_ind);
|
|
|
|
uint64_t muzzy_npurge0 = get_arena_muzzy_npurge(arena_ind);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-03-03 15:32:42 +08:00
|
|
|
for (unsigned i = 0; i < NPS; i++) {
|
|
|
|
ps[i] = do_mallocx(large, flags);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
nupdates_mock = 0;
|
2019-12-17 04:41:06 +08:00
|
|
|
nstime_init_update(&time_mock);
|
2016-10-12 06:28:43 +08:00
|
|
|
monotonic_mock = true;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2016-10-12 06:28:43 +08:00
|
|
|
nstime_monotonic_orig = nstime_monotonic;
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_update_orig = nstime_update;
|
2016-10-12 06:28:43 +08:00
|
|
|
nstime_monotonic = nstime_monotonic_mock;
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_update = nstime_update_mock;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
for (unsigned i = 0; i < NPS; i += 2) {
|
2016-02-20 12:09:31 +08:00
|
|
|
dallocx(ps[i], flags);
|
2017-03-03 15:32:42 +08:00
|
|
|
unsigned nupdates0 = nupdates_mock;
|
|
|
|
do_decay(arena_ind);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u_gt(nupdates_mock, nupdates0,
|
2016-02-22 03:25:02 +08:00
|
|
|
"Expected nstime_update() to be called");
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
decay_ticker_helper(arena_ind, flags, true, ddt, dirty_npurge0,
|
|
|
|
muzzy_npurge0, true);
|
|
|
|
decay_ticker_helper(arena_ind, flags, false, ddt+mdt, dirty_npurge0,
|
|
|
|
muzzy_npurge0, false);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
do_arena_destroy(arena_ind);
|
2017-03-03 15:32:42 +08:00
|
|
|
|
|
|
|
nstime_monotonic = nstime_monotonic_orig;
|
|
|
|
nstime_update = nstime_update_orig;
|
2016-02-20 12:09:31 +08:00
|
|
|
#undef NPS
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
TEST_BEGIN(test_decay_nonmonotonic) {
|
2017-03-18 03:42:33 +08:00
|
|
|
test_skip_if(check_background_thread_enabled());
|
2020-08-15 04:36:41 +08:00
|
|
|
test_skip_if(opt_hpa);
|
2017-01-20 13:41:41 +08:00
|
|
|
#define NPS (SMOOTHSTEP_NSTEPS + 1)
|
2016-02-20 12:09:31 +08:00
|
|
|
int flags = (MALLOCX_ARENA(0) | MALLOCX_TCACHE_NONE);
|
|
|
|
void *ps[NPS];
|
2016-02-28 12:38:29 +08:00
|
|
|
uint64_t npurge0 = 0;
|
|
|
|
uint64_t npurge1 = 0;
|
2016-06-01 05:50:21 +08:00
|
|
|
size_t sz, large0;
|
2016-02-20 12:09:31 +08:00
|
|
|
unsigned i, nupdates0;
|
|
|
|
|
|
|
|
sz = sizeof(size_t);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("arenas.lextent.0.size", (void *)&large0, &sz, NULL,
|
2016-10-28 12:31:25 +08:00
|
|
|
0), 0, "Unexpected mallctl failure");
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
|
2016-02-20 12:09:31 +08:00
|
|
|
"Unexpected mallctl failure");
|
2017-03-03 15:32:42 +08:00
|
|
|
do_epoch();
|
2016-02-20 12:09:31 +08:00
|
|
|
sz = sizeof(uint64_t);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
npurge0 = get_arena_npurge(0);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
|
|
|
nupdates_mock = 0;
|
2019-12-17 04:41:06 +08:00
|
|
|
nstime_init_update(&time_mock);
|
2016-10-12 06:28:43 +08:00
|
|
|
monotonic_mock = false;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2016-10-11 13:15:10 +08:00
|
|
|
nstime_monotonic_orig = nstime_monotonic;
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_update_orig = nstime_update;
|
2016-10-11 13:15:10 +08:00
|
|
|
nstime_monotonic = nstime_monotonic_mock;
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_update = nstime_update_mock;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
|
|
|
for (i = 0; i < NPS; i++) {
|
2016-06-01 05:50:21 +08:00
|
|
|
ps[i] = mallocx(large0, flags);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_ptr_not_null(ps[i], "Unexpected mallocx() failure");
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < NPS; i++) {
|
|
|
|
dallocx(ps[i], flags);
|
|
|
|
nupdates0 = nupdates_mock;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_d_eq(mallctl("arena.0.decay", NULL, NULL, NULL, 0), 0,
|
2016-02-20 12:09:31 +08:00
|
|
|
"Unexpected arena.0.decay failure");
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u_gt(nupdates_mock, nupdates0,
|
2016-02-22 03:25:02 +08:00
|
|
|
"Expected nstime_update() to be called");
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2017-03-03 15:32:42 +08:00
|
|
|
do_epoch();
|
2016-02-20 12:09:31 +08:00
|
|
|
sz = sizeof(uint64_t);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
npurge1 = get_arena_npurge(0);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_u64_eq(npurge0, npurge1, "Unexpected purging occurred");
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2016-10-11 13:15:10 +08:00
|
|
|
nstime_monotonic = nstime_monotonic_orig;
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_update = nstime_update_orig;
|
2016-02-20 12:09:31 +08:00
|
|
|
#undef NPS
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2017-03-02 07:25:48 +08:00
|
|
|
TEST_BEGIN(test_decay_now) {
|
2017-03-18 03:42:33 +08:00
|
|
|
test_skip_if(check_background_thread_enabled());
|
2020-08-15 04:36:41 +08:00
|
|
|
test_skip_if(opt_hpa);
|
2017-03-18 03:42:33 +08:00
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
unsigned arena_ind = do_arena_create(0, 0);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(get_arena_pdirty(arena_ind), 0, "Unexpected dirty pages");
|
|
|
|
expect_zu_eq(get_arena_pmuzzy(arena_ind), 0, "Unexpected muzzy pages");
|
2017-03-02 07:25:48 +08:00
|
|
|
size_t sizes[] = {16, PAGE<<2, HUGEPAGE<<2};
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
/* Verify that dirty/muzzy pages never linger after deallocation. */
|
2017-03-02 07:25:48 +08:00
|
|
|
for (unsigned i = 0; i < sizeof(sizes)/sizeof(size_t); i++) {
|
|
|
|
size_t size = sizes[i];
|
|
|
|
generate_dirty(arena_ind, size);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(get_arena_pdirty(arena_ind), 0,
|
2017-03-02 07:25:48 +08:00
|
|
|
"Unexpected dirty pages");
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(get_arena_pmuzzy(arena_ind), 0,
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
"Unexpected muzzy pages");
|
2017-03-02 07:25:48 +08:00
|
|
|
}
|
|
|
|
do_arena_destroy(arena_ind);
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
|
|
|
TEST_BEGIN(test_decay_never) {
|
2019-03-13 06:02:41 +08:00
|
|
|
test_skip_if(check_background_thread_enabled() || !config_stats);
|
2020-08-15 04:36:41 +08:00
|
|
|
test_skip_if(opt_hpa);
|
2017-03-18 03:42:33 +08:00
|
|
|
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
unsigned arena_ind = do_arena_create(-1, -1);
|
2017-03-02 07:25:48 +08:00
|
|
|
int flags = MALLOCX_ARENA(arena_ind) | MALLOCX_TCACHE_NONE;
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(get_arena_pdirty(arena_ind), 0, "Unexpected dirty pages");
|
|
|
|
expect_zu_eq(get_arena_pmuzzy(arena_ind), 0, "Unexpected muzzy pages");
|
2017-03-02 07:25:48 +08:00
|
|
|
size_t sizes[] = {16, PAGE<<2, HUGEPAGE<<2};
|
|
|
|
void *ptrs[sizeof(sizes)/sizeof(size_t)];
|
|
|
|
for (unsigned i = 0; i < sizeof(sizes)/sizeof(size_t); i++) {
|
|
|
|
ptrs[i] = do_mallocx(sizes[i], flags);
|
|
|
|
}
|
|
|
|
/* Verify that each deallocation generates additional dirty pages. */
|
|
|
|
size_t pdirty_prev = get_arena_pdirty(arena_ind);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
size_t pmuzzy_prev = get_arena_pmuzzy(arena_ind);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(pdirty_prev, 0, "Unexpected dirty pages");
|
|
|
|
expect_zu_eq(pmuzzy_prev, 0, "Unexpected muzzy pages");
|
2017-03-02 07:25:48 +08:00
|
|
|
for (unsigned i = 0; i < sizeof(sizes)/sizeof(size_t); i++) {
|
|
|
|
dallocx(ptrs[i], flags);
|
|
|
|
size_t pdirty = get_arena_pdirty(arena_ind);
|
Implement two-phase decay-based purging.
Split decay-based purging into two phases, the first of which uses lazy
purging to convert dirty pages to "muzzy", and the second of which uses
forced purging, decommit, or unmapping to convert pages to clean or
destroy them altogether. Not all operating systems support lazy
purging, yet the application may provide extent hooks that implement
lazy purging, so care must be taken to dynamically omit the first phase
when necessary.
The mallctl interfaces change as follows:
- opt.decay_time --> opt.{dirty,muzzy}_decay_time
- arena.<i>.decay_time --> arena.<i>.{dirty,muzzy}_decay_time
- arenas.decay_time --> arenas.{dirty,muzzy}_decay_time
- stats.arenas.<i>.pdirty --> stats.arenas.<i>.p{dirty,muzzy}
- stats.arenas.<i>.{npurge,nmadvise,purged} -->
stats.arenas.<i>.{dirty,muzzy}_{npurge,nmadvise,purged}
This resolves #521.
2017-03-09 14:42:57 +08:00
|
|
|
size_t pmuzzy = get_arena_pmuzzy(arena_ind);
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_gt(pdirty + (size_t)get_arena_dirty_purged(arena_ind),
|
2019-03-13 06:02:41 +08:00
|
|
|
pdirty_prev, "Expected dirty pages to increase.");
|
2020-02-19 06:39:06 +08:00
|
|
|
expect_zu_eq(pmuzzy, 0, "Unexpected muzzy pages");
|
2017-03-02 07:25:48 +08:00
|
|
|
pdirty_prev = pdirty;
|
|
|
|
}
|
|
|
|
do_arena_destroy(arena_ind);
|
|
|
|
}
|
|
|
|
TEST_END
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
int
|
2017-01-16 08:56:30 +08:00
|
|
|
main(void) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return test(
|
2016-02-20 12:09:31 +08:00
|
|
|
test_decay_ticks,
|
|
|
|
test_decay_ticker,
|
2017-03-02 07:25:48 +08:00
|
|
|
test_decay_nonmonotonic,
|
|
|
|
test_decay_now,
|
|
|
|
test_decay_never);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|