summaryrefslogtreecommitdiff
path: root/lib/scudo/scudo_tsd_shared.cpp
diff options
context:
space:
mode:
authorKostya Kortchinsky <kostyak@google.com>2017-10-27 20:10:14 +0000
committerKostya Kortchinsky <kostyak@google.com>2017-10-27 20:10:14 +0000
commit0c8987ad277c57f75859487ab81ca85b15db2380 (patch)
tree49bd2099aa99a6b29656d80ae1b9c5206ba427ae /lib/scudo/scudo_tsd_shared.cpp
parent350302ec8d9c0faa130a6d1266220d27d9f6a523 (diff)
[scudo] Allow to specify the maximum number of TSDs at compile time
Summary: This introduces `SCUDO_MAX_CACHES` allowing to define an upper bound to the number of `ScudoTSD` created in the Shared TSD model (by default 32U). This name felt clearer than `SCUDO_MAX_TSDS` which is technically what it really is. I am opened to suggestions if that doesn't feel right. Additionally change `getNumberOfCPUs` to return a `u32` to be more consistent. Reviewers: alekseyshl Reviewed By: alekseyshl Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D39338 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@316788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/scudo/scudo_tsd_shared.cpp')
-rw-r--r--lib/scudo/scudo_tsd_shared.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/scudo/scudo_tsd_shared.cpp b/lib/scudo/scudo_tsd_shared.cpp
index 6ee2f84a0..191c9ff13 100644
--- a/lib/scudo/scudo_tsd_shared.cpp
+++ b/lib/scudo/scudo_tsd_shared.cpp
@@ -25,7 +25,7 @@ static ScudoTSD *TSDs;
static u32 NumberOfTSDs;
// sysconf(_SC_NPROCESSORS_{CONF,ONLN}) cannot be used as they allocate memory.
-static uptr getNumberOfCPUs() {
+static u32 getNumberOfCPUs() {
cpu_set_t CPUs;
CHECK_EQ(sched_getaffinity(0, sizeof(cpu_set_t), &CPUs), 0);
return CPU_COUNT(&CPUs);
@@ -34,11 +34,8 @@ static uptr getNumberOfCPUs() {
static void initOnce() {
CHECK_EQ(pthread_key_create(&PThreadKey, NULL), 0);
initScudo();
- NumberOfTSDs = getNumberOfCPUs();
- if (NumberOfTSDs == 0)
- NumberOfTSDs = 1;
- if (NumberOfTSDs > 32)
- NumberOfTSDs = 32;
+ NumberOfTSDs = Min(Max(1U, getNumberOfCPUs()),
+ static_cast<u32>(SCUDO_SHARED_TSD_POOL_SIZE));
TSDs = reinterpret_cast<ScudoTSD *>(
MmapOrDie(sizeof(ScudoTSD) * NumberOfTSDs, "ScudoTSDs"));
for (u32 i = 0; i < NumberOfTSDs; i++)