aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/glibcs.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-06-24 14:51:21 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-06-24 14:51:21 +0200
commit2d86e20f5a44aea66725686531463931f38aa2dc (patch)
treeb3e42e10e212aa61069775812cc821a2445a3b45 /src/allocators/glibcs.py
parent366c9e27b13e976ce26ec6a97c6796eb1cdca887 (diff)
downloadallocbench-2d86e20f5a44aea66725686531463931f38aa2dc.tar.gz
allocbench-2d86e20f5a44aea66725686531463931f38aa2dc.zip
rework allocator definitions #2
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".
Diffstat (limited to 'src/allocators/glibcs.py')
-rw-r--r--src/allocators/glibcs.py37
1 files changed, 2 insertions, 35 deletions
diff --git a/src/allocators/glibcs.py b/src/allocators/glibcs.py
index 891bf15..afbc88d 100644
--- a/src/allocators/glibcs.py
+++ b/src/allocators/glibcs.py
@@ -1,37 +1,4 @@
-import os
-import subprocess
+from src.allocators.glibc import glibc, glibc_notc, glibc_nofs, glibc_nofs_fancy
-from src.allocator import *
-from src.allocator import Allocator as Alloc
-from src.allocator import Allocator_Sources as Alloc_Src
-optimisation_flag = "-O2"
-
-glibc_src = Alloc_Src("glibc",
- retrieve_cmds=["git clone git://sourceware.org/git/glibc.git"],
- prepare_cmds=["git checkout release/2.29/master"],
- reset_cmds=["git stash"])
-
-glibc = Alloc("glibc", sources=glibc_src,
- build_cmds=["mkdir -p glibc-build",
- "cd glibc-build; {srcdir}/configure --prefix={dir}",
- "cd glibc-build; make",
- "cd glibc-build; make install"],
- cmd_prefix="{dir}/lib/ld-linux-x86-64.so.2 --library-path {dir}/lib:"+library_path)
-
-glibc_notc = Alloc("glibc_notc", sources=glibc_src,
- build_cmds=["mkdir -p glibc-build",
- "cd glibc-build; {srcdir}/configure --prefix={dir} --disable-experimental-malloc",
- "cd glibc-build; make",
- "cd glibc-build; make install"],
- cmd_prefix="{dir}/lib/ld-linux-x86-64.so.2 --library-path {dir}/lib:"+library_path)
-
-glibc_nofs = patch_alloc("glibc_nofs", glibc,
- ["allocators/glibc_2.28_no_passive_falsesharing.patch"])
-
-glibc_nofs_fancy = patch_alloc("glibc_nofs_fancy", glibc,
- ["allocators/glibc_2.28_no_passive_falsesharing_fancy.patch"])
-
-allocators_to_build = [glibc, glibc_notc, glibc_nofs, glibc_nofs_fancy]
-
-allocators = {a.name: a.build() for a in allocators_to_build}
+allocators = [glibc, glibc_notc, glibc_nofs, glibc_nofs_fancy]