diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-05-06 16:56:32 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-02 11:18:47 +0200 |
| commit | 8174a918ea3b7cb216bf7ea98cfdc10661b5c37d (patch) | |
| tree | 0747ec3ccb9f8d7eeccfac35977fc17855ca3bbb /src/allocators/tcmalloc | |
| parent | 8f52e8fc02dd235582f5961941bcd564e9a681cd (diff) | |
| download | allocbench-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')
3 files changed, 0 insertions, 65 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. diff --git a/src/allocators/tcmalloc/tcmalloc_2.7_no_active_falsesharing.patch b/src/allocators/tcmalloc/tcmalloc_2.7_no_active_falsesharing.patch deleted file mode 100644 index a76a2f2..0000000 --- a/src/allocators/tcmalloc/tcmalloc_2.7_no_active_falsesharing.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git src/thread_cache.cc src/thread_cache.cc -index 6d2f832..2074f4a 100644 ---- src/thread_cache.cc -+++ src/thread_cache.cc -@@ -120,7 +120,11 @@ void* ThreadCache::FetchFromCentralCache(uint32 cl, int32_t byte_size, - ASSERT(list->empty()); - const int batch_size = Static::sizemap()->num_objects_to_move(cl); - -- const int num_to_move = min<int>(list->max_length(), batch_size); -+ int num_to_move = min<int>(list->max_length(), batch_size); -+ const int cache_line_parts = 64 / byte_size; -+ if (cache_line_parts > 0 && cache_line_parts > num_to_move) -+ num_to_move = cache_line_parts; -+ - void *start, *end; - int fetch_count = Static::central_cache()[cl].RemoveRange( - &start, &end, num_to_move); diff --git a/src/allocators/tcmalloc/tcmalloc_bazel_build_so.patch b/src/allocators/tcmalloc/tcmalloc_bazel_build_so.patch deleted file mode 100644 index cdd2840..0000000 --- a/src/allocators/tcmalloc/tcmalloc_bazel_build_so.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git tcmalloc/BUILD tcmalloc/BUILD -index 66d160e..25946af 100644 ---- tcmalloc/BUILD -+++ tcmalloc/BUILD -@@ -109,6 +109,17 @@ cc_library( - alwayslink = 1, - ) - -+# This library provides tcmalloc as shared object -+cc_binary( -+ name = "tcmalloc.so", -+ copts = TCMALLOC_DEFAULT_COPTS, -+ linkshared = 1, -+ linkstatic = 1, -+ deps = overlay_deps + tcmalloc_deps + [ -+ ":tcmalloc", -+ ] -+) -+ - # Provides tcmalloc always; use per-thread mode. - # - cc_library( |
