-
Notifications
You must be signed in to change notification settings - Fork 55
/
build-bench-env.sh
executable file
·869 lines (778 loc) · 25.2 KB
/
build-bench-env.sh
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
#!/bin/bash
# Copyright 2018-2024, Microsoft Research, Daan Leijen, Julien Voisin, Matthew Parkinson
set -eo pipefail
CFLAGS='-march=native'
CXXFLAGS='-march=native'
procs=8
extso=".so"
case "$OSTYPE" in
darwin*)
export HOMEBREW_NO_EMOJI=1
darwin="1"
extso=".dylib"
procs=`sysctl -n hw.physicalcpu`;;
*)
darwin=""
if command -v nproc > /dev/null; then
procs=`nproc`
fi;;
esac
SUDO=sudo
if [ "$EUID" -eq 0 ]; then
echo "[*] $0 is running as root, avoid doing this if possible."
SUDO=""
fi
SHA256SUM_CMD="sha256sum"
if test "$darwin" = "1"; then
SHA256SUM_CMD="shasum -a 256"
fi
curdir=`pwd`
rebuild=0
all=0
# allocator versions
readonly version_dh=master # ~unmaintained
readonly version_ff=master # ~unmaintained since 2021
readonly version_fg=master # ~unmaintained since 2018
readonly version_gd=master # ~unmaintained since 2021
readonly version_hd=5afe855 # 3.13 #a43ac40 #d880f72 #9d137ef37
readonly version_hm=11
readonly version_iso=1.2.5
readonly version_je=5.3.0
readonly version_lf=master # ~unmaintained since 2018
readonly version_lp=main
readonly version_lt=master # ~unmaintained since 2019
readonly version_mesh=master # ~unmaintained since 2021
readonly version_mi=v1.8.2
readonly version_mi2=v2.1.2
readonly version_mng=master # ~unmaintained
readonly version_nomesh=$version_mesh
readonly version_pa=main
readonly version_rp=1.4.5
readonly version_sc=master # unmaintained since 2016
readonly version_scudo=main
readonly version_sg=master # ~unmaintained since 2021
readonly version_sm=master # ~unmaintained since 2017
readonly version_sn=0.6.2
readonly version_tbb=v2021.9.0
readonly version_tc=gperftools-2.16
readonly version_tcg=8febb4b4da2ab3b04862a8676fb5b506ef90aa42 # 2024-07-30
readonly version_yal=main
# benchmark versions
readonly version_redis=6.2.7
readonly version_lean=21d264a66d53b0a910178ae7d9529cb5886a39b6 # build fix for recent compilers
readonly version_rocksdb=8.1.1
readonly version_lua=v5.4.7
# HTTP-downloaded files checksums
readonly sha256sum_sh6bench="506354d66b9eebef105d757e055bc55e8d4aea1e7b51faab3da35b0466c923a1"
readonly sha256sum_sh8bench="12a8e75248c9dcbfee28245c12bc937a16ef56ec9cbfab88d0e348271667726f"
# allocators
setup_dh=0
setup_ff=0
setup_fg=0
setup_gd=0
setup_hd=0
setup_hm=0
setup_iso=0
setup_je=0
setup_lf=0
setup_lp=0
setup_lt=0
setup_mesh=0
setup_mi=0
setup_mi2=0
setup_mng=0
setup_nomesh=0
setup_pa=0
setup_rp=0
setup_sc=0
setup_scudo=0
setup_sg=0
setup_sm=0
setup_sn=0
setup_tbb=0
setup_tc=0
setup_tcg=0
setup_yal=0
# bigger benchmarks
setup_bench=0
setup_lean=0
setup_redis=0
setup_rocksdb=0
# various
setup_packages=0
# Parse command-line arguments
while : ; do
flag="$1"
case "$flag" in
*=*) flag_arg="${flag#*=}";;
no-*) flag_arg="0"
flag="${flag#no-}";;
none) flag_arg="0" ;;
*) flag_arg="1" ;;
esac
# echo "option: $flag, arg: $flag_arg"
case "$flag" in
"") break;;
all|none)
all=$flag_arg
setup_dh=$flag_arg
setup_ff=$flag_arg
setup_fg=$flag_arg
setup_gd=$flag_arg
setup_hd=$flag_arg
setup_iso=$flag_arg
setup_je=$flag_arg
setup_lp=$flag_arg
setup_mi=$flag_arg
setup_mi2=$flag_arg
setup_pa=$flag_arg
setup_sn=$flag_arg
setup_sg=$flag_arg
setup_tbb=$flag_arg
setup_tc=$flag_arg
setup_yal=$flag_arg
if [ -z "$darwin" ]; then
setup_tcg=$flag_arg # lacking 'malloc.h'
setup_dh=$flag_arg
setup_fg=$flag_arg
setup_lf=$flag_arg
setup_lt=$flag_arg # GNU only
setup_mng=$flag_arg # lacking getentropy()
setup_hm=$flag_arg # lacking <thread.h>
setup_mesh=$flag_arg
setup_rp=$flag_arg
setup_scudo=$flag_arg # lacking <sys/auxv.h>
setup_sm=$flag_arg # ../src/supermalloc.h:10:31: error: expected function body after function declarator + error: use of undeclared identifier 'MADV_HUGEPAGE'
else
if ! [ `uname -m` = "x86_64" ]; then
setup_dh=$flag_arg # does not compile on macos x64
fi
fi
# only run Mesh's 'nomesh' configuration if asked
# setup_nomesh=$flag_arg
# bigger benchmarks
setup_lean=$flag_arg
setup_redis=$flag_arg
setup_rocksdb=$flag_arg
setup_bench=$flag_arg
setup_packages=$flag_arg
;;
bench)
setup_bench=$flag_arg;;
ff)
setup_ff=$flag_arg;;
fg)
setup_fg=$flag_arg;;
dh)
setup_dh=$flag_arg;;
gd)
setup_gd=$flag_arg;;
hd)
setup_hd=$flag_arg;;
hm)
setup_hm=$flag_arg;;
iso)
setup_iso=$flag_arg;;
je)
setup_je=$flag_arg;;
lf)
setup_lf=$flag_arg;;
lp)
setup_lp=$flag_arg;;
lt)
setup_lt=$flag_arg;;
lean)
setup_lean=$flag_arg;;
mng)
setup_mng=$flag_arg;;
mesh)
setup_mesh=$flag_arg;;
mi)
setup_mi=$flag_arg;;
mi2)
setup_mi2=$flag_arg;;
nomesh)
setup_nomesh=$flag_arg;;
pa)
setup_pa=$flag_arg;;
packages)
setup_packages=$flag_arg;;
redis)
setup_redis=$flag_arg;;
rocksdb)
setup_rocksdb=$flag_arg;;
rp)
setup_rp=$flag_arg;;
sc)
setup_sc=$flag_arg;;
scudo)
setup_scudo=$flag_arg;;
sg)
setup_sg=$flag_arg;;
sm)
setup_sm=$flag_arg;;
sn)
setup_sn=$flag_arg;;
tbb)
setup_tbb=$flag_arg;;
tc)
setup_tc=$flag_arg;;
tcg)
setup_tcg=$flag_arg;;
yal)
setup_yal=$flag_arg;;
-r|--rebuild)
rebuild=1;;
-j=*|--procs=*)
procs=$flag_arg;;
-h|--help|-\?|help|\?)
echo "./build-bench-env [options]"
echo ""
echo " all setup and build (almost) everything"
echo ""
echo " --procs=<n> number of processors (=$procs)"
echo " --rebuild force re-clone and re-build for given tools"
echo ""
echo " dh setup dieharder ($version_dh)"
echo " ff setup ffmalloc ($version_ff)"
echo " fg setup freeguard ($version_fg)"
echo " gd setup guarder ($version_gd)"
echo " hd setup hoard ($version_hd)"
echo " hm setup hardened_malloc ($version_hm)"
echo " iso setup isoalloc ($version_iso)"
echo " je setup jemalloc ($version_je)"
echo " lf setup lockfree-malloc ($version_lf)"
echo " lp setup libpas ($version_lp)"
echo " lt setup ltmalloc ($version_lt)"
echo " mesh setup mesh allocator ($version_mesh)"
echo " mi setup mimalloc ($version_mi)"
echo " mi2 setup mimalloc ($version_mi2)"
echo " mng setup mallocng ($version_mng)"
echo " nomesh setup mesh allocator w/o meshing ($version_mesh)"
echo " pa setup PartitionAlloc ($version_pa)"
echo " rp setup rpmalloc ($version_rp)"
echo " sc setup scalloc ($version_sc)"
echo " scudo setup scudo ($version_scudo)"
echo " sg setup slimguard ($version_sg)"
echo " sm setup supermalloc ($version_sm)"
echo " sn setup snmalloc ($version_sn)"
echo " tbb setup Intel TBB malloc ($version_tbb)"
echo " tc setup tcmalloc ($version_tc)"
echo " tcg setup Google's tcmalloc ($version_tcg)"
echo " yal setup yalloc ($version_yal)"
echo ""
echo " bench build all local benchmarks"
echo " lean setup lean 3 benchmark"
echo " packages setup required packages"
echo " redis setup redis benchmark"
echo " rocksdb setup rocksdb benchmark"
echo ""
echo "Prefix an option with 'no-' to disable an option"
exit 0;;
*) echo "warning: unknown option \"$1\"." 1>&2
esac
shift
done
if test -f ./build-bench-env.sh; then
echo ""
echo "use '-h' to see all options"
echo "use 'all' to build all allocators"
echo ""
echo "building with $procs threads"
echo "--------------------------------------------"
echo ""
else
echo "error: must run from the toplevel mimalloc-bench directory!"
exit 1
fi
mkdir -p extern
readonly devdir="$curdir/extern"
function phase {
cd "$curdir"
echo
echo
echo "--------------------------------------------"
echo "$1"
echo "--------------------------------------------"
echo
}
function write_version { # name, git-tag, repo
commit=$(git log -n1 --format=format:"%h")
echo "$1: $2, $commit, $3" > "$devdir/version_$1.txt"
}
function partial_checkout { # name, git-tag, git repo, directory to download
phase "build $1: version $2"
pushd $devdir
if test "$rebuild" = "1"; then
rm -rf "$1"
fi
if test -d "$1"; then
echo "$devdir/$1 already exists; no need to git clone"
cd "$1"
else
mkdir "$1"
cd "$1"
git init
git remote add origin $3
git config extensions.partialClone origin
git sparse-checkout set $4
fi
git fetch --depth=1 --filter=blob:none origin $2
git checkout $2
git reset origin/$2 --hard
write_version $1 $2 $3
}
function checkout { # name, git-tag, git repo, options
phase "build $1: version $2"
pushd $devdir
if test "$rebuild" = "1"; then
rm -rf "$1"
fi
if test -d "$1"; then
echo "$devdir/$1 already exists; no need to git clone"
else
git clone $4 $3 $1
fi
cd "$1"
git checkout $2
write_version $1 $2 $3
}
function check_checksum { # name, sha256sum
if (echo "$2 $1" | $SHA256SUM_CMD --check --status); then
echo "$1 has correct checksum"
else
echo "$1 has wrong checksum"
echo "$2 was expected"
$SHA256SUM_CMD $1
fi
}
function aptinstall {
echo ""
echo "> $SUDO apt install $1"
echo ""
$SUDO apt install --no-install-recommends $1
}
function dnfinstall {
echo ""
echo "> $SUDO dnf -y --quiet --nodocs install $1"
echo ""
$SUDO dnf -y --quiet --nodocs install $1
}
function apkinstall {
echo ""
echo "> apk add -q $1"
echo ""
apk add -q $1
}
function brewinstall {
echo ""
echo "> brew install $1"
echo ""
brew install $1
}
function aptinstallbazel {
echo ""
echo "> installing bazel"
echo ""
aptinstall apt-transport-https curl gnupg
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel.gpg
$SUDO mv bazel.gpg /etc/apt/trusted.gpg.d/bazel.gpg
echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | $SUDO tee /etc/apt/sources.list.d/bazel.list
$SUDO apt update -qq
aptinstall bazel
}
function dnfinstallbazel {
echo ""
echo "> installing bazel"
echo ""
dnfinstall dnf-plugins-core
$SUDO dnf copr -y enable vbatts/bazel
dnfinstall bazel4
}
if test "$all" = "1"; then
if test "$rebuild" = "1"; then
phase "clean $devdir for a full rebuild"
pushd "$devdir"
cd ..
rm -rf "extern/*"
popd
fi
fi
if test "$setup_packages" = "1"; then
phase "install packages"
if grep -q 'ID=fedora' /etc/os-release 2>/dev/null; then
# no 'apt update' equivalent needed on Fedora
dnfinstall "gcc-c++ clang lld llvm-devel unzip dos2unix bc gmp-devel wget gawk \
cmake python3 ruby ninja-build libtool autoconf git patch time sed \
ghostscript libatomic which gflags-devel xz readline-devel"
dnfinstallbazel
elif grep -q -e 'ID=debian' -e 'ID=ubuntu' /etc/os-release 2>/dev/null; then
echo "updating package database... ($SUDO apt update)"
$SUDO apt update -qq
aptinstall "g++ clang lld llvm-dev unzip dos2unix linuxinfo bc libgmp-dev wget \
cmake python3 ruby ninja-build libtool autoconf sed ghostscript time \
curl automake libatomic1 libgflags-dev libsnappy-dev zlib1g-dev libbz2-dev \
liblz4-dev libzstd-dev libreadline-dev pkg-config gawk util-linux"
aptinstallbazel
elif grep -q -e 'ID=alpine' /etc/os-release 2>/dev/null; then
echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
apk update
apkinstall "clang lld unzip dos2unix bc gmp-dev wget cmake python3 automake gawk \
samurai libtool git build-base linux-headers autoconf util-linux sed \
ghostscript libatomic gflags-dev readline-dev"
apkinstall "bazel@testing"
elif brew --version 2> /dev/null >/dev/null; then
brewinstall "dos2unix wget cmake ninja automake libtool gnu-time gmp mpir gnu-sed \
ghostscript bazelisk gflags snappy"
fi
fi
if test "$setup_hm" = "1"; then
checkout hm $version_hm https://github.com/GrapheneOS/hardened_malloc
make CONFIG_NATIVE=true CONFIG_WERROR=false VARIANT=light -j $proc
make CONFIG_NATIVE=true CONFIG_WERROR=false VARIANT=default -j $proc
popd
fi
if test "$setup_gd" = "1"; then
checkout gd $version_gd https://github.com/UTSASRG/Guarder
make -j $procs
popd
fi
if test "$setup_iso" = "1"; then
checkout iso $version_iso https://github.com/struct/isoalloc
make library -j $procs
popd
fi
if test "$setup_lf" = "1"; then
checkout lf $version_lf https://github.com/Begun/lockfree-malloc
make -j $procs liblite-malloc-shared.so
popd
fi
if test "$setup_ff" = "1"; then
checkout ff $version_ff https://github.com/bwickman97/ffmalloc
make -j $procs
popd
fi
if test "$setup_mng" = "1"; then
checkout mng $version_mng https://github.com/richfelker/mallocng-draft
make -j $procs
popd
fi
if test "$setup_scudo" = "1"; then
partial_checkout scudo $version_scudo https://github.com/llvm/llvm-project "compiler-rt/lib/scudo/standalone"
cd "compiler-rt/lib/scudo/standalone"
# TODO: make the next line prettier instead of hardcoding everything.
clang++ -flto -fuse-ld=lld -fPIC -std=c++14 -fno-exceptions $CXXFLAGS -fno-rtti -fvisibility=internal -msse4.2 -O3 -I include -shared -o libscudo$extso *.cpp -pthread
cd -
popd
fi
if test "$setup_fg" = "1"; then
checkout "fg" $version_fg https://github.com/UTSASRG/FreeGuard
make -j $procs SSE2RNG=1
popd
fi
if test "$setup_lp" = "1"; then
partial_checkout lp $version_lp https://github.com/WebKit/WebKit "Source/bmalloc/libpas"
cd "Source/bmalloc/libpas"
ORIG=""
if test "$darwin" = "1"; then
ORIG="_orig"
fi
sed -i $ORIG '/Werror/d' CMakeLists.txt
# Fix compilation with recent compilers
# (at least clang16 that enforces -Wimplicit-function-declaration)
sed -i $ORIG 's/extra_cmake_options=""/extra_cmake_options="-D_GNU_SOURCE=1"/' build.sh
# Remove once/if https://github.com/WebKit/WebKit/pull/1219 is merged
sed -i $ORIG 's/cmake --build $build_dir --parallel/cmake --build $build_dir --target pas_lib --parallel/' build.sh
if test "$darwin" = "1"; then
./build.sh -s cmake -v default -t pas_lib
else
CC=clang CXX=clang++ LDFLAGS='-lpthread -latomic -pthread' bash ./build.sh -s cmake -v default -t pas_lib
fi
cd -
popd
fi
if test "$setup_lt" = "1"; then
checkout lt $version_lt https://github.com/r-lyeh-archived/ltalloc
make -j $procs -C gnu.make.lib
popd
fi
if test "$setup_pa" = "1"; then
checkout pa $version_pa https://github.com/1c3t3a/partition_alloc_builder.git
# Setup depot_tools for building
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git --depth=1
export PATH="$PATH:$PWD/depot_tools"
# Fetch sources - this relies on a standalone build of PA
gclient config https://github.com/1c3t3a/partition_alloc_builder.git
gclient sync
cd partition_alloc_builder
gn gen out/Default
autoninja -C out/Default
popd
fi
if test "$setup_sg" = "1"; then
checkout sg $version_sg https://github.com/ssrg-vt/SlimGuard
make -j $procs
popd
fi
if test "$setup_dh" = "1"; then
checkout dh $version_dh https://github.com/emeryberger/DieHard
# remove all the historical useless junk
rm -rf ./benchmarks/ ./src/archipelago/ ./src/build/ ./src/exterminator/ ./src/local/ ./src/original-diehard/ ./src/replicated/ ./docs
if test "$darwin" = "1"; then
TARGET=libdieharder make -C src macos
else
TARGET=libdieharder make -C src linux-gcc-64
fi
popd
fi
if test "$setup_tbb" = "1"; then
checkout tbb $version_tbb https://github.com/oneapi-src/oneTBB
cmake -DCMAKE_BUILD_TYPE=Release -DTBB_BUILD=OFF -DTBB_TEST=OFF -DTBB_OUTPUT_DIR_BASE=bench .
make -j $procs
popd
fi
if test "$setup_tc" = "1"; then
checkout tc $version_tc https://github.com/gperftools/gperftools
if test -f configure; then
echo "already configured"
else
./autogen.sh
CXXFLAGS="$CXXFLAGS -w -DNDEBUG -O2" ./configure --enable-minimal --disable-debugalloc
fi
make -j $procs # ends with error on benchmark, but thats ok.
#echo ""
#echo "(note: the error 'Makefile:3912: recipe for target 'malloc_bench' failed' is expected)"
popd
fi
if test "$setup_tcg" = "1"; then
checkout tcg $version_tcg https://github.com/google/tcmalloc
ORIG=""
if test "$darwin" = "1"; then
ORIG="_orig"
fi
sed -i $ORIG '/linkstatic/d' tcmalloc/BUILD
sed -i $ORIG '/linkstatic/d' tcmalloc/internal/BUILD
sed -i $ORIG '/linkstatic/d' tcmalloc/testing/BUILD
sed -i $ORIG '/linkstatic/d' tcmalloc/variants.bzl
gawk -i inplace '(f && g) {$0="linkshared = True, )"; f=0; g=0} /This library provides tcmalloc always/{f=1} /alwayslink/{g=1} 1' tcmalloc/BUILD
gawk -i inplace 'f{$0="cc_binary("; f=0} /This library provides tcmalloc always/{f=1} 1' tcmalloc/BUILD # Change the line after "This library…" to cc_binary (instead of cc_library)
gawk -i inplace '/alwayslink/ && !f{f=1; next} 1' tcmalloc/BUILD # delete only the first instance of "alwayslink"
bazel build -c opt tcmalloc
popd
fi
if test "$setup_hd" = "1"; then
checkout hd $version_hd https://github.com/emeryberger/Hoard
cd src
if [ "`uname -m -s`" = "Darwin x86_64" ] ; then
sed -i_orig 's/-arch arm64/ /g' GNUmakefile # fix the makefile
fi
make -j $procs
popd
fi
if test "$setup_je" = "1"; then
checkout je $version_je https://github.com/jemalloc/jemalloc
if test -f config.status; then
echo "$devdir/jemalloc is already configured; no need to reconfigure"
else
./autogen.sh --enable-doc=no --enable-static=no --disable-stats
fi
make -j $procs
[ "$CI" ] && rm -rf ./src/*.o # jemalloc has like ~100MiB of object files
[ "$CI" ] && rm -rf ./lib/*.a # jemalloc produces 80MiB of static files
popd
fi
if test "$setup_rp" = "1"; then
checkout rp $version_rp https://github.com/mjansson/rpmalloc
if test -f build.ninja; then
echo "$devdir/rpmalloc is already configured; no need to reconfigure"
else
python3 configure.py
fi
# fix build using clang-16
# see https://github.com/mjansson/rpmalloc/issues/316
sed -i 's/-Werror//' build.ninja
ninja
popd
fi
if test "$setup_sn" = "1"; then
checkout sn $version_sn https://github.com/Microsoft/snmalloc
if test -f release/build.ninja; then
echo "$devdir/snmalloc is already configured; no need to reconfigure"
else
mkdir -p release
cd release
env CXX=clang++ cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release
cd ..
fi
cd release
ninja libsnmallocshim$extso libsnmallocshim-checks$extso
popd
fi
if test "$setup_sm" = "1"; then
checkout sm $version_sm https://github.com/kuszmaul/SuperMalloc
rm -rf ./doc ./paper "./short-talk"
sed -i "s/-Werror//" Makefile.include
cd release
make -j $procs
popd
fi
if test "$setup_mesh" = "1"; then
checkout mesh $version_mesh https://github.com/plasma-umass/mesh
cmake .
make # https://github.com/plasma-umass/Mesh/issues/96
popd
fi
if test "$setup_nomesh" = "1"; then
checkout nomesh $version_nomesh https://github.com/plasma-umass/mesh
cmake . -DDISABLE_MESHING=ON
make # https://github.com/plasma-umass/Mesh/issues/96
popd
fi
if test "$setup_sc" = "1"; then
checkout sc $version_sc https://github.com/cksystemsgroup/scalloc
if test -f Makefile; then
echo "$devdir/scalloc is already configured; no need to reconfigure"
else
if test -f build/gyp/gyp; then
echo "$devdir/scalloc has the gyp tools installed; no need to re-download"
else
tools/make_deps.sh
fi
build/gyp/gyp --depth=. scalloc.gyp
fi
BUILDTYPE=Release make -j $procs
popd
fi
if test "$setup_mi" = "1"; then
checkout mi $version_mi https://github.com/microsoft/mimalloc
echo ""
echo "- build mimalloc release"
cmake -B out/release
cmake --build out/release --parallel $procs
echo ""
echo "- build mimalloc debug with full checking"
cmake -B out/debug -DMI_CHECK_FULL=ON
cmake --build out/debug --parallel $procs
echo ""
echo "- build mimalloc secure"
cmake -B out/secure -DMI_SECURE=ON
cmake --build out/secure --parallel $procs
popd
fi
if test "$setup_mi2" = "1"; then
checkout mi2 $version_mi2 https://github.com/microsoft/mimalloc
echo ""
echo "- build mimalloc2 release"
cmake -B out/release
cmake --build out/release --parallel $procs
echo ""
echo "- build mimalloc2 debug with full checking"
cmake -B out/debug -DMI_CHECK_FULL=ON
cmake --build out/debug --parallel $procs
echo ""
echo "- build mimalloc2 secure"
cmake -B out/secure -DMI_SECURE=ON
cmake --build out/secure --parallel $procs
popd
fi
if test "$setup_yal" = "1"; then
checkout yal $version_yal https://github.com/jorisgeer/yalloc
./build.sh -V
fi
phase "install benchmarks"
if test "$setup_rocksdb" = "1"; then
phase "build rocksdb $version_rocksdb"
pushd "$devdir"
if test -d "redis-$version_rocksdb"; then
echo "$devdir/rocksdb-$version_rocksdb already exists; no need to download it"
else
wget --no-verbose "https://github.com/facebook/rocksdb/archive/refs/tags/v$version_rocksdb.tar.gz" -O rocksdb-$version_rocksdb.tar.gz
tar xzf "rocksdb-$version_rocksdb.tar.gz"
rm "./rocksdb-$version_rocksdb.tar.gz"
fi
cd "rocksdb-$version_rocksdb"
DISABLE_WARNING_AS_ERROR=1 DISABLE_JEMALLOC=1 make db_bench -j $procs
[ "$CI" ] && find . -name '*.o' -delete
popd
fi
if test "$setup_lean" = "1"; then
phase "build lean $version_lean"
checkout lean $version_lean https://github.com/leanprover-community/lean
mkdir -p out/release
cd out/release
env CC=gcc CXX="g++" cmake ../../src -DCUSTOM_ALLOCATORS=OFF -DLEAN_EXTRA_CXX_FLAGS="-w"
echo "make -j$procs"
make -j $procs
rm -rf ./tests/ # we don't need tests
mkdir -p "$devdir/mathlib"
cp -u "$devdir/lean/leanpkg/leanpkg.toml" "$devdir/mathlib"
popd
fi
if test "$setup_redis" = "1"; then
phase "build redis $version_redis"
pushd "$devdir"
if test -d "redis-$version_redis"; then
echo "$devdir/redis-$version_redis already exists; no need to download it"
else
wget --no-verbose "https://download.redis.io/releases/redis-$version_redis.tar.gz"
tar xzf "redis-$version_redis.tar.gz"
rm "./redis-$version_redis.tar.gz"
fi
cd "redis-$version_redis/src"
USE_JEMALLOC=no MALLOC=libc BUILD_TLS=no make -j $procs
popd
fi
if test "$setup_bench" = "1"; then
phase "patch shbench"
pushd "bench/shbench"
if test -f sh6bench-new.c; then
echo "do nothing: bench/shbench/sh6bench-new.c already exists"
else
wget --no-verbose http://www.microquill.com/smartheap/shbench/bench.zip
check_checksum "bench.zip" "$sha256sum_sh6bench"
unzip -o bench.zip
dos2unix sh6bench.patch
dos2unix sh6bench.c
patch -p1 -o sh6bench-new.c sh6bench.c sh6bench.patch
fi
if test -f sh8bench-new.c; then
echo "do nothing: bench/shbench/sh8bench-new.c already exists"
else
wget --no-verbose http://www.microquill.com/smartheap/SH8BENCH.zip
check_checksum "SH8BENCH.zip" "$sha256sum_sh8bench"
unzip -o SH8BENCH.zip
dos2unix sh8bench.patch
dos2unix SH8BENCH.C
patch -p1 -o sh8bench-new.c SH8BENCH.C sh8bench.patch
fi
popd
phase "get large PDF document"
readonly pdfdoc="large.pdf"
readonly pdfurl="https://raw.githubusercontent.com/geekaaron/Resources/master/resources/Writing_a_Simple_Operating_System--from_Scratch.pdf "
#readonly pdfurl="https://www.intel.com/content/dam/develop/external/us/en/documents/325462-sdm-vol-1-2abcd-3abcd-508360.pdf"
pushd "$devdir"
if test -f "$pdfdoc"; then
echo "do nothing: $devdir/$pdfdoc already exists"
else
useragent="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:95.0) Gecko/20100101 Firefox/95.0"
wget --no-verbose -O "$pdfdoc" -U "useragent" $pdfurl
fi
popd
phase "get lua"
checkout lua $version_lua https://github.com/lua/lua
popd
phase "build benchmarks"
cmake -B out/bench -S bench
cmake --build out/bench --parallel $procs
fi
curdir=`pwd`
phase "installed allocators"
cat $devdir/version_*.txt 2>/dev/null | tee $devdir/versions.txt | column -t || true
phase "done in $curdir"
echo "run the cfrac benchmarks as:"
echo "> cd out/bench"
echo "> ../../bench.sh alla cfrac"
echo
echo "to see all options use:"
echo "> ../../bench.sh help"
echo