2014-05-08 20:14:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-03-02 01:40:59 +01:00
|
|
|
#include <errno.h>
|
2017-05-16 00:50:19 +02:00
|
|
|
#include <malloc.h>
|
2014-06-13 22:57:51 +02:00
|
|
|
#include <sys/param.h>
|
2014-05-08 20:14:03 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2019-03-02 02:59:51 +01:00
|
|
|
#include <private/MallocXmlElem.h>
|
|
|
|
|
2014-05-08 20:14:03 +02:00
|
|
|
#include "jemalloc.h"
|
|
|
|
|
|
|
|
void* je_pvalloc(size_t bytes) {
|
2014-07-10 21:34:23 +02:00
|
|
|
size_t pagesize = getpagesize();
|
2017-10-06 01:39:33 +02:00
|
|
|
size_t size = __BIONIC_ALIGN(bytes, pagesize);
|
2014-06-13 22:57:51 +02:00
|
|
|
if (size < bytes) {
|
2018-08-03 02:31:13 +02:00
|
|
|
return nullptr;
|
2014-06-13 22:57:51 +02:00
|
|
|
}
|
|
|
|
return je_memalign(pagesize, size);
|
2014-05-08 20:14:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef je_memalign
|
|
|
|
#undef je_memalign
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// The man page for memalign says it fails if boundary is not a power of 2,
|
|
|
|
// but this is not true. Both glibc and dlmalloc round up to the next power
|
|
|
|
// of 2, so we'll do the same.
|
|
|
|
void* je_memalign_round_up_boundary(size_t boundary, size_t size) {
|
2014-06-13 22:57:51 +02:00
|
|
|
if (boundary != 0) {
|
|
|
|
if (!powerof2(boundary)) {
|
|
|
|
boundary = BIONIC_ROUND_UP_POWER_OF_2(boundary);
|
2014-05-08 20:14:03 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
boundary = 1;
|
|
|
|
}
|
|
|
|
return je_memalign(boundary, size);
|
|
|
|
}
|
2017-05-16 00:50:19 +02:00
|
|
|
|
2019-03-02 01:40:59 +01:00
|
|
|
#ifdef je_aligned_alloc
|
|
|
|
#undef je_aligned_alloc
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// The aligned_alloc function requires that size is a multiple of alignment.
|
|
|
|
// jemalloc doesn't enforce this, so add enforcement here.
|
|
|
|
void* je_aligned_alloc_wrapper(size_t alignment, size_t size) {
|
|
|
|
if ((size % alignment) != 0) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return je_aligned_alloc(alignment, size);
|
|
|
|
}
|
|
|
|
|
2017-05-16 00:50:19 +02:00
|
|
|
int je_mallopt(int param, int value) {
|
|
|
|
// The only parameter we currently understand is M_DECAY_TIME.
|
|
|
|
if (param == M_DECAY_TIME) {
|
|
|
|
// Only support setting the value to 1 or 0.
|
2018-10-20 01:03:44 +02:00
|
|
|
ssize_t decay_time_ms;
|
2017-05-16 00:50:19 +02:00
|
|
|
if (value) {
|
2018-10-20 01:03:44 +02:00
|
|
|
decay_time_ms = 1000;
|
2017-05-16 00:50:19 +02:00
|
|
|
} else {
|
2018-10-20 01:03:44 +02:00
|
|
|
decay_time_ms = 0;
|
2017-05-16 00:50:19 +02:00
|
|
|
}
|
|
|
|
// First get the total number of arenas.
|
|
|
|
unsigned narenas;
|
|
|
|
size_t sz = sizeof(unsigned);
|
|
|
|
if (je_mallctl("arenas.narenas", &narenas, &sz, nullptr, 0) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the decay time for any arenas that will be created in the future.
|
2018-10-20 01:03:44 +02:00
|
|
|
if (je_mallctl("arenas.dirty_decay_ms", nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (je_mallctl("arenas.muzzy_decay_ms", nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) {
|
2017-05-16 00:50:19 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change the decay on the already existing arenas.
|
|
|
|
char buffer[100];
|
|
|
|
for (unsigned i = 0; i < narenas; i++) {
|
2018-10-20 01:03:44 +02:00
|
|
|
snprintf(buffer, sizeof(buffer), "arena.%d.dirty_decay_ms", i);
|
|
|
|
if (je_mallctl(buffer, nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
snprintf(buffer, sizeof(buffer), "arena.%d.muzzy_decay_ms", i);
|
|
|
|
if (je_mallctl(buffer, nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) {
|
2017-05-16 00:50:19 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
2018-10-16 01:26:56 +02:00
|
|
|
} else if (param == M_PURGE) {
|
2019-05-01 22:26:46 +02:00
|
|
|
// Only clear the current thread cache since there is no easy way to
|
|
|
|
// clear the caches of other threads.
|
|
|
|
// This must be done first so that cleared allocations get purged
|
|
|
|
// in the next calls.
|
2019-07-08 23:54:58 +02:00
|
|
|
// Ignore the return call since this will fail if the tcache is disabled.
|
|
|
|
je_mallctl("thread.tcache.flush", nullptr, nullptr, nullptr, 0);
|
2019-05-01 22:26:46 +02:00
|
|
|
|
2018-10-16 01:26:56 +02:00
|
|
|
unsigned narenas;
|
|
|
|
size_t sz = sizeof(unsigned);
|
|
|
|
if (je_mallctl("arenas.narenas", &narenas, &sz, nullptr, 0) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
char buffer[100];
|
|
|
|
snprintf(buffer, sizeof(buffer), "arena.%u.purge", narenas);
|
|
|
|
if (je_mallctl(buffer, nullptr, nullptr, nullptr, 0) != 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
2017-05-16 00:50:19 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2019-03-02 02:59:51 +01:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2019-05-03 03:33:11 +02:00
|
|
|
size_t je_mallinfo_narenas();
|
|
|
|
size_t je_mallinfo_nbins();
|
|
|
|
struct mallinfo je_mallinfo_arena_info(size_t);
|
|
|
|
struct mallinfo je_mallinfo_bin_info(size_t, size_t);
|
2019-03-02 02:59:51 +01:00
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
int je_malloc_info(int options, FILE* fp) {
|
|
|
|
if (options != 0) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
MallocXmlElem root(fp, "malloc", "version=\"jemalloc-1\"");
|
|
|
|
|
|
|
|
// Dump all of the large allocations in the arenas.
|
2019-05-03 03:33:11 +02:00
|
|
|
for (size_t i = 0; i < je_mallinfo_narenas(); i++) {
|
|
|
|
struct mallinfo mi = je_mallinfo_arena_info(i);
|
2019-03-02 02:59:51 +01:00
|
|
|
if (mi.hblkhd != 0) {
|
|
|
|
MallocXmlElem arena_elem(fp, "heap", "nr=\"%d\"", i);
|
|
|
|
{
|
|
|
|
MallocXmlElem(fp, "allocated-large").Contents("%zu", mi.ordblks);
|
|
|
|
MallocXmlElem(fp, "allocated-huge").Contents("%zu", mi.uordblks);
|
|
|
|
MallocXmlElem(fp, "allocated-bins").Contents("%zu", mi.fsmblks);
|
|
|
|
|
|
|
|
size_t total = 0;
|
2019-05-03 03:33:11 +02:00
|
|
|
for (size_t j = 0; j < je_mallinfo_nbins(); j++) {
|
|
|
|
struct mallinfo mi = je_mallinfo_bin_info(i, j);
|
2019-03-02 02:59:51 +01:00
|
|
|
if (mi.ordblks != 0) {
|
|
|
|
MallocXmlElem bin_elem(fp, "bin", "nr=\"%d\"", j);
|
|
|
|
MallocXmlElem(fp, "allocated").Contents("%zu", mi.ordblks);
|
|
|
|
MallocXmlElem(fp, "nmalloc").Contents("%zu", mi.uordblks);
|
|
|
|
MallocXmlElem(fp, "ndalloc").Contents("%zu", mi.fordblks);
|
|
|
|
total += mi.ordblks;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MallocXmlElem(fp, "bins-total").Contents("%zu", total);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|