aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/scalloc.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/scalloc.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/scalloc.py')
-rw-r--r--src/allocators/scalloc.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/allocators/scalloc.py b/src/allocators/scalloc.py
new file mode 100644
index 0000000..b554895
--- /dev/null
+++ b/src/allocators/scalloc.py
@@ -0,0 +1,30 @@
+from src.allocator import Allocator, Allocator_Sources, library_path
+
+
+version = "v1.0.0"
+
+scalloc_src = Allocator_Sources("scalloc",
+ retrieve_cmds=["git clone https://github.com/cksystemsgroup/scalloc"],
+ prepare_cmds=["git checkout {}".format(version),
+ "cd {srcdir}; tools/make_deps.sh",
+ "cd {srcdir}; build/gyp/gyp --depth=. scalloc.gyp"],
+ reset_cmds=["git stash"])
+
+
+class Scalloc (Allocator):
+ """Scalloc definition for allocbench"""
+ def __init__(self, name, **kwargs):
+
+ kwargs["sources"] = scalloc_src
+
+ kwargs["build_cmds"] = ["cd {srcdir}; BUILDTYPE=Release make",
+ "mkdir -p {dir}"]
+
+ kwargs["LD_PRELOAD"] = "{srcdir}/out/Release/lib.target/libscalloc.so"
+
+ kwargs["patches"] = ["{patchdir}/scalloc_fix_log.patch"]
+
+ super().__init__(name, **kwargs)
+
+
+scalloc = Scalloc("scalloc")