1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
import os
import subprocess
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"])
tcmalloc_src = Alloc_Src("gperftools",
["git clone https://github.com/gperftools/gperftools.git"],
["git checkout gperftools-2.7", "./autogen.sh"],
["git stash"])
tcmalloc = Alloc("tcmalloc", sources=tcmalloc_src,
LD_PRELOAD="{dir}/lib/libtcmalloc.so",
build_cmds=["cd {srcdir}; ./configure --prefix={dir} CXXFLAGS=" + optimisation_flag,
"cd {srcdir}; make install -j4"])
tcmalloc_nofs = patch_alloc("tcmalloc_nofs", tcmalloc,
["allocators/tcmalloc_2.7_no_active_falsesharing.patch"])
jemalloc = Alloc("jemalloc",
sources=Alloc_Src("jemalloc",
retrieve_cmds=["git clone https://github.com/jemalloc/jemalloc.git"],
prepare_cmds=["git checkout 5.1.0", "./autogen.sh"]),
LD_PRELOAD="{srcdir}/lib/libjemalloc.so",
build_cmds=["cd {srcdir}; ./configure --prefix={dir} CFLAGS=" + optimisation_flag,
"cd {srcdir}; make -j4",
"mkdir {dir}"])
hoard = Alloc("Hoard", sources=Alloc_Src("Hoard",
retrieve_cmds=["git clone https://github.com/emeryberger/Hoard.git"],
reset_cmds=["git stash"]),
LD_PRELOAD="{srcdir}/src/libhoard.so",
build_cmds=["cd {srcdir}/src; make",
"mkdir {dir}"],
patches=["allocators/hoard_make.patch"])
allocators_to_build = [glibc, glibc_notc, glibc_nofs, glibc_nofs_fancy, tcmalloc, tcmalloc_nofs, jemalloc, hoard]
allocators = {a.name: a.build() for a in allocators_to_build}
|