summaryrefslogtreecommitdiff
path: root/memory_replay
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2019-04-25 13:19:02 -0700
committerChristopher Ferris <cferris@google.com>2019-06-05 14:45:09 -0700
commit37dca4b03a09f287e7fd0208df92483c4269e093 (patch)
tree8807933d0e01896cf3f50095bd61a7307c0a0021 /memory_replay
parent88ef680567ed08387ff041883b23a61d1a340449 (diff)
downloadextras-37dca4b03a09f287e7fd0208df92483c4269e093.tar.gz
Update code and add a way to benchmark traces.
The benchmarker treats the trace like a single thread trace. Bug: 129743239 Test: Ran benchmarks and verified there are no error and numbers seem sane. Test: Verified locking to a cpu works. Change-Id: I598d014ff65569271b45ec6567db1c39b26d4e2d
Diffstat (limited to 'memory_replay')
-rw-r--r--memory_replay/Action.cpp51
-rw-r--r--memory_replay/Android.bp62
-rw-r--r--memory_replay/TraceBenchmark.cpp413
-rw-r--r--memory_replay/main.cpp13
4 files changed, 506 insertions, 33 deletions
diff --git a/memory_replay/Action.cpp b/memory_replay/Action.cpp
index 216ff9da..7f15012f 100644
--- a/memory_replay/Action.cpp
+++ b/memory_replay/Action.cpp
@@ -22,20 +22,28 @@
#include <string.h>
#include <sys/param.h>
#include <time.h>
+#include <unistd.h>
#include <new>
#include "Action.h"
-#include "Threads.h"
#include "Pointers.h"
+#include "Threads.h"
-static uint64_t nanotime() {
+static __always_inline uint64_t Nanotime() {
struct timespec t;
t.tv_sec = t.tv_nsec = 0;
clock_gettime(CLOCK_MONOTONIC, &t);
return static_cast<uint64_t>(t.tv_sec) * 1000000000LL + t.tv_nsec;
}
+static __always_inline void MakeAllocationResident(void* ptr, size_t nbytes, int pagesize) {
+ uint8_t* data = reinterpret_cast<uint8_t*>(ptr);
+ for (size_t i = 0; i < nbytes; i += pagesize) {
+ data[i] = 1;
+ }
+}
+
class EndThreadAction : public Action {
public:
EndThreadAction() {}
@@ -63,11 +71,12 @@ class MallocAction : public AllocAction {
}
uint64_t Execute(Pointers* pointers) override {
- uint64_t time_nsecs = nanotime();
+ int pagesize = getpagesize();
+ uint64_t time_nsecs = Nanotime();
void* memory = malloc(size_);
- time_nsecs = nanotime() - time_nsecs;
+ MakeAllocationResident(memory, size_, pagesize);
+ time_nsecs = Nanotime() - time_nsecs;
- memset(memory, 1, size_);
pointers->Add(key_pointer_, memory);
return time_nsecs;
@@ -83,11 +92,12 @@ class CallocAction : public AllocAction {
}
uint64_t Execute(Pointers* pointers) override {
- uint64_t time_nsecs = nanotime();
+ int pagesize = getpagesize();
+ uint64_t time_nsecs = Nanotime();
void* memory = calloc(n_elements_, size_);
- time_nsecs = nanotime() - time_nsecs;
+ MakeAllocationResident(memory, n_elements_ * size_, pagesize);
+ time_nsecs = Nanotime() - time_nsecs;
- memset(memory, 0, n_elements_ * size_);
pointers->Add(key_pointer_, memory);
return time_nsecs;
@@ -113,11 +123,12 @@ class ReallocAction : public AllocAction {
old_memory = pointers->Remove(old_pointer_);
}
- uint64_t time_nsecs = nanotime();
+ int pagesize = getpagesize();
+ uint64_t time_nsecs = Nanotime();
void* memory = realloc(old_memory, size_);
- time_nsecs = nanotime() - time_nsecs;
+ MakeAllocationResident(memory, size_, pagesize);
+ time_nsecs = Nanotime() - time_nsecs;
- memset(memory, 1, size_);
pointers->Add(key_pointer_, memory);
return time_nsecs;
@@ -136,11 +147,12 @@ class MemalignAction : public AllocAction {
}
uint64_t Execute(Pointers* pointers) override {
- uint64_t time_nsecs = nanotime();
+ int pagesize = getpagesize();
+ uint64_t time_nsecs = Nanotime();
void* memory = memalign(align_, size_);
- time_nsecs = nanotime() - time_nsecs;
+ MakeAllocationResident(memory, size_, pagesize);
+ time_nsecs = Nanotime() - time_nsecs;
- memset(memory, 1, size_);
pointers->Add(key_pointer_, memory);
return time_nsecs;
@@ -152,17 +164,16 @@ class MemalignAction : public AllocAction {
class FreeAction : public AllocAction {
public:
- explicit FreeAction(uintptr_t key_pointer) : AllocAction(key_pointer) {
- }
+ explicit FreeAction(uintptr_t key_pointer) : AllocAction(key_pointer) {}
bool DoesFree() override { return key_pointer_ != 0; }
uint64_t Execute(Pointers* pointers) override {
if (key_pointer_) {
void* memory = pointers->Remove(key_pointer_);
- uint64_t time_nsecs = nanotime();
+ uint64_t time_nsecs = Nanotime();
free(memory);
- return nanotime() - time_nsecs;
+ return Nanotime() - time_nsecs;
}
return 0;
}
@@ -176,8 +187,8 @@ size_t Action::MaxActionSize() {
return MAX(max, sizeof(FreeAction));
}
-Action* Action::CreateAction(uintptr_t key_pointer, const char* type,
- const char* line, void* action_memory) {
+Action* Action::CreateAction(uintptr_t key_pointer, const char* type, const char* line,
+ void* action_memory) {
Action* action = nullptr;
if (strcmp(type, "malloc") == 0) {
action = new (action_memory) MallocAction(key_pointer, line);
diff --git a/memory_replay/Android.bp b/memory_replay/Android.bp
index 824ac125..753b8add 100644
--- a/memory_replay/Android.bp
+++ b/memory_replay/Android.bp
@@ -1,21 +1,28 @@
+//
+// Copyright (C) 2018 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.
+//
+
cc_defaults {
- name: "memory_replay_defaults",
+ name: "memory_flag_defaults",
host_supported: true,
- srcs: [
- "Action.cpp",
- "LineBuffer.cpp",
- "NativeInfo.cpp",
- "Pointers.cpp",
- "Thread.cpp",
- "Threads.cpp",
- ],
cflags: [
"-Wall",
"-Wextra",
"-Werror",
],
- shared_libs: ["libbase"],
target: {
darwin: {
@@ -24,6 +31,23 @@ cc_defaults {
},
compile_multilib: "both",
+}
+
+cc_defaults {
+ name: "memory_replay_defaults",
+ defaults: ["memory_flag_defaults"],
+
+ srcs: [
+ "Action.cpp",
+ "LineBuffer.cpp",
+ "NativeInfo.cpp",
+ "Pointers.cpp",
+ "Thread.cpp",
+ "Threads.cpp",
+ ],
+
+ shared_libs: ["libbase"],
+
multilib: {
lib32: {
suffix: "32",
@@ -63,3 +87,21 @@ cc_test {
},
},
}
+
+cc_benchmark {
+ name: "trace_benchmark",
+ defaults: ["memory_flag_defaults"],
+
+ srcs: [
+ "TraceBenchmark.cpp",
+ ],
+
+ shared_libs: [
+ "libbase",
+ "libziparchive",
+ ],
+
+ data: [
+ "dumps/*",
+ ],
+}
diff --git a/memory_replay/TraceBenchmark.cpp b/memory_replay/TraceBenchmark.cpp
new file mode 100644
index 00000000..756ef9f9
--- /dev/null
+++ b/memory_replay/TraceBenchmark.cpp
@@ -0,0 +1,413 @@
+/*
+ * Copyright (C) 2019 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.
+ */
+
+#include <err.h>
+#include <inttypes.h>
+#include <malloc.h>
+#include <sched.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+#include <unistd.h>
+
+#include <algorithm>
+#include <memory>
+#include <stack>
+#include <string>
+#include <unordered_map>
+#include <vector>
+
+#include <android-base/file.h>
+#include <android-base/strings.h>
+#include <benchmark/benchmark.h>
+#include <ziparchive/zip_archive.h>
+
+enum AllocEnum : uint8_t {
+ MALLOC = 0, // arg2 not used
+ CALLOC, // size = item_count, arg2 = item_size
+ MEMALIGN, // arg2 = alignment
+ REALLOC, // if arg2 = 0, ptr arg is nullptr, else arg2 = old pointer index + 1
+ FREE, // size not used, arg2 not used
+};
+
+struct MallocEntry {
+ MallocEntry(AllocEnum type, size_t idx, size_t size, size_t arg2)
+ : type(type), idx(idx), size(size), arg2(arg2) {}
+ AllocEnum type;
+ size_t idx;
+ size_t size;
+ size_t arg2;
+};
+
+static std::string GetZipContents(const char* filename) {
+ ZipArchiveHandle archive;
+ if (OpenArchive(filename, &archive) != 0) {
+ return "";
+ }
+
+ std::string contents;
+ void* cookie;
+ if (StartIteration(archive, &cookie) == 0) {
+ ZipEntry entry;
+ std::string name;
+ if (Next(cookie, &entry, &name) == 0) {
+ contents.resize(entry.uncompressed_length);
+ if (ExtractToMemory(archive, &entry, reinterpret_cast<uint8_t*>(contents.data()),
+ entry.uncompressed_length) != 0) {
+ contents = "";
+ }
+ }
+ }
+
+ CloseArchive(archive);
+ return contents;
+}
+
+static size_t GetIndex(std::stack<size_t>& indices, size_t* max_index) {
+ if (indices.empty()) {
+ return (*max_index)++;
+ }
+ size_t index = indices.top();
+ indices.pop();
+ return index;
+}
+
+static std::vector<MallocEntry>* GetTraceData(const char* filename, size_t* max_ptrs) {
+ // Only keep last trace encountered cached.
+ static std::string cached_filename;
+ static std::vector<MallocEntry> cached_entries;
+ static size_t cached_max_ptrs;
+
+ if (cached_filename == filename) {
+ *max_ptrs = cached_max_ptrs;
+ return &cached_entries;
+ }
+
+ cached_entries.clear();
+ cached_max_ptrs = 0;
+ cached_filename = filename;
+
+ std::string content(GetZipContents(filename));
+ if (content.empty()) {
+ errx(1, "Internal Error: Empty zip file %s", filename);
+ }
+ std::vector<std::string> lines(android::base::Split(content, "\n"));
+
+ *max_ptrs = 0;
+ std::stack<size_t> free_indices;
+ std::unordered_map<uintptr_t, size_t> indices;
+ std::vector<MallocEntry>* entries = &cached_entries;
+ for (const std::string& line : lines) {
+ if (line.empty()) {
+ continue;
+ }
+ pid_t tid;
+ int line_pos = 0;
+ char name[128];
+ uintptr_t pointer;
+ // All lines have this format:
+ // TID: ALLOCATION_TYPE POINTER
+ // where
+ // TID is the thread id of the thread doing the operation.
+ // ALLOCATION_TYPE is one of malloc, calloc, memalign, realloc, free, thread_done
+ // POINTER is the hex value of the actual pointer
+ if (sscanf(line.c_str(), "%d: %s %" SCNxPTR " %n", &tid, name, &pointer, &line_pos) != 3) {
+ errx(1, "Internal Error: Failed to process %s", line.c_str());
+ }
+ const char* line_end = &line[line_pos];
+ std::string type(name);
+ if (type == "malloc") {
+ // Format:
+ // TID: malloc POINTER SIZE_OF_ALLOCATION
+ size_t size;
+ if (sscanf(line_end, "%zu", &size) != 1) {
+ errx(1, "Internal Error: Failed to read malloc data %s", line.c_str());
+ }
+ size_t idx = GetIndex(free_indices, max_ptrs);
+ indices[pointer] = idx;
+ entries->emplace_back(MALLOC, idx, size, 0);
+ } else if (type == "free") {
+ // Format:
+ // TID: free POINTER
+ if (pointer != 0) {
+ auto entry = indices.find(pointer);
+ if (entry == indices.end()) {
+ errx(1, "Internal Error: Unable to find free pointer %" PRIuPTR, pointer);
+ }
+ free_indices.push(entry->second);
+ entries->emplace_back(FREE, entry->second + 1, 0, 0);
+ } else {
+ entries->emplace_back(FREE, 0, 0, 0);
+ }
+ } else if (type == "calloc") {
+ // Format:
+ // TID: calloc POINTER ITEM_SIZE ITEM_COUNT
+ size_t n_elements;
+ size_t size;
+ if (sscanf(line_end, "%zu %zu", &n_elements, &size) != 2) {
+ errx(1, "Internal Error: Failed to read calloc data %s", line.c_str());
+ }
+ size_t idx = GetIndex(free_indices, max_ptrs);
+ indices[pointer] = idx;
+ entries->emplace_back(CALLOC, idx, size, n_elements);
+ } else if (type == "realloc") {
+ // Format:
+ // TID: calloc POINTER NEW_SIZE OLD_POINTER
+ uintptr_t old_pointer;
+ size_t size;
+ if (sscanf(line_end, "%" SCNxPTR " %zu", &old_pointer, &size) != 2) {
+ errx(1, "Internal Error: Failed to read realloc data %s", line.c_str());
+ }
+ size_t old_pointer_idx = 0;
+ if (old_pointer != 0) {
+ auto entry = indices.find(old_pointer);
+ if (entry == indices.end()) {
+ errx(1, "Internal Error: Failed to find realloc pointer %" PRIuPTR, old_pointer);
+ }
+ old_pointer_idx = entry->second;
+ free_indices.push(old_pointer_idx);
+ }
+ size_t idx = GetIndex(free_indices, max_ptrs);
+ indices[pointer] = idx;
+ entries->emplace_back(REALLOC, idx, size, old_pointer_idx + 1);
+ } else if (type == "memalign") {
+ // Format:
+ // TID: memalign POINTER SIZE ALIGNMENT
+ size_t align;
+ size_t size;
+ if (sscanf(line_end, "%zu %zu", &align, &size) != 2) {
+ errx(1, "Internal Error: Failed to read memalign data %s", line.c_str());
+ }
+ size_t idx = GetIndex(free_indices, max_ptrs);
+ indices[pointer] = idx;
+ entries->emplace_back(MEMALIGN, idx, size, align);
+ } else if (type != "thread_done") {
+ errx(1, "Internal Error: Unknown type %s", line.c_str());
+ }
+ }
+
+ cached_max_ptrs = *max_ptrs;
+ return entries;
+}
+
+static __always_inline uint64_t Nanotime() {
+ struct timespec t;
+ t.tv_sec = t.tv_nsec = 0;
+ clock_gettime(CLOCK_MONOTONIC, &t);
+ return static_cast<uint64_t>(t.tv_sec) * 1000000000LL + t.tv_nsec;
+}
+
+static __always_inline void MakeAllocationResident(void* ptr, size_t nbytes, int pagesize) {
+ uint8_t* data = reinterpret_cast<uint8_t*>(ptr);
+ for (size_t i = 0; i < nbytes; i += pagesize) {
+ data[i] = 1;
+ }
+}
+
+static void RunTrace(benchmark::State& state, std::vector<MallocEntry>& entries, size_t max_ptrs) {
+ std::vector<void*> ptrs(max_ptrs, nullptr);
+
+ int pagesize = getpagesize();
+ void* ptr;
+ uint64_t total_ns = 0;
+ uint64_t start_ns;
+ for (auto& entry : entries) {
+ switch (entry.type) {
+ case MALLOC:
+ start_ns = Nanotime();
+ ptr = malloc(entry.size);
+ if (ptr == nullptr) {
+ errx(1, "malloc returned nullptr");
+ }
+ MakeAllocationResident(ptr, entry.size, pagesize);
+ total_ns += Nanotime() - start_ns;
+
+ if (ptrs[entry.idx] != nullptr) {
+ errx(1, "Internal Error: malloc pointer being replaced is not nullptr");
+ }
+ ptrs[entry.idx] = ptr;
+ break;
+
+ case CALLOC:
+ start_ns = Nanotime();
+ ptr = calloc(entry.arg2, entry.size);
+ if (ptr == nullptr) {
+ errx(1, "calloc returned nullptr");
+ }
+ MakeAllocationResident(ptr, entry.size, pagesize);
+ total_ns += Nanotime() - start_ns;
+
+ if (ptrs[entry.idx] != nullptr) {
+ errx(1, "Internal Error: calloc pointer being replaced is not nullptr");
+ }
+ ptrs[entry.idx] = ptr;
+ break;
+
+ case MEMALIGN:
+ start_ns = Nanotime();
+ ptr = memalign(entry.arg2, entry.size);
+ if (ptr == nullptr) {
+ errx(1, "memalign returned nullptr");
+ }
+ MakeAllocationResident(ptr, entry.size, pagesize);
+ total_ns += Nanotime() - start_ns;
+
+ if (ptrs[entry.idx] != nullptr) {
+ errx(1, "Internal Error: memalign pointer being replaced is not nullptr");
+ }
+ ptrs[entry.idx] = ptr;
+ break;
+
+ case REALLOC:
+ start_ns = Nanotime();
+ if (entry.arg2 == 0) {
+ ptr = realloc(nullptr, entry.size);
+ } else {
+ ptr = realloc(ptrs[entry.arg2 - 1], entry.size);
+ ptrs[entry.arg2 - 1] = nullptr;
+ }
+ if (entry.size > 0) {
+ if (ptr == nullptr) {
+ errx(1, "realloc returned nullptr");
+ }
+ MakeAllocationResident(ptr, entry.size, pagesize);
+ }
+ total_ns += Nanotime() - start_ns;
+
+ if (ptrs[entry.idx] != nullptr) {
+ errx(1, "Internal Error: realloc pointer being replaced is not nullptr");
+ }
+ ptrs[entry.idx] = ptr;
+ break;
+
+ case FREE:
+ if (entry.idx != 0) {
+ ptr = ptrs[entry.idx - 1];
+ ptrs[entry.idx - 1] = nullptr;
+ } else {
+ ptr = nullptr;
+ }
+ start_ns = Nanotime();
+ free(ptr);
+ total_ns += Nanotime() - start_ns;
+ break;
+ }
+ }
+ state.SetIterationTime(total_ns / double(1000000000.0));
+
+ std::for_each(ptrs.begin(), ptrs.end(), [](void* ptr) { free(ptr); });
+}
+
+// Run a trace as if all of the allocations occurred in a single thread.
+// This is not completely realistic, but it is a possible worst case that
+// could happen in an app.
+static void BenchmarkTrace(benchmark::State& state, const char* filename) {
+ std::string full_filename(android::base::GetExecutableDirectory() + "/dumps/" + filename);
+ size_t max_ptrs;
+ std::vector<MallocEntry>* entries = GetTraceData(full_filename.c_str(), &max_ptrs);
+ if (entries == nullptr) {
+ errx(1, "ERROR: Failed to get trace data for %s.", full_filename.c_str());
+ }
+
+#if defined(__BIONIC__)
+ // Need to set the decay time the same as how an app would operate.
+ mallopt(M_DECAY_TIME, 1);
+#endif
+
+ for (auto _ : state) {
+ RunTrace(state, *entries, max_ptrs);
+ }
+}
+
+#define BENCH_OPTIONS \
+ UseManualTime() \
+ ->Unit(benchmark::kMicrosecond) \
+ ->MinTime(15.0) \
+ ->Repetitions(4) \
+ ->ReportAggregatesOnly(true)
+
+static void BM_camera(benchmark::State& state) {
+ BenchmarkTrace(state, "camera.zip");
+}
+BENCHMARK(BM_camera)->BENCH_OPTIONS;
+
+void BM_gmail(benchmark::State& state) {
+ BenchmarkTrace(state, "gmail.zip");
+}
+BENCHMARK(BM_gmail)->BENCH_OPTIONS;
+
+void BM_maps(benchmark::State& state) {
+ BenchmarkTrace(state, "maps.zip");
+}
+BENCHMARK(BM_maps)->BENCH_OPTIONS;
+
+void BM_surfaceflinger(benchmark::State& state) {
+ BenchmarkTrace(state, "surfaceflinger.zip");
+}
+BENCHMARK(BM_surfaceflinger)->BENCH_OPTIONS;
+
+void BM_system_server(benchmark::State& state) {
+ BenchmarkTrace(state, "system_server.zip");
+}
+BENCHMARK(BM_system_server)->BENCH_OPTIONS;
+
+void BM_systemui(benchmark::State& state) {
+ BenchmarkTrace(state, "systemui.zip");
+}
+BENCHMARK(BM_systemui)->BENCH_OPTIONS;
+
+void BM_youtube(benchmark::State& state) {
+ BenchmarkTrace(state, "youtube.zip");
+}
+BENCHMARK(BM_youtube)->BENCH_OPTIONS;
+
+int main(int argc, char** argv) {
+ std::vector<char*> args;
+ args.push_back(argv[0]);
+
+ // Look for the --cpu=XX option.
+ for (int i = 1; i < argc; i++) {
+ if (strncmp(argv[i], "--cpu=", 6) == 0) {
+ char* endptr;
+ int cpu = strtol(&argv[i][6], &endptr, 10);
+ if (argv[i][0] == '\0' || endptr == nullptr || *endptr != '\0') {
+ printf("Invalid format of --cpu option, '%s' must be an integer value.\n", argv[i] + 6);
+ return 1;
+ }
+ cpu_set_t cpuset;
+ CPU_ZERO(&cpuset);
+ CPU_SET(cpu, &cpuset);
+ if (sched_setaffinity(0, sizeof(cpuset), &cpuset) != 0) {
+ if (errno == EINVAL) {
+ printf("Invalid cpu %d\n", cpu);
+ return 1;
+ }
+ perror("sched_setaffinity failed");
+ return 1;
+ }
+ printf("Locking to cpu %d\n", cpu);
+ } else {
+ args.push_back(argv[i]);
+ }
+ }
+
+ argc = args.size();
+ ::benchmark::Initialize(&argc, args.data());
+ if (::benchmark::ReportUnrecognizedArguments(argc, args.data())) return 1;
+ ::benchmark::RunSpecifiedBenchmarks();
+}
diff --git a/memory_replay/main.cpp b/memory_replay/main.cpp
index 42b52983..2ffc53d0 100644
--- a/memory_replay/main.cpp
+++ b/memory_replay/main.cpp
@@ -18,6 +18,7 @@
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
+#include <malloc.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
@@ -48,7 +49,8 @@ size_t GetMaxAllocs(int fd) {
}
word++;
- while (*word++ == ' ');
+ while (*word++ == ' ')
+ ;
// This will treat a realloc as an allocation, even if it frees
// another allocation. Since reallocs are relatively rare, this
// shouldn't inflate the numbers that much.
@@ -149,8 +151,8 @@ void ProcessDump(int fd, size_t max_allocs, size_t max_threads) {
pointers.FreeAll();
// Print out the total time making all allocation calls.
- printf("Total Allocation/Free Time: %" PRIu64 "ns %0.2fs\n",
- threads.total_time_nsecs(), threads.total_time_nsecs()/1000000000.0);
+ printf("Total Allocation/Free Time: %" PRIu64 "ns %0.2fs\n", threads.total_time_nsecs(),
+ threads.total_time_nsecs() / 1000000000.0);
}
constexpr size_t DEFAULT_MAX_THREADS = 512;
@@ -166,6 +168,11 @@ int main(int argc, char** argv) {
return 1;
}
+#if defined(__BIONIC__)
+ printf("Setting decay time to 1\n");
+ mallopt(M_DECAY_TIME, 1);
+#endif
+
size_t max_threads = DEFAULT_MAX_THREADS;
if (argc == 3) {
max_threads = atoi(argv[2]);