[compiler-rt] r316788 - [scudo] Allow to specify the maximum number of TSDs at compile time
Kostya Kortchinsky via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 27 13:10:14 PDT 2017
Author: cryptoad
Date: Fri Oct 27 13:10:14 2017
New Revision: 316788
URL: http://llvm.org/viewvc/llvm-project?rev=316788&view=rev
Log:
[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
Modified:
compiler-rt/trunk/lib/scudo/scudo_platform.h
compiler-rt/trunk/lib/scudo/scudo_tsd_shared.cpp
Modified: compiler-rt/trunk/lib/scudo/scudo_platform.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/scudo/scudo_platform.h?rev=316788&r1=316787&r2=316788&view=diff
==============================================================================
--- compiler-rt/trunk/lib/scudo/scudo_platform.h (original)
+++ compiler-rt/trunk/lib/scudo/scudo_platform.h Fri Oct 27 13:10:14 2017
@@ -40,6 +40,11 @@
# error "The exclusive TSD model is not supported on this platform."
#endif
+// Maximum number of TSDs that can be created for the Shared model.
+#ifndef SCUDO_SHARED_TSD_POOL_SIZE
+# define SCUDO_SHARED_TSD_POOL_SIZE 32U
+#endif // SCUDO_SHARED_TSD_POOL_SIZE
+
namespace __scudo {
#if SANITIZER_CAN_USE_ALLOCATOR64
Modified: compiler-rt/trunk/lib/scudo/scudo_tsd_shared.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/scudo/scudo_tsd_shared.cpp?rev=316788&r1=316787&r2=316788&view=diff
==============================================================================
--- compiler-rt/trunk/lib/scudo/scudo_tsd_shared.cpp (original)
+++ compiler-rt/trunk/lib/scudo/scudo_tsd_shared.cpp Fri Oct 27 13:10:14 2017
@@ -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++)
More information about the llvm-commits
mailing list