Skip to content

Commit

Permalink
Try to decommit new chunks.
Browse files Browse the repository at this point in the history
Always leave decommit disabled on non-Windows systems.
  • Loading branch information
jasone committed Aug 12, 2015
1 parent 1f27abc commit 03bf5b6
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 15 deletions.
3 changes: 2 additions & 1 deletion src/chunk_dss.c
Expand Up @@ -145,7 +145,8 @@ chunk_alloc_dss(arena_t *arena, void *new_addr, size_t size, size_t alignment,
ret, size);
memset(ret, 0, size);
}
*commit = true;
if (!*commit)
*commit = pages_decommit(ret, size);
return (ret);
}
} while (dss_prev != (void *)-1);
Expand Down
6 changes: 4 additions & 2 deletions src/chunk_mmap.c
Expand Up @@ -24,7 +24,8 @@ chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit)

assert(ret != NULL);
*zero = true;
*commit = true;
if (!*commit)
*commit = pages_decommit(ret, size);
return (ret);
}

Expand Down Expand Up @@ -61,7 +62,8 @@ chunk_alloc_mmap(size_t size, size_t alignment, bool *zero, bool *commit)

assert(ret != NULL);
*zero = true;
*commit = true;
if (!*commit)
*commit = pages_decommit(ret, size);
return (ret);
}

Expand Down
8 changes: 7 additions & 1 deletion src/pages.c
Expand Up @@ -102,7 +102,13 @@ pages_commit_impl(void *addr, size_t size, bool commit)
{

#ifndef _WIN32
if (config_debug) {
/*
* The following decommit/commit implementation is functional, but
* always disabled because it doesn't add value beyong improved
* debugging (at the cost of extra system calls) on systems that
* overcommit.
*/
if (false) {
int prot = commit ? (PROT_READ | PROT_WRITE) : PROT_NONE;
void *result = mmap(addr, size, prot, MAP_PRIVATE | MAP_ANON |
MAP_FIXED, -1, 0);
Expand Down
25 changes: 14 additions & 11 deletions test/integration/chunk.c
Expand Up @@ -49,25 +49,30 @@ bool
chunk_commit(void *chunk, size_t size, size_t offset, size_t length,
unsigned arena_ind)
{
bool err;

TRACE_HOOK("%s(chunk=%p, size=%zu, offset=%zu, length=%zu, "
"arena_ind=%u)\n", __func__, chunk, size, offset, length,
arena_ind);
did_commit = true;
memset((void *)((uintptr_t)chunk + offset), 0, length);
return (false);
err = old_hooks.commit(chunk, size, offset, length, arena_ind);
did_commit = !err;
return (err);
}

bool
chunk_decommit(void *chunk, size_t size, size_t offset, size_t length,
unsigned arena_ind)
{
bool err;

TRACE_HOOK("%s(chunk=%p, size=%zu, offset=%zu, length=%zu, "
"arena_ind=%u)\n", __func__, chunk, size, offset, length,
arena_ind);
did_decommit = true;
return (!do_decommit);
if (!do_decommit)
return (true);
err = old_hooks.decommit(chunk, size, offset, length, arena_ind);
did_decommit = !err;
return (err);
}

bool
Expand Down Expand Up @@ -167,7 +172,7 @@ TEST_BEGIN(test_chunk)
assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
"Unexpected arena.0.purge error");
assert_true(did_dalloc, "Expected dalloc");
assert_true(did_decommit, "Expected decommit");
assert_false(did_decommit, "Unexpected decommit");
assert_true(did_purge, "Expected purge");
dallocx(p, 0);
do_dalloc = true;
Expand All @@ -185,12 +190,11 @@ TEST_BEGIN(test_chunk)
"Unexpected xallocx() failure");
assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
"Unexpected arena.0.purge error");
assert_true(did_decommit, "Expected decommit");
assert_true(did_split, "Expected split");
assert_zu_eq(xallocx(p, huge0 * 2, 0, 0), huge0 * 2,
"Unexpected xallocx() failure");
assert_true(did_commit, "Expected commit");
assert_true(did_commit, "Expected merge");
assert_b_eq(did_decommit, did_commit, "Expected decommit/commit match");
assert_true(did_merge, "Expected merge");
dallocx(p, 0);
do_dalloc = true;
do_decommit = false;
Expand Down Expand Up @@ -222,11 +226,10 @@ TEST_BEGIN(test_chunk)
"Unexpected xallocx() failure");
assert_d_eq(mallctl("arena.0.purge", NULL, NULL, NULL, 0), 0,
"Unexpected arena.0.purge error");
assert_true(did_decommit, "Expected decommit");
did_commit = false;
assert_zu_eq(xallocx(p, large1, 0, 0), large1,
"Unexpected xallocx() failure");
assert_true(did_commit, "Expected commit");
assert_b_eq(did_decommit, did_commit, "Expected decommit/commit match");
dallocx(p, 0);
do_decommit = false;

Expand Down

0 comments on commit 03bf5b6

Please sign in to comment.