blob: acff52d50d91e24b5e341b0f82df5beb23ec1dee [file] [log] [blame]
Ian Rogers15bf2d32012-08-28 17:33:04 -07001/*
2 * Copyright (C) 2012 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
17#include "dlmalloc.h"
18
Elliott Hughes07ed66b2012-12-12 18:34:25 -080019#include "base/logging.h"
Ian Rogers15bf2d32012-08-28 17:33:04 -070020
21// ART specific morecore implementation defined in space.cc.
22#define MORECORE(x) art_heap_morecore(m, x)
23extern "C" void* art_heap_morecore(void* m, intptr_t increment);
24
25// Custom heap error handling.
26#define PROCEED_ON_ERROR 0
27static void art_heap_corruption(const char* function);
28static void art_heap_usage_error(const char* function, void* p);
29#define CORRUPTION_ERROR_ACTION(m) art_heap_corruption(__FUNCTION__)
Brian Carlstromb1eba212013-07-17 18:07:19 -070030#define USAGE_ERROR_ACTION(m, p) art_heap_usage_error(__FUNCTION__, p)
Ian Rogers15bf2d32012-08-28 17:33:04 -070031
32// Ugly inclusion of C file so that ART specific #defines configure dlmalloc for our use for
33// mspaces (regular dlmalloc is still declared in bionic).
34#pragma GCC diagnostic ignored "-Wempty-body"
35#pragma GCC diagnostic ignored "-Wstrict-aliasing"
36#include "../../../bionic/libc/upstream-dlmalloc/malloc.c"
37#pragma GCC diagnostic warning "-Wstrict-aliasing"
38#pragma GCC diagnostic warning "-Wempty-body"
39
40
41static void art_heap_corruption(const char* function) {
Ian Rogersc7dd2952014-10-21 23:31:19 -070042 LOG(::art::FATAL) << "Corrupt heap detected in: " << function;
Ian Rogers15bf2d32012-08-28 17:33:04 -070043}
44
45static void art_heap_usage_error(const char* function, void* p) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070046 LOG(::art::FATAL) << "Incorrect use of function '" << function << "' argument " << p
47 << " not expected";
Ian Rogers15bf2d32012-08-28 17:33:04 -070048}
Ian Rogers1d54e732013-05-02 21:10:01 -070049
50#include "globals.h"
51#include "utils.h"
52#include <sys/mman.h>
53
Ian Rogers1d54e732013-05-02 21:10:01 -070054extern "C" void DlmallocMadviseCallback(void* start, void* end, size_t used_bytes, void* arg) {
55 // Is this chunk in use?
56 if (used_bytes != 0) {
57 return;
58 }
59 // Do we have any whole pages to give back?
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070060 start = reinterpret_cast<void*>(art::RoundUp(reinterpret_cast<uintptr_t>(start), art::kPageSize));
61 end = reinterpret_cast<void*>(art::RoundDown(reinterpret_cast<uintptr_t>(end), art::kPageSize));
Ian Rogers1d54e732013-05-02 21:10:01 -070062 if (end > start) {
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070063 size_t length = reinterpret_cast<uint8_t*>(end) - reinterpret_cast<uint8_t*>(start);
Ian Rogers1d54e732013-05-02 21:10:01 -070064 int rc = madvise(start, length, MADV_DONTNEED);
65 if (UNLIKELY(rc != 0)) {
66 errno = rc;
Ian Rogersc7dd2952014-10-21 23:31:19 -070067 PLOG(::art::FATAL) << "madvise failed during heap trimming";
Ian Rogers1d54e732013-05-02 21:10:01 -070068 }
69 size_t* reclaimed = reinterpret_cast<size_t*>(arg);
70 *reclaimed += length;
71 }
72}
Hiroshi Yamauchibe031ff2013-10-08 16:42:37 -070073
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070074extern "C" void DlmallocBytesAllocatedCallback(void* start ATTRIBUTE_UNUSED,
75 void* end ATTRIBUTE_UNUSED, size_t used_bytes,
76 void* arg) {
Hiroshi Yamauchibe031ff2013-10-08 16:42:37 -070077 if (used_bytes == 0) {
78 return;
79 }
80 size_t* bytes_allocated = reinterpret_cast<size_t*>(arg);
81 *bytes_allocated += used_bytes + sizeof(size_t);
82}
83
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070084extern "C" void DlmallocObjectsAllocatedCallback(void* start, void* end, size_t used_bytes,
85 void* arg) {
86 UNUSED(start);
87 UNUSED(end);
Hiroshi Yamauchibe031ff2013-10-08 16:42:37 -070088 if (used_bytes == 0) {
89 return;
90 }
91 size_t* objects_allocated = reinterpret_cast<size_t*>(arg);
92 ++(*objects_allocated);
93}