aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/tcmalloc/tcmalloc_2.7_cacheline_exclusive.patch
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-05-06 16:56:32 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-06-02 11:18:47 +0200
commit8174a918ea3b7cb216bf7ea98cfdc10661b5c37d (patch)
tree0747ec3ccb9f8d7eeccfac35977fc17855ca3bbb /src/allocators/tcmalloc/tcmalloc_2.7_cacheline_exclusive.patch
parent8f52e8fc02dd235582f5961941bcd564e9a681cd (diff)
downloadallocbench-8174a918ea3b7cb216bf7ea98cfdc10661b5c37d.tar.gz
allocbench-8174a918ea3b7cb216bf7ea98cfdc10661b5c37d.zip
make the whole project more python idiomatic
* rename src directory to allocbench * make global variable names UPPERCASE * format a lot of code using yapf * use lowercase ld_preload and ld_library_path as Allocator members * name expected Errors 'err' and don't raise a new Exception * disable some pylint messages
Diffstat (limited to 'src/allocators/tcmalloc/tcmalloc_2.7_cacheline_exclusive.patch')
-rw-r--r--src/allocators/tcmalloc/tcmalloc_2.7_cacheline_exclusive.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/allocators/tcmalloc/tcmalloc_2.7_cacheline_exclusive.patch b/src/allocators/tcmalloc/tcmalloc_2.7_cacheline_exclusive.patch
deleted file mode 100644
index bdd63e3..0000000
--- a/src/allocators/tcmalloc/tcmalloc_2.7_cacheline_exclusive.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git src/common.cc src/common.cc
-index 203afdf..9257518 100644
---- src/common.cc
-+++ src/common.cc
-@@ -79,7 +79,7 @@ int AlignmentForSize(size_t size) {
- if (size > kMaxSize) {
- // Cap alignment at kPageSize for large sizes.
- alignment = kPageSize;
-- } else if (size >= 128) {
-+ } else if (size >= 512) {
- // Space wasted due to alignment is at most 1/8, i.e., 12.5%.
- alignment = (1 << LgFloor(size)) / 8;
- } else if (size >= kMinAlign) {
-diff --git a/src/common.h b/src/common.h
-index cb45315..4131a13 100644
---- src/common.h
-+++ src/common.h
-@@ -61,7 +61,7 @@ typedef uintptr_t Length;
- // waste due alignment of 25%. (eg malloc of 24 bytes will get 32 bytes)
- static const size_t kMinAlign = 8;
- #else
--static const size_t kMinAlign = 16;
-+static const size_t kMinAlign = 64;
- #endif
-
- // Using large pages speeds up the execution at a cost of larger memory use.