aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/glibc.py
Commit message (Collapse)AuthorAgeFilesLines
* remove useless whitespaceFlorian Fischer2019-12-181-2/+0
|
* replace AllocatorSources with ArtifactsFlorian Fischer2019-09-211-19/+15
|
* improve code quality and add license headers to allocator definitionsFlorian Fischer2019-08-281-11/+31
|
* fix benchmarks for any glibc versionFlorian Fischer2019-08-121-3/+3
| | | | | | | | | use the included loader of the build glibc instead of LD_LIBRARY_PATH. Using LD_LIBRARY_PATH probably fails because of incompatible system loaders and newer glibc versions. Then we have to reverse the positions of {measure cmd} and {cmd prefix} in the exec chain because ld loads only ELF binaries and {measure cmd} could be a script.
* Use "git reset --hard" instead of "git stash"Florian Schmaus2019-08-121-1/+1
|
* glibc: Use release tag instead of release branchFlorian Schmaus2019-08-121-1/+1
|
* use LD_LIBRARY_PATH for glibc instead of calling its loaderFlorian Fischer2019-08-121-2/+4
| | | | | | | | Calling the loader fails on non ELF executables. Exec, formerly run_cmd, now takes two options: -l LD_LIBRARY_PATH, -p LD_PRELOAD. -p sets LD_PRELOAD and -l LD_LIBRARY_PATH before executing the rest of argv. glibc no longer uses cmd_prefix in favor of LD_LIBRARY_PATH.
* add patch info to malloc_statsFlorian Fischer2019-08-111-2/+2
|
* add default colors to included allocatorsFlorian Fischer2019-07-011-4/+8
|
* rework allocator definitions #2Florian Fischer2019-06-241-4/+17
| | | | | | | | bench.py no evals only if argument to -a is file path. Otherwise it will check if "arg".py is found in src/allocators/ then it imports it. Collection definitions must export a iterable member called allocators. Allocator definitions must export a member named "arg".
* reduce code duplication by giving each known allocator its own classFlorian Fischer2019-06-171-0/+29
also move allocator related code to src/allocators