blob: 19081a4c5a52f78c3872663e4b62717f832d6d05 [file] [log] [blame]
Christopher Ferris72bbd422014-05-08 11:14:03 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Christopher Ferrisa1c0d2f2017-05-15 15:50:19 -070017#include <malloc.h>
Christopher Ferris03eebcb2014-06-13 13:57:51 -070018#include <sys/param.h>
Christopher Ferris72bbd422014-05-08 11:14:03 -070019#include <unistd.h>
20
21#include "jemalloc.h"
Christopher Ferris03eebcb2014-06-13 13:57:51 -070022#include "private/bionic_macros.h"
Christopher Ferris72bbd422014-05-08 11:14:03 -070023
24void* je_pvalloc(size_t bytes) {
Elliott Hughes91570ce2014-07-10 12:34:23 -070025 size_t pagesize = getpagesize();
Dan Alberta613d0d2017-10-05 16:39:33 -070026 size_t size = __BIONIC_ALIGN(bytes, pagesize);
Christopher Ferris03eebcb2014-06-13 13:57:51 -070027 if (size < bytes) {
28 return NULL;
29 }
30 return je_memalign(pagesize, size);
Christopher Ferris72bbd422014-05-08 11:14:03 -070031}
32
33#ifdef je_memalign
34#undef je_memalign
35#endif
36
37// The man page for memalign says it fails if boundary is not a power of 2,
38// but this is not true. Both glibc and dlmalloc round up to the next power
39// of 2, so we'll do the same.
40void* je_memalign_round_up_boundary(size_t boundary, size_t size) {
Christopher Ferris03eebcb2014-06-13 13:57:51 -070041 if (boundary != 0) {
42 if (!powerof2(boundary)) {
43 boundary = BIONIC_ROUND_UP_POWER_OF_2(boundary);
Christopher Ferris72bbd422014-05-08 11:14:03 -070044 }
45 } else {
46 boundary = 1;
47 }
48 return je_memalign(boundary, size);
49}
Christopher Ferrisa1c0d2f2017-05-15 15:50:19 -070050
51int je_mallopt(int param, int value) {
52 // The only parameter we currently understand is M_DECAY_TIME.
53 if (param == M_DECAY_TIME) {
54 // Only support setting the value to 1 or 0.
55 ssize_t decay_time;
56 if (value) {
57 decay_time = 1;
58 } else {
59 decay_time = 0;
60 }
61 // First get the total number of arenas.
62 unsigned narenas;
63 size_t sz = sizeof(unsigned);
64 if (je_mallctl("arenas.narenas", &narenas, &sz, nullptr, 0) != 0) {
65 return 0;
66 }
67
68 // Set the decay time for any arenas that will be created in the future.
69 if (je_mallctl("arenas.decay_time", nullptr, nullptr, &decay_time, sizeof(decay_time)) != 0) {
70 return 0;
71 }
72
73 // Change the decay on the already existing arenas.
74 char buffer[100];
75 for (unsigned i = 0; i < narenas; i++) {
76 snprintf(buffer, sizeof(buffer), "arena.%d.decay_time", i);
77 if (je_mallctl(buffer, nullptr, nullptr, &decay_time, sizeof(decay_time)) != 0) {
78 break;
79 }
80 }
81 return 1;
82 }
83 return 0;
84}